@turquoisehealth/pit-viper 2.189.2-dev.0 → 2.190.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.
Files changed (49) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +14 -0
  2. package/_site/assets/css/pit-viper-consumer.css +14 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +11 -0
  4. package/_site/assets/css/pit-viper-v2.css +14 -0
  5. package/_site/assets/css/pit-viper.css +14 -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-avatar-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-modal-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  15. package/pv-components/dist/vue/base/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
  16. package/pv-components/dist/vue/base/components/base/PvAvatar/types.d.ts +17 -0
  17. package/pv-components/dist/vue/base/components/base/PvMenu/cascadeUtils.d.ts +7 -0
  18. package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +2 -2
  19. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
  20. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +2 -2
  21. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
  22. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
  23. package/pv-components/dist/vue/base/pv-components-base.mjs +743 -704
  24. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  25. package/pv-components/dist/vue/base/types.d.ts +3 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
  27. package/pv-components/dist/vue/visualizations/components/base/PvAvatar/types.d.ts +17 -0
  28. package/pv-components/dist/vue/visualizations/components/base/PvMenu/cascadeUtils.d.ts +7 -0
  29. package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +2 -2
  30. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
  31. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +2 -2
  32. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
  33. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
  34. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +0 -2
  35. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/FilterPanel.vue.d.ts +0 -1
  36. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/SetFilter.vue.d.ts +0 -1
  37. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +0 -2
  38. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +9 -3
  39. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1548 -1513
  40. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  41. package/pv-components/dist/vue/visualizations/types.d.ts +3 -0
  42. package/pv-components/dist/web/components/pv-avatar/pv-avatar.js +8 -3
  43. package/pv-components/dist/web/components/pv-menu/pv-menu.js +881 -869
  44. package/pv-components/dist/web/components/pv-modal/pv-modal.js +2 -3
  45. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1178 -1143
  46. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1191 -1178
  47. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1191 -1140
  48. package/pv-components/dist/web/pv-components.iife.js +31 -31
  49. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1,4 +1,5 @@
1
1
  import { Component } from 'vue';
2
+ import { PvAvatarShape, PvAvatarVariant } from './components/base/PvAvatar/types.ts';
2
3
  import { PvCounterBadgeVariant } from './components/base/PvCounterBadge/types.ts';
3
4
  /**
4
5
  * For interfaces and type aliases shared across multiple components.
@@ -31,6 +32,8 @@ export interface MenuOption<T = unknown> {
31
32
  initials?: string;
32
33
  image?: string;
33
34
  icon?: boolean;
35
+ variant?: PvAvatarVariant;
36
+ shape?: PvAvatarShape;
34
37
  };
35
38
  groupingLabel?: string;
36
39
  disabled?: boolean;
@@ -31,13 +31,17 @@ var b = [
31
31
  class: d(s.value)
32
32
  }, [a("use", { "xlink:href": c.value }, null, 8, x)], 2));
33
33
  }
34
- }), C = ["data-style"], w = ["src", "alt"], T = /* @__PURE__ */ s({
34
+ }), C = ["data-style", "data-shape"], w = ["src", "alt"], T = /* @__PURE__ */ s({
35
35
  __name: "PvAvatar",
36
36
  props: {
37
+ alt: { type: String },
37
38
  icon: { type: String },
38
39
  image: { type: String },
39
- alt: { type: String },
40
40
  initials: { type: String },
41
+ shape: {
42
+ default: "circle",
43
+ type: String
44
+ },
41
45
  size: {
42
46
  default: "lg",
43
47
  type: String
@@ -61,7 +65,8 @@ var b = [
61
65
  return (c, l) => (p(), i("div", {
62
66
  class: d(a[t.size]),
63
67
  "data-testid": "pv-avatar",
64
- "data-style": t.variant
68
+ "data-style": t.variant,
69
+ "data-shape": t.shape
65
70
  }, [t.icon ? (p(), n(S, {
66
71
  key: 0,
67
72
  name: t.icon,