@ledgerhq/lumen-ui-react 0.0.65 → 0.0.67

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.
Files changed (68) hide show
  1. package/dist/index.js +66 -59
  2. package/dist/lib/Components/AmountInput/AmountInput.js +10 -10
  3. package/dist/lib/Components/BaseInput/BaseInput.js +4 -4
  4. package/dist/lib/Components/Button/BaseButton.d.ts.map +1 -1
  5. package/dist/lib/Components/Button/BaseButton.js +37 -42
  6. package/dist/lib/Components/Dialog/Dialog.js +2 -2
  7. package/dist/lib/Components/InteractiveIcon/InteractiveIcon.d.ts.map +1 -1
  8. package/dist/lib/Components/InteractiveIcon/InteractiveIcon.js +15 -10
  9. package/dist/lib/Components/Link/Link.js +5 -5
  10. package/dist/lib/Components/Menu/Menu.d.ts.map +1 -1
  11. package/dist/lib/Components/Menu/Menu.js +81 -77
  12. package/dist/lib/Components/Select/Select.js +7 -7
  13. package/dist/lib/Components/Spot/Spot.js +4 -4
  14. package/dist/lib/Components/Subheader/Subheader.d.ts +60 -24
  15. package/dist/lib/Components/Subheader/Subheader.d.ts.map +1 -1
  16. package/dist/lib/Components/Subheader/Subheader.js +66 -36
  17. package/dist/lib/Components/Subheader/index.d.ts +1 -1
  18. package/dist/lib/Components/Subheader/index.d.ts.map +1 -1
  19. package/dist/lib/Components/Subheader/types.d.ts +52 -6
  20. package/dist/lib/Components/Subheader/types.d.ts.map +1 -1
  21. package/dist/lib/Components/ThemeProvider/ThemeProvider.js +2 -2
  22. package/dist/lib/Components/Tile/Tile.d.ts +4 -4
  23. package/dist/lib/Components/Tile/Tile.d.ts.map +1 -1
  24. package/dist/lib/Components/Tile/Tile.js +104 -171
  25. package/dist/lib/Components/Tile/types.d.ts +6 -1
  26. package/dist/lib/Components/Tile/types.d.ts.map +1 -1
  27. package/dist/lib/Symbols/Icons/Asterisk.d.ts +26 -0
  28. package/dist/lib/Symbols/Icons/Asterisk.d.ts.map +1 -0
  29. package/dist/lib/Symbols/Icons/Asterisk.js +28 -0
  30. package/dist/lib/Symbols/Icons/Bell.js +1 -1
  31. package/dist/lib/Symbols/Icons/BellFill.d.ts +26 -0
  32. package/dist/lib/Symbols/Icons/BellFill.d.ts.map +1 -0
  33. package/dist/lib/Symbols/Icons/BellFill.js +25 -0
  34. package/dist/lib/Symbols/Icons/BellNotification.js +1 -1
  35. package/dist/lib/Symbols/Icons/CreditCardFill.d.ts +26 -0
  36. package/dist/lib/Symbols/Icons/CreditCardFill.d.ts.map +1 -0
  37. package/dist/lib/Symbols/Icons/CreditCardFill.js +25 -0
  38. package/dist/lib/Symbols/Icons/Delete.js +1 -1
  39. package/dist/lib/Symbols/Icons/Exchange.js +1 -1
  40. package/dist/lib/Symbols/Icons/ExchangeFill.d.ts +26 -0
  41. package/dist/lib/Symbols/Icons/ExchangeFill.d.ts.map +1 -0
  42. package/dist/lib/Symbols/Icons/ExchangeFill.js +41 -0
  43. package/dist/lib/Symbols/Icons/ExpandLeft.d.ts +26 -0
  44. package/dist/lib/Symbols/Icons/ExpandLeft.d.ts.map +1 -0
  45. package/dist/lib/Symbols/Icons/ExpandLeft.js +28 -0
  46. package/dist/lib/Symbols/Icons/ExpandRight.d.ts +26 -0
  47. package/dist/lib/Symbols/Icons/ExpandRight.d.ts.map +1 -0
  48. package/dist/lib/Symbols/Icons/ExpandRight.js +28 -0
  49. package/dist/lib/Symbols/Icons/Home.js +1 -1
  50. package/dist/lib/Symbols/Icons/HomeFill.d.ts +26 -0
  51. package/dist/lib/Symbols/Icons/HomeFill.d.ts.map +1 -0
  52. package/dist/lib/Symbols/Icons/HomeFill.js +25 -0
  53. package/dist/lib/Symbols/Icons/LifeRingFill.d.ts +26 -0
  54. package/dist/lib/Symbols/Icons/LifeRingFill.d.ts.map +1 -0
  55. package/dist/lib/Symbols/Icons/LifeRingFill.js +25 -0
  56. package/dist/lib/Symbols/Icons/P2p.js +1 -1
  57. package/dist/lib/Symbols/Icons/Signature.js +1 -1
  58. package/dist/lib/Symbols/Icons/Spacerocket.js +1 -1
  59. package/dist/lib/Symbols/Icons/Tools.js +1 -1
  60. package/dist/lib/Symbols/Icons/TransferVertical.js +1 -1
  61. package/dist/lib/Symbols/Icons/Trash.js +1 -1
  62. package/dist/lib/Symbols/Icons/WarningFill.js +1 -1
  63. package/dist/lib/Symbols/index.d.ts +8 -0
  64. package/dist/lib/Symbols/index.d.ts.map +1 -1
  65. package/dist/lib/Symbols/index.js +474 -458
  66. package/dist/libs/utils-shared/dist/index.js +44 -52
  67. package/dist/package.json +1 -1
  68. package/package.json +2 -2
