@khipu/design-system 0.2.0-alpha.61 → 0.2.0-alpha.63
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 +12 -1
- package/dist/beercss/khipu-beercss.min.css +1 -1
- package/dist/beercss/khipu-beercss.scoped.css +12 -1
- package/dist/beercss/khipu-beercss.scoped.min.css +1 -1
- package/dist/beercss/metadata.json +5 -5
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -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.63",
|
|
4
4
|
"description": "Khipu BeerCSS bundle with Material Design 3 and Khipu customizations",
|
|
5
|
-
"buildDate": "2026-06-
|
|
5
|
+
"buildDate": "2026-06-22T13:53:20.963Z",
|
|
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.63/dist/beercss/khipu-beercss.min.css",
|
|
23
|
+
"cssScoped": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.63/dist/beercss/khipu-beercss.scoped.min.css",
|
|
24
|
+
"js": "https://cdn.jsdelivr.net/npm/@khipu/design-system@0.2.0-alpha.63/dist/beercss/khipu-beercss.min.js"
|
|
25
25
|
}
|
|
26
26
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -3123,7 +3123,12 @@ interface KdsStatusBlockProps extends React__default.HTMLAttributes<HTMLDivEleme
|
|
|
3123
3123
|
status: KdsStatusType;
|
|
3124
3124
|
icon?: string;
|
|
3125
3125
|
title: string;
|
|
3126
|
-
|
|
3126
|
+
/**
|
|
3127
|
+
* Texto descriptivo bajo el título. Acepta `ReactNode` para permitir énfasis
|
|
3128
|
+
* en línea (p.ej. un lead-in en `<strong>` seguido del detalle). Se renderiza
|
|
3129
|
+
* dentro de un `<p>`, así que usar solo contenido válido como hijo de párrafo.
|
|
3130
|
+
*/
|
|
3131
|
+
description?: React__default.ReactNode;
|
|
3127
3132
|
inline?: boolean;
|
|
3128
3133
|
}
|
|
3129
3134
|
declare const KdsStatusBlock: React__default.ForwardRefExoticComponent<KdsStatusBlockProps & React__default.RefAttributes<HTMLDivElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3123,7 +3123,12 @@ interface KdsStatusBlockProps extends React__default.HTMLAttributes<HTMLDivEleme
|
|
|
3123
3123
|
status: KdsStatusType;
|
|
3124
3124
|
icon?: string;
|
|
3125
3125
|
title: string;
|
|
3126
|
-
|
|
3126
|
+
/**
|
|
3127
|
+
* Texto descriptivo bajo el título. Acepta `ReactNode` para permitir énfasis
|
|
3128
|
+
* en línea (p.ej. un lead-in en `<strong>` seguido del detalle). Se renderiza
|
|
3129
|
+
* dentro de un `<p>`, así que usar solo contenido válido como hijo de párrafo.
|
|
3130
|
+
*/
|
|
3131
|
+
description?: React__default.ReactNode;
|
|
3127
3132
|
inline?: boolean;
|
|
3128
3133
|
}
|
|
3129
3134
|
declare const KdsStatusBlock: React__default.ForwardRefExoticComponent<KdsStatusBlockProps & React__default.RefAttributes<HTMLDivElement>>;
|
package/package.json
CHANGED