@sendoutcards/quantum-design-ui 1.7.19 → 1.7.20
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/dist/index.es.js
CHANGED
|
@@ -12350,8 +12350,7 @@ var Portal = function (_a) {
|
|
|
12350
12350
|
return function () {
|
|
12351
12351
|
document.body.removeChild(container);
|
|
12352
12352
|
};
|
|
12353
|
-
}, []);
|
|
12354
|
-
|
|
12353
|
+
}, [container]);
|
|
12355
12354
|
return /*#__PURE__*/ReactDOM.createPortal(children, container);
|
|
12356
12355
|
};
|
|
12357
12356
|
|
|
@@ -20798,8 +20797,7 @@ var ReleaseNoteDialog = function (_a) {
|
|
|
20798
20797
|
return jsx(React.Fragment, null, jsx(ReleaseNote, {
|
|
20799
20798
|
key: index,
|
|
20800
20799
|
capsule: {
|
|
20801
|
-
title: noteSection.
|
|
20802
|
-
backgroundColor: noteSection.sectionColor
|
|
20800
|
+
title: noteSection.releaseType
|
|
20803
20801
|
},
|
|
20804
20802
|
note: {
|
|
20805
20803
|
title: note
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
import { ButtonType,
|
|
2
|
+
import { ButtonType, CapsuleType } from "../../exports/molecules";
|
|
3
3
|
export declare type NoteSection = {
|
|
4
|
-
|
|
4
|
+
releaseType: CapsuleType;
|
|
5
5
|
notes: string[];
|
|
6
|
-
sectionColor?: ReleaseNoteCapsuleColor;
|
|
7
6
|
};
|
|
8
7
|
export declare type ReleaseNoteDialogProps = {
|
|
9
8
|
title: string;
|