@khipu/design-system 0.2.0-alpha.13 → 0.2.0-alpha.131

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/index.js CHANGED
@@ -37,6 +37,8 @@ __export(index_exports, {
37
37
  KdsBankList: () => KdsBankList,
38
38
  KdsBankModal: () => KdsBankModal,
39
39
  KdsBankRow: () => KdsBankRow,
40
+ KdsBillAttachment: () => KdsBillAttachment,
41
+ KdsBillAttachments: () => KdsBillAttachments,
40
42
  KdsBottomSheet: () => KdsBottomSheet,
41
43
  KdsButton: () => KdsButton,
42
44
  KdsCard: () => KdsCard,
@@ -47,24 +49,26 @@ __export(index_exports, {
47
49
  KdsCardSelector: () => KdsCardSelector,
48
50
  KdsCheckbox: () => KdsCheckbox,
49
51
  KdsChip: () => KdsChip,
52
+ KdsCopyButton: () => KdsCopyButton,
50
53
  KdsCopyRow: () => KdsCopyRow,
51
54
  KdsCopyableTable: () => KdsCopyableTable,
52
55
  KdsCountdown: () => KdsCountdown,
53
56
  KdsDivider: () => KdsDivider,
54
57
  KdsExpandPanel: () => KdsExpandPanel,
58
+ KdsFab: () => KdsFab,
59
+ KdsInvoiceMerchant: () => KdsInvoiceMerchant,
55
60
  KdsInvoiceSticky: () => KdsInvoiceSticky,
56
61
  KdsLinearProgress: () => KdsLinearProgress,
57
- KdsLogoHeader: () => KdsLogoHeader,
58
- KdsLogoHeaderCloseButton: () => KdsLogoHeaderCloseButton,
59
- KdsLogoHeaderCode: () => KdsLogoHeaderCode,
60
- KdsLogoHeaderLogo: () => KdsLogoHeaderLogo,
61
- KdsLogoHeaderSeparator: () => KdsLogoHeaderSeparator,
62
- KdsModal: () => KdsModal,
62
+ KdsMerchantTile: () => KdsMerchantTile,
63
+ KdsMontoRow: () => KdsMontoRow,
64
+ KdsPaymentTotal: () => KdsPaymentTotal,
63
65
  KdsQrRow: () => KdsQrRow,
64
66
  KdsRadioGroup: () => KdsRadioGroup,
65
67
  KdsRecapList: () => KdsRecapList,
68
+ KdsSearchField: () => KdsSearchField,
66
69
  KdsSectionNote: () => KdsSectionNote,
67
70
  KdsSecureFooter: () => KdsSecureFooter,
71
+ KdsSecureLoader: () => KdsSecureLoader,
68
72
  KdsSegmentedTabs: () => KdsSegmentedTabs,
69
73
  KdsSelect: () => KdsSelect,
70
74
  KdsSnackbar: () => KdsSnackbar,
@@ -78,6 +82,7 @@ __export(index_exports, {
78
82
  KdsThemeProvider: () => KdsThemeProvider,
79
83
  KdsTooltip: () => KdsTooltip,
80
84
  KdsTypography: () => KdsTypography,
85
+ LIGHT_LOGO_LUMINANCE_THRESHOLD: () => LIGHT_LOGO_LUMINANCE_THRESHOLD,
81
86
  borderRadius: () => borderRadius,
82
87
  breakpoints: () => breakpoints,
83
88
  clsx: () => import_clsx.clsx,
@@ -86,10 +91,15 @@ __export(index_exports, {
86
91
  fontFamilies: () => fontFamilies,
87
92
  fontSizes: () => fontSizes,
88
93
  fontWeights: () => fontWeights,
94
+ formatDate: () => formatDate,
95
+ formatDateTime: () => formatDateTime,
96
+ formatTime: () => formatTime,
89
97
  getContrastColor: () => getContrastColor,
90
98
  letterSpacings: () => letterSpacings,
91
99
  lighten: () => lighten,
92
100
  lineHeights: () => lineHeights,
101
+ measureLogoLuminance: () => measureLogoLuminance,
102
+ pickLogoBackdrop: () => pickLogoBackdrop,
93
103
  semanticSpacing: () => semanticSpacing,
94
104
  shadows: () => shadows,
95
105
  spacing: () => spacing,
@@ -100,6 +110,11 @@ __export(index_exports, {
100
110
  useAutoHide: () => useAutoHide,
101
111
  useCopyToClipboard: () => useCopyToClipboard,
102
112
  useCountdown: () => useCountdown,
113
+ useExpandToggle: () => useExpandToggle,
114
+ useHideOnScroll: () => useHideOnScroll,
115
+ useLogoBackdrop: () => useLogoBackdrop,
116
+ useMediaQuery: () => useMediaQuery,
117
+ useStickyInvoiceCollapse: () => useStickyInvoiceCollapse,
103
118
  useTabsKeyboard: () => useTabsKeyboard,
104
119
  zIndex: () => zIndex
105
120
  });
@@ -141,6 +156,40 @@ function lighten(hex, amount) {
141
156
  b + (255 - b) * amount
142
157
  );
143
158
  }
159
+ function formatDateTime(iso) {
160
+ if (!iso) {
161
+ return "";
162
+ }
163
+ const date = new Date(iso);
164
+ if (Number.isNaN(date.getTime())) {
165
+ return "";
166
+ }
167
+ const pad = (n) => n.toString().padStart(2, "0");
168
+ const datePart = `${pad(date.getDate())}-${pad(date.getMonth() + 1)}-${date.getFullYear()}`;
169
+ const timePart = `${pad(date.getHours())}:${pad(date.getMinutes())}`;
170
+ return `${datePart} ${timePart}`;
171
+ }
172
+ function formatDate(iso) {
173
+ if (!iso) {
174
+ return "";
175
+ }
176
+ const date = new Date(iso);
177
+ if (Number.isNaN(date.getTime())) {
178
+ return "";
179
+ }
180
+ return `${date.getDate()}-${date.getMonth() + 1}-${date.getFullYear()}`;
181
+ }
182
+ function formatTime(iso) {
183
+ if (!iso) {
184
+ return "";
185
+ }
186
+ const date = new Date(iso);
187
+ if (Number.isNaN(date.getTime())) {
188
+ return "";
189
+ }
190
+ const pad = (n) => n.toString().padStart(2, "0");
191
+ return `${pad(date.getHours())}:${pad(date.getMinutes())}`;
192
+ }
144
193
 
145
194
  // src/theme/KdsThemeProvider.tsx
146
195
  var import_jsx_runtime = require("react/jsx-runtime");
@@ -454,6 +503,8 @@ var semanticColors = {
454
503
  // From Figma: warning/light
455
504
  dark: "#E65100",
456
505
  // From Figma: warning/dark
506
+ warm: "#8A6D1A",
507
+ // Warm/olive variant for header icons (LigoPay handoff v2)
457
508
  container: "#FFFBEB",
458
509
  // Light amber background for chips/badges
459
510
  contrastText: "#FFFFFF"
@@ -472,6 +523,8 @@ var semanticColors = {
472
523
  main: "#0288D1",
473
524
  light: "#03A9F4",
474
525
  dark: "#01579B",
526
+ blue: "#5A5FE0",
527
+ // Khipu-blue / LigoPay informational blue (distinct from cyan main)
475
528
  container: "#EFF6FF",
476
529
  // Light blue background for chips/badges
477
530
  contrastText: "#FFFFFF"
@@ -498,6 +551,8 @@ var fontWeights = {
498
551
  bold: 700
499
552
  };
500
553
  var fontSizes = {
554
+ "2xs": "0.625rem",
555
+ // 10px — tiny captions (version footer, fine print)
501
556
  xs: "0.75rem",
502
557
  // 12px
503
558
  sm: "0.875rem",
@@ -514,8 +569,10 @@ var fontSizes = {
514
569
  // 24px
515
570
  "3xl": "1.875rem",
516
571
  // 30px
517
- "4xl": "2.25rem"
572
+ "4xl": "2.25rem",
518
573
  // 36px
574
+ decimalSup: "0.5em"
575
+ // Relative size for decimal superscript in amount displays
519
576
  };
520
577
  var lineHeights = {
521
578
  tight: 1.2,
@@ -918,6 +975,8 @@ var responsiveTypography = {
918
975
  }
919
976
  };
920
977
  var responsiveBaseFontSizes = {
978
+ "2xs": { mobile: "0.5625rem", tablet: "0.625rem", desktop: "0.625rem" },
979
+ // 9px → 10px
921
980
  xs: { mobile: "0.6875rem", tablet: "0.75rem", desktop: "0.75rem" },
922
981
  // 11px → 12px
923
982
  sm: { mobile: "0.8125rem", tablet: "0.875rem", desktop: "0.875rem" },
@@ -1147,7 +1206,7 @@ var KdsButton = (0, import_react.forwardRef)(
1147
1206
  children: [
1148
1207
  !loading && startIcon && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "kds-icon", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("i", { className: "material-symbols-outlined", children: startIcon }) }),
1149
1208
  loading ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
1150
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "loader small" }),
1209
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("progress", { className: "circle indeterminate small" }),
1151
1210
  /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { children })
1152
1211
  ] }) : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { children }),
1153
1212
  !loading && endIcon && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "kds-icon", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("i", { className: "material-symbols-outlined", children: endIcon }) })
@@ -1166,14 +1225,31 @@ var KdsTextField = (0, import_react2.forwardRef)(
1166
1225
  helperText,
1167
1226
  error,
1168
1227
  fullWidth = true,
1228
+ narrow = false,
1169
1229
  readOnly,
1170
1230
  startIcon,
1171
1231
  endIcon,
1232
+ required,
1172
1233
  className,
1173
1234
  id,
1235
+ type,
1236
+ revealable,
1237
+ revealLabel = "Mostrar u ocultar contrase\xF1a",
1238
+ requiredMark = true,
1174
1239
  ...props
1175
1240
  }, ref) => {
1241
+ const [revealed, setRevealed] = (0, import_react2.useState)(false);
1176
1242
  const fieldId = id || `kds-field-${label.toLowerCase().replace(/\s+/g, "-")}`;
1243
+ const isRevealable = !!revealable && !readOnly && !props.disabled;
1244
+ const inputType = isRevealable ? revealed ? "text" : "password" : type;
1245
+ const hasSuffix = !!endIcon || readOnly || isRevealable;
1246
+ const toggleReveal = () => setRevealed((v) => !v);
1247
+ const onToggleKeyDown = (e) => {
1248
+ if (e.key === "Enter" || e.key === " ") {
1249
+ e.preventDefault();
1250
+ toggleReveal();
1251
+ }
1252
+ };
1177
1253
  return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
1178
1254
  "div",
1179
1255
  {
@@ -1181,9 +1257,12 @@ var KdsTextField = (0, import_react2.forwardRef)(
1181
1257
  "field",
1182
1258
  "label",
1183
1259
  "border",
1260
+ startIcon && "prefix",
1261
+ hasSuffix && "suffix",
1184
1262
  error && "invalid",
1185
1263
  readOnly && "locked",
1186
- fullWidth && "kds-w-full",
1264
+ fullWidth && !narrow && "kds-w-full",
1265
+ narrow && "kds-field--narrow",
1187
1266
  className
1188
1267
  ),
1189
1268
  children: [
@@ -1193,14 +1272,32 @@ var KdsTextField = (0, import_react2.forwardRef)(
1193
1272
  {
1194
1273
  ref,
1195
1274
  id: fieldId,
1196
- placeholder: " ",
1275
+ type: inputType,
1197
1276
  readOnly,
1198
- ...props
1277
+ required,
1278
+ ...props,
1279
+ placeholder: " "
1199
1280
  }
1200
1281
  ),
1201
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("label", { htmlFor: fieldId, children: label }),
1282
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("label", { htmlFor: fieldId, children: [
1283
+ label,
1284
+ required && requiredMark && " *"
1285
+ ] }),
1202
1286
  readOnly && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("i", { className: "material-symbols-outlined", children: "lock" }),
1203
- endIcon && !readOnly && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("i", { className: "material-symbols-outlined", children: endIcon }),
1287
+ isRevealable && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
1288
+ "a",
1289
+ {
1290
+ className: "kds-field-reveal",
1291
+ role: "button",
1292
+ tabIndex: 0,
1293
+ "aria-label": revealLabel,
1294
+ "aria-pressed": revealed,
1295
+ onClick: toggleReveal,
1296
+ onKeyDown: onToggleKeyDown,
1297
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("i", { className: "material-symbols-outlined", "aria-hidden": "true", children: revealed ? "visibility" : "visibility_off" })
1298
+ }
1299
+ ),
1300
+ endIcon && !readOnly && !isRevealable && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("i", { className: "material-symbols-outlined", children: endIcon }),
1204
1301
  helperText && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "helper", children: helperText })
1205
1302
  ]
1206
1303
  }
@@ -1209,76 +1306,41 @@ var KdsTextField = (0, import_react2.forwardRef)(
1209
1306
  );
1210
1307
  KdsTextField.displayName = "KdsTextField";
1211
1308
 
1212
- // src/components/core/KdsCheckbox/KdsCheckbox.tsx
1309
+ // src/components/core/KdsSearchField/KdsSearchField.tsx
1213
1310
  var import_react3 = require("react");
1214
1311
  var import_jsx_runtime4 = require("react/jsx-runtime");
