@plaidev/karte-action-sdk 1.1.156 → 1.1.157-28011607.f788fa7c

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/dist/icons.d.ts CHANGED
@@ -21,6 +21,7 @@ declare const ICONS: {
21
21
  readonly solid: "Copy";
22
22
  };
23
23
  };
24
+ declare const ICON_COMPONENT_NAMES: string[];
24
25
  export { default as CheckSolid } from './icons/solid/check.svg';
25
26
  export { default as ChevronDownSolid } from './icons/solid/chevron-down.svg';
26
27
  export { default as ChevronLeftSolid } from './icons/solid/chevron-left.svg';
@@ -28,4 +29,4 @@ export { default as ChevronRightSolid } from './icons/solid/chevron-right.svg';
28
29
  export { default as ChevronUpSolid } from './icons/solid/chevron-up.svg';
29
30
  export { default as CircleSolid } from './icons/solid/circle.svg';
30
31
  export { default as Copy } from './icons/solid/copy.svg';
31
- export { ICONS };
32
+ export { ICONS, ICON_COMPONENT_NAMES };
package/dist/icons.js CHANGED
@@ -13,6 +13,7 @@ var img$1 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBo
13
13
  var img = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3c!--! Font Awesome Free 6.3.0 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0%2c Fonts: SIL OFL 1.1%2c Code: MIT License) Copyright 2023 Fonticons%2c Inc. --%3e%3cpath d='M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z'/%3e%3c/svg%3e";
14
14
 
15
15
  // TODO: ファイルから自動生成
16
+ // @internal
16
17
  const ICONS = {
17
18
  check: {
18
19
  solid: 'CheckSolid',
@@ -36,5 +37,15 @@ const ICONS = {
36
37
  solid: 'Copy',
37
38
  },
38
39
  };
39
-
40
- export { img$6 as CheckSolid, img$5 as ChevronDownSolid, img$4 as ChevronLeftSolid, img$3 as ChevronRightSolid, img$2 as ChevronUpSolid, img$1 as CircleSolid, img as Copy, ICONS };
40
+ // @internal
41
+ const ICON_COMPONENT_NAMES = [
42
+ 'CheckSolid',
43
+ 'ChevronDownSolid',
44
+ 'ChevronLeftSolid',
45
+ 'ChevronRightSolid',
46
+ 'ChevronUpSolid',
47
+ 'CircleSolid',
48
+ 'Copy',
49
+ ];
50
+
51
+ export { img$6 as CheckSolid, img$5 as ChevronDownSolid, img$4 as ChevronLeftSolid, img$3 as ChevronRightSolid, img$2 as ChevronUpSolid, img$1 as CircleSolid, img as Copy, ICONS, ICON_COMPONENT_NAMES };