@turquoisehealth/pit-viper 2.71.0 → 2.71.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 +91 -9
- package/pv-components/dist/vue/charts/pv-components-charts.js +57 -56
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +26131 -24219
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +58 -57
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +59 -1
- package/pv-components/dist/vue/tables/pv-components-tables.js +49 -48
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +8981 -7101
- 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
|
@@ -137,7 +137,7 @@ declare type __VLS_PublicProps_11 = {
|
|
|
137
137
|
} & __VLS_Props_11;
|
|
138
138
|
|
|
139
139
|
declare type __VLS_PublicProps_2 = {
|
|
140
|
-
modelValue
|
|
140
|
+
modelValue?: string;
|
|
141
141
|
} & __VLS_Props_2;
|
|
142
142
|
|
|
143
143
|
declare type __VLS_PublicProps_3 = {
|
|
@@ -441,6 +441,7 @@ export declare interface MenuOption {
|
|
|
441
441
|
renderer?: Component;
|
|
442
442
|
rendererProps?: any;
|
|
443
443
|
classList?: string[];
|
|
444
|
+
searchText?: string;
|
|
444
445
|
}
|
|
445
446
|
|
|
446
447
|
declare type MenuOptionsVariant = `${MenuItemType}`;
|
|
@@ -1204,7 +1205,7 @@ default?(_: {}): any;
|
|
|
1204
1205
|
};
|
|
1205
1206
|
}) | null;
|
|
1206
1207
|
searchInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1207
|
-
modelValue
|
|
1208
|
+
modelValue?: string;
|
|
1208
1209
|
} & PvSearchInputProps> & Readonly<{
|
|
1209
1210
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1210
1211
|
}>, {
|
|
@@ -1224,7 +1225,7 @@ C: {};
|
|
|
1224
1225
|
M: {};
|
|
1225
1226
|
Defaults: {};
|
|
1226
1227
|
}, Readonly<{
|
|
1227
|
-
modelValue
|
|
1228
|
+
modelValue?: string;
|
|
1228
1229
|
} & PvSearchInputProps> & Readonly<{
|
|
1229
1230
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1230
1231
|
}>, {
|