q2-tecton-framework-wrappers 1.66.0 → 1.66.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "q2-tecton-framework-wrappers",
3
- "version": "1.66.0",
3
+ "version": "1.66.2",
4
4
  "description": "Stencil generated output for framework specific web component integration helpers.",
5
5
  "license": "MIT",
6
6
  "author": "Q2 Tecton Team",
@@ -10,8 +10,23 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
+ "scripts": {
14
+ "build": "rollup --config rollup.config.js --bundleConfigAsCjs",
15
+ "build:dev": "pnpm run patch && pnpm run build",
16
+ "build:elements": "pnpm run patch && pnpm run build",
17
+ "build:local": "pnpm run clean && rollup --config rollup.config.js -w --bundleConfigAsCjs",
18
+ "build:prerelease": "pnpm run patch && pnpm run build",
19
+ "build:prod": "pnpm run patch && pnpm run build",
20
+ "clean": "rm -rf ./dist ./src/stencil-react ./src/stencil-vue",
21
+ "patch": "node ./build/overlay-monkeypatch.js",
22
+ "test": "jest",
23
+ "test:coverage": "jest --coverage",
24
+ "test:react": "jest react-test",
25
+ "test:vue": "jest vue-test",
26
+ "vm-demo": "pnpm --dir vue-vmodel-demo dev"
27
+ },
13
28
  "dependencies": {
14
- "q2-tecton-elements": "1.66.0"
29
+ "q2-tecton-elements": "1.66.2"
15
30
  },
16
31
  "devDependencies": {
17
32
  "@rollup/plugin-node-resolve": "^16.0.3",
@@ -31,19 +46,6 @@
31
46
  "ts-jest": "^29.2.3",
32
47
  "vue": "^3.4.35"
33
48
  },
34
- "scripts": {
35
- "build": "rollup --config rollup.config.js --bundleConfigAsCjs",
36
- "build:dev": "pnpm run patch && pnpm run build",
37
- "build:elements": "pnpm run patch && pnpm run build",
38
- "build:local": "pnpm run clean && rollup --config rollup.config.js -w --bundleConfigAsCjs",
39
- "build:prerelease": "pnpm run patch && pnpm run build",
40
- "build:prod": "pnpm run patch && pnpm run build",
41
- "clean": "rm -rf ./dist ./src/stencil-react ./src/stencil-vue",
42
- "patch": "node ./build/overlay-monkeypatch.js",
43
- "test": "jest",
44
- "test:coverage": "jest --coverage",
45
- "test:react": "jest react-test",
46
- "test:vue": "jest vue-test",
47
- "vm-demo": "pnpm --dir vue-vmodel-demo dev"
48
- }
49
- }
49
+ "packageManager": "pnpm@10.27.0",
50
+ "gitHead": "e55656e84006b0708e2f1f1c3eafb4f268dd7e52"
51
+ }
@@ -1,16 +0,0 @@
1
- export interface InputProps<T> {
2
- modelValue?: T;
3
- }
4
- /**
5
- * Create a callback to define a Vue component wrapper around a Web Component.
6
- *
7
- * @prop name - The component tag name (i.e. `ion-button`)
8
- * @prop componentProps - An array of properties on the
9
- * component. These usually match up with the @Prop definitions
10
- * in each component's TSX file.
11
- * @prop customElement - An option custom element instance to pass
12
- * to customElements.define. Only set if `includeImportCustomElements: true` in your config.
13
- * @prop modelProp - The prop that v-model binds to (i.e. value)
14
- * @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
15
- */
16
- export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => import("vue").DefineSetupFnComponent<Props & InputProps<VModelType>, {}, {}, Props & InputProps<VModelType> & {}, import("vue").PublicProps>;