@turquoisehealth/pit-viper 2.206.0 → 2.206.2

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 (38) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +24 -0
  2. package/_site/assets/css/pit-viper-consumer.css +24 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +21 -0
  4. package/_site/assets/css/pit-viper-v2.css +43 -0
  5. package/_site/assets/css/pit-viper.css +24 -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-group-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-header-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  17. package/pv-components/dist/vue/base/components/base/PvAvatarGroup/PvAvatarGroup.vue.d.ts +3 -1
  18. package/pv-components/dist/vue/base/components/base/PvAvatarGroup/types.d.ts +2 -0
  19. package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -0
  20. package/pv-components/dist/vue/base/pv-components-base.mjs +977 -957
  21. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  22. package/pv-components/dist/vue/base/types.d.ts +1 -0
  23. package/pv-components/dist/vue/visualizations/components/base/PvAvatarGroup/PvAvatarGroup.vue.d.ts +3 -1
  24. package/pv-components/dist/vue/visualizations/components/base/PvAvatarGroup/types.d.ts +2 -0
  25. package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -0
  26. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +185 -168
  27. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  28. package/pv-components/dist/vue/visualizations/types.d.ts +1 -0
  29. package/pv-components/dist/web/components/pv-avatar-group/pv-avatar-group.js +31 -25
  30. package/pv-components/dist/web/components/pv-dropdown/pv-dropdown.js +167 -163
  31. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +1 -1
  32. package/pv-components/dist/web/components/pv-header/pv-header.js +2 -2
  33. package/pv-components/dist/web/components/pv-menu/pv-menu.js +5 -2
  34. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +9 -11
  35. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +102 -87
  36. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +5 -2
  37. package/pv-components/dist/web/pv-components.iife.js +14 -14
  38. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1,10 +1,12 @@
1
- import { PvAvatarGroupItem } from './types';
1
+ import { PvAvatarGroupItem, PvAvatarGroupSize } from './types';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
3
  interface PvAvatarGroupProps {
4
4
  /** Array of avatar items to render in the group. */
5
5
  items: PvAvatarGroupItem[];
6
6
  /** Maximum number of avatars to show before displaying an overflow indicator. Capped at 7. */
7
7
  maxDisplayed: number;
8
+ /** Size of each avatar in the group. Defaults to 'xl' (32px). */
9
+ size?: PvAvatarGroupSize;
8
10
  }
9
11
  declare const _default: DefineComponent<PvAvatarGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvAvatarGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
10
12
  export default _default;
@@ -1,3 +1,5 @@
1
+ import { PvSize } from '../baseProps';
2
+ export type PvAvatarGroupSize = Extract<PvSize, "md" | "lg" | "xl"> | "xxl";
1
3
  export interface PvAvatarGroupItem {
2
4
  /** One or two character string displayed as text inside the avatar. */
3
5
  initials?: string;
@@ -12,6 +12,8 @@ export interface PvDropdownProps {
12
12
  isLoading?: boolean;
13
13
  useTeleport?: boolean;
14
14
  teleportLocation?: string;
15
+ /** Custom CSS styles applied to the trigger button, e.g. { width: "100%" } to stretch it to its container. */
16
+ triggerCssProperties?: CSSProperties;
15
17
  }
16
18
  declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvDropdownProps, {
17
19
  closeDropdown: () => void;