@khipu/design-system 0.2.0-alpha.50 → 0.2.0-alpha.52

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@khipu/design-system/beercss",
3
- "version": "0.2.0-alpha.50",
3
+ "version": "0.2.0-alpha.52",
4
4
  "description": "Khipu BeerCSS bundle with Material Design 3 and Khipu customizations",
5
- "buildDate": "2026-06-16T20:37:43.877Z",
5
+ "buildDate": "2026-06-17T00:12:48.042Z",
6
6
  "includes": {
7
7
  "beercss": "4.0.1",
8
8
  "khipu-tokens": "latest",
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "scopeClass": ".kds-theme-root",
21
21
  "cdn": {
22
- "css": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.50/dist/beercss/khipu-beercss.min.css",
23
- "cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.50/dist/beercss/khipu-beercss.scoped.min.css",
24
- "js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.50/dist/beercss/khipu-beercss.min.js"
22
+ "css": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.52/dist/beercss/khipu-beercss.min.css",
23
+ "cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.52/dist/beercss/khipu-beercss.scoped.min.css",
24
+ "js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.52/dist/beercss/khipu-beercss.min.js"
25
25
  }
26
26
  }
package/dist/index.d.mts CHANGED
@@ -2603,6 +2603,23 @@ interface KdsTextFieldProps extends Omit<React__default.InputHTMLAttributes<HTML
2603
2603
  }
2604
2604
  declare const KdsTextField: React__default.ForwardRefExoticComponent<KdsTextFieldProps & React__default.RefAttributes<HTMLInputElement>>;
2605
2605
 
2606
+ /**
2607
+ * Khipu Design System - SearchField Component
2608
+ *
2609
+ * Campo de búsqueda reutilizable (input `type="search"`) con el mismo look que el
2610
+ * search del `KdsBankModal`: borde sutil, radio md, foco con borde primario y halo.
2611
+ * Sin label flotante. Pensado para usarse standalone (ej: lista de bancos inline en
2612
+ * khenshin) o dentro del `KdsBankModal`, que lo consume como única fuente de verdad.
2613
+ *
2614
+ * Acepta value, onChange, placeholder, etc. por spread de las props nativas del input.
2615
+ */
2616
+
2617
+ interface KdsSearchFieldProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'type'> {
2618
+ /** Muestra un ícono de lupa al inicio del campo (additive, off por defecto). */
2619
+ withIcon?: boolean;
2620
+ }
2621
+ declare const KdsSearchField: React__default.ForwardRefExoticComponent<KdsSearchFieldProps & React__default.RefAttributes<HTMLInputElement>>;
2622
+
2606
2623
  /**
2607
2624
  * Khipu Design System - Checkbox Component
2608
2625
  *
@@ -2621,8 +2638,11 @@ declare const KdsTextField: React__default.ForwardRefExoticComponent<KdsTextFiel
2621
2638
  */
2622
2639
 
2623
2640
  interface KdsCheckboxProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'type'> {
2624
- /** Texto del label mostrado al lado del sprite. Opcional (puede usar aria-label). */
2625
- label?: string;
2641
+ /**
2642
+ * Contenido del label mostrado al lado del sprite. Opcional (puede usar aria-label).
2643
+ * Acepta texto o nodos (p. ej. un enlace embebido en "Acepto los términos…").
2644
+ */
2645
+ label?: React__default.ReactNode;
2626
2646
  }
2627
2647
  declare const KdsCheckbox: React__default.ForwardRefExoticComponent<KdsCheckboxProps & React__default.RefAttributes<HTMLInputElement>>;
2628
2648
 
@@ -2889,7 +2909,8 @@ declare const KdsTabPanel: React__default.ForwardRefExoticComponent<KdsTabPanelP
2889
2909
 
2890
2910
  interface KdsRadioOption {
2891
2911
  value: string;
2892
- label: string;
2912
+ /** Texto o nodo del label de la opción (permite contenido rico: montos, enlaces, tablas). */
2913
+ label: React__default.ReactNode;
2893
2914
  disabled?: boolean;
2894
2915
  }
