@plaidev/karte-action-sdk 1.1.174-28033114.16b04b8e → 1.1.174-28034051.c6a1c676

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import 'svelte/easing';
2
2
  import { writable, get } from 'svelte/store';
3
3
  import { onMount as onMount$1, onDestroy as onDestroy$1, beforeUpdate as beforeUpdate$1, afterUpdate as afterUpdate$1, tick as tick$1, setContext, getContext, createEventDispatcher } from 'svelte';
4
- import { SvelteComponent, init, safe_not_equal, append_styles, create_slot, space, claim_space, insert_hydration, transition_in, group_outros, transition_out, check_outros, update_slot_base, get_all_dirty_from_scope, get_slot_changes, detach, create_component, claim_component, mount_component, destroy_component, empty, component_subscribe, element, claim_element, children, attr, noop, listen, null_to_empty, is_function, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, claim_svg_element, append_hydration, destroy_each, text, claim_text, set_data, src_url_equal, HtmlTagHydration, claim_html_tag, construct_svelte_component, subscribe } from 'svelte/internal';
4
+ import { SvelteComponent, init, safe_not_equal, create_slot, update_slot_base, get_all_dirty_from_scope, get_slot_changes, transition_in, transition_out, append_styles, empty, insert_hydration, group_outros, check_outros, detach, component_subscribe, element, space, claim_element, children, claim_space, attr, noop, listen, null_to_empty, is_function, create_component, claim_component, mount_component, destroy_component, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, claim_svg_element, append_hydration, destroy_each, text, claim_text, set_data, src_url_equal, HtmlTagHydration, claim_html_tag, construct_svelte_component, subscribe } from 'svelte/internal';
5
5
 
6
6
  /** @internal */
7
7
  const PropTypes = [
@@ -2300,74 +2300,21 @@ const LAYOUT_COMPONENT_NAMES = [
2300
2300
  'StateItem',
2301
2301
  ];
2302
2302
 
2303
- /* src/components/Normalize.svelte generated by Svelte v3.53.1 */
2304
-
2305
- function add_css$u(target) {
2306
- append_styles(target, "svelte-tr4qnr", "@import 'https://esm.sh/normalize.css';");
2307
- }
2308
-
2309
- class Normalize extends SvelteComponent {
2310
- constructor(options) {
2311
- super();
2312
- init(this, options, null, null, safe_not_equal, {}, add_css$u);
2313
- }
2314
- }
2315
-
2316
2303
  /* src/components/State.svelte generated by Svelte v3.53.1 */
2317
2304
 
2318
- function create_if_block$9(ctx) {
2319
- let normalize;
2320
- let current;
2321
- normalize = new Normalize({});
2322
-
2323
- return {
2324
- c() {
2325
- create_component(normalize.$$.fragment);
2326
- },
2327
- l(nodes) {
2328
- claim_component(normalize.$$.fragment, nodes);
2329
- },
2330
- m(target, anchor) {
2331
- mount_component(normalize, target, anchor);
2332
- current = true;
2333
- },
2334
- i(local) {
2335
- if (current) return;
2336
- transition_in(normalize.$$.fragment, local);
2337
- current = true;
2338
- },
2339
- o(local) {
2340
- transition_out(normalize.$$.fragment, local);
2341
- current = false;
2342
- },
2343
- d(detaching) {
2344
- destroy_component(normalize, detaching);
2345
- }
2346
- };
2347
- }
2348
-
2349
2305
  function create_fragment$x(ctx) {
2350
- let t;
2351
2306
  let current;
2352
- let if_block = /*_enableNormalize*/ ctx[0] && create_if_block$9();
2353
- const default_slot_template = /*#slots*/ ctx[2].default;
2354
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[1], null);
2307
+ const default_slot_template = /*#slots*/ ctx[1].default;
2308
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[0], null);
2355
2309
 
2356
2310
  return {
2357
2311
  c() {
2358
- if (if_block) if_block.c();
2359
- t = space();
2360
2312
  if (default_slot) default_slot.c();
2361
2313
  },
2362
2314
  l(nodes) {
2363
- if (if_block) if_block.l(nodes);
2364
- t = claim_space(nodes);
2365
2315
  if (default_slot) default_slot.l(nodes);
2366
2316
  },
2367
2317
  m(target, anchor) {
2368
- if (if_block) if_block.m(target, anchor);
2369
- insert_hydration(target, t, anchor);
2370
-
2371
2318
  if (default_slot) {
2372
2319
  default_slot.m(target, anchor);
2373
2320
  }
@@ -2375,37 +2322,16 @@ function create_fragment$x(ctx) {
2375
2322
  current = true;
2376
2323
  },
2377
2324
  p(ctx, [dirty]) {
2378
- if (/*_enableNormalize*/ ctx[0]) {
2379
- if (if_block) {
2380
- if (dirty & /*_enableNormalize*/ 1) {
2381
- transition_in(if_block, 1);
2382
- }
2383
- } else {
2384
- if_block = create_if_block$9();
2385
- if_block.c();
2386
- transition_in(if_block, 1);
2387
- if_block.m(t.parentNode, t);
2388
- }
2389
- } else if (if_block) {
2390
- group_outros();
2391
-
2392
- transition_out(if_block, 1, 1, () => {
2393
- if_block = null;
2394
- });
2395
-
2396
- check_outros();
2397
- }
2398
-
2399
2325
  if (default_slot) {
2400
- if (default_slot.p && (!current || dirty & /*$$scope*/ 2)) {
2326
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 1)) {
2401
2327
  update_slot_base(
2402
2328
  default_slot,
2403
2329
  default_slot_template,
2404
2330
  ctx,
2405
- /*$$scope*/ ctx[1],
2331
+ /*$$scope*/ ctx[0],
2406
2332
  !current
2407
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[1])
2408
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[1], dirty, null),
2333
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[0])
2334
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[0], dirty, null),
2409
2335
  null
2410
2336
  );
