@turquoisehealth/pit-viper 2.242.0 → 2.243.1

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.
Files changed (35) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +5 -0
  2. package/_site/assets/css/pit-viper-consumer.css +5 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +4 -0
  4. package/_site/assets/css/pit-viper-v2.css +5 -0
  5. package/_site/assets/css/pit-viper.css +5 -0
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
  10. package/pv-components/dist/vue/ai/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
  11. package/pv-components/dist/vue/ai/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
  12. package/pv-components/dist/vue/ai/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
  13. package/pv-components/dist/vue/ai/components/base/PvContext/config.d.ts +27 -0
  14. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +1 -1
  15. package/pv-components/dist/vue/ai/components/base/index.d.ts +6 -1
  16. package/pv-components/dist/vue/base/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
  17. package/pv-components/dist/vue/base/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
  18. package/pv-components/dist/vue/base/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
  19. package/pv-components/dist/vue/base/components/base/PvContext/config.d.ts +27 -0
  20. package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +1 -1
  21. package/pv-components/dist/vue/base/components/base/index.d.ts +6 -1
  22. package/pv-components/dist/vue/base/pv-components-base.mjs +1778 -1572
  23. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  24. package/pv-components/dist/vue/visualizations/components/base/PvContext/{PvContextFeedback.vue.d.ts → PvContextFeedback/PvContextFeedback.vue.d.ts} +10 -10
  25. package/pv-components/dist/vue/visualizations/components/base/PvContext/PvContextSurface/PvContextSurface.vue.d.ts +45 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvContext/PvSpinesEntityFields/PvSpinesEntityFields.vue.d.ts +12 -0
  27. package/pv-components/dist/vue/visualizations/components/base/PvContext/config.d.ts +27 -0
  28. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +1 -1
  29. package/pv-components/dist/vue/visualizations/components/base/index.d.ts +6 -1
  30. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +1 -2
  31. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +280 -265
  32. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  33. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +394 -383
  34. package/pv-components/dist/web/pv-components.iife.js +13 -13
  35. 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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.242.0",
3
+ "version": "2.243.1",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {