sentikit-webcomponents 0.0.30-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +27 -0
- package/dist/esm/index-49fd1bc4.js +1276 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/preview-sk-breadcrumbs_22.entry.js +18030 -0
- package/loader/index.js +4 -0
- package/package.json +22 -0
package/loader/index.js
ADDED
@@ -0,0 +1,4 @@
|
|
1
|
+
|
2
|
+
(function(){if("undefined"!==typeof window&&void 0!==window.Reflect&&void 0!==window.customElements){var a=HTMLElement;window.HTMLElement=function(){return Reflect.construct(a,[],this.constructor)};HTMLElement.prototype=a.prototype;HTMLElement.prototype.constructor=HTMLElement;Object.setPrototypeOf(HTMLElement,a)}})();
|
3
|
+
export * from '../dist/esm/polyfills/index.js';
|
4
|
+
export * from '../dist/esm/loader.js';
|
package/package.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"name": "sentikit-webcomponents",
|
3
|
+
"version": "0.0.30-beta",
|
4
|
+
"description": "sentikit webcomponents",
|
5
|
+
"private": false,
|
6
|
+
"author": {
|
7
|
+
"name": "hsntnc"
|
8
|
+
},
|
9
|
+
"main": "dist/esm/loader.js",
|
10
|
+
"typings": "types/index.d.ts",
|
11
|
+
"repository": "https://www.github.com/hsntnc/sentikit-webcomponents",
|
12
|
+
"scripts": {
|
13
|
+
"test": "jest"
|
14
|
+
},
|
15
|
+
"publishConfig": {
|
16
|
+
"access": "public"
|
17
|
+
},
|
18
|
+
"devDependencies": {
|
19
|
+
"@stencil/core": "^2.19.2",
|
20
|
+
"@stencil/postcss": "^2.1.0"
|
21
|
+
}
|
22
|
+
}
|