@khipu/design-system 0.2.0-alpha.136 → 0.2.0-alpha.137

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 (52) hide show
  1. package/dist/beercss/arch.svg +1 -0
  2. package/dist/beercss/arrow.svg +1 -0
  3. package/dist/beercss/boom.svg +1 -0
  4. package/dist/beercss/bun.svg +1 -0
  5. package/dist/beercss/burst.svg +1 -0
  6. package/dist/beercss/circle.svg +1 -0
  7. package/dist/beercss/clamshell.svg +1 -0
  8. package/dist/beercss/diamond.svg +1 -0
  9. package/dist/beercss/fan.svg +1 -0
  10. package/dist/beercss/flower.svg +1 -0
  11. package/dist/beercss/gem.svg +1 -0
  12. package/dist/beercss/ghost-ish.svg +1 -0
  13. package/dist/beercss/heart.svg +1 -0
  14. package/dist/beercss/khipu-beercss.css +45 -3
  15. package/dist/beercss/khipu-beercss.min.css +1 -1
  16. package/dist/beercss/khipu-beercss.scoped.css +45 -3
  17. package/dist/beercss/khipu-beercss.scoped.min.css +1 -1
  18. package/dist/beercss/leaf-clover4.svg +1 -0
  19. package/dist/beercss/leaf-clover8.svg +1 -0
  20. package/dist/beercss/loading-indicator.svg +1 -0
  21. package/dist/beercss/material-symbols-outlined.woff2 +0 -0
  22. package/dist/beercss/material-symbols-rounded.woff2 +0 -0
  23. package/dist/beercss/material-symbols-sharp.woff2 +0 -0
  24. package/dist/beercss/material-symbols-subset.woff2 +0 -0
  25. package/dist/beercss/metadata.json +5 -5
  26. package/dist/beercss/oval.svg +1 -0
  27. package/dist/beercss/pentagon.svg +1 -0
  28. package/dist/beercss/pill.svg +1 -0
  29. package/dist/beercss/pixel-circle.svg +1 -0
  30. package/dist/beercss/pixel-triangle.svg +1 -0
  31. package/dist/beercss/puffy-diamond.svg +1 -0
  32. package/dist/beercss/puffy.svg +1 -0
  33. package/dist/beercss/semicircle.svg +1 -0
  34. package/dist/beercss/sided-cookie12.svg +1 -0
  35. package/dist/beercss/sided-cookie4.svg +1 -0
  36. package/dist/beercss/sided-cookie6.svg +1 -0
  37. package/dist/beercss/sided-cookie7.svg +1 -0
  38. package/dist/beercss/sided-cookie9.svg +1 -0
  39. package/dist/beercss/slanted.svg +1 -0
  40. package/dist/beercss/soft-boom.svg +1 -0
  41. package/dist/beercss/soft-burst.svg +1 -0
  42. package/dist/beercss/square.svg +1 -0
  43. package/dist/beercss/sunny.svg +1 -0
  44. package/dist/beercss/triangle.svg +1 -0
  45. package/dist/beercss/very-sunny.svg +1 -0
  46. package/dist/beercss/wavy-circle.svg +1 -0
  47. package/dist/beercss/wavy.svg +1 -0
  48. package/dist/index.d.mts +31 -1
  49. package/dist/index.d.ts +31 -1
  50. package/dist/index.js +176 -151
  51. package/dist/index.mjs +151 -127
  52. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2200,13 +2200,36 @@ var KdsFab = forwardRef27(
2200
2200
  );
2201
2201
  KdsFab.displayName = "KdsFab";
2202
2202
 
2203
- // src/components/domain/KdsBankRow/KdsBankRow.tsx
2203
+ // src/components/core/KdsEmptyState/KdsEmptyState.tsx
2204
2204
  import { forwardRef as forwardRef28 } from "react";
2205
2205
  import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
