@khipu/design-system 0.2.0-alpha.62 → 0.2.0-alpha.64

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.62",
3
+ "version": "0.2.0-alpha.64",
4
4
  "description": "Khipu BeerCSS bundle with Material Design 3 and Khipu customizations",
5
- "buildDate": "2026-06-19T16:51:55.096Z",
5
+ "buildDate": "2026-06-22T14:07:48.289Z",
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.62/dist/beercss/khipu-beercss.min.css",
23
- "cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.62/dist/beercss/khipu-beercss.scoped.min.css",
24
- "js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.62/dist/beercss/khipu-beercss.min.js"
22
+ "css": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.64/dist/beercss/khipu-beercss.min.css",
23
+ "cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.64/dist/beercss/khipu-beercss.scoped.min.css",
24
+ "js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.64/dist/beercss/khipu-beercss.min.js"
25
25
  }
26
26
  }
package/dist/index.d.mts CHANGED
@@ -3115,7 +3115,11 @@ declare const KdsSectionNote: React__default.ForwardRefExoticComponent<KdsSectio
3115
3115
  /**
3116
3116
  * Khipu Design System - StatusBlock Component
3117
3117
  *
3118
- * Native HTML status block with BeerCSS styling.
3118
+ * Bloque de resultado (icono + título + descripción) para pantallas de éxito/error/pendiente.
3119
+ *
3120
+ * Spacing: el padding vertical estándar es `--kds-spacing-2` (16px) — el mismo rhythm
3121
+ * inter-elementos que usan `kds-btn-stack` y `kds-hr-dashed`. Usarlo standalone (sin
3122
+ * envolverlo en wrappers con su propio padding) para no duplicar el espacio.
3119
3123
  */
3120
3124
 
3121
3125
  type KdsStatusType = 'success' | 'pending' | 'warn' | 'error' | 'info';
@@ -3123,7 +3127,12 @@ interface KdsStatusBlockProps extends React__default.HTMLAttributes<HTMLDivEleme
3123
3127
  status: KdsStatusType;
3124
3128
  icon?: string;
3125
3129
  title: string;
3126
- description?: string;
3130
+ /**
3131
+ * Texto descriptivo bajo el título. Acepta `ReactNode` para permitir énfasis
3132
+ * en línea (p.ej. un lead-in en `<strong>` seguido del detalle). Se renderiza
3133
+ * dentro de un `<p>`, así que usar solo contenido válido como hijo de párrafo.
3134
+ */
3135
+ description?: React__default.ReactNode;
3127
3136
  inline?: boolean;
3128
3137
  }
3129
3138
  declare const KdsStatusBlock: React__default.ForwardRefExoticComponent<KdsStatusBlockProps & React__default.RefAttributes<HTMLDivElement>>;
package/dist/index.d.ts CHANGED
@@ -3115,7 +3115,11 @@ declare const KdsSectionNote: React__default.ForwardRefExoticComponent<KdsSectio
3115
3115
  /**
3116
3116
  * Khipu Design System - StatusBlock Component
3117
3117
  *
3118
- * Native HTML status block with BeerCSS styling.
3118
+ * Bloque de resultado (icono + título + descripción) para pantallas de éxito/error/pendiente.
3119
+ *
3120
+ * Spacing: el padding vertical estándar es `--kds-spacing-2` (16px) — el mismo rhythm
3121
+ * inter-elementos que usan `kds-btn-stack` y `kds-hr-dashed`. Usarlo standalone (sin
3122
+ * envolverlo en wrappers con su propio padding) para no duplicar el espacio.
3119
3123
  */
3120
3124
 
3121
3125
  type KdsStatusType = 'success' | 'pending' | 'warn' | 'error' | 'info';
@@ -3123,7 +3127,12 @@ interface KdsStatusBlockProps extends React__default.HTMLAttributes<HTMLDivEleme
3123
3127
  status: KdsStatusType;
3124
3128
  icon?: string;
3125
3129
  title: string;
3126
- description?: string;
3130
+ /**
3131
+ * Texto descriptivo bajo el título. Acepta `ReactNode` para permitir énfasis
3132
+ * en línea (p.ej. un lead-in en `<strong>` seguido del detalle). Se renderiza
3133
+ * dentro de un `<p>`, así que usar solo contenido válido como hijo de párrafo.
3134
+ */
3135
+ description?: React__default.ReactNode;
3127
3136
  inline?: boolean;
3128
3137
  }
3129
3138
  declare const KdsStatusBlock: React__default.ForwardRefExoticComponent<KdsStatusBlockProps & React__default.RefAttributes<HTMLDivElement>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khipu/design-system",
3
- "version": "0.2.0-alpha.62",
3
+ "version": "0.2.0-alpha.64",
4
4
  "description": "Khipu Design System - UI components and design tokens for the Khipu payment platform",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",