design-system-next 2.21.10 → 2.22.2
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/design-system-next.es.d.ts +3 -0
- package/dist/design-system-next.es.js +4493 -4308
- package/dist/design-system-next.es.js.gz +0 -0
- package/dist/design-system-next.umd.js +12 -12
- package/dist/design-system-next.umd.js.gz +0 -0
- package/dist/main.css +1 -1
- package/dist/main.css.gz +0 -0
- package/package.json +1 -1
- package/src/components/list/list-item/list-item.ts +12 -0
- package/src/components/list/list-item/list-item.vue +20 -9
- package/src/components/list/list-item/use-list-item.ts +37 -1
- package/src/components/list/list.ts +12 -0
- package/src/components/list/list.vue +6 -0
- package/src/components/progress-bar/progress-bar.ts +21 -0
- package/src/components/progress-bar/progress-bar.vue +26 -8
- package/src/components/progress-bar/use-progress-bar.ts +31 -2
- package/src/components/sidepanel/sidepanel.ts +28 -14
- package/src/components/sidepanel/sidepanel.vue +10 -2
- package/src/components/sidepanel/stacking-sidepanel/stacking-sidepanel.vue +13 -2
- package/src/components/sidepanel/stacking-sidepanel/use-stacking-sidepanel.ts +37 -6
- package/src/components/sidepanel/use-sidepanel.ts +26 -11
|
@@ -169,6 +169,9 @@ declare const __VLS_component_33: DefineComponent<any, {}, {}, {}, {}, Component
|
|
|
169
169
|
declare const __VLS_component_34: DefineComponent<any, {
|
|
170
170
|
showPanel: any;
|
|
171
171
|
hidePanel: any;
|
|
172
|
+
handleExpandPanel: any;
|
|
173
|
+
expandedPanel: any;
|
|
174
|
+
activePanel: any;
|
|
172
175
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, any, string, PublicProps, any, any, {}, {}, {}, string, ComponentProvideOptions, true, any, any>;
|
|
173
176
|
|
|
174
177
|
declare const __VLS_component_35: DefineComponent<{}, {
|