@codemonster-ru/vueforge 0.72.0 → 0.74.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 +34 -3279
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +1912 -1843
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/container.test.d.ts +1 -0
- package/dist/package/components/__tests__/section.test.d.ts +1 -0
- package/dist/package/components/button-group.vue.d.ts +1 -1
- package/dist/package/components/button.vue.d.ts +1 -1
- package/dist/package/components/chip.vue.d.ts +1 -1
- package/dist/package/components/container.vue.d.ts +29 -0
- package/dist/package/components/date-range-picker.vue.d.ts +1 -1
- package/dist/package/components/empty-state.vue.d.ts +1 -1
- package/dist/package/components/form-field.vue.d.ts +1 -1
- package/dist/package/components/section.vue.d.ts +29 -0
- package/dist/package/components/stepper.vue.d.ts +1 -1
- package/dist/package/components/timeline.vue.d.ts +1 -1
- package/dist/package/components/tree-select.vue.d.ts +1 -1
- package/dist/package/components/tree.vue.d.ts +1 -1
- package/dist/package/config/theme-core.d.ts +21 -0
- package/dist/package/themes/default/components/container.d.ts +11 -0
- package/dist/package/themes/default/components/section.d.ts +10 -0
- package/dist/package/themes/default/index.d.ts +19 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export { default as Link } from './package/components/link.vue';
|
|
2
2
|
export { default as Card } from './package/components/card.vue';
|
|
3
|
+
export { default as Container } from './package/components/container.vue';
|
|
4
|
+
export { default as Section } from './package/components/section.vue';
|
|
3
5
|
export { default as Menu } from './package/components/menu.vue';
|
|
4
6
|
export { default as Button } from './package/components/button.vue';
|
|
5
7
|
export { default as ButtonGroup } from './package/components/button-group.vue';
|