@turquoisehealth/pit-viper 2.58.0 → 2.59.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.58.0",
3
+ "version": "2.59.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -77,6 +77,8 @@ declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, Compone
77
77
 
78
78
  declare type __VLS_Props = PvSearchInputProps;
79
79
 
80
+ declare type __VLS_Props_10 = PvSwitchProps;
81
+
80
82
  declare type __VLS_Props_2 = PvDatePickerProps;
81
83
 
82
84
  declare type __VLS_Props_3 = PvTabsProps;
@@ -97,6 +99,10 @@ declare type __VLS_PublicProps = {
97
99
  modelValue: string;
98
100
  } & __VLS_Props;
99
101
 
102
+ declare type __VLS_PublicProps_10 = {
103
+ modelValue: boolean;
104
+ } & __VLS_Props_10;
105
+
100
106
  declare type __VLS_PublicProps_2 = {
101
107
  modelValue: Date;
102
108
  } & __VLS_Props_2;
@@ -1721,6 +1727,25 @@ declare interface PvSuggestionTag_2 {
1721
1727
  rounded?: boolean;
1722
1728
  }
1723
1729
 
1730
+ export declare const PvSwitch: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1731
+ "update:modelValue": (value: boolean) => any;
1732
+ }, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
1733
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1734
+ }>, {
1735
+ size: PvSwitchSize;
1736
+ disabled: boolean;
1737
+ id: string;
1738
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
1739
+
1740
+ declare interface PvSwitchProps {
1741
+ size?: PvSwitchSize;
1742
+ label?: string;
1743
+ disabled?: boolean;
1744
+ id?: string;
1745
+ }
1746
+
1747
+ declare type PvSwitchSize = Extract<PvSize, "md" | "lg">;
1748
+
1724
1749
  export declare const PvTabList: DefineComponent<PvTabListBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1725
1750
  "update:modelValue": (...args: any[]) => void;
1726
1751
  }, string, PublicProps, Readonly<PvTabListBaseProps> & Readonly<{