@turquoisehealth/pit-viper 2.60.0 → 2.61.1-dev.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.60.0",
3
+ "version": "2.61.1-dev.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -968,7 +968,7 @@ showDropdown: boolean;
968
968
  $: ComponentInternalInstance;
969
969
  $data: {};
970
970
  $props: {
971
- readonly teleportLocation: string;
971
+ readonly teleportLocation?: string | undefined;
972
972
  readonly open: boolean;
973
973
  readonly popoverPositionStyle?: CSSProperties | undefined;
974
974
  readonly cssCustomListProperties?: CSSProperties | undefined;
@@ -1462,7 +1462,7 @@ showDropdown: boolean;
1462
1462
  $: ComponentInternalInstance;
1463
1463
  $data: {};
1464
1464
  $props: {
1465
- readonly teleportLocation: string;
1465
+ readonly teleportLocation?: string | undefined;
1466
1466
  readonly open: boolean;
1467
1467
  readonly popoverPositionStyle?: CSSProperties | undefined;
1468
1468
  readonly cssCustomListProperties?: CSSProperties | undefined;
@@ -1646,7 +1646,7 @@ declare type PvSelectButtonVariant = Extract<PvVariants, "secondary" | "ghost">;
1646
1646
  declare type PvSelectButtonVariant_2 = Extract<PvVariants, "secondary" | "ghost">;
1647
1647
 
1648
1648
  declare interface PvSelectMenu {
1649
- teleportLocation: string;
1649
+ teleportLocation?: string;
1650
1650
  open: boolean;
1651
1651
  popoverPositionStyle?: CSSProperties;
1652
1652
  cssCustomListProperties?: CSSProperties;