@plaidev/karte-action-sdk 1.1.242-28709689.708aea87 → 1.1.242-28714664.932b9ab6

Sign up to get free protection for your applications and to get access to all the features.
@@ -2382,19 +2382,19 @@ type PaddingProps = {
2382
2382
  paddingRight?: Properties["paddingRight"];
2383
2383
  };
2384
2384
  type RadiusProps = {
2385
- borderTopLeftRadius: Properties["borderTopLeftRadius"];
2386
- borderTopRightRadius: Properties["borderTopRightRadius"];
2387
- borderBottomLeftRadius: Properties["borderBottomLeftRadius"];
2388
- borderBottomRightRadius: Properties["borderBottomRightRadius"];
2385
+ borderTopLeftRadius?: Properties["borderTopLeftRadius"];
2386
+ borderTopRightRadius?: Properties["borderTopRightRadius"];
2387
+ borderBottomLeftRadius?: Properties["borderBottomLeftRadius"];
2388
+ borderBottomRightRadius?: Properties["borderBottomRightRadius"];
2389
2389
  };
2390
2390
  type BackgroundColorProps = {
2391
- backgroundColor: Properties["backgroundColor"];
2391
+ backgroundColor?: Properties["backgroundColor"];
2392
2392
  };
2393
2393
  type BackgroundImageProps = {
2394
- backgroundImageUrl: string;
2394
+ backgroundImageUrl?: string;
2395
2395
  };
2396
2396
  type ShadowProps = {
2397
- shadow: Properties["boxShadow"];
2397
+ shadow?: Properties["boxShadow"];
2398
2398
  };
