@codemonster-ru/vueforge 0.66.0 → 0.68.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 +113 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.ts.mjs +4299 -3932
- package/dist/index.ts.umd.js +15 -3
- package/dist/package/components/__tests__/kanban-board.test.d.ts +1 -0
- package/dist/package/components/__tests__/rich-text-editor.test.d.ts +1 -0
- package/dist/package/components/kanban-board.vue.d.ts +90 -0
- package/dist/package/components/rich-text-editor.vue.d.ts +51 -0
- package/dist/package/config/theme-core.d.ts +83 -0
- package/dist/package/themes/default/components/kanban-board.d.ts +41 -0
- package/dist/package/themes/default/components/rich-text-editor.d.ts +42 -0
- package/dist/package/themes/default/index.d.ts +81 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { default as NumberInput } from './package/components/number-input.vue';
|
|
|
16
16
|
export { default as Form } from './package/components/form.vue';
|
|
17
17
|
export { default as FormField } from './package/components/form-field.vue';
|
|
18
18
|
export { default as Textarea } from './package/components/textarea.vue';
|
|
19
|
+
export { default as RichTextEditor } from './package/components/rich-text-editor.vue';
|
|
19
20
|
export { default as FileUpload } from './package/components/file-upload.vue';
|
|
20
21
|
export { default as Select } from './package/components/select.vue';
|
|
21
22
|
export { default as Autocomplete } from './package/components/autocomplete.vue';
|
|
@@ -52,6 +53,7 @@ export { default as ContextMenu } from './package/components/context-menu.vue';
|
|
|
52
53
|
export { default as CommandPalette } from './package/components/command-palette.vue';
|
|
53
54
|
export { default as NotificationCenter } from './package/components/notification-center.vue';
|
|
54
55
|
export { default as AppShell } from './package/components/app-shell.vue';
|
|
56
|
+
export { default as KanbanBoard } from './package/components/kanban-board.vue';
|
|
55
57
|
export { default as Tooltip } from './package/components/tooltip.vue';
|
|
56
58
|
export { default as Tour } from './package/components/tour.vue';
|
|
57
59
|
export { default as Skeleton } from './package/components/skeleton.vue';
|
|
@@ -80,6 +82,7 @@ export type { TimelineItem } from './package/components/timeline.vue';
|
|
|
80
82
|
export type { TourStep } from './package/components/tour.vue';
|
|
81
83
|
export type { WizardStepItem } from './package/components/wizard.vue';
|
|
82
84
|
export type { NotificationCenterItem } from './package/components/notification-center.vue';
|
|
85
|
+
export type { KanbanBoardItem, KanbanColumn } from './package/components/kanban-board.vue';
|
|
83
86
|
export { default as VueForge, setTheme, updateTheme, getTheme } from './package/config/index';
|
|
84
87
|
export type { ThemeTokens, ThemeOptions, ThemePreset } from './package/config/theme-core';
|
|
85
88
|
export { default as DefaultTheme } from './package/themes/default';
|