@turquoisehealth/pit-viper 2.240.1 → 2.240.3-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/_site/assets/css/pit-viper-a11y.css +26 -11
- package/_site/assets/css/pit-viper-consumer.css +26 -11
- package/_site/assets/css/pit-viper-v2-scoped.css +23 -11
- package/_site/assets/css/pit-viper-v2.css +27 -12
- package/_site/assets/css/pit-viper.css +26 -11
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/ai/stats.html +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-dropdown-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-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-popover-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-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-reasoning-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-step-list-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/base/PvDropdown/PvDropdown.vue.d.ts +7 -4
- package/pv-components/dist/vue/ai/components/base/PvPopover/PvPopover.vue.d.ts +6 -3
- package/pv-components/dist/vue/ai/pv-components-ai.mjs +33 -35
- package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
- package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +7 -4
- package/pv-components/dist/vue/base/components/base/PvPopover/PvPopover.vue.d.ts +6 -3
- package/pv-components/dist/vue/base/pv-components-base.mjs +559 -552
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +7 -4
- package/pv-components/dist/vue/visualizations/components/base/PvPopover/PvPopover.vue.d.ts +6 -3
- package/pv-components/dist/vue/visualizations/components/base/PvSortableList/PvSortableList.vue.d.ts +7 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvTableOptionsPanel.vue.d.ts +7 -4
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +14 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/FilterGroupMenu.vue.d.ts +7 -4
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +584 -553
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-dropdown/pv-dropdown.js +12 -8
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +11 -7
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +11 -7
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +11 -7
- package/pv-components/dist/web/components/pv-popover/pv-popover.js +11 -7
- package/pv-components/dist/web/components/pv-popover-menu/pv-popover-menu.js +11 -7
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1053 -1042
- package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +522 -524
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +11 -7
- package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +372 -369
- package/pv-components/dist/web/pv-components.iife.js +36 -36
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -3992,6 +3992,14 @@ var qo = ["data-align"], Jo = ["id", "role"], Yo = /* @__PURE__ */ at(/* @__PURE
|
|
|
3992
3992
|
type: Boolean,
|
|
3993
3993
|
default: !1
|
|
3994
3994
|
},
|
|
3995
|
+
isSortable: {
|
|
3996
|
+
type: Boolean,
|
|
3997
|
+
default: !1
|
|
3998
|
+
},
|
|
3999
|
+
listClass: {
|
|
4000
|
+
default: void 0,
|
|
4001
|
+
type: String
|
|
4002
|
+
},
|
|
3995
4003
|
listId: {
|
|
3996
4004
|
default: void 0,
|
|
3997
4005
|
type: String
|
|
@@ -3999,10 +4007,6 @@ var qo = ["data-align"], Jo = ["id", "role"], Yo = /* @__PURE__ */ at(/* @__PURE
|
|
|
3999
4007
|
listRole: {
|
|
4000
4008
|
default: "list",
|
|
4001
4009
|
type: String
|
|
4002
|
-
},
|
|
4003
|
-
isSortable: {
|
|
4004
|
-
type: Boolean,
|
|
4005
|
-
default: !1
|
|
4006
4010
|
}
|
|
4007
4011
|
},
|
|
4008
4012
|
emits: ["list-order-updated"],
|
|
@@ -4028,13 +4032,13 @@ var qo = ["data-align"], Jo = ["id", "role"], Yo = /* @__PURE__ */ at(/* @__PURE
|
|
|
4028
4032
|
id: e.listId,
|
|
4029
4033
|
ref: "popoverList",
|
|
4030
4034
|
role: e.listRole,
|
|
4031
|
-
class: "pv-popover-list",
|
|
4035
|
+
class: x(["pv-popover-list", e.listClass]),
|
|
4032
4036
|
style: C(e.cssCustomListProperties)
|
|
4033
|
-
}, [N(n.$slots, "default", {}, void 0, !0)],
|
|
4037
|
+
}, [N(n.$slots, "default", {}, void 0, !0)], 14, Jo),
|
|
4034
4038
|
N(n.$slots, "footer", {}, void 0, !0)
|
|
4035
4039
|
], 64)) : N(n.$slots, "default", { key: 1 }, void 0, !0)], 14, qo));
|
|
4036
4040
|
}
|
|
4037
|
-
}), [["styles", [".pv-popover-list[data-v-
|
|
4041
|
+
}), [["styles", [".pv-popover-list[data-v-fe6e9c6a]{font-size:14px}.pv-popover-pinned-sections[data-v-fe6e9c6a]{flex-direction:column;display:flex;overflow:hidden}.pv-popover-pinned-sections .pv-popover-list[data-v-fe6e9c6a]{overflow-y:auto}"]], ["__scopeId", "data-v-fe6e9c6a"]]), Xo = ["role"], Zo = [
|
|
4038
4042
|
"data-active",
|
|
4039
4043
|
"data-option-id",
|
|
4040
4044
|
"data-testid",
|