@codemonster-ru/vueforge 0.69.0 → 0.70.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 +39 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.ts.mjs +1143 -1074
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/spinner.test.d.ts +1 -0
- package/dist/package/components/spinner.vue.d.ts +33 -0
- package/dist/package/config/theme-core.d.ts +37 -0
- package/dist/package/themes/default/components/spinner.d.ts +37 -0
- package/dist/package/themes/default/index.d.ts +36 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export { default as Badge } from './package/components/badge.vue';
|
|
|
62
62
|
export { default as Chip } from './package/components/chip.vue';
|
|
63
63
|
export { default as FilterChips } from './package/components/filter-chips.vue';
|
|
64
64
|
export { default as Avatar } from './package/components/avatar.vue';
|
|
65
|
+
export { default as Spinner } from './package/components/spinner.vue';
|
|
65
66
|
export { default as DataTable } from './package/components/data-table.vue';
|
|
66
67
|
export { default as Slider } from './package/components/slider.vue';
|
|
67
68
|
export { default as Splitter } from './package/components/splitter.vue';
|
|
@@ -77,7 +78,7 @@ export { default as Breadcrumbs } from './package/components/breadcrumbs.vue';
|
|
|
77
78
|
export { default as Divider } from './package/components/divider.vue';
|
|
78
79
|
export { default as VirtualScroller } from './package/components/virtual-scroller.vue';
|
|
79
80
|
export type { DataTableColumn } from './package/components/data-table.vue';
|
|
80
|
-
export type { FormErrors, FormTouched, FormValidateHandler, FormValidateResult, FormValues } from './package/components/form.vue';
|
|
81
|
+
export type { FormErrors, FormTouched, FormValidateHandler, FormValidateResult, FormValues, } from './package/components/form.vue';
|
|
81
82
|
export type { TreeItem, TreeValue } from './package/components/tree.vue';
|
|
82
83
|
export type { TimelineItem } from './package/components/timeline.vue';
|
|
83
84
|
export type { TourStep } from './package/components/tour.vue';
|