@turquoisehealth/pit-viper 2.210.1 → 2.211.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-a11y.css +3 -1
- package/_site/assets/css/pit-viper-consumer.css +3 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +3 -1
- package/_site/assets/css/pit-viper-v2.css +3 -1
- package/_site/assets/css/pit-viper.css +3 -1
- 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-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +5 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/PvMenu.vue.d.ts +43 -4
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/symbols.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +8 -1
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +2 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +2192 -1757
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +5 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenu.vue.d.ts +43 -4
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/symbols.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +8 -1
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +4 -2
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionMenuItemRenderer.vue.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +6 -3
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +17 -2
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/PvDataTable.vue.d.ts +4 -2
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +8 -2
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +12 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +3016 -2313
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +4 -0
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +3695 -2074
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +3109 -1491
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1381 -1332
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2751 -1118
- package/pv-components/dist/web/pv-components.iife.js +36 -36
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -32,6 +32,10 @@ export interface MenuOption<T = unknown> {
|
|
|
32
32
|
subduedText?: string;
|
|
33
33
|
icon?: string;
|
|
34
34
|
hoverTitle?: string;
|
|
35
|
+
/** Optional Datadog RUM action name applied to the interactive menu item. */
|
|
36
|
+
rumActionName?: string;
|
|
37
|
+
/** ARIA popup type for options with custom child content. Defaults to menu. */
|
|
38
|
+
popoverRole?: "menu" | "dialog";
|
|
35
39
|
companyName?: string;
|
|
36
40
|
avatar?: {
|
|
37
41
|
initials?: string;
|