@epam/ai-dial-ui-kit 0.13.0-dev.8 → 0.13.0-dev.9
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/{JsonEditor-B-xPHefp.cjs → JsonEditor-CRSkEnWP.cjs} +1 -1
- package/dist/{JsonEditor-Hf9IZ4ui.js → JsonEditor-Djt1V27V.js} +1 -1
- package/dist/{MarkdownEditor-DNXHZAfs.cjs → MarkdownEditor-BbGX2uA9.cjs} +1 -1
- package/dist/{MarkdownEditor-sDhs3xnR.js → MarkdownEditor-DtKScLM2.js} +1 -1
- package/dist/components-manifest.json +52 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +121 -111
- package/dist/{index-CfMucmLo.cjs → index-CmA_N28F.cjs} +30 -30
- package/dist/{index-CtTIrXpi.js → index-JVDPW40K.js} +7552 -7505
- package/dist/src/components/New/Notification/NotificationWrapper.d.ts +5 -5
- package/dist/src/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,9 +7,9 @@ export declare const InfoToastNotification: FC<NotificationVariantProps>;
|
|
|
7
7
|
export declare const SuccessToastNotification: FC<NotificationVariantProps>;
|
|
8
8
|
export declare const WarningToastNotification: FC<NotificationVariantProps>;
|
|
9
9
|
export declare const LoadingToastNotification: FC<NotificationVariantProps>;
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
10
|
+
export declare const ErrorMessageNotification: FC<NotificationTypeProps>;
|
|
11
|
+
export declare const InfoMessageNotification: FC<NotificationTypeProps>;
|
|
12
|
+
export declare const SuccessMessageNotification: FC<NotificationTypeProps>;
|
|
13
|
+
export declare const WarningMessageNotification: FC<NotificationTypeProps>;
|
|
14
|
+
export declare const LoadingMessageNotification: FC<NotificationTypeProps>;
|
|
15
15
|
export {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -134,3 +134,4 @@ export declare const LazyDialJsonEditor: () => Promise<typeof import("./componen
|
|
|
134
134
|
export declare const LazyDialMarkdownEditor: () => Promise<typeof import("./components/MarkdownEditor/MarkdownEditor")>;
|
|
135
135
|
export { NotificationVariant, NotificationType } from './types/notification.ts';
|
|
136
136
|
export { Notification } from './components/New/Notification/Notification';
|
|
137
|
+
export { ErrorMessageNotification, ErrorToastNotification, InfoMessageNotification, InfoToastNotification, LoadingMessageNotification, LoadingToastNotification, SuccessMessageNotification, SuccessToastNotification, WarningMessageNotification, WarningToastNotification, } from './components/New/Notification/NotificationWrapper';
|