@koredev/agentai-web-sdk 1.5.2-rc → 1.5.3-rc
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/components/common/constants/projConsts.d.ts +10 -0
- package/dist/esm/agentai-web-sdk.min.js +1 -1
- package/dist/index_plugins/aai18n.d.ts +2 -0
- package/dist/plugins/i18n.d.ts +109 -0
- package/dist/umd/agentai-web-sdk-umd.min.js +1 -1
- package/dist/umd/agentai-web-sdk-umd.min.js.map +1 -1
- package/dist/umd/hot/KoreAASDK.33177692b0367eabb315.hot-update.js +687 -0
- package/dist/umd/hot/KoreAASDK.33177692b0367eabb315.hot-update.js.map +1 -0
- package/dist/umd/hot/KoreAASDK.33177692b0367eabb315.hot-update.json +1 -0
- package/dist/umd/hot/Korei18nPluginSDK.33177692b0367eabb315.hot-update.js +11 -0
- package/dist/umd/hot/Korei18nPluginSDK.33177692b0367eabb315.hot-update.js.map +1 -0
- package/dist/umd/hot/Korei18nPluginSDK.33177692b0367eabb315.hot-update.json +1 -0
- package/dist/umd/hot/hot-update.js +2 -2
- package/dist/umd/hot/hot-update.js.map +1 -1
- package/dist/umd/hot/hot-update.json +1 -1
- package/dist/umd/plugins/aai18n.js +4497 -0
- package/dist/umd/plugins/aai18n.js.map +1 -0
- package/package.json +1 -1
|
@@ -91,6 +91,14 @@ export declare const coachingConst: any;
|
|
|
91
91
|
export declare const serviceTabMap: any;
|
|
92
92
|
export declare const PlaybookColorMap: any;
|
|
93
93
|
export declare const storageConst: any;
|
|
94
|
+
export declare const DARKTHEME_COLORCODES: {
|
|
95
|
+
primay: string;
|
|
96
|
+
secondary: string;
|
|
97
|
+
primaryText: string;
|
|
98
|
+
secondaryText: string;
|
|
99
|
+
bodyBackground: string;
|
|
100
|
+
warningColor: string;
|
|
101
|
+
};
|
|
94
102
|
export declare const ClassMapConstanst: {
|
|
95
103
|
HEADER: string;
|
|
96
104
|
FOOTER: string;
|
|
@@ -339,4 +347,6 @@ export declare const IdMapConstant: {
|
|
|
339
347
|
DIALOG_SUGGESTION: string;
|
|
340
348
|
TOOLTIP_TRIGGER: string;
|
|
341
349
|
ASSIST_SECTION: string;
|
|
350
|
+
DARK_THEME_BTN: string;
|
|
351
|
+
LIGHT_THEME_BTN: string;
|
|
342
352
|
};
|