@turquoisehealth/pit-viper 2.224.1-dev.2 → 2.224.1-dev.3
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 +79 -1
- package/_site/assets/css/pit-viper-consumer.css +79 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +68 -1
- package/_site/assets/css/pit-viper-v2.css +118 -1
- package/_site/assets/css/pit-viper.css +79 -1
- 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-action-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-hover-action-menu-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-v2-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-segmented-control-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-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-step-list-stats.html +4950 -0
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +11 -3
- package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +3 -0
- package/pv-components/dist/vue/ai/components/ai/PvStepList/PvStepList.vue.d.ts +7 -0
- package/pv-components/dist/vue/ai/components/ai/PvStepList/types.d.ts +42 -0
- package/pv-components/dist/vue/ai/components/ai/index.d.ts +2 -0
- package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/ai/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/ai/pv-components-ai.mjs +490 -327
- package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
- package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/base/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +1091 -983
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +13 -8
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
- package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
- package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +16 -8
- package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
- package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
- package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
- package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
- package/pv-components/dist/web/pv-components.iife.js +39 -39
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -7,6 +7,8 @@ export { promptInputStatuses } from './PvPromptInput/types';
|
|
|
7
7
|
export type { PvPromptInputProps, PvPromptInputStatus } from './PvPromptInput/types';
|
|
8
8
|
export { default as PvReasoning } from './PvReasoning/PvReasoning.vue';
|
|
9
9
|
export type { PvReasoningProps } from './PvReasoning/types';
|
|
10
|
+
export { default as PvStepList } from './PvStepList/PvStepList.vue';
|
|
11
|
+
export type { PvStep, PvStepListProps, PvStepStatus, PvStepTag, PvStepVariant } from './PvStepList/types';
|
|
10
12
|
export { default as PvTool } from './PvTool/PvTool.vue';
|
|
11
13
|
export type { PvToolProps } from './PvTool/types';
|
|
12
14
|
export { toolLifecycleStates } from './toolLifecycle';
|
package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { QueryBuilderOutput, QueryBuilderProcessor, QueryBuilderSuggestionMenuOption } from './useQueryBuilder';
|
|
2
|
+
import { PvSize } from '../baseProps';
|
|
2
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
4
|
export interface PvQueryBuilderInputProps {
|
|
4
5
|
/**
|
|
@@ -21,6 +22,8 @@ export interface PvQueryBuilderInputProps {
|
|
|
21
22
|
* When true, shows a loading spinner in the suggestion dropdown.
|
|
22
23
|
*/
|
|
23
24
|
optionsLoading?: boolean;
|
|
25
|
+
/** Matches PvSearchInput sizing. */
|
|
26
|
+
size?: Extract<PvSize, "lg" | "xl">;
|
|
24
27
|
/**
|
|
25
28
|
* When true, users can press Enter to add free-text terms without selecting a suggestion.
|
|
26
29
|
*/
|
|
@@ -57,6 +60,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
57
60
|
"onUpdate:searchText"?: ((value: string) => any) | undefined;
|
|
58
61
|
"onUpdate:query"?: ((value: QueryBuilderOutput | null) => any) | undefined;
|
|
59
62
|
}>, {
|
|
63
|
+
size: Extract<PvSize, "lg" | "xl">;
|
|
60
64
|
disabled: boolean;
|
|
61
65
|
placeholder: string;
|
|
62
66
|
queryTermDisplayLimit: number;
|
|
@@ -6,7 +6,7 @@ type __VLS_PublicProps = {
|
|
|
6
6
|
} & __VLS_Props;
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
8
|
attrs: Partial<{}>;
|
|
9
|
-
slots: {
|
|
9
|
+
slots: Partial<Record<string, (_: {}) => any>> & {
|
|
10
10
|
'sidebar-additional-header'?(_: {}): any;
|
|
11
11
|
'sidebar-additional-content'?(_: {}): any;
|
|
12
12
|
'sidebar-help-content'?(_: {}): any;
|
|
@@ -14,6 +14,7 @@ declare function __VLS_template(): {
|
|
|
14
14
|
default?(_: {}): any;
|
|
15
15
|
};
|
|
16
16
|
refs: {
|
|
17
|
+
sidebarPanel: HTMLDivElement;
|
|
17
18
|
popoverTeleportTarget: HTMLDivElement;
|
|
18
19
|
};
|
|
19
20
|
rootEl: HTMLDivElement;
|
|
@@ -31,6 +32,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
|
|
|
31
32
|
collapsed: boolean;
|
|
32
33
|
}) => any) | undefined;
|
|
33
34
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
35
|
+
sidebarPanel: HTMLDivElement;
|
|
34
36
|
popoverTeleportTarget: HTMLDivElement;
|
|
35
37
|
}, HTMLDivElement>;
|
|
36
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -30,6 +30,8 @@ export interface PvSidebarNavItem {
|
|
|
30
30
|
icon?: string;
|
|
31
31
|
/** Marks this as the currently active item (server already knows from the current page). */
|
|
32
32
|
active?: boolean;
|
|
33
|
+
/** Named slot rendered in a full-height hover and focus panel instead of the compact flyout. */
|
|
34
|
+
hoverPanelSlot?: string;
|
|
33
35
|
/** Extra attributes spread directly onto the rendered <a> (e.g. { "data-turbolinks": "false" }). */
|
|
34
36
|
linkAttrs?: Record<string, string>;
|
|
35
37
|
external?: boolean;
|