@everymatrix/general-tutorial-slider 1.16.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.
Files changed (47) hide show
  1. package/dist/cjs/general-tutorial-slider.cjs.entry.js +332 -0
  2. package/dist/cjs/general-tutorial-slider.cjs.js +19 -0
  3. package/dist/cjs/index-18ec3908.js +1282 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/general-tutorial-slider/general-tutorial-slider.css +168 -0
  8. package/dist/collection/components/general-tutorial-slider/general-tutorial-slider.js +526 -0
  9. package/dist/collection/index.js +1 -0
  10. package/dist/collection/utils/locale.utils.js +28 -0
  11. package/dist/collection/utils/utils.js +39 -0
  12. package/dist/components/general-tutorial-slider.d.ts +11 -0
  13. package/dist/components/general-tutorial-slider.js +365 -0
  14. package/dist/components/index.d.ts +26 -0
  15. package/dist/components/index.js +1 -0
  16. package/dist/esm/general-tutorial-slider.entry.js +328 -0
  17. package/dist/esm/general-tutorial-slider.js +17 -0
  18. package/dist/esm/index-a2165162.js +1256 -0
  19. package/dist/esm/index.js +1 -0
  20. package/dist/esm/loader.js +17 -0
  21. package/dist/esm/polyfills/core-js.js +11 -0
  22. package/dist/esm/polyfills/css-shim.js +1 -0
  23. package/dist/esm/polyfills/dom.js +79 -0
  24. package/dist/esm/polyfills/es5-html-element.js +1 -0
  25. package/dist/esm/polyfills/index.js +34 -0
  26. package/dist/esm/polyfills/system.js +6 -0
  27. package/dist/general-tutorial-slider/general-tutorial-slider.esm.js +1 -0
  28. package/dist/general-tutorial-slider/index.esm.js +0 -0
  29. package/dist/general-tutorial-slider/p-a878ee14.js +1 -0
  30. package/dist/general-tutorial-slider/p-b0314d40.entry.js +1 -0
  31. package/dist/index.cjs.js +1 -0
  32. package/dist/index.js +1 -0
  33. package/dist/stencil.config.js +22 -0
  34. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/general-tutorial-slider/.stencil/packages/general-tutorial-slider/stencil.config.d.ts +2 -0
  35. package/dist/types/components/general-tutorial-slider/general-tutorial-slider.d.ts +90 -0
  36. package/dist/types/components.d.ts +141 -0
  37. package/dist/types/index.d.ts +1 -0
  38. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  39. package/dist/types/utils/locale.utils.d.ts +1 -0
  40. package/dist/types/utils/utils.d.ts +9 -0
  41. package/loader/cdn.js +3 -0
  42. package/loader/index.cjs.js +3 -0
  43. package/loader/index.d.ts +12 -0
  44. package/loader/index.es2017.js +3 -0
  45. package/loader/index.js +4 -0
  46. package/loader/package.json +10 -0
  47. package/package.json +19 -0
