rc-lib-ui 1.4.3 → 1.4.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.
@@ -9,7 +9,7 @@ export interface InteractiveMessageItemCommon {
9
9
  dismissible?: boolean;
10
10
  }
11
11
  type DefaultShowAlertsVariant = Exclude<VariantType, 'deleteCountdown'>;
12
- export type InteractiveMessageAlertProps = InteractiveMessageItemCommon & Pick<OptionsObject<DefaultShowAlertsVariant>, 'onClose' | 'onEnter' | 'onEntered' | 'anchorOrigin'> & {
12
+ export type InteractiveMessageAlertProps = InteractiveMessageItemCommon & OptionsObject<DefaultShowAlertsVariant> & {
13
13
  animation?: 'Fade' | 'Grow' | 'Zoom' | 'Slide';
14
14
  variant?: "filled" | "standard" | "outlined";
15
15
  severity?: DefaultShowAlertsVariant;
@@ -58,7 +58,7 @@ export type InteractiveMessageControl = {
58
58
  id: string;
59
59
  isExiting: boolean;
60
60
  };
61
- export type InteractiveMessageStateProps = InteractiveMessageControl & Omit<InteractiveMessageAlertProps, 'view'> & Omit<InteractiveMessageModalsProps, 'view'> & {
61
+ export type InteractiveMessageStateProps = InteractiveMessageControl & Omit<InteractiveMessageModalsProps, 'view'> & {
62
62
  view: ViewMessage;
63
63
  };
64
64
  export type GetExtendsTypeModal<T> = Omit<T, 'mode'> & Omit<InteractiveMessageModalsProps, 'mode'> & Omit<InteractiveMessageControl, 'isAlert'>;
@@ -2183,7 +2183,6 @@ const Nr = R.memo(_n), pn = {
2183
2183
  ), _r = (e) => {
2184
2184
  const n = S(({ view: i, ...a }) => {
2185
2185
  e({
2186
- variant: "outlined",
2187
2186
  view: i || "modal",
2188
2187
  dismissible: a.mode !== "success",
2189
2188
  ...a
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rc-lib-ui",
3
3
  "private": false,
4
- "version": "1.4.3",
4
+ "version": "1.4.4",
5
5
  "author": "SinGlEBW",
6
6
  "license": "MIT",
7
7
  "type": "module",