@plaidev/karte-action-sdk 1.1.263-29017865.b826d7d2 → 1.1.263-29020527.5afd9416

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.
@@ -15095,7 +15095,7 @@ const getPropStyles = (callback) => {
15095
15095
  };
15096
15096
  };
15097
15097
 
15098
- const getButtonThemeStyles = getPropStyles(({ brandKit }) => ({
15098
+ const callback$4 = ({ brandKit }) => ({
15099
15099
  default: {
15100
15100
  variant: 'normal',
15101
15101
  backgroundColor: brandKit.color_brand,
@@ -15161,7 +15161,8 @@ const getButtonThemeStyles = getPropStyles(({ brandKit }) => ({
15161
15161
  backgroundColor: 'rgba(255, 255, 255, 0)',
15162
15162
  color: brandKit.color_danger,
15163
15163
  },
15164
- }));
15164
+ });
15165
+ const getButtonThemeStyles = getPropStyles(callback$4);
15165
15166
  const BUTTON_SIZE_STYLES = {
15166
15167
  extra_small: {
15167
15168
  height: '32px',
@@ -15660,7 +15661,7 @@ const BUTTON_OUTLINED_SIZE_STYLES = {
15660
15661
  fontSize: '16px',
15661
15662
  },
15662
15663
  };
15663
- const getButtonOutlinedThemeStyles = getPropStyles(({ brandKit }) => ({
15664
+ const callback$3 = ({ brandKit }) => ({
15664
15665
  default: {
15665
15666
  color: brandKit.color_brand,
15666
15667
  borderColor: brandKit.color_brand,
@@ -15696,7 +15697,8 @@ const getButtonOutlinedThemeStyles = getPropStyles(({ brandKit }) => ({
15696
15697
  borderColor: '#FFFFFF',
15697
15698
  backgroundColor: '#000000',
15698
15699
  },
15699
- }));
15700
+ });
15701
+ const getButtonOutlinedThemeStyles = getPropStyles(callback$3);
15700
15702
  const BUTTON_OUTLINED_ROUND_STYLES = {
15701
15703
  none: {
15702
15704
  borderRadius: 0,
@@ -16060,7 +16062,7 @@ const BUTTON_TEXT_SIZE_STYLES = {
16060
16062
  fontSize: '16px',
16061
16063
  },
16062
16064
  };
16063
- const getButtonTextThemeStyles = getPropStyles(({ brandKit }) => ({
16065
+ const callback$2 = ({ brandKit }) => ({
16064
16066
  default: {
16065
16067
  backgroundColor: '#f3f4f6',
16066
16068
  color: brandKit.color_brand,
@@ -16093,7 +16095,8 @@ const getButtonTextThemeStyles = getPropStyles(({ brandKit }) => ({
16093
16095
  backgroundColor: '#f3f4f6',
16094
16096
  color: brandKit.color_white,
16095
16097
  },
16096
- }));
16098
+ });
16099
+ const getButtonTextThemeStyles = getPropStyles(callback$2);
16097
16100
 
16098
16101
  /* src/components-flex/button-text/ButtonText.svelte generated by Svelte v3.53.1 */
16099
16102
 
@@ -16430,29 +16433,13 @@ const BUTTON_TEXT_THEME = {
16430
16433
  white: 'White',
16431
16434
  };
16432
16435
 
16433
- const CLOSE_BUTTON_PLACEMENT = {
16434
- topRight: 'topRight',
16435
- topLeft: 'topLeft',
16436
- bottomRight: 'bottomRight',
16437
- bottomLeft: 'bottomLeft',
16438
- };
16439
- const CLOSE_BUTTON_ROUND = {
16440
- default: 'デフォルト',
16441
- none: 'なし',
16442
- fulled: '円形',
16443
- };
16444
- const CLOSE_BUTTON_LABEL_PLACEMENT = {
16445
- right: 'right',
16446
- left: 'left',
16447
- };
16448
-
16449
16436
  /* src/components-flex/close-button/CloseButton.svelte generated by Svelte v3.53.1 */
16450
16437
 
16451
16438
  function add_css$h(target) {
16452
16439
  append_styles(target, "svelte-3mvsv6", ".close-button.svelte-3mvsv6.svelte-3mvsv6{display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.close-button.svelte-3mvsv6 svg.svelte-3mvsv6{transition:transform 0.12s}.close-button.svelte-3mvsv6:hover svg.svelte-3mvsv6{transform:rotate(90deg)}.close-button-order-one.svelte-3mvsv6.svelte-3mvsv6{order:1}.close-button-order-two.svelte-3mvsv6.svelte-3mvsv6{order:2}");
16453
16440
  }
16454
16441
 
16455
- // (91:2) {#if hasLabel}
16442
+ // (90:2) {#if hasLabel}
16456
16443
  function create_if_block$4(ctx) {
16457
16444
  let span;
16458
16445
  let t;
@@ -16492,7 +16479,7 @@ function create_if_block$4(ctx) {
16492
16479
  };
16493
16480
  }
16494
16481
 
16495
- // (72:0) <svelte:element {...attributes} this={element} class="close-button {isLeftLabelPlacement ? 'close-button-order-two' : ''}" data-layer-id={layerId} style={style} on:click={handleClick} >
16482
+ // (71:0) <svelte:element {...attributes} this={element} class="close-button {isLeftLabelPlacement ? 'close-button-order-two' : ''}" data-layer-id={layerId} style={style} on:click={handleClick} >
16496
16483
  function create_dynamic_element$6(ctx) {
16497
16484
  let svelte_element;
16498
16485
  let span;
@@ -16792,6 +16779,22 @@ class CloseButton extends SvelteComponent {
16792
16779
  }
16793
16780
  }
16794
16781
 
16782
+ const CLOSE_BUTTON_PLACEMENT = {
16783
+ topRight: 'topRight',
16784
+ topLeft: 'topLeft',
16785
+ bottomRight: 'bottomRight',
16786
+ bottomLeft: 'bottomLeft',
16787
+ };
16788
+ const CLOSE_BUTTON_ROUND = {
16789
+ default: 'デフォルト',
16790
+ none: 'なし',
16791
+ fulled: '円形',
16792
+ };
16793
+ const CLOSE_BUTTON_LABEL_PLACEMENT = {
16794
+ right: 'right',
16795
+ left: 'left',
16796
+ };
16797
+
16795
16798
  const ICON_SIZE_STYLES = {
16796
16799
  x_small: {
16797
16800
  width: '12px',
@@ -17946,7 +17949,7 @@ class SliderItem extends SvelteComponent {
17946
17949
  }
17947
17950
  }
17948
17951
 
17949
- const getTextThemeStyles = getPropStyles(({ brandKit }) => ({
17952
+ const callback$1 = ({ brandKit }) => ({
17950
17953
  default: {
17951
17954
  color: brandKit.color_text_primary,
17952
17955
  },
@@ -17971,7 +17974,8 @@ const getTextThemeStyles = getPropStyles(({ brandKit }) => ({
17971
17974
  white: {
17972
17975
  color: brandKit.color_white,
17973
17976
  },
17974
- }));
17977
+ });
17978
+ const getTextThemeStyles = getPropStyles(callback$1);
17975
17979
 
17976
17980
  const TEXT_VARIANTS = {
17977
17981
  size: {
@@ -18344,7 +18348,7 @@ const TEXT_LINK_SIZE_STYLES = {
18344
18348
  fontSize: '16px',
18345
18349
  },
18346
18350
  };
18347
- const getTextLinkThemeStyles = getPropStyles(({ brandKit }) => ({
18351
+ const callback = ({ brandKit }) => ({
18348
18352
  default: {
18349
18353
  color: brandKit.color_text_primary,
18350
18354
  },
@@ -18363,7 +18367,8 @@ const getTextLinkThemeStyles = getPropStyles(({ brandKit }) => ({
18363
18367
  white: {
18364
18368
  color: brandKit.color_white,
18365
18369
  },
18366
- }));
18370
+ });
18371
+ const getTextLinkThemeStyles = getPropStyles(callback);
18367
18372
 
18368
18373
  /* src/components-flex/text-link/TextLink.svelte generated by Svelte v3.53.1 */
18369
18374
 
package/dist/icons.d.ts CHANGED
@@ -1,114 +1,9 @@
1
- declare const ICONS: readonly [{
2
- readonly name: "arrow-down";
3
- readonly type: "solid";
4
- readonly component: "ArrowDownSolid";
5
- readonly src: string;
6
- }, {
7
- readonly name: "arrow-left";
8
- readonly type: "solid";
9
- readonly component: "ArrowLeftSolid";
10
- readonly src: string;
11
- }, {
12
- readonly name: "arrow-right";
13
- readonly type: "solid";
14
- readonly component: "ArrowRightSolid";
15
- readonly src: string;
16
- }, {
17
- readonly name: "arrow-up-right-from-square";
18
- readonly type: "solid";
19
- readonly component: "ArrowUpRightFromSquareSolid";
20
- readonly src: string;
21
- }, {
22
- readonly name: "arrow-up";
23
- readonly type: "solid";
24
- readonly component: "ArrowUpSolid";
25
- readonly src: string;
26
- }, {
27
- readonly name: "bell";
28
- readonly type: "solid";
29
- readonly component: "BellSolid";
30
- readonly src: string;
31
- }, {
32
- readonly name: "cart-shopping";
33
- readonly type: "solid";
34
- readonly component: "CartShoppingSolid";
35
- readonly src: string;
36
- }, {
37
- readonly name: "check";
38
- readonly type: "solid";
39
- readonly component: "CheckSolid";
40
- readonly src: string;
41
- }, {
42
- readonly name: "chevron-down";
43
- readonly type: "solid";
44
- readonly component: "ChevronDownSolid";
45
- readonly src: string;
46
- }, {
47
- readonly name: "chevron-left";
48
- readonly type: "solid";
49
- readonly component: "ChevronLeftSolid";
50
- readonly src: string;
51
- }, {
52
- readonly name: "chevron-right";
53
- readonly type: "solid";
54
- readonly component: "ChevronRightSolid";
55
- readonly src: string;
56
- }, {
57
- readonly name: "chevron-up";
58
- readonly type: "solid";
59
- readonly component: "ChevronUpSolid";
60
- readonly src: string;
61
- }, {
62
- readonly name: "circle-question";
63
- readonly type: "solid";
64
- readonly component: "CircleQuestionSolid";
65
- readonly src: string;
66
- }, {
67
- readonly name: "circle";
68
- readonly type: "solid";
69
- readonly component: "CircleSolid";
70
- readonly src: string;
71
- }, {
72
- readonly name: "copy";
73
- readonly type: "solid";
74
- readonly component: "CopySolid";
75
- readonly src: string;
76
- }, {
77
- readonly name: "paper-plane";
78
- readonly type: "solid";
79
- readonly component: "PaperPlaneSolid";
80
- readonly src: string;
81
- }, {
82
- readonly name: "ticket";
83
- readonly type: "solid";
84
- readonly component: "TicketSolid";
85
- readonly src: string;
86
- }, {
87
- readonly name: "truck";
88
- readonly type: "solid";
89
- readonly component: "TruckSolid";
90
- readonly src: string;
91
- }, {
92
- readonly name: "users";
93
- readonly type: "solid";
94
- readonly component: "UsersSolid";
95
- readonly src: string;
96
- }, {
97
- readonly name: "window-maximize";
98
- readonly type: "solid";
99
- readonly component: "WindowMaximizeSolid";
100
- readonly src: string;
101
- }, {
102
- readonly name: "window-minimize";
103
- readonly type: "solid";
104
- readonly component: "WindowMinimizeSolid";
105
- readonly src: string;
106
- }, {
107
- readonly name: "xmark";
108
- readonly type: "solid";
109
- readonly component: "XmarkSolid";
110
- readonly src: string;
111
- }];
1
+ declare const ICONS: {
2
+ name: string;
3
+ type: string;
4
+ component: string;
5
+ src: string;
6
+ }[];
112
7
  export { default as ArrowDownSolid } from './icons/solid/arrow-down.svg';
113
8
  export { default as ArrowLeftSolid } from './icons/solid/arrow-left.svg';
114
9
  export { default as ArrowRightSolid } from './icons/solid/arrow-right.svg';