@khipu/design-system 0.2.0-alpha.63 → 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.
- package/dist/beercss/khipu-beercss.css +5 -2
- package/dist/beercss/khipu-beercss.min.css +1 -1
- package/dist/beercss/khipu-beercss.scoped.css +5 -2
- package/dist/beercss/khipu-beercss.scoped.min.css +1 -1
- package/dist/beercss/metadata.json +5 -5
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khipu/design-system/beercss",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.64",
|
|
4
4
|
"description": "Khipu BeerCSS bundle with Material Design 3 and Khipu customizations",
|
|
5
|
-
"buildDate": "2026-06-
|
|
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.
|
|
23
|
-
"cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.
|
|
24
|
-
"js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.
|
|
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
|
-
*
|
|
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';
|
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
|
-
*
|
|
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';
|
package/package.json
CHANGED