@nanoporetech-digital/components-vue 1.13.11 → 1.13.15
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/CHANGELOG.md +16 -0
- package/package.json +8 -9
- package/dist/demo/main.js +0 -6
- package/dist/demo/main.js.map +0 -1
- package/dist/index.js +0 -3
- package/dist/index.js.map +0 -1
- package/dist/nano-vue.js +0 -38
- package/dist/nano-vue.js.map +0 -1
- package/dist/proxies.js +0 -531
- package/dist/proxies.js.map +0 -1
- package/dist/types/demo/main.d.ts +0 -1
- package/dist/types/index.d.ts +0 -2
- package/dist/types/nano-vue.d.ts +0 -2
- package/dist/types/proxies.d.ts +0 -1807
- package/dist/types/vue-component-lib/utils.d.ts +0 -20
- package/dist/vetur/attributes.json +0 -1965
- package/dist/vetur/tags.json +0 -547
- package/dist/vue-component-lib/utils.js +0 -166
- package/dist/vue-component-lib/utils.js.map +0 -1
- package/dist/web-types.json +0 -13
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export interface InputProps extends Object {
|
|
2
|
-
modelValue: string | boolean;
|
|
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
|
-
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
|
16
|
-
* correctly updated when a user's event callback fires.
|
|
17
|
-
*/
|
|
18
|
-
export declare const defineContainer: <Props>(name: string, customElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => import("vue").DefineComponent<Props & InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Props & InputProps>> & {
|
|
19
|
-
[x: string & `on${string}`]: never;
|
|
20
|
-
}, import("vue").ExtractDefaultPropTypes<Props & InputProps>>;
|