1215
- var KdsCheckbox = (0, import_react3.forwardRef)(
1216
- ({ label, className, id, ...props }, ref) => {
1217
- const fieldId = id || `kds-cb-${label?.toLowerCase().replace(/\s+/g, "-") || "check"}`;
1218
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("label", { className: (0, import_clsx.clsx)("field", className), htmlFor: fieldId, children: [
1219
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("input", { ref, type: "checkbox", id: fieldId, ...props }),
1220
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { children: label })
1312
+ var KdsSearchField = (0, import_react3.forwardRef)(
1313
+ ({ className, withIcon = false, ...props }, ref) => {
1314
+ const input = /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
1315
+ "input",
1316
+ {
1317
+ ref,
1318
+ type: "search",
1319
+ className: (0, import_clsx.clsx)("kds-search-field", className),
1320
+ ...props
1321
+ }
1322
+ );
1323
+ if (!withIcon) {
1324
+ return input;
1325
+ }
1326
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "kds-search-field-wrapper", children: [
1327
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("i", { className: "material-symbols-outlined kds-search-field-icon", "aria-hidden": "true", children: "search" }),
1328
+ input
1221
1329
  ] });
1222
1330
  }
1223
1331
  );
1224
- KdsCheckbox.displayName = "KdsCheckbox";
1332
+ KdsSearchField.displayName = "KdsSearchField";
1225
1333
 
1226
- // src/components/core/KdsModal/KdsModal.tsx
1334
+ // src/components/core/KdsCheckbox/KdsCheckbox.tsx
1227
1335
  var import_react4 = require("react");
1228
- var Dialog = __toESM(require("@radix-ui/react-dialog"));
1229
1336
  var import_jsx_runtime5 = require("react/jsx-runtime");
1230
- var KdsModal = (0, import_react4.forwardRef)(
1231
- ({
1232
- open,
1233
- onClose,
1234
- title,
1235
- description,
1236
- footer,
1237
- children,
1238
- size = "md",
1239
- showCloseButton = true,
1240
- className
1241
- }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1242
- Dialog.Root,
1243
- {
1244
- open,
1245
- onOpenChange: (o) => {
1246
- if (!o) onClose();
1247
- },
1248
- children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(Dialog.Portal, { children: [
1249
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Dialog.Overlay, { className: "kds-bottom-sheet-scrim" }),
1250
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
1251
- Dialog.Content,
1252
- {
1253
- ref,
1254
- className: (0, import_clsx.clsx)(
1255
- "kds-bottom-sheet",
1256
- `kds-bottom-sheet-${size}`,
1257
- className
1258
- ),
1259
- children: [
1260
- title && /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "kds-bottom-sheet-header", children: [
1261
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Dialog.Title, { className: "kds-bottom-sheet-title", children: title }),
1262
- showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Dialog.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1263
- "button",
1264
- {
1265
- className: "kds-bottom-sheet-close",
1266
- "aria-label": "Cerrar",
1267
- children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("i", { className: "material-symbols-outlined", children: "close" })
1268
- }
1269
- ) })
1270
- ] }),
1271
- description && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Dialog.Description, { className: "kds-bottom-sheet-description", children: description }),
1272
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "kds-bottom-sheet-body", children }),
1273
- footer && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "kds-bottom-sheet-actions", children: footer })
1274
- ]
1275
- }
1276
- )
1277
- ] })
1278
- }
1279
- )
1337
+ var KdsCheckbox = (0, import_react4.forwardRef)(
1338
+ ({ label, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("label", { className: (0, import_clsx.clsx)("checkbox", className), children: [
1339
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("input", { ref, type: "checkbox", ...props }),
1340
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { children: label })
1341
+ ] })
1280
1342
  );
1281
- KdsModal.displayName = "KdsModal";
1343
+ KdsCheckbox.displayName = "KdsCheckbox";
1282
1344
 
1283
1345
  // src/components/core/KdsCard/KdsCard.tsx
1284
1346
  var import_react5 = require("react");
@@ -1315,50 +1377,161 @@ KdsCardFooter.displayName = "KdsCardFooter";
1315
1377
  // src/components/core/KdsSpinner/KdsSpinner.tsx
1316
1378
  var import_react6 = require("react");
1317
1379
  var import_jsx_runtime7 = require("react/jsx-runtime");
1380
+ var SIZE_CLASS = {
1381
+ small: "small",
1382
+ medium: null,
1383
+ large: "large"
1384
+ };
1318
1385
  var KdsSpinner = (0, import_react6.forwardRef)(
1319
- ({ size = "medium", label, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-flex kds-flex-col kds-items-center kds-gap-2", className), role: "status", ...props, children: [
1320
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: (0, import_clsx.clsx)("loader", size) }),
1321
- label && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "kds-text-body-small kds-text-muted", children: label }),
1322
- !label && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "kds-hidden", children: "Cargando" })
1323
- ] })
1386
+ ({ size = "medium", label, className, ...props }, ref) => {
1387
+ const sizeClass = SIZE_CLASS[size];
1388
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1389
+ "div",
1390
+ {
1391
+ ref,
1392
+ className: (0, import_clsx.clsx)("kds-flex kds-flex-col kds-items-center kds-gap-2", className),
1393
+ role: "status",
1394
+ ...props,
1395
+ children: [
1396
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("progress", { className: (0, import_clsx.clsx)("circle indeterminate", sizeClass) }),
1397
+ label && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "kds-text-body-small kds-text-muted", children: label }),
1398
+ !label && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "kds-hidden", children: "Cargando" })
1399
+ ]
1400
+ }
1401
+ );
1402
+ }
1324
1403
  );
1325
1404
  KdsSpinner.displayName = "KdsSpinner";
1326
1405
 
1327
- // src/components/core/KdsLinearProgress/KdsLinearProgress.tsx
1406
+ // src/components/core/KdsSecureLoader/KdsSecureLoader.tsx
1328
1407
  var import_react7 = require("react");
1329
1408
  var import_jsx_runtime8 = require("react/jsx-runtime");
1330
- var KdsLinearProgress = (0, import_react7.forwardRef)(
1331
- ({ value, max = 100, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("progress", { ref, className: (0, import_clsx.clsx)("kds-progress", className), value, max, ...props })
1409
+ var KdsSecureLoader = (0, import_react7.forwardRef)(
1410
+ ({ title, message, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-secure-loader", className), role: "status", "aria-busy": "true", ...props, children: [
1411
+ (title || message) && /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "kds-secure-loader-text", children: [
1412
+ title && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { className: "kds-secure-loader-title", children: title }),
1413
+ message && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { className: "kds-secure-loader-message", children: message })
1414
+ ] }),
1415
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "kds-secure-loader-spinner", children: [
1416
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1417
+ "svg",
1418
+ {
1419
+ className: "kds-secure-loader-ring",
1420
+ viewBox: "22 22 44 44",
1421
+ width: "100",
1422
+ height: "100",
1423
+ fill: "none",
1424
+ "aria-hidden": "true",
1425
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("circle", { cx: "44", cy: "44", r: "20.2", fill: "none" })
1426
+ }
1427
+ ),
1428
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("i", { className: "material-symbols-outlined kds-secure-loader-lock", "aria-hidden": "true", children: "lock" })
1429
+ ] })
1430
+ ] })
1332
1431
  );
1333
- KdsLinearProgress.displayName = "KdsLinearProgress";
1432
+ KdsSecureLoader.displayName = "KdsSecureLoader";
1334
1433
 
1335
- // src/components/core/KdsAlert/KdsAlert.tsx
1434
+ // src/components/core/KdsCopyButton/KdsCopyButton.tsx
1435
+ var import_react9 = require("react");
1436
+
1437
+ // src/components/core/hooks/useCopyToClipboard.ts
1336
1438
  var import_react8 = require("react");
1439
+ function useCopyToClipboard(resetMs = 1200) {
1440
+ const [copied, setCopied] = (0, import_react8.useState)(false);
1441
+ const copy = (0, import_react8.useCallback)(
1442
+ async (text) => {
1443
+ try {
1444
+ await navigator.clipboard.writeText(text);
1445
+ setCopied(true);
1446
+ setTimeout(() => setCopied(false), resetMs);
1447
+ } catch {
1448
+ }
1449
+ },
1450
+ [resetMs]
1451
+ );
1452
+ return { copied, copy };
1453
+ }
1454
+
1455
+ // src/components/core/KdsCopyButton/KdsCopyButton.tsx
1337
1456
  var import_jsx_runtime9 = require("react/jsx-runtime");
1338
- var KdsAlert = (0, import_react8.forwardRef)(
1339
- ({ severity, title, icon, inline, onClose, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
1340
- "div",
1341
- {
1342
- ref,
1343
- role: "alert",
1344
- className: (0, import_clsx.clsx)("kds-alert", `kds-${severity}`, inline && "kds-alert-inline", className),
1345
- ...props,
1346
- children: [
1347
- icon && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "kds-alert-icon", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
1348
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "kds-alert-content", children: [
1349
- title && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { className: "kds-alert-title", children: title }),
1350
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { className: "kds-alert-description", children })
1351
- ] }),
1352
- onClose && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("button", { className: "kds-btn kds-btn-text kds-btn-sm", onClick: onClose, "aria-label": "Cerrar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("i", { className: "material-symbols-outlined", children: "close" }) })
1353
- ]
1354
- }
1355
- )
1457
+ var KdsCopyButton = (0, import_react9.forwardRef)(
1458
+ ({ value, copiedText = "Copiado", className, ...props }, ref) => {
1459
+ const { copied, copy } = useCopyToClipboard();
1460
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
1461
+ "button",
1462
+ {
1463
+ ref,
1464
+ type: "button",
1465
+ className: (0, import_clsx.clsx)("kds-copy-button", copied && "copied", className),
1466
+ onClick: () => copy(value),
1467
+ "aria-label": `Copiar: ${value}`,
1468
+ ...props,
1469
+ children: [
1470
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "kds-copy-button-label", children: [
1471
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "kds-copy-button-value", "aria-hidden": copied || void 0, children: value }),
1472
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "kds-copy-button-copied", "aria-hidden": !copied || void 0, children: copiedText })
1473
+ ] }),
1474
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("i", { className: "material-symbols-outlined", "aria-hidden": "true", children: copied ? "check" : "content_copy" })
1475
+ ]
1476
+ }
1477
+ );
1478
+ }
1479
+ );
1480
+ KdsCopyButton.displayName = "KdsCopyButton";
1481
+
1482
+ // src/components/core/KdsLinearProgress/KdsLinearProgress.tsx
1483
+ var import_react10 = require("react");
1484
+ var import_jsx_runtime10 = require("react/jsx-runtime");
1485
+ var KdsLinearProgress = (0, import_react10.forwardRef)(
1486
+ ({ value, max = 100, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("progress", { ref, className: (0, import_clsx.clsx)("kds-progress", className), value, max, ...props })
1487
+ );
1488
+ KdsLinearProgress.displayName = "KdsLinearProgress";
1489
+
1490
+ // src/components/core/KdsAlert/KdsAlert.tsx
1491
+ var import_react11 = require("react");
1492
+ var import_jsx_runtime11 = require("react/jsx-runtime");
1493
+ var DEFAULT_ICONS = {
1494
+ success: "check_circle",
1495
+ info: "info",
1496
+ warning: "warning",
1497
+ error: "error"
1498
+ };
1499
+ var KdsAlert = (0, import_react11.forwardRef)(
1500
+ ({ severity, title, icon, inline, onClose, children, className, ...props }, ref) => {
1501
+ const resolvedIcon = icon === false ? null : typeof icon === "string" ? icon : DEFAULT_ICONS[severity];
1502
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
1503
+ "div",
1504
+ {
1505
+ ref,
1506
+ role: "alert",
1507
+ className: (0, import_clsx.clsx)("kds-alert", `kds-${severity}`, inline && "kds-alert-inline", className),
1508
+ ...props,
1509
+ children: [
1510
+ resolvedIcon && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "kds-alert-icon", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("i", { className: "material-symbols-outlined", children: resolvedIcon }) }),
1511
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "kds-alert-content", children: [
1512
+ title && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "kds-alert-title", children: title }),
1513
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "kds-alert-description", children })
1514
+ ] }),
1515
+ onClose && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1516
+ "button",
1517
+ {
1518
+ type: "button",
1519
+ className: "kds-alert-close",
1520
+ onClick: onClose,
1521
+ "aria-label": "Cerrar",
1522
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("i", { className: "material-symbols-outlined", children: "close" })
1523
+ }
1524
+ )
1525
+ ]
1526
+ }
1527
+ );
1528
+ }
1356
1529
  );
1357
1530
  KdsAlert.displayName = "KdsAlert";
1358
1531
 
1359
1532
  // src/components/core/KdsTypography/KdsTypography.tsx
