@turquoisehealth/pit-viper 2.206.2 → 2.207.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 +0 -10
- package/_site/assets/css/pit-viper-v2.css +0 -10
- 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-filter-panel-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/stats/web/pv-sidebar-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tag-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +20 -3
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
- package/pv-components/dist/vue/base/components/base/PvTag/PvTag.vue.d.ts +6 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +515 -477
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +20 -3
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
- package/pv-components/dist/vue/visualizations/components/base/PvTag/PvTag.vue.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/widgetOptions.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +26 -2
- package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1289 -1056
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +4 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +46 -34
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +5 -3
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +4 -1
- package/pv-components/dist/web/components/pv-sidebar/pv-sidebar.js +359 -359
- package/pv-components/dist/web/components/pv-tag/pv-tag.js +4 -2
- package/pv-components/dist/web/pv-components.iife.js +4 -4
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -47,7 +47,8 @@ var y = [
|
|
|
47
47
|
label: { type: String },
|
|
48
48
|
showClear: { type: Boolean },
|
|
49
49
|
rounded: { type: Boolean },
|
|
50
|
-
spine: { type: Boolean }
|
|
50
|
+
spine: { type: Boolean },
|
|
51
|
+
rumRemoveActionName: { type: String }
|
|
51
52
|
},
|
|
52
53
|
emits: ["handle-close", "handle-click"],
|
|
53
54
|
setup(a) {
|
|
@@ -95,8 +96,9 @@ var y = [
|
|
|
95
96
|
"data-testid": "pv-tag-close-icon",
|
|
96
97
|
size: 12,
|
|
97
98
|
name: "close",
|
|
99
|
+
"data-dd-action-name": a.rumRemoveActionName,
|
|
98
100
|
onClick: o[0] ||= _((t) => e.$emit("handle-close", a.label), ["stop"])
|
|
99
|
-
})) : n("v-if", !0)
|
|
101
|
+
}, null, 8, ["data-dd-action-name"])) : n("v-if", !0)
|
|
100
102
|
], 14, S));
|
|
101
103
|
}
|
|
102
104
|
}), w = Object.defineProperty, T = Object.getOwnPropertySymbols, E = Object.prototype.hasOwnProperty, D = Object.prototype.propertyIsEnumerable, O = (e, t, n) => t in e ? w(e, t, {
|