cloud-ide-lms-model 1.0.105 → 1.0.107
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,5 +9,9 @@ declare const designConfigRoutesUrl: {
|
|
|
9
9
|
* this will return the user specific design, else org
|
|
10
10
|
*/
|
|
11
11
|
getSystemTheme: string;
|
|
12
|
+
/**
|
|
13
|
+
* this will return the system theme list for the application
|
|
14
|
+
*/
|
|
15
|
+
getSystemThemesList: string;
|
|
12
16
|
};
|
|
13
17
|
export { designConfigRoutesUrl };
|
|
@@ -11,7 +11,11 @@ const designConfigRoutesUrl = {
|
|
|
11
11
|
/**
|
|
12
12
|
* this will return the user specific design, else org
|
|
13
13
|
*/
|
|
14
|
-
getSystemTheme: "system-theme"
|
|
14
|
+
getSystemTheme: "system-theme",
|
|
15
|
+
/**
|
|
16
|
+
* this will return the system theme list for the application
|
|
17
|
+
*/
|
|
18
|
+
getSystemThemesList: "system-themes-list"
|
|
15
19
|
};
|
|
16
20
|
exports.designConfigRoutesUrl = designConfigRoutesUrl;
|
|
17
21
|
Object.freeze(designConfigRoutesUrl);
|