@codemonster-ru/vueforge 0.63.0 → 0.65.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 +136 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.ts.mjs +4776 -4329
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/notification-center.test.d.ts +1 -0
- package/dist/package/components/__tests__/wizard.test.d.ts +1 -0
- package/dist/package/components/filter-chips.vue.d.ts +1 -1
- package/dist/package/components/notification-center.vue.d.ts +87 -0
- package/dist/package/components/wizard-context.d.ts +9 -0
- package/dist/package/components/wizard-step.vue.d.ts +21 -0
- package/dist/package/components/wizard.vue.d.ts +78 -0
- package/dist/package/config/theme-core.d.ts +83 -0
- package/dist/package/themes/default/components/notification-center.d.ts +43 -0
- package/dist/package/themes/default/components/wizard.d.ts +40 -0
- package/dist/package/themes/default/index.d.ts +81 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export { default as Dropdown } from './package/components/dropdown.vue';
|
|
|
50
50
|
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
|
+
export { default as NotificationCenter } from './package/components/notification-center.vue';
|
|
53
54
|
export { default as Tooltip } from './package/components/tooltip.vue';
|
|
54
55
|
export { default as Tour } from './package/components/tour.vue';
|
|
55
56
|
export { default as Skeleton } from './package/components/skeleton.vue';
|
|
@@ -63,6 +64,8 @@ export { default as Slider } from './package/components/slider.vue';
|
|
|
63
64
|
export { default as Splitter } from './package/components/splitter.vue';
|
|
64
65
|
export { default as SplitterPanel } from './package/components/splitter-panel.vue';
|
|
65
66
|
export { default as Stepper } from './package/components/stepper.vue';
|
|
67
|
+
export { default as Wizard } from './package/components/wizard.vue';
|
|
68
|
+
export { default as WizardStep } from './package/components/wizard-step.vue';
|
|
66
69
|
export { default as Timeline } from './package/components/timeline.vue';
|
|
67
70
|
export { default as Rating } from './package/components/rating.vue';
|
|
68
71
|
export { default as Tree } from './package/components/tree.vue';
|
|
@@ -74,6 +77,8 @@ export type { FormErrors, FormTouched, FormValidateHandler, FormValidateResult,
|
|
|
74
77
|
export type { TreeItem, TreeValue } from './package/components/tree.vue';
|
|
75
78
|
export type { TimelineItem } from './package/components/timeline.vue';
|
|
76
79
|
export type { TourStep } from './package/components/tour.vue';
|
|
80
|
+
export type { WizardStepItem } from './package/components/wizard.vue';
|
|
81
|
+
export type { NotificationCenterItem } from './package/components/notification-center.vue';
|
|
77
82
|
export { default as VueForge, setTheme, updateTheme, getTheme } from './package/config/index';
|
|
78
83
|
export type { ThemeTokens, ThemeOptions, ThemePreset } from './package/config/theme-core';
|
|
79
84
|
export { default as DefaultTheme } from './package/themes/default';
|