@univerjs/design 0.1.16 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/design",
3
- "version": "0.1.16",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "UI component library for building exceptional Univer.",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -59,13 +59,13 @@
59
59
  "@rc-component/color-picker": "^1.5.3",
60
60
  "@rc-component/trigger": "^2.2.0",
61
61
  "@types/react-mentions": "^4.1.13",
62
- "@univerjs/icons": "^0.1.57",
62
+ "@univerjs/icons": "^0.1.58",
63
63
  "rc-dialog": "^9.5.2",
64
64
  "rc-dropdown": "^4.2.0",
65
65
  "rc-input": "^1.5.1",
66
66
  "rc-input-number": "^9.1.0",
67
- "rc-menu": "^9.14.0",
68
- "rc-picker": "^4.6.3",
67
+ "rc-menu": "^9.14.1",
68
+ "rc-picker": "^4.6.7",
69
69
  "rc-segmented": "^2.3.0",
70
70
  "rc-select": "^14.15.0",
71
71
  "rc-textarea": "^1.7.0",
@@ -87,10 +87,10 @@
87
87
  "less": "^4.2.0",
88
88
  "react": "18.3.1",
89
89
  "react-dom": "18.3.1",
90
- "typescript": "^5.4.5",
91
- "vite": "^5.3.1",
90
+ "typescript": "^5.5.3",
91
+ "vite": "^5.3.3",
92
92
  "vitest": "^1.6.0",
93
- "@univerjs/shared": "0.1.16"
93
+ "@univerjs/shared": "0.2.0"
94
94
  },
95
95
  "univerSpace": {
96
96
  ".": {
@@ -1,17 +0,0 @@
1
- import { default as React } from 'react';
2
-
3
- export interface IContainerProps {
4
- children?: React.ReactNode;
5
- /** Semantic DOM class */
6
- className?: string;
7
- /** Semantic DOM style */
8
- style?: React.CSSProperties;
9
- /** Set the handler to handle `click` event */
10
- onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
11
- /** Set the handler to handle `onContextMenu` event */
12
- onContextMenu?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
13
- }
14
- /**
15
- * Container Component
16
- */
17
- export declare const Container: React.ForwardRefExoticComponent<IContainerProps & React.RefAttributes<HTMLDivElement>>;
@@ -1,9 +0,0 @@
1
- import { Meta } from '@storybook/react';
2
- import { default as React } from 'react';
3
- import { Container } from './Container';
4
-
5
- declare const meta: Meta<typeof Container>;
6
- export default meta;
7
- export declare const Playground: {
8
- render(): React.JSX.Element;
9
- };
@@ -1,7 +0,0 @@
1
- import { default as React } from 'react';
2
-
3
- interface IProps {
4
- theme: Record<string, string>;
5
- }
6
- export declare function Palette(props: IProps): React.JSX.Element;
7
- export {};