proto-daisy-db 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +6 -0
- package/dist/cjs/index-69b24cc8.js +1141 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/proto-daisy-db.cjs.js +19 -0
- package/dist/cjs/proto-daisy-db_4.cjs.entry.js +137 -0
- package/dist/collection/collection-manifest.json +15 -0
- package/dist/collection/components/proto-daisy-db/proto-daisy-db.css +0 -0
- package/dist/collection/components/proto-daisy-db/proto-daisy-db.js +60 -0
- package/dist/collection/components/proto-faux-keys/proto-faux-keys.css +0 -0
- package/dist/collection/components/proto-faux-keys/proto-faux-keys.js +35 -0
- package/dist/collection/components/proto-faux-stamp/proto-faux-stamp.css +0 -0
- package/dist/collection/components/proto-faux-stamp/proto-faux-stamp.js +36 -0
- package/dist/collection/components/proto-faux-trigger/proto-faux-trigger.css +189 -0
- package/dist/collection/components/proto-faux-trigger/proto-faux-trigger.js +84 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/bag.js +25 -0
- package/dist/collection/utils/index.js +2 -0
- package/dist/collection/utils/tw-version.js +4 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/components/index.js +5 -0
- package/dist/components/proto-daisy-db.d.ts +11 -0
- package/dist/components/proto-daisy-db.js +82 -0
- package/dist/components/proto-faux-keys.d.ts +11 -0
- package/dist/components/proto-faux-keys.js +6 -0
- package/dist/components/proto-faux-keys2.js +33 -0
- package/dist/components/proto-faux-stamp.d.ts +11 -0
- package/dist/components/proto-faux-stamp.js +6 -0
- package/dist/components/proto-faux-stamp2.js +33 -0
- package/dist/components/proto-faux-trigger.d.ts +11 -0
- package/dist/components/proto-faux-trigger.js +75 -0
- package/dist/esm/index-1d7e6324.js +1116 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/proto-daisy-db.js +17 -0
- package/dist/esm/proto-daisy-db_4.entry.js +130 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/proto-daisy-db/index.esm.js +0 -0
- package/dist/proto-daisy-db/p-05fdda3d.entry.js +1 -0
- package/dist/proto-daisy-db/p-39bf50a0.js +2 -0
- package/dist/proto-daisy-db/proto-daisy-db.esm.js +1 -0
- package/dist/types/components/proto-daisy-db/proto-daisy-db.d.ts +5 -0
- package/dist/types/components/proto-faux-keys/proto-faux-keys.d.ts +4 -0
- package/dist/types/components/proto-faux-stamp/proto-faux-stamp.d.ts +4 -0
- package/dist/types/components/proto-faux-trigger/proto-faux-trigger.d.ts +8 -0
- package/dist/types/components.d.ts +86 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/bag.d.ts +6 -0
- package/dist/types/utils/index.d.ts +2 -0
- package/dist/types/utils/tw-version.d.ts +3 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +50 -0
package/loader/cdn.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from '../dist/types/components';
|
|
2
|
+
export interface CustomElementsDefineOptions {
|
|
3
|
+
exclude?: string[];
|
|
4
|
+
resourcesUrl?: string;
|
|
5
|
+
syncQueue?: boolean;
|
|
6
|
+
jmp?: (c: Function) => any;
|
|
7
|
+
raf?: (c: FrameRequestCallback) => number;
|
|
8
|
+
ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
9
|
+
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function defineCustomElements(win?: Window, opts?: CustomElementsDefineOptions): Promise<void>;
|
|
12
|
+
export declare function applyPolyfills(): Promise<void>;
|
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,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "proto-daisy-db",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Stencil Component Starter",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"es2015": "dist/esm/index.mjs",
|
|
8
|
+
"es2017": "dist/esm/index.mjs",
|
|
9
|
+
"types": "dist/types/index.d.ts",
|
|
10
|
+
"collection": "dist/collection/collection-manifest.json",
|
|
11
|
+
"collection:main": "dist/collection/index.js",
|
|
12
|
+
"unpkg": "dist/proto-daisy-db/proto-daisy-db.esm.js",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/ionic-team/stencil-component-starter.git"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/",
|
|
19
|
+
"loader/"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "concurrently \"yarn:twx --watch\" \"yarn:start\"",
|
|
23
|
+
"twx": "sh .generate",
|
|
24
|
+
"build": "yarn twx; yarn format; stencil build --docs",
|
|
25
|
+
"start": "stencil build --dev --watch --serve",
|
|
26
|
+
"generate": "stencil generate",
|
|
27
|
+
"predeploy": "yarn build",
|
|
28
|
+
"deploy": "yarn publish --patch",
|
|
29
|
+
"spell": "cspell 'src/**/*.{ts,tsx,html,css,md}'",
|
|
30
|
+
"cc": "prettier --check src",
|
|
31
|
+
"format": "prettier --write src"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@stencil/core": "2.17.1",
|
|
35
|
+
"mitt": "3.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"autoprefixer": "10.4.7",
|
|
39
|
+
"concurrently": "7.2.2",
|
|
40
|
+
"cspell": "6.2.3",
|
|
41
|
+
"jest": "28.1.3",
|
|
42
|
+
"jest-cli": "28.1.3",
|
|
43
|
+
"postcss": "8.4.14",
|
|
44
|
+
"prettier": "2.7.1",
|
|
45
|
+
"prettier-plugin-tailwindcss": "0.1.12",
|
|
46
|
+
"proto-tailwindcss-clrs": "0.0.146",
|
|
47
|
+
"tailwindcss": "3.1.6"
|
|
48
|
+
},
|
|
49
|
+
"license": "MIT"
|
|
50
|
+
}
|