@codemonster-ru/vueforge 0.59.0 → 0.60.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 +49 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +1193 -1139
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/input-group.test.d.ts +1 -0
- package/dist/package/components/input-addon.vue.d.ts +22 -0
- package/dist/package/components/input-group.vue.d.ts +28 -0
- package/dist/package/config/theme-core.d.ts +20 -0
- package/dist/package/themes/default/components/input-group.d.ts +20 -0
- package/dist/package/themes/default/index.d.ts +19 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export { default as Card } from './package/components/card.vue';
|
|
|
3
3
|
export { default as Menu } from './package/components/menu.vue';
|
|
4
4
|
export { default as Button } from './package/components/button.vue';
|
|
5
5
|
export { default as Input } from './package/components/input.vue';
|
|
6
|
+
export { default as InputGroup } from './package/components/input-group.vue';
|
|
7
|
+
export { default as InputAddon } from './package/components/input-addon.vue';
|
|
6
8
|
export { default as InlineEdit } from './package/components/inline-edit.vue';
|
|
7
9
|
export { default as SearchInput } from './package/components/search-input.vue';
|
|
8
10
|
export { default as MentionInput } from './package/components/mention-input.vue';
|