1360
- var import_react9 = require("react");
1361
- var import_jsx_runtime10 = require("react/jsx-runtime");
1533
+ var import_react12 = require("react");
1534
+ var import_jsx_runtime12 = require("react/jsx-runtime");
1362
1535
  var variantTag = {
1363
1536
  display1: "h1",
1364
1537
  display2: "h2",
@@ -1370,13 +1543,18 @@ var variantTag = {
1370
1543
  "body-small": "p",
1371
1544
  label: "span",
1372
1545
  "label-small": "span",
1546
+ "kv-label": "span",
1547
+ value: "span",
1548
+ code: "span",
1549
+ caption: "span",
1373
1550
  muted: "p",
1374
- link: "span"
1551
+ link: "span",
1552
+ strong: "span"
1375
1553
  };
1376
- var KdsTypography = (0, import_react9.forwardRef)(
1554
+ var KdsTypography = (0, import_react12.forwardRef)(
1377
1555
  ({ variant = "body", color, as, children, className, ...props }, ref) => {
1378
1556
  const Tag = as || variantTag[variant];
1379
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1557
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1380
1558
  Tag,
1381
1559
  {
1382
1560
  ref,
@@ -1394,12 +1572,12 @@ var KdsTypography = (0, import_react9.forwardRef)(
1394
1572
  KdsTypography.displayName = "KdsTypography";
1395
1573
 
1396
1574
  // src/components/core/KdsTabs/KdsTabs.tsx
1397
- var import_react11 = __toESM(require("react"));
1575
+ var import_react14 = __toESM(require("react"));
1398
1576
 
1399
1577
  // src/components/core/hooks/useTabsKeyboard.ts
1400
- var import_react10 = require("react");
1578
+ var import_react13 = require("react");
1401
1579
  function useTabsKeyboard(tabCount, activeIndex, onChange) {
1402
- const onKeyDown = (0, import_react10.useCallback)(
1580
+ const onKeyDown = (0, import_react13.useCallback)(
1403
1581
  (e) => {
1404
1582
  let next = activeIndex;
1405
1583
  if (e.key === "ArrowRight") next = (activeIndex + 1) % tabCount;
@@ -1419,31 +1597,31 @@ function useTabsKeyboard(tabCount, activeIndex, onChange) {
1419
1597
  }
1420
1598
 
1421
1599
  // src/components/core/KdsTabs/KdsTabs.tsx
1422
- var import_jsx_runtime11 = require("react/jsx-runtime");
1423
- var KdsTabs = (0, import_react11.forwardRef)(
1424
- ({ activeIndex, onChange, variant = "standard", children, className, style, ...props }, ref) => {
1425
- const tabCount = import_react11.Children.count(children);
1600
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1601
+ var KdsTabs = (0, import_react14.forwardRef)(
1602
+ ({ activeIndex, onChange, children, className, style, ...props }, ref) => {
1603
+ const tabCount = import_react14.Children.count(children);
1426
1604
  const { onKeyDown } = useTabsKeyboard(tabCount, activeIndex, onChange);
1427
- const mergedStyle = (0, import_react11.useMemo)(() => {
1428
- if (variant !== "segmented") return style;
1429
- return {
1605
+ const mergedStyle = (0, import_react14.useMemo)(
1606
+ () => ({
1430
1607
  ...style,
1431
1608
  "--_tab-count": tabCount,
1432
1609
  "--_active-idx": activeIndex
1433
- };
1434
- }, [variant, tabCount, activeIndex, style]);
1435
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1610
+ }),
1611
+ [tabCount, activeIndex, style]
1612
+ );
1613
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1436
1614
  "div",
1437
1615
  {
1438
1616
  ref,
1439
1617
  role: "tablist",
1440
- className: (0, import_clsx.clsx)(variant === "segmented" ? "kds-segmented-tabs" : "kds-tabs", className),
1618
+ className: (0, import_clsx.clsx)("kds-segmented-tabs", className),
1441
1619
  style: mergedStyle,
1442
1620
  onKeyDown,
1443
1621
  ...props,
1444
- children: import_react11.Children.map(children, (child, i) => {
1445
- if (!import_react11.default.isValidElement(child)) return child;
1446
- return import_react11.default.cloneElement(child, {
1622
+ children: import_react14.Children.map(children, (child, i) => {
1623
+ if (!import_react14.default.isValidElement(child)) return child;
1624
+ return import_react14.default.cloneElement(child, {
1447
1625
  _active: i === activeIndex,
1448
1626
  _onClick: () => onChange(i)
1449
1627
  });
@@ -1453,11 +1631,12 @@ var KdsTabs = (0, import_react11.forwardRef)(
1453
1631
  }
1454
1632
  );
1455
1633
  KdsTabs.displayName = "KdsTabs";
1456
- var KdsTab = (0, import_react11.forwardRef)(
1457
- ({ _active, _onClick, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1634
+ var KdsTab = (0, import_react14.forwardRef)(
1635
+ ({ _active, _onClick, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1458
1636
  "button",
1459
1637
  {
1460
1638
  ref,
1639
+ type: "button",
1461
1640
  role: "tab",
1462
1641
  "aria-selected": _active,
1463
1642
  tabIndex: _active ? 0 : -1,
@@ -1469,8 +1648,8 @@ var KdsTab = (0, import_react11.forwardRef)(
1469
1648
  )
1470
1649
  );
1471
1650
  KdsTab.displayName = "KdsTab";
1472
- var KdsTabPanel = (0, import_react11.forwardRef)(
1473
- ({ active, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1651
+ var KdsTabPanel = (0, import_react14.forwardRef)(
1652
+ ({ active, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1474
1653
  "div",
1475
1654
  {
1476
1655
  ref,
@@ -1484,220 +1663,197 @@ var KdsTabPanel = (0, import_react11.forwardRef)(
1484
1663
  );
1485
1664
  KdsTabPanel.displayName = "KdsTabPanel";
1486
1665
 
1487
- // src/components/core/KdsLogoHeader/KdsLogoHeader.tsx
1488
- var import_react12 = require("react");
1489
-
1490
- // src/assets/images/khipu-logo-color.svg
1491
- var khipu_logo_color_default = "./khipu-logo-color-TV75AKOV.svg";
1492
-
1493
- // src/components/core/KdsLogoHeader/KdsLogoHeader.tsx
1494
- var import_jsx_runtime12 = require("react/jsx-runtime");
1495
- var KhipuLogo = () => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1496
- "img",
1497
- {
1498
- src: khipu_logo_color_default,
1499
- alt: "Khipu",
1500
- className: "kds-logo-header-logo-img"
1501
- }
1666
+ // src/components/core/KdsRadioGroup/KdsRadioGroup.tsx
1667
+ var import_react15 = require("react");
1668
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1669
+ var KdsRadioGroup = (0, import_react15.forwardRef)(
1670
+ ({ label, name, options, value, onChange, size, variant, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1671
+ "fieldset",
1672
+ {
1673
+ ref,
1674
+ className: (0, import_clsx.clsx)("kds-radio-group", variant === "card" && "kds-radio-group--card", className),
1675
+ ...props,
1676
+ children: [
1677
+ label && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("legend", { children: label }),
1678
+ options.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className: (0, import_clsx.clsx)("radio", size), children: [
1679
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1680
+ "input",
1681
+ {
1682
+ type: "radio",
1683
+ name,
1684
+ value: opt.value,
1685
+ checked: value === opt.value,
1686
+ disabled: opt.disabled,
1687
+ onChange: () => onChange?.(opt.value)
1688
+ }
1689
+ ),
1690
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { children: opt.label })
1691
+ ] }, opt.value))
1692
+ ]
1693
+ }
1694
+ )
1502
1695
  );
1503
- var KdsLogoHeaderLogo = (0, import_react12.forwardRef)(
1504
- ({ children, className, ...props }, ref) => {
1505
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1696
+ KdsRadioGroup.displayName = "KdsRadioGroup";
1697
+
1698
+ // src/components/core/KdsSelect/KdsSelect.tsx
1699
+ var import_react16 = require("react");
1700
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1701
+ var KdsSelect = (0, import_react16.forwardRef)(
1702
+ ({
1703
+ label,
1704
+ options,
1705
+ placeholder,
1706
+ helperText,
1707
+ error,
1708
+ prefixIcon,
1709
+ fullWidth = true,
1710
+ disabled,
1711
+ required,
1712
+ className,
1713
+ id,
1714
+ ...props
1715
+ }, ref) => {
1716
+ const fieldId = id || `kds-select-${label.toLowerCase().replace(/\s+/g, "-")}`;
1717
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1506
1718
  "div",
1507
1719
  {
1508
- ref,
1509
- className: (0, import_clsx.clsx)("kds-logo-header-logo", className),
1510
- ...props,
1511
- children: children || /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(KhipuLogo, {})
1512
- }
1513
- );
1514
- }
1515
- );
1516
- KdsLogoHeaderLogo.displayName = "KdsLogoHeaderLogo";
1517
- var KdsLogoHeaderSeparator = (0, import_react12.forwardRef)(
1518
- ({ children = "|", className, ...props }, ref) => {
1519
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1520
- "span",
1521
- {
1522
- ref,
1523
- className: (0, import_clsx.clsx)("kds-logo-header-separator", className),
1524
- ...props,
1525
- children
1526
- }
1527
- );
1528
- }
1529
- );
1530
- KdsLogoHeaderSeparator.displayName = "KdsLogoHeaderSeparator";
1531
- var KdsLogoHeaderCode = (0, import_react12.forwardRef)(
1532
- ({ children, className, ...props }, ref) => {
1533
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1534
- "span",
1535
- {
1536
- ref,
1537
- className: (0, import_clsx.clsx)("kds-logo-header-code", className),
1538
- ...props,
1539
- children
1720
+ className: (0, import_clsx.clsx)(
1721
+ "field",
1722
+ "label",
1723
+ "border",
1724
+ prefixIcon && "prefix",
1725
+ error && "invalid",
1726
+ fullWidth && "kds-w-full",
1727
+ className
1728
+ ),
1729
+ children: [
1730
+ prefixIcon && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("i", { className: "material-symbols-outlined", children: prefixIcon }),
1731
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1732
+ "select",
1733
+ {
1734
+ ref,
1735
+ id: fieldId,
1736
+ disabled,
1737
+ required,
1738
+ ...props,
1739
+ children: [
1740
+ placeholder !== void 0 && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { value: "", children: placeholder }),
1741
+ options.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { value: opt.value, disabled: opt.disabled, children: opt.label }, opt.value))
1742
+ ]
1743
+ }
1744
+ ),
1745
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { htmlFor: fieldId, children: [
1746
+ label,
1747
+ required && " *"
1748
+ ] }),
1749
+ helperText && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "helper", children: helperText })
1750
+ ]
1540
1751
  }
1541
1752
  );
1542
1753
  }
1543
1754
  );
1544
- KdsLogoHeaderCode.displayName = "KdsLogoHeaderCode";
1545
- var KdsLogoHeaderCloseButton = (0, import_react12.forwardRef)(
1546
- ({ onClose, className, ...props }, ref) => {
1547
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "kds-logo-header-close-wrapper", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1755
+ KdsSelect.displayName = "KdsSelect";
1756
+
1757
+ // src/components/core/KdsChip/KdsChip.tsx
1758
+ var import_react17 = require("react");
1759
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1760
+ var KdsChip = (0, import_react17.forwardRef)(
1761
+ ({ color, icon, onDelete, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { ref, className: (0, import_clsx.clsx)("kds-badge", color, className), ...props, children: [
1762
+ icon && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("i", { className: "material-symbols-outlined", children: icon }),
1763
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { children }),
1764
+ onDelete && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1548
1765
  "button",
1549
1766
  {
1550
- ref,
1551
- onClick: onClose,
1552
- className: (0, import_clsx.clsx)("kds-btn kds-btn-icon", className),
1553
- "aria-label": "close",
1554
- ...props,
1555
- children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("i", { className: "material-symbols-outlined", children: "close" })
1767
+ type: "button",
1768
+ className: "kds-badge-close",
1769
+ onClick: (e) => {
1770
+ e.stopPropagation();
1771
+ onDelete();
1772
+ },
1773
+ "aria-label": "Eliminar",
1774
+ children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("i", { className: "material-symbols-outlined", children: "close" })
1556
1775
  }
1557
- ) });
1558
- }
1776
+ )
1777
+ ] })
1559
1778
  );
1560
- KdsLogoHeaderCloseButton.displayName = "KdsLogoHeaderCloseButton";
1561
- var KdsLogoHeader = (0, import_react12.forwardRef)(
1562
- ({ children, className, ...props }, ref) => {
1563
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1779
+ KdsChip.displayName = "KdsChip";
1780
+
1781
+ // src/components/core/KdsSnackbar/KdsSnackbar.tsx
1782
+ var import_react19 = require("react");
1783
+
1784
+ // src/components/core/hooks/useAutoHide.ts
1785
+ var import_react18 = require("react");
1786
+ function useAutoHide(durationMs, onHide) {
1787
+ const [visible, setVisible] = (0, import_react18.useState)(true);
1788
+ const onHideRef = (0, import_react18.useRef)(onHide);
1789
+ onHideRef.current = onHide;
1790
+ (0, import_react18.useEffect)(() => {
1791
+ if (durationMs <= 0) return;
1792
+ const timer = setTimeout(() => {
1793
+ setVisible(false);
1794
+ onHideRef.current?.();
1795
+ }, durationMs);
1796
+ return () => clearTimeout(timer);
1797
+ }, [durationMs]);
1798
+ return { visible, setVisible };
1799
+ }
1800
+
1801
+ // src/components/core/KdsSnackbar/KdsSnackbar.tsx
1802
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1803
+ var DEFAULT_ICONS2 = {
1804
+ info: "info",
1805
+ success: "check_circle",
1806
+ error: "error"
1807
+ };
1808
+ var KdsSnackbar = (0, import_react19.forwardRef)(
1809
+ ({
1810
+ message,
1811
+ type = "info",
1812
+ duration = 5e3,
1813
+ onClose,
1814
+ open = true,
1815
+ icon,
1816
+ className,
1817
+ style,
1818
+ ...props
1819
+ }, ref) => {
1820
+ const autoDismiss = duration > 0;
1821
+ const { visible } = useAutoHide(autoDismiss ? duration : 0, onClose);
1822
+ if (!open || !visible) return null;
1823
+ const resolvedIcon = icon === false ? null : icon ?? DEFAULT_ICONS2[type];
1824
+ const mergedStyle = autoDismiss ? { ...style, ["--kds-snackbar-duration"]: `${duration}ms` } : style ?? {};
1825
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1564
1826
  "div",
1565
1827
  {
1566
1828
  ref,
1567
- className: (0, import_clsx.clsx)("kds-brand-row", className),
1829
+ role: "status",
1830
+ className: (0, import_clsx.clsx)("snackbar", "active", type, className),
1831
+ "data-auto-dismiss": autoDismiss ? "true" : void 0,
1832
+ style: mergedStyle,
1568
1833
  ...props,
1569
- children
1834
+ children: [
1835
+ resolvedIcon && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("i", { className: "material-symbols-outlined", children: resolvedIcon }),
1836
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "max", children: message }),
1837
+ onClose && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1838
+ "button",
1839
+ {
1840
+ type: "button",
1841
+ className: "kds-snackbar-close",
1842
+ onClick: onClose,
1843
+ "aria-label": "Cerrar",
1844
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("i", { className: "material-symbols-outlined", children: "close" })
1845
+ }
1846
+ )
1847
+ ]
1570
1848
  }
1571
1849
  );
1572
1850
  }
1573
1851
  );
1574
- KdsLogoHeader.displayName = "KdsLogoHeader";
1575
-
1576
- // src/components/core/KdsRadioGroup/KdsRadioGroup.tsx
1577
- var import_react13 = require("react");
1578
- var import_jsx_runtime13 = require("react/jsx-runtime");
1579
- var KdsRadioGroup = (0, import_react13.forwardRef)(
1580
- ({ label, name, options, value, onChange, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("fieldset", { ref, className: (0, import_clsx.clsx)("kds-radio-group", className), ...props, children: [
1581
- label && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("legend", { children: label }),
1582
- options.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("label", { className: "field", children: [
1583
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1584
- "input",
1585
- {
1586
- type: "radio",
1587
- name,
1588
- value: opt.value,
1589
- checked: value === opt.value,
1590
- disabled: opt.disabled,
1591
- onChange: () => onChange?.(opt.value)
1592
- }
1593
- ),
1594
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { children: opt.label })
1595
- ] }, opt.value))
1596
- ] })
1597
- );
1598
- KdsRadioGroup.displayName = "KdsRadioGroup";
1599
-
1600
- // src/components/core/KdsSelect/KdsSelect.tsx
1601
- var import_react14 = require("react");
1602
- var Select = __toESM(require("@radix-ui/react-select"));
1603
- var import_jsx_runtime14 = require("react/jsx-runtime");
1604
- var KdsSelectRoot = (0, import_react14.forwardRef)(
1605
- ({
1606
- value,
1607
- onValueChange,
1608
- placeholder,
1609
- label,
1610
- error,
1611
- helperText,
1612
- disabled,
1613
- fullWidth = true,
1614
- children,
1615
- className
1616
- }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1617
- "div",
1618
- {
1619
- ref,
1620
- className: (0, import_clsx.clsx)(
1621
- "kds-select",
1622
- error && "kds-select-error",
1623
- fullWidth && "kds-select-full",
1624
- className
1625
- ),
1626
- children: [
1627
- label && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("label", { className: "kds-select-label", children: label }),
1628
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(Select.Root, { value, onValueChange, disabled, children: [
1629
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(Select.Trigger, { className: "kds-select-trigger", children: [
1630
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.Value, { placeholder }),
1631
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.Icon, { className: "kds-select-icon", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("i", { className: "material-symbols-outlined", children: "expand_more" }) })
1632
- ] }),
1633
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.Content, { className: "kds-select-content", position: "popper", sideOffset: 4, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.Viewport, { className: "kds-select-viewport", children }) }) })
1634
- ] }),
1635
- helperText && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: (0, import_clsx.clsx)("kds-select-helper", error && "kds-select-helper-error"), children: helperText })
1636
- ]
1637
- }
1638
- )
1639
- );
1640
- KdsSelectRoot.displayName = "KdsSelect";
1641
- var KdsSelectItem = (0, import_react14.forwardRef)(
1642
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(Select.Item, { ref, className: (0, import_clsx.clsx)("kds-select-item", className), ...props, children: [
1643
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.ItemText, { children }),
1644
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Select.ItemIndicator, { className: "kds-select-item-indicator", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("i", { className: "material-symbols-outlined", children: "check" }) })
1645
- ] })
1646
- );
1647
- KdsSelectItem.displayName = "KdsSelect.Item";
1648
- var KdsSelect = Object.assign(KdsSelectRoot, {
1649
- Item: KdsSelectItem
1650
- });
1651
-
1652
- // src/components/core/KdsChip/KdsChip.tsx
1653
- var import_react15 = require("react");
1654
- var import_jsx_runtime15 = require("react/jsx-runtime");
1655
- var KdsChip = (0, import_react15.forwardRef)(
1656
- ({ color, icon, onDelete, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { ref, className: (0, import_clsx.clsx)("kds-badge", color, className), ...props, children: [
1657
- icon && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("i", { className: "material-symbols-outlined", children: icon }),
1658
- children,
1659
- onDelete && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "kds-btn kds-btn-text kds-btn-sm", onClick: onDelete, "aria-label": "Eliminar", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("i", { className: "material-symbols-outlined", children: "close" }) })
1660
- ] })
1661
- );
1662
- KdsChip.displayName = "KdsChip";
1663
-
1664
- // src/components/core/KdsSnackbar/KdsSnackbar.tsx
1665
- var import_react17 = require("react");
1666
-
1667
- // src/components/core/hooks/useAutoHide.ts
1668
- var import_react16 = require("react");
1669
- function useAutoHide(durationMs, onHide) {
1670
- const [visible, setVisible] = (0, import_react16.useState)(true);
1671
- const onHideRef = (0, import_react16.useRef)(onHide);
1672
- onHideRef.current = onHide;
1673
- (0, import_react16.useEffect)(() => {
1674
- if (durationMs <= 0) return;
1675
- const timer = setTimeout(() => {
1676
- setVisible(false);
1677
- onHideRef.current?.();
1678
- }, durationMs);
1679
- return () => clearTimeout(timer);
1680
- }, [durationMs]);
1681
- return { visible, setVisible };
1682
- }
1683
-
1684
- // src/components/core/KdsSnackbar/KdsSnackbar.tsx
1685
- var import_jsx_runtime16 = require("react/jsx-runtime");
1686
- var KdsSnackbar = (0, import_react17.forwardRef)(
1687
- ({ message, type, duration = 5e3, onClose, open = true, className, ...props }, ref) => {
1688
- const { visible } = useAutoHide(duration, onClose);
1689
- if (!open || !visible) return null;
1690
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { ref, role: "status", className: (0, import_clsx.clsx)("snackbar", "active", type, className), ...props, children: [
1691
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { children: message }),
1692
- onClose && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { onClick: onClose, "aria-label": "Cerrar", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("i", { className: "material-symbols-outlined", children: "close" }) })
1693
- ] });
1694
- }
1695
- );
1696
- KdsSnackbar.displayName = "KdsSnackbar";
1852
+ KdsSnackbar.displayName = "KdsSnackbar";
1697
1853
 
1698
1854
  // src/components/core/KdsTooltip/KdsTooltip.tsx
1699
1855
  var Tooltip = __toESM(require("@radix-ui/react-tooltip"));
1700
- var import_jsx_runtime17 = require("react/jsx-runtime");
1856
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1701
1857
  function KdsTooltip({
1702
1858
  content,
1703
1859
  children,
@@ -1708,167 +1864,377 @@ function KdsTooltip({
1708
1864
  onOpenChange,
1709
1865
  delayDuration = 300
1710
1866
  }) {
1711
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Tooltip.Provider, { delayDuration, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(Tooltip.Root, { open, defaultOpen, onOpenChange, children: [
1712
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Tooltip.Trigger, { asChild: true, children }),
1713
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Tooltip.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(Tooltip.Content, { className: (0, import_clsx.clsx)("kds-tooltip", className), side: placement, sideOffset: 4, children: [
1714
- content,
1715
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Tooltip.Arrow, { className: "kds-tooltip-arrow" })
1716
- ] }) })
1867
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Tooltip.Provider, { delayDuration, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(Tooltip.Root, { open, defaultOpen, onOpenChange, children: [
1868
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Tooltip.Trigger, { asChild: true, children }),
1869
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Tooltip.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "kds-theme-root", style: { display: "contents" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1870
+ Tooltip.Content,
1871
+ {
1872
+ className: (0, import_clsx.clsx)("kds-tooltip", className),
1873
+ side: placement,
1874
+ sideOffset: 6,
1875
+ collisionPadding: 8,
1876
+ children: [
1877
+ content,
1878
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Tooltip.Arrow, { className: "kds-tooltip-arrow", width: 10, height: 5 })
1879
+ ]
1880
+ }
1881
+ ) }) })
1717
1882
  ] }) });
