@ui5/webcomponents-base 2.23.1 → 2.24.0-rc.1
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/CHANGELOG.md +10 -3
- package/dist/.tsbuildinfobuild +1 -1
- package/dist/FeaturesRegistry.d.ts +2 -1
- package/dist/FeaturesRegistry.js +4 -1
- package/dist/FeaturesRegistry.js.map +1 -1
- package/dist/Runtimes.js +41 -0
- package/dist/Runtimes.js.map +1 -1
- package/dist/custom-elements-internal.json +136 -136
- package/dist/custom-elements.json +136 -136
- package/dist/features/OpenUI5Support.d.ts +2 -0
- package/dist/features/OpenUI5Support.js +5 -0
- package/dist/features/OpenUI5Support.js.map +1 -1
- package/dist/generated/VersionInfo.js +5 -5
- package/dist/generated/VersionInfo.js.map +1 -1
- package/dist/prod/FeaturesRegistry.js +1 -1
- package/dist/prod/FeaturesRegistry.js.map +3 -3
- package/dist/prod/Runtimes.js +1 -1
- package/dist/prod/Runtimes.js.map +3 -3
- package/dist/prod/features/OpenUI5Support.js +1 -1
- package/dist/prod/features/OpenUI5Support.js.map +2 -2
- package/dist/prod/generated/VersionInfo.js +1 -1
- package/dist/prod/generated/VersionInfo.js.map +2 -2
- package/dist/prod/util/createInstanceChecker.js +1 -1
- package/dist/prod/util/createInstanceChecker.js.map +2 -2
- package/dist/util/createInstanceChecker.js +1 -1
- package/dist/util/createInstanceChecker.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
declare const registerFeature: (name: string, feature: object) => void;
|
|
2
2
|
declare const getFeature: <T>(name: string) => T;
|
|
3
|
-
|
|
3
|
+
declare const getRegisteredFeatures: () => Array<string>;
|
|
4
|
+
export { registerFeature, getFeature, getRegisteredFeatures, };
|
package/dist/FeaturesRegistry.js
CHANGED
|
@@ -5,5 +5,8 @@ const registerFeature = (name, feature) => {
|
|
|
5
5
|
const getFeature = (name) => {
|
|
6
6
|
return features.get(name);
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
const getRegisteredFeatures = () => {
|
|
9
|
+
return [...features.keys()];
|
|
10
|
+
};
|
|
11
|
+
export { registerFeature, getFeature, getRegisteredFeatures, };
|
|
9
12
|
//# sourceMappingURL=FeaturesRegistry.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeaturesRegistry.js","sourceRoot":"","sources":["../src/FeaturesRegistry.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG,IAAI,GAAG,EAAe,CAAC;AAExC,MAAM,eAAe,GAAG,CAAC,IAAY,EAAE,OAAe,EAAE,EAAE;IACzD,QAAQ,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEF,MAAM,UAAU,GAAG,CAAI,IAAY,EAAK,EAAE;IACzC,OAAO,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAM,CAAC;AAChC,CAAC,CAAC;AAEF,OAAO,EACN,eAAe,EACf,UAAU,
|
|
1
|
+
{"version":3,"file":"FeaturesRegistry.js","sourceRoot":"","sources":["../src/FeaturesRegistry.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG,IAAI,GAAG,EAAe,CAAC;AAExC,MAAM,eAAe,GAAG,CAAC,IAAY,EAAE,OAAe,EAAE,EAAE;IACzD,QAAQ,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEF,MAAM,UAAU,GAAG,CAAI,IAAY,EAAK,EAAE;IACzC,OAAO,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAM,CAAC;AAChC,CAAC,CAAC;AAEF,MAAM,qBAAqB,GAAG,GAAkB,EAAE;IACjD,OAAO,CAAC,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEF,OAAO,EACN,eAAe,EACf,UAAU,EACV,qBAAqB,GACrB,CAAC","sourcesContent":["const features = new Map<string, any>();\n\nconst registerFeature = (name: string, feature: object) => {\n\tfeatures.set(name, feature);\n};\n\nconst getFeature = <T>(name: string): T => {\n\treturn features.get(name) as T;\n};\n\nconst getRegisteredFeatures = (): Array<string> => {\n\treturn [...features.keys()];\n};\n\nexport {\n\tregisterFeature,\n\tgetFeature,\n\tgetRegisteredFeatures,\n};\n"]}
|
package/dist/Runtimes.js
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import { getAllRegisteredTags } from "./CustomElementsRegistry.js";
|
|
2
2
|
import { getCustomElementsScopingRules, getCustomElementsScopingSuffix } from "./CustomElementsScopeUtils.js";
|
|
3
|
+
import { getRegisteredFeatures, getFeature } from "./FeaturesRegistry.js";
|
|
4
|
+
import { getAnimationMode } from "./config/AnimationMode.js";
|
|
5
|
+
import { getCalendarType, getSecondaryCalendarType } from "./config/CalendarType.js";
|
|
6
|
+
import { getDefaultFontLoading } from "./config/Fonts.js";
|
|
7
|
+
import { getFirstDayOfWeek, getLegacyDateCalendarCustomizing } from "./config/FormatSettings.js";
|
|
8
|
+
import { getLanguage, getFetchDefaultLanguage } from "./config/Language.js";
|
|
9
|
+
import { getNoConflict } from "./config/NoConflict.js";
|
|
10
|
+
import { getTheme, getBaseTheme } from "./config/Theme.js";
|
|
11
|
+
import { getThemeRoot } from "./config/ThemeRoot.js";
|
|
12
|
+
import { getTimezone } from "./config/Timezone.js";
|
|
13
|
+
import { getEnableDefaultTooltips } from "./config/Tooltips.js";
|
|
14
|
+
import { getIgnoreUrlParams } from "./config/UrlParams.js";
|
|
3
15
|
import VersionInfo from "./generated/VersionInfo.js";
|
|
4
16
|
import getSharedResource from "./getSharedResource.js";
|
|
5
17
|
let currentRuntimeIndex;
|
|
@@ -26,9 +38,38 @@ const registerCurrentRuntime = () => {
|
|
|
26
38
|
get registeredTags() {
|
|
27
39
|
return getAllRegisteredTags();
|
|
28
40
|
},
|
|
41
|
+
get registeredFeatures() {
|
|
42
|
+
return getRegisteredFeatures();
|
|
43
|
+
},
|
|
44
|
+
get configuration() {
|
|
45
|
+
return {
|
|
46
|
+
theme: getTheme(),
|
|
47
|
+
themeRoot: getThemeRoot(),
|
|
48
|
+
baseTheme: getBaseTheme(),
|
|
49
|
+
language: getLanguage(),
|
|
50
|
+
fetchDefaultLanguage: getFetchDefaultLanguage(),
|
|
51
|
+
timezone: getTimezone(),
|
|
52
|
+
animationMode: getAnimationMode(),
|
|
53
|
+
calendarType: getCalendarType(),
|
|
54
|
+
secondaryCalendarType: getSecondaryCalendarType(),
|
|
55
|
+
noConflict: getNoConflict(),
|
|
56
|
+
defaultFontLoading: getDefaultFontLoading(),
|
|
57
|
+
enableDefaultTooltips: getEnableDefaultTooltips(),
|
|
58
|
+
firstDayOfWeek: getFirstDayOfWeek(),
|
|
59
|
+
legacyDateCalendarCustomizing: getLegacyDateCalendarCustomizing(),
|
|
60
|
+
ignoreUrlParams: getIgnoreUrlParams(),
|
|
61
|
+
};
|
|
62
|
+
},
|
|
29
63
|
get scopingRules() {
|
|
30
64
|
return getCustomElementsScopingRules();
|
|
31
65
|
},
|
|
66
|
+
get openUI5Detected() {
|
|
67
|
+
return getFeature("OpenUI5Support")?.isOpenUI5Detected() ?? false;
|
|
68
|
+
},
|
|
69
|
+
get openUI5LoadedFirst() {
|
|
70
|
+
const openUI5Support = getFeature("OpenUI5Support");
|
|
71
|
+
return openUI5Support ? openUI5Support.isOpenUI5LoadedFirst() : undefined;
|
|
72
|
+
},
|
|
32
73
|
alias: currentRuntimeAlias,
|
|
33
74
|
description: `Runtime ${currentRuntimeIndex} - ver ${versionInfo.version}${currentRuntimeAlias ? ` (${currentRuntimeAlias})` : ""}`,
|
|
34
75
|
importMetaUrl: import.meta.url,
|
package/dist/Runtimes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Runtimes.js","sourceRoot":"","sources":["../src/Runtimes.ts"],"names":[],"mappings":"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","sourcesContent":["import { getAllRegisteredTags } from \"./CustomElementsRegistry.js\";\nimport { getCustomElementsScopingRules, getCustomElementsScopingSuffix } from \"./CustomElementsScopeUtils.js\";\nimport VersionInfo from \"./generated/VersionInfo.js\";\nimport getSharedResource from \"./getSharedResource.js\";\n\ntype RuntimeData = VersionInfo & {\n\talias: string,\n\tdescription: string,\n\timportMetaUrl: string,\n};\n\nlet currentRuntimeIndex: number;\nlet currentRuntimeAlias = \"\";\n\nconst compareCache = new Map<string, number>();\n\n/**\n * Central registry where all runtimes register themselves by pushing an object.\n * The index in the registry servers as an ID for the runtime.\n * @type {*}\n */\nconst Runtimes = getSharedResource<Array<RuntimeData>>(\"Runtimes\", []);\n\n/**\n * Registers the current runtime in the shared runtimes resource registry\n */\nconst registerCurrentRuntime = () => {\n\tif (currentRuntimeIndex === undefined) {\n\t\tcurrentRuntimeIndex = Runtimes.length;\n\t\tconst versionInfo = VersionInfo;\n\n\t\tRuntimes.push({\n\t\t\t...versionInfo,\n\t\t\tget scopingSuffix() {\n\t\t\t\treturn getCustomElementsScopingSuffix();\n\t\t\t},\n\t\t\tget registeredTags() {\n\t\t\t\treturn getAllRegisteredTags();\n\t\t\t},\n\t\t\tget scopingRules() {\n\t\t\t\treturn getCustomElementsScopingRules();\n\t\t\t},\n\t\t\talias: currentRuntimeAlias,\n\t\t\tdescription: `Runtime ${currentRuntimeIndex} - ver ${versionInfo.version}${currentRuntimeAlias ? ` (${currentRuntimeAlias})` : \"\"}`,\n\t\t\timportMetaUrl: import.meta.url,\n\t\t});\n\t}\n};\n\n/**\n * Returns the index of the current runtime's object in the shared runtimes resource registry\n * @returns {*}\n */\nconst getCurrentRuntimeIndex = () => {\n\treturn currentRuntimeIndex;\n};\n\n/**\n * Compares two VersionInfo objects and returns 1 if the first is bigger, -1 if the second is bigger, and 0 if equal.\n */\nconst compareVersions = (v1: VersionInfo, v2: VersionInfo): number => {\n\tif (v1.isNext || v2.isNext) {\n\t\treturn v1.buildTime - v2.buildTime;\n\t}\n\n\tconst majorDiff = v1.major - v2.major;\n\tif (majorDiff) {\n\t\treturn majorDiff;\n\t}\n\n\tconst minorDiff = v1.minor - v2.minor;\n\tif (minorDiff) {\n\t\treturn minorDiff;\n\t}\n\n\tconst patchDiff = v1.patch - v2.patch;\n\tif (patchDiff) {\n\t\treturn patchDiff;\n\t}\n\n\tconst collator = new Intl.Collator(undefined, { numeric: true, sensitivity: \"base\" });\n\treturn collator.compare(v1.suffix, v2.suffix);\n};\n\n/**\n * Compares two runtimes and returns 1 if the first is of a bigger version, -1 if the second is of a bigger version, and 0 if equal\n * @param index1 The index of the first runtime to compare\n * @param index2 The index of the second runtime to compare\n * @returns {number}\n */\nconst compareRuntimes = (index1: number, index2: number) => {\n\tconst cacheIndex = `${index1},${index2}`;\n\tif (compareCache.has(cacheIndex)) {\n\t\treturn compareCache.get(cacheIndex)!;\n\t}\n\n\tconst runtime1 = Runtimes[index1];\n\tconst runtime2 = Runtimes[index2];\n\n\tif (!runtime1 || !runtime2) {\n\t\tthrow new Error(\"Invalid runtime index supplied\");\n\t}\n\n\tconst result = compareVersions(runtime1, runtime2);\n\n\tcompareCache.set(cacheIndex, result);\n\treturn result;\n};\n\n/**\n * Set an alias for the the current app/library/microfrontend which will appear in debug messages and console warnings\n * @param alias\n */\nconst setRuntimeAlias = (alias: string) => {\n\tcurrentRuntimeAlias = alias;\n};\n\nconst getAllRuntimes = () => {\n\treturn Runtimes;\n};\n\nexport {\n\tgetCurrentRuntimeIndex,\n\tregisterCurrentRuntime,\n\tcompareRuntimes,\n\tcompareVersions,\n\tsetRuntimeAlias,\n\tgetAllRuntimes,\n};\n"]}
|
|
1
|
+
{"version":3,"file":"Runtimes.js","sourceRoot":"","sources":["../src/Runtimes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,6BAA6B,EAAE,8BAA8B,EAAE,MAAM,+BAA+B,CAAC;AAC9G,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAE1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AACrF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,gCAAgC,EAAE,MAAM,4BAA4B,CAAC;AACjG,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,WAAW,MAAM,4BAA4B,CAAC;AACrD,OAAO,iBAAiB,MAAM,wBAAwB,CAAC;AAQvD,IAAI,mBAA2B,CAAC;AAChC,IAAI,mBAAmB,GAAG,EAAE,CAAC;AAE7B,MAAM,YAAY,GAAG,IAAI,GAAG,EAAkB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,QAAQ,GAAG,iBAAiB,CAAqB,UAAU,EAAE,EAAE,CAAC,CAAC;AAEvE;;GAEG;AACH,MAAM,sBAAsB,GAAG,GAAG,EAAE;IACnC,IAAI,mBAAmB,KAAK,SAAS,EAAE,CAAC;QACvC,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAAC;QACtC,MAAM,WAAW,GAAG,WAAW,CAAC;QAEhC,QAAQ,CAAC,IAAI,CAAC;YACb,GAAG,WAAW;YACd,IAAI,aAAa;gBAChB,OAAO,8BAA8B,EAAE,CAAC;YACzC,CAAC;YACD,IAAI,cAAc;gBACjB,OAAO,oBAAoB,EAAE,CAAC;YAC/B,CAAC;YACD,IAAI,kBAAkB;gBACrB,OAAO,qBAAqB,EAAE,CAAC;YAChC,CAAC;YACD,IAAI,aAAa;gBAChB,OAAO;oBACN,KAAK,EAAE,QAAQ,EAAE;oBACjB,SAAS,EAAE,YAAY,EAAE;oBACzB,SAAS,EAAE,YAAY,EAAE;oBACzB,QAAQ,EAAE,WAAW,EAAE;oBACvB,oBAAoB,EAAE,uBAAuB,EAAE;oBAC/C,QAAQ,EAAE,WAAW,EAAE;oBACvB,aAAa,EAAE,gBAAgB,EAAE;oBACjC,YAAY,EAAE,eAAe,EAAE;oBAC/B,qBAAqB,EAAE,wBAAwB,EAAE;oBACjD,UAAU,EAAE,aAAa,EAAE;oBAC3B,kBAAkB,EAAE,qBAAqB,EAAE;oBAC3C,qBAAqB,EAAE,wBAAwB,EAAE;oBACjD,cAAc,EAAE,iBAAiB,EAAE;oBACnC,6BAA6B,EAAE,gCAAgC,EAAE;oBACjE,eAAe,EAAE,kBAAkB,EAAE;iBACrC,CAAC;YACH,CAAC;YACD,IAAI,YAAY;gBACf,OAAO,6BAA6B,EAAE,CAAC;YACxC,CAAC;YACD,IAAI,eAAe;gBAClB,OAAO,UAAU,CAAwB,gBAAgB,CAAC,EAAE,iBAAiB,EAAE,IAAI,KAAK,CAAC;YAC1F,CAAC;YACD,IAAI,kBAAkB;gBACrB,MAAM,cAAc,GAAG,UAAU,CAAwB,gBAAgB,CAAC,CAAC;gBAC3E,OAAO,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,oBAAoB,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;YAC3E,CAAC;YACD,KAAK,EAAE,mBAAmB;YAC1B,WAAW,EAAE,WAAW,mBAAmB,UAAU,WAAW,CAAC,OAAO,GAAG,mBAAmB,CAAC,CAAC,CAAC,KAAK,mBAAmB,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;YACnI,aAAa,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG;SAC9B,CAAC,CAAC;IACJ,CAAC;AACF,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,sBAAsB,GAAG,GAAG,EAAE;IACnC,OAAO,mBAAmB,CAAC;AAC5B,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,eAAe,GAAG,CAAC,EAAe,EAAE,EAAe,EAAU,EAAE;IACpE,IAAI,EAAE,CAAC,MAAM,IAAI,EAAE,CAAC,MAAM,EAAE,CAAC;QAC5B,OAAO,EAAE,CAAC,SAAS,GAAG,EAAE,CAAC,SAAS,CAAC;IACpC,CAAC;IAED,MAAM,SAAS,GAAG,EAAE,CAAC,KAAK,GAAG,EAAE,CAAC,KAAK,CAAC;IACtC,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,SAAS,CAAC;IAClB,CAAC;IAED,MAAM,SAAS,GAAG,EAAE,CAAC,KAAK,GAAG,EAAE,CAAC,KAAK,CAAC;IACtC,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,SAAS,CAAC;IAClB,CAAC;IAED,MAAM,SAAS,GAAG,EAAE,CAAC,KAAK,GAAG,EAAE,CAAC,KAAK,CAAC;IACtC,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,SAAS,CAAC;IAClB,CAAC;IAED,MAAM,QAAQ,GAAG,IAAI,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC,CAAC;IACtF,OAAO,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC;AAC/C,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,MAAc,EAAE,EAAE;IAC1D,MAAM,UAAU,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;IACzC,IAAI,YAAY,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC;QAClC,OAAO,YAAY,CAAC,GAAG,CAAC,UAAU,CAAE,CAAC;IACtC,CAAC;IAED,MAAM,QAAQ,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IAClC,MAAM,QAAQ,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IAElC,IAAI,CAAC,QAAQ,IAAI,CAAC,QAAQ,EAAE,CAAC;QAC5B,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;IACnD,CAAC;IAED,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;IAEnD,YAAY,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;IACrC,OAAO,MAAM,CAAC;AACf,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,eAAe,GAAG,CAAC,KAAa,EAAE,EAAE;IACzC,mBAAmB,GAAG,KAAK,CAAC;AAC7B,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,GAAG,EAAE;IAC3B,OAAO,QAAQ,CAAC;AACjB,CAAC,CAAC;AAEF,OAAO,EACN,sBAAsB,EACtB,sBAAsB,EACtB,eAAe,EACf,eAAe,EACf,eAAe,EACf,cAAc,GACd,CAAC","sourcesContent":["import { getAllRegisteredTags } from \"./CustomElementsRegistry.js\";\nimport { getCustomElementsScopingRules, getCustomElementsScopingSuffix } from \"./CustomElementsScopeUtils.js\";\nimport { getRegisteredFeatures, getFeature } from \"./FeaturesRegistry.js\";\nimport type OpenUI5Support from \"./features/OpenUI5Support.js\";\nimport { getAnimationMode } from \"./config/AnimationMode.js\";\nimport { getCalendarType, getSecondaryCalendarType } from \"./config/CalendarType.js\";\nimport { getDefaultFontLoading } from \"./config/Fonts.js\";\nimport { getFirstDayOfWeek, getLegacyDateCalendarCustomizing } from \"./config/FormatSettings.js\";\nimport { getLanguage, getFetchDefaultLanguage } from \"./config/Language.js\";\nimport { getNoConflict } from \"./config/NoConflict.js\";\nimport { getTheme, getBaseTheme } from \"./config/Theme.js\";\nimport { getThemeRoot } from \"./config/ThemeRoot.js\";\nimport { getTimezone } from \"./config/Timezone.js\";\nimport { getEnableDefaultTooltips } from \"./config/Tooltips.js\";\nimport { getIgnoreUrlParams } from \"./config/UrlParams.js\";\nimport VersionInfo from \"./generated/VersionInfo.js\";\nimport getSharedResource from \"./getSharedResource.js\";\n\ntype RuntimeData = VersionInfo & {\n\talias: string,\n\tdescription: string,\n\timportMetaUrl: string,\n};\n\nlet currentRuntimeIndex: number;\nlet currentRuntimeAlias = \"\";\n\nconst compareCache = new Map<string, number>();\n\n/**\n * Central registry where all runtimes register themselves by pushing an object.\n * The index in the registry servers as an ID for the runtime.\n * @type {*}\n */\nconst Runtimes = getSharedResource<Array<RuntimeData>>(\"Runtimes\", []);\n\n/**\n * Registers the current runtime in the shared runtimes resource registry\n */\nconst registerCurrentRuntime = () => {\n\tif (currentRuntimeIndex === undefined) {\n\t\tcurrentRuntimeIndex = Runtimes.length;\n\t\tconst versionInfo = VersionInfo;\n\n\t\tRuntimes.push({\n\t\t\t...versionInfo,\n\t\t\tget scopingSuffix() {\n\t\t\t\treturn getCustomElementsScopingSuffix();\n\t\t\t},\n\t\t\tget registeredTags() {\n\t\t\t\treturn getAllRegisteredTags();\n\t\t\t},\n\t\t\tget registeredFeatures() {\n\t\t\t\treturn getRegisteredFeatures();\n\t\t\t},\n\t\t\tget configuration() {\n\t\t\t\treturn {\n\t\t\t\t\ttheme: getTheme(),\n\t\t\t\t\tthemeRoot: getThemeRoot(),\n\t\t\t\t\tbaseTheme: getBaseTheme(),\n\t\t\t\t\tlanguage: getLanguage(),\n\t\t\t\t\tfetchDefaultLanguage: getFetchDefaultLanguage(),\n\t\t\t\t\ttimezone: getTimezone(),\n\t\t\t\t\tanimationMode: getAnimationMode(),\n\t\t\t\t\tcalendarType: getCalendarType(),\n\t\t\t\t\tsecondaryCalendarType: getSecondaryCalendarType(),\n\t\t\t\t\tnoConflict: getNoConflict(),\n\t\t\t\t\tdefaultFontLoading: getDefaultFontLoading(),\n\t\t\t\t\tenableDefaultTooltips: getEnableDefaultTooltips(),\n\t\t\t\t\tfirstDayOfWeek: getFirstDayOfWeek(),\n\t\t\t\t\tlegacyDateCalendarCustomizing: getLegacyDateCalendarCustomizing(),\n\t\t\t\t\tignoreUrlParams: getIgnoreUrlParams(),\n\t\t\t\t};\n\t\t\t},\n\t\t\tget scopingRules() {\n\t\t\t\treturn getCustomElementsScopingRules();\n\t\t\t},\n\t\t\tget openUI5Detected() {\n\t\t\t\treturn getFeature<typeof OpenUI5Support>(\"OpenUI5Support\")?.isOpenUI5Detected() ?? false;\n\t\t\t},\n\t\t\tget openUI5LoadedFirst() {\n\t\t\t\tconst openUI5Support = getFeature<typeof OpenUI5Support>(\"OpenUI5Support\");\n\t\t\t\treturn openUI5Support ? openUI5Support.isOpenUI5LoadedFirst() : undefined;\n\t\t\t},\n\t\t\talias: currentRuntimeAlias,\n\t\t\tdescription: `Runtime ${currentRuntimeIndex} - ver ${versionInfo.version}${currentRuntimeAlias ? ` (${currentRuntimeAlias})` : \"\"}`,\n\t\t\timportMetaUrl: import.meta.url,\n\t\t});\n\t}\n};\n\n/**\n * Returns the index of the current runtime's object in the shared runtimes resource registry\n * @returns {*}\n */\nconst getCurrentRuntimeIndex = () => {\n\treturn currentRuntimeIndex;\n};\n\n/**\n * Compares two VersionInfo objects and returns 1 if the first is bigger, -1 if the second is bigger, and 0 if equal.\n */\nconst compareVersions = (v1: VersionInfo, v2: VersionInfo): number => {\n\tif (v1.isNext || v2.isNext) {\n\t\treturn v1.buildTime - v2.buildTime;\n\t}\n\n\tconst majorDiff = v1.major - v2.major;\n\tif (majorDiff) {\n\t\treturn majorDiff;\n\t}\n\n\tconst minorDiff = v1.minor - v2.minor;\n\tif (minorDiff) {\n\t\treturn minorDiff;\n\t}\n\n\tconst patchDiff = v1.patch - v2.patch;\n\tif (patchDiff) {\n\t\treturn patchDiff;\n\t}\n\n\tconst collator = new Intl.Collator(undefined, { numeric: true, sensitivity: \"base\" });\n\treturn collator.compare(v1.suffix, v2.suffix);\n};\n\n/**\n * Compares two runtimes and returns 1 if the first is of a bigger version, -1 if the second is of a bigger version, and 0 if equal\n * @param index1 The index of the first runtime to compare\n * @param index2 The index of the second runtime to compare\n * @returns {number}\n */\nconst compareRuntimes = (index1: number, index2: number) => {\n\tconst cacheIndex = `${index1},${index2}`;\n\tif (compareCache.has(cacheIndex)) {\n\t\treturn compareCache.get(cacheIndex)!;\n\t}\n\n\tconst runtime1 = Runtimes[index1];\n\tconst runtime2 = Runtimes[index2];\n\n\tif (!runtime1 || !runtime2) {\n\t\tthrow new Error(\"Invalid runtime index supplied\");\n\t}\n\n\tconst result = compareVersions(runtime1, runtime2);\n\n\tcompareCache.set(cacheIndex, result);\n\treturn result;\n};\n\n/**\n * Set an alias for the the current app/library/microfrontend which will appear in debug messages and console warnings\n * @param alias\n */\nconst setRuntimeAlias = (alias: string) => {\n\tcurrentRuntimeAlias = alias;\n};\n\nconst getAllRuntimes = () => {\n\treturn Runtimes;\n};\n\nexport {\n\tgetCurrentRuntimeIndex,\n\tregisterCurrentRuntime,\n\tcompareRuntimes,\n\tcompareVersions,\n\tsetRuntimeAlias,\n\tgetAllRuntimes,\n};\n"]}
|
|
@@ -1096,115 +1096,115 @@
|
|
|
1096
1096
|
},
|
|
1097
1097
|
{
|
|
1098
1098
|
"kind": "javascript-module",
|
|
1099
|
-
"path": "dist/
|
|
1099
|
+
"path": "dist/config/AnimationMode.js",
|
|
1100
1100
|
"declarations": [],
|
|
1101
1101
|
"exports": []
|
|
1102
1102
|
},
|
|
1103
1103
|
{
|
|
1104
1104
|
"kind": "javascript-module",
|
|
1105
|
-
"path": "dist/
|
|
1105
|
+
"path": "dist/config/CalendarType.js",
|
|
1106
1106
|
"declarations": [],
|
|
1107
1107
|
"exports": []
|
|
1108
1108
|
},
|
|
1109
1109
|
{
|
|
1110
1110
|
"kind": "javascript-module",
|
|
1111
|
-
"path": "dist/
|
|
1111
|
+
"path": "dist/config/ConfigurationReset.js",
|
|
1112
1112
|
"declarations": [],
|
|
1113
1113
|
"exports": []
|
|
1114
1114
|
},
|
|
1115
1115
|
{
|
|
1116
1116
|
"kind": "javascript-module",
|
|
1117
|
-
"path": "dist/
|
|
1117
|
+
"path": "dist/config/ConfigurationSync.js",
|
|
1118
1118
|
"declarations": [],
|
|
1119
1119
|
"exports": []
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
1122
|
"kind": "javascript-module",
|
|
1123
|
-
"path": "dist/
|
|
1123
|
+
"path": "dist/config/Fonts.js",
|
|
1124
1124
|
"declarations": [],
|
|
1125
1125
|
"exports": []
|
|
1126
1126
|
},
|
|
1127
1127
|
{
|
|
1128
1128
|
"kind": "javascript-module",
|
|
1129
|
-
"path": "dist/config/
|
|
1129
|
+
"path": "dist/config/FormatSettings.js",
|
|
1130
1130
|
"declarations": [],
|
|
1131
1131
|
"exports": []
|
|
1132
1132
|
},
|
|
1133
1133
|
{
|
|
1134
1134
|
"kind": "javascript-module",
|
|
1135
|
-
"path": "dist/config/
|
|
1135
|
+
"path": "dist/config/Icons.js",
|
|
1136
1136
|
"declarations": [],
|
|
1137
1137
|
"exports": []
|
|
1138
1138
|
},
|
|
1139
1139
|
{
|
|
1140
1140
|
"kind": "javascript-module",
|
|
1141
|
-
"path": "dist/config/
|
|
1141
|
+
"path": "dist/config/Language.js",
|
|
1142
1142
|
"declarations": [],
|
|
1143
1143
|
"exports": []
|
|
1144
1144
|
},
|
|
1145
1145
|
{
|
|
1146
1146
|
"kind": "javascript-module",
|
|
1147
|
-
"path": "dist/config/
|
|
1147
|
+
"path": "dist/config/NoConflict.js",
|
|
1148
1148
|
"declarations": [],
|
|
1149
1149
|
"exports": []
|
|
1150
1150
|
},
|
|
1151
1151
|
{
|
|
1152
1152
|
"kind": "javascript-module",
|
|
1153
|
-
"path": "dist/config/
|
|
1153
|
+
"path": "dist/config/Theme.js",
|
|
1154
1154
|
"declarations": [],
|
|
1155
1155
|
"exports": []
|
|
1156
1156
|
},
|
|
1157
1157
|
{
|
|
1158
1158
|
"kind": "javascript-module",
|
|
1159
|
-
"path": "dist/config/
|
|
1159
|
+
"path": "dist/config/ThemeRoot.js",
|
|
1160
1160
|
"declarations": [],
|
|
1161
1161
|
"exports": []
|
|
1162
1162
|
},
|
|
1163
1163
|
{
|
|
1164
1164
|
"kind": "javascript-module",
|
|
1165
|
-
"path": "dist/config/
|
|
1165
|
+
"path": "dist/config/Timezone.js",
|
|
1166
1166
|
"declarations": [],
|
|
1167
1167
|
"exports": []
|
|
1168
1168
|
},
|
|
1169
1169
|
{
|
|
1170
1170
|
"kind": "javascript-module",
|
|
1171
|
-
"path": "dist/config/
|
|
1171
|
+
"path": "dist/config/Tooltips.js",
|
|
1172
1172
|
"declarations": [],
|
|
1173
1173
|
"exports": []
|
|
1174
1174
|
},
|
|
1175
1175
|
{
|
|
1176
1176
|
"kind": "javascript-module",
|
|
1177
|
-
"path": "dist/config/
|
|
1177
|
+
"path": "dist/config/UrlParams.js",
|
|
1178
1178
|
"declarations": [],
|
|
1179
1179
|
"exports": []
|
|
1180
1180
|
},
|
|
1181
1181
|
{
|
|
1182
1182
|
"kind": "javascript-module",
|
|
1183
|
-
"path": "dist/
|
|
1183
|
+
"path": "dist/asset-registries/Icons.js",
|
|
1184
1184
|
"declarations": [],
|
|
1185
1185
|
"exports": []
|
|
1186
1186
|
},
|
|
1187
1187
|
{
|
|
1188
1188
|
"kind": "javascript-module",
|
|
1189
|
-
"path": "dist/
|
|
1189
|
+
"path": "dist/asset-registries/Illustrations.js",
|
|
1190
1190
|
"declarations": [],
|
|
1191
1191
|
"exports": []
|
|
1192
1192
|
},
|
|
1193
1193
|
{
|
|
1194
1194
|
"kind": "javascript-module",
|
|
1195
|
-
"path": "dist/
|
|
1195
|
+
"path": "dist/asset-registries/LocaleData.js",
|
|
1196
1196
|
"declarations": [],
|
|
1197
1197
|
"exports": []
|
|
1198
1198
|
},
|
|
1199
1199
|
{
|
|
1200
1200
|
"kind": "javascript-module",
|
|
1201
|
-
"path": "dist/
|
|
1201
|
+
"path": "dist/asset-registries/Themes.js",
|
|
1202
1202
|
"declarations": [],
|
|
1203
1203
|
"exports": []
|
|
1204
1204
|
},
|
|
1205
1205
|
{
|
|
1206
1206
|
"kind": "javascript-module",
|
|
1207
|
-
"path": "dist/
|
|
1207
|
+
"path": "dist/asset-registries/i18n.js",
|
|
1208
1208
|
"declarations": [],
|
|
1209
1209
|
"exports": []
|
|
1210
1210
|
},
|
|
@@ -1373,123 +1373,6 @@
|
|
|
1373
1373
|
}
|
|
1374
1374
|
]
|
|
1375
1375
|
},
|
|
1376
|
-
{
|
|
1377
|
-
"kind": "javascript-module",
|
|
1378
|
-
"path": "dist/features/F6Navigation.js",
|
|
1379
|
-
"declarations": [],
|
|
1380
|
-
"exports": [
|
|
1381
|
-
{
|
|
1382
|
-
"kind": "js",
|
|
1383
|
-
"name": "default",
|
|
1384
|
-
"declaration": {
|
|
1385
|
-
"name": "F6Navigation",
|
|
1386
|
-
"module": "dist/features/F6Navigation.js"
|
|
1387
|
-
}
|
|
1388
|
-
}
|
|
1389
|
-
]
|
|
1390
|
-
},
|
|
1391
|
-
{
|
|
1392
|
-
"kind": "javascript-module",
|
|
1393
|
-
"path": "dist/features/InputElementsFormSupport.js",
|
|
1394
|
-
"declarations": [],
|
|
1395
|
-
"exports": []
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"kind": "javascript-module",
|
|
1399
|
-
"path": "dist/features/LegacyDateFormats.js",
|
|
1400
|
-
"declarations": [],
|
|
1401
|
-
"exports": [
|
|
1402
|
-
{
|
|
1403
|
-
"kind": "js",
|
|
1404
|
-
"name": "default",
|
|
1405
|
-
"declaration": {
|
|
1406
|
-
"name": "LegacyDateFormats",
|
|
1407
|
-
"module": "dist/features/LegacyDateFormats.js"
|
|
1408
|
-
}
|
|
1409
|
-
}
|
|
1410
|
-
]
|
|
1411
|
-
},
|
|
1412
|
-
{
|
|
1413
|
-
"kind": "javascript-module",
|
|
1414
|
-
"path": "dist/features/OpenUI5Element.js",
|
|
1415
|
-
"declarations": [],
|
|
1416
|
-
"exports": [
|
|
1417
|
-
{
|
|
1418
|
-
"kind": "js",
|
|
1419
|
-
"name": "default",
|
|
1420
|
-
"declaration": {
|
|
1421
|
-
"name": "OpenUI5Element",
|
|
1422
|
-
"module": "dist/features/OpenUI5Element.js"
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
]
|
|
1426
|
-
},
|
|
1427
|
-
{
|
|
1428
|
-
"kind": "javascript-module",
|
|
1429
|
-
"path": "dist/features/OpenUI5Enablement.js",
|
|
1430
|
-
"declarations": [],
|
|
1431
|
-
"exports": [
|
|
1432
|
-
{
|
|
1433
|
-
"kind": "js",
|
|
1434
|
-
"name": "default",
|
|
1435
|
-
"declaration": {
|
|
1436
|
-
"name": "OpenUI5Enablement",
|
|
1437
|
-
"module": "dist/features/OpenUI5Enablement.js"
|
|
1438
|
-
}
|
|
1439
|
-
}
|
|
1440
|
-
]
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"kind": "javascript-module",
|
|
1444
|
-
"path": "dist/features/OpenUI5Support.js",
|
|
1445
|
-
"declarations": [],
|
|
1446
|
-
"exports": [
|
|
1447
|
-
{
|
|
1448
|
-
"kind": "js",
|
|
1449
|
-
"name": "default",
|
|
1450
|
-
"declaration": {
|
|
1451
|
-
"name": "OpenUI5Support",
|
|
1452
|
-
"module": "dist/features/OpenUI5Support.js"
|
|
1453
|
-
}
|
|
1454
|
-
}
|
|
1455
|
-
]
|
|
1456
|
-
},
|
|
1457
|
-
{
|
|
1458
|
-
"kind": "javascript-module",
|
|
1459
|
-
"path": "dist/features/insertOpenUI5PopupStyles.js",
|
|
1460
|
-
"declarations": [],
|
|
1461
|
-
"exports": [
|
|
1462
|
-
{
|
|
1463
|
-
"kind": "js",
|
|
1464
|
-
"name": "default",
|
|
1465
|
-
"declaration": {
|
|
1466
|
-
"name": "insertOpenUI5PopupStyles",
|
|
1467
|
-
"module": "dist/features/insertOpenUI5PopupStyles.js"
|
|
1468
|
-
}
|
|
1469
|
-
}
|
|
1470
|
-
]
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"kind": "javascript-module",
|
|
1474
|
-
"path": "dist/features/patchPatcher.js",
|
|
1475
|
-
"declarations": [],
|
|
1476
|
-
"exports": [
|
|
1477
|
-
{
|
|
1478
|
-
"kind": "js",
|
|
1479
|
-
"name": "default",
|
|
1480
|
-
"declaration": {
|
|
1481
|
-
"name": "patchPatcher",
|
|
1482
|
-
"module": "dist/features/patchPatcher.js"
|
|
1483
|
-
}
|
|
1484
|
-
}
|
|
1485
|
-
]
|
|
1486
|
-
},
|
|
1487
|
-
{
|
|
1488
|
-
"kind": "javascript-module",
|
|
1489
|
-
"path": "dist/features/patchPopup.js",
|
|
1490
|
-
"declarations": [],
|
|
1491
|
-
"exports": []
|
|
1492
|
-
},
|
|
1493
1376
|
{
|
|
1494
1377
|
"kind": "javascript-module",
|
|
1495
1378
|
"path": "dist/delegate/ItemNavigation.js",
|
|
@@ -1673,6 +1556,123 @@
|
|
|
1673
1556
|
}
|
|
1674
1557
|
]
|
|
1675
1558
|
},
|
|
1559
|
+
{
|
|
1560
|
+
"kind": "javascript-module",
|
|
1561
|
+
"path": "dist/features/F6Navigation.js",
|
|
1562
|
+
"declarations": [],
|
|
1563
|
+
"exports": [
|
|
1564
|
+
{
|
|
1565
|
+
"kind": "js",
|
|
1566
|
+
"name": "default",
|
|
1567
|
+
"declaration": {
|
|
1568
|
+
"name": "F6Navigation",
|
|
1569
|
+
"module": "dist/features/F6Navigation.js"
|
|
1570
|
+
}
|
|
1571
|
+
}
|
|
1572
|
+
]
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"kind": "javascript-module",
|
|
1576
|
+
"path": "dist/features/InputElementsFormSupport.js",
|
|
1577
|
+
"declarations": [],
|
|
1578
|
+
"exports": []
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"kind": "javascript-module",
|
|
1582
|
+
"path": "dist/features/LegacyDateFormats.js",
|
|
1583
|
+
"declarations": [],
|
|
1584
|
+
"exports": [
|
|
1585
|
+
{
|
|
1586
|
+
"kind": "js",
|
|
1587
|
+
"name": "default",
|
|
1588
|
+
"declaration": {
|
|
1589
|
+
"name": "LegacyDateFormats",
|
|
1590
|
+
"module": "dist/features/LegacyDateFormats.js"
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
]
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"kind": "javascript-module",
|
|
1597
|
+
"path": "dist/features/OpenUI5Element.js",
|
|
1598
|
+
"declarations": [],
|
|
1599
|
+
"exports": [
|
|
1600
|
+
{
|
|
1601
|
+
"kind": "js",
|
|
1602
|
+
"name": "default",
|
|
1603
|
+
"declaration": {
|
|
1604
|
+
"name": "OpenUI5Element",
|
|
1605
|
+
"module": "dist/features/OpenUI5Element.js"
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"kind": "javascript-module",
|
|
1612
|
+
"path": "dist/features/OpenUI5Enablement.js",
|
|
1613
|
+
"declarations": [],
|
|
1614
|
+
"exports": [
|
|
1615
|
+
{
|
|
1616
|
+
"kind": "js",
|
|
1617
|
+
"name": "default",
|
|
1618
|
+
"declaration": {
|
|
1619
|
+
"name": "OpenUI5Enablement",
|
|
1620
|
+
"module": "dist/features/OpenUI5Enablement.js"
|
|
1621
|
+
}
|
|
1622
|
+
}
|
|
1623
|
+
]
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
"kind": "javascript-module",
|
|
1627
|
+
"path": "dist/features/OpenUI5Support.js",
|
|
1628
|
+
"declarations": [],
|
|
1629
|
+
"exports": [
|
|
1630
|
+
{
|
|
1631
|
+
"kind": "js",
|
|
1632
|
+
"name": "default",
|
|
1633
|
+
"declaration": {
|
|
1634
|
+
"name": "OpenUI5Support",
|
|
1635
|
+
"module": "dist/features/OpenUI5Support.js"
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
]
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"kind": "javascript-module",
|
|
1642
|
+
"path": "dist/features/insertOpenUI5PopupStyles.js",
|
|
1643
|
+
"declarations": [],
|
|
1644
|
+
"exports": [
|
|
1645
|
+
{
|
|
1646
|
+
"kind": "js",
|
|
1647
|
+
"name": "default",
|
|
1648
|
+
"declaration": {
|
|
1649
|
+
"name": "insertOpenUI5PopupStyles",
|
|
1650
|
+
"module": "dist/features/insertOpenUI5PopupStyles.js"
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
]
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"kind": "javascript-module",
|
|
1657
|
+
"path": "dist/features/patchPatcher.js",
|
|
1658
|
+
"declarations": [],
|
|
1659
|
+
"exports": [
|
|
1660
|
+
{
|
|
1661
|
+
"kind": "js",
|
|
1662
|
+
"name": "default",
|
|
1663
|
+
"declaration": {
|
|
1664
|
+
"name": "patchPatcher",
|
|
1665
|
+
"module": "dist/features/patchPatcher.js"
|
|
1666
|
+
}
|
|
1667
|
+
}
|
|
1668
|
+
]
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"kind": "javascript-module",
|
|
1672
|
+
"path": "dist/features/patchPopup.js",
|
|
1673
|
+
"declarations": [],
|
|
1674
|
+
"exports": []
|
|
1675
|
+
},
|
|
1676
1676
|
{
|
|
1677
1677
|
"kind": "javascript-module",
|
|
1678
1678
|
"path": "dist/locale/Locale.js",
|