@@ -1,4 +1,3 @@
1
- import { MouseEventHandler } from 'react';
2
1
  import { TileContentProps, TileDescriptionProps, TileSpotProps, TileTitleProps } from './types';
3
2
  /**
4
3
  * A flexible tile component that uses a composite pattern for maximum customization.
@@ -30,11 +29,12 @@ import { TileContentProps, TileDescriptionProps, TileSpotProps, TileTitleProps }
30
29
  export declare const Tile: import('react').ForwardRefExoticComponent<{
31
30
  appearance?: "no-background" | "card";
32
31
  disabled?: boolean;
33
- onClick?: MouseEventHandler<HTMLButtonElement>;
32
+ onClick?: import('react').MouseEventHandler<HTMLButtonElement>;
34
33
  children: import('react').ReactNode;
35
34
  className?: string;
36
35
  'aria-label'?: string;
37
- } & Omit<import('react').HTMLAttributes<HTMLDivElement>, "onClick"> & import('react').RefAttributes<HTMLDivElement>>;
36
+ secondaryAction?: import('react').ReactNode;
37
+ } & Omit<import('react').HTMLAttributes<HTMLButtonElement>, "onClick"> & import('react').RefAttributes<HTMLDivElement>>;
38
38
  /**
39
39
  * A spot adapter for use within Tile. Automatically inherits the disabled state from the parent Tile.
40
40
  * Always renders at a fixed size of 48.
@@ -85,7 +85,7 @@ export declare const TileDescription: {
85
85
  * </Tile>
86
86
  */
87
87
  export declare const TileSecondaryAction: import('react').ForwardRefExoticComponent<{
88
- onClick?: MouseEventHandler;
88
+ onClick?: import('react').MouseEventHandler;
89
89
  icon: React.ComponentType<Omit<import('../Icon').IconProps, "children">>;
90
90
  className?: string;
91
91
  } & Omit<import('react').HTMLAttributes<HTMLButtonElement>, "onClick"> & import('react').RefAttributes<HTMLButtonElement>>;