1718
1883
  }
1719
1884
 
1720
1885
  // src/components/core/KdsAccordion/KdsAccordion.tsx
1721
- var import_react18 = require("react");
1722
- var import_jsx_runtime18 = require("react/jsx-runtime");
1723
- var KdsAccordion = (0, import_react18.forwardRef)(
1724
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("details", { ref, className: (0, import_clsx.clsx)("kds-accordion", className), ...props, children })
1886
+ var import_react20 = require("react");
1887
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1888
+ var KdsAccordion = (0, import_react20.forwardRef)(
1889
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("details", { ref, className: (0, import_clsx.clsx)("kds-accordion", className), ...props, children })
1725
1890
  );
1726
1891
  KdsAccordion.displayName = "KdsAccordion";
1727
- var KdsAccordionSummary = (0, import_react18.forwardRef)(
1728
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("summary", { ref, className: (0, import_clsx.clsx)("kds-accordion-summary", className), ...props, children: [
1892
+ var KdsAccordionSummary = (0, import_react20.forwardRef)(
1893
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("summary", { ref, className: (0, import_clsx.clsx)("kds-accordion-summary", className), ...props, children: [
1729
1894
  children,
1730
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("i", { className: "material-symbols-outlined", children: "expand_more" })
1895
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("i", { className: "material-symbols-outlined", children: "expand_more" })
1731
1896
  ] })
1732
1897
  );
1733
1898
  KdsAccordionSummary.displayName = "KdsAccordionSummary";
1734
- var KdsAccordionDetails = (0, import_react18.forwardRef)(
1735
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-accordion-details", className), ...props, children })
1899
+ var KdsAccordionDetails = (0, import_react20.forwardRef)(
1900
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-accordion-details", className), ...props, children })
1736
1901
  );
1737
1902
  KdsAccordionDetails.displayName = "KdsAccordionDetails";
1738
1903
 
1739
1904
  // src/components/core/KdsDivider/KdsDivider.tsx
1740
- var import_react19 = require("react");
1741
- var import_jsx_runtime19 = require("react/jsx-runtime");
1742
- var KdsDivider = (0, import_react19.forwardRef)(
1743
- ({ dashed, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("hr", { ref, className: (0, import_clsx.clsx)(dashed ? "kds-hr-dashed" : "kds-hr", className), ...props })
1905
+ var import_react21 = require("react");
1906
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1907
+ var KdsDivider = (0, import_react21.forwardRef)(
1908
+ ({ dashed, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("hr", { ref, className: (0, import_clsx.clsx)(dashed ? "kds-hr-dashed" : "kds-hr", className), ...props })
1744
1909
  );
1745
1910
  KdsDivider.displayName = "KdsDivider";
1746
1911
 
1747
1912
  // src/components/core/KdsSectionNote/KdsSectionNote.tsx
1748
- var import_react20 = require("react");
1749
- var import_jsx_runtime20 = require("react/jsx-runtime");
1750
- var KdsSectionNote = (0, import_react20.forwardRef)(
1751
- ({ icon = "info", children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("p", { ref, className: (0, import_clsx.clsx)("kds-section-note", className), ...props, children: [
1752
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("i", { className: "material-symbols-outlined", children: icon }),
1753
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { children })
1913
+ var import_react22 = require("react");
1914
+ var import_jsx_runtime21 = require("react/jsx-runtime");
1915
+ var KdsSectionNote = (0, import_react22.forwardRef)(
1916
+ ({ icon = "info", children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("p", { ref, className: (0, import_clsx.clsx)("kds-section-note", className), ...props, children: [
1917
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("i", { className: "material-symbols-outlined", children: icon }),
1918
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { children })
1754
1919
  ] })
1755
1920
  );
1756
1921
  KdsSectionNote.displayName = "KdsSectionNote";
1757
1922
 
1758
1923
  // src/components/core/KdsStatusBlock/KdsStatusBlock.tsx
1759
- var import_react21 = require("react");
1760
- var import_jsx_runtime21 = require("react/jsx-runtime");
1761
- var KdsStatusBlock = (0, import_react21.forwardRef)(
1762
- ({ status, icon, title, description, inline, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-status-block", inline && "inline", className), "data-status": status, ...props, children: [
1763
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "kds-status-block-icon", children: icon && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
1764
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { children: [
1765
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h2", { className: "kds-status-block-title", children: title }),
1766
- description && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("p", { className: "kds-status-block-description", children: description })
1924
+ var import_react23 = require("react");
1925
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1926
+ var KdsStatusBlock = (0, import_react23.forwardRef)(
1927
+ ({ status, icon, title, description, inline, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-status-block", inline && "inline", className), "data-status": status, ...props, children: [
1928
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "kds-status-block-icon", children: icon && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
1929
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { children: [
1930
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("h2", { className: "kds-status-block-title", children: title }),
1931
+ description && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("p", { className: "kds-status-block-description", children: description })
1767
1932
  ] })
1768
1933
  ] })
1769
1934
  );
1770
1935
  KdsStatusBlock.displayName = "KdsStatusBlock";
1771
1936
 
1772
1937
  // src/components/core/KdsStepper/KdsStepper.tsx
1773
- var import_react22 = require("react");
1774
- var import_jsx_runtime22 = require("react/jsx-runtime");
1775
- var KdsStepper = (0, import_react22.forwardRef)(
1776
- ({ steps, current, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-stepper", className), "data-steps": steps, "data-current": current, ...props, children: Array.from({ length: steps }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: (0, import_clsx.clsx)("kds-step", i < current && "completed", i === current && "current"), children: [
1777
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "kds-step-indicator", children: i < current ? "\u2713" : i + 1 }),
1778
- i < steps - 1 && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "kds-step-line" })
1779
- ] }, i)) })
1780
- );
1781
- KdsStepper.displayName = "KdsStepper";
1782
-
1783
- // src/components/core/KdsCopyRow/KdsCopyRow.tsx
1784
1938
  var import_react24 = require("react");
1785
-
1786
- // src/components/core/hooks/useCopyToClipboard.ts
1787
- var import_react23 = require("react");
1788
- function useCopyToClipboard(resetMs = 1200) {
1789
- const [copied, setCopied] = (0, import_react23.useState)(false);
1790
- const copy = (0, import_react23.useCallback)(
1791
- async (text) => {
1792
- try {
1793
- await navigator.clipboard.writeText(text);
1794
- setCopied(true);
1795
- setTimeout(() => setCopied(false), resetMs);
1796
- } catch {
1797
- }
1939
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1940
+ var KdsStepper = (0, import_react24.forwardRef)(
1941
+ ({ steps, current, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-stepper", className), ...props, children: steps.map((label, i) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1942
+ "div",
1943
+ {
1944
+ className: (0, import_clsx.clsx)("kds-step", i < current && "completed", i === current && "current"),
1945
+ children: [
1946
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "kds-step-indicator" }),
1947
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "kds-step-label", children: label })
1948
+ ]
1798
1949
  },
1799
- [resetMs]
1800
- );
1801
- return { copied, copy };
1802
- }
1950
+ `${i}-${label}`
1951
+ )) })
1952
+ );
1953
+ KdsStepper.displayName = "KdsStepper";
1803
1954
 
1804
1955
  // src/components/core/KdsCopyRow/KdsCopyRow.tsx
1805
- var import_jsx_runtime23 = require("react/jsx-runtime");
1806
- var KdsCopyRow = (0, import_react24.forwardRef)(
1807
- ({ label, value, className, ...props }, ref) => {
1956
+ var import_react25 = require("react");
1957
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1958
+ var KdsCopyRow = (0, import_react25.forwardRef)(
1959
+ ({ label, value, copiedText = "Copiado", className, ...props }, ref) => {
1808
1960
  const { copied, copy } = useCopyToClipboard();
1809
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-copy-row", copied && "copied", className), ...props, children: [
1810
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: "kds-copy-row-label", children: label }),
1811
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { className: "kds-copy-row-value", children: value }),
1812
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("button", { className: "kds-copy-row-btn", onClick: () => copy(value), "aria-label": `Copiar ${label}`, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("i", { className: "material-symbols-outlined", children: copied ? "check" : "content_copy" }) })
1813
- ] });
1961
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1962
+ "button",
1963
+ {
1964
+ ref,
1965
+ type: "button",
1966
+ className: (0, import_clsx.clsx)("kds-copy-row", copied && "copied", className),
1967
+ "data-copy": value,
1968
+ onClick: () => copy(value),
1969
+ "aria-label": `Copiar ${label}: ${value}`,
1970
+ ...props,
1971
+ children: [
1972
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("i", { className: "material-symbols-outlined", "aria-hidden": "true", children: "content_copy" }),
1973
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { children: [
1974
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "kds-copy-row-label", children: label }),
1975
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "kds-copy-row-value", children: value })
1976
+ ] }),
1977
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("span", { className: "kds-copy-toast", "aria-hidden": "true", children: [
1978
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("i", { className: "material-symbols-outlined", children: "check_circle" }),
1979
+ " ",
1980
+ copiedText
1981
+ ] })
1982
+ ]
1983
+ }
1984
+ );
1814
1985
  }
1815
1986
  );
1816
1987
  KdsCopyRow.displayName = "KdsCopyRow";
1817
1988
 
1818
1989
  // src/components/core/KdsCopyableTable/KdsCopyableTable.tsx