2399
2399
  declare const AVATAR_SIZE: {
2400
2400
  readonly extra_small: "XS\uFF0848 x 48\uFF09";
@@ -2620,7 +2620,7 @@ declare const ICON_VARIANTS: {
2620
2620
  type IconProps = CommonProps & {
2621
2621
  variant: string;
2622
2622
  size?: keyof typeof ICON_SIZE;
2623
- color: string;
2623
+ color?: Properties$0["color"];
2624
2624
  width?: Properties$0["width"];
2625
2625
  height?: Properties$0["height"];
2626
2626
  };
@@ -13997,10 +13997,10 @@ const ICON_VARIANTS = {
13997
13997
  /* src/components-flex/icon/Icon.svelte generated by Svelte v3.53.1 */
13998
13998
 
13999
13999
  function add_css$8(target) {
14000
- append_styles(target, "svelte-1mx2edd", ".icon.svelte-1mx2edd{display:inline-flex;align-items:center;overflow:hidden;width:auto}");
14000
+ append_styles(target, "svelte-4stwad", ".icon.svelte-4stwad{display:inline-flex;align-items:center;overflow:hidden;width:auto;font-size:0}");
14001
14001
  }
14002
14002
 
14003
- // (21:0) {#if (IconComponent)}
14003
+ // (20:0) {#if (IconComponent)}
14004
14004
  function create_if_block$5(ctx) {
14005
14005
  let div;
14006
14006
  let switch_instance;
@@ -14009,7 +14009,9 @@ function create_if_block$5(ctx) {
14009
14009
 
14010
14010
  function switch_props(ctx) {
14011
14011
  return {
14012
- props: { color: /*props*/ ctx[0].color ?? '#333' }
14012
+ props: {
14013
+ color: /*props*/ ctx[0].color ?? 'currentColor'
14014
+ }
14013
14015
  };
14014
14016
  }
14015
14017
 
@@ -14037,7 +14039,7 @@ function create_if_block$5(ctx) {
14037
14039
  },
14038
14040
  h() {
14039
14041
  attr(div, "data-layer-id", /*layerId*/ ctx[1]);
14040
- attr(div, "class", "icon svelte-1mx2edd");
14042
+ attr(div, "class", "icon svelte-4stwad");
14041
14043
  attr(div, "style", /*style*/ ctx[3]);
14042
14044
  },
14043
14045
  m(target, anchor) {
@@ -14047,7 +14049,7 @@ function create_if_block$5(ctx) {
14047
14049
  },
14048
14050
  p(ctx, dirty) {
14049
14051
  const switch_instance_changes = {};
14050
- if (dirty & /*props*/ 1) switch_instance_changes.color = /*props*/ ctx[0].color ?? '#333';
14052
+ if (dirty & /*props*/ 1) switch_instance_changes.color = /*props*/ ctx[0].color ?? 'currentColor';
14051
14053
 
14052
14054
  if (switch_value !== (switch_value = /*IconComponent*/ ctx[2])) {
14053
14055
  if (switch_instance) {
@@ -14176,8 +14178,6 @@ function instance$8($$self, $$props, $$invalidate) {
14176
14178
  };
14177
14179
  };
14178
14180
 
14179
- console.log(props.color);
14180
-
14181
14181
  $$self.$$set = $$props => {
14182
14182
  if ('props' in $$props) $$invalidate(0, props = $$props.props);
14183
14183
  if ('layerId' in $$props) $$invalidate(1, layerId = $$props.layerId);
@@ -2382,19 +2382,19 @@ type PaddingProps = {
2382
2382
  paddingRight?: Properties["paddingRight"];
2383
2383
  };
2384
2384
  type RadiusProps = {
2385
- borderTopLeftRadius: Properties["borderTopLeftRadius"];
2386
- borderTopRightRadius: Properties["borderTopRightRadius"];
2387
- borderBottomLeftRadius: Properties["borderBottomLeftRadius"];
2388
- borderBottomRightRadius: Properties["borderBottomRightRadius"];
2385
+ borderTopLeftRadius?: Properties["borderTopLeftRadius"];
2386
+ borderTopRightRadius?: Properties["borderTopRightRadius"];
2387
+ borderBottomLeftRadius?: Properties["borderBottomLeftRadius"];
2388
+ borderBottomRightRadius?: Properties["borderBottomRightRadius"];
2389
2389
  };
2390
2390
  type BackgroundColorProps = {
2391
- backgroundColor: Properties["backgroundColor"];
2391
+ backgroundColor?: Properties["backgroundColor"];
2392
2392
  };
2393
2393
  type BackgroundImageProps = {
2394
- backgroundImageUrl: string;
2394
+ backgroundImageUrl?: string;
2395
2395
  };
2396
2396
  type ShadowProps = {
2397
- shadow: Properties["boxShadow"];
2397
+ shadow?: Properties["boxShadow"];
2398
2398
  };
2399
2399
  declare const AVATAR_SIZE: {
2400
2400
  readonly extra_small: "XS\uFF0848 x 48\uFF09";
@@ -2620,7 +2620,7 @@ declare const ICON_VARIANTS: {
2620
2620
  type IconProps = CommonProps & {
2621
2621
  variant: string;
2622
2622
  size?: keyof typeof ICON_SIZE;
2623
- color: string;
2623
+ color?: Properties$0["color"];
2624
2624
  width?: Properties$0["width"];
2625
2625
  height?: Properties$0["height"];
2626
2626
  };
package/dist/index.es.js CHANGED
@@ -13002,10 +13002,10 @@ const ICON_VARIANTS = {
13002
13002
  /* src/components-flex/icon/Icon.svelte generated by Svelte v3.53.1 */
13003
13003
 
13004
13004
  function add_css$8(target) {
13005
- append_styles(target, "svelte-1mx2edd", ".icon.svelte-1mx2edd{display:inline-flex;align-items:center;overflow:hidden;width:auto}");
13005
+ append_styles(target, "svelte-4stwad", ".icon.svelte-4stwad{display:inline-flex;align-items:center;overflow:hidden;width:auto;font-size:0}");
13006
13006
  }
13007
13007
 
13008
- // (21:0) {#if (IconComponent)}
13008
+ // (20:0) {#if (IconComponent)}
13009
13009
  function create_if_block$5(ctx) {
13010
13010
  let div;
13011
13011
  let switch_instance;
@@ -13014,7 +13014,9 @@ function create_if_block$5(ctx) {
13014
13014
 
13015
13015
  function switch_props(ctx) {
13016
13016
  return {
13017
- props: { color: /*props*/ ctx[0].color ?? '#333' }
13017
+ props: {
13018
+ color: /*props*/ ctx[0].color ?? 'currentColor'
13019
+ }
13018
13020
  };
13019
13021
  }
13020
13022
 
@@ -13027,7 +13029,7 @@ function create_if_block$5(ctx) {
13027
13029
  div = element("div");
13028
13030
  if (switch_instance) create_component(switch_instance.$$.fragment);
13029
13031
  attr(div, "data-layer-id", /*layerId*/ ctx[1]);
13030
- attr(div, "class", "icon svelte-1mx2edd");
13032
+ attr(div, "class", "icon svelte-4stwad");
13031
13033
  attr(div, "style", /*style*/ ctx[3]);
13032
13034
  },
13033
13035
  m(target, anchor) {
@@ -13037,7 +13039,7 @@ function create_if_block$5(ctx) {
13037
13039
  },
13038
13040
  p(ctx, dirty) {
13039
13041
  const switch_instance_changes = {};
13040
- if (dirty & /*props*/ 1) switch_instance_changes.color = /*props*/ ctx[0].color ?? '#333';
13042
+ if (dirty & /*props*/ 1) switch_instance_changes.color = /*props*/ ctx[0].color ?? 'currentColor';
13041
13043
 
13042
13044
  if (switch_value !== (switch_value = /*IconComponent*/ ctx[2])) {
13043
13045
  if (switch_instance) {
@@ -13162,8 +13164,6 @@ function instance$8($$self, $$props, $$invalidate) {
13162
13164
  };
13163
13165
  };
13164
13166
 
13165
- console.log(props.color);
13166
-
13167
13167
  $$self.$$set = $$props => {
13168
13168
  if ('props' in $$props) $$invalidate(0, props = $$props.props);
13169
13169
  if ('layerId' in $$props) $$invalidate(1, layerId = $$props.layerId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.242-28709689.708aea87",
3
+ "version": "1.1.242-28714664.932b9ab6",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",