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.
Files changed (66) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -0
  3. package/dist/cjs/index-69b24cc8.js +1141 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/cjs/proto-daisy-db.cjs.js +19 -0
  7. package/dist/cjs/proto-daisy-db_4.cjs.entry.js +137 -0
  8. package/dist/collection/collection-manifest.json +15 -0
  9. package/dist/collection/components/proto-daisy-db/proto-daisy-db.css +0 -0
  10. package/dist/collection/components/proto-daisy-db/proto-daisy-db.js +60 -0
  11. package/dist/collection/components/proto-faux-keys/proto-faux-keys.css +0 -0
  12. package/dist/collection/components/proto-faux-keys/proto-faux-keys.js +35 -0
  13. package/dist/collection/components/proto-faux-stamp/proto-faux-stamp.css +0 -0
  14. package/dist/collection/components/proto-faux-stamp/proto-faux-stamp.js +36 -0
  15. package/dist/collection/components/proto-faux-trigger/proto-faux-trigger.css +189 -0
  16. package/dist/collection/components/proto-faux-trigger/proto-faux-trigger.js +84 -0
  17. package/dist/collection/index.js +1 -0
  18. package/dist/collection/utils/bag.js +25 -0
  19. package/dist/collection/utils/index.js +2 -0
  20. package/dist/collection/utils/tw-version.js +4 -0
  21. package/dist/components/index.d.ts +25 -0
  22. package/dist/components/index.js +5 -0
  23. package/dist/components/proto-daisy-db.d.ts +11 -0
  24. package/dist/components/proto-daisy-db.js +82 -0
  25. package/dist/components/proto-faux-keys.d.ts +11 -0
  26. package/dist/components/proto-faux-keys.js +6 -0
  27. package/dist/components/proto-faux-keys2.js +33 -0
  28. package/dist/components/proto-faux-stamp.d.ts +11 -0
  29. package/dist/components/proto-faux-stamp.js +6 -0
  30. package/dist/components/proto-faux-stamp2.js +33 -0
  31. package/dist/components/proto-faux-trigger.d.ts +11 -0
  32. package/dist/components/proto-faux-trigger.js +75 -0
  33. package/dist/esm/index-1d7e6324.js +1116 -0
  34. package/dist/esm/index.js +1 -0
  35. package/dist/esm/loader.js +17 -0
  36. package/dist/esm/polyfills/core-js.js +11 -0
  37. package/dist/esm/polyfills/css-shim.js +1 -0
  38. package/dist/esm/polyfills/dom.js +79 -0
  39. package/dist/esm/polyfills/es5-html-element.js +1 -0
  40. package/dist/esm/polyfills/index.js +34 -0
  41. package/dist/esm/polyfills/system.js +6 -0
  42. package/dist/esm/proto-daisy-db.js +17 -0
  43. package/dist/esm/proto-daisy-db_4.entry.js +130 -0
  44. package/dist/index.cjs.js +1 -0
  45. package/dist/index.js +1 -0
  46. package/dist/proto-daisy-db/index.esm.js +0 -0
  47. package/dist/proto-daisy-db/p-05fdda3d.entry.js +1 -0
  48. package/dist/proto-daisy-db/p-39bf50a0.js +2 -0
  49. package/dist/proto-daisy-db/proto-daisy-db.esm.js +1 -0
  50. package/dist/types/components/proto-daisy-db/proto-daisy-db.d.ts +5 -0
  51. package/dist/types/components/proto-faux-keys/proto-faux-keys.d.ts +4 -0
  52. package/dist/types/components/proto-faux-stamp/proto-faux-stamp.d.ts +4 -0
  53. package/dist/types/components/proto-faux-trigger/proto-faux-trigger.d.ts +8 -0
  54. package/dist/types/components.d.ts +86 -0
  55. package/dist/types/index.d.ts +1 -0
  56. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  57. package/dist/types/utils/bag.d.ts +6 -0
  58. package/dist/types/utils/index.d.ts +2 -0
  59. package/dist/types/utils/tw-version.d.ts +3 -0
  60. package/loader/cdn.js +3 -0
  61. package/loader/index.cjs.js +3 -0
  62. package/loader/index.d.ts +12 -0
  63. package/loader/index.es2017.js +3 -0
  64. package/loader/index.js +4 -0
  65. package/loader/package.json +10 -0
  66. package/package.json +50 -0
@@ -0,0 +1,6 @@
1
+ declare const bag: {
2
+ get: () => Promise<any>;
3
+ store: (data: any) => void;
4
+ };
5
+ export { bag };
6
+ export default bag;
@@ -0,0 +1,2 @@
1
+ export * from './bag';
2
+ export * from './tw-version';
@@ -0,0 +1,3 @@
1
+ declare const TW_VERSION = "3.1.6";
2
+ export { TW_VERSION };
3
+ export default TW_VERSION;
package/loader/cdn.js ADDED
@@ -0,0 +1,3 @@
1
+
2
+ module.exports = require('../dist/cjs/loader.cjs.js');
3
+ module.exports.applyPolyfills = function() { return Promise.resolve() };
@@ -0,0 +1,3 @@
1
+
2
+ module.exports = require('../dist/cjs/loader.cjs.js');
3
+ module.exports.applyPolyfills = function() { return Promise.resolve() };
@@ -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>;
@@ -0,0 +1,3 @@
1
+
2
+ export * from '../dist/esm/polyfills/index.js';
3
+ export * from '../dist/esm/loader.js';
@@ -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';
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "proto-daisy-db-loader",
3
+ "typings": "./index.d.ts",
4
+ "module": "./index.js",
5
+ "main": "./index.cjs.js",
6
+ "jsnext:main": "./index.es2017.js",
7
+ "es2015": "./index.es2017.js",
8
+ "es2017": "./index.es2017.js",
9
+ "unpkg": "./cdn.js"
10
+ }
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
+ }