1819
- var import_react25 = require("react");
1820
- var import_jsx_runtime24 = require("react/jsx-runtime");
1821
- var KdsCopyableTable = (0, import_react25.forwardRef)(
1822
- ({ rows, className, ...props }, ref) => {
1823
- const { copied, copy } = useCopyToClipboard();
1824
- const handleCopyAll = () => {
1825
- const text = rows.map((r) => `${r.label}: ${r.value}`).join("\n");
1826
- copy(text);
1827
- };
1828
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
1829
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-copyable-table", className), ...props, children: rows.map((row) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "kds-copyable-table-row", children: [
1830
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "kds-copyable-table-label", children: row.label }),
1831
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "kds-copyable-table-value", children: row.value })
1832
- ] }, row.label)) }),
1833
- /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("button", { className: `kds-btn kds-btn-outlined kds-btn-block kds-copy-all-btn${copied ? " copied" : ""}`, onClick: handleCopyAll, "aria-label": "Copiar todo", children: [
1834
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "kds-icon", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("i", { className: "material-symbols-outlined", children: copied ? "check" : "content_copy" }) }),
1835
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { children: copied ? "Copiado" : "Copiar todos los datos" })
1836
- ] })
1837
- ] });
1990
+ var import_react26 = require("react");
1991
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1992
+ async function copyToClipboard(text) {
1993
+ try {
1994
+ if (navigator.clipboard?.writeText) {
1995
+ await navigator.clipboard.writeText(text);
1996
+ return true;
1997
+ }
1998
+ } catch {
1999
+ }
2000
+ const ta = document.createElement("textarea");
2001
+ ta.value = text;
2002
+ ta.style.position = "fixed";
2003
+ ta.style.opacity = "0";
2004
+ document.body.appendChild(ta);
2005
+ ta.select();
2006
+ try {
2007
+ document.execCommand("copy");
2008
+ return true;
2009
+ } catch {
2010
+ return false;
2011
+ } finally {
2012
+ document.body.removeChild(ta);
2013
+ }
2014
+ }
2015
+ var TRANSITION_MS = 300;
2016
+ function GridVariant({
2017
+ gridRows,
2018
+ disabled,
2019
+ className,
2020
+ forwardedRef,
2021
+ rest
2022
+ }) {
2023
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2024
+ "div",
2025
+ {
2026
+ ref: forwardedRef,
2027
+ className: (0, import_clsx.clsx)("kds-copyable-table", "kds-copyable-table--grid", className),
2028
+ ...rest,
2029
+ children: gridRows.map((cells, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2030
+ "div",
2031
+ {
2032
+ className: "kds-copyable-table-row kds-copyable-table-row--grid",
2033
+ "data-testid": "kds-grid-row",
2034
+ children: cells.map((text, cellIndex) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2035
+ "span",
2036
+ {
2037
+ className: (0, import_clsx.clsx)("kds-grid-cell", disabled && "kds-grid-cell--disabled"),
2038
+ children: text
2039
+ },
2040
+ cellIndex
2041
+ ))
2042
+ },
2043
+ rowIndex
2044
+ ))
2045
+ }
2046
+ );
2047
+ }
2048
+ function CopyableVariant({
2049
+ rows,
2050
+ copyAllLabel = "Copiar todos los datos",
2051
+ copiedAllLabel = "Datos copiados",
2052
+ showCopyAll = true,
2053
+ className,
2054
+ forwardedRef,
2055
+ rest
2056
+ }) {
2057
+ const copiedTimers = (0, import_react26.useRef)(/* @__PURE__ */ new Map());
2058
+ const settlingTimers = (0, import_react26.useRef)(/* @__PURE__ */ new Map());
2059
+ const [copiedRows, setCopiedRows] = (0, import_react26.useState)(/* @__PURE__ */ new Set());
2060
+ const [settlingRows, setSettlingRows] = (0, import_react26.useState)(/* @__PURE__ */ new Set());
2061
+ const [allCopied, setAllCopied] = (0, import_react26.useState)(false);
2062
+ const markCopied = (0, import_react26.useCallback)((indexes, duration = 1500) => {
2063
+ setCopiedRows((prev) => {
2064
+ const next = new Set(prev);
2065
+ indexes.forEach((i) => next.add(i));
2066
+ return next;
2067
+ });
2068
+ indexes.forEach((i) => {
2069
+ const st = settlingTimers.current.get(i);
2070
+ if (st) {
2071
+ clearTimeout(st);
2072
+ settlingTimers.current.delete(i);
2073
+ }
2074
+ });
2075
+ setSettlingRows((prev) => {
2076
+ const next = new Set(prev);
2077
+ indexes.forEach((i) => next.delete(i));
2078
+ return next;
2079
+ });
2080
+ indexes.forEach((i) => {
2081
+ const existing = copiedTimers.current.get(i);
2082
+ if (existing) clearTimeout(existing);
2083
+ const t = setTimeout(() => {
2084
+ setCopiedRows((prev) => {
2085
+ const next = new Set(prev);
2086
+ next.delete(i);
2087
+ return next;
2088
+ });
2089
+ setSettlingRows((prev) => {
2090
+ const next = new Set(prev);
2091
+ next.add(i);
2092
+ return next;
2093
+ });
2094
+ copiedTimers.current.delete(i);
2095
+ const settlingT = setTimeout(() => {
2096
+ setSettlingRows((prev) => {
2097
+ const next = new Set(prev);
2098
+ next.delete(i);
2099
+ return next;
2100
+ });
2101
+ settlingTimers.current.delete(i);
2102
+ }, TRANSITION_MS);
2103
+ settlingTimers.current.set(i, settlingT);
2104
+ }, duration);
2105
+ copiedTimers.current.set(i, t);
2106
+ });
2107
+ }, []);
2108
+ const handleRowCopy = async (row, index) => {
2109
+ const ok = await copyToClipboard(row.copy ?? row.value);
2110
+ if (ok) markCopied([index]);
2111
+ };
2112
+ const handleCopyAll = async () => {
2113
+ const text = rows.map((r) => `${r.label}: ${r.value}`).join("\n");
2114
+ const ok = await copyToClipboard(text);
2115
+ if (ok) {
2116
+ markCopied(rows.map((_, i) => i));
2117
+ setAllCopied(true);
2118
+ setTimeout(() => setAllCopied(false), 2e3);
2119
+ }
2120
+ };
2121
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
2122
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { ref: forwardedRef, className: (0, import_clsx.clsx)("kds-copyable-table", className), ...rest, children: rows.map((row, i) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2123
+ "div",
2124
+ {
2125
+ className: (0, import_clsx.clsx)(
2126
+ "kds-copyable-table-row",
2127
+ copiedRows.has(i) && "copied",
2128
+ settlingRows.has(i) && "settling"
2129
+ ),
2130
+ role: "button",
2131
+ tabIndex: 0,
2132
+ onClick: () => handleRowCopy(row, i),
2133
+ onKeyDown: (e) => {
2134
+ if (e.key === "Enter" || e.key === " ") {
2135
+ e.preventDefault();
2136
+ handleRowCopy(row, i);
2137
+ }
2138
+ },
2139
+ "aria-label": `Copiar ${row.label}: ${row.value}`,
2140
+ children: [
2141
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "kds-key", children: row.label }),
2142
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "kds-value", children: row.value })
2143
+ ]
2144
+ },
2145
+ `${row.label}-${i}`
2146
+ )) }),
2147
+ showCopyAll && /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2148
+ "button",
2149
+ {
2150
+ type: "button",
2151
+ className: (0, import_clsx.clsx)(
2152
+ "kds-btn",
2153
+ "kds-btn-outlined",
2154
+ "kds-btn-block",
2155
+ "kds-copy-all-btn",
2156
+ allCopied && "copied"
2157
+ ),
2158
+ onClick: handleCopyAll,
2159
+ "aria-label": allCopied ? copiedAllLabel : copyAllLabel,
2160
+ children: [
2161
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "kds-icon", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("i", { className: "material-symbols-outlined", children: allCopied ? "check" : "content_copy" }) }),
2162
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: allCopied ? copiedAllLabel : copyAllLabel })
2163
+ ]
2164
+ }
2165
+ )
2166
+ ] });
2167
+ }
2168
+ var KdsCopyableTable = (0, import_react26.forwardRef)(
2169
+ ({
2170
+ rows = [],
2171
+ variant = "copyable",
2172
+ gridRows = [],
2173
+ disabled = false,
2174
+ copyAllLabel,
2175
+ copiedAllLabel,
2176
+ showCopyAll,
2177
+ className,
2178
+ ...props
2179
+ }, ref) => {
2180
+ if (variant === "grid") {
2181
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2182
+ GridVariant,
2183
+ {
2184
+ gridRows,
2185
+ disabled,
2186
+ className,
2187
+ forwardedRef: ref,
2188
+ rest: props
2189
+ }
2190
+ );
2191
+ }
2192
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2193
+ CopyableVariant,
2194
+ {
2195
+ rows,
2196
+ copyAllLabel,
2197
+ copiedAllLabel,
2198
+ showCopyAll,
2199
+ className,
2200
+ forwardedRef: ref,
2201
+ rest: props
2202
+ }
2203
+ );
1838
2204
  }
1839
2205
  );
1840
2206
  KdsCopyableTable.displayName = "KdsCopyableTable";
1841
2207
 
1842
2208
  // src/components/core/KdsExpandPanel/KdsExpandPanel.tsx
1843
- var import_react26 = require("react");
1844
- var import_jsx_runtime25 = require("react/jsx-runtime");
1845
- var KdsExpandPanel = (0, import_react26.forwardRef)(
2209
+ var import_react27 = require("react");
2210
+ var import_jsx_runtime26 = require("react/jsx-runtime");
2211
+ var KdsExpandPanel = (0, import_react27.forwardRef)(
1846
2212
  ({ label, defaultExpanded = false, children, className, ...props }, ref) => {
1847
- const [expanded, setExpanded] = (0, import_react26.useState)(defaultExpanded);
1848
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { ref, className, ...props, children: [
1849
- /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2213
+ const [expanded, setExpanded] = (0, import_react27.useState)(defaultExpanded);
2214
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { ref, className, ...props, children: [
2215
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1850
2216
  "button",
1851
2217
  {
1852
2218
  className: "kds-expand-toggle",
1853
2219
  onClick: () => setExpanded((v) => !v),
1854
2220
  "aria-expanded": expanded,
1855
2221
  children: [
1856
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: label }),
1857
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("i", { className: "material-symbols-outlined", children: expanded ? "expand_less" : "expand_more" })
2222
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { children: label }),
2223
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("i", { className: "material-symbols-outlined", children: expanded ? "expand_less" : "expand_more" })
1858
2224
  ]
1859
2225
  }
1860
2226
  ),
1861
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: (0, import_clsx.clsx)("kds-expand-panel", expanded && "open"), hidden: !expanded, children })
2227
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: (0, import_clsx.clsx)("kds-expand-panel", expanded && "open"), hidden: !expanded, children })
1862
2228
  ] });
1863
2229
  }
1864
2230
  );
1865
2231
  KdsExpandPanel.displayName = "KdsExpandPanel";
1866
2232
 
1867
2233
  // src/components/core/KdsCountdown/KdsCountdown.tsx
1868
- var import_react28 = require("react");
2234
+ var import_react29 = require("react");
1869
2235
 
1870
2236
  // src/components/core/hooks/useCountdown.ts
1871
- var import_react27 = require("react");
2237
+ var import_react28 = require("react");
1872
2238
  function calcRemaining(deadline) {
1873
2239
  const diff = Math.max(0, new Date(deadline).getTime() - Date.now());
1874
2240
  const totalSeconds = Math.floor(diff / 1e3);
@@ -1881,8 +2247,8 @@ function calcRemaining(deadline) {
1881
2247
  };
1882
2248
  }