2206
- var KdsBankRow = forwardRef28(
2206
+ var KdsEmptyState = forwardRef28(
2207
+ ({ icon = "hide_source", title, description, className, ...props }, ref) => /* @__PURE__ */ jsxs22(
2208
+ "div",
2209
+ {
2210
+ ref,
2211
+ role: "status",
2212
+ className: clsx("kds-empty-state", className),
2213
+ ...props,
2214
+ children: [
2215
+ /* @__PURE__ */ jsx30("i", { className: "material-symbols-outlined", "aria-hidden": "true", children: icon }),
2216
+ /* @__PURE__ */ jsxs22("div", { className: "kds-empty-state-text", children: [
2217
+ /* @__PURE__ */ jsx30(KdsTypography, { variant: "body", color: "primary", children: title }),
2218
+ description && /* @__PURE__ */ jsx30(KdsTypography, { variant: "body", color: "secondary", children: description })
2219
+ ] })
2220
+ ]
2221
+ }
2222
+ )
2223
+ );
2224
+ KdsEmptyState.displayName = "KdsEmptyState";
2225
+
2226
+ // src/components/domain/KdsBankRow/KdsBankRow.tsx
2227
+ import { forwardRef as forwardRef29 } from "react";
2228
+ import { jsx as jsx31, jsxs as jsxs23 } from "react/jsx-runtime";
2229
+ var KdsBankRow = forwardRef29(
2207
2230
  ({ name, logoUrl, selected, hideLogo, className, ...props }, ref) => {
2208
2231
  const nameStr = typeof name === "string" ? name : "";
2209
- return /* @__PURE__ */ jsxs22(
2232
+ return /* @__PURE__ */ jsxs23(
2210
2233
  "button",
2211
2234
  {
2212
2235
  ref,
@@ -2214,9 +2237,9 @@ var KdsBankRow = forwardRef28(
2214
2237
  className: clsx("kds-bank-row", selected && "selected", className),
2215
2238
  ...props,
2216
2239
  children: [
2217
- !hideLogo && /* @__PURE__ */ jsx30("span", { className: "kds-bank-row-logo", children: logoUrl ? /* @__PURE__ */ jsx30("img", { src: logoUrl, alt: nameStr }) : /* @__PURE__ */ jsx30("span", { className: "initials", children: nameStr.charAt(0) }) }),
2218
- /* @__PURE__ */ jsx30("span", { className: "kds-bank-row-name", children: name }),
2219
- /* @__PURE__ */ jsx30("i", { className: "material-symbols-outlined", children: selected ? "check_circle" : "chevron_right" })
2240
+ !hideLogo && /* @__PURE__ */ jsx31("span", { className: "kds-bank-row-logo", children: logoUrl ? /* @__PURE__ */ jsx31("img", { src: logoUrl, alt: nameStr }) : /* @__PURE__ */ jsx31("span", { className: "initials", children: nameStr.charAt(0) }) }),
2241
+ /* @__PURE__ */ jsx31("span", { className: "kds-bank-row-name", children: name }),
2242
+ /* @__PURE__ */ jsx31("i", { className: "material-symbols-outlined", children: selected ? "check_circle" : "chevron_right" })
2220
2243
  ]
2221
2244
  }
2222
2245
  );
@@ -2225,32 +2248,32 @@ var KdsBankRow = forwardRef28(
2225
2248
  KdsBankRow.displayName = "KdsBankRow";
2226
2249
 
2227
2250
  // src/components/domain/KdsBankList/KdsBankList.tsx
2228
- import { forwardRef as forwardRef29 } from "react";
2229
- import { jsx as jsx31 } from "react/jsx-runtime";
2230
- var KdsBankList = forwardRef29(
2231
- ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx31("div", { ref, className: clsx("kds-bank-list", className), role: "list", ...props, children })
2251
+ import { forwardRef as forwardRef30 } from "react";
2252
+ import { jsx as jsx32 } from "react/jsx-runtime";
2253
+ var KdsBankList = forwardRef30(
2254
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx32("div", { ref, className: clsx("kds-bank-list", className), role: "list", ...props, children })
2232
2255
  );
2233
2256
  KdsBankList.displayName = "KdsBankList";
2234
2257
 
2235
2258
  // src/components/domain/KdsBankModal/KdsBankModal.tsx
2236
- import { forwardRef as forwardRef30, useState as useState7 } from "react";
2259
+ import { forwardRef as forwardRef31, useState as useState7 } from "react";
2237
2260
  import * as Dialog from "@radix-ui/react-dialog";
2238
- import { jsx as jsx32, jsxs as jsxs23 } from "react/jsx-runtime";
2239
- var KdsBankModal = forwardRef30(
2261
+ import { jsx as jsx33, jsxs as jsxs24 } from "react/jsx-runtime";
2262
+ var KdsBankModal = forwardRef31(
2240
2263
  ({ open, onClose, title = "Selecciona tu banco", searchPlaceholder = "Buscar banco...", onSearch, children, className, container }, ref) => {
2241
2264
  const [query, setQuery] = useState7("");
2242
2265
  const handleSearch = (value) => {
2243
2266
  setQuery(value);
2244
2267
  onSearch?.(value);
2245
2268
  };
2246
- return /* @__PURE__ */ jsx32(Dialog.Root, { open, onOpenChange: (o) => {
2269
+ return /* @__PURE__ */ jsx33(Dialog.Root, { open, onOpenChange: (o) => {
2247
2270
  if (!o) onClose();
2248
- }, children: /* @__PURE__ */ jsx32(Dialog.Portal, { container, children: /* @__PURE__ */ jsx32(Dialog.Overlay, { className: "kds-bank-modal-scrim open", children: /* @__PURE__ */ jsxs23(Dialog.Content, { ref, className: clsx("kds-bank-modal", className), children: [
2249
- /* @__PURE__ */ jsxs23("div", { className: "kds-bank-modal-header", children: [
2250
- /* @__PURE__ */ jsx32(Dialog.Title, { asChild: true, children: /* @__PURE__ */ jsx32("h3", { children: title }) }),
2251
- /* @__PURE__ */ jsx32(Dialog.Close, { asChild: true, children: /* @__PURE__ */ jsx32("button", { className: "kds-bank-modal-close", "aria-label": "Cerrar", children: /* @__PURE__ */ jsx32("i", { className: "material-symbols-outlined", children: "close" }) }) })
2271
+ }, children: /* @__PURE__ */ jsx33(Dialog.Portal, { container, children: /* @__PURE__ */ jsx33(Dialog.Overlay, { className: "kds-bank-modal-scrim open", children: /* @__PURE__ */ jsxs24(Dialog.Content, { ref, className: clsx("kds-bank-modal", className), children: [
2272
+ /* @__PURE__ */ jsxs24("div", { className: "kds-bank-modal-header", children: [
2273
+ /* @__PURE__ */ jsx33(Dialog.Title, { asChild: true, children: /* @__PURE__ */ jsx33("h3", { children: title }) }),
2274
+ /* @__PURE__ */ jsx33(Dialog.Close, { asChild: true, children: /* @__PURE__ */ jsx33("button", { className: "kds-bank-modal-close", "aria-label": "Cerrar", children: /* @__PURE__ */ jsx33("i", { className: "material-symbols-outlined", children: "close" }) }) })
2252
2275
  ] }),
2253
- /* @__PURE__ */ jsx32("div", { className: "kds-bank-modal-search", children: /* @__PURE__ */ jsx32(
2276
+ /* @__PURE__ */ jsx33("div", { className: "kds-bank-modal-search", children: /* @__PURE__ */ jsx33(
2254
2277
  KdsSearchField,
2255
2278
  {
2256
2279
  placeholder: searchPlaceholder,
@@ -2258,33 +2281,33 @@ var KdsBankModal = forwardRef30(
2258
2281
  onChange: (e) => handleSearch(e.target.value)
2259
2282
  }
2260
2283
  ) }),
2261
- /* @__PURE__ */ jsx32("div", { className: "kds-bank-modal-body", children })
2284
+ /* @__PURE__ */ jsx33("div", { className: "kds-bank-modal-body", children })
2262
2285
  ] }) }) }) });
2263
2286
  }
2264
2287
  );
2265
2288
  KdsBankModal.displayName = "KdsBankModal";
2266
2289
 
2267
2290
  // src/components/domain/KdsQrRow/KdsQrRow.tsx
2268
- import { forwardRef as forwardRef31 } from "react";
2269
- import { jsx as jsx33, jsxs as jsxs24 } from "react/jsx-runtime";
2270
- var KdsQrRow = forwardRef31(
2271
- ({ name, description, badge, icon = "qr_code_2", className, ...props }, ref) => /* @__PURE__ */ jsxs24("button", { ref, type: "button", className: clsx("kds-qr-row", className), ...props, children: [
2272
- /* @__PURE__ */ jsx33("span", { className: "kds-qr-avatar", "aria-hidden": "true", children: /* @__PURE__ */ jsx33("i", { className: "material-symbols-outlined", children: icon }) }),
2273
- /* @__PURE__ */ jsxs24("span", { className: "kds-qr-text", children: [
2274
- /* @__PURE__ */ jsx33("span", { className: "kds-qr-title", children: name }),
2275
- description && /* @__PURE__ */ jsx33("span", { className: "kds-qr-subtitle", children: description })
2291
+ import { forwardRef as forwardRef32 } from "react";
2292
+ import { jsx as jsx34, jsxs as jsxs25 } from "react/jsx-runtime";
2293
+ var KdsQrRow = forwardRef32(
2294
+ ({ name, description, badge, icon = "qr_code_2", className, ...props }, ref) => /* @__PURE__ */ jsxs25("button", { ref, type: "button", className: clsx("kds-qr-row", className), ...props, children: [
2295
+ /* @__PURE__ */ jsx34("span", { className: "kds-qr-avatar", "aria-hidden": "true", children: /* @__PURE__ */ jsx34("i", { className: "material-symbols-outlined", children: icon }) }),
2296
+ /* @__PURE__ */ jsxs25("span", { className: "kds-qr-text", children: [
2297
+ /* @__PURE__ */ jsx34("span", { className: "kds-qr-title", children: name }),
2298
+ description && /* @__PURE__ */ jsx34("span", { className: "kds-qr-subtitle", children: description })
2276
2299
  ] }),
2277
- badge && /* @__PURE__ */ jsx33("span", { className: "kds-qr-badge", children: badge }),
2278
- /* @__PURE__ */ jsx33("i", { className: "material-symbols-outlined", children: "chevron_right" })
2300
+ badge && /* @__PURE__ */ jsx34("span", { className: "kds-qr-badge", children: badge }),
2301
+ /* @__PURE__ */ jsx34("i", { className: "material-symbols-outlined", children: "chevron_right" })
2279
2302
  ] })
2280
2303
  );
2281
2304
  KdsQrRow.displayName = "KdsQrRow";
2282
2305
 
2283
2306
  // src/components/domain/KdsCardSelector/KdsCardSelector.tsx
2284
- import { forwardRef as forwardRef32 } from "react";
2285
- import { jsx as jsx34, jsxs as jsxs25 } from "react/jsx-runtime";
2286
- var KdsCardSelector = forwardRef32(
2287
- ({ icon, title, description, selected, className, ...props }, ref) => /* @__PURE__ */ jsxs25(
2307
+ import { forwardRef as forwardRef33 } from "react";
2308
+ import { jsx as jsx35, jsxs as jsxs26 } from "react/jsx-runtime";
2309
+ var KdsCardSelector = forwardRef33(
2310
+ ({ icon, title, description, selected, className, ...props }, ref) => /* @__PURE__ */ jsxs26(
2288
2311
  "button",
2289
2312
  {
2290
2313
  ref,
@@ -2292,9 +2315,9 @@ var KdsCardSelector = forwardRef32(
2292
2315
  className: clsx("kds-card-selector", selected && "selected", className),
2293
2316
  ...props,
2294
2317
  children: [
2295
- icon && /* @__PURE__ */ jsx34("span", { className: "kds-card-selector-icon", children: /* @__PURE__ */ jsx34("i", { className: "material-symbols-outlined", children: icon }) }),
2296
- /* @__PURE__ */ jsx34("span", { className: "kds-card-selector-title", children: title }),
2297
- description && /* @__PURE__ */ jsx34("span", { className: "kds-card-selector-description", children: description })
2318
+ icon && /* @__PURE__ */ jsx35("span", { className: "kds-card-selector-icon", children: /* @__PURE__ */ jsx35("i", { className: "material-symbols-outlined", children: icon }) }),
2319
+ /* @__PURE__ */ jsx35("span", { className: "kds-card-selector-title", children: title }),
2320
+ description && /* @__PURE__ */ jsx35("span", { className: "kds-card-selector-description", children: description })
2298
2321
  ]
2299
2322
  }
2300
2323
  )
@@ -2302,26 +2325,26 @@ var KdsCardSelector = forwardRef32(
2302
2325
  KdsCardSelector.displayName = "KdsCardSelector";
2303
2326
 
2304
2327
  // src/components/domain/KdsCardPlan/KdsCardPlan.tsx
2305
- import { forwardRef as forwardRef33 } from "react";
2306
- import { jsx as jsx35, jsxs as jsxs26 } from "react/jsx-runtime";
2307
- var KdsCardPlan = forwardRef33(
2308
- ({ title, price, period, features, recommended, badgeText, action, className, ...props }, ref) => /* @__PURE__ */ jsxs26(
2328
+ import { forwardRef as forwardRef34 } from "react";
2329
+ import { jsx as jsx36, jsxs as jsxs27 } from "react/jsx-runtime";
2330
+ var KdsCardPlan = forwardRef34(
2331
+ ({ title, price, period, features, recommended, badgeText, action, className, ...props }, ref) => /* @__PURE__ */ jsxs27(
2309
2332
  "div",
2310
2333
  {
2311
2334
  ref,
2312
2335
  className: clsx("kds-card-plan", recommended && "recommended", className),
2313
2336
  ...props,
2314
2337
  children: [
2315
- /* @__PURE__ */ jsx35("div", { className: "kds-card-plan-header", children: /* @__PURE__ */ jsx35("h3", { children: title }) }),
2316
- /* @__PURE__ */ jsxs26("div", { className: "kds-card-plan-price", children: [
2317
- /* @__PURE__ */ jsx35("span", { className: "kds-price", children: price }),
2318
- period && /* @__PURE__ */ jsxs26("span", { className: "kds-price-period", children: [
2338
+ /* @__PURE__ */ jsx36("div", { className: "kds-card-plan-header", children: /* @__PURE__ */ jsx36("h3", { children: title }) }),
2339
+ /* @__PURE__ */ jsxs27("div", { className: "kds-card-plan-price", children: [
2340
+ /* @__PURE__ */ jsx36("span", { className: "kds-price", children: price }),
2341
+ period && /* @__PURE__ */ jsxs27("span", { className: "kds-price-period", children: [
2319
2342
  "/",
2320
2343
  period
2321
2344
  ] })
2322
2345
  ] }),
2323
- badgeText && /* @__PURE__ */ jsx35("span", { className: "kds-card-plan-badge", children: badgeText }),
2324
- features && features.length > 0 && /* @__PURE__ */ jsx35("ul", { className: "kds-card-plan-features", children: features.map((f, i) => /* @__PURE__ */ jsx35("li", { children: f }, i)) }),
2346
+ badgeText && /* @__PURE__ */ jsx36("span", { className: "kds-card-plan-badge", children: badgeText }),
2347
+ features && features.length > 0 && /* @__PURE__ */ jsx36("ul", { className: "kds-card-plan-features", children: features.map((f, i) => /* @__PURE__ */ jsx36("li", { children: f }, i)) }),
2325
2348
  action
2326
2349
  ]
2327
2350
  }
@@ -2330,10 +2353,10 @@ var KdsCardPlan = forwardRef33(
2330
2353
  KdsCardPlan.displayName = "KdsCardPlan";
2331
2354
 
2332
2355
  // src/components/domain/KdsInvoiceSticky/KdsInvoiceSticky.tsx
2333
- import { forwardRef as forwardRef34 } from "react";
2334
- import { jsx as jsx36 } from "react/jsx-runtime";
2335
- var KdsInvoiceSticky = forwardRef34(
2336
- ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx36(
2356
+ import { forwardRef as forwardRef35 } from "react";
2357
+ import { jsx as jsx37 } from "react/jsx-runtime";
2358
+ var KdsInvoiceSticky = forwardRef35(
2359
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx37(
2337
2360
  "article",
2338
2361
  {
2339
2362
  ref,
@@ -2346,10 +2369,10 @@ var KdsInvoiceSticky = forwardRef34(
2346
2369
  KdsInvoiceSticky.displayName = "KdsInvoiceSticky";
2347
2370
 
2348
2371
  // src/components/domain/KdsBottomSheet/KdsBottomSheet.tsx
2349
- import { forwardRef as forwardRef35 } from "react";
2372
+ import { forwardRef as forwardRef36 } from "react";
2350
2373
  import * as Dialog2 from "@radix-ui/react-dialog";
2351
- import { jsx as jsx37, jsxs as jsxs27 } from "react/jsx-runtime";
2352
- var KdsBottomSheet = forwardRef35(
2374
+ import { jsx as jsx38, jsxs as jsxs28 } from "react/jsx-runtime";
2375
+ var KdsBottomSheet = forwardRef36(
2353
2376
  ({
2354
2377
  open,
2355
2378
  onClose,
@@ -2362,14 +2385,14 @@ var KdsBottomSheet = forwardRef35(
2362
2385
  container,
2363
2386
  className,
2364
2387
  ...props
2365
- }, ref) => /* @__PURE__ */ jsx37(
2388
+ }, ref) => /* @__PURE__ */ jsx38(
2366
2389
  Dialog2.Root,
2367
2390
  {
2368
2391
  open,
2369
2392
  onOpenChange: (o) => {
2370
2393
  if (!o) onClose();
2371
2394
  },
2372
- children: /* @__PURE__ */ jsx37(Dialog2.Portal, { container, children: /* @__PURE__ */ jsx37("div", { className: "kds-theme-root", style: { display: "contents" }, children: /* @__PURE__ */ jsx37(Dialog2.Overlay, { className: "kds-bottom-sheet-scrim open", children: /* @__PURE__ */ jsxs27(
2395
+ children: /* @__PURE__ */ jsx38(Dialog2.Portal, { container, children: /* @__PURE__ */ jsx38("div", { className: "kds-theme-root", style: { display: "contents" }, children: /* @__PURE__ */ jsx38(Dialog2.Overlay, { className: "kds-bottom-sheet-scrim open", children: /* @__PURE__ */ jsxs28(
2373
2396
  Dialog2.Content,
2374
2397
  {
2375
2398
  ref,
@@ -2380,20 +2403,20 @@ var KdsBottomSheet = forwardRef35(
2380
2403
  },
2381
2404
  ...props,
2382
2405
  children: [
2383
- showGrabber && /* @__PURE__ */ jsx37("div", { className: "kds-bottom-sheet-grabber", "aria-hidden": "true" }),
2384
- showCloseButton && /* @__PURE__ */ jsx37(Dialog2.Close, { asChild: true, children: /* @__PURE__ */ jsx37(
2406
+ showGrabber && /* @__PURE__ */ jsx38("div", { className: "kds-bottom-sheet-grabber", "aria-hidden": "true" }),
2407
+ showCloseButton && /* @__PURE__ */ jsx38(Dialog2.Close, { asChild: true, children: /* @__PURE__ */ jsx38(
2385
2408
  "button",
2386
2409
  {
2387
2410
  type: "button",
2388
2411
  className: "kds-bottom-sheet-close",
2389
2412
  "aria-label": "Cerrar",
2390
- children: /* @__PURE__ */ jsx37("i", { className: "material-symbols-outlined", children: "close" })
2413
+ children: /* @__PURE__ */ jsx38("i", { className: "material-symbols-outlined", children: "close" })
2391
2414
  }
2392
2415
  ) }),
2393
- title && /* @__PURE__ */ jsx37(Dialog2.Title, { className: "kds-bottom-sheet-title", children: title }),
2394
- description && /* @__PURE__ */ jsx37(Dialog2.Description, { className: "kds-bottom-sheet-description", children: description }),
2395
- /* @__PURE__ */ jsx37("div", { className: "kds-bottom-sheet-body", children }),
2396
- actions && /* @__PURE__ */ jsx37("div", { className: "kds-bottom-sheet-actions", children: actions })
2416
+ title && /* @__PURE__ */ jsx38(Dialog2.Title, { className: "kds-bottom-sheet-title", children: title }),
2417
+ description && /* @__PURE__ */ jsx38(Dialog2.Description, { className: "kds-bottom-sheet-description", children: description }),
2418
+ /* @__PURE__ */ jsx38("div", { className: "kds-bottom-sheet-body", children }),
2419
+ actions && /* @__PURE__ */ jsx38("div", { className: "kds-bottom-sheet-actions", children: actions })
2397
2420
  ]
2398
2421
  }
2399
2422
  ) }) }) })
@@ -2403,13 +2426,13 @@ var KdsBottomSheet = forwardRef35(
2403
2426
  KdsBottomSheet.displayName = "KdsBottomSheet";
2404
2427
 
2405
2428
  // src/components/domain/KdsSecureFooter/KdsSecureFooter.tsx
2406
- import { forwardRef as forwardRef37 } from "react";
2429
+ import { forwardRef as forwardRef38 } from "react";
2407
2430
 
2408
2431
  // src/components/domain/KdsSecureFooter/KhipuWordmark.tsx
2409
- import { forwardRef as forwardRef36 } from "react";
2410
- import { jsx as jsx38, jsxs as jsxs28 } from "react/jsx-runtime";
2411
- var KhipuWordmark = forwardRef36(
2412
- ({ className = "khipu-mark", ...props }, ref) => /* @__PURE__ */ jsxs28(
2432
+ import { forwardRef as forwardRef37 } from "react";
2433
+ import { jsx as jsx39, jsxs as jsxs29 } from "react/jsx-runtime";
2434
+ var KhipuWordmark = forwardRef37(
2435
+ ({ className = "khipu-mark", ...props }, ref) => /* @__PURE__ */ jsxs29(
2413
2436
  "svg",
2414
2437
  {
2415
2438
  ref,
@@ -2420,14 +2443,14 @@ var KhipuWordmark = forwardRef36(
2420
2443
  xmlns: "http://www.w3.org/2000/svg",
2421
2444
  ...props,
2422
2445
  children: [
2423
- /* @__PURE__ */ jsx38("path", { d: "M16.6417 11.8339C16.7273 11.9196 16.8272 11.9624 16.9472 11.9624H18.9628C19.0798 11.9624 19.1826 11.9196 19.2682 11.8339C19.3539 11.7483 19.3967 11.6483 19.3967 11.5284V7.12891C19.3967 6.50081 19.3111 5.95551 19.1398 5.49586C18.9685 5.03621 18.7315 4.65937 18.4289 4.3596C18.1234 4.05983 17.758 3.83999 17.3326 3.69439C16.9043 3.55164 16.4361 3.47741 15.9251 3.47741C15.4226 3.47741 14.9801 3.58019 14.5975 3.7886C14.2121 3.99702 13.9295 4.214 13.7496 4.43668V1.03071C13.7496 0.913654 13.7068 0.810874 13.6211 0.728079C13.5355 0.642434 13.4355 0.599609 13.3185 0.599609H11.2943C11.1773 0.599609 11.0745 0.642434 10.9888 0.728079C10.9032 0.813729 10.8604 0.913654 10.8604 1.03071V11.5284C10.8604 11.6455 10.9032 11.7483 10.9888 11.8339C11.0745 11.9196 11.1744 11.9624 11.2943 11.9624H13.3099C13.427 11.9624 13.5298 11.9196 13.6126 11.8339C13.6982 11.7483 13.741 11.6483 13.741 11.5284V7.48006C13.741 7.02041 13.8495 6.65216 14.0693 6.37521C14.2892 6.09826 14.6375 5.95836 15.1171 5.95836C15.5968 5.95836 15.9479 6.09826 16.1735 6.37521C16.3961 6.65216 16.5103 7.02041 16.5103 7.48006V11.5284C16.5132 11.6483 16.556 11.7483 16.6417 11.8339Z", fill: "#8347AD" }),
2424
- /* @__PURE__ */ jsx38("path", { d: "M23.6189 3.64014H21.6005C21.4834 3.64014 21.3806 3.68296 21.295 3.76861C21.2093 3.85426 21.1665 3.95418 21.1665 4.07124V11.5284C21.1665 11.6454 21.2093 11.7482 21.295 11.8339C21.3806 11.9195 21.4806 11.9623 21.6005 11.9623H23.6161C23.7331 11.9623 23.8359 11.9195 23.9187 11.8339C24.0044 11.7482 24.0472 11.6483 24.0472 11.5284V4.07124C24.0472 3.95418 24.0044 3.85141 23.9187 3.76861C23.8359 3.68296 23.736 3.64014 23.6189 3.64014Z", fill: "#8347AD" }),
2425
- /* @__PURE__ */ jsx38("path", { d: "M34.1881 10.0723C34.3851 9.61264 34.4936 9.07019 34.5164 8.43924C34.5278 8.27934 34.5335 8.06239 34.5335 7.79114C34.5335 7.51994 34.5278 7.30294 34.5164 7.14309C34.4936 6.51499 34.3851 5.96969 34.1881 5.51004C33.9911 5.05039 33.7313 4.67068 33.4115 4.36519C33.0918 4.05971 32.7178 3.83702 32.2924 3.69427C31.8642 3.55152 31.4131 3.47729 30.9334 3.47729C30.5823 3.47729 30.2854 3.50584 30.0455 3.5658C29.8057 3.62575 29.603 3.69998 29.4374 3.78848C29.2718 3.87984 29.1348 3.98263 29.0206 4.09968C28.9093 4.21674 28.8036 4.32808 28.7094 4.43657V4.06828C28.7094 3.95122 28.6666 3.84844 28.5809 3.7628C28.4953 3.67715 28.3954 3.63432 28.2783 3.63432H26.3426C26.2256 3.63432 26.1228 3.67715 26.0372 3.7628C25.9515 3.84844 25.9087 3.94837 25.9087 4.06828V14.566C25.9087 14.683 25.9515 14.7858 26.0372 14.8715C26.1228 14.9571 26.2227 14.9999 26.3426 14.9999H28.3583C28.4753 14.9999 28.5781 14.9571 28.6637 14.8715C28.7494 14.7858 28.7922 14.6859 28.7922 14.566V11.1629C28.8664 11.2599 28.9635 11.3627 29.0806 11.474C29.1976 11.5854 29.3432 11.691 29.5117 11.7852C29.683 11.8823 29.8857 11.9622 30.1198 12.0251C30.3539 12.0879 30.6251 12.1221 30.9363 12.1221C31.4159 12.1221 31.8699 12.0479 32.2953 11.8994C32.7206 11.751 33.0946 11.5226 33.4144 11.22C33.7313 10.9145 33.9911 10.5319 34.1881 10.0723ZM31.65 8.24794C31.6186 8.62194 31.4959 8.94739 31.2817 9.22434C31.0676 9.50129 30.7107 9.64119 30.2083 9.64119C29.9742 9.64119 29.7715 9.60404 29.6002 9.52984C29.4289 9.45559 29.289 9.35569 29.1748 9.23289C29.0634 9.11014 28.9749 8.97309 28.9121 8.82464C28.8493 8.67619 28.8065 8.52204 28.7836 8.35929C28.7608 8.19939 28.7522 8.01384 28.7522 7.79974C28.7522 7.58559 28.7637 7.40004 28.7836 7.24014C28.8036 7.08029 28.8465 6.92609 28.9121 6.77479C28.9749 6.62634 29.0634 6.48929 29.1748 6.36654C29.2861 6.24374 29.4289 6.14384 29.6002 6.06959C29.7715 5.99539 29.9742 5.95824 30.2083 5.95824C30.7107 5.95824 31.0676 6.09814 31.2817 6.37509C31.4959 6.65204 31.6186 6.97749 31.65 7.35149C31.6843 7.65124 31.6843 7.95104 31.65 8.24794Z", fill: "#8347AD" }),
2426
- /* @__PURE__ */ jsx38("path", { d: "M41.7481 11.8339C41.8337 11.9195 41.9337 11.9623 42.0536 11.9623H43.9093C44.0264 11.9623 44.1291 11.9195 44.2119 11.8339C44.2976 11.7482 44.3404 11.6483 44.3404 11.5284V4.07124C44.3404 3.95418 44.2976 3.85141 44.2119 3.76861C44.1263 3.68296 44.0264 3.64014 43.9093 3.64014H41.8937C41.7766 3.64014 41.6739 3.68296 41.5882 3.76861C41.5026 3.85426 41.4597 3.95418 41.4597 4.07124V8.1196C41.4597 8.57925 41.3598 8.94755 41.1628 9.22445C40.9658 9.5014 40.6318 9.6413 40.1636 9.6413C39.6954 9.6413 39.3585 9.5014 39.1558 9.22445C38.9531 8.94755 38.8503 8.57925 38.8503 8.1196V4.07124C38.8503 3.95418 38.8075 3.85141 38.7218 3.76861C38.6362 3.68296 38.5363 3.64014 38.4163 3.64014H36.4007C36.2837 3.64014 36.1809 3.68296 36.0953 3.76861C36.0096 3.85426 35.9668 3.95418 35.9668 4.07124V8.47075C35.9668 9.7298 36.2723 10.6519 36.8861 11.24C37.4999 11.8282 38.325 12.1194 39.3585 12.1194C39.6897 12.1194 39.9752 12.0908 40.215 12.0309C40.4548 11.9709 40.6661 11.8967 40.8459 11.8082C41.0286 11.7168 41.18 11.6169 41.3027 11.5027C41.4255 11.3914 41.5283 11.2772 41.6139 11.1601V11.5284C41.6196 11.6483 41.6624 11.7482 41.7481 11.8339Z", fill: "#8347AD" }),
2427
- /* @__PURE__ */ jsx38("path", { d: "M22.5569 2.78074C21.7889 2.78074 21.1665 2.1555 21.1665 1.39037C21.1665 0.622385 21.7918 0 22.5569 0C23.3249 0 23.9473 0.62524 23.9473 1.39037C23.9501 2.1555 23.3249 2.78074 22.5569 2.78074Z", fill: "#3CB4E5" }),
2428
- /* @__PURE__ */ jsx38("path", { d: "M3.1374 7.43996V4.78198L2.34372 5.77836C2.22095 5.93256 2.21524 6.14951 2.32944 6.31226L3.1374 7.43996Z", fill: "#743CEB" }),
2429
- /* @__PURE__ */ jsx38("path", { d: "M2.96345 0.722369C2.88351 0.642434 2.78074 0.599609 2.66368 0.599609H0.40826C0.299771 0.599609 0.205557 0.639579 0.122763 0.722369C0.0428246 0.802309 0 0.905089 0 1.02214V11.557C0 11.6655 0.0399696 11.7597 0.122763 11.8425C0.202703 11.9224 0.299771 11.9652 0.40826 11.9652H2.66368C2.78359 11.9652 2.88351 11.9253 2.96345 11.8425C3.04339 11.7625 3.08622 11.6655 3.08622 11.557V8.41081L2.83783 8.08246L2.83212 8.07676L2.82642 8.06821L1.81576 6.65216C1.55024 6.28101 1.56166 5.76996 1.84716 5.41306L2.84069 4.16261L3.08622 3.84285V1.01929C3.08622 0.902234 3.04625 0.802309 2.96345 0.722369Z", fill: "#8347AD" }),
2430
- /* @__PURE__ */ jsx38("path", { d: "M9.60962 11.9625C9.70667 11.9625 9.78947 11.9282 9.85227 11.8568C9.91797 11.7855 9.94937 11.7084 9.94937 11.6227C9.94937 11.5371 9.92652 11.4714 9.88367 11.4286L5.89242 6.0384L9.59247 1.13642C9.63532 1.08217 9.65812 1.01651 9.65812 0.942284C9.65812 0.856634 9.62387 0.776694 9.55252 0.708174C9.50967 0.665349 9.45832 0.633944 9.40407 0.616814C9.37267 0.608249 9.33552 0.602539 9.30127 0.602539H6.73752C6.56337 0.602539 6.42632 0.636799 6.32352 0.708174C6.22077 0.779549 6.14082 0.850924 6.08942 0.928009L3.32868 4.54525L2.32944 5.80145C2.27234 5.8728 2.24094 5.95845 2.24094 6.04695C2.23808 6.13545 2.26378 6.2211 2.31802 6.2982L2.83477 7.0205L3.32868 7.70855L6.29787 11.6199C6.32927 11.6627 6.39492 11.7312 6.49197 11.8226C6.55192 11.8797 6.63472 11.9197 6.73752 11.9425C6.80032 11.9568 6.86882 11.9625 6.94592 11.9625H9.60962Z", fill: "#3CB4E5" })
2446
+ /* @__PURE__ */ jsx39("path", { d: "M16.6417 11.8339C16.7273 11.9196 16.8272 11.9624 16.9472 11.9624H18.9628C19.0798 11.9624 19.1826 11.9196 19.2682 11.8339C19.3539 11.7483 19.3967 11.6483 19.3967 11.5284V7.12891C19.3967 6.50081 19.3111 5.95551 19.1398 5.49586C18.9685 5.03621 18.7315 4.65937 18.4289 4.3596C18.1234 4.05983 17.758 3.83999 17.3326 3.69439C16.9043 3.55164 16.4361 3.47741 15.9251 3.47741C15.4226 3.47741 14.9801 3.58019 14.5975 3.7886C14.2121 3.99702 13.9295 4.214 13.7496 4.43668V1.03071C13.7496 0.913654 13.7068 0.810874 13.6211 0.728079C13.5355 0.642434 13.4355 0.599609 13.3185 0.599609H11.2943C11.1773 0.599609 11.0745 0.642434 10.9888 0.728079C10.9032 0.813729 10.8604 0.913654 10.8604 1.03071V11.5284C10.8604 11.6455 10.9032 11.7483 10.9888 11.8339C11.0745 11.9196 11.1744 11.9624 11.2943 11.9624H13.3099C13.427 11.9624 13.5298 11.9196 13.6126 11.8339C13.6982 11.7483 13.741 11.6483 13.741 11.5284V7.48006C13.741 7.02041 13.8495 6.65216 14.0693 6.37521C14.2892 6.09826 14.6375 5.95836 15.1171 5.95836C15.5968 5.95836 15.9479 6.09826 16.1735 6.37521C16.3961 6.65216 16.5103 7.02041 16.5103 7.48006V11.5284C16.5132 11.6483 16.556 11.7483 16.6417 11.8339Z", fill: "#8347AD" }),
2447
+ /* @__PURE__ */ jsx39("path", { d: "M23.6189 3.64014H21.6005C21.4834 3.64014 21.3806 3.68296 21.295 3.76861C21.2093 3.85426 21.1665 3.95418 21.1665 4.07124V11.5284C21.1665 11.6454 21.2093 11.7482 21.295 11.8339C21.3806 11.9195 21.4806 11.9623 21.6005 11.9623H23.6161C23.7331 11.9623 23.8359 11.9195 23.9187 11.8339C24.0044 11.7482 24.0472 11.6483 24.0472 11.5284V4.07124C24.0472 3.95418 24.0044 3.85141 23.9187 3.76861C23.8359 3.68296 23.736 3.64014 23.6189 3.64014Z", fill: "#8347AD" }),
2448
+ /* @__PURE__ */ jsx39("path", { d: "M34.1881 10.0723C34.3851 9.61264 34.4936 9.07019 34.5164 8.43924C34.5278 8.27934 34.5335 8.06239 34.5335 7.79114C34.5335 7.51994 34.5278 7.30294 34.5164 7.14309C34.4936 6.51499 34.3851 5.96969 34.1881 5.51004C33.9911 5.05039 33.7313 4.67068 33.4115 4.36519C33.0918 4.05971 32.7178 3.83702 32.2924 3.69427C31.8642 3.55152 31.4131 3.47729 30.9334 3.47729C30.5823 3.47729 30.2854 3.50584 30.0455 3.5658C29.8057 3.62575 29.603 3.69998 29.4374 3.78848C29.2718 3.87984 29.1348 3.98263 29.0206 4.09968C28.9093 4.21674 28.8036 4.32808 28.7094 4.43657V4.06828C28.7094 3.95122 28.6666 3.84844 28.5809 3.7628C28.4953 3.67715 28.3954 3.63432 28.2783 3.63432H26.3426C26.2256 3.63432 26.1228 3.67715 26.0372 3.7628C25.9515 3.84844 25.9087 3.94837 25.9087 4.06828V14.566C25.9087 14.683 25.9515 14.7858 26.0372 14.8715C26.1228 14.9571 26.2227 14.9999 26.3426 14.9999H28.3583C28.4753 14.9999 28.5781 14.9571 28.6637 14.8715C28.7494 14.7858 28.7922 14.6859 28.7922 14.566V11.1629C28.8664 11.2599 28.9635 11.3627 29.0806 11.474C29.1976 11.5854 29.3432 11.691 29.5117 11.7852C29.683 11.8823 29.8857 11.9622 30.1198 12.0251C30.3539 12.0879 30.6251 12.1221 30.9363 12.1221C31.4159 12.1221 31.8699 12.0479 32.2953 11.8994C32.7206 11.751 33.0946 11.5226 33.4144 11.22C33.7313 10.9145 33.9911 10.5319 34.1881 10.0723ZM31.65 8.24794C31.6186 8.62194 31.4959 8.94739 31.2817 9.22434C31.0676 9.50129 30.7107 9.64119 30.2083 9.64119C29.9742 9.64119 29.7715 9.60404 29.6002 9.52984C29.4289 9.45559 29.289 9.35569 29.1748 9.23289C29.0634 9.11014 28.9749 8.97309 28.9121 8.82464C28.8493 8.67619 28.8065 8.52204 28.7836 8.35929C28.7608 8.19939 28.7522 8.01384 28.7522 7.79974C28.7522 7.58559 28.7637 7.40004 28.7836 7.24014C28.8036 7.08029 28.8465 6.92609 28.9121 6.77479C28.9749 6.62634 29.0634 6.48929 29.1748 6.36654C29.2861 6.24374 29.4289 6.14384 29.6002 6.06959C29.7715 5.99539 29.9742 5.95824 30.2083 5.95824C30.7107 5.95824 31.0676 6.09814 31.2817 6.37509C31.4959 6.65204 31.6186 6.97749 31.65 7.35149C31.6843 7.65124 31.6843 7.95104 31.65 8.24794Z", fill: "#8347AD" }),
2449
+ /* @__PURE__ */ jsx39("path", { d: "M41.7481 11.8339C41.8337 11.9195 41.9337 11.9623 42.0536 11.9623H43.9093C44.0264 11.9623 44.1291 11.9195 44.2119 11.8339C44.2976 11.7482 44.3404 11.6483 44.3404 11.5284V4.07124C44.3404 3.95418 44.2976 3.85141 44.2119 3.76861C44.1263 3.68296 44.0264 3.64014 43.9093 3.64014H41.8937C41.7766 3.64014 41.6739 3.68296 41.5882 3.76861C41.5026 3.85426 41.4597 3.95418 41.4597 4.07124V8.1196C41.4597 8.57925 41.3598 8.94755 41.1628 9.22445C40.9658 9.5014 40.6318 9.6413 40.1636 9.6413C39.6954 9.6413 39.3585 9.5014 39.1558 9.22445C38.9531 8.94755 38.8503 8.57925 38.8503 8.1196V4.07124C38.8503 3.95418 38.8075 3.85141 38.7218 3.76861C38.6362 3.68296 38.5363 3.64014 38.4163 3.64014H36.4007C36.2837 3.64014 36.1809 3.68296 36.0953 3.76861C36.0096 3.85426 35.9668 3.95418 35.9668 4.07124V8.47075C35.9668 9.7298 36.2723 10.6519 36.8861 11.24C37.4999 11.8282 38.325 12.1194 39.3585 12.1194C39.6897 12.1194 39.9752 12.0908 40.215 12.0309C40.4548 11.9709 40.6661 11.8967 40.8459 11.8082C41.0286 11.7168 41.18 11.6169 41.3027 11.5027C41.4255 11.3914 41.5283 11.2772 41.6139 11.1601V11.5284C41.6196 11.6483 41.6624 11.7482 41.7481 11.8339Z", fill: "#8347AD" }),
2450
+ /* @__PURE__ */ jsx39("path", { d: "M22.5569 2.78074C21.7889 2.78074 21.1665 2.1555 21.1665 1.39037C21.1665 0.622385 21.7918 0 22.5569 0C23.3249 0 23.9473 0.62524 23.9473 1.39037C23.9501 2.1555 23.3249 2.78074 22.5569 2.78074Z", fill: "#3CB4E5" }),
2451
+ /* @__PURE__ */ jsx39("path", { d: "M3.1374 7.43996V4.78198L2.34372 5.77836C2.22095 5.93256 2.21524 6.14951 2.32944 6.31226L3.1374 7.43996Z", fill: "#743CEB" }),
2452
+ /* @__PURE__ */ jsx39("path", { d: "M2.96345 0.722369C2.88351 0.642434 2.78074 0.599609 2.66368 0.599609H0.40826C0.299771 0.599609 0.205557 0.639579 0.122763 0.722369C0.0428246 0.802309 0 0.905089 0 1.02214V11.557C0 11.6655 0.0399696 11.7597 0.122763 11.8425C0.202703 11.9224 0.299771 11.9652 0.40826 11.9652H2.66368C2.78359 11.9652 2.88351 11.9253 2.96345 11.8425C3.04339 11.7625 3.08622 11.6655 3.08622 11.557V8.41081L2.83783 8.08246L2.83212 8.07676L2.82642 8.06821L1.81576 6.65216C1.55024 6.28101 1.56166 5.76996 1.84716 5.41306L2.84069 4.16261L3.08622 3.84285V1.01929C3.08622 0.902234 3.04625 0.802309 2.96345 0.722369Z", fill: "#8347AD" }),
2453
+ /* @__PURE__ */ jsx39("path", { d: "M9.60962 11.9625C9.70667 11.9625 9.78947 11.9282 9.85227 11.8568C9.91797 11.7855 9.94937 11.7084 9.94937 11.6227C9.94937 11.5371 9.92652 11.4714 9.88367 11.4286L5.89242 6.0384L9.59247 1.13642C9.63532 1.08217 9.65812 1.01651 9.65812 0.942284C9.65812 0.856634 9.62387 0.776694 9.55252 0.708174C9.50967 0.665349 9.45832 0.633944 9.40407 0.616814C9.37267 0.608249 9.33552 0.602539 9.30127 0.602539H6.73752C6.56337 0.602539 6.42632 0.636799 6.32352 0.708174C6.22077 0.779549 6.14082 0.850924 6.08942 0.928009L3.32868 4.54525L2.32944 5.80145C2.27234 5.8728 2.24094 5.95845 2.24094 6.04695C2.23808 6.13545 2.26378 6.2211 2.31802 6.2982L2.83477 7.0205L3.32868 7.70855L6.29787 11.6199C6.32927 11.6627 6.39492 11.7312 6.49197 11.8226C6.55192 11.8797 6.63472 11.9197 6.73752 11.9425C6.80032 11.9568 6.86882 11.9625 6.94592 11.9625H9.60962Z", fill: "#3CB4E5" })
2431
2454
  ]
2432
2455
  }
2433
2456
  )
@@ -2435,17 +2458,17 @@ var KhipuWordmark = forwardRef36(
2435
2458
  KhipuWordmark.displayName = "KhipuWordmark";
2436
2459
 
2437
2460
  // src/components/domain/KdsSecureFooter/KdsSecureFooter.tsx
2438
- import { Fragment as Fragment3, jsx as jsx39, jsxs as jsxs29 } from "react/jsx-runtime";
2439
- var KdsSecureFooter = forwardRef37(
2440
- ({ variant = "default", showLogo = true, psp, children, className, ...props }, ref) => /* @__PURE__ */ jsxs29("footer", { ref, className: clsx("kds-secure-footer", variant === "inside" && "inside", className), ...props, children: [
2441
- /* @__PURE__ */ jsxs29("svg", { className: "kds-secure-footer-lock", viewBox: "0 0 24 24", "aria-hidden": "true", children: [
2442
- /* @__PURE__ */ jsx39("rect", { x: "4.5", y: "10.5", width: "15", height: "10", rx: "2.25" }),
2443
- /* @__PURE__ */ jsx39("path", { d: "M8 10.5V7a4 4 0 0 1 8 0v3.5" })
2461
+ import { Fragment as Fragment3, jsx as jsx40, jsxs as jsxs30 } from "react/jsx-runtime";
2462
+ var KdsSecureFooter = forwardRef38(
2463
+ ({ variant = "default", showLogo = true, psp, children, className, ...props }, ref) => /* @__PURE__ */ jsxs30("footer", { ref, className: clsx("kds-secure-footer", variant === "inside" && "inside", className), ...props, children: [
2464
+ /* @__PURE__ */ jsxs30("svg", { className: "kds-secure-footer-lock", viewBox: "0 0 24 24", "aria-hidden": "true", children: [
2465
+ /* @__PURE__ */ jsx40("rect", { x: "4.5", y: "10.5", width: "15", height: "10", rx: "2.25" }),
2466
+ /* @__PURE__ */ jsx40("path", { d: "M8 10.5V7a4 4 0 0 1 8 0v3.5" })
2444
2467
  ] }),
2445
- children || /* @__PURE__ */ jsx39("span", { children: "Pago seguro procesado por" }),
2446
- showLogo && /* @__PURE__ */ jsx39(KhipuWordmark, {}),
2447
- psp && /* @__PURE__ */ jsxs29(Fragment3, { children: [
2448
- /* @__PURE__ */ jsx39("span", { className: "kds-secure-footer-sep", "aria-hidden": "true" }),
2468
+ children || /* @__PURE__ */ jsx40("span", { children: "Pago seguro procesado por" }),
2469
+ showLogo && /* @__PURE__ */ jsx40(KhipuWordmark, {}),
2470
+ psp && /* @__PURE__ */ jsxs30(Fragment3, { children: [
2471
+ /* @__PURE__ */ jsx40("span", { className: "kds-secure-footer-sep", "aria-hidden": "true" }),
2449
2472
  psp
2450
2473
  ] })
2451
2474
  ] })
@@ -2453,44 +2476,44 @@ var KdsSecureFooter = forwardRef37(
2453
2476
  KdsSecureFooter.displayName = "KdsSecureFooter";
2454
2477
 
2455
2478
  // src/components/domain/KdsRecapList/KdsRecapList.tsx
2456
- import { forwardRef as forwardRef38 } from "react";
2457
- import { jsx as jsx40, jsxs as jsxs30 } from "react/jsx-runtime";
2458
- var KdsRecapList = forwardRef38(
2459
- ({ items, className, ...props }, ref) => /* @__PURE__ */ jsx40("ul", { ref, className: clsx("kds-recap-list", className), ...props, children: items.map((item, i) => /* @__PURE__ */ jsxs30("li", { children: [
2460
- /* @__PURE__ */ jsx40("span", { className: "kds-key", children: item.label }),
2461
- /* @__PURE__ */ jsx40("span", { className: clsx("kds-value", !item.value && item.placeholder && "placeholder"), children: item.value || item.placeholder || "-" })
2479
+ import { forwardRef as forwardRef39 } from "react";
2480
+ import { jsx as jsx41, jsxs as jsxs31 } from "react/jsx-runtime";
2481
+ var KdsRecapList = forwardRef39(
2482
+ ({ items, className, ...props }, ref) => /* @__PURE__ */ jsx41("ul", { ref, className: clsx("kds-recap-list", className), ...props, children: items.map((item, i) => /* @__PURE__ */ jsxs31("li", { children: [
2483
+ /* @__PURE__ */ jsx41("span", { className: "kds-key", children: item.label }),
2484
+ /* @__PURE__ */ jsx41("span", { className: clsx("kds-value", !item.value && item.placeholder && "placeholder"), children: item.value || item.placeholder || "-" })
2462
2485
  ] }, i)) })
2463
2486
  );
2464
2487
  KdsRecapList.displayName = "KdsRecapList";
2465
2488
 
2466
2489
  // src/components/domain/KdsMontoRow/KdsMontoRow.tsx
2467
- import { forwardRef as forwardRef39 } from "react";
2468
- import { jsx as jsx41, jsxs as jsxs31 } from "react/jsx-runtime";
2469
- var KdsMontoRow = forwardRef39(
2470
- ({ title, value, deadline, className, ...props }, ref) => /* @__PURE__ */ jsxs31("div", { ref, className: clsx("kds-monto-row", className), ...props, children: [
2471
- /* @__PURE__ */ jsxs31("div", { children: [
2472
- /* @__PURE__ */ jsx41("div", { className: "kds-monto-row-title", children: title }),
2473
- deadline && /* @__PURE__ */ jsx41("div", { className: "kds-monto-row-deadline", children: deadline })
2490
+ import { forwardRef as forwardRef40 } from "react";
2491
+ import { jsx as jsx42, jsxs as jsxs32 } from "react/jsx-runtime";
2492
+ var KdsMontoRow = forwardRef40(
2493
+ ({ title, value, deadline, className, ...props }, ref) => /* @__PURE__ */ jsxs32("div", { ref, className: clsx("kds-monto-row", className), ...props, children: [
2494
+ /* @__PURE__ */ jsxs32("div", { children: [
2495
+ /* @__PURE__ */ jsx42("div", { className: "kds-monto-row-title", children: title }),
2496
+ deadline && /* @__PURE__ */ jsx42("div", { className: "kds-monto-row-deadline", children: deadline })
2474
2497
  ] }),
2475
- /* @__PURE__ */ jsx41("div", { className: "kds-monto-row-value", children: value })
2498
+ /* @__PURE__ */ jsx42("div", { className: "kds-monto-row-value", children: value })
2476
2499
  ] })
2477
2500
  );
2478
2501
  KdsMontoRow.displayName = "KdsMontoRow";
2479
2502
 
2480
2503
  // src/components/domain/KdsMerchantTile/KdsMerchantTile.tsx
2481
- import { forwardRef as forwardRef40 } from "react";
2482
- import { jsx as jsx42 } from "react/jsx-runtime";
2483
- var KdsMerchantTile = forwardRef40(
2504
+ import { forwardRef as forwardRef41 } from "react";
2505
+ import { jsx as jsx43 } from "react/jsx-runtime";
2506
+ var KdsMerchantTile = forwardRef41(
2484
2507
  ({ name, logoUrl, initials, compact, className, ...props }, ref) => {
2485
2508
  const displayInitials = (initials ?? name.slice(0, 2)).toUpperCase();
2486
- return /* @__PURE__ */ jsx42(
2509
+ return /* @__PURE__ */ jsx43(
2487
2510
  "div",
2488
2511
  {
2489
2512
  ref,
2490
2513
  className: clsx("kds-merchant-tile", logoUrl && "logo", compact && "compact", className),
2491
2514
  "aria-label": name,
2492
2515
  ...props,
2493
- children: logoUrl ? /* @__PURE__ */ jsx42("img", { src: logoUrl, alt: name }) : displayInitials
2516
+ children: logoUrl ? /* @__PURE__ */ jsx43("img", { src: logoUrl, alt: name }) : displayInitials
2494
2517
  }
2495
2518
  );
2496
2519
  }
@@ -2498,7 +2521,7 @@ var KdsMerchantTile = forwardRef40(
2498
2521
  KdsMerchantTile.displayName = "KdsMerchantTile";
2499
2522
 
2500
2523
  // src/components/domain/KdsInvoiceMerchant/KdsInvoiceMerchant.tsx
2501
- import { forwardRef as forwardRef41, useState as useState9 } from "react";
2524
+ import { forwardRef as forwardRef42, useState as useState9 } from "react";
2502
2525
 
2503
2526
  // src/components/domain/KdsInvoiceMerchant/useLogoBackdrop.ts
2504
2527
  import { useEffect as useEffect4, useState as useState8 } from "react";
@@ -2570,13 +2593,13 @@ function useLogoBackdrop(logoUrl) {
2570
2593
  }
2571
2594
 
2572
2595
  // src/components/domain/KdsInvoiceMerchant/KdsInvoiceMerchant.tsx
2573
- import { jsx as jsx43 } from "react/jsx-runtime";
2574
- var KdsInvoiceMerchant = forwardRef41(
2596
+ import { jsx as jsx44 } from "react/jsx-runtime";
2597
+ var KdsInvoiceMerchant = forwardRef42(
2575
2598
  ({ logoUrl, brandColor, className, style, ...props }, ref) => {
2576
2599
  const [failed, setFailed] = useState9(false);
2577
2600
  const showLogo = !!logoUrl && !failed;
2578
2601
  const backdrop = useLogoBackdrop(showLogo ? logoUrl : void 0);
2579
- return /* @__PURE__ */ jsx43(
2602
+ return /* @__PURE__ */ jsx44(
2580
2603
  "div",
2581
2604
  {
2582
2605
  ref,
@@ -2589,7 +2612,7 @@ var KdsInvoiceMerchant = forwardRef41(
2589
2612
  "aria-hidden": "true",
2590
2613
  style: !showLogo && brandColor ? { background: brandColor, ...style } : style,
2591
2614
  ...props,
2592
- children: showLogo ? /* @__PURE__ */ jsx43("img", { src: logoUrl, alt: "", onError: () => setFailed(true) }) : /* @__PURE__ */ jsx43("i", { className: "material-symbols-outlined", children: "storefront" })
2615
+ children: showLogo ? /* @__PURE__ */ jsx44("img", { src: logoUrl, alt: "", onError: () => setFailed(true) }) : /* @__PURE__ */ jsx44("i", { className: "material-symbols-outlined", children: "storefront" })
2593
2616
  }
2594
2617
  );
2595
2618
  }
@@ -2597,9 +2620,9 @@ var KdsInvoiceMerchant = forwardRef41(
2597
2620
  KdsInvoiceMerchant.displayName = "KdsInvoiceMerchant";
2598
2621
 
2599
2622
  // src/components/domain/KdsPaymentTotal/KdsPaymentTotal.tsx
2600
- import { forwardRef as forwardRef42 } from "react";
2601
- import { jsx as jsx44, jsxs as jsxs32 } from "react/jsx-runtime";
2602
- var KdsPaymentTotal = forwardRef42(
2623
+ import { forwardRef as forwardRef43 } from "react";
2624
+ import { jsx as jsx45, jsxs as jsxs33 } from "react/jsx-runtime";
2625
+ var KdsPaymentTotal = forwardRef43(
2603
2626
  ({
2604
2627
  variant = "default",
2605
2628
  tone = "brand",
@@ -2617,7 +2640,7 @@ var KdsPaymentTotal = forwardRef42(
2617
2640
  const { integer, fraction } = formatAmount(amount, decimals, locale);
2618
2641
  const isEmail = variant === "email";
2619
2642
  const isInfoTone = tone === "info";
2620
- return /* @__PURE__ */ jsxs32(
2643
+ return /* @__PURE__ */ jsxs33(
2621
2644
  "div",
2622
2645
  {
2623
2646
  ref,
@@ -2630,14 +2653,14 @@ var KdsPaymentTotal = forwardRef42(
2630
2653
  ),
2631
2654
  ...props,
2632
2655
  children: [
2633
- !isEmail && title != null && /* @__PURE__ */ jsx44("h5", { className: "kds-payment-total-title", children: title }),
2634
- !isEmail && titleMobile != null && /* @__PURE__ */ jsx44("h5", { className: "kds-payment-total-title-mobile", children: titleMobile }),
2635
- label != null && /* @__PURE__ */ jsx44("h6", { className: "kds-payment-label", children: label }),
2636
- /* @__PURE__ */ jsxs32("h5", { className: "kds-payment-amount", children: [
2656
+ !isEmail && title != null && /* @__PURE__ */ jsx45("h5", { className: "kds-payment-total-title", children: title }),
2657
+ !isEmail && titleMobile != null && /* @__PURE__ */ jsx45("h5", { className: "kds-payment-total-title-mobile", children: titleMobile }),
2658
+ label != null && /* @__PURE__ */ jsx45("h6", { className: "kds-payment-label", children: label }),
2659
+ /* @__PURE__ */ jsxs33("h5", { className: "kds-payment-amount", children: [
2637
2660
  currency,
2638
2661
  " ",
2639
2662
  integer,
2640
- fraction !== null && /* @__PURE__ */ jsx44("sup", { className: "kds-payment-total-decimal-sup", children: fraction })
2663
+ fraction !== null && /* @__PURE__ */ jsx45("sup", { className: "kds-payment-total-decimal-sup", children: fraction })
2641
2664
  ] })
2642
2665
  ]
2643
2666
  }
@@ -2673,10 +2696,10 @@ function formatAmount(amount, decimals, locale) {
2673
2696
  }
2674
2697
 
2675
2698
  // src/components/domain/KdsBillAttachment/KdsBillAttachment.tsx
2676
- import { forwardRef as forwardRef43 } from "react";
2677
- import { jsx as jsx45, jsxs as jsxs33 } from "react/jsx-runtime";
2678
- var KdsBillAttachment = forwardRef43(
2679
- ({ filename, href, icon = "attach_file", className, ...props }, ref) => /* @__PURE__ */ jsxs33(
2699
+ import { forwardRef as forwardRef44 } from "react";
2700
+ import { jsx as jsx46, jsxs as jsxs34 } from "react/jsx-runtime";
2701
+ var KdsBillAttachment = forwardRef44(
2702
+ ({ filename, href, icon = "attach_file", className, ...props }, ref) => /* @__PURE__ */ jsxs34(
2680
2703
  "a",
2681
2704
  {
2682
2705
  ref,
@@ -2686,15 +2709,15 @@ var KdsBillAttachment = forwardRef43(
2686
2709
  className: clsx("kds-bill-attachment", className),
2687
2710
  ...props,
2688
2711
  children: [
2689
- /* @__PURE__ */ jsx45("i", { className: "material-symbols-outlined", children: icon }),
2690
- /* @__PURE__ */ jsx45("span", { children: filename })
2712
+ /* @__PURE__ */ jsx46("i", { className: "material-symbols-outlined", children: icon }),
2713
+ /* @__PURE__ */ jsx46("span", { children: filename })
2691
2714
  ]
2692
2715
  }
2693
2716
  )
2694
2717
  );
2695
2718
  KdsBillAttachment.displayName = "KdsBillAttachment";
2696
- var KdsBillAttachments = forwardRef43(
2697
- ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx45("div", { ref, className: clsx("kds-bill-attachments", className), ...props, children })
2719
+ var KdsBillAttachments = forwardRef44(
2720
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx46("div", { ref, className: clsx("kds-bill-attachments", className), ...props, children })
2698
2721
  );
2699
2722
  KdsBillAttachments.displayName = "KdsBillAttachments";
2700
2723
 
@@ -3007,6 +3030,7 @@ export {
3007
3030
  KdsCopyableTable,
3008
3031
  KdsCountdown,
3009
3032
  KdsDivider,
3033
+ KdsEmptyState,
3010
3034
  KdsExpandPanel,
3011
3035
  KdsFab,
3012
3036
  KdsInvoiceMerchant,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khipu/design-system",
3
- "version": "0.2.0-alpha.136",
3
+ "version": "0.2.0-alpha.137",
4
4
  "description": "Khipu Design System - UI components and design tokens for the Khipu payment platform",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",