@turquoisehealth/pit-viper 2.242.0 → 2.243.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 +5 -0
- package/_site/assets/css/pit-viper-consumer.css +5 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +4 -0
- package/_site/assets/css/pit-viper-v2.css +5 -0
- package/_site/assets/css/pit-viper.css +5 -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-sidebar-v2-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
- package/pv-components/dist/vue/ai/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
- package/pv-components/dist/vue/ai/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
- package/pv-components/dist/vue/ai/components/base/PvContext/config.d.ts +27 -0
- package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +1 -1
- package/pv-components/dist/vue/ai/components/base/index.d.ts +6 -1
- package/pv-components/dist/vue/base/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
- package/pv-components/dist/vue/base/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
- package/pv-components/dist/vue/base/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
- package/pv-components/dist/vue/base/components/base/PvContext/config.d.ts +27 -0
- package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/index.d.ts +6 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +1778 -1572
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
- package/pv-components/dist/vue/visualizations/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
- package/pv-components/dist/vue/visualizations/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
- package/pv-components/dist/vue/visualizations/components/base/PvContext/config.d.ts +27 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +6 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +394 -383
- package/pv-components/dist/web/pv-components.iife.js +13 -13
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -4519,6 +4519,11 @@ div.pv-drawer[open] {
|
|
|
4519
4519
|
opacity: 1;
|
|
4520
4520
|
}
|
|
4521
4521
|
|
|
4522
|
+
.pv-context-surface {
|
|
4523
|
+
--pv-context-width: 320px;
|
|
4524
|
+
width: var(--pv-context-width);
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4522
4527
|
.pv-rating {
|
|
4523
4528
|
--background-color: var(--rating-background-color, #D9DEDE);
|
|
4524
4529
|
--icon-color: var(--rating-icon-color, #36C5BA);
|
|
@@ -4525,6 +4525,11 @@ div.pv-drawer[open] {
|
|
|
4525
4525
|
opacity: 1;
|
|
4526
4526
|
}
|
|
4527
4527
|
|
|
4528
|
+
.pv-context-surface {
|
|
4529
|
+
--pv-context-width: 320px;
|
|
4530
|
+
width: var(--pv-context-width);
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4528
4533
|
.pv-rating {
|
|
4529
4534
|
--background-color: var(--rating-background-color, #D9DEDE);
|
|
4530
4535
|
--icon-color: var(--rating-icon-color, #36C5BA);
|
|
@@ -4141,6 +4141,10 @@
|
|
|
4141
4141
|
transform: translateX(0);
|
|
4142
4142
|
opacity: 1;
|
|
4143
4143
|
}
|
|
4144
|
+
.pv-v2 .pv-context-surface {
|
|
4145
|
+
--pv-context-width: 320px;
|
|
4146
|
+
width: var(--pv-context-width);
|
|
4147
|
+
}
|
|
4144
4148
|
.pv-v2 .pv-rating {
|
|
4145
4149
|
--background-color: var(--rating-background-color, #D9DEDE);
|
|
4146
4150
|
--icon-color: var(--rating-icon-color, #36C5BA);
|
|
@@ -4541,6 +4541,11 @@ div.pv-drawer[open] {
|
|
|
4541
4541
|
opacity: 1;
|
|
4542
4542
|
}
|
|
4543
4543
|
|
|
4544
|
+
.pv-context-surface {
|
|
4545
|
+
--pv-context-width: 320px;
|
|
4546
|
+
width: var(--pv-context-width);
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4544
4549
|
.pv-rating {
|
|
4545
4550
|
--background-color: var(--rating-background-color, #D9DEDE);
|
|
4546
4551
|
--icon-color: var(--rating-icon-color, #36C5BA);
|
|
@@ -4524,6 +4524,11 @@ div.pv-drawer[open] {
|
|
|
4524
4524
|
opacity: 1;
|
|
4525
4525
|
}
|
|
4526
4526
|
|
|
4527
|
+
.pv-context-surface {
|
|
4528
|
+
--pv-context-width: 320px;
|
|
4529
|
+
width: var(--pv-context-width);
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4527
4532
|
.pv-rating {
|
|
4528
4533
|
--background-color: var(--rating-background-color, #D9DEDE);
|
|
4529
4534
|
--icon-color: var(--rating-icon-color, #36C5BA);
|