@@ -1 +1 @@
1
- {"version":3,"file":"Tile.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Tile/Tile.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAc,iBAAiB,EAAyB,MAAM,OAAO,CAAC;AAG7E,OAAO,EACL,gBAAgB,EAEhB,oBAAoB,EAGpB,aAAa,EACb,cAAc,EACf,MAAM,SAAS,CAAC;AAgEjB;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,IAAI;;;;;;;oHAsGhB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,QAAQ;YAAW,aAAa;;CAM5C,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,WAAW;wCAIrB,gBAAgB;;CASlB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,SAAS;wCAInB,cAAc;;CAiBhB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,eAAe;wCAIzB,oBAAoB;;CAiBtB,CAAC;AAGF;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,mBAAmB;;;;0HAuC9B,CAAC"}
1
+ {"version":3,"file":"Tile.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Tile/Tile.tsx"],"names":[],"mappings":"AAKA,OAAO,EACL,gBAAgB,EAEhB,oBAAoB,EAGpB,aAAa,EACb,cAAc,EACf,MAAM,SAAS,CAAC;AAkCjB;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,IAAI;;;;;;;;uHAuChB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,QAAQ;YAAW,aAAa;;CAM5C,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,WAAW;wCAIrB,gBAAgB;;CASlB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,SAAS;wCAInB,cAAc;;CAiBhB,CAAC;AAGF;;;GAGG;AACH,eAAO,MAAM,eAAe;wCAIzB,oBAAoB;;CAiBtB,CAAC;AAGF;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,mBAAmB;;;;0HAsC9B,CAAC"}
@@ -1,242 +1,175 @@
1
- import { jsx as s, jsxs as q } from "react/jsx-runtime";
2
- import { extractSlottable as C, createSafeContext as I, cn as u } from "../../../libs/utils-shared/dist/index.js";
3
- import { cva as v } from "class-variance-authority";
4
- import { forwardRef as x, useState as w, useCallback as d } from "react";
5
- import { Spot as z } from "../Spot/Spot.js";
6
- import { InteractiveIcon as V } from "../InteractiveIcon/InteractiveIcon.js";
7
- const [j, p] = I("Tile"), T = {
8
- root: v(
1
+ import { jsx as a, jsxs as T } from "react/jsx-runtime";
2
+ import { createSafeContext as v, cn as s } from "../../../libs/utils-shared/dist/index.js";
3
+ import { cva as m } from "class-variance-authority";
4
+ import { forwardRef as f, useCallback as x } from "react";
5
+ import { Spot as y } from "../Spot/Spot.js";
6
+ import { InteractiveIcon as N } from "../InteractiveIcon/InteractiveIcon.js";
7
+ const [g, n] = v("Tile"), b = {
8
+ root: m([
9
+ "group relative flex flex-col items-center rounded-md text-base transition-colors focus-visible:outline-2 focus-visible:outline-focus"
10
+ ]),
11
+ inner: m(
9
12
  [
10
- "group relative flex flex-col items-center gap-8 text-base transition-colors",
13
+ "flex w-full flex-col items-center gap-8 px-8 py-12",
11
14
  "rounded-md focus-visible:outline-2 focus-visible:outline-focus"
12
15
  ],
13
16
  {
14
17
  variants: {
15
18
  appearance: {
16
- "no-background": "bg-base-transparent",
17
- card: "bg-surface"
18
- },
19
- isActive: {
20
- true: "",
21
- false: ""
19
+ "no-background": "bg-base-transparent hover:not-disabled:bg-base-transparent-hover active:not-disabled:bg-base-transparent-pressed",
20
+ card: "bg-surface hover:not-disabled:bg-surface-hover active:not-disabled:bg-surface-pressed"
22
21
  },
23
22
  disabled: {
24
- true: "",
25
- false: ""
23
+ true: "cursor-default",
24
+ false: "cursor-pointer"
26
25
  }
27
26
  },
28
- compoundVariants: [
29
- {
30
- appearance: "no-background",
31
- isActive: !1,
32
- disabled: !1,
33
- className: "hover:bg-base-transparent-hover"
34
- },
35
- {
36
- appearance: "no-background",
37
- isActive: !0,
38
- disabled: !1,
39
- className: "bg-base-transparent-pressed"
40
- },
41
- {
42
- appearance: "card",
43
- isActive: !1,
44
- disabled: !1,
45
- className: "hover:bg-surface-hover"
46
- },
47
- {
48
- appearance: "card",
49
- isActive: !0,
50
- disabled: !1,
51
- className: "bg-surface-pressed"
52
- }
53
- ],
54
27
  defaultVariants: {
55
28
  appearance: "no-background",
56
- isActive: !1,
57
29
  disabled: !1
58
30
  }
59
31
  }
60
- ),
61
- button: v(
62
- "flex w-full cursor-pointer flex-col items-center gap-8 rounded-md px-8 py-12 focus-visible:outline-2 focus-visible:outline-focus"
63
32
  )
64
- }, P = x(
33
+ }, h = f(
65
34
  ({
66
35
  className: e,
67
- onClick: i,
36
+ onClick: t,
37
+ secondaryAction: o,
68
38
  appearance: r = "no-background",
69
- disabled: t = !1,
70
- "aria-label": f,
71
- children: m,
72
- onMouseDown: l,
73
- onMouseUp: o,
74
- onMouseLeave: c,
75
- ...n
76
- }, N) => {
77
- const [g, b] = w(!1), { slotElement: h, remainingChildren: A } = C(
78
- m,
79
- y
80
- ), S = d(
81
- (a) => {
82
- a.target.closest(
83
- "[data-secondary-button-container]"
84
- ) || (l == null || l(a), b(!0));
85
- },
86
- [l]
87
- ), k = d(
88
- (a) => {
89
- b(!1), o == null || o(a);
90
- },
91
- [o]
92
- ), R = d(
93
- (a) => {
94
- b(!1), c == null || c(a);
95
- },
96
- [c]
97
- );
98
- return /* @__PURE__ */ s(j, { value: { disabled: t }, children: /* @__PURE__ */ q(
99
- "div",
100
- {
101
- ...n,
102
- ref: N,
103
- className: T.root({
104
- appearance: r,
105
- isActive: g,
106
- disabled: t,
107
- className: e
108
- }),
109
- onMouseDown: t ? void 0 : (a) => {
110
- S(a);
111
- },
112
- onMouseUp: t ? void 0 : (a) => {
113
- k(a);
114
- },
115
- onMouseLeave: t ? void 0 : (a) => {
116
- R(a);
117
- },
118
- children: [
119
- /* @__PURE__ */ s(
120
- "button",
121
- {
122
- "aria-label": f,
123
- onClick: t ? void 0 : i,
124
- disabled: t,
125
- "data-disabled": t || void 0,
126
- className: T.button(),
127
- children: A
128
- }
129
- ),
130
- h
131
- ]
132
- }
133
- ) });
134
- }
39
+ disabled: i = !1,
40
+ children: l,
41
+ style: c,
42
+ ...d
43
+ }, u) => /* @__PURE__ */ a(g, { value: { disabled: i }, children: /* @__PURE__ */ T(
44
+ "div",
45
+ {
46
+ ref: u,
47
+ style: c,
48
+ className: b.root({
49
+ className: e
50
+ }),
51
+ children: [
52
+ /* @__PURE__ */ a(
53
+ "button",
54
+ {
55
+ ...d,
56
+ onClick: t,
57
+ disabled: i,
58
+ className: b.inner({
59
+ appearance: r,
60
+ disabled: i
61
+ }),
62
+ children: l
63
+ }
64
+ ),
65
+ o
66
+ ]
67
+ }
68
+ ) })
135
69
  );