@@ -0,0 +1,332 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const index = require('./index-18ec3908.js');
6
+
7
+ const DEFAULT_LANGUAGE = 'en';
8
+ const SUPPORTED_LANGUAGES = ['ro', 'en', 'fr', 'ar', 'hu'];
9
+ const TRANSLATIONS = {
10
+ en: {
11
+ error: 'Error',
12
+ noResults: 'Loading, please wait ...',
13
+ },
14
+ hu: {
15
+ error: 'Error',
16
+ noResults: 'Loading, please wait ...',
17
+ },
18
+ ro: {
19
+ error: 'Eroare',
20
+ noResults: 'Loading, please wait ...',
21
+ },
22
+ fr: {
23
+ error: 'Error',
24
+ noResults: 'Loading, please wait ...',
25
+ },
26
+ ar: {
27
+ error: 'خطأ',
28
+ noResults: 'Loading, please wait ...',
29
+ }
30
+ };
31
+ const translate = (key, customLang) => {
32
+ const lang = customLang;
33
+ return TRANSLATIONS[lang !== undefined && SUPPORTED_LANGUAGES.includes(lang) ? lang : DEFAULT_LANGUAGE][key];
34
+ };
35
+
36
+ /**
37
+ * @name isMobile
38
+ * @description A method that returns if the browser used to access the app is from a mobile device or not
39
+ * @param {String} userAgent window.navigator.userAgent
40
+ * @returns {Boolean} true or false
41
+ */
42
+ const isMobile = (userAgent) => {
43
+ return !!(userAgent.toLowerCase().match(/android/i) ||
44
+ userAgent.toLowerCase().match(/blackberry|bb/i) ||
45
+ userAgent.toLowerCase().match(/iphone|ipad|ipod/i) ||
46
+ userAgent.toLowerCase().match(/windows phone|windows mobile|iemobile|wpdesktop/i));
47
+ };
48
+ const getDevice = () => {
49
+ let userAgent = window.navigator.userAgent;
50
+ if (userAgent.toLowerCase().match(/android/i)) {
51
+ return 'Android';
52
+ }
53
+ if (userAgent.toLowerCase().match(/iphone/i)) {
54
+ return 'iPhone';
55
+ }
56
+ if (userAgent.toLowerCase().match(/ipad|ipod/i)) {
57
+ return 'iPad';
58
+ }
59
+ return 'PC';
60
+ };
61
+ const getDevicePlatform = () => {
62
+ const device = getDevice();
63
+ if (device) {
64
+ if (device === 'PC') {
65
+ return 'dk';
66
+ }
67
+ else if (device === 'iPad' || device === 'iPhone') {
68
+ return 'ios';
69
+ }
70
+ else {
71
+ return 'mtWeb';
72
+ }
73
+ }
74
+ };
75
+
76
+ const generalTutorialSliderCss = ":host {\n display: block;\n}\n\n.GeneralTutorialSliderError {\n display: flex;\n justify-content: center;\n flex-direction: column;\n}\n.GeneralTutorialSliderError.TitleError {\n color: red;\n}\n\nmain {\n width: 100%;\n overflow: hidden;\n}\n\n.TutorialWrapper {\n width: 100%;\n display: flex;\n flex: 0 0 auto;\n justify-content: center;\n flex-direction: column;\n overflow: auto;\n}\n\n.TutorialContent {\n display: flex;\n justify-content: center;\n flex-direction: row;\n}\n\n.TutorialItems {\n display: flex;\n transition: transform 0.4s ease-in-out;\n transform: translateX(0px);\n}\n\n.TutorialItem {\n flex: 0 0 auto;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n color: #000;\n background-color: #f5f5f5;\n border-radius: 5px;\n user-select: none;\n}\n.TutorialItem .ItemTitle {\n padding: 25px 15px;\n font-size: 18px;\n font-weight: 600;\n color: var(--emfe-w-color-secondary, #FD2839);\n}\n.TutorialItem .ItemImage {\n overflow: hidden;\n}\n.TutorialItem .ItemImage img, .TutorialItem .ItemImage video {\n height: auto;\n width: 450px;\n}\n.TutorialItem .ItemDescription {\n font-size: 14px;\n padding: 25px 15px;\n font-weight: 400;\n color: #000;\n}\n\n.SliderNavButton {\n border: 0px;\n width: 25px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.SliderNavButton svg {\n width: 20px;\n stroke: var(--emfe-w-color-secondary, #FD2839);\n}\n\n.DisabledArrow svg {\n opacity: 0.2;\n stroke: var(--emfe-w-color-secondary, #FD2839);\n pointer-events: none;\n}\n\n.DotsWrapper {\n width: 100%;\n margin: 0 auto;\n margin-top: 20px;\n height: 30px;\n}\n.DotsWrapper ul.Dots {\n display: flex;\n justify-content: center;\n padding: 0;\n}\n.DotsWrapper ul.Dots li {\n height: 10px;\n width: 10px;\n background: #ccc;\n border-radius: 50%;\n margin-left: 3px;\n margin-right: 3px;\n list-style: none;\n cursor: pointer;\n}\n.DotsWrapper ul.Dots li:hover {\n background: #bbb;\n}\n.DotsWrapper ul.Dots li.active {\n border: solid 1px var(--emfe-w-color-secondary, #FD2839);\n background: var(--emfe-w-color-secondary, #FD2839);\n}\n.DotsWrapper ul.Dots li.default {\n border: solid 1px var(--emfe-w-color-secondary, #FD2839);\n background-color: #FFF;\n}\n\n@container (max-width: 475px) {\n @media screen and (orientation: landscape) {\n .TutorialItem {\n width: 100%;\n }\n }\n main {\n height: 90cqh;\n }\n\n .TutorialItems {\n height: inherit;\n }\n\n .TutorialItem {\n min-width: 100%;\n max-height: 800px;\n overflow: auto;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n color: #000;\n background-color: #f5f5f5;\n border-radius: 5px;\n user-select: none;\n }\n .TutorialItem .ItemTitle {\n padding: 25px 15px;\n font-size: 18px;\n font-weight: 600;\n color: var(--emfe-w-color-secondary, #FD2839);\n }\n .TutorialItem .ItemImage {\n min-height: 200px;\n }\n .TutorialItem .ItemImage img, .TutorialItem .ItemImage video {\n height: auto;\n width: 100%;\n }\n .TutorialItem .ItemDescription {\n font-size: 14px;\n padding: 25px 15px;\n font-weight: 400;\n color: #000;\n }\n}";
77
+
78
+ const GeneralTutorialSlider = class {
79
+ constructor(hostRef) {
80
+ index.registerInstance(this, hostRef);
81
+ /**
82
+ * Client custom styling via inline style
83
+ */
84
+ this.clientStyling = '';
85
+ /**
86
+ * Client custom styling via url
87
+ */
88
+ this.clientStylingUrl = '';
89
+ /**
90
+ * Language of the widget
91
+ */
92
+ this.language = 'en';
93
+ /**
94
+ * User roles
95
+ */
96
+ this.userRoles = 'everyone';
97
+ /**
98
+ * CMS Endpoint stage
99
+ */
100
+ this.cmsEnv = 'stage';
101
+ /**
102
+ * Show slider dots
103
+ */
104
+ this.showSliderDots = true;
105
+ /**
106
+ * Show slider navigate arrows
107
+ */
108
+ this.showSliderArrows = true;
109
+ /**
110
+ * Show slider navigate arrows on mobile
111
+ */
112
+ this.showSliderArrowsMobile = false;
113
+ /**
114
+ * Auto-scroll will only function if it is set to true, and otherwise it will be ignored.
115
+ */
116
+ this.enableAutoScroll = false;
117
+ /**
118
+ * Set interval period for slider
119
+ */
120
+ this.intervalPeriod = 5000;
121
+ /**
122
+ * Set the number of slides you wish to display.
123
+ */
124
+ this.scrollItems = 1;
125
+ /**
126
+ * Set the number of slides you wish to display.
127
+ */
128
+ this.itemsPerPage = 1;
129
+ this.hasErrors = false;
130
+ this.limitStylingAppends = false;
131
+ this.isLoading = true;
132
+ this.activeIndex = 0;
133
+ this.tutorialElementWidth = 0;
134
+ this.userAgent = window.navigator.userAgent;
135
+ this.isMobile = isMobile(this.userAgent);
136
+ this.allElementsWidth = 0;
137
+ this.xDown = null;
138
+ this.yDown = null;
139
+ this.resizeHandler = () => {
140
+ this.recalculateItemsPerPage();
141
+ };
142
+ this.orientationChangeHandler = () => {
143
+ setTimeout(() => {
144
+ this.recalculateItemsPerPage();
145
+ }, 10);
146
+ };
147
+ this.setClientStyling = () => {
148
+ let sheet = document.createElement('style');
149
+ sheet.innerHTML = this.clientStyling;
150
+ this.stylingContainer.prepend(sheet);
151
+ };
152
+ this.setClientStylingURL = () => {
153
+ let url = new URL(this.clientStylingUrl);
154
+ let cssFile = document.createElement('style');
155
+ fetch(url.href)
156
+ .then((res) => res.text())
157
+ .then((data) => {
158
+ cssFile.innerHTML = data;
159
+ setTimeout(() => { this.stylingContainer.prepend(cssFile); }, 1);
160
+ })
161
+ .catch((err) => {
162
+ console.log('error ', err);
163
+ });
164
+ };
165
+ }
166
+ watchEndpoint(newValue, oldValue) {
167
+ if (newValue && newValue != oldValue && this.cmsEndpoint) {
168
+ this.getGeneralTutorialSlider().then((tutorialContent) => {
169
+ this.tutorialData = tutorialContent;
170
+ });
171
+ }
172
+ }
173
+ connectedCallback() {
174
+ window.screen.orientation.addEventListener('change', this.orientationChangeHandler);
175
+ }
176
+ componentWillLoad() {
177
+ if (this.cmsEndpoint && this.language) {
178
+ return this.getGeneralTutorialSlider().then((tutorialContent) => {
179
+ this.tutorialData = tutorialContent;
180
+ });
181
+ }
182
+ }
183
+ componentDidLoad() {
184
+ window.addEventListener('resize', this.resizeHandler);
185
+ }
186
+ componentDidRender() {
187
+ this.el.addEventListener('touchstart', this.handleTouchStart.bind(this), { passive: true });
188
+ this.el.addEventListener('touchmove', this.handleTouchMove.bind(this), { passive: true });
189
+ this.recalculateItemsPerPage();
190
+ // start custom styling area
191
+ if (!this.limitStylingAppends && this.stylingContainer) {
192
+ if (this.clientStyling)
193
+ this.setClientStyling();
194
+ if (this.clientStylingUrl)
195
+ this.setClientStylingURL();
196
+ this.limitStylingAppends = true;
197
+ }
198
+ // end custom styling area
199
+ }
200
+ componentDidUpdate() {
201
+ this.recalculateItemsPerPage();
202
+ }
203
+ disconnectedCallback() {
204
+ this.el.removeEventListener('touchstart', this.handleTouchStart);
205
+ this.el.removeEventListener('touchmove', this.handleTouchMove);
206
+ window.screen.orientation.removeEventListener('change', this.orientationChangeHandler);
207
+ window.removeEventListener('resize', this.resizeHandler);
208
+ }
209
+ getGeneralTutorialSlider() {
210
+ let url = new URL(`${this.cmsEndpoint}/${this.language}/slider-onboarding`);
211
+ url.searchParams.append('env', this.cmsEnv);
212
+ url.searchParams.append('userRoles', this.userRoles);
213
+ url.searchParams.append('device', getDevicePlatform());
214
+ return new Promise((resolve, reject) => {
215
+ this.isLoading = true;
216
+ fetch(url.href)
217
+ .then((res) => res.json())
218
+ .then((tutorialContent) => {
219
+ resolve(tutorialContent);
220
+ }).catch((err) => {
221
+ console.error(err);
222
+ this.hasErrors = true;
223
+ reject(err);
224
+ }).finally(() => {
225
+ this.isLoading = false;
226
+ });
227
+ });
228
+ }
229
+ move(direction) {
230
+ this.setActive(this.activeIndex + direction);
231
+ }
232
+ ;
233
+ //calculate itemsperpage by tutorials length to avoid empty in the tutorials end
234
+ recalculateItemsPerPage() {
235
+ if (!this.tutorialsElement)
236
+ return;
237
+ this.tutorialElementWidth = this.tutorialsElement.clientWidth;
238
+ this.allElementsWidth = (this.tutorialData.length - 1) * this.tutorialElementWidth;
239
+ }
240
+ ;
241
+ goTo(index) {
242
+ let diff = this.activeIndex - index;
243
+ if (diff > 0) {
244
+ for (let i = 0; i < diff; i++) {
245
+ this.move(-1);
246
+ }
247
+ }
248
+ else {
249
+ for (let i = 0; i > diff; i--) {
250
+ this.move(1);
251
+ }
252
+ }
253
+ }
254
+ handleTouchStart(evt) {
255
+ const firstTouch = this.getTouches(evt)[0];
256
+ this.xDown = firstTouch.clientX;
257
+ this.yDown = firstTouch.clientY;
258
+ }
259
+ getTouches(evt) {
260
+ return evt.touches || evt.originalEvent.touches;
261
+ }
262
+ handleTouchMove(evt) {
263
+ if (!this.xDown || !this.yDown)
264
+ return;
265
+ let xUp = evt.touches[0].clientX;
266
+ let yUp = evt.touches[0].clientY;
267
+ let xDiff = this.xDown - xUp;
268
+ let yDiff = this.yDown - yUp;
269
+ if (Math.abs(xDiff) > Math.abs(yDiff)) {
270
+ if (xDiff > 0) {
271
+ this.move(1);
272
+ }
273
+ else {
274
+ this.move(-1);
275
+ }
276
+ }
277
+ this.xDown = null;
278
+ this.yDown = null;
279
+ }
280
+ ;
281
+ setActive(index) {
282
+ const maxLength = this.tutorialData.length;
283
+ if (index >= 0) {
284
+ if (index >= maxLength - 1) {
285
+ this.activeIndex = maxLength - 1;
286
+ }
287
+ else {
288
+ this.activeIndex = index;
289
+ }
290
+ }
291
+ else {
292
+ this.activeIndex = 0;
293
+ }
294
+ }
295
+ renderDots() {
296
+ const dots = [];
297
+ for (let index$1 = 0; index$1 < this.tutorialData.length / this.itemsPerPage; index$1++) {
298
+ dots.push(index.h("li", { class: index$1 == this.activeIndex ? 'active' : 'default', onClick: () => { this.goTo(index$1); this.setActive(index$1); } }));
299
+ }
300
+ return dots;
301
+ }
302
+ render() {
303
+ const styles = {
304
+ transform: `translate(${(this.allElementsWidth / (this.tutorialData.length - 1) * this.activeIndex) * -1}px, 0px)`
305
+ };
306
+ const itemStyle = {
307
+ width: `${this.tutorialElementWidth / this.itemsPerPage}px`
308
+ };
309
+ if (this.hasErrors) {
310
+ return (index.h("div", { class: "GeneralTutorialSliderError" }, index.h("div", { class: "TitleError" }, translate('error', this.language))));
311
+ }
312
+ if (!this.isLoading) {
313
+ return (index.h("div", { ref: el => this.stylingContainer = el }, index.h("div", { class: "TutorialWrapper" }, index.h("div", { class: "TutorialContent", ref: (el) => this.slider = el }, ((this.showSliderArrows && !this.isMobile) ||
314
+ (this.showSliderArrowsMobile && this.isMobile)) &&
315
+ index.h("div", { class: this.activeIndex === 0 ? 'SliderNavButton DisabledArrow' : 'SliderNavButton', onClick: () => this.move(-1) }, index.h("svg", { fill: "none", stroke: "var(--emfe-w-color-secondary, #FD2839)", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "2", d: "M15 19l-7-7 7-7" }))), index.h("main", null, index.h("div", { style: styles, ref: (el) => this.tutorialsElement = el, class: "TutorialItems" }, this.tutorialData.map((data) => {
316
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
317
+ return index.h("div", { class: "TutorialItem", style: itemStyle }, index.h("div", { class: "ItemTitle", innerHTML: data === null || data === void 0 ? void 0 : data.title }), ((_a = data === null || data === void 0 ? void 0 : data.media) === null || _a === void 0 ? void 0 : _a.images) ? (index.h("div", { class: "ItemImage" }, this.isMobile ? (index.h("img", { src: (_e = (_d = (_c = (_b = data === null || data === void 0 ? void 0 : data.media) === null || _b === void 0 ? void 0 : _b.images[0]) === null || _c === void 0 ? void 0 : _c.sources) === null || _d === void 0 ? void 0 : _d.find((source) => source.media === 'mobile')) === null || _e === void 0 ? void 0 : _e.src, alt: data === null || data === void 0 ? void 0 : data.slug })) : (index.h("img", { src: (_j = (_h = (_g = (_f = data === null || data === void 0 ? void 0 : data.media) === null || _f === void 0 ? void 0 : _f.images[0]) === null || _g === void 0 ? void 0 : _g.sources) === null || _h === void 0 ? void 0 : _h.find((source) => source.media === 'desktop')) === null || _j === void 0 ? void 0 : _j.src, alt: data === null || data === void 0 ? void 0 : data.slug })))) : ((_k = data === null || data === void 0 ? void 0 : data.media) === null || _k === void 0 ? void 0 : _k.video) ? (index.h("div", { class: "ItemImage" }, this.isMobile ? (index.h("video", { controls: true, loop: true, autoplay: true }, index.h("source", { src: (_p = (_o = (_m = (_l = data === null || data === void 0 ? void 0 : data.media) === null || _l === void 0 ? void 0 : _l.video[0]) === null || _m === void 0 ? void 0 : _m.sources) === null || _o === void 0 ? void 0 : _o.find((source) => source.media === 'mobile')) === null || _p === void 0 ? void 0 : _p.src, type: "video/mp4" }))) : (index.h("video", { controls: true, loop: true, autoplay: true }, index.h("source", { src: (_t = (_s = (_r = (_q = data === null || data === void 0 ? void 0 : data.media) === null || _q === void 0 ? void 0 : _q.video[0]) === null || _r === void 0 ? void 0 : _r.sources) === null || _s === void 0 ? void 0 : _s.find((source) => source.media === 'desktop')) === null || _t === void 0 ? void 0 : _t.src, type: "video/mp4" }))))) : null, index.h("div", { class: "ItemDescription", innerHTML: data === null || data === void 0 ? void 0 : data.content }));
318
+ }))), ((this.showSliderArrows && !this.isMobile) ||
319
+ (this.showSliderArrowsMobile && this.isMobile)) &&
320
+ index.h("div", { class: this.activeIndex === this.tutorialData.length - 1 ? ' SliderNavButton DisabledArrow disabled' : 'SliderNavButton', onClick: () => this.move(1) }, index.h("svg", { fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "2", d: "M9 5l7 7-7 7" }))), index.h("div", null)), this.showSliderDots &&
321
+ index.h("div", { class: "DotsWrapper" }, index.h("ul", { class: "Dots" }, this.renderDots())))));
322
+ }
323
+ }
324
+ get el() { return index.getElement(this); }
325
+ static get watchers() { return {
326
+ "cmsEndpoint": ["watchEndpoint"],
327
+ "language": ["watchEndpoint"]
328
+ }; }
329
+ };
330
+ GeneralTutorialSlider.style = generalTutorialSliderCss;
331
+
332
+ exports.general_tutorial_slider = GeneralTutorialSlider;
@@ -0,0 +1,19 @@
1
+ 'use strict';
2
+
3
+ const index = require('./index-18ec3908.js');
4
+
5
+ /*
6
+ Stencil Client Patch Browser v2.15.2 | MIT Licensed | https://stenciljs.com
7
+ */
8
+ const patchBrowser = () => {
9
+ const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('general-tutorial-slider.cjs.js', document.baseURI).href));
10
+ const opts = {};
11
+ if (importMeta !== '') {
12
+ opts.resourcesUrl = new URL('.', importMeta).href;
13
+ }
14
+ return index.promiseResolve(opts);
15
+ };
16
+
17
+ patchBrowser().then(options => {
18
+ return index.bootstrapLazy([["general-tutorial-slider.cjs",[[1,"general-tutorial-slider",{"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"language":[513],"cmsEndpoint":[513,"cms-endpoint"],"userRoles":[513,"user-roles"],"cmsEnv":[513,"cms-env"],"showSliderDots":[516,"show-slider-dots"],"showSliderArrows":[516,"show-slider-arrows"],"showSliderArrowsMobile":[516,"show-slider-arrows-mobile"],"enableAutoScroll":[516,"enable-auto-scroll"],"intervalPeriod":[514,"interval-period"],"scrollItems":[520,"scroll-items"],"itemsPerPage":[514,"items-per-page"],"hasErrors":[32],"limitStylingAppends":[32],"isLoading":[32],"activeIndex":[32],"tutorialElementWidth":[32]}]]]], options);
19
+ });