@synerise/ds-icon 0.57.0 → 0.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/cjs/icons/FileExpiredM.d.ts +3 -0
- package/dist/cjs/icons/FileExpiredM.js +8 -0
- package/dist/cjs/icons/L/index.d.ts +5 -5
- package/dist/cjs/icons/L/index.js +10 -10
- package/dist/cjs/icons/XL/GemsXl.d.ts +3 -0
- package/dist/cjs/icons/XL/GemsXl.js +19 -0
- package/dist/cjs/icons/XL/index.d.ts +17 -16
- package/dist/cjs/icons/XL/index.js +34 -32
- package/dist/cjs/icons/additional/index.d.ts +20 -20
- package/dist/cjs/icons/additional/index.js +40 -40
- package/dist/cjs/icons/index.d.ts +185 -184
- package/dist/cjs/icons/index.js +370 -368
- package/dist/esm/icons/FileExpiredM.d.ts +3 -0
- package/dist/esm/icons/FileExpiredM.js +6 -0
- package/dist/esm/icons/L/index.d.ts +5 -5
- package/dist/esm/icons/L/index.js +5 -5
- package/dist/esm/icons/XL/GemsXl.d.ts +3 -0
- package/dist/esm/icons/XL/GemsXl.js +17 -0
- package/dist/esm/icons/XL/index.d.ts +17 -16
- package/dist/esm/icons/XL/index.js +17 -16
- package/dist/esm/icons/additional/index.d.ts +20 -20
- package/dist/esm/icons/additional/index.js +20 -20
- package/dist/esm/icons/index.d.ts +185 -184
- package/dist/esm/icons/index.js +185 -184
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.58.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.58.0...@synerise/ds-icon@0.58.1) (2023-09-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-icon
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.58.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.57.0...@synerise/ds-icon@0.58.0) (2023-07-26)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **icon:** added file expired icon ([b66826d](https://github.com/Synerise/synerise-design/commit/b66826de2667492ce0e8b33b43ac6fc58f7d97b4))
|
|
20
|
+
* **icon:** new icon (GemsXL) ([3c9b253](https://github.com/Synerise/synerise-design/commit/3c9b253b37c037477383e5aa091f0b598074f503))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [0.57.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.56.0...@synerise/ds-icon@0.57.0) (2023-06-28)
|
|
7
27
|
|
|
8
28
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const FileExpiredM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "file-expired-m" }, props),
|
|
5
|
+
React.createElement("path", { d: "M7.75 21h4.15a.75.75 0 000-1.5H7.75c-.69 0-1.25-.56-1.25-1.25V5.75c0-.69.56-1.25 1.25-1.25h4.34c.323 0 .632.124.865.346l4.159 3.976c.246.236.386.562.386.904v2.024a.75.75 0 001.5 0V9.726a2.763 2.763 0 00-.85-1.988l-4.16-3.976A2.738 2.738 0 0012.09 3H7.75A2.753 2.753 0 005 5.75v12.5A2.753 2.753 0 007.75 21z" }),
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13 17a4 4 0 118 0 4 4 0 01-8 0zm1.5 0a2.5 2.5 0 105 0 2.5 2.5 0 00-5 0z" }),
|
|
7
|
+
React.createElement("path", { d: "M17.75 16.69v-.89a.75.75 0 00-1.5 0V17c0 .199.079.39.22.53l.8.8a.75.75 0 001.06-1.06l-.58-.58z" })));
|
|
8
|
+
exports.default = FileExpiredM;
|
|
@@ -5,17 +5,17 @@ export { default as CheckL } from './CheckL';
|
|
|
5
5
|
export { default as CheckboxL } from './CheckboxL';
|
|
6
6
|
export { default as CloseL } from './CloseL';
|
|
7
7
|
export { default as ColumnL } from './ColumnL';
|
|
8
|
-
export { default as CountdownL } from './CountdownL';
|
|
9
8
|
export { default as ComboL } from './ComboL';
|
|
9
|
+
export { default as CountdownL } from './CountdownL';
|
|
10
10
|
export { default as DividerL } from './DividerL';
|
|
11
|
-
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
12
11
|
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
12
|
+
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
13
13
|
export { default as FolderL } from './FolderL';
|
|
14
14
|
export { default as FormEditL } from './FormEditL';
|
|
15
15
|
export { default as FormGroupL } from './FormGroupL';
|
|
16
16
|
export { default as FormL } from './FormL';
|
|
17
|
-
export { default as ImageL } from './ImageL';
|
|
18
17
|
export { default as HashL } from './HashL';
|
|
18
|
+
export { default as ImageL } from './ImageL';
|
|
19
19
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
20
20
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
21
21
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
@@ -29,8 +29,8 @@ export { default as LinkL } from './LinkL';
|
|
|
29
29
|
export { default as LocationL } from './LocationL';
|
|
30
30
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
31
31
|
export { default as MobileClickL } from './MobileClickL';
|
|
32
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
33
32
|
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
33
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
34
34
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
35
35
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
36
36
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
@@ -57,8 +57,8 @@ export { default as SliderL } from './SliderL';
|
|
|
57
57
|
export { default as SpinnerL } from './SpinnerL';
|
|
58
58
|
export { default as StackedL } from './StackedL';
|
|
59
59
|
export { default as TableL } from './TableL';
|
|
60
|
-
export { default as TextareaL } from './TextareaL';
|
|
61
60
|
export { default as TextL } from './TextL';
|
|
61
|
+
export { default as TextareaL } from './TextareaL';
|
|
62
62
|
export { default as TooltipL } from './TooltipL';
|
|
63
63
|
export { default as VideoL } from './VideoL';
|
|
64
64
|
export { default as WarningL } from './WarningL';
|
|
@@ -14,16 +14,16 @@ var CloseL_1 = require("./CloseL");
|
|
|
14
14
|
Object.defineProperty(exports, "CloseL", { enumerable: true, get: function () { return CloseL_1.default; } });
|
|
15
15
|
var ColumnL_1 = require("./ColumnL");
|
|
16
16
|
Object.defineProperty(exports, "ColumnL", { enumerable: true, get: function () { return ColumnL_1.default; } });
|
|
17
|
-
var CountdownL_1 = require("./CountdownL");
|
|
18
|
-
Object.defineProperty(exports, "CountdownL", { enumerable: true, get: function () { return CountdownL_1.default; } });
|
|
19
17
|
var ComboL_1 = require("./ComboL");
|
|
20
18
|
Object.defineProperty(exports, "ComboL", { enumerable: true, get: function () { return ComboL_1.default; } });
|
|
19
|
+
var CountdownL_1 = require("./CountdownL");
|
|
20
|
+
Object.defineProperty(exports, "CountdownL", { enumerable: true, get: function () { return CountdownL_1.default; } });
|
|
21
21
|
var DividerL_1 = require("./DividerL");
|
|
22
22
|
Object.defineProperty(exports, "DividerL", { enumerable: true, get: function () { return DividerL_1.default; } });
|
|
23
|
-
var FolderFavouriteFlatL_1 = require("./FolderFavouriteFlatL");
|
|
24
|
-
Object.defineProperty(exports, "FolderFavouriteFlatL", { enumerable: true, get: function () { return FolderFavouriteFlatL_1.default; } });
|
|
25
23
|
var FileTypePictureL_1 = require("./FileTypePictureL");
|
|
26
24
|
Object.defineProperty(exports, "FileTypePictureL", { enumerable: true, get: function () { return FileTypePictureL_1.default; } });
|
|
25
|
+
var FolderFavouriteFlatL_1 = require("./FolderFavouriteFlatL");
|
|
26
|
+
Object.defineProperty(exports, "FolderFavouriteFlatL", { enumerable: true, get: function () { return FolderFavouriteFlatL_1.default; } });
|
|
27
27
|
var FolderL_1 = require("./FolderL");
|
|
28
28
|
Object.defineProperty(exports, "FolderL", { enumerable: true, get: function () { return FolderL_1.default; } });
|
|
29
29
|
var FormEditL_1 = require("./FormEditL");
|
|
@@ -32,10 +32,10 @@ var FormGroupL_1 = require("./FormGroupL");
|
|
|
32
32
|
Object.defineProperty(exports, "FormGroupL", { enumerable: true, get: function () { return FormGroupL_1.default; } });
|
|
33
33
|
var FormL_1 = require("./FormL");
|
|
34
34
|
Object.defineProperty(exports, "FormL", { enumerable: true, get: function () { return FormL_1.default; } });
|
|
35
|
-
var ImageL_1 = require("./ImageL");
|
|
36
|
-
Object.defineProperty(exports, "ImageL", { enumerable: true, get: function () { return ImageL_1.default; } });
|
|
37
35
|
var HashL_1 = require("./HashL");
|
|
38
36
|
Object.defineProperty(exports, "HashL", { enumerable: true, get: function () { return HashL_1.default; } });
|
|
37
|
+
var ImageL_1 = require("./ImageL");
|
|
38
|
+
Object.defineProperty(exports, "ImageL", { enumerable: true, get: function () { return ImageL_1.default; } });
|
|
39
39
|
var ImageLandscapeL_1 = require("./ImageLandscapeL");
|
|
40
40
|
Object.defineProperty(exports, "ImageLandscapeL", { enumerable: true, get: function () { return ImageLandscapeL_1.default; } });
|
|
41
41
|
var ImagePotraitL_1 = require("./ImagePotraitL");
|
|
@@ -62,10 +62,10 @@ var MobileBlockL_1 = require("./MobileBlockL");
|
|
|
62
62
|
Object.defineProperty(exports, "MobileBlockL", { enumerable: true, get: function () { return MobileBlockL_1.default; } });
|
|
63
63
|
var MobileClickL_1 = require("./MobileClickL");
|
|
64
64
|
Object.defineProperty(exports, "MobileClickL", { enumerable: true, get: function () { return MobileClickL_1.default; } });
|
|
65
|
-
var MobileLayout2L_1 = require("./MobileLayout2L");
|
|
66
|
-
Object.defineProperty(exports, "MobileLayout2L", { enumerable: true, get: function () { return MobileLayout2L_1.default; } });
|
|
67
65
|
var MobileLayout1L_1 = require("./MobileLayout1L");
|
|
68
66
|
Object.defineProperty(exports, "MobileLayout1L", { enumerable: true, get: function () { return MobileLayout1L_1.default; } });
|
|
67
|
+
var MobileLayout2L_1 = require("./MobileLayout2L");
|
|
68
|
+
Object.defineProperty(exports, "MobileLayout2L", { enumerable: true, get: function () { return MobileLayout2L_1.default; } });
|
|
69
69
|
var MobileLayout3L_1 = require("./MobileLayout3L");
|
|
70
70
|
Object.defineProperty(exports, "MobileLayout3L", { enumerable: true, get: function () { return MobileLayout3L_1.default; } });
|
|
71
71
|
var MobileLayout4L_1 = require("./MobileLayout4L");
|
|
@@ -118,10 +118,10 @@ var StackedL_1 = require("./StackedL");
|
|
|
118
118
|
Object.defineProperty(exports, "StackedL", { enumerable: true, get: function () { return StackedL_1.default; } });
|
|
119
119
|
var TableL_1 = require("./TableL");
|
|
120
120
|
Object.defineProperty(exports, "TableL", { enumerable: true, get: function () { return TableL_1.default; } });
|
|
121
|
-
var TextareaL_1 = require("./TextareaL");
|
|
122
|
-
Object.defineProperty(exports, "TextareaL", { enumerable: true, get: function () { return TextareaL_1.default; } });
|
|
123
121
|
var TextL_1 = require("./TextL");
|
|
124
122
|
Object.defineProperty(exports, "TextL", { enumerable: true, get: function () { return TextL_1.default; } });
|
|
123
|
+
var TextareaL_1 = require("./TextareaL");
|
|
124
|
+
Object.defineProperty(exports, "TextareaL", { enumerable: true, get: function () { return TextareaL_1.default; } });
|
|
125
125
|
var TooltipL_1 = require("./TooltipL");
|
|
126
126
|
Object.defineProperty(exports, "TooltipL", { enumerable: true, get: function () { return TooltipL_1.default; } });
|
|
127
127
|
var VideoL_1 = require("./VideoL");
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const GemsXl = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 96 96", fill: "none", className: "gems-xl" }, props),
|
|
5
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.478 38.8l29.44 31.512L77.363 38.8H18.478zm29.44 33.36a.745.745 0 01-.546-.238l-31.17-33.36a.75.75 0 01.548-1.261h62.339a.75.75 0 01.548 1.262l-31.17 33.359a.747.747 0 01-.548.238z", fill: "#384451" }),
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.84 38.8L47.92 69.039 57.998 38.8H37.84zM47.92 72.16a.752.752 0 01-.712-.512l-11.12-33.36a.75.75 0 01.713-.987h22.239a.75.75 0 01.712.987l-11.12 33.36a.751.751 0 01-.712.512z", fill: "#384451" }),
|
|
7
|
+
React.createElement("mask", { id: "prefix__svg-59821111a", style: {
|
|
8
|
+
maskType: 'luminance',
|
|
9
|
+
}, maskUnits: "userSpaceOnUse", x: 16, y: 23, width: 64, height: 16 },
|
|
10
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 23h63.839v15.8H16V23z", fill: "#fff" })),
|
|
11
|
+
React.createElement("g", { mask: "url(#prefix__svg-59821111a)" },
|
|
12
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.248 37.3h59.343l-9.579-12.8H27.827l-9.579 12.8zm60.841 1.5H16.75a.75.75 0 01-.6-1.198l10.702-14.3a.75.75 0 01.6-.301h40.935a.75.75 0 01.6.3l10.702 14.3a.75.75 0 01-.6 1.2z", fill: "#384451" })),
|
|
13
|
+
React.createElement("mask", { id: "prefix__svg-59821111b", style: {
|
|
14
|
+
maskType: 'luminance',
|
|
15
|
+
}, maskUnits: "userSpaceOnUse", x: 26, y: 23, width: 44, height: 16 },
|
|
16
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M26.702 23h42.435v15.804H26.702V23z", fill: "#fff" })),
|
|
17
|
+
React.createElement("g", { mask: "url(#prefix__svg-59821111b)" },
|
|
18
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M59.04 38.8a.75.75 0 01-.593-.29L47.92 24.974 37.392 38.51c-.149.19-.379.32-.623.289a.75.75 0 01-.597-.34l-9.348-14.3a.75.75 0 011.256-.82l8.772 13.42 10.475-13.47c.283-.366.9-.366 1.184 0l10.475 13.47 8.773-13.42a.748.748 0 011.038-.217.751.751 0 01.218 1.038l-9.348 14.3a.752.752 0 01-.598.339h-.03", fill: "#384451" }))));
|
|
19
|
+
exports.default = GemsXl;
|
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
export { default as AbTestXl } from './AbTestXl';
|
|
2
2
|
export { default as AddXl } from './AddXl';
|
|
3
3
|
export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as AfterEventXl } from './AfterEventXl';
|
|
5
5
|
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
6
|
+
export { default as AttributeXl } from './AttributeXl';
|
|
6
7
|
export { default as BasicBuilderXl } from './BasicBuilderXl';
|
|
7
|
-
export { default as BillingXl } from './BillingXl';
|
|
8
|
-
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
9
8
|
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
9
|
+
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
10
|
+
export { default as BillingXl } from './BillingXl';
|
|
10
11
|
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
11
12
|
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
12
13
|
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
13
|
-
export { default as BulbEditXl } from './BulbEditXl';
|
|
14
14
|
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
15
|
+
export { default as BulbEditXl } from './BulbEditXl';
|
|
15
16
|
export { default as CalculatorXl } from './CalculatorXl';
|
|
16
17
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
17
18
|
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
18
19
|
export { default as CalendarXl } from './CalendarXl';
|
|
19
|
-
export { default as CardVisaXl } from './CardVisaXl';
|
|
20
20
|
export { default as CardAeXl } from './CardAeXl';
|
|
21
|
+
export { default as CardVisaXl } from './CardVisaXl';
|
|
21
22
|
export { default as CartAddXl } from './CartAddXl';
|
|
22
23
|
export { default as CheckInXl } from './CheckInXl';
|
|
23
24
|
export { default as CheckOutXl } from './CheckOutXl';
|
|
@@ -32,8 +33,8 @@ export { default as DiscountXl } from './DiscountXl';
|
|
|
32
33
|
export { default as EventXl } from './EventXl';
|
|
33
34
|
export { default as FileUpXl } from './FileUpXl';
|
|
34
35
|
export { default as FileUrlXl } from './FileUrlXl';
|
|
35
|
-
export { default as FileZipXl } from './FileZipXl';
|
|
36
36
|
export { default as FileXl } from './FileXl';
|
|
37
|
+
export { default as FileZipXl } from './FileZipXl';
|
|
37
38
|
export { default as FirstRunXl } from './FirstRunXl';
|
|
38
39
|
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
39
40
|
export { default as FolderStarXl } from './FolderStarXl';
|
|
@@ -42,44 +43,44 @@ export { default as FolderXl } from './FolderXl';
|
|
|
42
43
|
export { default as FormXl } from './FormXl';
|
|
43
44
|
export { default as FormulaXl } from './FormulaXl';
|
|
44
45
|
export { default as FunctionXl } from './FunctionXl';
|
|
46
|
+
export { default as GemsXl } from './GemsXl';
|
|
45
47
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
46
48
|
export { default as InfoXl } from './InfoXl';
|
|
49
|
+
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
47
50
|
export { default as IntegrationXl } from './IntegrationXl';
|
|
48
|
-
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
49
51
|
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
50
|
-
export { default as
|
|
52
|
+
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
51
53
|
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
52
|
-
export { default as
|
|
53
|
-
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
54
|
+
export { default as LaunchXl } from './LaunchXl';
|
|
54
55
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
56
|
+
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
55
57
|
export { default as MessageXl } from './MessageXl';
|
|
56
58
|
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
57
59
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
58
60
|
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
59
61
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
60
|
-
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
61
62
|
export { default as MultivalueXl } from './MultivalueXl';
|
|
63
|
+
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
62
64
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
63
65
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
64
66
|
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
65
67
|
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
66
68
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
67
69
|
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
70
|
+
export { default as PushXl } from './PushXl';
|
|
68
71
|
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
69
72
|
export { default as ReggressionXl } from './ReggressionXl';
|
|
70
|
-
export { default as SectionXl } from './SectionXl';
|
|
71
73
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
72
|
-
export { default as
|
|
74
|
+
export { default as SectionXl } from './SectionXl';
|
|
73
75
|
export { default as ShowXl } from './ShowXl';
|
|
74
|
-
export { default as ToolsXl } from './ToolsXl';
|
|
75
76
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
77
|
+
export { default as ToolsXl } from './ToolsXl';
|
|
78
|
+
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
76
79
|
export { default as UserCircleXl } from './UserCircleXl';
|
|
77
80
|
export { default as UserIdXl } from './UserIdXl';
|
|
78
81
|
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
79
|
-
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
80
82
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
81
83
|
export { default as VoucherXl } from './VoucherXl';
|
|
82
84
|
export { default as WarningXl } from './WarningXl';
|
|
83
85
|
export { default as WebhookXl } from './WebhookXl';
|
|
84
86
|
export { default as WeblayerXl } from './WeblayerXl';
|
|
85
|
-
export { default as LaunchXl } from './LaunchXl';
|
|
@@ -6,28 +6,30 @@ var AddXl_1 = require("./AddXl");
|
|
|
6
6
|
Object.defineProperty(exports, "AddXl", { enumerable: true, get: function () { return AddXl_1.default; } });
|
|
7
7
|
var AdvancedBuilderXl_1 = require("./AdvancedBuilderXl");
|
|
8
8
|
Object.defineProperty(exports, "AdvancedBuilderXl", { enumerable: true, get: function () { return AdvancedBuilderXl_1.default; } });
|
|
9
|
-
var
|
|
10
|
-
Object.defineProperty(exports, "
|
|
9
|
+
var AfterEventXl_1 = require("./AfterEventXl");
|
|
10
|
+
Object.defineProperty(exports, "AfterEventXl", { enumerable: true, get: function () { return AfterEventXl_1.default; } });
|
|
11
11
|
var AnalyticsInsightsXl_1 = require("./AnalyticsInsightsXl");
|
|
12
12
|
Object.defineProperty(exports, "AnalyticsInsightsXl", { enumerable: true, get: function () { return AnalyticsInsightsXl_1.default; } });
|
|
13
|
+
var AttributeXl_1 = require("./AttributeXl");
|
|
14
|
+
Object.defineProperty(exports, "AttributeXl", { enumerable: true, get: function () { return AttributeXl_1.default; } });
|
|
13
15
|
var BasicBuilderXl_1 = require("./BasicBuilderXl");
|
|
14
16
|
Object.defineProperty(exports, "BasicBuilderXl", { enumerable: true, get: function () { return BasicBuilderXl_1.default; } });
|
|
15
|
-
var BillingXl_1 = require("./BillingXl");
|
|
16
|
-
Object.defineProperty(exports, "BillingXl", { enumerable: true, get: function () { return BillingXl_1.default; } });
|
|
17
|
-
var BeforeEventXl_1 = require("./BeforeEventXl");
|
|
18
|
-
Object.defineProperty(exports, "BeforeEventXl", { enumerable: true, get: function () { return BeforeEventXl_1.default; } });
|
|
19
17
|
var BasketCheckXl_1 = require("./BasketCheckXl");
|
|
20
18
|
Object.defineProperty(exports, "BasketCheckXl", { enumerable: true, get: function () { return BasketCheckXl_1.default; } });
|
|
19
|
+
var BeforeEventXl_1 = require("./BeforeEventXl");
|
|
20
|
+
Object.defineProperty(exports, "BeforeEventXl", { enumerable: true, get: function () { return BeforeEventXl_1.default; } });
|
|
21
|
+
var BillingXl_1 = require("./BillingXl");
|
|
22
|
+
Object.defineProperty(exports, "BillingXl", { enumerable: true, get: function () { return BillingXl_1.default; } });
|
|
21
23
|
var BrowserCloseXl_1 = require("./BrowserCloseXl");
|
|
22
24
|
Object.defineProperty(exports, "BrowserCloseXl", { enumerable: true, get: function () { return BrowserCloseXl_1.default; } });
|
|
23
25
|
var BrowserCodeXl_1 = require("./BrowserCodeXl");
|
|
24
26
|
Object.defineProperty(exports, "BrowserCodeXl", { enumerable: true, get: function () { return BrowserCodeXl_1.default; } });
|
|
25
27
|
var BrowserLandingXl_1 = require("./BrowserLandingXl");
|
|
26
28
|
Object.defineProperty(exports, "BrowserLandingXl", { enumerable: true, get: function () { return BrowserLandingXl_1.default; } });
|
|
27
|
-
var BulbEditXl_1 = require("./BulbEditXl");
|
|
28
|
-
Object.defineProperty(exports, "BulbEditXl", { enumerable: true, get: function () { return BulbEditXl_1.default; } });
|
|
29
29
|
var BrowserScrollXl_1 = require("./BrowserScrollXl");
|
|
30
30
|
Object.defineProperty(exports, "BrowserScrollXl", { enumerable: true, get: function () { return BrowserScrollXl_1.default; } });
|
|
31
|
+
var BulbEditXl_1 = require("./BulbEditXl");
|
|
32
|
+
Object.defineProperty(exports, "BulbEditXl", { enumerable: true, get: function () { return BulbEditXl_1.default; } });
|
|
31
33
|
var CalculatorXl_1 = require("./CalculatorXl");
|
|
32
34
|
Object.defineProperty(exports, "CalculatorXl", { enumerable: true, get: function () { return CalculatorXl_1.default; } });
|
|
33
35
|
var CalendarIntervalXl_1 = require("./CalendarIntervalXl");
|
|
@@ -36,10 +38,10 @@ var CalendarScheduleXl_1 = require("./CalendarScheduleXl");
|
|
|
36
38
|
Object.defineProperty(exports, "CalendarScheduleXl", { enumerable: true, get: function () { return CalendarScheduleXl_1.default; } });
|
|
37
39
|
var CalendarXl_1 = require("./CalendarXl");
|
|
38
40
|
Object.defineProperty(exports, "CalendarXl", { enumerable: true, get: function () { return CalendarXl_1.default; } });
|
|
39
|
-
var CardVisaXl_1 = require("./CardVisaXl");
|
|
40
|
-
Object.defineProperty(exports, "CardVisaXl", { enumerable: true, get: function () { return CardVisaXl_1.default; } });
|
|
41
41
|
var CardAeXl_1 = require("./CardAeXl");
|
|
42
42
|
Object.defineProperty(exports, "CardAeXl", { enumerable: true, get: function () { return CardAeXl_1.default; } });
|
|
43
|
+
var CardVisaXl_1 = require("./CardVisaXl");
|
|
44
|
+
Object.defineProperty(exports, "CardVisaXl", { enumerable: true, get: function () { return CardVisaXl_1.default; } });
|
|
43
45
|
var CartAddXl_1 = require("./CartAddXl");
|
|
44
46
|
Object.defineProperty(exports, "CartAddXl", { enumerable: true, get: function () { return CartAddXl_1.default; } });
|
|
45
47
|
var CheckInXl_1 = require("./CheckInXl");
|
|
@@ -68,10 +70,10 @@ var FileUpXl_1 = require("./FileUpXl");
|
|
|
68
70
|
Object.defineProperty(exports, "FileUpXl", { enumerable: true, get: function () { return FileUpXl_1.default; } });
|
|
69
71
|
var FileUrlXl_1 = require("./FileUrlXl");
|
|
70
72
|
Object.defineProperty(exports, "FileUrlXl", { enumerable: true, get: function () { return FileUrlXl_1.default; } });
|
|
71
|
-
var FileZipXl_1 = require("./FileZipXl");
|
|
72
|
-
Object.defineProperty(exports, "FileZipXl", { enumerable: true, get: function () { return FileZipXl_1.default; } });
|
|
73
73
|
var FileXl_1 = require("./FileXl");
|
|
74
74
|
Object.defineProperty(exports, "FileXl", { enumerable: true, get: function () { return FileXl_1.default; } });
|
|
75
|
+
var FileZipXl_1 = require("./FileZipXl");
|
|
76
|
+
Object.defineProperty(exports, "FileZipXl", { enumerable: true, get: function () { return FileZipXl_1.default; } });
|
|
75
77
|
var FirstRunXl_1 = require("./FirstRunXl");
|
|
76
78
|
Object.defineProperty(exports, "FirstRunXl", { enumerable: true, get: function () { return FirstRunXl_1.default; } });
|
|
77
79
|
var FolderCheckXl_1 = require("./FolderCheckXl");
|
|
@@ -88,26 +90,28 @@ var FormulaXl_1 = require("./FormulaXl");
|
|
|
88
90
|
Object.defineProperty(exports, "FormulaXl", { enumerable: true, get: function () { return FormulaXl_1.default; } });
|
|
89
91
|
var FunctionXl_1 = require("./FunctionXl");
|
|
90
92
|
Object.defineProperty(exports, "FunctionXl", { enumerable: true, get: function () { return FunctionXl_1.default; } });
|
|
93
|
+
var GemsXl_1 = require("./GemsXl");
|
|
94
|
+
Object.defineProperty(exports, "GemsXl", { enumerable: true, get: function () { return GemsXl_1.default; } });
|
|
91
95
|
var InboxNoResultsXl_1 = require("./InboxNoResultsXl");
|
|
92
96
|
Object.defineProperty(exports, "InboxNoResultsXl", { enumerable: true, get: function () { return InboxNoResultsXl_1.default; } });
|
|
93
97
|
var InfoXl_1 = require("./InfoXl");
|
|
94
98
|
Object.defineProperty(exports, "InfoXl", { enumerable: true, get: function () { return InfoXl_1.default; } });
|
|
99
|
+
var InsertObjectXl_1 = require("./InsertObjectXl");
|
|
100
|
+
Object.defineProperty(exports, "InsertObjectXl", { enumerable: true, get: function () { return InsertObjectXl_1.default; } });
|
|
95
101
|
var IntegrationXl_1 = require("./IntegrationXl");
|
|
96
102
|
Object.defineProperty(exports, "IntegrationXl", { enumerable: true, get: function () { return IntegrationXl_1.default; } });
|
|
97
|
-
var LaptopAiXl_1 = require("./LaptopAiXl");
|
|
98
|
-
Object.defineProperty(exports, "LaptopAiXl", { enumerable: true, get: function () { return LaptopAiXl_1.default; } });
|
|
99
103
|
var IntegrationsXl_1 = require("./IntegrationsXl");
|
|
100
104
|
Object.defineProperty(exports, "IntegrationsXl", { enumerable: true, get: function () { return IntegrationsXl_1.default; } });
|
|
101
|
-
var
|
|
102
|
-
Object.defineProperty(exports, "
|
|
105
|
+
var LaptopAiXl_1 = require("./LaptopAiXl");
|
|
106
|
+
Object.defineProperty(exports, "LaptopAiXl", { enumerable: true, get: function () { return LaptopAiXl_1.default; } });
|
|
103
107
|
var LaptopTargetXl_1 = require("./LaptopTargetXl");
|
|
104
108
|
Object.defineProperty(exports, "LaptopTargetXl", { enumerable: true, get: function () { return LaptopTargetXl_1.default; } });
|
|
105
|
-
var
|
|
106
|
-
Object.defineProperty(exports, "
|
|
107
|
-
var MarketingAutomationXl_1 = require("./MarketingAutomationXl");
|
|
108
|
-
Object.defineProperty(exports, "MarketingAutomationXl", { enumerable: true, get: function () { return MarketingAutomationXl_1.default; } });
|
|
109
|
+
var LaunchXl_1 = require("./LaunchXl");
|
|
110
|
+
Object.defineProperty(exports, "LaunchXl", { enumerable: true, get: function () { return LaunchXl_1.default; } });
|
|
109
111
|
var LoyalityBoostXl_1 = require("./LoyalityBoostXl");
|
|
110
112
|
Object.defineProperty(exports, "LoyalityBoostXl", { enumerable: true, get: function () { return LoyalityBoostXl_1.default; } });
|
|
113
|
+
var MarketingAutomationXl_1 = require("./MarketingAutomationXl");
|
|
114
|
+
Object.defineProperty(exports, "MarketingAutomationXl", { enumerable: true, get: function () { return MarketingAutomationXl_1.default; } });
|
|
111
115
|
var MessageXl_1 = require("./MessageXl");
|
|
112
116
|
Object.defineProperty(exports, "MessageXl", { enumerable: true, get: function () { return MessageXl_1.default; } });
|
|
113
117
|
var MobileBannerXl_1 = require("./MobileBannerXl");
|
|
@@ -118,10 +122,10 @@ var MobileStepsXl_1 = require("./MobileStepsXl");
|
|
|
118
122
|
Object.defineProperty(exports, "MobileStepsXl", { enumerable: true, get: function () { return MobileStepsXl_1.default; } });
|
|
119
123
|
var MobileUpdateXl_1 = require("./MobileUpdateXl");
|
|
120
124
|
Object.defineProperty(exports, "MobileUpdateXl", { enumerable: true, get: function () { return MobileUpdateXl_1.default; } });
|
|
121
|
-
var NetworkFileXl_1 = require("./NetworkFileXl");
|
|
122
|
-
Object.defineProperty(exports, "NetworkFileXl", { enumerable: true, get: function () { return NetworkFileXl_1.default; } });
|
|
123
125
|
var MultivalueXl_1 = require("./MultivalueXl");
|
|
124
126
|
Object.defineProperty(exports, "MultivalueXl", { enumerable: true, get: function () { return MultivalueXl_1.default; } });
|
|
127
|
+
var NetworkFileXl_1 = require("./NetworkFileXl");
|
|
128
|
+
Object.defineProperty(exports, "NetworkFileXl", { enumerable: true, get: function () { return NetworkFileXl_1.default; } });
|
|
125
129
|
var NoPermissionXl_1 = require("./NoPermissionXl");
|
|
126
130
|
Object.defineProperty(exports, "NoPermissionXl", { enumerable: true, get: function () { return NoPermissionXl_1.default; } });
|
|
127
131
|
var NotificationsEditXl_1 = require("./NotificationsEditXl");
|
|
@@ -134,30 +138,30 @@ var ProductsLastSeenXl_1 = require("./ProductsLastSeenXl");
|
|
|
134
138
|
Object.defineProperty(exports, "ProductsLastSeenXl", { enumerable: true, get: function () { return ProductsLastSeenXl_1.default; } });
|
|
135
139
|
var ProductsSimilarXl_1 = require("./ProductsSimilarXl");
|
|
136
140
|
Object.defineProperty(exports, "ProductsSimilarXl", { enumerable: true, get: function () { return ProductsSimilarXl_1.default; } });
|
|
141
|
+
var PushXl_1 = require("./PushXl");
|
|
142
|
+
Object.defineProperty(exports, "PushXl", { enumerable: true, get: function () { return PushXl_1.default; } });
|
|
137
143
|
var RecentInteractionsXl_1 = require("./RecentInteractionsXl");
|
|
138
144
|
Object.defineProperty(exports, "RecentInteractionsXl", { enumerable: true, get: function () { return RecentInteractionsXl_1.default; } });
|
|
139
145
|
var ReggressionXl_1 = require("./ReggressionXl");
|
|
140
146
|
Object.defineProperty(exports, "ReggressionXl", { enumerable: true, get: function () { return ReggressionXl_1.default; } });
|
|
141
|
-
var SectionXl_1 = require("./SectionXl");
|
|
142
|
-
Object.defineProperty(exports, "SectionXl", { enumerable: true, get: function () { return SectionXl_1.default; } });
|
|
143
147
|
var SearchNoResultsXl_1 = require("./SearchNoResultsXl");
|
|
144
148
|
Object.defineProperty(exports, "SearchNoResultsXl", { enumerable: true, get: function () { return SearchNoResultsXl_1.default; } });
|
|
145
|
-
var
|
|
146
|
-
Object.defineProperty(exports, "
|
|
149
|
+
var SectionXl_1 = require("./SectionXl");
|
|
150
|
+
Object.defineProperty(exports, "SectionXl", { enumerable: true, get: function () { return SectionXl_1.default; } });
|
|
147
151
|
var ShowXl_1 = require("./ShowXl");
|
|
148
152
|
Object.defineProperty(exports, "ShowXl", { enumerable: true, get: function () { return ShowXl_1.default; } });
|
|
149
|
-
var ToolsXl_1 = require("./ToolsXl");
|
|
150
|
-
Object.defineProperty(exports, "ToolsXl", { enumerable: true, get: function () { return ToolsXl_1.default; } });
|
|
151
153
|
var SilentPushXl_1 = require("./SilentPushXl");
|
|
152
154
|
Object.defineProperty(exports, "SilentPushXl", { enumerable: true, get: function () { return SilentPushXl_1.default; } });
|
|
155
|
+
var ToolsXl_1 = require("./ToolsXl");
|
|
156
|
+
Object.defineProperty(exports, "ToolsXl", { enumerable: true, get: function () { return ToolsXl_1.default; } });
|
|
157
|
+
var UserCircleUpXl_1 = require("./UserCircleUpXl");
|
|
158
|
+
Object.defineProperty(exports, "UserCircleUpXl", { enumerable: true, get: function () { return UserCircleUpXl_1.default; } });
|
|
153
159
|
var UserCircleXl_1 = require("./UserCircleXl");
|
|
154
160
|
Object.defineProperty(exports, "UserCircleXl", { enumerable: true, get: function () { return UserCircleXl_1.default; } });
|
|
155
161
|
var UserIdXl_1 = require("./UserIdXl");
|
|
156
162
|
Object.defineProperty(exports, "UserIdXl", { enumerable: true, get: function () { return UserIdXl_1.default; } });
|
|
157
163
|
var VisualEditorStarXl_1 = require("./VisualEditorStarXl");
|
|
158
164
|
Object.defineProperty(exports, "VisualEditorStarXl", { enumerable: true, get: function () { return VisualEditorStarXl_1.default; } });
|
|
159
|
-
var UserCircleUpXl_1 = require("./UserCircleUpXl");
|
|
160
|
-
Object.defineProperty(exports, "UserCircleUpXl", { enumerable: true, get: function () { return UserCircleUpXl_1.default; } });
|
|
161
165
|
var VisualEditorXl_1 = require("./VisualEditorXl");
|
|
162
166
|
Object.defineProperty(exports, "VisualEditorXl", { enumerable: true, get: function () { return VisualEditorXl_1.default; } });
|
|
163
167
|
var VoucherXl_1 = require("./VoucherXl");
|
|
@@ -168,5 +172,3 @@ var WebhookXl_1 = require("./WebhookXl");
|
|
|
168
172
|
Object.defineProperty(exports, "WebhookXl", { enumerable: true, get: function () { return WebhookXl_1.default; } });
|
|
169
173
|
var WeblayerXl_1 = require("./WeblayerXl");
|
|
170
174
|
Object.defineProperty(exports, "WeblayerXl", { enumerable: true, get: function () { return WeblayerXl_1.default; } });
|
|
171
|
-
var LaunchXl_1 = require("./LaunchXl");
|
|
172
|
-
Object.defineProperty(exports, "LaunchXl", { enumerable: true, get: function () { return LaunchXl_1.default; } });
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
export { default as ActionDeeplinkL } from './ActionDeeplinkL';
|
|
2
|
+
export { default as ActionNoneL } from './ActionNoneL';
|
|
2
3
|
export { default as ActionOpenAppL } from './ActionOpenAppL';
|
|
4
|
+
export { default as ActionUrlL } from './ActionUrlL';
|
|
3
5
|
export { default as AdAfterScrollL } from './AdAfterScrollL';
|
|
4
6
|
export { default as AdAfterXpagesL } from './AdAfterXpagesL';
|
|
5
|
-
export { default as ActionUrlL } from './ActionUrlL';
|
|
6
7
|
export { default as AdBannerL } from './AdBannerL';
|
|
7
8
|
export { default as AdCartAiL } from './AdCartAiL';
|
|
8
9
|
export { default as AdCodeEditorL } from './AdCodeEditorL';
|
|
9
|
-
export { default as AdCouponL } from './AdCouponL';
|
|
10
10
|
export { default as AdComplementaryAiL } from './AdComplementaryAiL';
|
|
11
|
-
export { default as
|
|
11
|
+
export { default as AdCouponL } from './AdCouponL';
|
|
12
12
|
export { default as AdDeeplinkingL } from './AdDeeplinkingL';
|
|
13
13
|
export { default as AdFadeInL } from './AdFadeInL';
|
|
14
14
|
export { default as AdFirstRunL } from './AdFirstRunL';
|
|
15
15
|
export { default as AdFolderBasic } from './AdFolderBasic';
|
|
16
|
-
export { default as AdFolderStarredS } from './AdFolderStarredS';
|
|
17
16
|
export { default as AdFolderFeatured } from './AdFolderFeatured';
|
|
18
17
|
export { default as AdFolderS } from './AdFolderS';
|
|
18
|
+
export { default as AdFolderStarredS } from './AdFolderStarredS';
|
|
19
19
|
export { default as AdFolderUser } from './AdFolderUser';
|
|
20
20
|
export { default as AdFullScreenBannerL } from './AdFullScreenBannerL';
|
|
21
21
|
export { default as AdImageL } from './AdImageL';
|
|
@@ -24,13 +24,13 @@ export { default as AdImportUrl } from './AdImportUrl';
|
|
|
24
24
|
export { default as AdImportZip } from './AdImportZip';
|
|
25
25
|
export { default as AdInsertObjectL } from './AdInsertObjectL';
|
|
26
26
|
export { default as AdLandL } from './AdLandL';
|
|
27
|
-
export { default as AdMandatoryUpgradeL } from './AdMandatoryUpgradeL';
|
|
28
27
|
export { default as AdMandatoryUpdateL } from './AdMandatoryUpdateL';
|
|
28
|
+
export { default as AdMandatoryUpgradeL } from './AdMandatoryUpgradeL';
|
|
29
|
+
export { default as AdOnExitL } from './AdOnExitL';
|
|
29
30
|
export { default as AdOnLandingL } from './AdOnLandingL';
|
|
30
31
|
export { default as AdOnboardingL } from './AdOnboardingL';
|
|
31
32
|
export { default as AdOpenAppL } from './AdOpenAppL';
|
|
32
33
|
export { default as AdOpenUrlL } from './AdOpenUrlL';
|
|
33
|
-
export { default as AdOnExitL } from './AdOnExitL';
|
|
34
34
|
export { default as AdPersonalizedAiL } from './AdPersonalizedAiL';
|
|
35
35
|
export { default as AdPopL } from './AdPopL';
|
|
36
36
|
export { default as AdPortraitL } from './AdPortraitL';
|
|
@@ -40,21 +40,23 @@ export { default as AdSilentPushL } from './AdSilentPushL';
|
|
|
40
40
|
export { default as AdSimilarAiL } from './AdSimilarAiL';
|
|
41
41
|
export { default as AdSimplePushL } from './AdSimplePushL';
|
|
42
42
|
export { default as AdSlideDownL } from './AdSlideDownL';
|
|
43
|
-
export { default as AdTempCodeS } from './AdTempCodeS';
|
|
44
43
|
export { default as AdSlideLeftL } from './AdSlideLeftL';
|
|
45
|
-
export { default as
|
|
44
|
+
export { default as AdSlideRightL } from './AdSlideRightL';
|
|
45
|
+
export { default as AdSlideUpL } from './AdSlideUpL';
|
|
46
|
+
export { default as AdTempCodeS } from './AdTempCodeS';
|
|
46
47
|
export { default as AdTextEditorL } from './AdTextEditorL';
|
|
48
|
+
export { default as AdUserSegmentsL } from './AdUserSegmentsL';
|
|
47
49
|
export { default as AdVisualAiL } from './AdVisualAiL';
|
|
48
50
|
export { default as AdVisualEditorL } from './AdVisualEditorL';
|
|
49
51
|
export { default as AdVisualEditorNewL } from './AdVisualEditorNewL';
|
|
50
52
|
export { default as AdWalktroughL } from './AdWalktroughL';
|
|
51
|
-
export { default as AdWelcomeScreenL } from './AdWelcomeScreenL';
|
|
52
53
|
export { default as AdWebLayerL } from './AdWebLayerL';
|
|
54
|
+
export { default as AdWelcomeScreenL } from './AdWelcomeScreenL';
|
|
53
55
|
export { default as AiCampaigns } from './AiCampaigns';
|
|
54
56
|
export { default as AudienceAnalytics } from './AudienceAnalytics';
|
|
57
|
+
export { default as BoostLoyalty } from './BoostLoyalty';
|
|
55
58
|
export { default as CartRecommendationXl } from './CartRecommendationXl';
|
|
56
59
|
export { default as ChartColumnL } from './ChartColumnL';
|
|
57
|
-
export { default as BoostLoyalty } from './BoostLoyalty';
|
|
58
60
|
export { default as ChartComboL } from './ChartComboL';
|
|
59
61
|
export { default as ChartDonutL } from './ChartDonutL';
|
|
60
62
|
export { default as ChartDonutLineL } from './ChartDonutLineL';
|
|
@@ -62,12 +64,11 @@ export { default as ChartLineL } from './ChartLineL';
|
|
|
62
64
|
export { default as ChartPieL } from './ChartPieL';
|
|
63
65
|
export { default as ChartTableL } from './ChartTableL';
|
|
64
66
|
export { default as DateMultipleXl } from './DateMultipleXl';
|
|
65
|
-
export { default as AdSlideUpL } from './AdSlideUpL';
|
|
66
|
-
export { default as DateRecurringXl } from './DateRecurringXl';
|
|
67
67
|
export { default as DateOntimeXl } from './DateOntimeXl';
|
|
68
|
+
export { default as DateRecurringXl } from './DateRecurringXl';
|
|
69
|
+
export { default as FileImportL } from './FileImportL';
|
|
68
70
|
export { default as ImportCatalogsXl } from './ImportCatalogsXl';
|
|
69
71
|
export { default as ImportClientsXl } from './ImportClientsXl';
|
|
70
|
-
export { default as FileImportL } from './FileImportL';
|
|
71
72
|
export { default as ImportCustomEventXl } from './ImportCustomEventXl';
|
|
72
73
|
export { default as ImportCustomXl } from './ImportCustomXl';
|
|
73
74
|
export { default as ImportProductFeedXl } from './ImportProductFeedXl';
|
|
@@ -75,20 +76,19 @@ export { default as ImportPromotionsXl } from './ImportPromotionsXl';
|
|
|
75
76
|
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
76
77
|
export { default as ImportTransactionsXl } from './ImportTransactionsXl';
|
|
77
78
|
export { default as ImportVouchersXl } from './ImportVouchersXl';
|
|
78
|
-
export { default as LastSeenXl } from './LastSeenXl';
|
|
79
79
|
export { default as Integration } from './Integration';
|
|
80
|
+
export { default as LastSeenXl } from './LastSeenXl';
|
|
80
81
|
export { default as LayoutImageBgL } from './LayoutImageBgL';
|
|
81
|
-
export { default as LayoutTextL } from './LayoutTextL';
|
|
82
|
-
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
83
82
|
export { default as LayoutImageBgTextL } from './LayoutImageBgTextL';
|
|
83
|
+
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
84
|
+
export { default as LayoutTextL } from './LayoutTextL';
|
|
85
|
+
export { default as MarketingAutomation } from './MarketingAutomation';
|
|
84
86
|
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
85
87
|
export { default as MetricSimpleXl } from './MetricSimpleXl';
|
|
86
|
-
export { default as
|
|
88
|
+
export { default as MobileHandbillXl } from './MobileHandbillXl';
|
|
87
89
|
export { default as OtherIdeas } from './OtherIdeas';
|
|
88
90
|
export { default as PushImportL } from './PushImportL';
|
|
89
|
-
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
90
91
|
export { default as ReportPreparedXl } from './ReportPreparedXl';
|
|
92
|
+
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
91
93
|
export { default as TopProductsXl } from './TopProductsXl';
|
|
92
94
|
export { default as UnderstandCustomer } from './UnderstandCustomer';
|
|
93
|
-
export { default as AdSlideRightL } from './AdSlideRightL';
|
|
94
|
-
export { default as MobileHandbillXl } from './MobileHandbillXl';
|