@codemonster-ru/vueforge 0.65.0 → 0.66.0
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/README.md +62 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +3041 -2906
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/app-shell.test.d.ts +1 -0
- package/dist/package/components/app-shell.vue.d.ts +66 -0
- package/dist/package/config/theme-core.d.ts +25 -0
- package/dist/package/themes/default/components/app-shell.d.ts +25 -0
- package/dist/package/themes/default/index.d.ts +24 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { default as SplitButton } from './package/components/split-button.vue';
|
|
|
51
51
|
export { default as ContextMenu } from './package/components/context-menu.vue';
|
|
52
52
|
export { default as CommandPalette } from './package/components/command-palette.vue';
|
|
53
53
|
export { default as NotificationCenter } from './package/components/notification-center.vue';
|
|
54
|
+
export { default as AppShell } from './package/components/app-shell.vue';
|
|
54
55
|
export { default as Tooltip } from './package/components/tooltip.vue';
|
|
55
56
|
export { default as Tour } from './package/components/tour.vue';
|
|
56
57
|
export { default as Skeleton } from './package/components/skeleton.vue';
|