@codemonster-ru/vueforge 0.94.0 → 0.95.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.
Files changed (50) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.d.ts +13 -3
  3. package/dist/index.ts.mjs +13253 -11560
  4. package/dist/index.ts.umd.js +17 -17
  5. package/dist/package/components/__tests__/app-bar.test.d.ts +1 -0
  6. package/dist/package/components/__tests__/footer.test.d.ts +1 -0
  7. package/dist/package/components/__tests__/navigation-rail.test.d.ts +1 -0
  8. package/dist/package/components/__tests__/page-layout.test.d.ts +1 -0
  9. package/dist/package/components/__tests__/resizable-sidebar.test.d.ts +1 -0
  10. package/dist/package/components/__tests__/show-hide.test.d.ts +1 -0
  11. package/dist/package/components/__tests__/split-layout.test.d.ts +1 -0
  12. package/dist/package/components/__tests__/sticky-region.test.d.ts +1 -0
  13. package/dist/package/components/accordion-context.d.ts +2 -0
  14. package/dist/package/components/accordion.vue.d.ts +23 -0
  15. package/dist/package/components/activity-feed.vue.d.ts +2 -0
  16. package/dist/package/components/app-bar.vue.d.ts +47 -0
  17. package/dist/package/components/audit-log-viewer.vue.d.ts +2 -0
  18. package/dist/package/components/block-ui.vue.d.ts +1 -1
  19. package/dist/package/components/cascade-select.vue.d.ts +1 -1
  20. package/dist/package/components/command-palette.vue.d.ts +32 -1
  21. package/dist/package/components/comment-thread.vue.d.ts +2 -0
  22. package/dist/package/components/data-table.vue.d.ts +45 -1
  23. package/dist/package/components/footer.vue.d.ts +45 -0
  24. package/dist/package/components/hide.vue.d.ts +29 -0
  25. package/dist/package/components/kanban-board.vue.d.ts +15 -27
  26. package/dist/package/components/navigation-rail.vue.d.ts +289 -0
  27. package/dist/package/components/notification-center.vue.d.ts +35 -11
  28. package/dist/package/components/page-layout.vue.d.ts +84 -0
  29. package/dist/package/components/rating.vue.d.ts +4 -0
  30. package/dist/package/components/resizable-sidebar.vue.d.ts +73 -0
  31. package/dist/package/components/scheduler.vue.d.ts +2 -0
  32. package/dist/package/components/scroll-panel.vue.d.ts +1 -1
  33. package/dist/package/components/show.vue.d.ts +29 -0
  34. package/dist/package/components/split-layout.vue.d.ts +73 -0
  35. package/dist/package/components/splitter.vue.d.ts +2 -2
  36. package/dist/package/components/sticky-region.vue.d.ts +35 -0
  37. package/dist/package/components/tree-node.vue.d.ts +2 -0
  38. package/dist/package/components/tree-table.vue.d.ts +1 -1
  39. package/dist/package/components/tree.vue.d.ts +21 -0
  40. package/dist/package/config/locale-text.d.ts +10 -0
  41. package/dist/package/config/theme-core.d.ts +123 -0
  42. package/dist/package/themes/default/components/app-bar.d.ts +14 -0
  43. package/dist/package/themes/default/components/footer.d.ts +13 -0
  44. package/dist/package/themes/default/components/navigation-rail.d.ts +28 -0
  45. package/dist/package/themes/default/components/page-layout.d.ts +23 -0
  46. package/dist/package/themes/default/components/resizable-sidebar.d.ts +16 -0
  47. package/dist/package/themes/default/components/split-layout.d.ts +20 -0
  48. package/dist/package/themes/default/components/sticky-region.d.ts +9 -0
  49. package/dist/package/themes/default/index.d.ts +116 -0
  50. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -87,6 +87,15 @@ export { default as ContextMenu } from './package/components/context-menu.vue';
87
87
  export { default as CommandPalette } from './package/components/command-palette.vue';
88
88
  export { default as NotificationCenter } from './package/components/notification-center.vue';
89
89
  export { default as AppShell } from './package/components/app-shell.vue';
90
+ export { default as AppBar } from './package/components/app-bar.vue';
91
+ export { default as NavigationRail } from './package/components/navigation-rail.vue';
92
+ export { default as Footer } from './package/components/footer.vue';
93
+ export { default as PageLayout } from './package/components/page-layout.vue';
94
+ export { default as SplitLayout } from './package/components/split-layout.vue';
95
+ export { default as ResizableSidebar } from './package/components/resizable-sidebar.vue';
96
+ export { default as StickyRegion } from './package/components/sticky-region.vue';
97
+ export { default as Show } from './package/components/show.vue';
98
+ export { default as Hide } from './package/components/hide.vue';
90
99
  export { default as BlockUI } from './package/components/block-ui.vue';
91
100
  export { default as KanbanBoard } from './package/components/kanban-board.vue';
92
101
  export { default as Tooltip } from './package/components/tooltip.vue';
@@ -139,9 +148,9 @@ export { default as Knob } from './package/components/knob.vue';
139
148
  export { default as Terminal } from './package/components/terminal.vue';
140
149
  export { default as PageHeader } from './package/components/page-header.vue';
141
150
  export { default as VirtualScroller } from './package/components/virtual-scroller.vue';
142
- export type { DataTableColumn, DataTableQuery, DataTableBulkAction } from './package/components/data-table.vue';
151
+ export type { DataTableColumn, DataTableQuery, DataTableBulkAction, DataTableSavedFilter, DataTableExportAction, } from './package/components/data-table.vue';
143
152
  export type { FormErrors, FormSubmitErrorMapper, FormSubmitHandler, FormTouched, FormValidateHandler, FormValidateResult, FormValues, } from './package/components/form.vue';
144
- export type { TreeItem, TreeValue } from './package/components/tree.vue';
153
+ export type { TreeItem, TreeValue, TreeSelectionMode } from './package/components/tree.vue';
145
154
  export type { OrgChartNodeItem, OrgChartValue } from './package/components/org-chart.vue';
146
155
  export type { TreeTableColumn, TreeTableNode, TreeTableValue } from './package/components/tree-table.vue';
147
156
  export type { ListboxOption, ListboxOptionGroup, ListboxValue } from './package/components/listbox.vue';
@@ -166,7 +175,8 @@ export type { OverlayBadgeBinding, OverlayBadgeOptions, OverlayBadgePosition, Ov
166
175
  export type { TerminalEntry } from './package/components/terminal.vue';
167
176
  export type { TourStep } from './package/components/tour.vue';
168
177
  export type { WizardStepItem } from './package/components/wizard.vue';
169
- export type { NotificationCenterItem } from './package/components/notification-center.vue';
178
+ export type { NotificationCenterItem, NotificationCenterPersistState, NotificationFilter, NotificationGroupBy, } from './package/components/notification-center.vue';
179
+ export type { CommandPaletteItem, CommandPaletteScope } from './package/components/command-palette.vue';
170
180
  export type { KanbanBoardItem, KanbanColumn } from './package/components/kanban-board.vue';
171
181
  export type { AdvancedFilterField, AdvancedFilterFieldOption, AdvancedFilterFieldType, AdvancedFilterPanelQueryBuilderField, AdvancedFilterPanelQueryPayload, AdvancedFilterPanelState, AdvancedFilterPreset, } from './package/components/advanced-filter-panel-types';
172
182
  export type { SavedViewItem } from './package/components/saved-views-manager-types';