2895
2916
  interface KdsRadioGroupProps extends Omit<React__default.FieldsetHTMLAttributes<HTMLFieldSetElement>, 'onChange'> {
@@ -3166,6 +3187,11 @@ declare const KdsCopyRow: React__default.ForwardRefExoticComponent<KdsCopyRowPro
3166
3187
  * Tabla compacta con filas que se copian individualmente al click, y un
3167
3188
  * botón "Copiar todos los datos" que cambia el color de todas las filas al copy.
3168
3189
  *
3190
+ * Variante `'grid'` (aditiva): grilla read-only de N celdas de texto por fila,
3191
+ * sin copy ni botón "Copiar todo". Las celdas reparten el ancho equitativamente.
3192
+ * Útil para mostrar datos dentro de opciones de radio. Soporta `disabled`
3193
+ * (atenúa el color del texto).
3194
+ *
3169
3195
  * Contrato HTML (matchea el CSS .kds-copyable-table del DS):
3170
3196
  * ```html
3171
3197
  * <div class="kds-copyable-table" id="destination-copy-list">
@@ -3197,7 +3223,27 @@ interface KdsCopyableTableRow {
3197
3223
  copy?: string;
3198
3224
  }
3199
3225
  interface KdsCopyableTableProps extends React__default.HTMLAttributes<HTMLDivElement> {
3200
- rows: KdsCopyableTableRow[];
3226
+ /**
3227
+ * Filas key/value copiables (modo `'copyable'`). Opcional: default `[]`.
3228
+ * En modo `'grid'` no se usa; usá `gridRows` en su lugar.
3229
+ */
3230
+ rows?: KdsCopyableTableRow[];
3231
+ /**
3232
+ * Variante de la tabla.
3233
+ * - `'copyable'` (default): filas key/value que se copian individualmente al click.
3234
+ * - `'grid'`: grilla read-only de N celdas de texto por fila, sin copy ni botón
3235
+ * "Copiar todo". Útil para mostrar datos dentro de opciones de radio.
3236
+ */
3237
+ variant?: 'copyable' | 'grid';
3238
+ /**
3239
+ * Datos de la grilla en modo `'grid'`: cada fila es un array de textos de celda.
3240
+ * Las celdas se reparten el ancho equitativamente. Ignorado en modo `'copyable'`.
3241
+ */
3242
+ gridRows?: string[][];
3243
+ /**
3244
+ * Atenúa el color del texto de la grilla (modo `'grid'`). Sin efecto en `'copyable'`.
3245
+ */
3246
+ disabled?: boolean;
3201
3247
  /** Texto del botón "Copiar todo". Default: "Copiar todos los datos". */
3202
3248
  copyAllLabel?: string;
3203
3249
  /** Texto cuando se copió todo. Default: "Datos copiados". */
@@ -3599,4 +3645,4 @@ declare function getContrastColor(hex: string): string;
3599
3645
  */
3600
3646
  declare function lighten(hex: string, amount: number): string;
3601
3647
 
3602
- export { type Colors, KdsAccordion, KdsAccordionDetails, type KdsAccordionDetailsProps, type KdsAccordionProps, KdsAccordionSummary, type KdsAccordionSummaryProps, KdsAlert, type KdsAlertProps, type KdsAlertSeverity, KdsBankList, type KdsBankListProps, KdsBankModal, type KdsBankModalProps, KdsBankRow, type KdsBankRowProps, KdsBillAttachment, type KdsBillAttachmentProps, KdsBillAttachments, type KdsBillAttachmentsProps, KdsBottomSheet, type KdsBottomSheetProps, KdsButton, type KdsButtonProps, type KdsButtonSize, type KdsButtonVariant, KdsCard, KdsCardBody, KdsCardFooter, KdsCardHeader, KdsCardPlan, type KdsCardPlanProps, type KdsCardProps, type KdsCardSectionProps, KdsCardSelector, type KdsCardSelectorProps, type KdsCardVariant, KdsCheckbox, type KdsCheckboxProps, KdsChip, type KdsChipColor, type KdsChipProps, KdsCopyButton, type KdsCopyButtonProps, KdsCopyRow, type KdsCopyRowProps, KdsCopyableTable, type KdsCopyableTableProps, type KdsCopyableTableRow, KdsCountdown, type KdsCountdownProps, KdsDivider, type KdsDividerProps, KdsExpandPanel, type KdsExpandPanelProps, KdsInvoiceSticky, type KdsInvoiceStickyProps, KdsLinearProgress, type KdsLinearProgressProps, KdsMerchantTile, type KdsMerchantTileProps, KdsMontoRow, type KdsMontoRowProps, KdsPaymentTotal, type KdsPaymentTotalProps, type KdsPaymentTotalVariant, KdsQrRow, type KdsQrRowProps, KdsRadioGroup, type KdsRadioGroupProps, type KdsRadioOption, type KdsRecapItem, KdsRecapList, type KdsRecapListProps, KdsSectionNote, type KdsSectionNoteProps, KdsSecureFooter, type KdsSecureFooterProps, KdsSecureLoader, type KdsSecureLoaderProps, KdsSegmentedTabs, type KdsSegmentedTabsProps, KdsSelect, type KdsSelectOption, type KdsSelectProps, KdsSnackbar, type KdsSnackbarProps, type KdsSnackbarType, KdsSpinner, type KdsSpinnerProps, type KdsSpinnerSize, KdsStatusBlock, type KdsStatusBlockProps, type KdsStatusType, KdsStepper, type KdsStepperProps, KdsTab, KdsTabPanel, type KdsTabPanelProps, type KdsTabProps, KdsTabs, type KdsTabsProps, KdsTextField, type KdsTextFieldProps, KdsThemeProvider, type KdsThemeProviderProps, KdsTooltip, type KdsTooltipPlacement, type KdsTooltipProps, KdsTypography, type KdsTypographyProps, type KdsTypographyVariant, type ThemeMode, type Tokens, type TokensByMode, type Typography as TypographyTokens, borderRadius, breakpoints, colors, colorsByMode, fontFamilies, fontSizes, fontWeights, getContrastColor, letterSpacings, lighten, lineHeights, semanticSpacing, shadows, spacing, tokens, tokensByMode, transitions, typography, useAutoHide, useCopyToClipboard, useCountdown, useTabsKeyboard, zIndex };
3648
+ export { type Colors, KdsAccordion, KdsAccordionDetails, type KdsAccordionDetailsProps, type KdsAccordionProps, KdsAccordionSummary, type KdsAccordionSummaryProps, KdsAlert, type KdsAlertProps, type KdsAlertSeverity, KdsBankList, type KdsBankListProps, KdsBankModal, type KdsBankModalProps, KdsBankRow, type KdsBankRowProps, KdsBillAttachment, type KdsBillAttachmentProps, KdsBillAttachments, type KdsBillAttachmentsProps, KdsBottomSheet, type KdsBottomSheetProps, KdsButton, type KdsButtonProps, type KdsButtonSize, type KdsButtonVariant, KdsCard, KdsCardBody, KdsCardFooter, KdsCardHeader, KdsCardPlan, type KdsCardPlanProps, type KdsCardProps, type KdsCardSectionProps, KdsCardSelector, type KdsCardSelectorProps, type KdsCardVariant, KdsCheckbox, type KdsCheckboxProps, KdsChip, type KdsChipColor, type KdsChipProps, KdsCopyButton, type KdsCopyButtonProps, KdsCopyRow, type KdsCopyRowProps, KdsCopyableTable, type KdsCopyableTableProps, type KdsCopyableTableRow, KdsCountdown, type KdsCountdownProps, KdsDivider, type KdsDividerProps, KdsExpandPanel, type KdsExpandPanelProps, KdsInvoiceSticky, type KdsInvoiceStickyProps, KdsLinearProgress, type KdsLinearProgressProps, KdsMerchantTile, type KdsMerchantTileProps, KdsMontoRow, type KdsMontoRowProps, KdsPaymentTotal, type KdsPaymentTotalProps, type KdsPaymentTotalVariant, KdsQrRow, type KdsQrRowProps, KdsRadioGroup, type KdsRadioGroupProps, type KdsRadioOption, type KdsRecapItem, KdsRecapList, type KdsRecapListProps, KdsSearchField, type KdsSearchFieldProps, KdsSectionNote, type KdsSectionNoteProps, KdsSecureFooter, type KdsSecureFooterProps, KdsSecureLoader, type KdsSecureLoaderProps, KdsSegmentedTabs, type KdsSegmentedTabsProps, KdsSelect, type KdsSelectOption, type KdsSelectProps, KdsSnackbar, type KdsSnackbarProps, type KdsSnackbarType, KdsSpinner, type KdsSpinnerProps, type KdsSpinnerSize, KdsStatusBlock, type KdsStatusBlockProps, type KdsStatusType, KdsStepper, type KdsStepperProps, KdsTab, KdsTabPanel, type KdsTabPanelProps, type KdsTabProps, KdsTabs, type KdsTabsProps, KdsTextField, type KdsTextFieldProps, KdsThemeProvider, type KdsThemeProviderProps, KdsTooltip, type KdsTooltipPlacement, type KdsTooltipProps, KdsTypography, type KdsTypographyProps, type KdsTypographyVariant, type ThemeMode, type Tokens, type TokensByMode, type Typography as TypographyTokens, borderRadius, breakpoints, colors, colorsByMode, fontFamilies, fontSizes, fontWeights, getContrastColor, letterSpacings, lighten, lineHeights, semanticSpacing, shadows, spacing, tokens, tokensByMode, transitions, typography, useAutoHide, useCopyToClipboard, useCountdown, useTabsKeyboard, zIndex };
package/dist/index.d.ts CHANGED
@@ -2603,6 +2603,23 @@ interface KdsTextFieldProps extends Omit<React__default.InputHTMLAttributes<HTML
2603
2603
  }
2604
2604
  declare const KdsTextField: React__default.ForwardRefExoticComponent<KdsTextFieldProps & React__default.RefAttributes<HTMLInputElement>>;
2605
2605
 
2606
+ /**
2607
+ * Khipu Design System - SearchField Component
2608
+ *
2609
+ * Campo de búsqueda reutilizable (input `type="search"`) con el mismo look que el
2610
+ * search del `KdsBankModal`: borde sutil, radio md, foco con borde primario y halo.
2611
+ * Sin label flotante. Pensado para usarse standalone (ej: lista de bancos inline en
2612
+ * khenshin) o dentro del `KdsBankModal`, que lo consume como única fuente de verdad.
2613
+ *
2614
+ * Acepta value, onChange, placeholder, etc. por spread de las props nativas del input.
2615
+ */
2616
+
2617
+ interface KdsSearchFieldProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'type'> {
2618
+ /** Muestra un ícono de lupa al inicio del campo (additive, off por defecto). */
2619
+ withIcon?: boolean;
2620
+ }
2621
+ declare const KdsSearchField: React__default.ForwardRefExoticComponent<KdsSearchFieldProps & React__default.RefAttributes<HTMLInputElement>>;
2622
+
2606
2623
  /**
2607
2624
  * Khipu Design System - Checkbox Component
2608
2625
  *
@@ -2621,8 +2638,11 @@ declare const KdsTextField: React__default.ForwardRefExoticComponent<KdsTextFiel
2621
2638
  */
2622
2639
 
2623
2640
  interface KdsCheckboxProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'type'> {
2624
- /** Texto del label mostrado al lado del sprite. Opcional (puede usar aria-label). */
2625
- label?: string;
2641
+ /**
2642
+ * Contenido del label mostrado al lado del sprite. Opcional (puede usar aria-label).
2643
+ * Acepta texto o nodos (p. ej. un enlace embebido en "Acepto los términos…").
2644
+ */
2645
+ label?: React__default.ReactNode;
2626
2646
  }
2627
2647
  declare const KdsCheckbox: React__default.ForwardRefExoticComponent<KdsCheckboxProps & React__default.RefAttributes<HTMLInputElement>>;
2628
2648
 
@@ -2889,7 +2909,8 @@ declare const KdsTabPanel: React__default.ForwardRefExoticComponent<KdsTabPanelP
2889
2909
 
2890
2910
  interface KdsRadioOption {
2891
2911
  value: string;
2892
- label: string;
2912
+ /** Texto o nodo del label de la opción (permite contenido rico: montos, enlaces, tablas). */
2913
+ label: React__default.ReactNode;
2893
2914
  disabled?: boolean;
2894
2915
  }
2895
2916
  interface KdsRadioGroupProps extends Omit<React__default.FieldsetHTMLAttributes<HTMLFieldSetElement>, 'onChange'> {
@@ -3166,6 +3187,11 @@ declare const KdsCopyRow: React__default.ForwardRefExoticComponent<KdsCopyRowPro
3166
3187
  * Tabla compacta con filas que se copian individualmente al click, y un
3167
3188
  * botón "Copiar todos los datos" que cambia el color de todas las filas al copy.
3168
3189
  *
3190
+ * Variante `'grid'` (aditiva): grilla read-only de N celdas de texto por fila,
3191
+ * sin copy ni botón "Copiar todo". Las celdas reparten el ancho equitativamente.
3192
+ * Útil para mostrar datos dentro de opciones de radio. Soporta `disabled`
3193
+ * (atenúa el color del texto).
3194
+ *
3169
3195
  * Contrato HTML (matchea el CSS .kds-copyable-table del DS):
3170
3196
  * ```html
3171
3197
  * <div class="kds-copyable-table" id="destination-copy-list">
@@ -3197,7 +3223,27 @@ interface KdsCopyableTableRow {
3197
3223
  copy?: string;
3198
3224
  }
3199
3225
  interface KdsCopyableTableProps extends React__default.HTMLAttributes<HTMLDivElement> {
3200
- rows: KdsCopyableTableRow[];
3226
+ /**
3227
+ * Filas key/value copiables (modo `'copyable'`). Opcional: default `[]`.
3228
+ * En modo `'grid'` no se usa; usá `gridRows` en su lugar.
3229
+ */
3230
+ rows?: KdsCopyableTableRow[];
3231
+ /**
3232
+ * Variante de la tabla.
3233
+ * - `'copyable'` (default): filas key/value que se copian individualmente al click.
3234
+ * - `'grid'`: grilla read-only de N celdas de texto por fila, sin copy ni botón
3235
+ * "Copiar todo". Útil para mostrar datos dentro de opciones de radio.
3236
+ */
3237
+ variant?: 'copyable' | 'grid';
3238
+ /**
3239
+ * Datos de la grilla en modo `'grid'`: cada fila es un array de textos de celda.
3240
+ * Las celdas se reparten el ancho equitativamente. Ignorado en modo `'copyable'`.
3241
+ */
3242
+ gridRows?: string[][];
3243
+ /**
3244
+ * Atenúa el color del texto de la grilla (modo `'grid'`). Sin efecto en `'copyable'`.
3245
+ */
3246
+ disabled?: boolean;
3201
3247
  /** Texto del botón "Copiar todo". Default: "Copiar todos los datos". */
3202
3248
  copyAllLabel?: string;
3203
3249
  /** Texto cuando se copió todo. Default: "Datos copiados". */
@@ -3599,4 +3645,4 @@ declare function getContrastColor(hex: string): string;
3599
3645
  */
3600
3646
  declare function lighten(hex: string, amount: number): string;
3601
3647
 
3602
- export { type Colors, KdsAccordion, KdsAccordionDetails, type KdsAccordionDetailsProps, type KdsAccordionProps, KdsAccordionSummary, type KdsAccordionSummaryProps, KdsAlert, type KdsAlertProps, type KdsAlertSeverity, KdsBankList, type KdsBankListProps, KdsBankModal, type KdsBankModalProps, KdsBankRow, type KdsBankRowProps, KdsBillAttachment, type KdsBillAttachmentProps, KdsBillAttachments, type KdsBillAttachmentsProps, KdsBottomSheet, type KdsBottomSheetProps, KdsButton, type KdsButtonProps, type KdsButtonSize, type KdsButtonVariant, KdsCard, KdsCardBody, KdsCardFooter, KdsCardHeader, KdsCardPlan, type KdsCardPlanProps, type KdsCardProps, type KdsCardSectionProps, KdsCardSelector, type KdsCardSelectorProps, type KdsCardVariant, KdsCheckbox, type KdsCheckboxProps, KdsChip, type KdsChipColor, type KdsChipProps, KdsCopyButton, type KdsCopyButtonProps, KdsCopyRow, type KdsCopyRowProps, KdsCopyableTable, type KdsCopyableTableProps, type KdsCopyableTableRow, KdsCountdown, type KdsCountdownProps, KdsDivider, type KdsDividerProps, KdsExpandPanel, type KdsExpandPanelProps, KdsInvoiceSticky, type KdsInvoiceStickyProps, KdsLinearProgress, type KdsLinearProgressProps, KdsMerchantTile, type KdsMerchantTileProps, KdsMontoRow, type KdsMontoRowProps, KdsPaymentTotal, type KdsPaymentTotalProps, type KdsPaymentTotalVariant, KdsQrRow, type KdsQrRowProps, KdsRadioGroup, type KdsRadioGroupProps, type KdsRadioOption, type KdsRecapItem, KdsRecapList, type KdsRecapListProps, KdsSectionNote, type KdsSectionNoteProps, KdsSecureFooter, type KdsSecureFooterProps, KdsSecureLoader, type KdsSecureLoaderProps, KdsSegmentedTabs, type KdsSegmentedTabsProps, KdsSelect, type KdsSelectOption, type KdsSelectProps, KdsSnackbar, type KdsSnackbarProps, type KdsSnackbarType, KdsSpinner, type KdsSpinnerProps, type KdsSpinnerSize, KdsStatusBlock, type KdsStatusBlockProps, type KdsStatusType, KdsStepper, type KdsStepperProps, KdsTab, KdsTabPanel, type KdsTabPanelProps, type KdsTabProps, KdsTabs, type KdsTabsProps, KdsTextField, type KdsTextFieldProps, KdsThemeProvider, type KdsThemeProviderProps, KdsTooltip, type KdsTooltipPlacement, type KdsTooltipProps, KdsTypography, type KdsTypographyProps, type KdsTypographyVariant, type ThemeMode, type Tokens, type TokensByMode, type Typography as TypographyTokens, borderRadius, breakpoints, colors, colorsByMode, fontFamilies, fontSizes, fontWeights, getContrastColor, letterSpacings, lighten, lineHeights, semanticSpacing, shadows, spacing, tokens, tokensByMode, transitions, typography, useAutoHide, useCopyToClipboard, useCountdown, useTabsKeyboard, zIndex };
3648
+ export { type Colors, KdsAccordion, KdsAccordionDetails, type KdsAccordionDetailsProps, type KdsAccordionProps, KdsAccordionSummary, type KdsAccordionSummaryProps, KdsAlert, type KdsAlertProps, type KdsAlertSeverity, KdsBankList, type KdsBankListProps, KdsBankModal, type KdsBankModalProps, KdsBankRow, type KdsBankRowProps, KdsBillAttachment, type KdsBillAttachmentProps, KdsBillAttachments, type KdsBillAttachmentsProps, KdsBottomSheet, type KdsBottomSheetProps, KdsButton, type KdsButtonProps, type KdsButtonSize, type KdsButtonVariant, KdsCard, KdsCardBody, KdsCardFooter, KdsCardHeader, KdsCardPlan, type KdsCardPlanProps, type KdsCardProps, type KdsCardSectionProps, KdsCardSelector, type KdsCardSelectorProps, type KdsCardVariant, KdsCheckbox, type KdsCheckboxProps, KdsChip, type KdsChipColor, type KdsChipProps, KdsCopyButton, type KdsCopyButtonProps, KdsCopyRow, type KdsCopyRowProps, KdsCopyableTable, type KdsCopyableTableProps, type KdsCopyableTableRow, KdsCountdown, type KdsCountdownProps, KdsDivider, type KdsDividerProps, KdsExpandPanel, type KdsExpandPanelProps, KdsInvoiceSticky, type KdsInvoiceStickyProps, KdsLinearProgress, type KdsLinearProgressProps, KdsMerchantTile, type KdsMerchantTileProps, KdsMontoRow, type KdsMontoRowProps, KdsPaymentTotal, type KdsPaymentTotalProps, type KdsPaymentTotalVariant, KdsQrRow, type KdsQrRowProps, KdsRadioGroup, type KdsRadioGroupProps, type KdsRadioOption, type KdsRecapItem, KdsRecapList, type KdsRecapListProps, KdsSearchField, type KdsSearchFieldProps, KdsSectionNote, type KdsSectionNoteProps, KdsSecureFooter, type KdsSecureFooterProps, KdsSecureLoader, type KdsSecureLoaderProps, KdsSegmentedTabs, type KdsSegmentedTabsProps, KdsSelect, type KdsSelectOption, type KdsSelectProps, KdsSnackbar, type KdsSnackbarProps, type KdsSnackbarType, KdsSpinner, type KdsSpinnerProps, type KdsSpinnerSize, KdsStatusBlock, type KdsStatusBlockProps, type KdsStatusType, KdsStepper, type KdsStepperProps, KdsTab, KdsTabPanel, type KdsTabPanelProps, type KdsTabProps, KdsTabs, type KdsTabsProps, KdsTextField, type KdsTextFieldProps, KdsThemeProvider, type KdsThemeProviderProps, KdsTooltip, type KdsTooltipPlacement, type KdsTooltipProps, KdsTypography, type KdsTypographyProps, type KdsTypographyVariant, type ThemeMode, type Tokens, type TokensByMode, type Typography as TypographyTokens, borderRadius, breakpoints, colors, colorsByMode, fontFamilies, fontSizes, fontWeights, getContrastColor, letterSpacings, lighten, lineHeights, semanticSpacing, shadows, spacing, tokens, tokensByMode, transitions, typography, useAutoHide, useCopyToClipboard, useCountdown, useTabsKeyboard, zIndex };