@turquoisehealth/pit-viper 2.46.0 → 2.48.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 +5 -2
- package/pv-components/dist/vue/base/pv-components-base.js +9 -9
- package/pv-components/dist/vue/base/pv-components-base.mjs +760 -744
- package/pv-components/dist/vue/charts/pv-components-charts.js +28 -28
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +5353 -5343
- package/pv-components/dist/vue/tables/pv-components-tables.js +19 -19
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +2178 -2168
- package/pv-components/dist/web/pv-components.iife.js +13 -13
package/package.json
CHANGED
|
@@ -1189,6 +1189,7 @@ useTeleport: boolean;
|
|
|
1189
1189
|
teleportLocation: string;
|
|
1190
1190
|
showSearchInput: boolean;
|
|
1191
1191
|
optionsVariant: MenuOptionsVariant_2;
|
|
1192
|
+
allowDeselect: boolean;
|
|
1192
1193
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1193
1194
|
'select-button-trigger-ref': CreateComponentPublicInstanceWithMixins<Readonly<PvSelectButtonTrigger> & Readonly<{
|
|
1194
1195
|
"onHandle-toggle-dropdown"?: (() => any) | undefined;
|
|
@@ -1374,14 +1375,14 @@ declare interface PvSelectButton_2 {
|
|
|
1374
1375
|
size?: PvSelectButtonSize_2;
|
|
1375
1376
|
alignment?: "top" | "right" | "top right" | undefined;
|
|
1376
1377
|
popoverCssProperties?: CSSProperties;
|
|
1378
|
+
prefixLabel?: string;
|
|
1377
1379
|
label?: string;
|
|
1378
|
-
icon?: string;
|
|
1379
|
-
companyLogo?: string;
|
|
1380
1380
|
showMenuAction?: boolean;
|
|
1381
1381
|
showSearchInput?: boolean;
|
|
1382
1382
|
optionsVariant?: MenuOptionsVariant_2;
|
|
1383
1383
|
options: MenuOption_2[];
|
|
1384
1384
|
useTeleport?: boolean;
|
|
1385
|
+
allowDeselect?: boolean;
|
|
1385
1386
|
}
|
|
1386
1387
|
|
|
1387
1388
|
declare type PvSelectButtonSize = Extract<PvSize, "lg" | "xl">;
|
|
@@ -1394,12 +1395,14 @@ declare interface PvSelectButtonTrigger {
|
|
|
1394
1395
|
disabled?: boolean;
|
|
1395
1396
|
counterPosition?: "left" | "right";
|
|
1396
1397
|
counterValue?: number;
|
|
1398
|
+
prefixLabel?: string;
|
|
1397
1399
|
label?: string;
|
|
1398
1400
|
icon?: string;
|
|
1399
1401
|
companyLogo?: string;
|
|
1400
1402
|
showClear?: boolean;
|
|
1401
1403
|
showDropdown?: boolean;
|
|
1402
1404
|
open: boolean;
|
|
1405
|
+
isLoading?: boolean;
|
|
1403
1406
|
}
|
|
1404
1407
|
|
|
1405
1408
|
declare type PvSelectButtonVariant = Extract<PvVariants, "secondary" | "ghost">;
|