Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Restructured packages and using different sass-render #15

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"scss/dollar-variable-default": null,
"scss/operator-no-newline-after": null,
"number-leading-zero": null,
"function-name-case": null,
"property-no-vendor-prefix": [true, {
"ignoreProperties": ["appearance", "user-select"]
}]
Expand Down
15 changes: 15 additions & 0 deletions build/vendor/custom-elements-es5-adapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
@license @nocompile
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
(function () {


(function(){if(void 0===window.Reflect||void 0===window.customElements||window.customElements.hasOwnProperty('polyfillWrapFlushCallback'))return;const a=HTMLElement;window.HTMLElement=function HTMLElement(){return Reflect.construct(a,[],this.constructor)},HTMLElement.prototype=a.prototype,HTMLElement.prototype.constructor=HTMLElement,Object.setPrototypeOf(HTMLElement,a);})();

}());
288 changes: 288 additions & 0 deletions build/vendor/webcomponents-bundle.js

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!doctype html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script>if (!window.customElements) { document.write('<!--'); }</script>
<script src="/build/vendor/custom-elements-es5-adapter.js"></script>
<!--! DO NOT REMOVE THIS COMMENT, WE NEED ITS CLOSING MARKER -->

<script src="/build/vendor/webcomponents-bundle.js"></script>

</head>

<body>

<abu-button>
Button
</abu-button>

</body>

</html>
Loading