1883
2249
  function useCountdown(deadline) {
1884
- const [state, setState] = (0, import_react27.useState)(() => calcRemaining(deadline));
1885
- (0, import_react27.useEffect)(() => {
2250
+ const [state, setState] = (0, import_react28.useState)(() => calcRemaining(deadline));
2251
+ (0, import_react28.useEffect)(() => {
1886
2252
  const tick = () => setState(calcRemaining(deadline));
1887
2253
  const id = setInterval(tick, 1e3);
1888
2254
  return () => clearInterval(id);
@@ -1891,13 +2257,13 @@ function useCountdown(deadline) {
1891
2257
  }
1892
2258
 
1893
2259
  // src/components/core/KdsCountdown/KdsCountdown.tsx
1894
- var import_jsx_runtime26 = require("react/jsx-runtime");
1895
- var KdsCountdown = (0, import_react28.forwardRef)(
2260
+ var import_jsx_runtime27 = require("react/jsx-runtime");
2261
+ var KdsCountdown = (0, import_react29.forwardRef)(
1896
2262
  ({ deadline, label, onExpire, className, ...props }, ref) => {
1897
2263
  const { hours, minutes, seconds, expired, urgent } = useCountdown(deadline);
1898
- const onExpireRef = (0, import_react28.useRef)(onExpire);
2264
+ const onExpireRef = (0, import_react29.useRef)(onExpire);
1899
2265
  onExpireRef.current = onExpire;
1900
- (0, import_react28.useEffect)(() => {
2266
+ (0, import_react29.useEffect)(() => {
1901
2267
  if (expired) {
1902
2268
  onExpireRef.current?.();
1903
2269
  }
@@ -1906,9 +2272,9 @@ var KdsCountdown = (0, import_react28.forwardRef)(
1906
2272
  return null;
1907
2273
  }
1908
2274
  const pad = (n) => String(n).padStart(2, "0");
1909
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-countdown", urgent && "urgent", className), ...props, children: [
1910
- label && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: "kds-countdown-label", children: label }),
1911
- /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("span", { className: "kds-countdown-value", children: [
2275
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-countdown", urgent && "urgent", className), ...props, children: [
2276
+ label && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "kds-countdown-label", children: label }),
2277
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("span", { className: "kds-countdown-value", children: [
1912
2278
  pad(hours),
1913
2279
  ":",
1914
2280
  pad(minutes),
@@ -1921,96 +2287,122 @@ var KdsCountdown = (0, import_react28.forwardRef)(
1921
2287
  KdsCountdown.displayName = "KdsCountdown";
1922
2288
 
1923
2289
  // src/components/core/KdsSegmentedTabs/KdsSegmentedTabs.tsx
1924
- var import_react29 = require("react");
1925
- var import_jsx_runtime27 = require("react/jsx-runtime");
1926
- var KdsSegmentedTabs = (0, import_react29.forwardRef)(
1927
- (props, ref) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(KdsTabs, { ref, variant: "segmented", ...props })
2290
+ var import_react30 = require("react");
2291
+ var import_jsx_runtime28 = require("react/jsx-runtime");
2292
+ var KdsSegmentedTabs = (0, import_react30.forwardRef)(
2293
+ (props, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(KdsTabs, { ref, ...props })
1928
2294
  );
1929
2295
  KdsSegmentedTabs.displayName = "KdsSegmentedTabs";
1930
2296
 
1931
- // src/components/domain/KdsBankRow/KdsBankRow.tsx
1932
- var import_react30 = require("react");
1933
- var import_jsx_runtime28 = require("react/jsx-runtime");
1934
- var KdsBankRow = (0, import_react30.forwardRef)(
1935
- ({ name, logoUrl, selected, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
2297
+ // src/components/core/KdsFab/KdsFab.tsx
2298
+ var import_react31 = require("react");
2299
+ var import_jsx_runtime29 = require("react/jsx-runtime");
2300
+ var KdsFab = (0, import_react31.forwardRef)(
2301
+ ({ icon, position = "top-right", hidden = false, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1936
2302
  "button",
1937
2303
  {
1938
2304
  ref,
1939
2305
  type: "button",
1940
- className: (0, import_clsx.clsx)("kds-bank-row", selected && "selected", className),
2306
+ className: (0, import_clsx.clsx)(
2307
+ "kds-fab",
2308
+ position !== "none" && `kds-fab--${position}`,
2309
+ hidden && "kds-fab--hidden",
2310
+ className
2311
+ ),
2312
+ "aria-hidden": hidden || void 0,
2313
+ tabIndex: hidden ? -1 : void 0,
1941
2314
  ...props,
1942
- children: [
1943
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "kds-bank-row-logo", children: logoUrl ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("img", { src: logoUrl, alt: name }) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "initials", children: name.charAt(0) }) }),
1944
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "kds-bank-row-name", children: name }),
1945
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("i", { className: "material-symbols-outlined", children: selected ? "check_circle" : "chevron_right" })
1946
- ]
2315
+ children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("i", { className: "material-symbols-outlined", children: icon })
1947
2316
  }
1948
2317
  )
1949
2318
  );
2319
+ KdsFab.displayName = "KdsFab";
2320
+
2321
+ // src/components/domain/KdsBankRow/KdsBankRow.tsx
2322
+ var import_react32 = require("react");
2323
+ var import_jsx_runtime30 = require("react/jsx-runtime");
2324
+ var KdsBankRow = (0, import_react32.forwardRef)(
2325
+ ({ name, logoUrl, selected, hideLogo, className, ...props }, ref) => {
2326
+ const nameStr = typeof name === "string" ? name : "";
2327
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
2328
+ "button",
2329
+ {
2330
+ ref,
2331
+ type: "button",
2332
+ className: (0, import_clsx.clsx)("kds-bank-row", selected && "selected", className),
2333
+ ...props,
2334
+ children: [
2335
+ !hideLogo && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "kds-bank-row-logo", children: logoUrl ? /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("img", { src: logoUrl, alt: nameStr }) : /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "initials", children: nameStr.charAt(0) }) }),
2336
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "kds-bank-row-name", children: name }),
2337
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("i", { className: "material-symbols-outlined", children: selected ? "check_circle" : "chevron_right" })
2338
+ ]
2339
+ }
2340
+ );
2341
+ }
2342
+ );
1950
2343
  KdsBankRow.displayName = "KdsBankRow";
1951
2344
 
1952
2345
  // src/components/domain/KdsBankList/KdsBankList.tsx
1953
- var import_react31 = require("react");
1954
- var import_jsx_runtime29 = require("react/jsx-runtime");
1955
- var KdsBankList = (0, import_react31.forwardRef)(
1956
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-bank-list", className), role: "list", ...props, children })
2346
+ var import_react33 = require("react");
2347
+ var import_jsx_runtime31 = require("react/jsx-runtime");
2348
+ var KdsBankList = (0, import_react33.forwardRef)(
2349
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-bank-list", className), role: "list", ...props, children })
1957
2350
  );
1958
2351
  KdsBankList.displayName = "KdsBankList";
1959
2352
 
1960
2353
  // src/components/domain/KdsBankModal/KdsBankModal.tsx
1961
- var import_react32 = require("react");
1962
- var Dialog2 = __toESM(require("@radix-ui/react-dialog"));
1963
- var import_jsx_runtime30 = require("react/jsx-runtime");
1964
- var KdsBankModal = (0, import_react32.forwardRef)(
2354
+ var import_react34 = require("react");
2355
+ var Dialog = __toESM(require("@radix-ui/react-dialog"));
2356
+ var import_jsx_runtime32 = require("react/jsx-runtime");
2357
+ var KdsBankModal = (0, import_react34.forwardRef)(
1965
2358
  ({ open, onClose, title = "Selecciona tu banco", searchPlaceholder = "Buscar banco...", onSearch, children, className, container }, ref) => {
1966
- const [query, setQuery] = (0, import_react32.useState)("");
2359
+ const [query, setQuery] = (0, import_react34.useState)("");
1967
2360
  const handleSearch = (value) => {
1968
2361
  setQuery(value);
1969
2362
  onSearch?.(value);
1970
2363
  };
1971
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Dialog2.Root, { open, onOpenChange: (o) => {
2364
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Dialog.Root, { open, onOpenChange: (o) => {
1972
2365
  if (!o) onClose();
1973
- }, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Dialog2.Portal, { container, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Dialog2.Overlay, { className: "kds-bank-modal-scrim open", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(Dialog2.Content, { ref, className: (0, import_clsx.clsx)("kds-bank-modal", className), children: [
1974
- /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "kds-bank-modal-header", children: [
1975
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Dialog2.Title, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("h3", { children: title }) }),
1976
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Dialog2.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("button", { className: "kds-bank-modal-close", "aria-label": "Cerrar", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("i", { className: "material-symbols-outlined", children: "close" }) }) })
2366
+ }, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Dialog.Portal, { container, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Dialog.Overlay, { className: "kds-bank-modal-scrim open", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(Dialog.Content, { ref, className: (0, import_clsx.clsx)("kds-bank-modal", className), children: [
2367
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "kds-bank-modal-header", children: [
2368
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Dialog.Title, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("h3", { children: title }) }),
2369
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Dialog.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("button", { className: "kds-bank-modal-close", "aria-label": "Cerrar", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("i", { className: "material-symbols-outlined", children: "close" }) }) })
1977
2370
  ] }),
1978
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "kds-bank-modal-search", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1979
- "input",
2371
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "kds-bank-modal-search", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
2372
+ KdsSearchField,
1980
2373
  {
1981
- type: "text",
1982
2374
  placeholder: searchPlaceholder,
1983
2375
  value: query,
1984
2376
  onChange: (e) => handleSearch(e.target.value)
1985
2377
  }
1986
2378
  ) }),
1987
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "kds-bank-modal-body", children })
2379
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "kds-bank-modal-body", children })
1988
2380
  ] }) }) }) });
1989
2381
  }
1990
2382
  );
1991
2383
  KdsBankModal.displayName = "KdsBankModal";
1992
2384
 
1993
2385
  // src/components/domain/KdsQrRow/KdsQrRow.tsx
1994
- var import_react33 = require("react");
1995
- var import_jsx_runtime31 = require("react/jsx-runtime");
1996
- var KdsQrRow = (0, import_react33.forwardRef)(
1997
- ({ name, description, badge, icon = "qr_code_2", className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("button", { ref, type: "button", className: (0, import_clsx.clsx)("kds-qr-row", className), ...props, children: [
1998
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "kds-qr-avatar", "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
1999
- /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("span", { className: "kds-qr-text", children: [
2000
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "title", children: name }),
2001
- description && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "sub", children: description })
2386
+ var import_react35 = require("react");
2387
+ var import_jsx_runtime33 = require("react/jsx-runtime");
2388
+ var KdsQrRow = (0, import_react35.forwardRef)(
2389
+ ({ name, description, badge, icon = "qr_code_2", className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("button", { ref, type: "button", className: (0, import_clsx.clsx)("kds-qr-row", className), ...props, children: [
2390
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "kds-qr-avatar", "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
2391
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { className: "kds-qr-text", children: [
2392
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "kds-qr-title", children: name }),
2393
+ description && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "kds-qr-subtitle", children: description })
2002
2394
  ] }),
2003
- badge && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: "kds-qr-badge", children: badge }),
2004
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("i", { className: "material-symbols-outlined", children: "chevron_right" })
2395
+ badge && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "kds-qr-badge", children: badge }),
2396
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("i", { className: "material-symbols-outlined", children: "chevron_right" })
2005
2397
  ] })
2006
2398
  );
2007
2399
  KdsQrRow.displayName = "KdsQrRow";
2008
2400
 
2009
2401
  // src/components/domain/KdsCardSelector/KdsCardSelector.tsx
2010
- var import_react34 = require("react");
2011
- var import_jsx_runtime32 = require("react/jsx-runtime");
2012
- var KdsCardSelector = (0, import_react34.forwardRef)(
2013
- ({ icon, title, description, selected, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
2402
+ var import_react36 = require("react");
2403
+ var import_jsx_runtime34 = require("react/jsx-runtime");
2404
+ var KdsCardSelector = (0, import_react36.forwardRef)(
2405
+ ({ icon, title, description, selected, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
2014
2406
  "button",
2015
2407
  {
2016
2408
  ref,
@@ -2018,9 +2410,9 @@ var KdsCardSelector = (0, import_react34.forwardRef)(
2018
2410
  className: (0, import_clsx.clsx)("kds-card-selector", selected && "selected", className),
2019
2411
  ...props,
2020
2412
  children: [
2021
- icon && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "kds-card-selector-icon", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
2022
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "kds-card-selector-title", children: title }),
2023
- description && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "kds-card-selector-description", children: description })
2413
+ icon && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "kds-card-selector-icon", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("i", { className: "material-symbols-outlined", children: icon }) }),
2414
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "kds-card-selector-title", children: title }),
2415
+ description && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "kds-card-selector-description", children: description })
2024
2416
  ]
2025
2417
  }
2026
2418
  )
@@ -2028,26 +2420,26 @@ var KdsCardSelector = (0, import_react34.forwardRef)(
2028
2420
  KdsCardSelector.displayName = "KdsCardSelector";
2029
2421
 
2030
2422
  // src/components/domain/KdsCardPlan/KdsCardPlan.tsx
2031
- var import_react35 = require("react");
2032
- var import_jsx_runtime33 = require("react/jsx-runtime");
2033
- var KdsCardPlan = (0, import_react35.forwardRef)(
2034
- ({ title, price, period, features, recommended, badgeText, action, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
2423
+ var import_react37 = require("react");
2424
+ var import_jsx_runtime35 = require("react/jsx-runtime");
2425
+ var KdsCardPlan = (0, import_react37.forwardRef)(
2426
+ ({ title, price, period, features, recommended, badgeText, action, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
2035
2427
  "div",
2036
2428
  {
2037
2429
  ref,
2038
2430
  className: (0, import_clsx.clsx)("kds-card-plan", recommended && "recommended", className),
2039
2431
  ...props,
2040
2432
  children: [
2041
- badgeText && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "kds-card-plan-badge", children: badgeText }),
2042
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "kds-card-plan-header", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("h3", { children: title }) }),
2043
- /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "kds-card-plan-price", children: [
2044
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { children: price }),
2045
- period && /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { children: [
2433
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "kds-card-plan-header", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("h3", { children: title }) }),
2434
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "kds-card-plan-price", children: [
2435
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: "kds-price", children: price }),
2436
+ period && /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("span", { className: "kds-price-period", children: [
2046
2437
  "/",
2047
2438
  period
2048
2439
  ] })
2049
2440
  ] }),
2050
- features && features.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("ul", { className: "kds-card-plan-features", children: features.map((f, i) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("li", { children: f }, i)) }),
2441
+ badgeText && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: "kds-card-plan-badge", children: badgeText }),
2442
+ features && features.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("ul", { className: "kds-card-plan-features", children: features.map((f, i) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("li", { children: f }, i)) }),
2051
2443
  action
2052
2444
  ]
2053
2445
  }
@@ -2056,50 +2448,564 @@ var KdsCardPlan = (0, import_react35.forwardRef)(
2056
2448
  KdsCardPlan.displayName = "KdsCardPlan";
2057
2449
 
2058
2450
  // src/components/domain/KdsInvoiceSticky/KdsInvoiceSticky.tsx
2059
- var import_react36 = require("react");
2060
- var import_jsx_runtime34 = require("react/jsx-runtime");
2061
- var KdsInvoiceSticky = (0, import_react36.forwardRef)(
2062
- ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-card-elevated", "kds-invoice-sticky", className), ...props, children })
2451
+ var import_react38 = require("react");
2452
+ var import_jsx_runtime36 = require("react/jsx-runtime");
2453
+ var KdsInvoiceSticky = (0, import_react38.forwardRef)(
2454
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2455
+ "article",
2456
+ {
2457
+ ref,
2458
+ className: (0, import_clsx.clsx)("kds-card-elevated", "kds-invoice-sticky", className),
2459
+ ...props,
2460
+ children
2461
+ }
2462
+ )
2063
2463
  );
2064
2464
  KdsInvoiceSticky.displayName = "KdsInvoiceSticky";
2065
2465
 
2066
2466
  // src/components/domain/KdsBottomSheet/KdsBottomSheet.tsx
2067
- var import_react37 = require("react");
2068
- var Dialog3 = __toESM(require("@radix-ui/react-dialog"));
2069
- var import_jsx_runtime35 = require("react/jsx-runtime");
2070
- var KdsBottomSheet = (0, import_react37.forwardRef)(
2071
- ({ open, onClose, title, children, actions, className, container }, ref) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Dialog3.Root, { open, onOpenChange: (o) => {
2072
- if (!o) onClose();
2073
- }, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Dialog3.Portal, { container, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Dialog3.Overlay, { className: "kds-bottom-sheet-scrim open", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(Dialog3.Content, { ref, className: (0, import_clsx.clsx)("kds-bottom-sheet", className), children: [
2074
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "kds-bottom-sheet-grabber" }),
2075
- title && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Dialog3.Title, { className: "kds-bottom-sheet-title", children: title }),
2076
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "kds-bottom-sheet-body", children }),
2077
- actions && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "kds-bottom-sheet-actions", children: actions })
2078
- ] }) }) }) })
2467
+ var import_react39 = require("react");
2468
+ var Dialog2 = __toESM(require("@radix-ui/react-dialog"));
2469
+ var import_jsx_runtime37 = require("react/jsx-runtime");
2470
+ var KdsBottomSheet = (0, import_react39.forwardRef)(
2471
+ ({
2472
+ open,
2473
+ onClose,
2474
+ title,
2475
+ description,
2476
+ children,
2477
+ actions,
2478
+ showGrabber = true,
2479
+ showCloseButton = false,
2480
+ container,
2481
+ className,
2482
+ ...props
2483
+ }, ref) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2484
+ Dialog2.Root,
2485
+ {
2486
+ open,
2487
+ onOpenChange: (o) => {
2488
+ if (!o) onClose();
2489
+ },
2490
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Dialog2.Portal, { container, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "kds-theme-root", style: { display: "contents" }, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Dialog2.Overlay, { className: "kds-bottom-sheet-scrim open", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
2491
+ Dialog2.Content,
2492
+ {
2493
+ ref,
2494
+ className: (0, import_clsx.clsx)("kds-bottom-sheet", className),
2495
+ onPointerDownOutside: (e) => {
2496
+ const target = e.target;
2497
+ if (target.closest(".kds-bottom-sheet")) e.preventDefault();
2498
+ },
2499
+ ...props,
2500
+ children: [
2501
+ showGrabber && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "kds-bottom-sheet-grabber", "aria-hidden": "true" }),
2502
+ showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Dialog2.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2503
+ "button",
2504
+ {
2505
+ type: "button",
2506
+ className: "kds-bottom-sheet-close",
2507
+ "aria-label": "Cerrar",
2508
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("i", { className: "material-symbols-outlined", children: "close" })
2509
+ }
2510
+ ) }),
2511
+ title && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Dialog2.Title, { className: "kds-bottom-sheet-title", children: title }),
2512
+ description && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Dialog2.Description, { className: "kds-bottom-sheet-description", children: description }),
2513
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "kds-bottom-sheet-body", children }),
2514
+ actions && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "kds-bottom-sheet-actions", children: actions })
2515
+ ]
2516
+ }
2517
+ ) }) }) })
2518
+ }
2519
+ )
2079
2520
  );
