@douyinfe/semi-ui 2.92.1 → 2.92.2

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.
@@ -16,6 +16,15 @@ Version:Major.Minor.Patch (follow the **Semver** specification)
16
16
 
17
17
  ---
18
18
 
19
+ #### 🎉 2.92.2 (2026-03-04)
20
+ - 【Fix】
21
+ - Fix `@douyinfe/semi-ui/react19-adapter` import failure due to missing exports declaration in package.json
22
+ - Fix compilation failure caused by missing `@douyinfe/semi-illustrations` path mapping in `packages/semi-ui/tsconfig.json`
23
+
24
+ #### 🎉 2.92.1 (2026-03-04)
25
+ - 【Fix】
26
+ - Align AIChatDialogue PropTypes with TypeScript interface definition [#3141](https://github.com/DouyinFE/semi-design/pull/3141)
27
+
19
28
  #### 🎉 2.92.0 (2026-03-03)
20
29
  - 【Feat】
21
30
  - Unified React 19 support with adapter pattern, React 19 users only need to import `@douyinfe/semi-ui/react19-adapter` [#3140](https://github.com/DouyinFE/semi-design/pull/3140)
@@ -14,6 +14,15 @@ Semi 版本号遵循 **Semver** 规范(主版本号 - 次版本号 - 修订版
14
14
  - 不同版本间的详细关系,可查阅 [FAQ](/zh-CN/start/faq)
15
15
 
16
16
 
17
+ #### 🎉 2.92.2 (2026-03-04)
18
+ - 【Fix】
19
+ - 修复 `@douyinfe/semi-ui/react19-adapter` 因 package.json exports 缺少声明导致无法导入的问题
20
+ - 修复 `packages/semi-ui/tsconfig.json` 缺少 `@douyinfe/semi-illustrations` 路径映射导致编译失败的问题
21
+
22
+ #### 🎉 2.92.1 (2026-03-04)
23
+ - 【Fix】
24
+ - 修复 AIChatDialogue PropTypes 与 TypeScript 类型定义不一致的问题 [#3141](https://github.com/DouyinFE/semi-design/pull/3141)
25
+
17
26
  #### 🎉 2.92.0 (2026-03-03)
18
27
  - 【Feat】
19
28
  - 统一 React 19 支持方案,使用 adapter 模式替代双包方案,React 19 用户只需导入 `@douyinfe/semi-ui/react19-adapter` [#3140](https://github.com/DouyinFE/semi-design/pull/3140)
@@ -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, "stopPropagation" | "motion" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay" | "getPopupContainer"> & React.RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
150
+ } & Pick<import("../tooltip").TooltipProps, "stopPropagation" | "motion" | "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>;
@@ -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, "stopPropagation" | "motion" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay" | "getPopupContainer"> & import("react").RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
91
+ } & Pick<import("../tooltip").TooltipProps, "stopPropagation" | "motion" | "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>>;
@@ -155,18 +155,18 @@ export declare function withError(props: ModalReactProps): {
155
155
  style?: React.CSSProperties;
156
156
  className?: string;
157
157
  motion?: boolean;
158
- visible?: boolean;
158
+ getPopupContainer?: () => HTMLElement;
159
159
  footer?: React.ReactNode;
160
160
  header?: React.ReactNode;
161
+ direction?: any;
162
+ visible?: boolean;
161
163
  mask?: boolean;
162
164
  zIndex?: number;
163
165
  width?: string | number;
164
166
  height?: string | number;
165
167
  content?: React.ReactNode;
166
- direction?: any;
167
168
  closeOnEsc?: boolean;
168
169
  preventScroll?: boolean;
169
- getPopupContainer?: () => HTMLElement;
170
170
  afterClose?: () => void;
171
171
  keepDOM?: boolean;
172
172
  icon: string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element;
@@ -220,6 +220,8 @@ export declare function withError(props: ModalReactProps): {
220
220
  value?: string | number | readonly string[];
221
221
  onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
222
222
  onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
223
+ form?: string;
224
+ slot?: string;
223
225
  prefix?: string;
224
226
  dangerouslySetInnerHTML?: {
225
227
  __html: string | TrustedHTML;
@@ -379,8 +381,6 @@ export declare function withError(props: ModalReactProps): {
379
381
  onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement>;
380
382
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement>;
381
383
  hidden?: boolean;
382
- form?: string;
383
- slot?: string;
384
384
  contextMenu?: string;
385
385
  defaultValue?: string | number | readonly string[];
386
386
  accessKey?: 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, "stopPropagation" | "motion" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay" | "getPopupContainer"> & React.RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
150
+ } & Pick<import("../tooltip").TooltipProps, "stopPropagation" | "motion" | "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>;
@@ -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, "stopPropagation" | "motion" | "spacing" | "mouseEnterDelay" | "autoAdjustOverflow" | "mouseLeaveDelay" | "getPopupContainer"> & import("react").RefAttributes<any> & import("./interface").CommonFieldProps, import("./interface").CommonexcludeType>> & import("./interface").SelectStatic;
91
+ } & Pick<import("../tooltip").TooltipProps, "stopPropagation" | "motion" | "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>>;
@@ -155,18 +155,18 @@ export declare function withError(props: ModalReactProps): {
155
155
  style?: React.CSSProperties;
156
156
  className?: string;
157
157
  motion?: boolean;
158
- visible?: boolean;
158
+ getPopupContainer?: () => HTMLElement;
159
159
  footer?: React.ReactNode;
160
160
  header?: React.ReactNode;
161
+ direction?: any;
162
+ visible?: boolean;
161
163
  mask?: boolean;
162
164
  zIndex?: number;
163
165
  width?: string | number;
164
166
  height?: string | number;
165
167
  content?: React.ReactNode;
166
- direction?: any;
167
168
  closeOnEsc?: boolean;
168
169
  preventScroll?: boolean;
169
- getPopupContainer?: () => HTMLElement;
170
170
  afterClose?: () => void;
171
171
  keepDOM?: boolean;
172
172
  icon: string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element;
@@ -220,6 +220,8 @@ export declare function withError(props: ModalReactProps): {
220
220
  value?: string | number | readonly string[];
221
221
  onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
222
222
  onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
223
+ form?: string;
224
+ slot?: string;
223
225
  prefix?: string;
224
226
  dangerouslySetInnerHTML?: {
225
227
  __html: string | TrustedHTML;
@@ -379,8 +381,6 @@ export declare function withError(props: ModalReactProps): {
379
381
  onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement>;
380
382
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement>;
381
383
  hidden?: boolean;
382
- form?: string;
383
- slot?: string;
384
384
  contextMenu?: string;
385
385
  defaultValue?: string | number | readonly string[];
386
386
  accessKey?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@douyinfe/semi-ui",
3
- "version": "2.92.1",
3
+ "version": "2.92.2",
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",
@@ -2170,6 +2170,11 @@
2170
2170
  "import": "./lib/es/index.js",
2171
2171
  "require": "./lib/cjs/index.js"
2172
2172
  },
2173
+ "./react19-adapter": {
2174
+ "types": "./lib/es/react19-adapter.d.ts",
2175
+ "import": "./lib/es/react19-adapter.js",
2176
+ "require": "./lib/cjs/react19-adapter.js"
2177
+ },
2173
2178
  "./lib/es/_base/base.css": {
2174
2179
  "import": "./lib/es/_base/base.css",
2175
2180
  "require": "./lib/cjs/_base/base.css",
@@ -7983,12 +7988,12 @@
7983
7988
  "@dnd-kit/core": "^6.0.8",
7984
7989
  "@dnd-kit/sortable": "^7.0.2",
7985
7990
  "@dnd-kit/utilities": "^3.2.1",
7986
- "@douyinfe/semi-animation": "2.92.1",
7987
- "@douyinfe/semi-animation-react": "2.92.1",
7988
- "@douyinfe/semi-foundation": "2.92.1",
7989
- "@douyinfe/semi-icons": "2.92.1",
7990
- "@douyinfe/semi-illustrations": "2.92.1",
7991
- "@douyinfe/semi-theme-default": "2.92.1",
7991
+ "@douyinfe/semi-animation": "2.92.2",
7992
+ "@douyinfe/semi-animation-react": "2.92.2",
7993
+ "@douyinfe/semi-foundation": "2.92.2",
7994
+ "@douyinfe/semi-icons": "2.92.2",
7995
+ "@douyinfe/semi-illustrations": "2.92.2",
7996
+ "@douyinfe/semi-theme-default": "2.92.2",
7992
7997
  "@tiptap/core": "^3.10.7",
7993
7998
  "@tiptap/extension-document": "^3.10.7",
7994
7999
  "@tiptap/extension-hard-break": "^3.10.7",
@@ -8058,7 +8063,7 @@
8058
8063
  ],
8059
8064
  "author": "",
8060
8065
  "license": "MIT",
8061
- "gitHead": "4819138bf2ef9f2681a1ca2a53baf3ec755acd8a",
8066
+ "gitHead": "5b350f6e4d41c36afb262f5b835c3223cfbb9233",
8062
8067
  "devDependencies": {
8063
8068
  "@babel/plugin-proposal-decorators": "^7.15.8",
8064
8069
  "@babel/plugin-transform-runtime": "^7.15.8",