136
- P.displayName = "Tile";
137
- const D = (e) => {
138
- const { disabled: i } = p({
70
+ h.displayName = "Tile";
71
+ const S = (e) => {
72
+ const { disabled: t } = n({
139
73
  consumerName: "TileSpot",
140
74
  contextRequired: !0
141
75
  });
142
- return /* @__PURE__ */ s(z, { ...e, size: 48, disabled: i });
76
+ return /* @__PURE__ */ a(y, { ...e, size: 48, disabled: t });
143
77
  };
144
- D.displayName = "TileSpot";
145
- const E = ({
78
+ S.displayName = "TileSpot";
79
+ const w = ({
146
80
  children: e,
147
- className: i,
148
- ...r
149
- }) => /* @__PURE__ */ s(
81
+ className: t,
82
+ ...o
83
+ }) => /* @__PURE__ */ a(
150
84
  "div",
151
85
  {
152
- className: u("flex w-full flex-col items-center text-center", i),
153
- ...r,
86
+ className: s("flex w-full flex-col items-center text-center", t),
87
+ ...o,
154
88
  children: e
155
89
  }
156
90
  );
157
- E.displayName = "TileContent";
158
- const O = ({
91
+ w.displayName = "TileContent";
92
+ const R = ({
159
93
  children: e,
160
- className: i,
161
- ...r
94
+ className: t,
95
+ ...o
162
96
  }) => {
163
- const { disabled: t } = p({
97
+ const { disabled: r } = n({
164
98
  consumerName: "TileTitle",
165
99
  contextRequired: !0
166
100
  });
167
- return /* @__PURE__ */ s(
101
+ return /* @__PURE__ */ a(
168
102
  "div",
169
103
  {
170
- className: u(
104
+ className: s(
171
105
  "w-full truncate body-2-semi-bold",
172
- t && "text-disabled",
173
- i
106
+ r && "text-disabled",
107
+ t
174
108
  ),
175
- ...r,
109
+ ...o,
176
110
  children: e
177
111
  }
178
112
  );
179
113
  };
180
- O.displayName = "TileTitle";
181
- const B = ({
114
+ R.displayName = "TileTitle";
115
+ const q = ({
182
116
  children: e,
183
- className: i,
184
- ...r
117
+ className: t,
118
+ ...o
185
119
  }) => {
186
- const { disabled: t } = p({
120
+ const { disabled: r } = n({
187
121
  consumerName: "TileDescription",
188
122
  contextRequired: !0
189
123
  });
190
- return /* @__PURE__ */ s(
124
+ return /* @__PURE__ */ a(
191
125
  "div",
192
126
  {
193
- className: u(
127
+ className: s(
194
128
  "w-full truncate body-3",
195
- t ? "text-disabled" : "text-muted",
196
- i
129
+ r ? "text-disabled" : "text-muted",
130
+ t
197
131
  ),
198
- ...r,
132
+ ...o,
199
133
  children: e
200
134
  }
201
135
  );
202
136
  };
203
- B.displayName = "TileDescription";
204
- const y = x(({ onClick: e, icon: i, className: r, "aria-label": t, ...f }, m) => {
205
- const { disabled: l } = p({
137
+ q.displayName = "TileDescription";
138
+ const D = f(({ onClick: e, icon: t, className: o, "aria-label": r, ...i }, l) => {
139
+ const { disabled: c } = n({
206
140
  consumerName: "TileSecondaryAction",
207
141
  contextRequired: !0
208
- }), o = d(
209
- (n) => {
210
- n.stopPropagation(), n.preventDefault(), e == null || e(n);
142
+ }), d = x(
143
+ (p) => {
144
+ p.stopPropagation(), p.preventDefault(), e == null || e(p);
211
145
  },
212
146
  [e]
213
147
  );
214
- if (l) return null;
215
- const c = i;
216
- return /* @__PURE__ */ s(
217
- V,
148
+ if (c) return null;
149
+ const u = t;
150
+ return /* @__PURE__ */ a(
151
+ N,
218
152
  {
219
- "data-slot": "tile-secondary-action",
220
- className: u(
153
+ className: s(
221
154
  "absolute top-8 right-4 opacity-0 transition-opacity duration-200 group-hover:opacity-100 focus-within:opacity-100",
222
- r
155
+ o
223
156
  ),
224
157
  "data-secondary-button-container": !0,
225
158
  iconType: "stroked",
226
- onClick: o,
227
- "aria-label": t,
228
- ref: m,
229
- ...f,
230
- children: /* @__PURE__ */ s(c, { size: 24 })
159
+ onClick: d,
160
+ "aria-label": r,
161
+ ref: l,
162
+ ...i,
163
+ children: /* @__PURE__ */ a(u, { size: 24 })
231
164
  }
232
165
  );
233
166
  });
234
- y.displayName = "TileSecondaryAction";
167
+ D.displayName = "TileSecondaryAction";
235
168
  export {
236
- P as Tile,
237
- E as TileContent,
238
- B as TileDescription,
239
- y as TileSecondaryAction,
240
- D as TileSpot,
241
- O as TileTitle
169
+ h as Tile,
170
+ w as TileContent,
171
+ q as TileDescription,
172
+ D as TileSecondaryAction,
173
+ S as TileSpot,
174
+ R as TileTitle
242
175
  };
@@ -36,7 +36,12 @@ export type TileProps = {
36
36
  * Aria label for accessibility.
37
37
  */
38
38
  'aria-label'?: string;
39
- } & Omit<HTMLAttributes<HTMLDivElement>, 'onClick'>;
39
+ /**
40
+ * The secondary action to display inside the tile.
41
+ * Typically contains a TileSecondaryAction component.
42
+ */
43
+ secondaryAction?: ReactNode;
44
+ } & Omit<HTMLAttributes<HTMLButtonElement>, 'onClick'>;
40
45
  export type TileSpotProps = DiscriminatedSpotProps;
41
46
  export type TileContentProps = {
42
47
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Tile/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAEvD,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,eAAe,GAAG,MAAM,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;IAC/C;;;OAGG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,GAAG,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,SAAS,CAAC,CAAC;AAEpD,MAAM,MAAM,aAAa,GAAG,sBAAsB,CAAC;AAEnD,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;IACvD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Tile/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAEvD,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,eAAe,GAAG,MAAM,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;IAC/C;;;OAGG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,eAAe,CAAC,EAAE,SAAS,CAAC;CAC7B,GAAG,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC,CAAC;AAEvD,MAAM,MAAM,aAAa,GAAG,sBAAsB,CAAC;AAEnD,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;IACvD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC,CAAC"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Asterisk icon component.
3
+ *
4
+ * This icon component is automatically generated from SVG files and uses the createIcon utility
5
+ * to create a consistent icon interface. It supports all standard SVG props and additional
6
+ * size variants defined in the Icon component.
7
+ *
8
+ * @see {@link https://ldls.vercel.app/?path=/story/symbols-interface-icons--icon&args=name:Asterisk Storybook}
9
+ *
10
+ * @component
11
+ * @param {16 | 20 | 24 | 40 | 48 | 56} [size=24] - The size of the icon in pixels.
12
+ * @param {string} [className] - Additional CSS classes to apply to the icon.
13
+ * @param {React.SVGProps<SVGSVGElement>} [...props] - All standard SVG element props.
14
+ *
15
+ * @example
16
+ * // Basic usage with default size (24px)
17
+ * import { Asterisk } from '@ledgerhq/lumen-ui-react/symbols';
18
+ *
19
+ * <Asterisk />
20
+ *
21
+ * @example
22
+ * // With custom size and className
23
+ * <Asterisk size={40} className="text-warning" />
24
+ */
25
+ export declare const Asterisk: import('react').ForwardRefExoticComponent<Omit<Omit<import('../../Components/Icon').IconProps, "children">, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
26
+ //# sourceMappingURL=Asterisk.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Asterisk.d.ts","sourceRoot":"","sources":["../../../../src/lib/Symbols/Icons/Asterisk.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,QAAQ,oKAiBpB,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import o from "../../Components/Icon/createIcon.js";
3
+ const i = o(
4
+ "Asterisk",
5
+ /* @__PURE__ */ r(
6
+ "svg",
7
+ {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: "1em",
10
+ height: "1em",
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ children: /* @__PURE__ */ r(
14
+ "path",
15
+ {
16
+ stroke: "currentColor",
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round",
19
+ strokeWidth: 1.3,
20
+ d: "M2 7.99h12m-9 4.974 6-9.948m0 10L5 3.067"
21
+ }
22
+ )
23
+ }
24
+ )
25
+ );
26
+ export {
27
+ i as Asterisk
28
+ };
@@ -17,7 +17,7 @@ const c = r(
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  strokeWidth: 1.3,
20
- d: "M6 12v.167c0 1.1.893 2 2 2 1.1 0 2-.9 2-2V12m2-2.833 1.133 1.133c.12.12.194.293.194.467v.553c0 .367-.3.667-.667.667H3.327a.664.664 0 0 1-.667-.667v-.56a.66.66 0 0 1 .193-.473l1.134-1.14V6.313c0-2.213 1.786-4 4-4 2.206 0 4 1.787 4 4z"
20
+ d: "M6 11.427v.74c0 1.1.893 2 2 2 1.1 0 2-.9 2-2v-.727m2-2.273 1.133 1.133c.12.12.194.293.194.467v-.007c0 .367-.3.667-.667.667H3.327a.664.664 0 0 1-.667-.667.66.66 0 0 1 .193-.473l1.134-1.14V6.313c0-2.213 1.786-4 4-4 2.206 0 4 1.787 4 4z"
21
21
  }
22
22
  )
23
23
  }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * BellFill icon component.
3
+ *
4
+ * This icon component is automatically generated from SVG files and uses the createIcon utility
5
+ * to create a consistent icon interface. It supports all standard SVG props and additional
6
+ * size variants defined in the Icon component.
7
+ *
8
+ * @see {@link https://ldls.vercel.app/?path=/story/symbols-interface-icons--icon&args=name:BellFill Storybook}
9
+ *
10
+ * @component
11
+ * @param {16 | 20 | 24 | 40 | 48 | 56} [size=24] - The size of the icon in pixels.
12
+ * @param {string} [className] - Additional CSS classes to apply to the icon.
13
+ * @param {React.SVGProps<SVGSVGElement>} [...props] - All standard SVG element props.
14
+ *
15
+ * @example
16
+ * // Basic usage with default size (24px)
17
+ * import { BellFill } from '@ledgerhq/lumen-ui-react/symbols';
18
+ *
19
+ * <BellFill />
20
+ *
21
+ * @example
22
+ * // With custom size and className
23
+ * <BellFill size={40} className="text-warning" />
24
+ */
25
+ export declare const BellFill: import('react').ForwardRefExoticComponent<Omit<Omit<import('../../Components/Icon').IconProps, "children">, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
26
+ //# sourceMappingURL=BellFill.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BellFill.d.ts","sourceRoot":"","sources":["../../../../src/lib/Symbols/Icons/BellFill.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,QAAQ,oKAcpB,CAAC"}
@@ -0,0 +1,25 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import r from "../../Components/Icon/createIcon.js";
3
+ const t = r(
4
+ "BellFill",
5
+ /* @__PURE__ */ l(
6
+ "svg",
7
+ {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: "1em",
10
+ height: "1em",
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ children: /* @__PURE__ */ l(
14
+ "path",
15
+ {
16
+ fill: "currentColor",
17
+ d: "M10.353 13.379A2.65 2.65 0 0 1 8 14.816a2.65 2.65 0 0 1-2.354-1.437zM7.987 1.664a4.65 4.65 0 0 1 4.65 4.647l.011 2.585.945.945.086.095c.187.228.296.522.298.824v.007l-.001.006a1.32 1.32 0 0 1-1.316 1.304h-2.01v.002h-5.3v-.002H3.328A1.316 1.316 0 0 1 2.01 10.76c0-.346.13-.68.384-.933l.943-.95V6.314a4.645 4.645 0 0 1 4.65-4.649"
18
+ }
19
+ )
20
+ }
21
+ )
22
+ );
23
+ export {
24
+ t as BellFill
25
+ };
@@ -41,7 +41,7 @@ const t = r(
41
41
  strokeLinecap: "round",
42
42
  strokeLinejoin: "round",
43
43
  strokeWidth: 1.3,
44
- d: "M6 12v.167c0 1.1.893 2 2 2 1.1 0 2-.9 2-2V12m2-2.833 1.133 1.133c.12.12.194.293.194.467v.553c0 .367-.3.667-.667.667H3.327a.664.664 0 0 1-.667-.667v-.56a.66.66 0 0 1 .193-.473l1.134-1.14V6.313c0-2.213 1.786-4 4-4 2.207 0 4 1.787 4 4z"
44
+ d: "M6 11.427v.74c0 1.1.893 2 2 2 1.1 0 2-.9 2-2v-.727m2-2.273 1.133 1.133c.12.12.194.293.194.467v-.007c0 .367-.3.667-.667.667H3.327a.664.664 0 0 1-.667-.667.66.66 0 0 1 .193-.473l1.134-1.14V6.313c0-2.213 1.786-4 4-4 2.206 0 4 1.787 4 4z"
45
45
  }
46
46
  ) })
47
47
  ] }),
@@ -0,0 +1,26 @@
1
+ /**
2
+ * CreditCardFill icon component.
3
+ *
4
+ * This icon component is automatically generated from SVG files and uses the createIcon utility
5
+ * to create a consistent icon interface. It supports all standard SVG props and additional
6
+ * size variants defined in the Icon component.
7
+ *
8
+ * @see {@link https://ldls.vercel.app/?path=/story/symbols-interface-icons--icon&args=name:CreditCardFill Storybook}
9
+ *
10
+ * @component
11
+ * @param {16 | 20 | 24 | 40 | 48 | 56} [size=24] - The size of the icon in pixels.
12
+ * @param {string} [className] - Additional CSS classes to apply to the icon.
13
+ * @param {React.SVGProps<SVGSVGElement>} [...props] - All standard SVG element props.
14
+ *
15
+ * @example
16
+ * // Basic usage with default size (24px)
17
+ * import { CreditCardFill } from '@ledgerhq/lumen-ui-react/symbols';
18
+ *
19
+ * <CreditCardFill />
20
+ *
21
+ * @example
22
+ * // With custom size and className
23
+ * <CreditCardFill size={40} className="text-warning" />
24
+ */
25
+ export declare const CreditCardFill: import('react').ForwardRefExoticComponent<Omit<Omit<import('../../Components/Icon').IconProps, "children">, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
26
+ //# sourceMappingURL=CreditCardFill.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreditCardFill.d.ts","sourceRoot":"","sources":["../../../../src/lib/Symbols/Icons/CreditCardFill.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,cAAc,oKAc1B,CAAC"}
@@ -0,0 +1,25 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import l from "../../Components/Icon/createIcon.js";
3
+ const e = l(
4
+ "CreditCardFill",
5
+ /* @__PURE__ */ r(
6
+ "svg",
7
+ {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: "1em",
10
+ height: "1em",
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ children: /* @__PURE__ */ r(
14
+ "path",
15
+ {
16
+ fill: "currentColor",
17
+ d: "m1.376 6.646 13.248.002v4.167a2.5 2.5 0 0 1-2.5 2.5H3.876a2.5 2.5 0 0 1-2.5-2.5zm3.085 1.386a.651.651 0 0 0 0 1.301h1.713a.65.65 0 0 0 0-1.3zM14.625 5.35l-.001 1.298V5.385l-.002-.036zm-2.7-2.665a2.7 2.7 0 0 1 2.697 2.664L1.377 5.346a2.7 2.7 0 0 1 2.698-2.661z"
18
+ }
19
+ )
20
+ }
21
+ )
22
+ );
23
+ export {
24
+ e as CreditCardFill
25
+ };
@@ -17,7 +17,7 @@ const c = o(
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  strokeWidth: 1.3,
20
- d: "M10.817 6.583 7.984 9.417m2.833 0L7.984 6.583M4.08 4.131 1.905 7.177a1.42 1.42 0 0 0 0 1.647l2.176 3.046c.265.372.694.593 1.152.593h7.71c.782 0 1.416-.634 1.416-1.417V4.954c0-.783-.634-1.417-1.417-1.417H5.233c-.458 0-.887.221-1.152.594"
20
+ d: "M10.817 6.583 7.984 9.417m2.833 0L7.984 6.583M4.08 4.131 1.905 7.177a1.42 1.42 0 0 0 0 1.647l2.176 3.046c.265.372.695.593 1.152.593h7.71c.782 0 1.416-.634 1.416-1.417V4.954c0-.783-.634-1.417-1.417-1.417H5.233c-.457 0-.887.221-1.152.594"
21
21
  }
22
22
  )
23
23
  }
@@ -17,7 +17,7 @@ const n = r(
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  strokeWidth: 1.3,
20
- d: "M8.667 12.667h-2a3.334 3.334 0 0 1-3.334-3.334v-6m0 0L5 5M3.333 3.333 1.667 5m5.666-1.667h2a3.334 3.334 0 0 1 3.334 3.334v6m0 0-2-2m2 2 2-2"
20
+ d: "M8.667 12.667h-2a3.334 3.334 0 0 1-3.334-3.334v-6m0 0L5 5M3.333 3.333 1.667 5m5.657-1.667h2a3.334 3.334 0 0 1 3.333 3.334v6m0 0L10.99 11m1.667 1.667L14.324 11"
21
21
  }
22
22
  )
23
23
  }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * ExchangeFill icon component.
3
+ *
4
+ * This icon component is automatically generated from SVG files and uses the createIcon utility
5
+ * to create a consistent icon interface. It supports all standard SVG props and additional
6
+ * size variants defined in the Icon component.
7
+ *
8
+ * @see {@link https://ldls.vercel.app/?path=/story/symbols-interface-icons--icon&args=name:ExchangeFill Storybook}
9
+ *
10
+ * @component
11
+ * @param {16 | 20 | 24 | 40 | 48 | 56} [size=24] - The size of the icon in pixels.
12
+ * @param {string} [className] - Additional CSS classes to apply to the icon.
13
+ * @param {React.SVGProps<SVGSVGElement>} [...props] - All standard SVG element props.
14
+ *
15
+ * @example
16
+ * // Basic usage with default size (24px)
17
+ * import { ExchangeFill } from '@ledgerhq/lumen-ui-react/symbols';
18
+ *
19
+ * <ExchangeFill />
20
+ *
21
+ * @example
22
+ * // With custom size and className
23
+ * <ExchangeFill size={40} className="text-warning" />
24
+ */
25
+ export declare const ExchangeFill: import('react').ForwardRefExoticComponent<Omit<Omit<import('../../Components/Icon').IconProps, "children">, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
26
+ //# sourceMappingURL=ExchangeFill.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExchangeFill.d.ts","sourceRoot":"","sources":["../../../../src/lib/Symbols/Icons/ExchangeFill.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,YAAY,oKAyBxB,CAAC"}