@turquoisehealth/pit-viper 2.61.1-dev.1 → 2.62.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 +13 -0
- package/_site/assets/css/pit-viper-v2.css +13 -0
- package/_site/assets/css/pit-viper.css +13 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +38 -1
- 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.d.ts +5 -1
- package/pv-components/dist/vue/charts/pv-components-charts.js +24 -24
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +1579 -1569
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +25 -25
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +21 -21
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +776 -764
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +20 -20
- package/pv-components/dist/web/pv-components.iife.js +17 -17
|
@@ -2956,6 +2956,13 @@
|
|
|
2956
2956
|
top: 100%;
|
|
2957
2957
|
bottom: -4px;
|
|
2958
2958
|
}
|
|
2959
|
+
.pv-v2 .pv-tooltip[data-position=center-left]:after,
|
|
2960
|
+
.pv-v2 .pv-hover-card[data-position=center-left]:after {
|
|
2961
|
+
left: -4px;
|
|
2962
|
+
right: 100%;
|
|
2963
|
+
top: 0;
|
|
2964
|
+
bottom: 0;
|
|
2965
|
+
}
|
|
2959
2966
|
.pv-v2 .pv-tooltip[data-position=center-right]:after,
|
|
2960
2967
|
.pv-v2 .pv-hover-card[data-position=center-right]:after {
|
|
2961
2968
|
left: 100%;
|
|
@@ -2963,6 +2970,12 @@
|
|
|
2963
2970
|
top: 0;
|
|
2964
2971
|
bottom: 0;
|
|
2965
2972
|
}
|
|
2973
|
+
.pv-v2 .pv-tooltip[data-position=center-left] > [role=tooltip],
|
|
2974
|
+
.pv-v2 .pv-hover-card[data-position=center-left] > [role=tooltip] {
|
|
2975
|
+
left: unset;
|
|
2976
|
+
top: 0;
|
|
2977
|
+
right: calc(100% + 0.25rem);
|
|
2978
|
+
}
|
|
2966
2979
|
.pv-v2 .pv-tooltip[data-position=center-right] > [role=tooltip],
|
|
2967
2980
|
.pv-v2 .pv-hover-card[data-position=center-right] > [role=tooltip] {
|
|
2968
2981
|
top: 0;
|
|
@@ -3206,6 +3206,13 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3206
3206
|
top: 100%;
|
|
3207
3207
|
bottom: -4px;
|
|
3208
3208
|
}
|
|
3209
|
+
.pv-tooltip[data-position=center-left]:after,
|
|
3210
|
+
.pv-hover-card[data-position=center-left]:after {
|
|
3211
|
+
left: -4px;
|
|
3212
|
+
right: 100%;
|
|
3213
|
+
top: 0;
|
|
3214
|
+
bottom: 0;
|
|
3215
|
+
}
|
|
3209
3216
|
.pv-tooltip[data-position=center-right]:after,
|
|
3210
3217
|
.pv-hover-card[data-position=center-right]:after {
|
|
3211
3218
|
left: 100%;
|
|
@@ -3213,6 +3220,12 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3213
3220
|
top: 0;
|
|
3214
3221
|
bottom: 0;
|
|
3215
3222
|
}
|
|
3223
|
+
.pv-tooltip[data-position=center-left] > [role=tooltip],
|
|
3224
|
+
.pv-hover-card[data-position=center-left] > [role=tooltip] {
|
|
3225
|
+
left: unset;
|
|
3226
|
+
top: 0;
|
|
3227
|
+
right: calc(100% + 0.25rem);
|
|
3228
|
+
}
|
|
3216
3229
|
.pv-tooltip[data-position=center-right] > [role=tooltip],
|
|
3217
3230
|
.pv-hover-card[data-position=center-right] > [role=tooltip] {
|
|
3218
3231
|
top: 0;
|
|
@@ -3211,6 +3211,13 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3211
3211
|
top: 100%;
|
|
3212
3212
|
bottom: -4px;
|
|
3213
3213
|
}
|
|
3214
|
+
.pv-tooltip[data-position=center-left]:after,
|
|
3215
|
+
.pv-hover-card[data-position=center-left]:after {
|
|
3216
|
+
left: -4px;
|
|
3217
|
+
right: 100%;
|
|
3218
|
+
top: 0;
|
|
3219
|
+
bottom: 0;
|
|
3220
|
+
}
|
|
3214
3221
|
.pv-tooltip[data-position=center-right]:after,
|
|
3215
3222
|
.pv-hover-card[data-position=center-right]:after {
|
|
3216
3223
|
left: 100%;
|
|
@@ -3218,6 +3225,12 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3218
3225
|
top: 0;
|
|
3219
3226
|
bottom: 0;
|
|
3220
3227
|
}
|
|
3228
|
+
.pv-tooltip[data-position=center-left] > [role=tooltip],
|
|
3229
|
+
.pv-hover-card[data-position=center-left] > [role=tooltip] {
|
|
3230
|
+
left: unset;
|
|
3231
|
+
top: 0;
|
|
3232
|
+
right: calc(100% + 0.25rem);
|
|
3233
|
+
}
|
|
3221
3234
|
.pv-tooltip[data-position=center-right] > [role=tooltip],
|
|
3222
3235
|
.pv-hover-card[data-position=center-right] > [role=tooltip] {
|
|
3223
3236
|
top: 0;
|
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 {
|
|
@@ -1844,7 +1881,7 @@ declare type PvToggleButtonVariant = Extract<PvVariants, "secondary" | "tertiary
|
|
|
1844
1881
|
|
|
1845
1882
|
export declare const PvTooltip: __VLS_WithTemplateSlots_7<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1846
1883
|
|
|
1847
|
-
declare type PvTooltipPositions = "bottom-center" | "bottom-right" | "top-left" | "top-center" | "top-right" | "center-right";
|
|
1884
|
+
declare type PvTooltipPositions = "bottom-center" | "bottom-right" | "top-left" | "top-center" | "top-right" | "center-left" | "center-right";
|
|
1848
1885
|
|
|
1849
1886
|
declare interface PvTooltipProps {
|
|
1850
1887
|
variant?: PvTooltipVariants;
|