@univerjs/ui 0.6.3 → 0.6.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/ui",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "private": false,
5
5
  "description": "UniverSheet normal plugin UI manager",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -64,9 +64,9 @@
64
64
  "@wendellhu/redi": "0.17.1",
65
65
  "localforage": "^1.10.0",
66
66
  "rc-notification": "^5.6.2",
67
- "@univerjs/core": "0.6.3",
68
- "@univerjs/design": "0.6.3",
69
- "@univerjs/engine-render": "0.6.3"
67
+ "@univerjs/core": "0.6.4",
68
+ "@univerjs/design": "0.6.4",
69
+ "@univerjs/engine-render": "0.6.4"
70
70
  },
71
71
  "optionalDependencies": {
72
72
  "vue": ">=3.0.0"
@@ -84,7 +84,7 @@
84
84
  "vite": "^6.2.0",
85
85
  "vitest": "^3.0.7",
86
86
  "vue": "^3.5.13",
87
- "@univerjs-infra/shared": "0.6.3"
87
+ "@univerjs-infra/shared": "0.6.4"
88
88
  },
89
89
  "scripts": {
90
90
  "test": "vitest run",
@@ -1,12 +0,0 @@
1
- import { IPopup } from '../../../services/popup/canvas-popup.service';
2
- import { default as React } from 'react';
3
- interface ISingleDOMPopupProps {
4
- popup: IPopup;
5
- children?: React.ReactNode;
6
- }
7
- /**
8
- * Align position is diff from SingleCanvasPopup
9
- */
10
- declare const SingleDOMPopup: ({ popup, children }: ISingleDOMPopupProps) => import("react/jsx-runtime").JSX.Element | null;
11
- export type { ISingleDOMPopupProps };
12
- export { SingleDOMPopup };
@@ -1,13 +0,0 @@
1
- import { CSSProperties } from 'react';
2
- import { ICustomLabelProps } from '../../../components/custom-label/CustomLabel';
3
- export interface ISidebarMethodOptions {
4
- id?: string;
5
- header?: ICustomLabelProps;
6
- children?: ICustomLabelProps;
7
- bodyStyle?: CSSProperties;
8
- footer?: ICustomLabelProps;
9
- visible?: boolean;
10
- width?: number | string;
11
- onClose?: () => void;
12
- onOpen?: () => void;
13
- }