@turquoisehealth/pit-viper 2.65.1 → 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/_site/assets/css/pit-viper-v2-scoped.css +105 -40
- package/_site/assets/css/pit-viper-v2.css +113 -40
- package/_site/assets/css/pit-viper.css +85 -12
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +72 -66
- package/pv-components/dist/vue/base/pv-components-base.js +23 -23
- package/pv-components/dist/vue/base/pv-components-base.mjs +1626 -1617
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +52 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +57 -56
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +25506 -23670
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +58 -57
- 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 +8924 -7040
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +49 -48
- package/pv-components/dist/web/pv-components.iife.js +15 -15
|
@@ -32,7 +32,7 @@ variant: BannerVariants;
|
|
|
32
32
|
orientation: BannerOrientations;
|
|
33
33
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
34
34
|
|
|
35
|
-
declare const __VLS_component_10: DefineComponent<
|
|
35
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
36
36
|
size: PvExpandableContentSizes;
|
|
37
37
|
variant: PvExpandableContentVariants;
|
|
38
38
|
defaultOpen: boolean;
|
|
@@ -52,17 +52,17 @@ ariaLabelledBy: string;
|
|
|
52
52
|
interactive: boolean;
|
|
53
53
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
54
54
|
|
|
55
|
-
declare const __VLS_component_4: DefineComponent<
|
|
55
|
+
declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
56
56
|
"update:modelValue": (value: string | boolean) => any;
|
|
57
|
-
}, string, PublicProps, Readonly<
|
|
57
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
58
58
|
"onUpdate:modelValue"?: ((value: string | boolean) => any) | undefined;
|
|
59
59
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
60
60
|
|
|
61
61
|
declare const __VLS_component_5: DefineComponent<PvSidePanelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvSidePanelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
62
62
|
|
|
63
|
-
declare const __VLS_component_6: DefineComponent<
|
|
63
|
+
declare const __VLS_component_6: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
64
64
|
"update:modelValue": (value: string) => any;
|
|
65
|
-
}, string, PublicProps, Readonly<
|
|
65
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
66
66
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
variant: PvGhostInputVariant;
|
|
@@ -70,9 +70,9 @@ variant: PvGhostInputVariant;
|
|
|
70
70
|
inputRef: HTMLInputElement;
|
|
71
71
|
}, HTMLDivElement>;
|
|
72
72
|
|
|
73
|
-
declare const __VLS_component_7: DefineComponent<
|
|
73
|
+
declare const __VLS_component_7: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
74
74
|
"update:modelValue": (value: string) => any;
|
|
75
|
-
}, string, PublicProps, Readonly<
|
|
75
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
76
76
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
77
77
|
}>, {
|
|
78
78
|
variant: PvInputVariant;
|
|
@@ -87,71 +87,77 @@ variant: PvCardVariant;
|
|
|
87
87
|
interactive: boolean;
|
|
88
88
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
89
89
|
|
|
90
|
-
declare type __VLS_Props =
|
|
90
|
+
declare type __VLS_Props = PvSegmentControlProps;
|
|
91
91
|
|
|
92
|
-
declare type __VLS_Props_10 =
|
|
92
|
+
declare type __VLS_Props_10 = PvInputProps;
|
|
93
93
|
|
|
94
|
-
declare type __VLS_Props_11 =
|
|
94
|
+
declare type __VLS_Props_11 = PvSwitchProps;
|
|
95
|
+
|
|
96
|
+
declare type __VLS_Props_12 = {
|
|
95
97
|
lines?: number;
|
|
96
98
|
size?: PvExpandableContentSizes;
|
|
97
99
|
variant?: PvExpandableContentVariants;
|
|
98
100
|
defaultOpen?: boolean;
|
|
99
101
|
};
|
|
100
102
|
|
|
101
|
-
declare type __VLS_Props_2 =
|
|
103
|
+
declare type __VLS_Props_2 = PvSearchInputProps;
|
|
102
104
|
|
|
103
|
-
declare type __VLS_Props_3 =
|
|
105
|
+
declare type __VLS_Props_3 = PvDatePickerProps;
|
|
104
106
|
|
|
105
|
-
declare type __VLS_Props_4 =
|
|
107
|
+
declare type __VLS_Props_4 = PvTabsProps;
|
|
106
108
|
|
|
107
|
-
declare type __VLS_Props_5 =
|
|
109
|
+
declare type __VLS_Props_5 = PvPaginationProps;
|
|
108
110
|
|
|
109
|
-
declare type __VLS_Props_6 =
|
|
111
|
+
declare type __VLS_Props_6 = PvSelectableCardProps;
|
|
110
112
|
|
|
111
|
-
declare type __VLS_Props_7 =
|
|
113
|
+
declare type __VLS_Props_7 = PvGhostInputProps;
|
|
112
114
|
|
|
113
|
-
declare type __VLS_Props_8 =
|
|
115
|
+
declare type __VLS_Props_8 = PvToggleButton_2;
|
|
114
116
|
|
|
115
|
-
declare type __VLS_Props_9 =
|
|
117
|
+
declare type __VLS_Props_9 = PvCheckboxProps;
|
|
116
118
|
|
|
117
119
|
declare type __VLS_PublicProps = {
|
|
118
120
|
modelValue: string;
|
|
119
121
|
} & __VLS_Props;
|
|
120
122
|
|
|
121
123
|
declare type __VLS_PublicProps_10 = {
|
|
122
|
-
modelValue
|
|
124
|
+
modelValue?: string;
|
|
123
125
|
} & __VLS_Props_10;
|
|
124
126
|
|
|
127
|
+
declare type __VLS_PublicProps_11 = {
|
|
128
|
+
modelValue: boolean;
|
|
129
|
+
} & __VLS_Props_11;
|
|
130
|
+
|
|
125
131
|
declare type __VLS_PublicProps_2 = {
|
|
126
|
-
modelValue
|
|
132
|
+
modelValue?: string;
|
|
127
133
|
} & __VLS_Props_2;
|
|
128
134
|
|
|
129
135
|
declare type __VLS_PublicProps_3 = {
|
|
130
|
-
modelValue:
|
|
136
|
+
modelValue: Date;
|
|
131
137
|
} & __VLS_Props_3;
|
|
132
138
|
|
|
133
139
|
declare type __VLS_PublicProps_4 = {
|
|
134
|
-
modelValue:
|
|
140
|
+
modelValue: string;
|
|
135
141
|
} & __VLS_Props_4;
|
|
136
142
|
|
|
137
143
|
declare type __VLS_PublicProps_5 = {
|
|
138
|
-
modelValue
|
|
144
|
+
modelValue: number;
|
|
139
145
|
} & __VLS_Props_5;
|
|
140
146
|
|
|
141
147
|
declare type __VLS_PublicProps_6 = {
|
|
142
|
-
modelValue?: string;
|
|
148
|
+
modelValue?: boolean | string;
|
|
143
149
|
} & __VLS_Props_6;
|
|
144
150
|
|
|
145
151
|
declare type __VLS_PublicProps_7 = {
|
|
146
|
-
modelValue?:
|
|
152
|
+
modelValue?: string;
|
|
147
153
|
} & __VLS_Props_7;
|
|
148
154
|
|
|
149
155
|
declare type __VLS_PublicProps_8 = {
|
|
150
|
-
modelValue?: boolean;
|
|
156
|
+
modelValue?: boolean | string;
|
|
151
157
|
} & __VLS_Props_8;
|
|
152
158
|
|
|
153
159
|
declare type __VLS_PublicProps_9 = {
|
|
154
|
-
modelValue?:
|
|
160
|
+
modelValue?: boolean;
|
|
155
161
|
} & __VLS_Props_9;
|
|
156
162
|
|
|
157
163
|
declare function __VLS_template(): {
|
|
@@ -410,6 +416,7 @@ export declare interface MenuOption {
|
|
|
410
416
|
renderer?: Component;
|
|
411
417
|
rendererProps?: any;
|
|
412
418
|
classList?: string[];
|
|
419
|
+
searchText?: string;
|
|
413
420
|
}
|
|
414
421
|
|
|
415
422
|
declare type MenuOptionsVariant = `${MenuItemType}`;
|
|
@@ -428,12 +435,9 @@ declare interface Option_2 {
|
|
|
428
435
|
label: string;
|
|
429
436
|
}
|
|
430
437
|
|
|
431
|
-
declare
|
|
432
|
-
iconName: string;
|
|
433
|
-
iconPosition: "left" | "right";
|
|
434
|
-
}
|
|
438
|
+
declare type PillDotVariant = "green" | "orange" | "yellow" | "red";
|
|
435
439
|
|
|
436
|
-
declare type PillSize = Extract<PvSize, "md" | "lg">;
|
|
440
|
+
declare type PillSize = Extract<PvSize, "md" | "lg" | "sm">;
|
|
437
441
|
|
|
438
442
|
declare type PillVariant = Extract<PvColorVariants, "default" | "success" | "warning" | "critical" | "highlight">;
|
|
439
443
|
|
|
@@ -532,9 +536,9 @@ declare interface PvCardProps {
|
|
|
532
536
|
|
|
533
537
|
declare type PvCardVariant = Extract<PvVariants, "primary" | "secondary">;
|
|
534
538
|
|
|
535
|
-
export declare const PvCheckbox: DefineComponent<
|
|
539
|
+
export declare const PvCheckbox: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
536
540
|
"update:modelValue": (value: boolean) => any;
|
|
537
|
-
}, string, PublicProps, Readonly<
|
|
541
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
538
542
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
539
543
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
540
544
|
'checkbox-ref': HTMLInputElement;
|
|
@@ -622,9 +626,9 @@ declare type PvCounterBadgeSize = Extract<PvSize, "sm" | "md">;
|
|
|
622
626
|
|
|
623
627
|
declare type PvCounterBadgeVariant = PvVariants;
|
|
624
628
|
|
|
625
|
-
export declare const PvDatePicker: DefineComponent<
|
|
629
|
+
export declare const PvDatePicker: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
626
630
|
"update:modelValue": (value: Date) => any;
|
|
627
|
-
}, string, PublicProps, Readonly<
|
|
631
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
628
632
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
629
633
|
}>, {
|
|
630
634
|
appendTo: "body" | "self";
|
|
@@ -1176,7 +1180,7 @@ default?(_: {}): any;
|
|
|
1176
1180
|
};
|
|
1177
1181
|
}) | null;
|
|
1178
1182
|
searchInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1179
|
-
modelValue
|
|
1183
|
+
modelValue?: string;
|
|
1180
1184
|
} & PvSearchInputProps> & Readonly<{
|
|
1181
1185
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1182
1186
|
}>, {
|
|
@@ -1196,7 +1200,7 @@ C: {};
|
|
|
1196
1200
|
M: {};
|
|
1197
1201
|
Defaults: {};
|
|
1198
1202
|
}, Readonly<{
|
|
1199
|
-
modelValue
|
|
1203
|
+
modelValue?: string;
|
|
1200
1204
|
} & PvSearchInputProps> & Readonly<{
|
|
1201
1205
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1202
1206
|
}>, {
|
|
@@ -1321,9 +1325,9 @@ export declare interface PvMultiSelectButtonSlotProps {
|
|
|
1321
1325
|
searchInput: string;
|
|
1322
1326
|
}
|
|
1323
1327
|
|
|
1324
|
-
export declare const PvPagination: DefineComponent<
|
|
1328
|
+
export declare const PvPagination: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1325
1329
|
"update:modelValue": (value: number) => any;
|
|
1326
|
-
}, string, PublicProps, Readonly<
|
|
1330
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
1327
1331
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1328
1332
|
}>, {
|
|
1329
1333
|
size: PvPaginationSize;
|
|
@@ -1362,9 +1366,9 @@ declare interface PvPillProps {
|
|
|
1362
1366
|
*/
|
|
1363
1367
|
icon?: string;
|
|
1364
1368
|
/**
|
|
1365
|
-
*
|
|
1369
|
+
* Dot Variant
|
|
1366
1370
|
*/
|
|
1367
|
-
|
|
1371
|
+
dotVariant?: PillDotVariant;
|
|
1368
1372
|
/**
|
|
1369
1373
|
* Tag Label
|
|
1370
1374
|
*/
|
|
@@ -1418,11 +1422,11 @@ declare const PvRatingVariants: string[];
|
|
|
1418
1422
|
|
|
1419
1423
|
export declare const PvReleaseBadge: DefineComponent<PvBadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvBadgeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1420
1424
|
|
|
1421
|
-
export declare const PvSearchInput: DefineComponent<
|
|
1425
|
+
export declare const PvSearchInput: DefineComponent<__VLS_PublicProps_2, {
|
|
1422
1426
|
input: Readonly<ShallowRef<HTMLInputElement | null>>;
|
|
1423
1427
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1424
1428
|
"update:modelValue": (value: string) => any;
|
|
1425
|
-
}, string, PublicProps, Readonly<
|
|
1429
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
1426
1430
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1427
1431
|
}>, {
|
|
1428
1432
|
disabled: boolean;
|
|
@@ -1437,25 +1441,27 @@ declare interface PvSearchInputProps {
|
|
|
1437
1441
|
displayShortcut?: boolean;
|
|
1438
1442
|
}
|
|
1439
1443
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1444
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1445
|
-
|
|
1446
|
-
declare interface PvSegmentedControlBaseProps {
|
|
1447
|
-
modelValue: string;
|
|
1448
|
-
large?: boolean;
|
|
1444
|
+
declare interface PvSegmentControlProps {
|
|
1445
|
+
size?: PvSegmentControlSize;
|
|
1446
|
+
options: PvSegmentedControlOption[];
|
|
1449
1447
|
}
|
|
1450
1448
|
|
|
1451
|
-
declare
|
|
1452
|
-
options: OptionWithIcon[];
|
|
1453
|
-
iconOnly: true;
|
|
1454
|
-
}
|
|
1449
|
+
declare type PvSegmentControlSize = Extract<PvSize, "lg" | "xl">;
|
|
1455
1450
|
|
|
1456
|
-
declare
|
|
1457
|
-
|
|
1458
|
-
|
|
1451
|
+
export declare const PvSegmentedControl: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1452
|
+
"update:modelValue": (value: string) => any;
|
|
1453
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
1454
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1455
|
+
}>, {
|
|
1456
|
+
size: PvSegmentControlSize;
|
|
1457
|
+
options: PvSegmentedControlOption[];
|
|
1458
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1459
|
+
|
|
1460
|
+
declare interface PvSegmentedControlOption {
|
|
1461
|
+
label?: string;
|
|
1462
|
+
value: string;
|
|
1463
|
+
icon?: string;
|
|
1464
|
+
iconPosition?: "left" | "right";
|
|
1459
1465
|
}
|
|
1460
1466
|
|
|
1461
1467
|
declare type PvSekeltonSize = Extract<PvSize, "xs" | "sm" | "md" | "lg" | "xl">;
|
|
@@ -1796,9 +1802,9 @@ declare interface PvSuggestionTag_2 {
|
|
|
1796
1802
|
rounded?: boolean;
|
|
1797
1803
|
}
|
|
1798
1804
|
|
|
1799
|
-
export declare const PvSwitch: DefineComponent<
|
|
1805
|
+
export declare const PvSwitch: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1800
1806
|
"update:modelValue": (value: boolean) => any;
|
|
1801
|
-
}, string, PublicProps, Readonly<
|
|
1807
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
1802
1808
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1803
1809
|
}>, {
|
|
1804
1810
|
size: PvSwitchSize;
|
|
@@ -1826,9 +1832,9 @@ declare interface PvTabListBaseProps {
|
|
|
1826
1832
|
options: Option_2[];
|
|
1827
1833
|
}
|
|
1828
1834
|
|
|
1829
|
-
export declare const PvTabs: DefineComponent<
|
|
1835
|
+
export declare const PvTabs: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1830
1836
|
"update:modelValue": (value: string) => any;
|
|
1831
|
-
}, string, PublicProps, Readonly<
|
|
1837
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
1832
1838
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1833
1839
|
}>, {
|
|
1834
1840
|
size: TabSize;
|
|
@@ -1883,9 +1889,9 @@ declare const PvTheme: readonly ["white", "dark"];
|
|
|
1883
1889
|
|
|
1884
1890
|
declare type PvThemes = (typeof PvTheme)[number];
|
|
1885
1891
|
|
|
1886
|
-
export declare const PvToggleButton: DefineComponent<
|
|
1892
|
+
export declare const PvToggleButton: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1887
1893
|
"update:modelValue": (value: string | boolean) => any;
|
|
1888
|
-
}, string, PublicProps, Readonly<
|
|
1894
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
1889
1895
|
"onUpdate:modelValue"?: ((value: string | boolean) => any) | undefined;
|
|
1890
1896
|
}>, {
|
|
1891
1897
|
size: PvToggleButtonSize;
|