@douyinfe/semi-ui 2.74.1-alpha.9 → 2.74.3-alpha.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/lib/cjs/form/baseForm.d.ts +1 -1
- package/lib/cjs/form/field.d.ts +1 -1
- package/lib/cjs/modal/confirm.d.ts +4 -4
- package/lib/cjs/typography/title.d.ts +1 -1
- package/lib/es/form/baseForm.d.ts +1 -1
- package/lib/es/form/field.d.ts +1 -1
- package/lib/es/modal/confirm.d.ts +4 -4
- package/lib/es/typography/title.d.ts +1 -1
- package/package.json +3 -3
|
@@ -147,7 +147,7 @@ declare class Form<Values extends Record<string, any> = any> extends BaseCompone
|
|
|
147
147
|
preventScroll?: boolean;
|
|
148
148
|
showRestTagsPopover?: boolean;
|
|
149
149
|
restTagsPopoverProps?: import("../popover").PopoverProps;
|
|
150
|
-
} & Pick<import("../tooltip").TooltipProps, "motion" | "
|
|
150
|
+
} & Pick<import("../tooltip").TooltipProps, "motion" | "stopPropagation" | "getPopupContainer" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay"> & React.RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
|
|
151
151
|
static Checkbox: React.ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../checkbox").CheckboxProps & import("./interface").RCIncludeType>;
|
|
152
152
|
static CheckboxGroup: React.ComponentType<import("utility-types").Subtract<import("../checkbox").CheckboxGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & React.RefAttributes<any>>;
|
|
153
153
|
static Radio: React.ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../radio").RadioProps & import("./interface").RCIncludeType>;
|
package/lib/cjs/form/field.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ declare const FormSelect: import("react").ComponentType<import("utility-types").
|
|
|
88
88
|
preventScroll?: boolean;
|
|
89
89
|
showRestTagsPopover?: boolean;
|
|
90
90
|
restTagsPopoverProps?: import("../popover").PopoverProps;
|
|
91
|
-
} & Pick<import("../tooltip").TooltipProps, "motion" | "
|
|
91
|
+
} & Pick<import("../tooltip").TooltipProps, "motion" | "stopPropagation" | "getPopupContainer" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay"> & import("react").RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
|
|
92
92
|
declare const FormCheckboxGroup: import("react").ComponentType<import("utility-types").Subtract<import("../checkbox/checkboxGroup").CheckboxGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & import("react").RefAttributes<any>>;
|
|
93
93
|
declare const FormCheckbox: import("react").ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../checkbox/checkbox").CheckboxProps & import("./interface").RCIncludeType>;
|
|
94
94
|
declare const FormRadioGroup: import("react").ComponentType<import("utility-types").Subtract<import("../radio/radioGroup").RadioGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & import("react").RefAttributes<any>>;
|
|
@@ -148,14 +148,14 @@ export declare function withWarning(props: ModalReactProps): {
|
|
|
148
148
|
export declare function withError(props: ModalReactProps): {
|
|
149
149
|
children?: React.ReactNode;
|
|
150
150
|
motion?: boolean;
|
|
151
|
+
title?: React.ReactNode;
|
|
152
|
+
size?: import("@douyinfe/semi-foundation/lib/cjs/modal/modalFoundation").Size;
|
|
151
153
|
style?: React.CSSProperties;
|
|
152
154
|
className?: string;
|
|
153
155
|
getPopupContainer?: () => HTMLElement;
|
|
154
156
|
footer?: React.ReactNode;
|
|
155
157
|
header?: React.ReactNode;
|
|
156
|
-
title?: React.ReactNode;
|
|
157
158
|
direction?: any;
|
|
158
|
-
size?: import("@douyinfe/semi-foundation/lib/cjs/modal/modalFoundation").Size;
|
|
159
159
|
visible?: boolean;
|
|
160
160
|
mask?: boolean;
|
|
161
161
|
zIndex?: number;
|
|
@@ -212,11 +212,11 @@ export declare function withError(props: ModalReactProps): {
|
|
|
212
212
|
contentClassName?: string;
|
|
213
213
|
onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
214
214
|
onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
215
|
+
title?: string;
|
|
216
|
+
name?: string;
|
|
215
217
|
value?: string | number | readonly string[];
|
|
216
218
|
form?: string;
|
|
217
219
|
slot?: string;
|
|
218
|
-
title?: string;
|
|
219
|
-
name?: string;
|
|
220
220
|
prefix?: string;
|
|
221
221
|
dangerouslySetInnerHTML?: {
|
|
222
222
|
__html: string | TrustedHTML;
|
|
@@ -61,7 +61,7 @@ export default class Title extends PureComponent<TitleProps> {
|
|
|
61
61
|
underline: PropTypes.Requireable<boolean>;
|
|
62
62
|
strong: PropTypes.Requireable<boolean>;
|
|
63
63
|
type: PropTypes.Requireable<"warning" | "success" | "primary" | "secondary" | "danger" | "tertiary" | "quaternary">;
|
|
64
|
-
heading: PropTypes.Requireable<
|
|
64
|
+
heading: PropTypes.Requireable<1 | 2 | 3 | 4 | 5 | 6>;
|
|
65
65
|
style: PropTypes.Requireable<object>;
|
|
66
66
|
className: PropTypes.Requireable<string>;
|
|
67
67
|
component: PropTypes.Requireable<string>;
|
|
@@ -147,7 +147,7 @@ declare class Form<Values extends Record<string, any> = any> extends BaseCompone
|
|
|
147
147
|
preventScroll?: boolean;
|
|
148
148
|
showRestTagsPopover?: boolean;
|
|
149
149
|
restTagsPopoverProps?: import("../popover").PopoverProps;
|
|
150
|
-
} & Pick<import("../tooltip").TooltipProps, "motion" | "
|
|
150
|
+
} & Pick<import("../tooltip").TooltipProps, "motion" | "stopPropagation" | "getPopupContainer" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay"> & React.RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
|
|
151
151
|
static Checkbox: React.ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../checkbox").CheckboxProps & import("./interface").RCIncludeType>;
|
|
152
152
|
static CheckboxGroup: React.ComponentType<import("utility-types").Subtract<import("../checkbox").CheckboxGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & React.RefAttributes<any>>;
|
|
153
153
|
static Radio: React.ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../radio").RadioProps & import("./interface").RCIncludeType>;
|
package/lib/es/form/field.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ declare const FormSelect: import("react").ComponentType<import("utility-types").
|
|
|
88
88
|
preventScroll?: boolean;
|
|
89
89
|
showRestTagsPopover?: boolean;
|
|
90
90
|
restTagsPopoverProps?: import("../popover").PopoverProps;
|
|
91
|
-
} & Pick<import("../tooltip").TooltipProps, "motion" | "
|
|
91
|
+
} & Pick<import("../tooltip").TooltipProps, "motion" | "stopPropagation" | "getPopupContainer" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay"> & import("react").RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
|
|
92
92
|
declare const FormCheckboxGroup: import("react").ComponentType<import("utility-types").Subtract<import("../checkbox/checkboxGroup").CheckboxGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & import("react").RefAttributes<any>>;
|
|
93
93
|
declare const FormCheckbox: import("react").ComponentType<import("utility-types").Subtract<import("./interface").CommonFieldProps, import("./interface").RadioCheckboxExcludeProps> & import("../checkbox/checkbox").CheckboxProps & import("./interface").RCIncludeType>;
|
|
94
94
|
declare const FormRadioGroup: import("react").ComponentType<import("utility-types").Subtract<import("../radio/radioGroup").RadioGroupProps, import("./interface").CommonexcludeType> & import("./interface").CommonFieldProps & import("react").RefAttributes<any>>;
|
|
@@ -148,14 +148,14 @@ export declare function withWarning(props: ModalReactProps): {
|
|
|
148
148
|
export declare function withError(props: ModalReactProps): {
|
|
149
149
|
children?: React.ReactNode;
|
|
150
150
|
motion?: boolean;
|
|
151
|
+
title?: React.ReactNode;
|
|
152
|
+
size?: import("@douyinfe/semi-foundation/lib/es/modal/modalFoundation").Size;
|
|
151
153
|
style?: React.CSSProperties;
|
|
152
154
|
className?: string;
|
|
153
155
|
getPopupContainer?: () => HTMLElement;
|
|
154
156
|
footer?: React.ReactNode;
|
|
155
157
|
header?: React.ReactNode;
|
|
156
|
-
title?: React.ReactNode;
|
|
157
158
|
direction?: any;
|
|
158
|
-
size?: import("@douyinfe/semi-foundation/lib/es/modal/modalFoundation").Size;
|
|
159
159
|
visible?: boolean;
|
|
160
160
|
mask?: boolean;
|
|
161
161
|
zIndex?: number;
|
|
@@ -212,11 +212,11 @@ export declare function withError(props: ModalReactProps): {
|
|
|
212
212
|
contentClassName?: string;
|
|
213
213
|
onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
214
214
|
onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
215
|
+
title?: string;
|
|
216
|
+
name?: string;
|
|
215
217
|
value?: string | number | readonly string[];
|
|
216
218
|
form?: string;
|
|
217
219
|
slot?: string;
|
|
218
|
-
title?: string;
|
|
219
|
-
name?: string;
|
|
220
220
|
prefix?: string;
|
|
221
221
|
dangerouslySetInnerHTML?: {
|
|
222
222
|
__html: string | TrustedHTML;
|
|
@@ -61,7 +61,7 @@ export default class Title extends PureComponent<TitleProps> {
|
|
|
61
61
|
underline: PropTypes.Requireable<boolean>;
|
|
62
62
|
strong: PropTypes.Requireable<boolean>;
|
|
63
63
|
type: PropTypes.Requireable<"warning" | "success" | "primary" | "secondary" | "danger" | "tertiary" | "quaternary">;
|
|
64
|
-
heading: PropTypes.Requireable<
|
|
64
|
+
heading: PropTypes.Requireable<1 | 2 | 3 | 4 | 5 | 6>;
|
|
65
65
|
style: PropTypes.Requireable<object>;
|
|
66
66
|
className: PropTypes.Requireable<string>;
|
|
67
67
|
component: PropTypes.Requireable<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douyinfe/semi-ui",
|
|
3
|
-
"version": "2.74.
|
|
3
|
+
"version": "2.74.3-alpha.0",
|
|
4
4
|
"description": "A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@dnd-kit/utilities": "^3.2.1",
|
|
23
23
|
"@douyinfe/semi-animation": "2.74.0",
|
|
24
24
|
"@douyinfe/semi-animation-react": "2.74.0",
|
|
25
|
-
"@douyinfe/semi-foundation": "2.74.
|
|
25
|
+
"@douyinfe/semi-foundation": "2.74.3-alpha.0",
|
|
26
26
|
"@douyinfe/semi-icons": "2.74.0",
|
|
27
27
|
"@douyinfe/semi-illustrations": "2.74.0",
|
|
28
28
|
"@douyinfe/semi-theme-default": "2.74.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
],
|
|
79
79
|
"author": "",
|
|
80
80
|
"license": "MIT",
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "9539b2b69922ab80561129906ce90298abf57aef",
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@babel/plugin-proposal-decorators": "^7.15.8",
|
|
84
84
|
"@babel/plugin-transform-runtime": "^7.15.8",
|