@plaidev/karte-action-sdk 1.1.237-28696358.6bfff03f → 1.1.237-28696499.4aa79f28

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.
@@ -7,6 +7,7 @@ import { afterUpdate as afterUpdateSvelte } from "svelte";
7
7
  import { tick as tickSvelte } from "svelte";
8
8
  import { Properties } from "csstype";
9
9
  import IconArrowDown from "./variants/IconArrowDown.svelte";
10
+ import { Properties as Properties$0 } from "preact/src/jsx-csstype";
10
11
  /** @internal */
11
12
  declare const ACTION_HOOK_LABEL = "__ACTION_HOOK__";
12
13
  // -------- The following codes are deprecated --------
@@ -2550,8 +2551,10 @@ declare const ICON_VARIANTS: {
2550
2551
  readonly arrow_right: typeof IconArrowDown;
2551
2552
  readonly arrow_up_from_square: typeof IconArrowDown;
2552
2553
  readonly bell: typeof IconArrowDown;
2554
+ readonly buildings: typeof IconArrowDown;
2553
2555
  readonly cart_shopping: typeof IconArrowDown;
2554
2556
  readonly check: typeof IconArrowDown;
2557
+ readonly chevrons_right: typeof IconArrowDown;
2555
2558
  readonly circle: typeof IconArrowDown;
2556
2559
  readonly circle_info: typeof IconArrowDown;
2557
2560
  readonly circle_question: typeof IconArrowDown;
@@ -2576,8 +2579,10 @@ type IconVariant = (typeof ICON_VARIANTS)[keyof typeof ICON_VARIANTS];
2576
2579
  declare const ICON_PARAMS: ComponentParameter[];
2577
2580
  type IconProps = CommonProps & {
2578
2581
  variant: string;
2579
- size: string;
2582
+ size?: keyof typeof ICON_SIZE;
2580
2583
  color: string;
2584
+ width?: Properties$0["width"];
2585
+ height?: Properties$0["height"];
2581
2586
  };
2582
2587
  type ImageProps = CommonProps & {
2583
2588
  image?: string;