proto-tinker-wc 0.0.1
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 +25 -0
- package/dist/cjs/index-cea62b03.js +1176 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/proto-tinker-wc.cjs.js +19 -0
- package/dist/cjs/proto-tinker.cjs.entry.js +2524 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/proto-tinker/chevron-double-left.js +14 -0
- package/dist/collection/components/proto-tinker/close.js +14 -0
- package/dist/collection/components/proto-tinker/color-picker.js +16 -0
- package/dist/collection/components/proto-tinker/data-source.js +25 -0
- package/dist/collection/components/proto-tinker/data-values.js +17 -0
- package/dist/collection/components/proto-tinker/eswat2-io.js +10 -0
- package/dist/collection/components/proto-tinker/fingerprint.js +14 -0
- package/dist/collection/components/proto-tinker/proto-tinker.css +152 -0
- package/dist/collection/components/proto-tinker/proto-tinker.js +46 -0
- package/dist/collection/components/proto-tinker/radio.js +15 -0
- package/dist/collection/components/proto-tinker/refresh.js +14 -0
- package/dist/collection/components/proto-tinker/tw-label.js +9 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/color-plugin.js +36 -0
- package/dist/collection/utils/funnel-defs.js +10 -0
- package/dist/collection/utils/index.js +5 -0
- package/dist/collection/utils/named-colors.js +51 -0
- package/dist/collection/utils/store.js +25 -0
- package/dist/collection/utils/types.js +1 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/proto-tinker.d.ts +11 -0
- package/dist/components/proto-tinker.js +2541 -0
- package/dist/esm/index-b22d500f.js +1149 -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-tinker-wc.js +17 -0
- package/dist/esm/proto-tinker.entry.js +2520 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/proto-tinker-wc/index.esm.js +0 -0
- package/dist/proto-tinker-wc/p-18633a0f.entry.js +1 -0
- package/dist/proto-tinker-wc/p-b3c235a0.js +1 -0
- package/dist/proto-tinker-wc/proto-tinker-wc.esm.js +1 -0
- package/dist/types/components/proto-tinker/chevron-double-left.d.ts +5 -0
- package/dist/types/components/proto-tinker/close.d.ts +5 -0
- package/dist/types/components/proto-tinker/color-picker.d.ts +4 -0
- package/dist/types/components/proto-tinker/data-source.d.ts +4 -0
- package/dist/types/components/proto-tinker/data-values.d.ts +4 -0
- package/dist/types/components/proto-tinker/eswat2-io.d.ts +4 -0
- package/dist/types/components/proto-tinker/fingerprint.d.ts +5 -0
- package/dist/types/components/proto-tinker/proto-tinker.d.ts +4 -0
- package/dist/types/components/proto-tinker/radio.d.ts +5 -0
- package/dist/types/components/proto-tinker/refresh.d.ts +5 -0
- package/dist/types/components/proto-tinker/tw-label.d.ts +4 -0
- package/dist/types/components.d.ts +39 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1563 -0
- package/dist/types/utils/color-plugin.d.ts +14 -0
- package/dist/types/utils/funnel-defs.d.ts +5 -0
- package/dist/types/utils/index.d.ts +5 -0
- package/dist/types/utils/named-colors.d.ts +24 -0
- package/dist/types/utils/store.d.ts +5 -0
- package/dist/types/utils/types.d.ts +42 -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 +46 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# proto-tinker-wc
|
|
2
|
+
|
|
3
|
+
[](//npmjs.com/package/proto-tinker-wc)
|
|
4
|
+
|
|
5
|
+
a prototype app written in Stencil and Tailwind, deployed via NPM and Vercel...
|
|
6
|
+
|
|
7
|
+
- [wc-tinker.vercel.app][wc-tinker] - _deployed on Vercel_
|
|
8
|
+
|
|
9
|
+
To run this locally:
|
|
10
|
+
|
|
11
|
+
1. `yarn`
|
|
12
|
+
2. `yarn start`
|
|
13
|
+
|
|
14
|
+
## references
|
|
15
|
+
|
|
16
|
+
- [proto-tailwindcss-clrs][clrs-tw] - _TailwindCSS plugin for custom colors_
|
|
17
|
+
- [Quick Tip][quick-tip] - _Dynamic Stencil Component Names with JSX_
|
|
18
|
+
- [Simple Trick to Clean Up Tailwind CSS in React][tw-trick] - _the tw utility_
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
[wc-tinker]: https://wc-tinker.vercel.app
|
|
23
|
+
[clrs-tw]: https://github.com/eswat2/proto-tailwindcss-clrs
|
|
24
|
+
[quick-tip]: https://gilfink.medium.com/quick-tip-dynamic-stencil-component-names-with-jsx-cf7687a418e6
|
|
25
|
+
[tw-trick]: https://www.skies.dev/tailwind-react-trick
|