@turquoisehealth/pit-viper 2.58.0 → 2.59.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 +25 -0
- package/pv-components/dist/vue/base/pv-components-base.js +13 -13
- package/pv-components/dist/vue/base/pv-components-base.mjs +1493 -1457
- package/pv-components/dist/vue/base/pv-components-base.umd.js +14 -14
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +4 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +47 -47
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +18542 -18529
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +50 -50
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +24 -24
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3419 -3419
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +22 -22
- package/pv-components/dist/web/pv-components.iife.js +22 -22
package/package.json
CHANGED
|
@@ -77,6 +77,8 @@ declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, Compone
|
|
|
77
77
|
|
|
78
78
|
declare type __VLS_Props = PvSearchInputProps;
|
|
79
79
|
|
|
80
|
+
declare type __VLS_Props_10 = PvSwitchProps;
|
|
81
|
+
|
|
80
82
|
declare type __VLS_Props_2 = PvDatePickerProps;
|
|
81
83
|
|
|
82
84
|
declare type __VLS_Props_3 = PvTabsProps;
|
|
@@ -97,6 +99,10 @@ declare type __VLS_PublicProps = {
|
|
|
97
99
|
modelValue: string;
|
|
98
100
|
} & __VLS_Props;
|
|
99
101
|
|
|
102
|
+
declare type __VLS_PublicProps_10 = {
|
|
103
|
+
modelValue: boolean;
|
|
104
|
+
} & __VLS_Props_10;
|
|
105
|
+
|
|
100
106
|
declare type __VLS_PublicProps_2 = {
|
|
101
107
|
modelValue: Date;
|
|
102
108
|
} & __VLS_Props_2;
|
|
@@ -1721,6 +1727,25 @@ declare interface PvSuggestionTag_2 {
|
|
|
1721
1727
|
rounded?: boolean;
|
|
1722
1728
|
}
|
|
1723
1729
|
|
|
1730
|
+
export declare const PvSwitch: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1731
|
+
"update:modelValue": (value: boolean) => any;
|
|
1732
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
1733
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1734
|
+
}>, {
|
|
1735
|
+
size: PvSwitchSize;
|
|
1736
|
+
disabled: boolean;
|
|
1737
|
+
id: string;
|
|
1738
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
1739
|
+
|
|
1740
|
+
declare interface PvSwitchProps {
|
|
1741
|
+
size?: PvSwitchSize;
|
|
1742
|
+
label?: string;
|
|
1743
|
+
disabled?: boolean;
|
|
1744
|
+
id?: string;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
declare type PvSwitchSize = Extract<PvSize, "md" | "lg">;
|
|
1748
|
+
|
|
1724
1749
|
export declare const PvTabList: DefineComponent<PvTabListBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1725
1750
|
"update:modelValue": (...args: any[]) => void;
|
|
1726
1751
|
}, string, PublicProps, Readonly<PvTabListBaseProps> & Readonly<{
|