@turquoisehealth/pit-viper 2.189.2-dev.0 → 2.190.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 +14 -0
- package/_site/assets/css/pit-viper-consumer.css +14 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +11 -0
- package/_site/assets/css/pit-viper-v2.css +14 -0
- package/_site/assets/css/pit-viper.css +14 -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-avatar-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-modal-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/PvAvatar/PvAvatar.vue.d.ts +2 -15
- package/pv-components/dist/vue/base/components/base/PvAvatar/types.d.ts +17 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/cascadeUtils.d.ts +7 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +2 -2
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +2 -2
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +743 -704
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
- package/pv-components/dist/vue/visualizations/components/base/PvAvatar/types.d.ts +17 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/cascadeUtils.d.ts +7 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +0 -2
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/FilterPanel.vue.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/SetFilter.vue.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +0 -2
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +9 -3
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1548 -1513
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +3 -0
- package/pv-components/dist/web/components/pv-avatar/pv-avatar.js +8 -3
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +881 -869
- package/pv-components/dist/web/components/pv-modal/pv-modal.js +2 -3
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1178 -1143
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1191 -1178
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1191 -1140
- package/pv-components/dist/web/pv-components.iife.js +31 -31
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -41,10 +41,9 @@ var _ = { class: "pv-inset-squish-12" }, v = {
|
|
|
41
41
|
}, c = (e) => {
|
|
42
42
|
!i.disableCloseOnClickOutside && e.target === a.value && s();
|
|
43
43
|
};
|
|
44
|
-
return (i,
|
|
44
|
+
return (i, a) => (l(), t("dialog", {
|
|
45
45
|
class: "pv-modal-sm",
|
|
46
|
-
|
|
47
|
-
ref: a,
|
|
46
|
+
ref: "dialog",
|
|
48
47
|
style: { "--max-width": "480px" },
|
|
49
48
|
onClose: s,
|
|
50
49
|
onClick: c
|