@univerjs/ui 0.1.9 → 0.1.11
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/lib/cjs/index.js +14 -14
- package/lib/es/index.js +3632 -3532
- package/lib/types/common/component-manager.d.ts +2 -2
- package/lib/types/common/menu-hidden-observable.d.ts +2 -2
- package/lib/types/components/custom-label/CustomLabel.d.ts +2 -2
- package/lib/types/components/editor/TextEditor.d.ts +2 -2
- package/lib/types/components/font-family/FontFamily.d.ts +1 -1
- package/lib/types/components/font-family/FontFamilyItem.d.ts +1 -1
- package/lib/types/components/font-size/FontSize.d.ts +1 -1
- package/lib/types/components/font-size/interface.d.ts +1 -1
- package/lib/types/components/hooks/layout.d.ts +14 -0
- package/lib/types/components/hooks/observable.d.ts +2 -2
- package/lib/types/components/menu/Menu.d.ts +6 -1
- package/lib/types/components/notification/Notification.d.ts +2 -2
- package/lib/types/components/notification/Notification.stories.d.ts +2 -2
- package/lib/types/components/range-selector/RangeSelector.d.ts +1 -1
- package/lib/types/controllers/error/error.controller.d.ts +1 -1
- package/lib/types/controllers/menus/menus.d.ts +1 -1
- package/lib/types/controllers/shared-shortcut.controller.d.ts +3 -3
- package/lib/types/controllers/shortcut-display/menu.d.ts +1 -1
- package/lib/types/controllers/shortcut-display/shortcut-panel.controller.d.ts +4 -4
- package/lib/types/controllers/ui/ui-desktop.controller.d.ts +6 -6
- package/lib/types/index.d.ts +2 -2
- package/lib/types/locale/index.d.ts +1 -0
- package/lib/types/locale/ru-RU.d.ts +4 -0
- package/lib/types/services/before-close/before-close.service.d.ts +1 -1
- package/lib/types/services/clipboard/clipboard-interface.service.d.ts +1 -1
- package/lib/types/services/confirm/confirm.service.d.ts +2 -2
- package/lib/types/services/confirm/desktop-confirm.service.d.ts +3 -3
- package/lib/types/services/contextmenu/contextmenu.service.d.ts +2 -2
- package/lib/types/services/dialog/desktop-dialog.service.d.ts +7 -7
- package/lib/types/services/dialog/dialog.service.d.ts +3 -3
- package/lib/types/services/editor/editor.service.d.ts +4 -4
- package/lib/types/services/global-zone/desktop-global-zone.service.d.ts +4 -4
- package/lib/types/services/global-zone/global-zone.service.d.ts +1 -1
- package/lib/types/services/layout/layout.service.d.ts +4 -2
- package/lib/types/services/menu/menu.d.ts +1 -1
- package/lib/types/services/menu/menu.service.d.ts +4 -4
- package/lib/types/services/message/__testing__/mock-message.service.d.ts +2 -2
- package/lib/types/services/message/desktop-message.service.d.ts +2 -2
- package/lib/types/services/message/message.service.d.ts +1 -1
- package/lib/types/services/notification/desktop-notification.service.d.ts +2 -2
- package/lib/types/services/notification/notification.service.d.ts +1 -1
- package/lib/types/services/popup/canvas-popup.service.d.ts +1 -1
- package/lib/types/services/progress/progress.service.d.ts +2 -2
- package/lib/types/services/range-selector/range-selector.service.d.ts +2 -2
- package/lib/types/services/shortcut/shortcut.service.d.ts +4 -4
- package/lib/types/services/sidebar/desktop-sidebar.service.d.ts +3 -4
- package/lib/types/services/sidebar/sidebar.service.d.ts +2 -3
- package/lib/types/services/zen-zone/desktop-zen-zone.service.d.ts +4 -4
- package/lib/types/services/zen-zone/zen-zone.service.d.ts +1 -1
- package/lib/types/ui-plugin.d.ts +3 -2
- package/lib/types/views/App.d.ts +1 -1
- package/lib/types/views/components/confirm-part/interface.d.ts +1 -1
- package/lib/types/views/components/dialog-part/interface.d.ts +1 -1
- package/lib/types/views/components/doc-bars/Toolbar.d.ts +1 -1
- package/lib/types/views/components/doc-bars/ToolbarItem.d.ts +1 -1
- package/lib/umd/index.js +14 -14
- package/package.json +18 -18
- package/lib/types/views/hooks/active.d.ts +0 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IDisplayMenuItem, IMenuItem } from '../../../services/menu/menu';
|
|
2
1
|
import { default as React } from 'react';
|
|
2
|
+
import { IDisplayMenuItem, IMenuItem } from '../../../services/menu/menu';
|
|
3
3
|
|
|
4
4
|
export declare const ToolbarItem: React.ForwardRefExoticComponent<IDisplayMenuItem<IMenuItem> & React.RefAttributes<any>>;
|