@openui5/sap.ui.webc.common 1.101.0 → 1.102.0
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/THIRDPARTY.txt +1 -1
- package/package.json +2 -2
- package/src/sap/ui/webc/common/.library +1 -1
- package/src/sap/ui/webc/common/WebComponent.js +34 -2
- package/src/sap/ui/webc/common/WebComponentMetadata.js +11 -1
- package/src/sap/ui/webc/common/WebComponentRenderer.js +1 -1
- package/src/sap/ui/webc/common/library.js +9 -5
- package/src/sap/ui/webc/common/thirdparty/base/CustomElementsScope.js +12 -51
- package/src/sap/ui/webc/common/thirdparty/base/CustomElementsScopeUtils.js +57 -0
- package/src/sap/ui/webc/common/thirdparty/base/Device.js +4 -0
- package/src/sap/ui/webc/common/thirdparty/base/StaticAreaItem.js +2 -2
- package/src/sap/ui/webc/common/thirdparty/base/UI5Element.js +5 -1
- package/src/sap/ui/webc/common/thirdparty/base/UI5ElementMetadata.js +3 -3
- package/src/sap/ui/webc/common/thirdparty/base/_chunks/style-map.js +4 -2
- package/src/sap/ui/webc/common/thirdparty/base/asset-registries/Icons.js +3 -6
- package/src/sap/ui/webc/common/thirdparty/base/config/Icons.js +28 -0
- package/src/sap/ui/webc/common/thirdparty/base/css/BusyIndicator.css +76 -0
- package/src/sap/ui/webc/common/thirdparty/base/features/OpenUI5Enablement.js +99 -0
- package/src/sap/ui/webc/common/thirdparty/base/generated/VersionInfo.js +4 -4
- package/src/sap/ui/webc/common/thirdparty/base/generated/css/BusyIndicator.css.js +11 -0
- package/src/sap/ui/webc/common/thirdparty/base/renderer/LitRenderer.js +25 -10
- package/src/sap/ui/webc/common/thirdparty/base/renderer/executeTemplate.js +4 -4
- package/src/sap/ui/webc/common/thirdparty/base/theming/getEffectiveLinksHrefs.js +5 -1
- package/src/sap/ui/webc/common/thirdparty/base/theming/getEffectiveStyle.js +7 -1
- package/src/sap/ui/webc/common/thirdparty/base/updateShadowRoot.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/base/util/getNormalizedTarget.js +13 -0
- package/src/sap/ui/webc/common/thirdparty/lit-html/directives/class-map.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/lit-html/directives/repeat.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/lit-html/directives/unsafe-html.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/lit-html/lit-html.js +5 -5
- package/src/sap/ui/webc/common/thirdparty/lit-html/static.js +6 -6
- package/src/sap/ui/webc/common/thirdparty/localization/dates/CalendarDate.js +7 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css10.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css11.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css12.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css2.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css3.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css4.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css5.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css6.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css7.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css8.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/_chunks/parameters-bundle.css9.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_horizon/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_horizon_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/common/thirdparty/theming/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +1 -1
@@ -0,0 +1,99 @@
|
|
1
|
+
sap.ui.define(['../FeaturesRegistry', '../generated/css/BusyIndicator.css', '../thirdparty/merge', '../Keys'], function (FeaturesRegistry, BusyIndicator_css, merge, Keys) { 'use strict';
|
2
|
+
|
3
|
+
const busyIndicatorMetadata = {
|
4
|
+
properties: {
|
5
|
+
__isBusy: {
|
6
|
+
type: Boolean,
|
7
|
+
},
|
8
|
+
},
|
9
|
+
};
|
10
|
+
const getBusyIndicatorStyles = () => {
|
11
|
+
return BusyIndicator_css;
|
12
|
+
};
|
13
|
+
const wrapTemplateResultInBusyMarkup = (html, host, templateResult) => {
|
14
|
+
if (host.isOpenUI5Component && host.__isBusy) {
|
15
|
+
templateResult = html`
|
16
|
+
<div class="busy-indicator-wrapper">
|
17
|
+
<span tabindex="0" busy-indicator-before-span @focusin=${host.__suppressFocusIn}></span>
|
18
|
+
${templateResult}
|
19
|
+
<div class="busy-indicator-overlay"></div>
|
20
|
+
<div busy-indicator
|
21
|
+
class="busy-indicator-busy-area"
|
22
|
+
tabindex="0"
|
23
|
+
role="progressbar"
|
24
|
+
@keydown=${host.__suppressFocusBack}
|
25
|
+
aria-valuemin="0"
|
26
|
+
aria-valuemax="100"
|
27
|
+
aria-valuetext="Busy">
|
28
|
+
<div>
|
29
|
+
<div class="busy-indicator-circle circle-animation-0"></div>
|
30
|
+
<div class="busy-indicator-circle circle-animation-1"></div>
|
31
|
+
<div class="busy-indicator-circle circle-animation-2"></div>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</div>`;
|
35
|
+
}
|
36
|
+
return templateResult;
|
37
|
+
};
|
38
|
+
const enrichBusyIndicatorMetadata = UI5Element => {
|
39
|
+
UI5Element.metadata = merge(UI5Element.metadata, busyIndicatorMetadata);
|
40
|
+
};
|
41
|
+
const enrichBusyIndicatorMethods = UI5ElementPrototype => {
|
42
|
+
Object.defineProperties(UI5ElementPrototype, {
|
43
|
+
"__redirectFocus": { value: true, writable: true },
|
44
|
+
"__suppressFocusBack": {
|
45
|
+
get() {
|
46
|
+
const that = this;
|
47
|
+
return {
|
48
|
+
handleEvent: e => {
|
49
|
+
if (Keys.isTabPrevious(e)) {
|
50
|
+
const beforeElem = that.shadowRoot.querySelector("[busy-indicator-before-span]");
|
51
|
+
that.__redirectFocus = false;
|
52
|
+
beforeElem.focus();
|
53
|
+
that.__redirectFocus = true;
|
54
|
+
}
|
55
|
+
},
|
56
|
+
capture: true,
|
57
|
+
passive: false,
|
58
|
+
};
|
59
|
+
},
|
60
|
+
},
|
61
|
+
"isOpenUI5Component": { get: () => { return true; } },
|
62
|
+
});
|
63
|
+
UI5ElementPrototype.__suppressFocusIn = function handleFocusIn() {
|
64
|
+
const busyIndicator = this.shadowRoot.querySelector("[busy-indicator]");
|
65
|
+
if (busyIndicator && this.__redirectFocus) {
|
66
|
+
busyIndicator.focus();
|
67
|
+
}
|
68
|
+
};
|
69
|
+
UI5ElementPrototype.getDomRef = function getDomRef() {
|
70
|
+
if (typeof this._getRealDomRef === "function") {
|
71
|
+
return this._getRealDomRef();
|
72
|
+
}
|
73
|
+
if (!this.shadowRoot || this.shadowRoot.children.length === 0) {
|
74
|
+
return;
|
75
|
+
}
|
76
|
+
const children = [...this.shadowRoot.children].filter(child => !["link", "style"].includes(child.localName));
|
77
|
+
if (children.length !== 1) {
|
78
|
+
console.warn(`The shadow DOM for ${this.constructor.getMetadata().getTag()} does not have a top level element, the getDomRef() method might not work as expected`);
|
79
|
+
}
|
80
|
+
if (this.__isBusy) {
|
81
|
+
return children[0].querySelector(".busy-indicator-wrapper > :not([busy-indicator-before-span]):not(.busy-indicator-overlay):not(.busy-indicator-busy-area)");
|
82
|
+
}
|
83
|
+
return children[0];
|
84
|
+
};
|
85
|
+
};
|
86
|
+
const enrichBusyIndicatorSettings = UI5Element => {
|
87
|
+
enrichBusyIndicatorMetadata(UI5Element);
|
88
|
+
enrichBusyIndicatorMethods(UI5Element.prototype);
|
89
|
+
};
|
90
|
+
const OpenUI5Enablement = {
|
91
|
+
enrichBusyIndicatorSettings,
|
92
|
+
wrapTemplateResultInBusyMarkup,
|
93
|
+
getBusyIndicatorStyles,
|
94
|
+
};
|
95
|
+
FeaturesRegistry.registerFeature("OpenUI5Enablement", OpenUI5Enablement);
|
96
|
+
|
97
|
+
return OpenUI5Enablement;
|
98
|
+
|
99
|
+
});
|
@@ -1,13 +1,13 @@
|
|
1
1
|
sap.ui.define(function () { 'use strict';
|
2
2
|
|
3
3
|
const VersionInfo = {
|
4
|
-
version: "1.
|
4
|
+
version: "1.3.1",
|
5
5
|
major: 1,
|
6
|
-
minor:
|
7
|
-
patch:
|
6
|
+
minor: 3,
|
7
|
+
patch: 1,
|
8
8
|
suffix: "",
|
9
9
|
isNext: false,
|
10
|
-
buildTime:
|
10
|
+
buildTime: 1651645333,
|
11
11
|
};
|
12
12
|
|
13
13
|
return VersionInfo;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
sap.ui.define(function () { 'use strict';
|
2
|
+
|
3
|
+
var BusyIndicatorStyles = {
|
4
|
+
packageName: "@ui5/webcomponents-base",
|
5
|
+
fileName: "BusyIndicator.css",
|
6
|
+
content: `.busy-indicator-wrapper{position:relative;height:100%;width:100%}.busy-indicator-overlay{display:var(--ui5_web_components_busy_indicator_display);position:absolute;inset:0;background:var(--ui5_web_components_busy_indicator_background-color);z-index:99}.busy-indicator-busy-area{display:var(--ui5_web_components_busy_indicator_display);position:absolute;z-index:99;inset:0;justify-content:center;align-items:center;background-color:inherit;flex-direction:column;color:var(--_ui5_busy_indicator_color)}:host([__is-busy]) .busy-indicator-wrapper>:not(.busy-indicator-busy-area):not(.busy-indicator-overlay):not([busy-indicator-before-span]){--ui5_web_components_busy_indicator_display:none}.busy-indicator-busy-area:focus{outline:var(--_ui5_busy_indicator_focus_outline);outline-offset:-.125rem}.busy-indicator-circle{width:1rem;height:1rem;display:inline-block;background-color:currentColor;border-radius:50%}.circle-animation-0{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11)}.circle-animation-1{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11);animation-delay:.2s}.circle-animation-2{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11);animation-delay:.4s}.sapUiLocalBusy{--ui5_web_components_busy_indicator_display:none}@keyframes grow{0%,100%,50%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}`
|
7
|
+
};
|
8
|
+
|
9
|
+
return BusyIndicatorStyles;
|
10
|
+
|
11
|
+
});
|
@@ -1,28 +1,43 @@
|
|
1
|
-
sap.ui.define(['exports', '../_chunks/style-map', '
|
1
|
+
sap.ui.define(['exports', '../_chunks/style-map', '../FeaturesRegistry', 'sap/ui/webc/common/thirdparty/lit-html/directives/repeat', 'sap/ui/webc/common/thirdparty/lit-html/directives/class-map', 'sap/ui/webc/common/thirdparty/lit-html/directives/if-defined', 'sap/ui/webc/common/thirdparty/lit-html/directives/unsafe-html'], function (exports, styleMap, FeaturesRegistry, repeat, classMap, ifDefined, unsafeHtml) { 'use strict';
|
2
2
|
|
3
|
-
const
|
3
|
+
const effectiveHtml = (...args) => {
|
4
|
+
const LitStatic = FeaturesRegistry.getFeature("LitStatic");
|
5
|
+
const fn = LitStatic ? LitStatic.html : styleMap.$;
|
6
|
+
return fn(...args);
|
7
|
+
};
|
8
|
+
const effectiveSvg = (...args) => {
|
9
|
+
const LitStatic = FeaturesRegistry.getFeature("LitStatic");
|
10
|
+
const fn = LitStatic ? LitStatic.svg : styleMap.y;
|
11
|
+
return fn(...args);
|
12
|
+
};
|
13
|
+
const litRender = (templateResult, domNode, styleStrOrHrefsArr, forStaticArea, { host } = {}) => {
|
14
|
+
const OpenUI5Enablement = FeaturesRegistry.getFeature("OpenUI5Enablement");
|
15
|
+
if (OpenUI5Enablement && !forStaticArea) {
|
16
|
+
templateResult = OpenUI5Enablement.wrapTemplateResultInBusyMarkup(effectiveHtml, host, templateResult);
|
17
|
+
}
|
4
18
|
if (typeof styleStrOrHrefsArr === "string") {
|
5
|
-
templateResult =
|
19
|
+
templateResult = effectiveHtml`<style>${styleStrOrHrefsArr}</style>${templateResult}`;
|
6
20
|
} else if (Array.isArray(styleStrOrHrefsArr) && styleStrOrHrefsArr.length) {
|
7
|
-
templateResult =
|
21
|
+
templateResult = effectiveHtml`${styleStrOrHrefsArr.map(href => effectiveHtml`<link type="text/css" rel="stylesheet" href="${href}">`)}${templateResult}`;
|
8
22
|
}
|
9
|
-
styleMap.
|
23
|
+
styleMap.x(templateResult, domNode, { host });
|
10
24
|
};
|
11
25
|
const scopeTag = (tag, tags, suffix) => {
|
12
|
-
const
|
13
|
-
|
26
|
+
const LitStatic = FeaturesRegistry.getFeature("LitStatic");
|
27
|
+
if (LitStatic) {
|
28
|
+
return LitStatic.unsafeStatic((tags || []).includes(tag) ? `${tag}-${suffix}` : tag);
|
29
|
+
}
|
14
30
|
};
|
15
31
|
|
16
32
|
exports.styleMap = styleMap.styleMap;
|
17
|
-
exports.html = _static.html;
|
18
|
-
exports.svg = _static.svg;
|
19
|
-
exports.unsafeStatic = _static.unsafeStatic;
|
20
33
|
exports.repeat = repeat.repeat;
|
21
34
|
exports.classMap = classMap.classMap;
|
22
35
|
exports.ifDefined = ifDefined.ifDefined;
|
23
36
|
exports.unsafeHTML = unsafeHtml.unsafeHTML;
|
24
37
|
exports.default = litRender;
|
38
|
+
exports.html = effectiveHtml;
|
25
39
|
exports.scopeTag = scopeTag;
|
40
|
+
exports.svg = effectiveSvg;
|
26
41
|
|
27
42
|
Object.defineProperty(exports, '__esModule', { value: true });
|
28
43
|
|
@@ -1,14 +1,14 @@
|
|
1
|
-
sap.ui.define(['../
|
1
|
+
sap.ui.define(['../CustomElementsScopeUtils'], function (CustomElementsScopeUtils) { 'use strict';
|
2
2
|
|
3
3
|
const executeTemplate = (template, component) => {
|
4
4
|
const tagsToScope = getTagsToScope(component);
|
5
|
-
const scope =
|
5
|
+
const scope = CustomElementsScopeUtils.getCustomElementsScopingSuffix();
|
6
6
|
return template(component, tagsToScope, scope);
|
7
7
|
};
|
8
8
|
const getTagsToScope = component => {
|
9
9
|
const componentTag = component.constructor.getMetadata().getPureTag();
|
10
|
-
const tagsToScope = component.constructor.getUniqueDependencies().map(dep => dep.getMetadata().getPureTag()).filter(
|
11
|
-
if (
|
10
|
+
const tagsToScope = component.constructor.getUniqueDependencies().map(dep => dep.getMetadata().getPureTag()).filter(CustomElementsScopeUtils.shouldScopeCustomElement);
|
11
|
+
if (CustomElementsScopeUtils.shouldScopeCustomElement(componentTag)) {
|
12
12
|
tagsToScope.push(componentTag);
|
13
13
|
}
|
14
14
|
return tagsToScope;
|
@@ -1,16 +1,20 @@
|
|
1
|
-
sap.ui.define(['../CSP'], function (CSP) { 'use strict';
|
1
|
+
sap.ui.define(['../CSP', '../FeaturesRegistry'], function (CSP, FeaturesRegistry) { 'use strict';
|
2
2
|
|
3
3
|
const flatten = arr => {
|
4
4
|
return arr.reduce((acc, val) => acc.concat(Array.isArray(val) ? flatten(val) : val), []);
|
5
5
|
};
|
6
6
|
const getEffectiveLinksHrefs = (ElementClass, forStaticArea = false) => {
|
7
7
|
let stylesData = ElementClass[forStaticArea ? "staticAreaStyles" : "styles"];
|
8
|
+
const OpenUI5Enablement = FeaturesRegistry.getFeature("OpenUI5Enablement");
|
8
9
|
if (!stylesData) {
|
9
10
|
return;
|
10
11
|
}
|
11
12
|
if (!Array.isArray(stylesData)) {
|
12
13
|
stylesData = [stylesData];
|
13
14
|
}
|
15
|
+
if (OpenUI5Enablement) {
|
16
|
+
stylesData.push(OpenUI5Enablement.getBusyIndicatorStyles());
|
17
|
+
}
|
14
18
|
return flatten(stylesData).filter(data => !!data).map(data => CSP.getUrl(data.packageName, data.fileName));
|
15
19
|
};
|
16
20
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
sap.ui.define(['./CustomStyle', './getStylesString'], function (CustomStyle, getStylesString) { 'use strict';
|
1
|
+
sap.ui.define(['./CustomStyle', './getStylesString', '../FeaturesRegistry'], function (CustomStyle, getStylesString, FeaturesRegistry) { 'use strict';
|
2
2
|
|
3
3
|
const effectiveStyleMap = new Map();
|
4
4
|
CustomStyle.attachCustomCSSChange(tag => {
|
@@ -7,8 +7,13 @@ sap.ui.define(['./CustomStyle', './getStylesString'], function (CustomStyle, get
|
|
7
7
|
const getEffectiveStyle = (ElementClass, forStaticArea = false) => {
|
8
8
|
const tag = ElementClass.getMetadata().getTag();
|
9
9
|
const key = `${tag}_${forStaticArea ? "static" : "normal"}`;
|
10
|
+
const OpenUI5Enablement = FeaturesRegistry.getFeature("OpenUI5Enablement");
|
10
11
|
if (!effectiveStyleMap.has(key)) {
|
11
12
|
let effectiveStyle;
|
13
|
+
let busyIndicatorStyles = "";
|
14
|
+
if (OpenUI5Enablement) {
|
15
|
+
busyIndicatorStyles = getStylesString(OpenUI5Enablement.getBusyIndicatorStyles());
|
16
|
+
}
|
12
17
|
if (forStaticArea) {
|
13
18
|
effectiveStyle = getStylesString(ElementClass.staticAreaStyles);
|
14
19
|
} else {
|
@@ -16,6 +21,7 @@ sap.ui.define(['./CustomStyle', './getStylesString'], function (CustomStyle, get
|
|
16
21
|
const builtInStyles = getStylesString(ElementClass.styles);
|
17
22
|
effectiveStyle = `${builtInStyles} ${customStyle}`;
|
18
23
|
}
|
24
|
+
effectiveStyle = `${effectiveStyle} ${busyIndicatorStyles}`;
|
19
25
|
effectiveStyleMap.set(key, effectiveStyle);
|
20
26
|
}
|
21
27
|
return effectiveStyleMap.get(key);
|
@@ -12,7 +12,7 @@ sap.ui.define(['./renderer/executeTemplate', './theming/getConstructableStyle',
|
|
12
12
|
} else if (!isLegacyBrowser()) {
|
13
13
|
styleStrOrHrefsArr = getEffectiveStyle(element.constructor, forStaticArea);
|
14
14
|
}
|
15
|
-
element.constructor.render(renderResult, shadowRoot, styleStrOrHrefsArr, { host: element });
|
15
|
+
element.constructor.render(renderResult, shadowRoot, styleStrOrHrefsArr, forStaticArea, { host: element });
|
16
16
|
};
|
17
17
|
|
18
18
|
return updateShadowRoot;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
sap.ui.define(function () { 'use strict';
|
2
|
+
|
3
|
+
const getNormalizedTarget = target => {
|
4
|
+
let element = target;
|
5
|
+
if (target.shadowRoot && target.shadowRoot.activeElement) {
|
6
|
+
element = target.shadowRoot.activeElement;
|
7
|
+
}
|
8
|
+
return element;
|
9
|
+
};
|
10
|
+
|
11
|
+
return getNormalizedTarget;
|
12
|
+
|
13
|
+
});
|
@@ -4,7 +4,7 @@ sap.ui.define(['exports', '../lit-html', '../directive'], function (exports, lit
|
|
4
4
|
* @license
|
5
5
|
* Copyright 2018 Google LLC
|
6
6
|
* SPDX-License-Identifier: BSD-3-Clause
|
7
|
-
*/const o=directive.directive(class extends directive.Directive{constructor(t){var i;if(super(t),t.type!==directive.PartType.ATTRIBUTE||"class"!==t.name||(null===(i=t.strings)||void 0===i?void 0:i.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return " "+Object.keys(t).filter((i=>t[i])).join(" ")+" "}update(i,[s]){var r,o;if(void 0===this.
|
7
|
+
*/const o=directive.directive(class extends directive.Directive{constructor(t){var i;if(super(t),t.type!==directive.PartType.ATTRIBUTE||"class"!==t.name||(null===(i=t.strings)||void 0===i?void 0:i.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return " "+Object.keys(t).filter((i=>t[i])).join(" ")+" "}update(i,[s]){var r,o;if(void 0===this.et){this.et=new Set,void 0!==i.strings&&(this.st=new Set(i.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in s)s[t]&&!(null===(r=this.st)||void 0===r?void 0:r.has(t))&&this.et.add(t);return this.render(s)}const e=i.element.classList;this.et.forEach((t=>{t in s||(e.remove(t),this.et.delete(t));}));for(const t in s){const i=!!s[t];i===this.et.has(t)||(null===(o=this.st)||void 0===o?void 0:o.has(t))||(i?(e.add(t),this.et.add(t)):(e.remove(t),this.et.delete(t)));}return litHtml.noChange}});
|
8
8
|
|
9
9
|
exports.classMap = o;
|
10
10
|
|
@@ -11,7 +11,7 @@ sap.ui.define(['exports', '../lit-html', '../directive'], function (exports, lit
|
|
11
11
|
* Copyright 2017 Google LLC
|
12
12
|
* SPDX-License-Identifier: BSD-3-Clause
|
13
13
|
*/
|
14
|
-
const u=(e,s,t)=>{const r=new Map;for(let l=s;l<=t;l++)r.set(e[l],l);return r},c=directive.directive(class extends directive.Directive{constructor(e){if(super(e),e.type!==directive.PartType.CHILD)throw Error("repeat() can only be used in text expressions")}dt(e,s,t){let r;void 0===t?t=s:void 0!==s&&(r=s);const l=[],o=[];let i=0;for(const s of e)l[i]=r?r(s,i):i,o[i]=t(s,i),i++;return {values:o,keys:l}}render(e,s,t){return this.dt(e,s,t).values}update(s$1,[t,r,c]){var d;const a$1=a(s$1),{values:p,keys:v}=this.dt(t,r,c);if(!Array.isArray(a$1))return this.
|
14
|
+
const u=(e,s,t)=>{const r=new Map;for(let l=s;l<=t;l++)r.set(e[l],l);return r},c=directive.directive(class extends directive.Directive{constructor(e){if(super(e),e.type!==directive.PartType.CHILD)throw Error("repeat() can only be used in text expressions")}dt(e,s,t){let r;void 0===t?t=s:void 0!==s&&(r=s);const l=[],o=[];let i=0;for(const s of e)l[i]=r?r(s,i):i,o[i]=t(s,i),i++;return {values:o,keys:l}}render(e,s,t){return this.dt(e,s,t).values}update(s$1,[t,r,c]){var d;const a$1=a(s$1),{values:p,keys:v}=this.dt(t,r,c);if(!Array.isArray(a$1))return this.ut=v,p;const h=null!==(d=this.ut)&&void 0!==d?d:this.ut=[],m$1=[];let y,x,j=0,k=a$1.length-1,w=0,A=p.length-1;for(;j<=k&&w<=A;)if(null===a$1[j])j++;else if(null===a$1[k])k--;else if(h[j]===v[w])m$1[w]=c$1(a$1[j],p[w]),j++,w++;else if(h[k]===v[A])m$1[A]=c$1(a$1[k],p[A]),k--,A--;else if(h[j]===v[A])m$1[A]=c$1(a$1[j],p[A]),u$1(s$1,m$1[A+1],a$1[j]),j++,A--;else if(h[k]===v[w])m$1[w]=c$1(a$1[k],p[w]),u$1(s$1,a$1[j],a$1[k]),k--,w++;else if(void 0===y&&(y=u(v,w,A),x=u(h,j,k)),y.has(h[j]))if(y.has(h[k])){const e=x.get(v[w]),t=void 0!==e?a$1[e]:null;if(null===t){const e=u$1(s$1,a$1[j]);c$1(e,p[w]),m$1[w]=e;}else m$1[w]=c$1(t,p[w]),u$1(s$1,a$1[j],t),a$1[e]=null;w++;}else m(a$1[k]),k--;else m(a$1[j]),j++;for(;w<=A;){const e=u$1(s$1,m$1[A+1]);c$1(e,p[w]),m$1[w++]=e;}for(;j<=k;){const e=a$1[j++];null!==e&&m(e);}return this.ut=v,s(s$1,m$1),litHtml.noChange}});
|
15
15
|
|
16
16
|
exports.repeat = c;
|
17
17
|
|
@@ -4,7 +4,7 @@ sap.ui.define(['exports', '../lit-html', '../directive'], function (exports, lit
|
|
4
4
|
* @license
|
5
5
|
* Copyright 2017 Google LLC
|
6
6
|
* SPDX-License-Identifier: BSD-3-Clause
|
7
|
-
*/class e extends directive.Directive{constructor(i){if(super(i),this.it=litHtml.nothing,i.type!==directive.PartType.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(r){if(r===litHtml.nothing||null==r)return this.
|
7
|
+
*/class e extends directive.Directive{constructor(i){if(super(i),this.it=litHtml.nothing,i.type!==directive.PartType.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(r){if(r===litHtml.nothing||null==r)return this.ft=void 0,this.it=r;if(r===litHtml.noChange)return r;if("string"!=typeof r)throw Error(this.constructor.directiveName+"() called with a non-string value");if(r===this.it)return this.ft;this.it=r;const s=[r];return s.raw=s,this.ft={_$litType$:this.constructor.resultType,strings:s,values:[]}}}e.directiveName="unsafeHTML",e.resultType=1;const o=directive.directive(e);
|
8
8
|
|
9
9
|
exports.UnsafeHTMLDirective = e;
|
10
10
|
exports.unsafeHTML = o;
|
@@ -5,13 +5,13 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
5
5
|
* Copyright 2017 Google LLC
|
6
6
|
* SPDX-License-Identifier: BSD-3-Clause
|
7
7
|
*/
|
8
|
-
var t;const i=globalThis.trustedTypes,s=i?i.createPolicy("lit-html",{createHTML:t=>t}):void 0,e=`lit$${(Math.random()+"").slice(9)}$`,o="?"+e,n=`<${o}>`,l=document,h=(t="")=>l.createComment(t),r=t=>null===t||"object"!=typeof t&&"function"!=typeof t,d=Array.isArray,u=t=>{var i;return d(t)||"function"==typeof(null===(i=t)||void 0===i?void 0:i[Symbol.iterator])},c=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,a=/>/g,f=/>|[ \n\r](?:([^\s"'>=/]+)([ \n\r]*=[ \n\r]*(?:[^ \n\r"'`<>=]|("|')|))|$)/g,_=/'/g,m=/"/g,g=/^(?:script|style|textarea)$/i
|
8
|
+
var t;const i=globalThis.trustedTypes,s=i?i.createPolicy("lit-html",{createHTML:t=>t}):void 0,e=`lit$${(Math.random()+"").slice(9)}$`,o="?"+e,n=`<${o}>`,l=document,h=(t="")=>l.createComment(t),r=t=>null===t||"object"!=typeof t&&"function"!=typeof t,d=Array.isArray,u=t=>{var i;return d(t)||"function"==typeof(null===(i=t)||void 0===i?void 0:i[Symbol.iterator])},c=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,a=/>/g,f=/>|[ \n\r](?:([^\s"'>=/]+)([ \n\r]*=[ \n\r]*(?:[^ \n\r"'`<>=]|("|')|))|$)/g,_=/'/g,m=/"/g,g=/^(?:script|style|textarea|title)$/i,p=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),$=p(1),y=p(2),b=Symbol.for("lit-noChange"),w=Symbol.for("lit-nothing"),T=new WeakMap,x=(t,i,s)=>{var e,o;const n=null!==(e=null==s?void 0:s.renderBefore)&&void 0!==e?e:i;let l=n._$litPart$;if(void 0===l){const t=null!==(o=null==s?void 0:s.renderBefore)&&void 0!==o?o:null;n._$litPart$=l=new N(i.insertBefore(h(),t),t,void 0,null!=s?s:{});}return l._$AI(t),l},A=l.createTreeWalker(l,129,null,!1),C=(t,i)=>{const o=t.length-1,l=[];let h,r=2===i?"<svg>":"",d=c;for(let i=0;i<o;i++){const s=t[i];let o,u,p=-1,$=0;for(;$<s.length&&(d.lastIndex=$,u=d.exec(s),null!==u);)$=d.lastIndex,d===c?"!--"===u[1]?d=v:void 0!==u[1]?d=a:void 0!==u[2]?(g.test(u[2])&&(h=RegExp("</"+u[2],"g")),d=f):void 0!==u[3]&&(d=f):d===f?">"===u[0]?(d=null!=h?h:c,p=-1):void 0===u[1]?p=-2:(p=d.lastIndex-u[2].length,o=u[1],d=void 0===u[3]?f:'"'===u[3]?m:_):d===m||d===_?d=f:d===v||d===a?d=c:(d=f,h=void 0);const y=d===f&&t[i+1].startsWith("/>")?" ":"";r+=d===c?s+n:p>=0?(l.push(o),s.slice(0,p)+"$lit$"+s.slice(p)+e+y):s+e+(-2===p?(l.push(void 0),i):y);}const u=r+(t[o]||"<?>")+(2===i?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return [void 0!==s?s.createHTML(u):u,l]};class E{constructor({strings:t,_$litType$:s},n){let l;this.parts=[];let r=0,d=0;const u=t.length-1,c=this.parts,[v,a]=C(t,s);if(this.el=E.createElement(v,n),A.currentNode=this.el.content,2===s){const t=this.el.content,i=t.firstChild;i.remove(),t.append(...i.childNodes);}for(;null!==(l=A.nextNode())&&c.length<u;){if(1===l.nodeType){if(l.hasAttributes()){const t=[];for(const i of l.getAttributeNames())if(i.endsWith("$lit$")||i.startsWith(e)){const s=a[d++];if(t.push(i),void 0!==s){const t=l.getAttribute(s.toLowerCase()+"$lit$").split(e),i=/([.?@])?(.*)/.exec(s);c.push({type:1,index:r,name:i[2],strings:t,ctor:"."===i[1]?M:"?"===i[1]?H:"@"===i[1]?I:S});}else c.push({type:6,index:r});}for(const i of t)l.removeAttribute(i);}if(g.test(l.tagName)){const t=l.textContent.split(e),s=t.length-1;if(s>0){l.textContent=i?i.emptyScript:"";for(let i=0;i<s;i++)l.append(t[i],h()),A.nextNode(),c.push({type:2,index:++r});l.append(t[s],h());}}}else if(8===l.nodeType)if(l.data===o)c.push({type:2,index:r});else {let t=-1;for(;-1!==(t=l.data.indexOf(e,t+1));)c.push({type:7,index:r}),t+=e.length-1;}r++;}}static createElement(t,i){const s=l.createElement("template");return s.innerHTML=t,s}}function P(t,i,s=t,e){var o,n,l,h;if(i===b)return i;let d=void 0!==e?null===(o=s._$Cl)||void 0===o?void 0:o[e]:s._$Cu;const u=r(i)?void 0:i._$litDirective$;return (null==d?void 0:d.constructor)!==u&&(null===(n=null==d?void 0:d._$AO)||void 0===n||n.call(d,!1),void 0===u?d=void 0:(d=new u(t),d._$AT(t,s,e)),void 0!==e?(null!==(l=(h=s)._$Cl)&&void 0!==l?l:h._$Cl=[])[e]=d:s._$Cu=d),void 0!==d&&(i=P(t,d._$AS(t,i.values),d,e)),i}class V{constructor(t,i){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=i;}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var i;const{el:{content:s},parts:e}=this._$AD,o=(null!==(i=null==t?void 0:t.creationScope)&&void 0!==i?i:l).importNode(s,!0);A.currentNode=o;let n=A.nextNode(),h=0,r=0,d=e[0];for(;void 0!==d;){if(h===d.index){let i;2===d.type?i=new N(n,n.nextSibling,this,t):1===d.type?i=new d.ctor(n,d.name,d.strings,this,t):6===d.type&&(i=new L(n,this,t)),this.v.push(i),d=e[++r];}h!==(null==d?void 0:d.index)&&(n=A.nextNode(),h++);}return o}m(t){let i=0;for(const s of this.v)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++;}}class N{constructor(t,i,s,e){var o;this.type=2,this._$AH=w,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cg=null===(o=null==e?void 0:e.isConnected)||void 0===o||o;}get _$AU(){var t,i;return null!==(i=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==i?i:this._$Cg}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=P(this,t,i),r(t)?t===w||null==t||""===t?(this._$AH!==w&&this._$AR(),this._$AH=w):t!==this._$AH&&t!==b&&this.$(t):void 0!==t._$litType$?this.T(t):void 0!==t.nodeType?this.k(t):u(t)?this.S(t):this.$(t);}M(t,i=this._$AB){return this._$AA.parentNode.insertBefore(t,i)}k(t){this._$AH!==t&&(this._$AR(),this._$AH=this.M(t));}$(t){this._$AH!==w&&r(this._$AH)?this._$AA.nextSibling.data=t:this.k(l.createTextNode(t)),this._$AH=t;}T(t){var i;const{values:s,_$litType$:e}=t,o="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=E.createElement(e.h,this.options)),e);if((null===(i=this._$AH)||void 0===i?void 0:i._$AD)===o)this._$AH.m(s);else {const t=new V(o,this),i=t.p(this.options);t.m(s),this.k(i),this._$AH=t;}}_$AC(t){let i=T.get(t.strings);return void 0===i&&T.set(t.strings,i=new E(t)),i}S(t){d(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const o of t)e===i.length?i.push(s=new N(this.M(h()),this.M(h()),this,this.options)):s=i[e],s._$AI(o),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e);}_$AR(t=this._$AA.nextSibling,i){var s;for(null===(s=this._$AP)||void 0===s||s.call(this,!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i;}}setConnected(t){var i;void 0===this._$AM&&(this._$Cg=t,null===(i=this._$AP)||void 0===i||i.call(this,t));}}class S{constructor(t,i,s,e,o){this.type=1,this._$AH=w,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=o,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=w;}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,i=this,s,e){const o=this.strings;let n=!1;if(void 0===o)t=P(this,t,i,0),n=!r(t)||t!==this._$AH&&t!==b,n&&(this._$AH=t);else {const e=t;let l,h;for(t=o[0],l=0;l<o.length-1;l++)h=P(this,e[s+l],i,l),h===b&&(h=this._$AH[l]),n||(n=!r(h)||h!==this._$AH[l]),h===w?t=w:t!==w&&(t+=(null!=h?h:"")+o[l+1]),this._$AH[l]=h;}n&&!e&&this.C(t);}C(t){t===w?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"");}}class M extends S{constructor(){super(...arguments),this.type=3;}C(t){this.element[this.name]=t===w?void 0:t;}}const k=i?i.emptyScript:"";class H extends S{constructor(){super(...arguments),this.type=4;}C(t){t&&t!==w?this.element.setAttribute(this.name,k):this.element.removeAttribute(this.name);}}class I extends S{constructor(t,i,s,e,o){super(t,i,s,e,o),this.type=5;}_$AI(t,i=this){var s;if((t=null!==(s=P(this,t,i,0))&&void 0!==s?s:w)===b)return;const e=this._$AH,o=t===w&&e!==w||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,n=t!==w&&(e===w||o);o&&this.element.removeEventListener(this.name,this,e),n&&this.element.addEventListener(this.name,this,t),this._$AH=t;}handleEvent(t){var i,s;"function"==typeof this._$AH?this._$AH.call(null!==(s=null===(i=this.options)||void 0===i?void 0:i.host)&&void 0!==s?s:this.element,t):this._$AH.handleEvent(t);}}class L{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s;}get _$AU(){return this._$AM._$AU}_$AI(t){P(this,t);}}const R={L:"$lit$",P:e,V:o,I:1,N:C,R:V,j:u,D:P,H:N,F:S,O:H,W:I,B:M,Z:L},z=window.litHtmlPolyfillSupport;null==z||z(E,N),(null!==(t=globalThis.litHtmlVersions)&&void 0!==t?t:globalThis.litHtmlVersions=[]).push("2.2.2");
|
9
9
|
|
10
|
-
exports._$LH =
|
11
|
-
exports.html =
|
10
|
+
exports._$LH = R;
|
11
|
+
exports.html = $;
|
12
12
|
exports.noChange = b;
|
13
|
-
exports.nothing =
|
14
|
-
exports.render =
|
13
|
+
exports.nothing = w;
|
14
|
+
exports.render = x;
|
15
15
|
exports.svg = y;
|
16
16
|
|
17
17
|
Object.defineProperty(exports, '__esModule', { value: true });
|
@@ -4,13 +4,13 @@ sap.ui.define(['exports', './lit-html'], function (exports, litHtml) { 'use stri
|
|
4
4
|
* @license
|
5
5
|
* Copyright 2020 Google LLC
|
6
6
|
* SPDX-License-Identifier: BSD-3-Clause
|
7
|
-
*/const o=t=>({_$litStatic$:t}),
|
7
|
+
*/const o=Symbol.for(""),e=t=>{var r,e;if((null===(r=t)||void 0===r?void 0:r.r)===o)return null===(e=t)||void 0===e?void 0:e._$litStatic$},i=t=>({_$litStatic$:t,r:o}),l=(t,...r)=>({_$litStatic$:r.reduce(((r,o,e)=>r+(t=>{if(void 0!==t._$litStatic$)return t._$litStatic$;throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t}. Use 'unsafeStatic' to pass non-literal values, but\n take care to ensure page security.`)})(o)+t[e+1]),t[0]),r:o}),a=new Map,s=t=>(r,...o)=>{const i=o.length;let l,s;const n=[],u=[];let c,v=0,$=!1;for(;v<i;){for(c=r[v];v<i&&void 0!==(s=o[v],l=e(s));)c+=l+r[++v],$=!0;u.push(s),n.push(c),v++;}if(v===i&&n.push(r[i]),$){const t=n.join("$$lit$$");void 0===(r=a.get(t))&&(n.raw=n,a.set(t,r=n)),o=u;}return t(r,...o)},n=s(litHtml.html),u=s(litHtml.svg);
|
8
8
|
|
9
|
-
exports.html =
|
10
|
-
exports.literal =
|
11
|
-
exports.svg =
|
12
|
-
exports.unsafeStatic =
|
13
|
-
exports.withStatic =
|
9
|
+
exports.html = n;
|
10
|
+
exports.literal = l;
|
11
|
+
exports.svg = u;
|
12
|
+
exports.unsafeStatic = i;
|
13
|
+
exports.withStatic = s;
|
14
14
|
|
15
15
|
Object.defineProperty(exports, '__esModule', { value: true });
|
16
16
|
|
@@ -125,7 +125,13 @@ sap.ui.define(['sap/ui/core/date/UniversalDate'], function (UniversalDate) { 'us
|
|
125
125
|
}
|
126
126
|
static fromTimestamp(iTimestamp, sCalendarType) {
|
127
127
|
const oCalDate = new CalendarDate(0, 0, 1);
|
128
|
-
|
128
|
+
let oUDate;
|
129
|
+
try {
|
130
|
+
oUDate = UniversalDate__default.getInstance(new Date(iTimestamp), sCalendarType);
|
131
|
+
} catch (e) {
|
132
|
+
oUDate = new Date(NaN);
|
133
|
+
}
|
134
|
+
oCalDate._oUDate = oUDate;
|
129
135
|
return oCalDate;
|
130
136
|
}
|
131
137
|
}
|
@@ -4,7 +4,7 @@ sap.ui.define(['exports'], function (exports) { 'use strict';
|
|
4
4
|
_: {
|
5
5
|
packageName: "@ui5/webcomponents-theming",
|
6
6
|
fileName: "themes/sap_belize/parameters-bundle.css",
|
7
|
-
content: ":root{--sapThemeMetaData-Base-baseLib:{\"Path\":\"Base.baseLib.sap_belize.css_variables\",\"PathPattern\":\"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\":[\"sap_base_fiori\",\"baseTheme\"],\"Tags\":[\"Fiori_2\",\"Fiori_3\"],\"Scopes\":[\"sapContrast\"],\"FallbackThemeId\":\"sap_bluecrystal\",\"Engine\":{\"Name\":\"theming-engine\",\"Version\":\"1.68.3\"},\"Version\":{ \"Build\":\"11.1.36.20220314143804\",\"Source\":\"11.1.36\"}};--sapBrandColor:#427cac;--sapHighlightColor:#427cac;--sapBaseColor:#eff4f9;--sapShellColor:transparent;--sapBackgroundColor:#fafafa;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSemiboldFamily:\"72-Semibold\",\"72-Semiboldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSemiboldDuplexFamily:\"72-SemiboldDuplex\",\"72-SemiboldDuplexfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBlackFamily:\"72Black\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:1.625rem;--sapFontHeader2Size:1.375rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#333;--sapLinkColor:#0070b1;--sapLink_Hover_Color:#0070b1;--sapLink_Active_Color:#0070b1;--sapLink_Visited_Color:#0070b1;--sapLink_InvertedColor:#7ed0ff;--sapLink_SubtleColor:#004065;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#427cac;--sapActiveColor:#427cac;--sapHighlightTextColor:#fff;--sapTitleColor:#333;--sapNegativeColor:#b00;--sapCriticalColor:#e78c07;--sapPositiveColor:#2b7c2b;--sapInformativeColor:#427cac;--sapNeutralColor:#5e696e;--sapNegativeElementColor:#b00;--sapCriticalElementColor:#e78c07;--sapPositiveElementColor:#2b7c2b;--sapInformativeElementColor:#427cac;--sapNeutralElementColor:#5e696e;--sapNegativeTextColor:#b00;--sapPositiveTextColor:#2b7c2b;--sapCriticalTextColor:#e78c07;--sapInformativeTextColor:#427cac;--sapNeutralTextColor:#5e696e;--sapNeutralBorderColor:#5e696e;--sapErrorColor:#e00;--sapErrorBorderColor:#e00;--sapWarningColor:#f9a429;--sapWarningBorderColor:#f9a429;--sapSuccessColor:#38a238;--sapSuccessBorderColor:#38a238;--sapInformationColor:#427cac;--sapInformationBorderColor:#427cac;--sapErrorBackground:#ffe4e4;--sapWarningBackground:#fef0db;--sapSuccessBackground:#e4f5e4;--sapInformationBackground:#ebf2f7;--sapNeutralBackground:#f4f5f6;--sapIndicationColor_1:#800;--sapIndicationColor_1_Background:#800;--sapIndicationColor_1_BorderColor:#800;--sapIndicationColor_1_Hover_Background:#6f0000;--sapIndicationColor_1_Active_Background:#500;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#b00;--sapIndicationColor_2_Background:#b00;--sapIndicationColor_2_BorderColor:#b00;--sapIndicationColor_2_Hover_Background:#a20000;--sapIndicationColor_2_Active_Background:#800;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#e78c07;--sapIndicationColor_3_Background:#e78c07;--sapIndicationColor_3_BorderColor:#e78c07;--sapIndicationColor_3_Hover_Background:#d88307;--sapIndicationColor_3_Active_Background:#c97a06;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#2b7c2b;--sapIndicationColor_4_Background:#2b7c2b;--sapIndicationColor_4_BorderColor:#2b7c2b;--sapIndicationColor_4_Hover_Background:#246924;--sapIndicationColor_4_Active_Background:#1e561e;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#427cac;--sapIndicationColor_5_Background:#427cac;--sapIndicationColor_5_BorderColor:#427cac;--sapIndicationColor_5_Hover_Background:#3b6f9a;--sapIndicationColor_5_Active_Background:#346187;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#1a9898;--sapIndicationColor_6_Background:#1a9898;--sapIndicationColor_6_BorderColor:#1a9898;--sapIndicationColor_6_Hover_Background:#168282;--sapIndicationColor_6_Active_Background:#136c6c;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#925ace;--sapIndicationColor_7_Background:#925ace;--sapIndicationColor_7_BorderColor:#925ace;--sapIndicationColor_7_Hover_Background:#8546c8;--sapIndicationColor_7_Active_Background:#7838bd;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#ab218e;--sapIndicationColor_8_Background:#ab218e;--sapIndicationColor_8_BorderColor:#ab218e;--sapIndicationColor_8_Hover_Background:#961d7c;--sapIndicationColor_8_Active_Background:#80196a;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:3rem;--sapElement_Height:2.5rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#346187;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#878787;--sapContent_MarkerIconColor:#678bc7;--sapContent_MarkerTextColor:#147575;--sapContent_MeasureIndicatorColor:#bfbfbf;--sapContent_Selected_MeasureIndicatorColor:#bfbfbf;--sapContent_ImagePlaceholderBackground:#ceddec;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#e09d00;--sapContent_UnratedColor:#a5a5a5;--sapContent_BusyColor:#00a4eb;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow1:0 0.125rem 0.5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow2:0 0.625rem 1.875rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow3:0 1.25rem 5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_TextShadow:0 0 0.125rem #fff;--sapContent_ContrastTextShadow:0 0 0.0625rem rgba(0,0,0,0.7);--sapContent_HeaderShadow:0 0.125rem 0 0 #eff4f9,inset 0 -0.125rem 0 0 #d1e0ee;--sapContent_Interaction_Shadow:none;--sapContent_Selected_Shadow:none;--sapContent_Negative_Shadow:none;--sapContent_Critical_Shadow:none;--sapContent_Positive_Shadow:none;--sapContent_Informative_Shadow:none;--sapContent_Neutral_Shadow:none;--sapContent_SearchHighlightColor:#d4f7db;--sapContent_HelpColor:#3f8600;--sapContent_LabelColor:#666;--sapContent_MonospaceFontFamily:\"72Mono\",\"72Monofull\",lucida console,monospace;--sapContent_MonospaceBoldFontFamily:\"72Mono-Bold\",\"72Mono-Boldfull\",lucida console,monospace;--sapContent_IconFontFamily:\"SAP-icons\";--sapContent_DisabledTextColor:rgba(51,51,51,0.5);--sapContent_DisabledOpacity:0.5;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#e5e5e5;--sapContent_ForegroundBorderColor:#bfbfbf;--sapContent_ForegroundTextColor:#333;--sapContent_BadgeBackground:#c14646;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#c2d5e8;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#c2d5e8 0%,#c2d5e8 35%,#afc8e1 50%,#c2d5e8 65%,#c2d5e8);--sapContent_DragAndDropActiveColor:#0070b1;--sapContent_Selected_Background:#427cac;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#4684b7;--sapContent_Selected_ForegroundColor:#427cac;--sapContent_ForcedColorAdjust:none;--sapContent_Illustrative_Color1:#427cac;--sapContent_Illustrative_Color2:#93b7d6;--sapContent_Illustrative_Color3:#ffba10;--sapContent_Illustrative_Color4:#4a5055;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#c6cace;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapContent_Illustrative_Color9:#64edd2;--sapContent_Illustrative_Color10:#ebf8ff;--sapContent_Illustrative_Color11:#f31ded;--sapContent_Illustrative_Color12:#5dc122;--sapContent_Illustrative_Color13:#005dc9;--sapContent_Illustrative_Color14:#004da5;--sapContent_Illustrative_Color15:#cc7400;--sapContent_Illustrative_Color16:#3b0ac6;--sapContent_Illustrative_Color17:#00a58a;--sapContent_Illustrative_Color18:#d1efff;--sapContent_Illustrative_Color19:#b8e6ff;--sapContent_Illustrative_Color20:#9eddff;--sapShell_Background:#cad8e6;--sapShell_BackgroundImage:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundGradient:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:transparent;--sapShell_TextColor:#346187;--sapShell_InteractiveBackground:transparent;--sapShell_InteractiveTextColor:#346187;--sapShell_InteractiveBorderColor:#346187;--sapShell_GroupTitleTextColor:#333;--sapShell_GroupTitleTextShadow:0 0 0.125rem #fff;--sapShell_Hover_Background:#346187;--sapShell_Active_Background:#427cac;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#427cac;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#427cac;--sapShell_Favicon:none;--sapShell_Navigation_Background:transparent;--sapShell_Navigation_SelectedColor:#346187;--sapShell_Navigation_Selected_TextColor:#346187;--sapShell_Navigation_TextColor:#333;--sapShell_Navigation_Hover_Background:#346187;--sapShell_Navigation_Active_Background:#427cac;--sapShell_Navigation_Active_TextColor:#fff;--sapShell_Shadow:0 0.125rem 0 0 #b9cbde;--sapShell_NegativeColor:#b00;--sapShell_CriticalColor:#e78c07;--sapShell_PositiveColor:#2b7c2b;--sapShell_InformativeColor:#427cac;--sapShell_NeutralColor:#5e696e;--sapAvatar_1_Background:#e09d00;--sapAvatar_1_BorderColor:#e09d00;--sapAvatar_1_TextColor:#fff;--sapAvatar_2_Background:#e6600d;--sapAvatar_2_BorderColor:#e6600d;--sapAvatar_2_TextColor:#fff;--sapAvatar_3_Background:#c14646;--sapAvatar_3_BorderColor:#c14646;--sapAvatar_3_TextColor:#fff;--sapAvatar_4_Background:#ab218e;--sapAvatar_4_BorderColor:#ab218e;--sapAvatar_4_TextColor:#fff;--sapAvatar_5_Background:#678bc7;--sapAvatar_5_BorderColor:#678bc7;--sapAvatar_5_TextColor:#fff;--sapAvatar_6_Background:#0092d1;--sapAvatar_6_BorderColor:#0092d1;--sapAvatar_6_TextColor:#fff;--sapAvatar_7_Background:#1a9898;--sapAvatar_7_BorderColor:#1a9898;--sapAvatar_7_TextColor:#fff;--sapAvatar_8_Background:#759421;--sapAvatar_8_BorderColor:#759421;--sapAvatar_8_TextColor:#fff;--sapAvatar_9_Background:#925ace;--sapAvatar_9_BorderColor:#925ace;--sapAvatar_9_TextColor:#fff;--sapAvatar_10_Background:#647987;--sapAvatar_10_BorderColor:#647987;--sapAvatar_10_TextColor:#fff;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.1875rem;--sapButton_Background:#f7f7f7;--sapButton_BorderColor:#ababab;--sapButton_TextColor:#346187;--sapButton_Hover_Background:#eaeaea;--sapButton_Hover_BorderColor:#ababab;--sapButton_Hover_TextColor:#346187;--sapButton_IconColor:#346187;--sapButton_Active_Background:#427cac;--sapButton_Active_BorderColor:#427cac;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#5496cd;--sapButton_Emphasized_BorderColor:#408ac7;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#408ac7;--sapButton_Emphasized_Hover_BorderColor:#408ac7;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#427cac;--sapButton_Emphasized_Active_BorderColor:#427cac;--sapButton_Emphasized_Active_TextColor:#fff;--sapButton_Emphasized_TextShadow:rgba(0,0,0,0.5);--sapButton_Emphasized_FontWeight:regular;--sapButton_Reject_Background:#f7f7f7;--sapButton_Reject_BorderColor:#b00;--sapButton_Reject_Hover_Background:#eaeaea;--sapButton_Reject_Hover_BorderColor:#b00;--sapButton_Reject_Hover_TextColor:#b00;--sapButton_Reject_Active_Background:#b00;--sapButton_Reject_Active_BorderColor:#b00;--sapButton_Reject_Active_TextColor:#fff;--sapButton_Reject_TextColor:#b00;--sapButton_Reject_Selected_Background:#b00;--sapButton_Reject_Selected_BorderColor:#b00;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#d40000;--sapButton_Reject_Selected_Hover_BorderColor:#d40000;--sapButton_Accept_Background:#f7f7f7;--sapButton_Accept_BorderColor:#2b7c2b;--sapButton_Accept_Hover_Background:#eaeaea;--sapButton_Accept_Hover_BorderColor:#2b7c2b;--sapButton_Accept_Hover_TextColor:#2b7c2b;--sapButton_Accept_Active_Background:#2b7c2b;--sapButton_Accept_Active_BorderColor:#2b7c2b;--sapButton_Accept_Active_TextColor:#fff;--sapButton_Accept_TextColor:#2b7c2b;--sapButton_Accept_Selected_Background:#2b7c2b;--sapButton_Accept_Selected_BorderColor:#2b7c2b;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#328f32;--sapButton_Accept_Selected_Hover_BorderColor:#328f32;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#346187;--sapButton_Lite_Hover_Background:hsla(0,0%,69.8%,0.5);--sapButton_Lite_Hover_BorderColor:hsla(0,0%,69.8%,0.5);--sapButton_Lite_Hover_TextColor:#346187;--sapButton_Lite_Active_Background:#427cac;--sapButton_Lite_Active_BorderColor:#427cac;--sapButton_Selected_Background:#346187;--sapButton_Selected_BorderColor:#2d5475;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#427bac;--sapButton_Selected_Hover_BorderColor:#427bac;--sapButton_Attention_Background:#f7f7f7;--sapButton_Attention_BorderColor:#e78c07;--sapButton_Attention_TextColor:#333;--sapButton_Attention_Hover_Background:#fef0db;--sapButton_Attention_Hover_BorderColor:#e78c07;--sapButton_Attention_Hover_TextColor:#333;--sapButton_Attention_Active_Background:#ce7d06;--sapButton_Attention_Active_BorderColor:#ce7d06;--sapButton_Attention_Active_TextColor:#fff;--sapButton_Attention_Selected_Background:#ce7d06;--sapButton_Attention_Selected_BorderColor:#ce7d06;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#e78c07;--sapButton_Attention_Selected_Hover_BorderColor:#e78c07;--sapButton_Negative_Background:#b00;--sapButton_Negative_BorderColor:#b00;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#970000;--sapButton_Negative_Hover_BorderColor:#970000;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#800;--sapButton_Negative_Active_BorderColor:#800;--sapButton_Negative_Active_TextColor:#fff;--sapButton_Critical_Background:#e78c07;--sapButton_Critical_BorderColor:#e78c07;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#c47706;--sapButton_Critical_Hover_BorderColor:#c47706;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#b66e06;--sapButton_Critical_Active_BorderColor:#b66e06;--sapButton_Critical_Active_TextColor:#fff;--sapButton_Success_Background:#2b7c2b;--sapButton_Success_BorderColor:#2b7c2b;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#226122;--sapButton_Success_Hover_BorderColor:#226122;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#1e561e;--sapButton_Success_Active_BorderColor:#1e561e;--sapButton_Success_Active_TextColor:#fff;--sapButton_Information_Background:#427cac;--sapButton_Information_BorderColor:#427cac;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#3b6f9a;--sapButton_Information_Hover_BorderColor:#3b6f9a;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#346187;--sapButton_Information_Active_BorderColor:#346187;--sapButton_Information_Active_TextColor:#fff;--sapButton_Neutral_Background:#5e696e;--sapButton_Neutral_BorderColor:#5e696e;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#4e575b;--sapButton_Neutral_Hover_BorderColor:#4e575b;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#474f53;--sapButton_Neutral_Active_BorderColor:#474f53;--sapButton_Neutral_Active_TextColor:#fff;--sapButton_Track_Background:#fff;--sapButton_Track_BorderColor:#ababab;--sapButton_Track_TextColor:#333;--sapButton_Track_Hover_Background:#eaeaea;--sapButton_Track_Hover_BorderColor:#ababab;--sapButton_Track_Selected_Background:#346187;--sapButton_Track_Selected_BorderColor:#2d5475;--sapButton_Track_Selected_TextColor:#fff;--sapButton_Track_Selected_Hover_Background:#427bac;--sapButton_Track_Selected_Hover_BorderColor:#427bac;--sapButton_Handle_Background:#f7f7f7;--sapButton_Handle_BorderColor:#ababab;--sapButton_Handle_TextColor:#333;--sapButton_Handle_Hover_Background:#eaeaea;--sapButton_Handle_Hover_BorderColor:#ababab;--sapButton_Handle_Selected_Background:#346187;--sapButton_Handle_Selected_BorderColor:#2d5475;--sapButton_Handle_Selected_TextColor:#fff;--sapButton_Handle_Selected_Hover_Background:#427bac;--sapButton_Handle_Selected_Hover_BorderColor:#427bac;--sapButton_Track_Negative_Background:#f7f7f7;--sapButton_Track_Negative_BorderColor:#b00;--sapButton_Track_Negative_TextColor:#b00;--sapButton_Track_Negative_Hover_Background:#f7f7f7;--sapButton_Track_Negative_Hover_BorderColor:#b00;--sapButton_Handle_Negative_Background:#f7f7f7;--sapButton_Handle_Negative_BorderColor:#b00;--sapButton_Handle_Negative_TextColor:#b00;--sapButton_Handle_Negative_Hover_Background:#eaeaea;--sapButton_Handle_Negative_Hover_BorderColor:#b00;--sapButton_Track_Positive_Background:#f7f7f7;--sapButton_Track_Positive_BorderColor:#2b7c2b;--sapButton_Track_Positive_TextColor:#2b7c2b;--sapButton_Track_Positive_Hover_Background:#f7f7f7;--sapButton_Track_Positive_Hover_BorderColor:#2b7c2b;--sapButton_Handle_Positive_Background:#f7f7f7;--sapButton_Handle_Positive_BorderColor:#2b7c2b;--sapButton_Handle_Positive_TextColor:#2b7c2b;--sapButton_Handle_Positive_Hover_Background:#eaeaea;--sapButton_Handle_Positive_Hover_BorderColor:#2b7c2b;--sapButton_TokenBackground:#f7f7f7;--sapButton_TokenBorderColor:#dedede;--sapField_Background:#fff;--sapField_BackgroundStyle:none;--sapField_TextColor:#000;--sapField_PlaceholderTextColor:#757575;--sapField_BorderColor:#bfbfbf;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderStyle:solid;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#fff;--sapField_Hover_BackgroundStyle:none;--sapField_Hover_BorderColor:#427cac;--sapField_Hover_HelpBackground:#427cac;--sapField_Active_BorderColor:#427cac;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#bfbfbf;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:hsla(0,0%,94.9%,0.5);--sapField_ReadOnly_BorderColor:#ccc;--sapField_ReadOnly_HelpBackground:hsla(0,0%,94.9%,0.5);--sapField_RequiredColor:#c14646;--sapField_InvalidColor:#e00;--sapField_InvalidBackground:#fff;--sapField_InvalidBackgroundStyle:none;--sapField_InvalidBorderWidth:.125rem;--sapField_InvalidBorderStyle:solid;--sapField_WarningColor:#f9a429;--sapField_WarningBackground:#fff;--sapField_WarningBackgroundStyle:none;--sapField_WarningBorderWidth:.125rem;--sapField_WarningBorderStyle:solid;--sapField_SuccessColor:#38a238;--sapField_SuccessBackground:#fff;--sapField_SuccessBackgroundStyle:none;--sapField_SuccessBorderWidth:.0625rem;--sapField_SuccessBorderStyle:solid;--sapField_InformationColor:#427cac;--sapField_InformationBackground:#fff;--sapField_InformationBackgroundStyle:none;--sapField_InformationBorderWidth:.125rem;--sapField_InformationBorderStyle:solid;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#ccc;--sapGroup_TitleTextColor:#333;--sapGroup_Title_FontSize:1.125rem;--sapGroup_ContentBackground:#fff;--sapGroup_ContentBorderColor:#ebebeb;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapPopover_BorderCornerRadius:.25rem;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:rgba(63,81,97,0.2);--sapList_HeaderBackground:#f7f7f7;--sapList_HeaderBorderColor:#e5e5e5;--sapList_HeaderTextColor:#333;--sapList_BorderColor:#e5e5e5;--sapList_TextColor:#333;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_Active_Background:#427cac;--sapList_SelectionBackgroundColor:#e8f0f6;--sapList_SelectionBorderColor:#e5e5e5;--sapList_Hover_SelectionBackground:#dde9f2;--sapList_Background:#fff;--sapList_Hover_Background:#f0f0f0;--sapList_AlternatingBackground:#fafafa;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#ccc;--sapList_GroupHeaderTextColor:#147575;--sapList_FooterBackground:#ceddec;--sapList_FooterTextColor:#333;--sapList_TableGroupHeaderBackground:#f2f2f2;--sapList_TableGroupHeaderBorderColor:#ccc;--sapList_TableGroupHeaderTextColor:#147575;--sapList_TableFooterBorder:#ccc;--sapList_TableFixedBorderColor:#999;--sapMessage_ErrorBorderColor:#e00;--sapMessage_WarningBorderColor:#f9a429;--sapMessage_SuccessBorderColor:#38a238;--sapMessage_InformationBorderColor:#427cac;--sapProgress_Background:#fff;--sapProgress_BorderColor:#bfbfbf;--sapProgress_TextColor:#333;--sapProgress_FontSize:.75rem;--sapProgress_NegativeBackground:#fff;--sapProgress_NegativeBorderColor:#bfbfbf;--sapProgress_NegativeTextColor:#333;--sapProgress_CriticalBackground:#fff;--sapProgress_CriticalBorderColor:#bfbfbf;--sapProgress_CriticalTextColor:#333;--sapProgress_PositiveBackground:#fff;--sapProgress_PositiveBorderColor:#bfbfbf;--sapProgress_PositiveTextColor:#333;--sapProgress_InformationBackground:#fff;--sapProgress_InformationBorderColor:#bfbfbf;--sapProgress_InformationTextColor:#333;--sapProgress_Value_Background:#5e696e;--sapProgress_Value_BorderColor:#bfbfbf;--sapProgress_Value_TextColor:#333;--sapProgress_Value_NegativeBackground:#b00;--sapProgress_Value_NegativeBorderColor:#bfbfbf;--sapProgress_Value_NegativeTextColor:#333;--sapProgress_Value_CriticalBackground:#e78c07;--sapProgress_Value_CriticalBorderColor:#bfbfbf;--sapProgress_Value_CriticalTextColor:#333;--sapProgress_Value_PositiveBackground:#2b7c2b;--sapProgress_Value_PositiveBorderColor:#bfbfbf;--sapProgress_Value_PositiveTextColor:#333;--sapProgress_Value_InformationBackground:#427cac;--sapProgress_Value_InformationBorderColor:#bfbfbf;--sapProgress_Value_InformationTextColor:#333;--sapScrollBar_FaceColor:#b2b2b2;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#b2b2b2;--sapScrollBar_SymbolColor:#346187;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#aaa;--sapSlider_Background:#ddd;--sapSlider_BorderColor:#ddd;--sapSlider_Selected_Background:#427cac;--sapSlider_Selected_BorderColor:#427cac;--sapSlider_HandleBackground:hsla(0,0%,100%,0.1);--sapSlider_HandleBorderColor:#999;--sapSlider_RangeHandleBackground:hsla(0,0%,100%,0.1);--sapSlider_Hover_HandleBackground:hsla(0,0%,85.1%,0.6);--sapSlider_Hover_HandleBorderColor:#999;--sapSlider_Hover_RangeHandleBackground:hsla(0,0%,85.1%,0.6);--sapSlider_Active_HandleBackground:rgba(66,124,172,0.3);--sapSlider_Active_HandleBorderColor:#427cac;--sapSlider_Active_RangeHandleBackground:rgba(66,124,172,0.3);--sapPageHeader_Background:#eff4f9;--sapPageHeader_BorderColor:#d1e0ee;--sapPageHeader_TextColor:#666;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#ebebeb;--sapPageFooter_TextColor:#333;--sapInfobar_Background:#168282;--sapInfobar_Hover_Background:#147575;--sapInfobar_Active_Background:#427cac;--sapInfobar_NonInteractive_Background:#e6e6e6;--sapInfobar_TextColor:#fff;--sapObjectHeader_Background:#eff4f9;--sapObjectHeader_BorderColor:#d1e0ee;--sapObjectHeader_Hover_Background:#e0eaf3;--sapObjectHeader_Title_TextColor:#333;--sapObjectHeader_Title_FontSize:1.25rem;--sapObjectHeader_Title_SnappedFontSize:1.25rem;--sapObjectHeader_Title_FontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapObjectHeader_Subtitle_TextColor:#666;--sapBlockLayer_Background:#000;--sapTile_Background:#fff;--sapTile_Hover_Background:#f7f7f7;--sapTile_Active_Background:#f7f7f7;--sapTile_BorderColor:transparent;--sapTile_BorderCornerRadius:.25rem;--sapTile_TitleTextColor:#333;--sapTile_TextColor:#666;--sapTile_IconColor:#93b7d5;--sapTile_SeparatorColor:#ccc;--sapTile_Interactive_BorderColor:#b3b3b3;--sapTile_OverlayBackground:rgba(0,0,0,0.8);--sapTile_OverlayForegroundColor:#fff;--sapAccentColor1:#e09d00;--sapAccentColor2:#e6600d;--sapAccentColor3:#c14646;--sapAccentColor4:#ab218e;--sapAccentColor5:#678bc7;--sapAccentColor6:#0092d1;--sapAccentColor7:#1a9898;--sapAccentColor8:#759421;--sapAccentColor9:#925ace;--sapAccentColor10:#647987;--sapAccentBackgroundColor1:#fff3b8;--sapAccentBackgroundColor2:#ffd0e7;--sapAccentBackgroundColor3:#fff0fa;--sapAccentBackgroundColor4:#ffdcf3;--sapAccentBackgroundColor5:#ded3ff;--sapAccentBackgroundColor6:#d1efff;--sapAccentBackgroundColor7:#c2fcee;--sapAccentBackgroundColor8:#ebf5cb;--sapAccentBackgroundColor9:#dafdf5;--sapAccentBackgroundColor10:#eaecee;--sapLegend_WorkingBackground:#f7f7f7;--sapLegend_NonWorkingBackground:#f7f7f7;--sapLegend_CurrentDateTime:#ab218e;--sapLegendColor1:#ad7900;--sapLegendColor2:#dc5c0c;--sapLegendColor3:#c14646;--sapLegendColor4:#853808;--sapLegendColor5:#da3fb9;--sapLegendColor6:#008bc7;--sapLegendColor7:#198f8f;--sapLegendColor8:#6e8c1f;--sapLegendColor9:#648796;--sapLegendColor10:#80196a;--sapLegendColor11:#6f5925;--sapLegendColor12:#b64600;--sapLegendColor13:#d61818;--sapLegendColor14:#976c52;--sapLegendColor15:#73596d;--sapLegendColor16:#5d759e;--sapLegendColor17:#466c6c;--sapLegendColor18:#626b4a;--sapLegendColor19:#284d5d;--sapLegendColor20:#1851b0;--sapLegendBackgroundColor1:#fff6e0;--sapLegendBackgroundColor2:#feeee5;--sapLegendBackgroundColor3:#f7e6e6;--sapLegendBackgroundColor4:#f9efe9;--sapLegendBackgroundColor5:#fdf2fa;--sapLegendBackgroundColor6:#ebf3fa;--sapLegendBackgroundColor7:#f2fdfd;--sapLegendBackgroundColor8:#f3f9e4;--sapLegendBackgroundColor9:#f1f3f4;--sapLegendBackgroundColor10:#f7edf5;--sapLegendBackgroundColor11:#ffeec6;--sapLegendBackgroundColor12:#fbdfce;--sapLegendBackgroundColor13:#ffdcdc;--sapLegendBackgroundColor14:#f2e2d8;--sapLegendBackgroundColor15:#f0e5ee;--sapLegendBackgroundColor16:#e7e8ea;--sapLegendBackgroundColor17:#d7eaea;--sapLegendBackgroundColor18:#e6edd1;--sapLegendBackgroundColor19:#cfebf7;--sapLegendBackgroundColor20:#f0f7fa;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}"
|
7
|
+
content: ":root{--sapThemeMetaData-Base-baseLib:{\"Path\":\"Base.baseLib.sap_belize.css_variables\",\"PathPattern\":\"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\":[\"sap_base_fiori\",\"baseTheme\"],\"Tags\":[\"Fiori_2\",\"Fiori_3\"],\"Scopes\":[\"sapContrast\"],\"FallbackThemeId\":\"sap_bluecrystal\",\"Engine\":{\"Name\":\"theming-engine\",\"Version\":\"1.69.2\"},\"Version\":{ \"Build\":\"11.1.38.20220405122918\",\"Source\":\"11.1.38\"}};--sapBrandColor:#427cac;--sapHighlightColor:#427cac;--sapBaseColor:#eff4f9;--sapShellColor:transparent;--sapBackgroundColor:#fafafa;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSemiboldFamily:\"72-Semibold\",\"72-Semiboldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSemiboldDuplexFamily:\"72-SemiboldDuplex\",\"72-SemiboldDuplexfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBlackFamily:\"72Black\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:1.625rem;--sapFontHeader2Size:1.375rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#333;--sapLinkColor:#0070b1;--sapLink_Hover_Color:#0070b1;--sapLink_Active_Color:#0070b1;--sapLink_Visited_Color:#0070b1;--sapLink_InvertedColor:#7ed0ff;--sapLink_SubtleColor:#004065;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#427cac;--sapActiveColor:#427cac;--sapHighlightTextColor:#fff;--sapTitleColor:#333;--sapNegativeColor:#b00;--sapCriticalColor:#e78c07;--sapPositiveColor:#2b7c2b;--sapInformativeColor:#427cac;--sapNeutralColor:#5e696e;--sapNegativeElementColor:#b00;--sapCriticalElementColor:#e78c07;--sapPositiveElementColor:#2b7c2b;--sapInformativeElementColor:#427cac;--sapNeutralElementColor:#5e696e;--sapNegativeTextColor:#b00;--sapPositiveTextColor:#2b7c2b;--sapCriticalTextColor:#e78c07;--sapInformativeTextColor:#427cac;--sapNeutralTextColor:#5e696e;--sapNeutralBorderColor:#5e696e;--sapErrorColor:#e00;--sapErrorBorderColor:#e00;--sapWarningColor:#f9a429;--sapWarningBorderColor:#f9a429;--sapSuccessColor:#38a238;--sapSuccessBorderColor:#38a238;--sapInformationColor:#427cac;--sapInformationBorderColor:#427cac;--sapErrorBackground:#ffe4e4;--sapWarningBackground:#fef0db;--sapSuccessBackground:#e4f5e4;--sapInformationBackground:#ebf2f7;--sapNeutralBackground:#f4f5f6;--sapIndicationColor_1:#800;--sapIndicationColor_1_Background:#800;--sapIndicationColor_1_BorderColor:#800;--sapIndicationColor_1_Hover_Background:#6f0000;--sapIndicationColor_1_Active_Background:#500;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#b00;--sapIndicationColor_2_Background:#b00;--sapIndicationColor_2_BorderColor:#b00;--sapIndicationColor_2_Hover_Background:#a20000;--sapIndicationColor_2_Active_Background:#800;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#e78c07;--sapIndicationColor_3_Background:#e78c07;--sapIndicationColor_3_BorderColor:#e78c07;--sapIndicationColor_3_Hover_Background:#d88307;--sapIndicationColor_3_Active_Background:#c97a06;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#2b7c2b;--sapIndicationColor_4_Background:#2b7c2b;--sapIndicationColor_4_BorderColor:#2b7c2b;--sapIndicationColor_4_Hover_Background:#246924;--sapIndicationColor_4_Active_Background:#1e561e;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#427cac;--sapIndicationColor_5_Background:#427cac;--sapIndicationColor_5_BorderColor:#427cac;--sapIndicationColor_5_Hover_Background:#3b6f9a;--sapIndicationColor_5_Active_Background:#346187;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#1a9898;--sapIndicationColor_6_Background:#1a9898;--sapIndicationColor_6_BorderColor:#1a9898;--sapIndicationColor_6_Hover_Background:#168282;--sapIndicationColor_6_Active_Background:#136c6c;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#925ace;--sapIndicationColor_7_Background:#925ace;--sapIndicationColor_7_BorderColor:#925ace;--sapIndicationColor_7_Hover_Background:#8546c8;--sapIndicationColor_7_Active_Background:#7838bd;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#ab218e;--sapIndicationColor_8_Background:#ab218e;--sapIndicationColor_8_BorderColor:#ab218e;--sapIndicationColor_8_Hover_Background:#961d7c;--sapIndicationColor_8_Active_Background:#80196a;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:3rem;--sapElement_Height:2.5rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#346187;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#878787;--sapContent_MarkerIconColor:#678bc7;--sapContent_MarkerTextColor:#147575;--sapContent_MeasureIndicatorColor:#bfbfbf;--sapContent_Selected_MeasureIndicatorColor:#bfbfbf;--sapContent_ImagePlaceholderBackground:#ceddec;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#e09d00;--sapContent_UnratedColor:#a5a5a5;--sapContent_BusyColor:#00a4eb;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow1:0 0.125rem 0.5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow2:0 0.625rem 1.875rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow3:0 1.25rem 5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_TextShadow:0 0 0.125rem #fff;--sapContent_ContrastTextShadow:0 0 0.0625rem rgba(0,0,0,0.7);--sapContent_HeaderShadow:0 0.125rem 0 0 #eff4f9,inset 0 -0.125rem 0 0 #d1e0ee;--sapContent_Interaction_Shadow:none;--sapContent_Selected_Shadow:none;--sapContent_Negative_Shadow:none;--sapContent_Critical_Shadow:none;--sapContent_Positive_Shadow:none;--sapContent_Informative_Shadow:none;--sapContent_Neutral_Shadow:none;--sapContent_SearchHighlightColor:#d4f7db;--sapContent_HelpColor:#3f8600;--sapContent_LabelColor:#666;--sapContent_MonospaceFontFamily:\"72Mono\",\"72Monofull\",lucida console,monospace;--sapContent_MonospaceBoldFontFamily:\"72Mono-Bold\",\"72Mono-Boldfull\",lucida console,monospace;--sapContent_IconFontFamily:\"SAP-icons\";--sapContent_DisabledTextColor:rgba(51,51,51,0.5);--sapContent_DisabledOpacity:0.5;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#e5e5e5;--sapContent_ForegroundBorderColor:#bfbfbf;--sapContent_ForegroundTextColor:#333;--sapContent_BadgeBackground:#c14646;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#c2d5e8;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#c2d5e8 0%,#c2d5e8 35%,#afc8e1 50%,#c2d5e8 65%,#c2d5e8);--sapContent_DragAndDropActiveColor:#0070b1;--sapContent_Selected_Background:#427cac;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#4684b7;--sapContent_Selected_ForegroundColor:#427cac;--sapContent_ForcedColorAdjust:none;--sapContent_Illustrative_Color1:#427cac;--sapContent_Illustrative_Color2:#93b7d6;--sapContent_Illustrative_Color3:#ffba10;--sapContent_Illustrative_Color4:#4a5055;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#c6cace;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapContent_Illustrative_Color9:#64edd2;--sapContent_Illustrative_Color10:#ebf8ff;--sapContent_Illustrative_Color11:#f31ded;--sapContent_Illustrative_Color12:#5dc122;--sapContent_Illustrative_Color13:#005dc9;--sapContent_Illustrative_Color14:#004da5;--sapContent_Illustrative_Color15:#cc7400;--sapContent_Illustrative_Color16:#3b0ac6;--sapContent_Illustrative_Color17:#00a58a;--sapContent_Illustrative_Color18:#d1efff;--sapContent_Illustrative_Color19:#b8e6ff;--sapContent_Illustrative_Color20:#9eddff;--sapShell_Background:#cad8e6;--sapShell_BackgroundImage:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundGradient:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:transparent;--sapShell_TextColor:#346187;--sapShell_InteractiveBackground:transparent;--sapShell_InteractiveTextColor:#346187;--sapShell_InteractiveBorderColor:#346187;--sapShell_GroupTitleTextColor:#333;--sapShell_GroupTitleTextShadow:0 0 0.125rem #fff;--sapShell_Hover_Background:#346187;--sapShell_Active_Background:#427cac;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#427cac;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#427cac;--sapShell_Favicon:none;--sapShell_Navigation_Background:transparent;--sapShell_Navigation_SelectedColor:#346187;--sapShell_Navigation_Selected_TextColor:#346187;--sapShell_Navigation_TextColor:#333;--sapShell_Navigation_Hover_Background:#346187;--sapShell_Navigation_Active_Background:#427cac;--sapShell_Navigation_Active_TextColor:#fff;--sapShell_Shadow:0 0.125rem 0 0 #b9cbde;--sapShell_NegativeColor:#b00;--sapShell_CriticalColor:#e78c07;--sapShell_PositiveColor:#2b7c2b;--sapShell_InformativeColor:#427cac;--sapShell_NeutralColor:#5e696e;--sapAvatar_1_Background:#e09d00;--sapAvatar_1_BorderColor:#e09d00;--sapAvatar_1_TextColor:#fff;--sapAvatar_2_Background:#e6600d;--sapAvatar_2_BorderColor:#e6600d;--sapAvatar_2_TextColor:#fff;--sapAvatar_3_Background:#c14646;--sapAvatar_3_BorderColor:#c14646;--sapAvatar_3_TextColor:#fff;--sapAvatar_4_Background:#ab218e;--sapAvatar_4_BorderColor:#ab218e;--sapAvatar_4_TextColor:#fff;--sapAvatar_5_Background:#678bc7;--sapAvatar_5_BorderColor:#678bc7;--sapAvatar_5_TextColor:#fff;--sapAvatar_6_Background:#0092d1;--sapAvatar_6_BorderColor:#0092d1;--sapAvatar_6_TextColor:#fff;--sapAvatar_7_Background:#1a9898;--sapAvatar_7_BorderColor:#1a9898;--sapAvatar_7_TextColor:#fff;--sapAvatar_8_Background:#759421;--sapAvatar_8_BorderColor:#759421;--sapAvatar_8_TextColor:#fff;--sapAvatar_9_Background:#925ace;--sapAvatar_9_BorderColor:#925ace;--sapAvatar_9_TextColor:#fff;--sapAvatar_10_Background:#647987;--sapAvatar_10_BorderColor:#647987;--sapAvatar_10_TextColor:#fff;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.1875rem;--sapButton_Background:#f7f7f7;--sapButton_BorderColor:#ababab;--sapButton_TextColor:#346187;--sapButton_Hover_Background:#eaeaea;--sapButton_Hover_BorderColor:#ababab;--sapButton_Hover_TextColor:#346187;--sapButton_IconColor:#346187;--sapButton_Active_Background:#427cac;--sapButton_Active_BorderColor:#427cac;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#5496cd;--sapButton_Emphasized_BorderColor:#408ac7;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#408ac7;--sapButton_Emphasized_Hover_BorderColor:#408ac7;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#427cac;--sapButton_Emphasized_Active_BorderColor:#427cac;--sapButton_Emphasized_Active_TextColor:#fff;--sapButton_Emphasized_TextShadow:rgba(0,0,0,0.5);--sapButton_Emphasized_FontWeight:regular;--sapButton_Reject_Background:#f7f7f7;--sapButton_Reject_BorderColor:#b00;--sapButton_Reject_Hover_Background:#eaeaea;--sapButton_Reject_Hover_BorderColor:#b00;--sapButton_Reject_Hover_TextColor:#b00;--sapButton_Reject_Active_Background:#b00;--sapButton_Reject_Active_BorderColor:#b00;--sapButton_Reject_Active_TextColor:#fff;--sapButton_Reject_TextColor:#b00;--sapButton_Reject_Selected_Background:#b00;--sapButton_Reject_Selected_BorderColor:#b00;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#d40000;--sapButton_Reject_Selected_Hover_BorderColor:#d40000;--sapButton_Accept_Background:#f7f7f7;--sapButton_Accept_BorderColor:#2b7c2b;--sapButton_Accept_Hover_Background:#eaeaea;--sapButton_Accept_Hover_BorderColor:#2b7c2b;--sapButton_Accept_Hover_TextColor:#2b7c2b;--sapButton_Accept_Active_Background:#2b7c2b;--sapButton_Accept_Active_BorderColor:#2b7c2b;--sapButton_Accept_Active_TextColor:#fff;--sapButton_Accept_TextColor:#2b7c2b;--sapButton_Accept_Selected_Background:#2b7c2b;--sapButton_Accept_Selected_BorderColor:#2b7c2b;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#328f32;--sapButton_Accept_Selected_Hover_BorderColor:#328f32;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#346187;--sapButton_Lite_Hover_Background:hsla(0,0%,69.8%,0.5);--sapButton_Lite_Hover_BorderColor:hsla(0,0%,69.8%,0.5);--sapButton_Lite_Hover_TextColor:#346187;--sapButton_Lite_Active_Background:#427cac;--sapButton_Lite_Active_BorderColor:#427cac;--sapButton_Selected_Background:#346187;--sapButton_Selected_BorderColor:#2d5475;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#427bac;--sapButton_Selected_Hover_BorderColor:#427bac;--sapButton_Attention_Background:#f7f7f7;--sapButton_Attention_BorderColor:#e78c07;--sapButton_Attention_TextColor:#333;--sapButton_Attention_Hover_Background:#fef0db;--sapButton_Attention_Hover_BorderColor:#e78c07;--sapButton_Attention_Hover_TextColor:#333;--sapButton_Attention_Active_Background:#ce7d06;--sapButton_Attention_Active_BorderColor:#ce7d06;--sapButton_Attention_Active_TextColor:#fff;--sapButton_Attention_Selected_Background:#ce7d06;--sapButton_Attention_Selected_BorderColor:#ce7d06;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#e78c07;--sapButton_Attention_Selected_Hover_BorderColor:#e78c07;--sapButton_Negative_Background:#b00;--sapButton_Negative_BorderColor:#b00;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#970000;--sapButton_Negative_Hover_BorderColor:#970000;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#800;--sapButton_Negative_Active_BorderColor:#800;--sapButton_Negative_Active_TextColor:#fff;--sapButton_Critical_Background:#e78c07;--sapButton_Critical_BorderColor:#e78c07;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#c47706;--sapButton_Critical_Hover_BorderColor:#c47706;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#b66e06;--sapButton_Critical_Active_BorderColor:#b66e06;--sapButton_Critical_Active_TextColor:#fff;--sapButton_Success_Background:#2b7c2b;--sapButton_Success_BorderColor:#2b7c2b;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#226122;--sapButton_Success_Hover_BorderColor:#226122;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#1e561e;--sapButton_Success_Active_BorderColor:#1e561e;--sapButton_Success_Active_TextColor:#fff;--sapButton_Information_Background:#427cac;--sapButton_Information_BorderColor:#427cac;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#3b6f9a;--sapButton_Information_Hover_BorderColor:#3b6f9a;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#346187;--sapButton_Information_Active_BorderColor:#346187;--sapButton_Information_Active_TextColor:#fff;--sapButton_Neutral_Background:#5e696e;--sapButton_Neutral_BorderColor:#5e696e;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#4e575b;--sapButton_Neutral_Hover_BorderColor:#4e575b;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#474f53;--sapButton_Neutral_Active_BorderColor:#474f53;--sapButton_Neutral_Active_TextColor:#fff;--sapButton_Track_Background:#fff;--sapButton_Track_BorderColor:#ababab;--sapButton_Track_TextColor:#333;--sapButton_Track_Hover_Background:#eaeaea;--sapButton_Track_Hover_BorderColor:#ababab;--sapButton_Track_Selected_Background:#346187;--sapButton_Track_Selected_BorderColor:#2d5475;--sapButton_Track_Selected_TextColor:#fff;--sapButton_Track_Selected_Hover_Background:#427bac;--sapButton_Track_Selected_Hover_BorderColor:#427bac;--sapButton_Handle_Background:#f7f7f7;--sapButton_Handle_BorderColor:#ababab;--sapButton_Handle_TextColor:#333;--sapButton_Handle_Hover_Background:#eaeaea;--sapButton_Handle_Hover_BorderColor:#ababab;--sapButton_Handle_Selected_Background:#346187;--sapButton_Handle_Selected_BorderColor:#2d5475;--sapButton_Handle_Selected_TextColor:#fff;--sapButton_Handle_Selected_Hover_Background:#427bac;--sapButton_Handle_Selected_Hover_BorderColor:#427bac;--sapButton_Track_Negative_Background:#f7f7f7;--sapButton_Track_Negative_BorderColor:#b00;--sapButton_Track_Negative_TextColor:#b00;--sapButton_Track_Negative_Hover_Background:#f7f7f7;--sapButton_Track_Negative_Hover_BorderColor:#b00;--sapButton_Handle_Negative_Background:#f7f7f7;--sapButton_Handle_Negative_BorderColor:#b00;--sapButton_Handle_Negative_TextColor:#b00;--sapButton_Handle_Negative_Hover_Background:#eaeaea;--sapButton_Handle_Negative_Hover_BorderColor:#b00;--sapButton_Track_Positive_Background:#f7f7f7;--sapButton_Track_Positive_BorderColor:#2b7c2b;--sapButton_Track_Positive_TextColor:#2b7c2b;--sapButton_Track_Positive_Hover_Background:#f7f7f7;--sapButton_Track_Positive_Hover_BorderColor:#2b7c2b;--sapButton_Handle_Positive_Background:#f7f7f7;--sapButton_Handle_Positive_BorderColor:#2b7c2b;--sapButton_Handle_Positive_TextColor:#2b7c2b;--sapButton_Handle_Positive_Hover_Background:#eaeaea;--sapButton_Handle_Positive_Hover_BorderColor:#2b7c2b;--sapButton_TokenBackground:#f7f7f7;--sapButton_TokenBorderColor:#dedede;--sapField_Background:#fff;--sapField_BackgroundStyle:none;--sapField_TextColor:#000;--sapField_PlaceholderTextColor:#757575;--sapField_BorderColor:#bfbfbf;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderStyle:solid;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#fff;--sapField_Hover_BackgroundStyle:none;--sapField_Hover_BorderColor:#427cac;--sapField_Hover_HelpBackground:#427cac;--sapField_Active_BorderColor:#427cac;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#bfbfbf;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:hsla(0,0%,94.9%,0.5);--sapField_ReadOnly_BackgroundStyle:none;--sapField_ReadOnly_BorderColor:#ccc;--sapField_ReadOnly_BorderStyle:solid;--sapField_ReadOnly_HelpBackground:hsla(0,0%,94.9%,0.5);--sapField_RequiredColor:#c14646;--sapField_InvalidColor:#e00;--sapField_InvalidBackground:#fff;--sapField_InvalidBackgroundStyle:none;--sapField_InvalidBorderWidth:.125rem;--sapField_InvalidBorderStyle:solid;--sapField_WarningColor:#f9a429;--sapField_WarningBackground:#fff;--sapField_WarningBackgroundStyle:none;--sapField_WarningBorderWidth:.125rem;--sapField_WarningBorderStyle:solid;--sapField_SuccessColor:#38a238;--sapField_SuccessBackground:#fff;--sapField_SuccessBackgroundStyle:none;--sapField_SuccessBorderWidth:.0625rem;--sapField_SuccessBorderStyle:solid;--sapField_InformationColor:#427cac;--sapField_InformationBackground:#fff;--sapField_InformationBackgroundStyle:none;--sapField_InformationBorderWidth:.125rem;--sapField_InformationBorderStyle:solid;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#ccc;--sapGroup_TitleTextColor:#333;--sapGroup_Title_FontSize:1.125rem;--sapGroup_ContentBackground:#fff;--sapGroup_ContentBorderColor:#ebebeb;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapPopover_BorderCornerRadius:.25rem;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:rgba(63,81,97,0.2);--sapList_HeaderBackground:#f7f7f7;--sapList_HeaderBorderColor:#e5e5e5;--sapList_HeaderTextColor:#333;--sapList_BorderColor:#e5e5e5;--sapList_TextColor:#333;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_Active_Background:#427cac;--sapList_SelectionBackgroundColor:#e8f0f6;--sapList_SelectionBorderColor:#e5e5e5;--sapList_Hover_SelectionBackground:#dde9f2;--sapList_Background:#fff;--sapList_Hover_Background:#f0f0f0;--sapList_AlternatingBackground:#fafafa;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#ccc;--sapList_GroupHeaderTextColor:#147575;--sapList_FooterBackground:#ceddec;--sapList_FooterTextColor:#333;--sapList_TableGroupHeaderBackground:#f2f2f2;--sapList_TableGroupHeaderBorderColor:#ccc;--sapList_TableGroupHeaderTextColor:#147575;--sapList_TableFooterBorder:#ccc;--sapList_TableFixedBorderColor:#999;--sapMessage_ErrorBorderColor:#e00;--sapMessage_WarningBorderColor:#f9a429;--sapMessage_SuccessBorderColor:#38a238;--sapMessage_InformationBorderColor:#427cac;--sapProgress_Background:#fff;--sapProgress_BorderColor:#bfbfbf;--sapProgress_TextColor:#333;--sapProgress_FontSize:.75rem;--sapProgress_NegativeBackground:#fff;--sapProgress_NegativeBorderColor:#bfbfbf;--sapProgress_NegativeTextColor:#333;--sapProgress_CriticalBackground:#fff;--sapProgress_CriticalBorderColor:#bfbfbf;--sapProgress_CriticalTextColor:#333;--sapProgress_PositiveBackground:#fff;--sapProgress_PositiveBorderColor:#bfbfbf;--sapProgress_PositiveTextColor:#333;--sapProgress_InformationBackground:#fff;--sapProgress_InformationBorderColor:#bfbfbf;--sapProgress_InformationTextColor:#333;--sapProgress_Value_Background:#5e696e;--sapProgress_Value_BorderColor:#bfbfbf;--sapProgress_Value_TextColor:#333;--sapProgress_Value_NegativeBackground:#b00;--sapProgress_Value_NegativeBorderColor:#bfbfbf;--sapProgress_Value_NegativeTextColor:#333;--sapProgress_Value_CriticalBackground:#e78c07;--sapProgress_Value_CriticalBorderColor:#bfbfbf;--sapProgress_Value_CriticalTextColor:#333;--sapProgress_Value_PositiveBackground:#2b7c2b;--sapProgress_Value_PositiveBorderColor:#bfbfbf;--sapProgress_Value_PositiveTextColor:#333;--sapProgress_Value_InformationBackground:#427cac;--sapProgress_Value_InformationBorderColor:#bfbfbf;--sapProgress_Value_InformationTextColor:#333;--sapScrollBar_FaceColor:#b2b2b2;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#b2b2b2;--sapScrollBar_SymbolColor:#346187;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#aaa;--sapSlider_Background:#ddd;--sapSlider_BorderColor:#ddd;--sapSlider_Selected_Background:#427cac;--sapSlider_Selected_BorderColor:#427cac;--sapSlider_HandleBackground:hsla(0,0%,100%,0.1);--sapSlider_HandleBorderColor:#999;--sapSlider_RangeHandleBackground:hsla(0,0%,100%,0.1);--sapSlider_Hover_HandleBackground:hsla(0,0%,85.1%,0.6);--sapSlider_Hover_HandleBorderColor:#999;--sapSlider_Hover_RangeHandleBackground:hsla(0,0%,85.1%,0.6);--sapSlider_Active_HandleBackground:rgba(66,124,172,0.3);--sapSlider_Active_HandleBorderColor:#427cac;--sapSlider_Active_RangeHandleBackground:rgba(66,124,172,0.3);--sapPageHeader_Background:#eff4f9;--sapPageHeader_BorderColor:#d1e0ee;--sapPageHeader_TextColor:#666;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#ebebeb;--sapPageFooter_TextColor:#333;--sapInfobar_Background:#168282;--sapInfobar_Hover_Background:#147575;--sapInfobar_Active_Background:#427cac;--sapInfobar_NonInteractive_Background:#e6e6e6;--sapInfobar_TextColor:#fff;--sapObjectHeader_Background:#eff4f9;--sapObjectHeader_BorderColor:#d1e0ee;--sapObjectHeader_Hover_Background:#e0eaf3;--sapObjectHeader_Title_TextColor:#333;--sapObjectHeader_Title_FontSize:1.25rem;--sapObjectHeader_Title_SnappedFontSize:1.25rem;--sapObjectHeader_Title_FontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapObjectHeader_Subtitle_TextColor:#666;--sapBlockLayer_Background:#000;--sapTile_Background:#fff;--sapTile_Hover_Background:#f7f7f7;--sapTile_Active_Background:#f7f7f7;--sapTile_BorderColor:transparent;--sapTile_BorderCornerRadius:.25rem;--sapTile_TitleTextColor:#333;--sapTile_TextColor:#666;--sapTile_IconColor:#93b7d5;--sapTile_SeparatorColor:#ccc;--sapTile_Interactive_BorderColor:#b3b3b3;--sapTile_OverlayBackground:rgba(0,0,0,0.8);--sapTile_OverlayForegroundColor:#fff;--sapAccentColor1:#e09d00;--sapAccentColor2:#e6600d;--sapAccentColor3:#c14646;--sapAccentColor4:#ab218e;--sapAccentColor5:#678bc7;--sapAccentColor6:#0092d1;--sapAccentColor7:#1a9898;--sapAccentColor8:#759421;--sapAccentColor9:#925ace;--sapAccentColor10:#647987;--sapAccentBackgroundColor1:#fff3b8;--sapAccentBackgroundColor2:#ffd0e7;--sapAccentBackgroundColor3:#fff0fa;--sapAccentBackgroundColor4:#ffdcf3;--sapAccentBackgroundColor5:#ded3ff;--sapAccentBackgroundColor6:#d1efff;--sapAccentBackgroundColor7:#c2fcee;--sapAccentBackgroundColor8:#ebf5cb;--sapAccentBackgroundColor9:#dafdf5;--sapAccentBackgroundColor10:#eaecee;--sapLegend_WorkingBackground:#f7f7f7;--sapLegend_NonWorkingBackground:#f7f7f7;--sapLegend_CurrentDateTime:#ab218e;--sapLegendColor1:#ad7900;--sapLegendColor2:#dc5c0c;--sapLegendColor3:#c14646;--sapLegendColor4:#853808;--sapLegendColor5:#da3fb9;--sapLegendColor6:#008bc7;--sapLegendColor7:#198f8f;--sapLegendColor8:#6e8c1f;--sapLegendColor9:#648796;--sapLegendColor10:#80196a;--sapLegendColor11:#6f5925;--sapLegendColor12:#b64600;--sapLegendColor13:#d61818;--sapLegendColor14:#976c52;--sapLegendColor15:#73596d;--sapLegendColor16:#5d759e;--sapLegendColor17:#466c6c;--sapLegendColor18:#626b4a;--sapLegendColor19:#284d5d;--sapLegendColor20:#1851b0;--sapLegendBackgroundColor1:#fff6e0;--sapLegendBackgroundColor2:#feeee5;--sapLegendBackgroundColor3:#f7e6e6;--sapLegendBackgroundColor4:#f9efe9;--sapLegendBackgroundColor5:#fdf2fa;--sapLegendBackgroundColor6:#ebf3fa;--sapLegendBackgroundColor7:#f2fdfd;--sapLegendBackgroundColor8:#f3f9e4;--sapLegendBackgroundColor9:#f1f3f4;--sapLegendBackgroundColor10:#f7edf5;--sapLegendBackgroundColor11:#ffeec6;--sapLegendBackgroundColor12:#fbdfce;--sapLegendBackgroundColor13:#ffdcdc;--sapLegendBackgroundColor14:#f2e2d8;--sapLegendBackgroundColor15:#f0e5ee;--sapLegendBackgroundColor16:#e7e8ea;--sapLegendBackgroundColor17:#d7eaea;--sapLegendBackgroundColor18:#e6edd1;--sapLegendBackgroundColor19:#cfebf7;--sapLegendBackgroundColor20:#f0f7fa;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}"
|
8
8
|
}
|
9
9
|
};
|
10
10
|
|