@turquoisehealth/pit-viper 2.61.1-dev.0 → 2.62.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 +37 -0
- package/pv-components/dist/vue/base/pv-components-base.js +17 -17
- package/pv-components/dist/vue/base/pv-components-base.mjs +664 -618
- package/pv-components/dist/vue/base/pv-components-base.umd.js +15 -15
- package/pv-components/dist/vue/charts/pv-components-charts.js +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +4 -1
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +1 -1
- package/pv-components/dist/vue/tables/pv-components-tables.js +13 -13
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +249 -246
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +5 -5
- package/pv-components/dist/web/pv-components.iife.js +17 -17
package/package.json
CHANGED
|
@@ -75,10 +75,24 @@ id: string;
|
|
|
75
75
|
|
|
76
76
|
declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
|
|
78
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
|
|
79
|
+
size: PvExpandableContentSizes;
|
|
80
|
+
variant: PvExpandableContentVariants;
|
|
81
|
+
defaultOpen: boolean;
|
|
82
|
+
lines: number;
|
|
83
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
84
|
+
|
|
78
85
|
declare type __VLS_Props = PvSearchInputProps;
|
|
79
86
|
|
|
80
87
|
declare type __VLS_Props_10 = PvSwitchProps;
|
|
81
88
|
|
|
89
|
+
declare type __VLS_Props_11 = {
|
|
90
|
+
lines?: number;
|
|
91
|
+
size?: PvExpandableContentSizes;
|
|
92
|
+
variant?: PvExpandableContentVariants;
|
|
93
|
+
defaultOpen?: boolean;
|
|
94
|
+
};
|
|
95
|
+
|
|
82
96
|
declare type __VLS_Props_2 = PvDatePickerProps;
|
|
83
97
|
|
|
84
98
|
declare type __VLS_Props_3 = PvTabsProps;
|
|
@@ -213,6 +227,15 @@ declare function __VLS_template_8(): {
|
|
|
213
227
|
rootEl: any;
|
|
214
228
|
};
|
|
215
229
|
|
|
230
|
+
declare function __VLS_template_9(): {
|
|
231
|
+
attrs: Partial<{}>;
|
|
232
|
+
slots: {
|
|
233
|
+
default?(_: {}): any;
|
|
234
|
+
};
|
|
235
|
+
refs: {};
|
|
236
|
+
rootEl: HTMLDivElement;
|
|
237
|
+
};
|
|
238
|
+
|
|
216
239
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
217
240
|
|
|
218
241
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
@@ -229,6 +252,8 @@ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
|
229
252
|
|
|
230
253
|
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
231
254
|
|
|
255
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
256
|
+
|
|
232
257
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
233
258
|
new (): {
|
|
234
259
|
$slots: S;
|
|
@@ -259,6 +284,12 @@ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
|
259
284
|
};
|
|
260
285
|
};
|
|
261
286
|
|
|
287
|
+
declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
288
|
+
new (): {
|
|
289
|
+
$slots: S;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
|
|
262
293
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
263
294
|
new (): {
|
|
264
295
|
$slots: S;
|
|
@@ -820,6 +851,12 @@ declare interface PvDropdownProps {
|
|
|
820
851
|
teleportLocation?: string;
|
|
821
852
|
}
|
|
822
853
|
|
|
854
|
+
export declare const PvExpandableContent: __VLS_WithTemplateSlots_14<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
855
|
+
|
|
856
|
+
declare type PvExpandableContentSizes = Extract<PvSize, "none" | "xs" | "sm" | "md" | "lg"> | "none";
|
|
857
|
+
|
|
858
|
+
declare type PvExpandableContentVariants = Extract<PvVariants, "primary" | "ghost">;
|
|
859
|
+
|
|
823
860
|
export declare const PvGhostInput: __VLS_WithTemplateSlots_11<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
824
861
|
|
|
825
862
|
declare interface PvGhostInputProps {
|