@aerogel/core 0.1.1-next.bad775a386a94fedbee1d575ee1f4fb99d1f5bab → 0.1.1-next.c3c3c32e9b674ba4ae2d33973d4659e37c863c35
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/aerogel-core.d.ts +3 -1
- package/dist/aerogel-core.js +133 -123
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +1 -1
- package/src/components/AppLayout.vue +1 -1
- package/src/components/ui/Details.vue +16 -6
- package/src/components/ui/ProgressBar.vue +1 -1
- package/src/index.css +1 -0
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -455,8 +455,9 @@ declare type __VLS_Props_6 = InputProps & {
|
|
|
455
455
|
};
|
|
456
456
|
|
|
457
457
|
declare type __VLS_Props_7 = {
|
|
458
|
-
label
|
|
458
|
+
label?: string;
|
|
459
459
|
contentClass?: HTMLAttributes['class'];
|
|
460
|
+
summaryClass?: HTMLAttributes['class'];
|
|
460
461
|
};
|
|
461
462
|
|
|
462
463
|
declare type __VLS_Props_8 = {
|
|
@@ -646,6 +647,7 @@ declare function __VLS_template_18(): {
|
|
|
646
647
|
declare function __VLS_template_19(): {
|
|
647
648
|
attrs: Partial<{}>;
|
|
648
649
|
slots: {
|
|
650
|
+
label?(_: {}): any;
|
|
649
651
|
default?(_: {}): any;
|
|
650
652
|
};
|
|
651
653
|
refs: {};
|