@turquoisehealth/pit-viper 2.171.1-dev.6 → 2.171.1-dev.7
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-a11y.css +17 -0
- package/_site/assets/css/pit-viper-consumer.css +17 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +16 -0
- package/_site/assets/css/pit-viper-v2.css +17 -0
- package/_site/assets/css/pit-viper.css +17 -0
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-switch-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +9 -2
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/base/components/base/PvSwitch/PvSwitch.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvSwitch/types.d.ts +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +1451 -1420
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +5 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItem.vue.d.ts +9 -2
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/visualizations/components/base/PvSwitch/PvSwitch.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSwitch/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +0 -7
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2711 -2648
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +5 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +1343 -1273
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1498 -1428
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1241 -1171
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +23 -24
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +996 -926
- package/pv-components/dist/web/components/pv-switch/pv-switch.js +114 -106
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +21 -22
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +21 -21
- package/pv-components/dist/web/pv-components.iife.js +48 -48
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -43,6 +43,7 @@ export interface MenuOptionConfig {
|
|
|
43
43
|
renderer?: Component;
|
|
44
44
|
action?: MenuAction<any>;
|
|
45
45
|
variant?: MenuOptionsVariant;
|
|
46
|
+
disabledVariant?: MenuOptionsDisabledVariant;
|
|
46
47
|
counterBadgeVariant?: PvCounterBadgeVariant;
|
|
47
48
|
}
|
|
48
49
|
export interface MenuOptionSelectedEvent {
|
|
@@ -55,6 +56,9 @@ export declare enum MenuItemType {
|
|
|
55
56
|
company = "company",
|
|
56
57
|
avatar = "avatar",
|
|
57
58
|
icon = "icon",
|
|
58
|
-
radio = "radio"
|
|
59
|
+
radio = "radio",
|
|
60
|
+
checkmark = "checkmark",
|
|
61
|
+
toggle = "toggle"
|
|
59
62
|
}
|
|
60
63
|
export type MenuOptionsVariant = `${MenuItemType}`;
|
|
64
|
+
export type MenuOptionsDisabledVariant = "default" | "ghost" | null;
|