@plaidev/karte-action-sdk 1.1.262 → 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.
- package/dist/hydrate/index.es.d.ts +120 -357
- package/dist/hydrate/index.es.js +1395 -763
- package/dist/icons.d.ts +6 -111
- package/dist/index.es.d.ts +120 -357
- package/dist/index.es.js +1346 -758
- package/dist/templates.cjs.d.ts +1 -1
- package/dist/templates.cjs.js +3 -0
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +3 -0
- package/package.json +8 -7
package/dist/icons.d.ts
CHANGED
@@ -1,114 +1,9 @@
|
|
1
|
-
declare const ICONS:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
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';
|