@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
|
@@ -49,9 +49,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvDropdownProps
|
|
|
49
49
|
readonly cssCustomListProperties?: CSSProperties | undefined;
|
|
50
50
|
readonly cssCustomProperties?: CSSProperties | undefined;
|
|
51
51
|
readonly isList?: boolean | undefined;
|
|
52
|
+
readonly isSortable?: boolean | undefined;
|
|
53
|
+
readonly listClass?: string | undefined;
|
|
52
54
|
readonly listId?: string | undefined;
|
|
53
55
|
readonly listRole?: string | undefined;
|
|
54
|
-
readonly isSortable?: boolean | undefined;
|
|
55
56
|
readonly "onList-order-updated"?: ((value: string[]) => any) | undefined;
|
|
56
57
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
57
58
|
$attrs: Attrs;
|
|
@@ -79,9 +80,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvDropdownProps
|
|
|
79
80
|
cssCustomProperties: CSSProperties;
|
|
80
81
|
alignment: "top" | "right" | "top right";
|
|
81
82
|
isList: boolean;
|
|
83
|
+
isSortable: boolean;
|
|
84
|
+
listClass: string;
|
|
82
85
|
listId: string;
|
|
83
86
|
listRole: string;
|
|
84
|
-
isSortable: boolean;
|
|
85
87
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
86
88
|
beforeCreate?: (() => void) | (() => void)[];
|
|
87
89
|
created?: (() => void) | (() => void)[];
|
|
@@ -106,12 +108,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvDropdownProps
|
|
|
106
108
|
cssCustomProperties: CSSProperties;
|
|
107
109
|
alignment: "top" | "right" | "top right";
|
|
108
110
|
isList: boolean;
|
|
111
|
+
isSortable: boolean;
|
|
112
|
+
listClass: string;
|
|
109
113
|
listId: string;
|
|
110
114
|
listRole: string;
|
|
111
|
-
isSortable: boolean;
|
|
112
115
|
}> & Omit<Readonly< PvPopoverProps> & Readonly<{
|
|
113
116
|
"onList-order-updated"?: ((value: string[]) => any) | undefined;
|
|
114
|
-
}>, "popoverRoot" | ("cssCustomProperties" | "alignment" | "isList" | "
|
|
117
|
+
}>, "popoverRoot" | ("cssCustomProperties" | "alignment" | "isList" | "isSortable" | "listClass" | "listId" | "listRole")> & {
|
|
115
118
|
popoverRoot: HTMLElement | null;
|
|
116
119
|
} & {} & ComponentCustomProperties & {} & {
|
|
117
120
|
$slots: {
|
|
@@ -8,12 +8,14 @@ export interface PvPopoverProps {
|
|
|
8
8
|
cssCustomProperties?: CSSProperties;
|
|
9
9
|
/** When true, renders the content inside a `<ul>` list element. */
|
|
10
10
|
isList?: boolean;
|
|
11
|
+
/** When true and isList is true, enables drag-and-drop reordering of list items. */
|
|
12
|
+
isSortable?: boolean;
|
|
13
|
+
/** Classes applied to the inner list element (when isList is true). */
|
|
14
|
+
listClass?: string;
|
|
11
15
|
/** id applied to the inner list element, so a trigger can reference it via aria-controls. */
|
|
12
16
|
listId?: string;
|
|
13
17
|
/** ARIA role for the inner list element. Defaults to `list`. */
|
|
14
18
|
listRole?: string;
|
|
15
|
-
/** When true and isList is true, enables drag-and-drop reordering of list items. */
|
|
16
|
-
isSortable?: boolean;
|
|
17
19
|
}
|
|
18
20
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvPopoverProps, {
|
|
19
21
|
popoverRoot: Ref<HTMLElement | null, HTMLElement | null>;
|
|
@@ -25,9 +27,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvPopoverProps,
|
|
|
25
27
|
cssCustomProperties: CSSProperties;
|
|
26
28
|
alignment: "top" | "right" | "top right";
|
|
27
29
|
isList: boolean;
|
|
30
|
+
isSortable: boolean;
|
|
31
|
+
listClass: string;
|
|
28
32
|
listId: string;
|
|
29
33
|
listRole: string;
|
|
30
|
-
isSortable: boolean;
|
|
31
34
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
32
35
|
popoverRoot: HTMLDivElement;
|
|
33
36
|
popoverList: HTMLUListElement;
|