2411
2337
  }
@@ -2413,18 +2339,14 @@ function create_fragment$x(ctx) {
2413
2339
  },
2414
2340
  i(local) {
2415
2341
  if (current) return;
2416
- transition_in(if_block);
2417
2342
  transition_in(default_slot, local);
2418
2343
  current = true;
2419
2344
  },
2420
2345
  o(local) {
2421
- transition_out(if_block);
2422
2346
  transition_out(default_slot, local);
2423
2347
  current = false;
2424
2348
  },
2425
2349
  d(detaching) {
2426
- if (if_block) if_block.d(detaching);
2427
- if (detaching) detach(t);
2428
2350
  if (default_slot) default_slot.d(detaching);
2429
2351
  }
2430
2352
  };
@@ -2432,20 +2354,18 @@ function create_fragment$x(ctx) {
2432
2354
 
2433
2355
  function instance$x($$self, $$props, $$invalidate) {
2434
2356
  let { $$slots: slots = {}, $$scope } = $$props;
2435
- let { _enableNormalize = true } = $$props;
2436
2357
 
2437
2358
  $$self.$$set = $$props => {
2438
- if ('_enableNormalize' in $$props) $$invalidate(0, _enableNormalize = $$props._enableNormalize);
2439
- if ('$$scope' in $$props) $$invalidate(1, $$scope = $$props.$$scope);
2359
+ if ('$$scope' in $$props) $$invalidate(0, $$scope = $$props.$$scope);
2440
2360
  };
2441
2361
 
2442
- return [_enableNormalize, $$scope, slots];
2362
+ return [$$scope, slots];
2443
2363
  }
2444
2364
 
2445
2365
  class State extends SvelteComponent {
2446
2366
  constructor(options) {
2447
2367
  super();
2448
- init(this, options, instance$x, create_fragment$x, safe_not_equal, { _enableNormalize: 0 });
2368
+ init(this, options, instance$x, create_fragment$x, safe_not_equal, {});
2449
2369
  }
2450
2370
  }
2451
2371
 
package/dist/index.es.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { linear, elasticOut, cubicOut } from 'svelte/easing';
2
2
  import { writable, get } from 'svelte/store';
3
3
  import { onMount as onMount$1, onDestroy as onDestroy$1, beforeUpdate as beforeUpdate$1, afterUpdate as afterUpdate$1, tick as tick$1, setContext, getContext, createEventDispatcher } from 'svelte';
4
- import { SvelteComponent, init, safe_not_equal, append_styles, create_slot, space, insert, transition_in, group_outros, transition_out, check_outros, update_slot_base, get_all_dirty_from_scope, get_slot_changes, detach, create_component, mount_component, destroy_component, empty, component_subscribe, element, attr, noop, listen, null_to_empty, is_function, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, append, destroy_each, text, set_data, src_url_equal, HtmlTag, construct_svelte_component, subscribe } from 'svelte/internal';
4
+ import { SvelteComponent, init, safe_not_equal, create_slot, update_slot_base, get_all_dirty_from_scope, get_slot_changes, transition_in, transition_out, append_styles, empty, insert, group_outros, check_outros, detach, component_subscribe, element, space, attr, noop, listen, null_to_empty, is_function, create_component, mount_component, destroy_component, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, append, destroy_each, text, set_data, src_url_equal, HtmlTag, construct_svelte_component, subscribe } from 'svelte/internal';
5
5
 
6
6
  /** @internal */
7
7
  const PropTypes = [
@@ -2409,66 +2409,18 @@ const LAYOUT_COMPONENT_NAMES = [
2409
2409
  'StateItem',
2410
2410
  ];
2411
2411
 
2412
- /* src/components/Normalize.svelte generated by Svelte v3.53.1 */
2413
-
2414
- function add_css$u(target) {
2415
- append_styles(target, "svelte-tr4qnr", "@import 'https://esm.sh/normalize.css';");
2416
- }
2417
-
2418
- class Normalize extends SvelteComponent {
2419
- constructor(options) {
2420
- super();
2421
- init(this, options, null, null, safe_not_equal, {}, add_css$u);
2422
- }
2423
- }
2424
-
2425
2412
  /* src/components/State.svelte generated by Svelte v3.53.1 */
2426
2413
 
2427
- function create_if_block$9(ctx) {
2428
- let normalize;
2429
- let current;
2430
- normalize = new Normalize({});
2431
-
2432
- return {
2433
- c() {
2434
- create_component(normalize.$$.fragment);
2435
- },
2436
- m(target, anchor) {
2437
- mount_component(normalize, target, anchor);
2438
- current = true;
2439
- },
2440
- i(local) {
2441
- if (current) return;
2442
- transition_in(normalize.$$.fragment, local);
2443
- current = true;
2444
- },
2445
- o(local) {
2446
- transition_out(normalize.$$.fragment, local);
2447
- current = false;
2448
- },
2449
- d(detaching) {
2450
- destroy_component(normalize, detaching);
2451
- }
2452
- };
2453
- }
2454
-
2455
2414
  function create_fragment$x(ctx) {
2456
- let t;
2457
2415
  let current;
2458
- let if_block = /*_enableNormalize*/ ctx[0] && create_if_block$9();
2459
- const default_slot_template = /*#slots*/ ctx[2].default;
2460
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[1], null);
2416
+ const default_slot_template = /*#slots*/ ctx[1].default;
2417
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[0], null);
2461
2418
 
2462
2419
  return {
2463
2420
  c() {
2464
- if (if_block) if_block.c();
2465
- t = space();
2466
2421
  if (default_slot) default_slot.c();
2467
2422
  },
2468
2423
  m(target, anchor) {
2469
- if (if_block) if_block.m(target, anchor);
2470
- insert(target, t, anchor);
2471
-
2472
2424
  if (default_slot) {
2473
2425
  default_slot.m(target, anchor);
2474
2426
  }
@@ -2476,37 +2428,16 @@ function create_fragment$x(ctx) {
2476
2428
  current = true;
2477
2429
  },
2478
2430
  p(ctx, [dirty]) {
2479
- if (/*_enableNormalize*/ ctx[0]) {
2480
- if (if_block) {
2481
- if (dirty & /*_enableNormalize*/ 1) {
2482
- transition_in(if_block, 1);
2483
- }
2484
- } else {
2485
- if_block = create_if_block$9();
2486
- if_block.c();
2487
- transition_in(if_block, 1);
2488
- if_block.m(t.parentNode, t);
2489
- }
2490
- } else if (if_block) {
2491
- group_outros();
2492
-
2493
- transition_out(if_block, 1, 1, () => {
2494
- if_block = null;
2495
- });
2496
-
2497
- check_outros();
2498
- }
2499
-
2500
2431
  if (default_slot) {
2501
- if (default_slot.p && (!current || dirty & /*$$scope*/ 2)) {
2432
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 1)) {
2502
2433
  update_slot_base(
2503
2434
  default_slot,
2504
2435
  default_slot_template,
2505
2436
  ctx,
2506
- /*$$scope*/ ctx[1],
2437
+ /*$$scope*/ ctx[0],
2507
2438
  !current
2508
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[1])
2509
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[1], dirty, null),
2439
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[0])
2440
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[0], dirty, null),
2510
2441
  null
2511
2442
  );
2512
2443
  }
