q2-tecton-framework-wrappers 1.22.0
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.md +14 -0
- package/dist/react.d.ts +1 -0
- package/dist/react.js +265 -0
- package/dist/react.js.map +1 -0
- package/dist/stencil-react/index.d.ts +42 -0
- package/dist/stencil-react/react-component-lib/createComponent.d.ts +10 -0
- package/dist/stencil-react/react-component-lib/createOverlayComponent.d.ts +21 -0
- package/dist/stencil-react/react-component-lib/index.d.ts +1 -0
- package/dist/stencil-react/react-component-lib/interfaces.d.ts +29 -0
- package/dist/stencil-react/react-component-lib/utils/attachProps.d.ts +12 -0
- package/dist/stencil-react/react-component-lib/utils/case.d.ts +2 -0
- package/dist/stencil-react/react-component-lib/utils/dev.d.ts +2 -0
- package/dist/stencil-react/react-component-lib/utils/index.d.ts +10 -0
- package/dist/stencil-vue/index.d.ts +46 -0
- package/dist/stencil-vue/vue-component-lib/utils.d.ts +20 -0
- package/dist/vue.d.ts +1 -0
- package/dist/vue.js +646 -0
- package/dist/vue.js.map +1 -0
- package/package.json +42 -0
package/package.json
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"name": "q2-tecton-framework-wrappers",
|
3
|
+
"version": "1.22.0",
|
4
|
+
"license": "MIT",
|
5
|
+
"files": [
|
6
|
+
"dist/"
|
7
|
+
],
|
8
|
+
"publishConfig": {
|
9
|
+
"registry": "https://registry.npmjs.org",
|
10
|
+
"access": "public"
|
11
|
+
},
|
12
|
+
"scripts": {
|
13
|
+
"clean": "rm -rf ./dist ./src/stencil-react ./src/stencil-vue",
|
14
|
+
"build": "npm run patch && rollup --config rollup.config.js --bundleConfigAsCjs",
|
15
|
+
"build:dev": "npm run patch && npm run build",
|
16
|
+
"build:local": "npm run clean && rollup --config rollup.config.js -w --bundleConfigAsCjs",
|
17
|
+
"build:prod": "npm run patch && npm run build",
|
18
|
+
"build:elements": "npm run patch && npm run build",
|
19
|
+
"test": "jest",
|
20
|
+
"patch": "node ./build/overlay-monkeypatch.js"
|
21
|
+
},
|
22
|
+
"devDependencies": {
|
23
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
24
|
+
"@testing-library/jest-dom": "^5.16.5",
|
25
|
+
"@testing-library/react": "^12.1.5",
|
26
|
+
"@testing-library/vue": "^6.6.1",
|
27
|
+
"@types/jest": "^27.5.1",
|
28
|
+
"@types/react": "^17.0.44",
|
29
|
+
"@types/react-dom": "^17.0.18",
|
30
|
+
"jest": "^27.5.1",
|
31
|
+
"jest-environment-jsdom": "^27.5.1",
|
32
|
+
"react": "^17.0.2",
|
33
|
+
"react-dom": "^17.0.2",
|
34
|
+
"rollup": "^3.2.5",
|
35
|
+
"rollup-plugin-serve": "^2.0.1",
|
36
|
+
"ts-jest": "^27.1.4",
|
37
|
+
"vue": "^3.2.45"
|
38
|
+
},
|
39
|
+
"dependencies": {
|
40
|
+
"q2-tecton-elements": "^1.22.0"
|
41
|
+
}
|
42
|
+
}
|