@turquoisehealth/pit-viper 2.66.0 → 2.66.1-dev.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/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +4 -3
- package/pv-components/dist/vue/base/pv-components-base.js +3 -3
- package/pv-components/dist/vue/base/pv-components-base.mjs +5 -4
- package/pv-components/dist/vue/base/pv-components-base.umd.js +3 -3
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +54 -4
- package/pv-components/dist/vue/charts/pv-components-charts.js +60 -54
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +72075 -59561
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +60 -54
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +50 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +49 -48
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +8923 -7039
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +49 -48
- package/pv-components/dist/web/pv-components.iife.js +2 -2
package/package.json
CHANGED
|
@@ -129,7 +129,7 @@ declare type __VLS_PublicProps_11 = {
|
|
|
129
129
|
} & __VLS_Props_11;
|
|
130
130
|
|
|
131
131
|
declare type __VLS_PublicProps_2 = {
|
|
132
|
-
modelValue
|
|
132
|
+
modelValue?: string;
|
|
133
133
|
} & __VLS_Props_2;
|
|
134
134
|
|
|
135
135
|
declare type __VLS_PublicProps_3 = {
|
|
@@ -416,6 +416,7 @@ export declare interface MenuOption {
|
|
|
416
416
|
renderer?: Component;
|
|
417
417
|
rendererProps?: any;
|
|
418
418
|
classList?: string[];
|
|
419
|
+
searchText?: string;
|
|
419
420
|
}
|
|
420
421
|
|
|
421
422
|
declare type MenuOptionsVariant = `${MenuItemType}`;
|
|
@@ -1179,7 +1180,7 @@ default?(_: {}): any;
|
|
|
1179
1180
|
};
|
|
1180
1181
|
}) | null;
|
|
1181
1182
|
searchInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1182
|
-
modelValue
|
|
1183
|
+
modelValue?: string;
|
|
1183
1184
|
} & PvSearchInputProps> & Readonly<{
|
|
1184
1185
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1185
1186
|
}>, {
|
|
@@ -1199,7 +1200,7 @@ C: {};
|
|
|
1199
1200
|
M: {};
|
|
1200
1201
|
Defaults: {};
|
|
1201
1202
|
}, Readonly<{
|
|
1202
|
-
modelValue
|
|
1203
|
+
modelValue?: string;
|
|
1203
1204
|
} & PvSearchInputProps> & Readonly<{
|
|
1204
1205
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1205
1206
|
}>, {
|