@@ -2514,18 +2445,14 @@ function create_fragment$x(ctx) {
2514
2445
  },
2515
2446
  i(local) {
2516
2447
  if (current) return;
2517
- transition_in(if_block);
2518
2448
  transition_in(default_slot, local);
2519
2449
  current = true;
2520
2450
  },
2521
2451
  o(local) {
2522
- transition_out(if_block);
2523
2452
  transition_out(default_slot, local);
2524
2453
  current = false;
2525
2454
  },
2526
2455
  d(detaching) {
2527
- if (if_block) if_block.d(detaching);
2528
- if (detaching) detach(t);
2529
2456
  if (default_slot) default_slot.d(detaching);
2530
2457
  }
2531
2458
  };
@@ -2533,20 +2460,18 @@ function create_fragment$x(ctx) {
2533
2460
 
2534
2461
  function instance$x($$self, $$props, $$invalidate) {
2535
2462
  let { $$slots: slots = {}, $$scope } = $$props;
2536
- let { _enableNormalize = true } = $$props;
2537
2463
 
2538
2464
  $$self.$$set = $$props => {
2539
- if ('_enableNormalize' in $$props) $$invalidate(0, _enableNormalize = $$props._enableNormalize);
2540
- if ('$$scope' in $$props) $$invalidate(1, $$scope = $$props.$$scope);
2465
+ if ('$$scope' in $$props) $$invalidate(0, $$scope = $$props.$$scope);
2541
2466
  };
2542
2467
 
2543
- return [_enableNormalize, $$scope, slots];
2468
+ return [$$scope, slots];
2544
2469
  }
2545
2470
 
2546
2471
  class State extends SvelteComponent {
2547
2472
  constructor(options) {
2548
2473
  super();
2549
- init(this, options, instance$x, create_fragment$x, safe_not_equal, { _enableNormalize: 0 });
2474
+ init(this, options, instance$x, create_fragment$x, safe_not_equal, {});
2550
2475
  }
2551
2476
  }
2552
2477
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.174-28033114.16b04b8e",
3
+ "version": "1.1.174-28034051.c6a1c676",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",