-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.esm.js
More file actions
37 lines (31 loc) · 1.3 KB
/
Copy pathbundle.esm.js
File metadata and controls
37 lines (31 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// ESM bundle targets Edge + browsers with native support
import "@ui5/webcomponents-base/dist/features/browsersupport/Edge.js";
// used in test pages
import RenderScheduler from "@ui5/webcomponents-base/dist/RenderScheduler.js";
import { getAnimationMode } from "@ui5/webcomponents-base/dist/config/AnimationMode.js";
import { getLanguage } from "@ui5/webcomponents-base/dist/config/Language.js";
import { getCalendarType } from "@ui5/webcomponents-base/dist/config/CalendarType.js";
import { getTheme, setTheme } from "@ui5/webcomponents-base/dist/config/Theme.js";
import { getNoConflict, setNoConflict } from "@ui5/webcomponents-base/dist/config/NoConflict.js";
import { getRTL } from "@ui5/webcomponents-base/dist/config/RTL.js";
import { getFirstDayOfWeek } from "@ui5/webcomponents-base/dist/config/FormatSettings.js";
import "@ui5/webcomponents/dist/Button.js";
// Enable additional themes and i18n texts
import "./dist/Assets.js";
// Import your web components here from the dist/ directory
import "./dist/CustomPopup.js";
import "./dist/AnotherCustomPopup.js";
window.RenderScheduler = RenderScheduler;
window["sap-ui-webcomponents-bundle"] = {
configuration: {
getAnimationMode,
getLanguage,
getTheme,
setTheme,
getNoConflict,
setNoConflict,
getCalendarType,
getRTL,
getFirstDayOfWeek,
},
};