@turquoisehealth/pit-viper 2.60.0 → 2.61.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/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +3 -3
- package/pv-components/dist/vue/base/pv-components-base.js +14 -14
- package/pv-components/dist/vue/base/pv-components-base.mjs +410 -405
- package/pv-components/dist/vue/base/pv-components-base.umd.js +8 -8
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +11 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +51 -51
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20486 -20092
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +51 -51
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +9 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6581 -6522
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +40 -40
- package/pv-components/dist/web/pv-components.iife.js +17 -17
package/package.json
CHANGED
|
@@ -968,7 +968,7 @@ showDropdown: boolean;
|
|
|
968
968
|
$: ComponentInternalInstance;
|
|
969
969
|
$data: {};
|
|
970
970
|
$props: {
|
|
971
|
-
readonly teleportLocation
|
|
971
|
+
readonly teleportLocation?: string | undefined;
|
|
972
972
|
readonly open: boolean;
|
|
973
973
|
readonly popoverPositionStyle?: CSSProperties | undefined;
|
|
974
974
|
readonly cssCustomListProperties?: CSSProperties | undefined;
|
|
@@ -1462,7 +1462,7 @@ showDropdown: boolean;
|
|
|
1462
1462
|
$: ComponentInternalInstance;
|
|
1463
1463
|
$data: {};
|
|
1464
1464
|
$props: {
|
|
1465
|
-
readonly teleportLocation
|
|
1465
|
+
readonly teleportLocation?: string | undefined;
|
|
1466
1466
|
readonly open: boolean;
|
|
1467
1467
|
readonly popoverPositionStyle?: CSSProperties | undefined;
|
|
1468
1468
|
readonly cssCustomListProperties?: CSSProperties | undefined;
|
|
@@ -1646,7 +1646,7 @@ declare type PvSelectButtonVariant = Extract<PvVariants, "secondary" | "ghost">;
|
|
|
1646
1646
|
declare type PvSelectButtonVariant_2 = Extract<PvVariants, "secondary" | "ghost">;
|
|
1647
1647
|
|
|
1648
1648
|
declare interface PvSelectMenu {
|
|
1649
|
-
teleportLocation
|
|
1649
|
+
teleportLocation?: string;
|
|
1650
1650
|
open: boolean;
|
|
1651
1651
|
popoverPositionStyle?: CSSProperties;
|
|
1652
1652
|
cssCustomListProperties?: CSSProperties;
|