2080
2521
  KdsBottomSheet.displayName = "KdsBottomSheet";
2081
2522
 
2082
2523
  // src/components/domain/KdsSecureFooter/KdsSecureFooter.tsx
2083
- var import_react38 = require("react");
2084
- var import_jsx_runtime36 = require("react/jsx-runtime");
2085
- var KdsSecureFooter = (0, import_react38.forwardRef)(
2086
- ({ variant = "default", children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("footer", { ref, className: (0, import_clsx.clsx)("kds-secure-footer", variant === "inside" && "inside", className), ...props, children: [
2087
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("i", { className: "material-symbols-outlined", children: "lock" }),
2088
- children || /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { children: "Pago seguro con Khipu" })
2524
+ var import_react41 = require("react");
2525
+
2526
+ // src/components/domain/KdsSecureFooter/KhipuWordmark.tsx
2527
+ var import_react40 = require("react");
2528
+ var import_jsx_runtime38 = require("react/jsx-runtime");
2529
+ var KhipuWordmark = (0, import_react40.forwardRef)(
2530
+ ({ className = "khipu-mark", ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
2531
+ "svg",
2532
+ {
2533
+ ref,
2534
+ viewBox: "0 0 45 15",
2535
+ role: "img",
2536
+ "aria-label": "Khipu",
2537
+ className,
2538
+ xmlns: "http://www.w3.org/2000/svg",
2539
+ ...props,
2540
+ children: [
2541
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2542
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2543
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2544
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2545
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2546
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2547
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" }),
2548
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("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" })
2549
+ ]
2550
+ }
2551
+ )
2552
+ );
2553
+ KhipuWordmark.displayName = "KhipuWordmark";
2554
+
2555
+ // src/components/domain/KdsSecureFooter/KdsSecureFooter.tsx
2556
+ var import_jsx_runtime39 = require("react/jsx-runtime");
2557
+ var KdsSecureFooter = (0, import_react41.forwardRef)(
2558
+ ({ variant = "default", showLogo = true, psp, children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("footer", { ref, className: (0, import_clsx.clsx)("kds-secure-footer", variant === "inside" && "inside", className), ...props, children: [
2559
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("svg", { className: "kds-secure-footer-lock", viewBox: "0 0 24 24", "aria-hidden": "true", children: [
2560
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("rect", { x: "4.5", y: "10.5", width: "15", height: "10", rx: "2.25" }),
2561
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M8 10.5V7a4 4 0 0 1 8 0v3.5" })
2562
+ ] }),
2563
+ children || /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { children: "Pago seguro procesado por" }),
2564
+ showLogo && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(KhipuWordmark, {}),
2565
+ psp && /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_jsx_runtime39.Fragment, { children: [
2566
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: "kds-secure-footer-sep", "aria-hidden": "true" }),
2567
+ psp
2568
+ ] })
2089
2569
  ] })
2090
2570
  );
2091
2571
  KdsSecureFooter.displayName = "KdsSecureFooter";
2092
2572
 
2093
2573
  // src/components/domain/KdsRecapList/KdsRecapList.tsx
2094
- var import_react39 = require("react");
2095
- var import_jsx_runtime37 = require("react/jsx-runtime");
2096
- var KdsRecapList = (0, import_react39.forwardRef)(
2097
- ({ items, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("ul", { ref, className: (0, import_clsx.clsx)("kds-recap-list", className), ...props, children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("li", { children: [
2098
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: "k", children: item.label }),
2099
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: (0, import_clsx.clsx)("v", !item.value && item.placeholder && "placeholder"), children: item.value || item.placeholder || "-" })
2574
+ var import_react42 = require("react");
2575
+ var import_jsx_runtime40 = require("react/jsx-runtime");
2576
+ var KdsRecapList = (0, import_react42.forwardRef)(
2577
+ ({ items, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("ul", { ref, className: (0, import_clsx.clsx)("kds-recap-list", className), ...props, children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("li", { children: [
2578
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: "kds-key", children: item.label }),
2579
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: (0, import_clsx.clsx)("kds-value", !item.value && item.placeholder && "placeholder"), children: item.value || item.placeholder || "-" })
2100
2580
  ] }, i)) })
2101
2581
  );
2102
2582
  KdsRecapList.displayName = "KdsRecapList";
2583
+
2584
+ // src/components/domain/KdsMontoRow/KdsMontoRow.tsx
2585
+ var import_react43 = require("react");
2586
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2587
+ var KdsMontoRow = (0, import_react43.forwardRef)(
2588
+ ({ title, value, deadline, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { ref, className: (0, import_clsx.clsx)("kds-monto-row", className), ...props, children: [
2589
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { children: [
2590
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "kds-monto-row-title", children: title }),
2591
+ deadline && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "kds-monto-row-deadline", children: deadline })
2592
+ ] }),
2593
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "kds-monto-row-value", children: value })
2594
+ ] })
2595
+ );
2596
+ KdsMontoRow.displayName = "KdsMontoRow";
2597
+
2598
+ // src/components/domain/KdsMerchantTile/KdsMerchantTile.tsx
2599
+ var import_react44 = require("react");
2600
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2601
+ var KdsMerchantTile = (0, import_react44.forwardRef)(
2602
+ ({ name, logoUrl, initials, compact, className, ...props }, ref) => {
2603
+ const displayInitials = (initials ?? name.slice(0, 2)).toUpperCase();
2604
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2605
+ "div",
2606
+ {
2607
+ ref,
2608
+ className: (0, import_clsx.clsx)("kds-merchant-tile", logoUrl && "logo", compact && "compact", className),
2609
+ "aria-label": name,
2610
+ ...props,
2611
+ children: logoUrl ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("img", { src: logoUrl, alt: name }) : displayInitials
2612
+ }
2613
+ );
2614
+ }
2615
+ );
2616
+ KdsMerchantTile.displayName = "KdsMerchantTile";
2617
+
2618
+ // src/components/domain/KdsInvoiceMerchant/KdsInvoiceMerchant.tsx
2619
+ var import_react46 = require("react");
2620
+
2621
+ // src/components/domain/KdsInvoiceMerchant/useLogoBackdrop.ts
2622
+ var import_react45 = require("react");
2623
+
2624
+ // src/components/domain/KdsInvoiceMerchant/logoLuminance.ts
2625
+ var LIGHT_LOGO_LUMINANCE_THRESHOLD = 0.72;
2626
+ var SAMPLE_SIZE = 16;
2627
+ var ALPHA_THRESHOLD = 128;
2628
+ var MIN_OPAQUE_RATIO = 0.02;
2629
+ function measureLogoLuminance(url) {
2630
+ return new Promise((resolve) => {
2631
+ const probe = new Image();
2632
+ probe.crossOrigin = "anonymous";
2633
+ probe.onload = () => {
2634
+ try {
2635
+ const canvas = document.createElement("canvas");
2636
+ canvas.width = SAMPLE_SIZE;
2637
+ canvas.height = SAMPLE_SIZE;
2638
+ const context = canvas.getContext("2d");
2639
+ if (!context) {
2640
+ resolve(null);
2641
+ return;
2642
+ }
2643
+ context.drawImage(probe, 0, 0, SAMPLE_SIZE, SAMPLE_SIZE);
2644
+ const { data } = context.getImageData(0, 0, SAMPLE_SIZE, SAMPLE_SIZE);
2645
+ let sum = 0;
2646
+ let opaquePixels = 0;
2647
+ for (let i = 0; i < data.length; i += 4) {
2648
+ if (data[i + 3] < ALPHA_THRESHOLD) continue;
2649
+ sum += (0.2126 * data[i] + 0.7152 * data[i + 1] + 0.0722 * data[i + 2]) / 255;
2650
+ opaquePixels++;
2651
+ }
2652
+ if (opaquePixels < SAMPLE_SIZE * SAMPLE_SIZE * MIN_OPAQUE_RATIO) {
2653
+ resolve(null);
2654
+ return;
2655
+ }
2656
+ resolve(sum / opaquePixels);
2657
+ } catch {
2658
+ resolve(null);
2659
+ }
2660
+ };
2661
+ probe.onerror = () => resolve(null);
2662
+ probe.src = url;
2663
+ });
2664
+ }
2665
+ function pickLogoBackdrop(luminance) {
2666
+ return luminance != null && luminance > LIGHT_LOGO_LUMINANCE_THRESHOLD ? "dark" : "light";
2667
+ }
2668
+
2669
+ // src/components/domain/KdsInvoiceMerchant/useLogoBackdrop.ts
2670
+ function useLogoBackdrop(logoUrl) {
2671
+ const [backdrop, setBackdrop] = (0, import_react45.useState)("light");
2672
+ (0, import_react45.useEffect)(() => {
2673
+ let cancelled = false;
2674
+ setBackdrop("light");
2675
+ if (!logoUrl) {
2676
+ return void 0;
2677
+ }
2678
+ measureLogoLuminance(logoUrl).then((luminance) => {
2679
+ if (!cancelled) {
2680
+ setBackdrop(pickLogoBackdrop(luminance));
2681
+ }
2682
+ });
2683
+ return () => {
2684
+ cancelled = true;
2685
+ };
2686
+ }, [logoUrl]);
2687
+ return backdrop;
2688
+ }
2689
+
2690
+ // src/components/domain/KdsInvoiceMerchant/KdsInvoiceMerchant.tsx
2691
+ var import_jsx_runtime43 = require("react/jsx-runtime");
2692
+ var KdsInvoiceMerchant = (0, import_react46.forwardRef)(
2693
+ ({ logoUrl, brandColor, className, style, ...props }, ref) => {
2694
+ const [failed, setFailed] = (0, import_react46.useState)(false);
2695
+ const showLogo = !!logoUrl && !failed;
2696
+ const backdrop = useLogoBackdrop(showLogo ? logoUrl : void 0);
2697
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2698
+ "div",
2699
+ {
2700
+ ref,
2701
+ className: (0, import_clsx.clsx)(
2702
+ "kds-invoice-merchant",
2703
+ showLogo && "kds-invoice-merchant-neutral",
2704
+ showLogo && backdrop === "dark" && "dark",
2705
+ className
2706
+ ),
2707
+ "aria-hidden": "true",
2708
+ style: !showLogo && brandColor ? { background: brandColor, ...style } : style,
2709
+ ...props,
2710
+ children: showLogo ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("img", { src: logoUrl, alt: "", onError: () => setFailed(true) }) : /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("i", { className: "material-symbols-outlined", children: "storefront" })
2711
+ }
2712
+ );
2713
+ }
2714
+ );
2715
+ KdsInvoiceMerchant.displayName = "KdsInvoiceMerchant";
2716
+
2717
+ // src/components/domain/KdsPaymentTotal/KdsPaymentTotal.tsx
2718
+ var import_react47 = require("react");
2719
+ var import_jsx_runtime44 = require("react/jsx-runtime");
2720
+ var KdsPaymentTotal = (0, import_react47.forwardRef)(
2721
+ ({
2722
+ variant = "default",
2723
+ tone = "brand",
2724
+ centered = false,
2725
+ amount,
2726
+ currency = "S/",
2727
+ decimals = 2,
2728
+ locale = "es-PE",
2729
+ label = "Monto a pagar",
2730
+ title = "Escanea el QR",
2731
+ titleMobile = "Descarga el QR",
2732
+ className,
2733
+ ...props
2734
+ }, ref) => {
2735
+ const { integer, fraction } = formatAmount(amount, decimals, locale);
2736
+ const isEmail = variant === "email";
2737
+ const isInfoTone = tone === "info";
2738
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
2739
+ "div",
2740
+ {
2741
+ ref,
2742
+ className: (0, import_clsx.clsx)(
2743
+ "kds-payment-total",
2744
+ isEmail && "kds-payment-total--email",
2745
+ isInfoTone && "kds-payment-total--tone-info",
2746
+ centered && "kds-payment-total--centered",
2747
+ className
2748
+ ),
2749
+ ...props,
2750
+ children: [
2751
+ !isEmail && title != null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("h5", { className: "kds-payment-total-title", children: title }),
2752
+ !isEmail && titleMobile != null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("h5", { className: "kds-payment-total-title-mobile", children: titleMobile }),
2753
+ label != null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("h6", { className: "kds-payment-label", children: label }),
2754
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("h5", { className: "kds-payment-amount", children: [
2755
+ currency,
2756
+ " ",
2757
+ integer,
2758
+ fraction !== null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("sup", { className: "kds-payment-total-decimal-sup", children: fraction })
2759
+ ] })
2760
+ ]
2761
+ }
2762
+ );
2763
+ }
2764
+ );
2765
+ KdsPaymentTotal.displayName = "KdsPaymentTotal";
2766
+ function formatAmount(amount, decimals, locale) {
2767
+ const showDecimals = typeof decimals === "number" && decimals > 0;
2768
+ if (typeof amount === "number") {
2769
+ if (showDecimals) {
2770
+ const fixed = amount.toFixed(decimals);
2771
+ const [int, frac] = fixed.split(".");
2772
+ const formattedInt2 = new Intl.NumberFormat(locale, { maximumFractionDigits: 0 }).format(
2773
+ Number(int)
2774
+ );
2775
+ return { integer: formattedInt2, fraction: frac ?? null };
2776
+ }
2777
+ const formattedInt = new Intl.NumberFormat(locale, { maximumFractionDigits: 0 }).format(
2778
+ Math.trunc(amount)
2779
+ );
2780
+ return { integer: formattedInt, fraction: null };
2781
+ }
2782
+ const str = amount.trim();
2783
+ const dotIdx = str.indexOf(".");
2784
+ if (dotIdx === -1 || !showDecimals) {
2785
+ return { integer: str, fraction: null };
2786
+ }
2787
+ return {
2788
+ integer: str.slice(0, dotIdx),
2789
+ fraction: str.slice(dotIdx + 1)
2790
+ };
2791
+ }
2792
+
2793
+ // src/components/domain/KdsBillAttachment/KdsBillAttachment.tsx
2794
+ var import_react48 = require("react");
2795
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2796
+ var KdsBillAttachment = (0, import_react48.forwardRef)(
2797
+ ({ filename, href, icon = "attach_file", className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
2798
+ "a",
2799
+ {
2800
+ ref,
2801
+ href,
2802
+ target: "_blank",
2803
+ rel: "noopener noreferrer",
2804
+ className: (0, import_clsx.clsx)("kds-bill-attachment", className),
2805
+ ...props,
2806
+ children: [
2807
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("i", { className: "material-symbols-outlined", children: icon }),
2808
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { children: filename })
2809
+ ]
2810
+ }
2811
+ )
2812
+ );
2813
+ KdsBillAttachment.displayName = "KdsBillAttachment";
2814
+ var KdsBillAttachments = (0, import_react48.forwardRef)(
2815
+ ({ children, className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { ref, className: (0, import_clsx.clsx)("kds-bill-attachments", className), ...props, children })
2816
+ );
2817
+ KdsBillAttachments.displayName = "KdsBillAttachments";
2818
+
2819
+ // src/components/core/hooks/useStickyInvoiceCollapse.ts
2820
+ var import_react49 = require("react");
2821
+ function useStickyInvoiceCollapse(options = {}) {
2822
+ const { onCollapseStart, collapseEnd = 20, mobileBreakpoint = 768 } = options;
2823
+ const onCollapseStartRef = (0, import_react49.useRef)(onCollapseStart);
2824
+ onCollapseStartRef.current = onCollapseStart;
2825
+ (0, import_react49.useEffect)(() => {
2826
+ let viewportOffset = 0;
2827
+ let ticking = false;
2828
+ let wasCollapsing = false;
2829
+ const isMobile = () => window.innerWidth < mobileBreakpoint;
2830
+ const closeOpenPanels = (sticky) => {
2831
+ const toggles = sticky.querySelectorAll(
2832
+ '[data-expand-toggle][aria-expanded="true"], .kds-expand-toggle[aria-expanded="true"]'
2833
+ );
2834
+ toggles.forEach((toggle) => {
2835
+ toggle.setAttribute("aria-expanded", "false");
2836
+ const panelId = toggle.getAttribute("aria-controls");
2837
+ const panel = panelId ? document.getElementById(panelId) : toggle.parentElement?.querySelector("[data-expand-panel], .kds-expand-panel");
2838
+ panel?.classList.remove("open");
2839
+ if (panel) panel.style.maxHeight = "";
2840
+ });
2841
+ };
2842
+ const apply = () => {
2843
+ ticking = false;
2844
+ const screen = document.querySelector(".kds-screen.active");
2845
+ if (!screen) return;
2846
+ const sticky = screen.querySelector(".kds-invoice-sticky");
2847
+ if (!sticky || !isMobile()) {
2848
+ screen.style.removeProperty("--collapse-progress");
2849
+ screen.style.removeProperty("--collapse-collapsible-h");
2850
+ sticky?.classList.remove("is-collapsed");
2851
+ wasCollapsing = false;
2852
+ return;
2853
+ }
2854
+ const scrollY = Math.max(window.scrollY || window.pageYOffset || 0, viewportOffset);
2855
+ const progress = Math.min(Math.max(scrollY / collapseEnd, 0), 1);
2856
+ if (!screen.style.getPropertyValue("--collapse-collapsible-h")) {
2857
+ const collapsible = sticky.querySelector(".kds-invoice-collapsible");
2858
+ if (collapsible) {
2859
+ screen.style.setProperty("--collapse-collapsible-h", `${collapsible.offsetHeight}px`);
2860
+ }
2861
+ }
2862
+ screen.style.setProperty("--collapse-progress", String(progress));
2863
+ sticky.classList.toggle("is-collapsed", progress >= 1);
2864
+ if (progress > 0) {
2865
+ if (!wasCollapsing) {
2866
+ wasCollapsing = true;
2867
+ closeOpenPanels(sticky);
2868
+ onCollapseStartRef.current?.();
2869
+ }
2870
+ } else {
2871
+ wasCollapsing = false;
2872
+ }
2873
+ };
2874
+ const onScroll = () => {
2875
+ if (ticking) return;
2876
+ ticking = true;
2877
+ window.requestAnimationFrame(apply);
2878
+ };
2879
+ const onMessage = (event) => {
2880
+ if (event.data && event.data.type === "VIEWPORT_OFFSET") {
2881
+ viewportOffset = Math.max(0, event.data.offsetTop || 0);
2882
+ onScroll();
2883
+ }
2884
+ };
2885
+ window.addEventListener("scroll", onScroll, { passive: true });
2886
+ window.addEventListener("resize", onScroll);
2887
+ window.addEventListener("message", onMessage);
2888
+ apply();
2889
+ return () => {
2890
+ window.removeEventListener("scroll", onScroll);
2891
+ window.removeEventListener("resize", onScroll);
2892
+ window.removeEventListener("message", onMessage);
2893
+ };
2894
+ }, [collapseEnd, mobileBreakpoint]);
2895
+ }
2896
+
2897
+ // src/components/core/hooks/useExpandToggle.ts
2898
+ var import_react50 = require("react");
2899
+ function useExpandToggle(options = {}) {
2900
+ const { defaultOpen = false, open: controlledOpen, onOpenChange, id } = options;
2901
+ const generatedId = (0, import_react50.useId)();
2902
+ const panelId = id ?? `kds-expand-${generatedId}`;
2903
+ const isControlled = controlledOpen !== void 0;
2904
+ const [uncontrolledOpen, setUncontrolledOpen] = (0, import_react50.useState)(defaultOpen);
2905
+ const open = isControlled ? controlledOpen : uncontrolledOpen;
2906
+ const panelRef = (0, import_react50.useRef)(null);
2907
+ const setPanelRef = (0, import_react50.useCallback)((node) => {
2908
+ panelRef.current = node;
2909
+ }, []);
2910
+ (0, import_react50.useLayoutEffect)(() => {
2911
+ const panel = panelRef.current;
2912
+ if (!panel) return;
2913
+ panel.style.maxHeight = open ? `${panel.scrollHeight}px` : "";
2914
+ }, [open]);
2915
+ const setOpen = (0, import_react50.useCallback)(
2916
+ (next) => {
2917
+ if (!isControlled) {
2918
+ setUncontrolledOpen(next);
2919
+ }
2920
+ onOpenChange?.(next);
2921
+ },
2922
+ [isControlled, onOpenChange]
2923
+ );
2924
+ const toggle = (0, import_react50.useCallback)(() => setOpen(!open), [open, setOpen]);
2925
+ const getToggleProps = (0, import_react50.useCallback)(
2926
+ () => ({
2927
+ type: "button",
2928
+ "aria-expanded": open,
2929
+ "aria-controls": panelId,
2930
+ onClick: () => toggle()
2931
+ }),
2932
+ [open, panelId, toggle]
2933
+ );
2934
+ const getPanelProps = (0, import_react50.useCallback)(
2935
+ (baseClassName = "kds-expand-panel") => ({
2936
+ id: panelId,
2937
+ className: open ? `${baseClassName} open` : baseClassName,
2938
+ hidden: !open,
2939
+ ref: setPanelRef
2940
+ }),
2941
+ [open, panelId, setPanelRef]
2942
+ );
2943
+ return { open, setOpen, toggle, getToggleProps, getPanelProps };
2944
+ }
2945
+
2946
+ // src/components/core/hooks/useHideOnScroll.ts
2947
+ var import_react51 = require("react");
2948
+ function useHideOnScroll(options = {}) {
2949
+ const { threshold = 8, topOffset = 0 } = options;
2950
+ const [hidden, setHidden] = (0, import_react51.useState)(false);
2951
+ (0, import_react51.useEffect)(() => {
2952
+ let viewportOffset = 0;
2953
+ let lastY = 0;
2954
+ let ticking = false;
2955
+ const currentY = () => Math.max(window.scrollY || window.pageYOffset || 0, viewportOffset);
2956
+ const apply = () => {
2957
+ ticking = false;
2958
+ const y = currentY();
2959
+ if (y <= topOffset) {
2960
+ setHidden(false);
2961
+ lastY = y;
2962
+ return;
2963
+ }
2964
+ const delta = y - lastY;
2965
+ if (Math.abs(delta) < threshold) return;
2966
+ setHidden(delta > 0);
2967
+ lastY = y;
2968
+ };
2969
+ const onScroll = () => {
2970
+ if (ticking) return;
2971
+ ticking = true;
2972
+ window.requestAnimationFrame(apply);
2973
+ };
2974
+ const onMessage = (event) => {
2975
+ if (event.data && event.data.type === "VIEWPORT_OFFSET") {
2976
+ viewportOffset = Math.max(0, event.data.offsetTop || 0);
2977
+ onScroll();
2978
+ }
2979
+ };
2980
+ lastY = currentY();
2981
+ window.addEventListener("scroll", onScroll, { passive: true });
2982
+ window.addEventListener("resize", onScroll);
2983
+ window.addEventListener("message", onMessage);
2984
+ return () => {
2985
+ window.removeEventListener("scroll", onScroll);
2986
+ window.removeEventListener("resize", onScroll);
2987
+ window.removeEventListener("message", onMessage);
2988
+ };
2989
+ }, [threshold, topOffset]);
2990
+ return { hidden };
2991
+ }
2992
+
2993
+ // src/components/core/hooks/useMediaQuery.ts
2994
+ var import_react52 = require("react");
2995
+ function useMediaQuery(query) {
2996
+ const [matches, setMatches] = (0, import_react52.useState)(
2997
+ () => typeof window !== "undefined" ? window.matchMedia(query).matches : false
2998
+ );
2999
+ (0, import_react52.useEffect)(() => {
3000
+ if (typeof window === "undefined") return;
3001
+ const mql = window.matchMedia(query);
3002
+ setMatches(mql.matches);
3003
+ const onChange = (event) => setMatches(event.matches);
3004
+ mql.addEventListener("change", onChange);
3005
+ return () => mql.removeEventListener("change", onChange);
3006
+ }, [query]);
3007
+ return matches;
3008
+ }
2103
3009
  // Annotate the CommonJS export names for ESM import in node:
2104
3010
  0 && (module.exports = {
2105
3011
  KdsAccordion,
@@ -2109,6 +3015,8 @@ KdsRecapList.displayName = "KdsRecapList";
2109
3015
  KdsBankList,
2110
3016
  KdsBankModal,
2111
3017
  KdsBankRow,
3018
+ KdsBillAttachment,
3019
+ KdsBillAttachments,
2112
3020
  KdsBottomSheet,
2113
3021
  KdsButton,
2114
3022
  KdsCard,
@@ -2119,24 +3027,26 @@ KdsRecapList.displayName = "KdsRecapList";
2119
3027
  KdsCardSelector,
2120
3028
  KdsCheckbox,
2121
3029
  KdsChip,
3030
+ KdsCopyButton,
2122
3031
  KdsCopyRow,
2123
3032
  KdsCopyableTable,
2124
3033
  KdsCountdown,
2125
3034
  KdsDivider,
2126
3035
  KdsExpandPanel,
3036
+ KdsFab,
3037
+ KdsInvoiceMerchant,
2127
3038
  KdsInvoiceSticky,
2128
3039
  KdsLinearProgress,
2129
- KdsLogoHeader,
2130
- KdsLogoHeaderCloseButton,
2131
- KdsLogoHeaderCode,
2132
- KdsLogoHeaderLogo,
2133
- KdsLogoHeaderSeparator,
2134
- KdsModal,
3040
+ KdsMerchantTile,
3041
+ KdsMontoRow,
3042
+ KdsPaymentTotal,
2135
3043
  KdsQrRow,
2136
3044
  KdsRadioGroup,
2137
3045
  KdsRecapList,
3046
+ KdsSearchField,
2138
3047
  KdsSectionNote,
2139
3048
  KdsSecureFooter,
3049
+ KdsSecureLoader,
2140
3050
  KdsSegmentedTabs,
2141
3051
  KdsSelect,
2142
3052
  KdsSnackbar,
@@ -2150,6 +3060,7 @@ KdsRecapList.displayName = "KdsRecapList";
2150
3060
  KdsThemeProvider,
2151
3061
  KdsTooltip,
2152
3062
  KdsTypography,
3063
+ LIGHT_LOGO_LUMINANCE_THRESHOLD,
2153
3064
  borderRadius,
2154
3065
  breakpoints,
2155
3066
  clsx,
@@ -2158,10 +3069,15 @@ KdsRecapList.displayName = "KdsRecapList";
2158
3069
  fontFamilies,
2159
3070
  fontSizes,
2160
3071
  fontWeights,
3072
+ formatDate,
3073
+ formatDateTime,
3074
+ formatTime,
2161
3075
  getContrastColor,
2162
3076
  letterSpacings,
2163
3077
  lighten,
2164
3078
  lineHeights,
3079
+ measureLogoLuminance,
3080
+ pickLogoBackdrop,
2165
3081
  semanticSpacing,
2166
3082
  shadows,
2167
3083
  spacing,
@@ -2172,6 +3088,11 @@ KdsRecapList.displayName = "KdsRecapList";
2172
3088
  useAutoHide,
2173
3089
  useCopyToClipboard,
2174
3090
  useCountdown,
3091
+ useExpandToggle,
3092
+ useHideOnScroll,
3093
+ useLogoBackdrop,
3094
+ useMediaQuery,
3095
+ useStickyInvoiceCollapse,
2175
3096
  useTabsKeyboard,
2176
3097
  zIndex
2177
3098
  });