@synerise/ds-icon 0.60.9 → 0.62.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/CHANGELOG.md +22 -0
- package/dist/cjs/icons/ErrorFillS.d.ts +3 -0
- package/dist/cjs/icons/ErrorFillS.js +7 -0
- package/dist/cjs/icons/ErrorS.d.ts +3 -0
- package/dist/cjs/icons/ErrorS.js +7 -0
- package/dist/cjs/icons/L/index.d.ts +6 -6
- package/dist/cjs/icons/L/index.js +14 -14
- package/dist/cjs/icons/XL/index.d.ts +5 -5
- package/dist/cjs/icons/XL/index.js +11 -11
- package/dist/cjs/icons/additional/index.d.ts +8 -8
- package/dist/cjs/icons/additional/index.js +18 -18
- package/dist/cjs/icons/index.d.ts +155 -153
- package/dist/cjs/icons/index.js +327 -323
- package/dist/esm/icons/ErrorFillS.d.ts +3 -0
- package/dist/esm/icons/ErrorFillS.js +5 -0
- package/dist/esm/icons/ErrorS.d.ts +3 -0
- package/dist/esm/icons/ErrorS.js +5 -0
- package/dist/esm/icons/L/index.d.ts +6 -6
- package/dist/esm/icons/L/index.js +6 -6
- package/dist/esm/icons/XL/index.d.ts +5 -5
- package/dist/esm/icons/XL/index.js +5 -5
- package/dist/esm/icons/additional/index.d.ts +8 -8
- package/dist/esm/icons/additional/index.js +8 -8
- package/dist/esm/icons/index.d.ts +155 -153
- package/dist/esm/icons/index.js +155 -153
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.62.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.61.0...@synerise/ds-icon@0.62.0) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **icon:** added 2 new icons ([d12bdd2](https://github.com/Synerise/synerise-design/commit/d12bdd2966518ecf29a133bf514227f31a812d92))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.61.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.60.9...@synerise/ds-icon@0.61.0) (2024-05-16)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **storybook7:** SB7.5 install and config ([abfced9](https://github.com/Synerise/synerise-design/commit/abfced90c2661903338bff0f7022149fbf7583b9))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [0.60.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.60.8...@synerise/ds-icon@0.60.9) (2024-05-10)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @synerise/ds-icon
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const ErrorFillS = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "error-fill-s" }, props),
|
|
5
|
+
React.createElement("circle", { cx: 12, cy: 12, r: 6, fill: "#fff" }),
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 18a6 6 0 10-6-6 6.007 6.007 0 006 6zm-.75-8.215a.75.75 0 011.5 0V12a.75.75 0 01-1.5 0V9.785zm1.5 4.429a.75.75 0 10-.75.751h.002a.75.75 0 00.749-.751z" })));
|
|
7
|
+
exports.default = ErrorFillS;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const ErrorS = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "error-s" }, props),
|
|
5
|
+
React.createElement("circle", { cx: 12, cy: 12, r: 6, fill: "#fff" }),
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18 12a6 6 0 01-6 6 6.007 6.007 0 01-6-6 6 6 0 1112 0zm-1.5 0a4.5 4.5 0 10-9 0 4.5 4.5 0 009 0zm-4.5.75a.75.75 0 00.75-.75V9.785a.75.75 0 00-1.5 0V12c0 .414.336.75.75.75zm.002 2.215H12a.75.75 0 11.002 0z" })));
|
|
7
|
+
exports.default = ErrorS;
|
|
@@ -13,12 +13,12 @@ export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
|
13
13
|
export { default as FolderL } from './FolderL';
|
|
14
14
|
export { default as FolderPlainL } from './FolderPlainL';
|
|
15
15
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
16
|
-
export { default as FormEditL } from './FormEditL';
|
|
17
16
|
export { default as FormGroupL } from './FormGroupL';
|
|
17
|
+
export { default as FormEditL } from './FormEditL';
|
|
18
18
|
export { default as FormL } from './FormL';
|
|
19
19
|
export { default as HashL } from './HashL';
|
|
20
|
-
export { default as ImageL } from './ImageL';
|
|
21
20
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
21
|
+
export { default as ImageL } from './ImageL';
|
|
22
22
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
23
23
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
24
24
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
@@ -52,15 +52,15 @@ export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
|
52
52
|
export { default as Section12L } from './Section12L';
|
|
53
53
|
export { default as Section13L } from './Section13L';
|
|
54
54
|
export { default as Section37L } from './Section37L';
|
|
55
|
-
export { default as SectionL } from './SectionL';
|
|
56
55
|
export { default as SelectL } from './SelectL';
|
|
56
|
+
export { default as SectionL } from './SectionL';
|
|
57
57
|
export { default as ShowL } from './ShowL';
|
|
58
58
|
export { default as SliderL } from './SliderL';
|
|
59
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
60
|
+
export { default as TableL } from './TableL';
|
|
61
|
+
export { default as StackedL } from './StackedL';
|
|
59
62
|
export { default as TextL } from './TextL';
|
|
60
63
|
export { default as TextareaL } from './TextareaL';
|
|
61
64
|
export { default as TooltipL } from './TooltipL';
|
|
62
65
|
export { default as VideoL } from './VideoL';
|
|
63
66
|
export { default as WarningL } from './WarningL';
|
|
64
|
-
export { default as TableL } from './TableL';
|
|
65
|
-
export { default as StackedL } from './StackedL';
|
|
66
|
-
export { default as SpinnerL } from './SpinnerL';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RelationOneOneL = exports.RelationOneManyL = exports.RelationManyOneL = exports.RelationManyManyL = exports.RadioL = exports.QuoteL = exports.PieL = exports.NoPermissionL = exports.NoData = exports.NavbarL = exports.MultilineL = exports.MobileUrlL = exports.MobileLinkL = exports.MobileLayout4L = exports.MobileLayout3L = exports.MobileLayout2L = exports.MobileLayout1L = exports.MobileClickL = exports.MobileBlockL = exports.LocationL = exports.LinkL = exports.LineL = exports.LabelL = exports.InputL = exports.InformationNoSearchResultL = exports.InfoL = exports.InboxNoResultsL = exports.ImageUrlL = exports.ImagePotraitL = exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.RelationOneOneL = exports.RelationOneManyL = exports.RelationManyOneL = exports.RelationManyManyL = exports.RadioL = exports.QuoteL = exports.PieL = exports.NoPermissionL = exports.NoData = exports.NavbarL = exports.MultilineL = exports.MobileUrlL = exports.MobileLinkL = exports.MobileLayout4L = exports.MobileLayout3L = exports.MobileLayout2L = exports.MobileLayout1L = exports.MobileClickL = exports.MobileBlockL = exports.LocationL = exports.LinkL = exports.LineL = exports.LabelL = exports.InputL = exports.InformationNoSearchResultL = exports.InfoL = exports.InboxNoResultsL = exports.ImageUrlL = exports.ImagePotraitL = exports.ImageL = exports.ImageLandscapeL = exports.HashL = exports.FormL = exports.FormEditL = exports.FormGroupL = exports.FolderPredefinedL = exports.FolderPlainL = exports.FolderL = exports.FolderFavouriteFlatL = exports.FileTypePictureL = exports.DividerL = exports.CountdownL = exports.ComboL = exports.ColumnL = exports.CloseL = exports.CheckboxL = exports.CheckL = exports.ButtonSubmitL = exports.ButtonL = exports.AddL = void 0;
|
|
4
|
+
exports.WarningL = exports.VideoL = exports.TooltipL = exports.TextareaL = exports.TextL = exports.StackedL = exports.TableL = exports.SpinnerL = exports.SliderL = exports.ShowL = exports.SectionL = exports.SelectL = exports.Section37L = exports.Section13L = exports.Section12L = exports.SearchNoResultsL = void 0;
|
|
5
5
|
var AddL_1 = require("./AddL");
|
|
6
6
|
Object.defineProperty(exports, "AddL", { enumerable: true, get: function () { return AddL_1.default; } });
|
|
7
7
|
var ButtonL_1 = require("./ButtonL");
|
|
@@ -32,18 +32,18 @@ var FolderPlainL_1 = require("./FolderPlainL");
|
|
|
32
32
|
Object.defineProperty(exports, "FolderPlainL", { enumerable: true, get: function () { return FolderPlainL_1.default; } });
|
|
33
33
|
var FolderPredefinedL_1 = require("./FolderPredefinedL");
|
|
34
34
|
Object.defineProperty(exports, "FolderPredefinedL", { enumerable: true, get: function () { return FolderPredefinedL_1.default; } });
|
|
35
|
-
var FormEditL_1 = require("./FormEditL");
|
|
36
|
-
Object.defineProperty(exports, "FormEditL", { enumerable: true, get: function () { return FormEditL_1.default; } });
|
|
37
35
|
var FormGroupL_1 = require("./FormGroupL");
|
|
38
36
|
Object.defineProperty(exports, "FormGroupL", { enumerable: true, get: function () { return FormGroupL_1.default; } });
|
|
37
|
+
var FormEditL_1 = require("./FormEditL");
|
|
38
|
+
Object.defineProperty(exports, "FormEditL", { enumerable: true, get: function () { return FormEditL_1.default; } });
|
|
39
39
|
var FormL_1 = require("./FormL");
|
|
40
40
|
Object.defineProperty(exports, "FormL", { enumerable: true, get: function () { return FormL_1.default; } });
|
|
41
41
|
var HashL_1 = require("./HashL");
|
|
42
42
|
Object.defineProperty(exports, "HashL", { enumerable: true, get: function () { return HashL_1.default; } });
|
|
43
|
-
var ImageL_1 = require("./ImageL");
|
|
44
|
-
Object.defineProperty(exports, "ImageL", { enumerable: true, get: function () { return ImageL_1.default; } });
|
|
45
43
|
var ImageLandscapeL_1 = require("./ImageLandscapeL");
|
|
46
44
|
Object.defineProperty(exports, "ImageLandscapeL", { enumerable: true, get: function () { return ImageLandscapeL_1.default; } });
|
|
45
|
+
var ImageL_1 = require("./ImageL");
|
|
46
|
+
Object.defineProperty(exports, "ImageL", { enumerable: true, get: function () { return ImageL_1.default; } });
|
|
47
47
|
var ImagePotraitL_1 = require("./ImagePotraitL");
|
|
48
48
|
Object.defineProperty(exports, "ImagePotraitL", { enumerable: true, get: function () { return ImagePotraitL_1.default; } });
|
|
49
49
|
var ImageUrlL_1 = require("./ImageUrlL");
|
|
@@ -110,14 +110,20 @@ var Section13L_1 = require("./Section13L");
|
|
|
110
110
|
Object.defineProperty(exports, "Section13L", { enumerable: true, get: function () { return Section13L_1.default; } });
|
|
111
111
|
var Section37L_1 = require("./Section37L");
|
|
112
112
|
Object.defineProperty(exports, "Section37L", { enumerable: true, get: function () { return Section37L_1.default; } });
|
|
113
|
-
var SectionL_1 = require("./SectionL");
|
|
114
|
-
Object.defineProperty(exports, "SectionL", { enumerable: true, get: function () { return SectionL_1.default; } });
|
|
115
113
|
var SelectL_1 = require("./SelectL");
|
|
116
114
|
Object.defineProperty(exports, "SelectL", { enumerable: true, get: function () { return SelectL_1.default; } });
|
|
115
|
+
var SectionL_1 = require("./SectionL");
|
|
116
|
+
Object.defineProperty(exports, "SectionL", { enumerable: true, get: function () { return SectionL_1.default; } });
|
|
117
117
|
var ShowL_1 = require("./ShowL");
|
|
118
118
|
Object.defineProperty(exports, "ShowL", { enumerable: true, get: function () { return ShowL_1.default; } });
|
|
119
119
|
var SliderL_1 = require("./SliderL");
|
|
120
120
|
Object.defineProperty(exports, "SliderL", { enumerable: true, get: function () { return SliderL_1.default; } });
|
|
121
|
+
var SpinnerL_1 = require("./SpinnerL");
|
|
122
|
+
Object.defineProperty(exports, "SpinnerL", { enumerable: true, get: function () { return SpinnerL_1.default; } });
|
|
123
|
+
var TableL_1 = require("./TableL");
|
|
124
|
+
Object.defineProperty(exports, "TableL", { enumerable: true, get: function () { return TableL_1.default; } });
|
|
125
|
+
var StackedL_1 = require("./StackedL");
|
|
126
|
+
Object.defineProperty(exports, "StackedL", { enumerable: true, get: function () { return StackedL_1.default; } });
|
|
121
127
|
var TextL_1 = require("./TextL");
|
|
122
128
|
Object.defineProperty(exports, "TextL", { enumerable: true, get: function () { return TextL_1.default; } });
|
|
123
129
|
var TextareaL_1 = require("./TextareaL");
|
|
@@ -128,9 +134,3 @@ var VideoL_1 = require("./VideoL");
|
|
|
128
134
|
Object.defineProperty(exports, "VideoL", { enumerable: true, get: function () { return VideoL_1.default; } });
|
|
129
135
|
var WarningL_1 = require("./WarningL");
|
|
130
136
|
Object.defineProperty(exports, "WarningL", { enumerable: true, get: function () { return WarningL_1.default; } });
|
|
131
|
-
var TableL_1 = require("./TableL");
|
|
132
|
-
Object.defineProperty(exports, "TableL", { enumerable: true, get: function () { return TableL_1.default; } });
|
|
133
|
-
var StackedL_1 = require("./StackedL");
|
|
134
|
-
Object.defineProperty(exports, "StackedL", { enumerable: true, get: function () { return StackedL_1.default; } });
|
|
135
|
-
var SpinnerL_1 = require("./SpinnerL");
|
|
136
|
-
Object.defineProperty(exports, "SpinnerL", { enumerable: true, get: function () { return SpinnerL_1.default; } });
|
|
@@ -49,16 +49,16 @@ export { default as InfoXl } from './InfoXl';
|
|
|
49
49
|
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
50
50
|
export { default as IntegrationXl } from './IntegrationXl';
|
|
51
51
|
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
52
|
-
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
53
52
|
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
53
|
+
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
54
54
|
export { default as LaunchXl } from './LaunchXl';
|
|
55
55
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
56
56
|
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
57
57
|
export { default as MessageXl } from './MessageXl';
|
|
58
58
|
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
59
59
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
60
|
-
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
61
60
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
61
|
+
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
62
62
|
export { default as MultivalueXl } from './MultivalueXl';
|
|
63
63
|
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
64
64
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
@@ -77,14 +77,14 @@ export { default as SearchSemanticXl } from './SearchSemanticXl';
|
|
|
77
77
|
export { default as SectionXl } from './SectionXl';
|
|
78
78
|
export { default as ShowXl } from './ShowXl';
|
|
79
79
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
80
|
-
export { default as SmsXl } from './SmsXl';
|
|
81
80
|
export { default as ToolsXl } from './ToolsXl';
|
|
82
81
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
82
|
+
export { default as SmsXl } from './SmsXl';
|
|
83
83
|
export { default as UserCircleXl } from './UserCircleXl';
|
|
84
|
+
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
84
85
|
export { default as UserIdXl } from './UserIdXl';
|
|
85
86
|
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
86
|
-
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
87
|
-
export { default as VoucherXl } from './VoucherXl';
|
|
88
87
|
export { default as WarningXl } from './WarningXl';
|
|
89
88
|
export { default as WebhookXl } from './WebhookXl';
|
|
89
|
+
export { default as VoucherXl } from './VoucherXl';
|
|
90
90
|
export { default as WeblayerXl } from './WeblayerXl';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IntegrationXl = exports.InsertObjectXl = exports.InfoXl = exports.InboxNoResultsXl = exports.GemsXl = exports.FunctionXl = exports.FormulaXl = exports.FormXl = exports.FolderXl = exports.FolderUserXl = exports.FolderStarXl = exports.FolderCheckXl = exports.FirstRunXl = exports.FileZipXl = exports.FileXl = exports.FileUrlXl = exports.FileUpXl = exports.EventXl = exports.DiscountXl = exports.CupXl = exports.CouponXl = exports.CompareXl = exports.CloneNodesXl = exports.CloneNodesFlowXl = exports.ClassificationXl = exports.CheckXl = exports.CheckOutXl = exports.CheckInXl = exports.CartAddXl = exports.CardVisaXl = exports.CardAeXl = exports.CalendarXl = exports.CalendarScheduleXl = exports.CalendarIntervalXl = exports.CalculatorXl = exports.BulbEditXl = exports.BrowserScrollXl = exports.BrowserLandingXl = exports.BrowserCodeXl = exports.BrowserCloseXl = exports.BillingXl = exports.BeforeEventXl = exports.BasketCheckXl = exports.BasicBuilderXl = exports.AttributeXl = exports.AnalyticsInsightsXl = exports.AfterEventXl = exports.AdvancedBuilderXl = exports.AddXl = exports.AbTestXl = void 0;
|
|
4
|
-
exports.WeblayerXl = exports.
|
|
4
|
+
exports.WeblayerXl = exports.VoucherXl = exports.WebhookXl = exports.WarningXl = exports.VisualEditorStarXl = exports.UserIdXl = exports.VisualEditorXl = exports.UserCircleXl = exports.SmsXl = exports.UserCircleUpXl = exports.ToolsXl = exports.SilentPushXl = exports.ShowXl = exports.SectionXl = exports.SearchSemanticXl = exports.SearchNoResultsXl = exports.SearchKeywordsXl = exports.SearchHybridXl = exports.ReggressionXl = exports.RecentInteractionsXl = exports.PushXl = exports.ProductsSimilarXl = exports.ProductsLastSeenXl = exports.ProductsFeedXl = exports.ProductsBundleXl = exports.NotificationsEditXl = exports.NoPermissionXl = exports.NetworkFileXl = exports.MultivalueXl = exports.MobileStepsXl = exports.MobileUpdateXl = exports.MobilePromotionXl = exports.MobileBannerXl = exports.MessageXl = exports.MarketingAutomationXl = exports.LoyalityBoostXl = exports.LaunchXl = exports.LaptopAiXl = exports.LaptopTargetXl = exports.IntegrationsXl = void 0;
|
|
5
5
|
var AbTestXl_1 = require("./AbTestXl");
|
|
6
6
|
Object.defineProperty(exports, "AbTestXl", { enumerable: true, get: function () { return AbTestXl_1.default; } });
|
|
7
7
|
var AddXl_1 = require("./AddXl");
|
|
@@ -104,10 +104,10 @@ var IntegrationXl_1 = require("./IntegrationXl");
|
|
|
104
104
|
Object.defineProperty(exports, "IntegrationXl", { enumerable: true, get: function () { return IntegrationXl_1.default; } });
|
|
105
105
|
var IntegrationsXl_1 = require("./IntegrationsXl");
|
|
106
106
|
Object.defineProperty(exports, "IntegrationsXl", { enumerable: true, get: function () { return IntegrationsXl_1.default; } });
|
|
107
|
-
var LaptopAiXl_1 = require("./LaptopAiXl");
|
|
108
|
-
Object.defineProperty(exports, "LaptopAiXl", { enumerable: true, get: function () { return LaptopAiXl_1.default; } });
|
|
109
107
|
var LaptopTargetXl_1 = require("./LaptopTargetXl");
|
|
110
108
|
Object.defineProperty(exports, "LaptopTargetXl", { enumerable: true, get: function () { return LaptopTargetXl_1.default; } });
|
|
109
|
+
var LaptopAiXl_1 = require("./LaptopAiXl");
|
|
110
|
+
Object.defineProperty(exports, "LaptopAiXl", { enumerable: true, get: function () { return LaptopAiXl_1.default; } });
|
|
111
111
|
var LaunchXl_1 = require("./LaunchXl");
|
|
112
112
|
Object.defineProperty(exports, "LaunchXl", { enumerable: true, get: function () { return LaunchXl_1.default; } });
|
|
113
113
|
var LoyalityBoostXl_1 = require("./LoyalityBoostXl");
|
|
@@ -120,10 +120,10 @@ var MobileBannerXl_1 = require("./MobileBannerXl");
|
|
|
120
120
|
Object.defineProperty(exports, "MobileBannerXl", { enumerable: true, get: function () { return MobileBannerXl_1.default; } });
|
|
121
121
|
var MobilePromotionXl_1 = require("./MobilePromotionXl");
|
|
122
122
|
Object.defineProperty(exports, "MobilePromotionXl", { enumerable: true, get: function () { return MobilePromotionXl_1.default; } });
|
|
123
|
-
var MobileStepsXl_1 = require("./MobileStepsXl");
|
|
124
|
-
Object.defineProperty(exports, "MobileStepsXl", { enumerable: true, get: function () { return MobileStepsXl_1.default; } });
|
|
125
123
|
var MobileUpdateXl_1 = require("./MobileUpdateXl");
|
|
126
124
|
Object.defineProperty(exports, "MobileUpdateXl", { enumerable: true, get: function () { return MobileUpdateXl_1.default; } });
|
|
125
|
+
var MobileStepsXl_1 = require("./MobileStepsXl");
|
|
126
|
+
Object.defineProperty(exports, "MobileStepsXl", { enumerable: true, get: function () { return MobileStepsXl_1.default; } });
|
|
127
127
|
var MultivalueXl_1 = require("./MultivalueXl");
|
|
128
128
|
Object.defineProperty(exports, "MultivalueXl", { enumerable: true, get: function () { return MultivalueXl_1.default; } });
|
|
129
129
|
var NetworkFileXl_1 = require("./NetworkFileXl");
|
|
@@ -160,25 +160,25 @@ var ShowXl_1 = require("./ShowXl");
|
|
|
160
160
|
Object.defineProperty(exports, "ShowXl", { enumerable: true, get: function () { return ShowXl_1.default; } });
|
|
161
161
|
var SilentPushXl_1 = require("./SilentPushXl");
|
|
162
162
|
Object.defineProperty(exports, "SilentPushXl", { enumerable: true, get: function () { return SilentPushXl_1.default; } });
|
|
163
|
-
var SmsXl_1 = require("./SmsXl");
|
|
164
|
-
Object.defineProperty(exports, "SmsXl", { enumerable: true, get: function () { return SmsXl_1.default; } });
|
|
165
163
|
var ToolsXl_1 = require("./ToolsXl");
|
|
166
164
|
Object.defineProperty(exports, "ToolsXl", { enumerable: true, get: function () { return ToolsXl_1.default; } });
|
|
167
165
|
var UserCircleUpXl_1 = require("./UserCircleUpXl");
|
|
168
166
|
Object.defineProperty(exports, "UserCircleUpXl", { enumerable: true, get: function () { return UserCircleUpXl_1.default; } });
|
|
167
|
+
var SmsXl_1 = require("./SmsXl");
|
|
168
|
+
Object.defineProperty(exports, "SmsXl", { enumerable: true, get: function () { return SmsXl_1.default; } });
|
|
169
169
|
var UserCircleXl_1 = require("./UserCircleXl");
|
|
170
170
|
Object.defineProperty(exports, "UserCircleXl", { enumerable: true, get: function () { return UserCircleXl_1.default; } });
|
|
171
|
+
var VisualEditorXl_1 = require("./VisualEditorXl");
|
|
172
|
+
Object.defineProperty(exports, "VisualEditorXl", { enumerable: true, get: function () { return VisualEditorXl_1.default; } });
|
|
171
173
|
var UserIdXl_1 = require("./UserIdXl");
|
|
172
174
|
Object.defineProperty(exports, "UserIdXl", { enumerable: true, get: function () { return UserIdXl_1.default; } });
|
|
173
175
|
var VisualEditorStarXl_1 = require("./VisualEditorStarXl");
|
|
174
176
|
Object.defineProperty(exports, "VisualEditorStarXl", { enumerable: true, get: function () { return VisualEditorStarXl_1.default; } });
|
|
175
|
-
var VisualEditorXl_1 = require("./VisualEditorXl");
|
|
176
|
-
Object.defineProperty(exports, "VisualEditorXl", { enumerable: true, get: function () { return VisualEditorXl_1.default; } });
|
|
177
|
-
var VoucherXl_1 = require("./VoucherXl");
|
|
178
|
-
Object.defineProperty(exports, "VoucherXl", { enumerable: true, get: function () { return VoucherXl_1.default; } });
|
|
179
177
|
var WarningXl_1 = require("./WarningXl");
|
|
180
178
|
Object.defineProperty(exports, "WarningXl", { enumerable: true, get: function () { return WarningXl_1.default; } });
|
|
181
179
|
var WebhookXl_1 = require("./WebhookXl");
|
|
182
180
|
Object.defineProperty(exports, "WebhookXl", { enumerable: true, get: function () { return WebhookXl_1.default; } });
|
|
181
|
+
var VoucherXl_1 = require("./VoucherXl");
|
|
182
|
+
Object.defineProperty(exports, "VoucherXl", { enumerable: true, get: function () { return VoucherXl_1.default; } });
|
|
183
183
|
var WeblayerXl_1 = require("./WeblayerXl");
|
|
184
184
|
Object.defineProperty(exports, "WeblayerXl", { enumerable: true, get: function () { return WeblayerXl_1.default; } });
|
|
@@ -30,11 +30,11 @@ export { default as AdOnExitL } from './AdOnExitL';
|
|
|
30
30
|
export { default as AdOnLandingL } from './AdOnLandingL';
|
|
31
31
|
export { default as AdOnboardingL } from './AdOnboardingL';
|
|
32
32
|
export { default as AdOpenAppL } from './AdOpenAppL';
|
|
33
|
-
export { default as AdOpenUrlL } from './AdOpenUrlL';
|
|
34
33
|
export { default as AdPersonalizedAiL } from './AdPersonalizedAiL';
|
|
34
|
+
export { default as AdOpenUrlL } from './AdOpenUrlL';
|
|
35
35
|
export { default as AdPopL } from './AdPopL';
|
|
36
|
-
export { default as AdPortraitL } from './AdPortraitL';
|
|
37
36
|
export { default as AdPreBuiltSegmentsL } from './AdPreBuiltSegmentsL';
|
|
37
|
+
export { default as AdPortraitL } from './AdPortraitL';
|
|
38
38
|
export { default as AdShareLinkL } from './AdShareLinkL';
|
|
39
39
|
export { default as AdSilentPushL } from './AdSilentPushL';
|
|
40
40
|
export { default as AdSimilarAiL } from './AdSimilarAiL';
|
|
@@ -73,22 +73,22 @@ export { default as ImportCustomEventXl } from './ImportCustomEventXl';
|
|
|
73
73
|
export { default as ImportCustomXl } from './ImportCustomXl';
|
|
74
74
|
export { default as ImportProductFeedXl } from './ImportProductFeedXl';
|
|
75
75
|
export { default as ImportPromotionsXl } from './ImportPromotionsXl';
|
|
76
|
-
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
77
76
|
export { default as ImportTransactionsXl } from './ImportTransactionsXl';
|
|
78
|
-
export { default as
|
|
77
|
+
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
79
78
|
export { default as Integration } from './Integration';
|
|
80
|
-
export { default as
|
|
79
|
+
export { default as ImportVouchersXl } from './ImportVouchersXl';
|
|
81
80
|
export { default as LayoutImageBgL } from './LayoutImageBgL';
|
|
81
|
+
export { default as LastSeenXl } from './LastSeenXl';
|
|
82
82
|
export { default as LayoutImageBgTextL } from './LayoutImageBgTextL';
|
|
83
|
-
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
84
83
|
export { default as LayoutTextL } from './LayoutTextL';
|
|
84
|
+
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
85
85
|
export { default as MarketingAutomation } from './MarketingAutomation';
|
|
86
|
-
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
87
86
|
export { default as MetricSimpleXl } from './MetricSimpleXl';
|
|
87
|
+
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
88
88
|
export { default as MobileHandbillXl } from './MobileHandbillXl';
|
|
89
89
|
export { default as OtherIdeas } from './OtherIdeas';
|
|
90
|
-
export { default as PushImportL } from './PushImportL';
|
|
91
90
|
export { default as ReportPreparedXl } from './ReportPreparedXl';
|
|
91
|
+
export { default as PushImportL } from './PushImportL';
|
|
92
92
|
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
93
93
|
export { default as TopProductsXl } from './TopProductsXl';
|
|
94
94
|
export { default as UnderstandCustomer } from './UnderstandCustomer';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AdVisualEditorL = exports.AdVisualAiL = exports.AdUserSegmentsL = exports.AdTextEditorL = exports.AdTempCodeS = exports.AdSlideUpL = exports.AdSlideRightL = exports.AdSlideLeftL = exports.AdSlideDownL = exports.AdSimplePushL = exports.AdSimilarAiL = exports.AdSilentPushL = exports.AdShareLinkL = exports.
|
|
4
|
-
exports.UnderstandCustomer = exports.TopProductsXl = exports.TargetedCampaigns = exports.
|
|
3
|
+
exports.AdVisualEditorL = exports.AdVisualAiL = exports.AdUserSegmentsL = exports.AdTextEditorL = exports.AdTempCodeS = exports.AdSlideUpL = exports.AdSlideRightL = exports.AdSlideLeftL = exports.AdSlideDownL = exports.AdSimplePushL = exports.AdSimilarAiL = exports.AdSilentPushL = exports.AdShareLinkL = exports.AdPortraitL = exports.AdPreBuiltSegmentsL = exports.AdPopL = exports.AdOpenUrlL = exports.AdPersonalizedAiL = exports.AdOpenAppL = exports.AdOnboardingL = exports.AdOnLandingL = exports.AdOnExitL = exports.AdMandatoryUpgradeL = exports.AdMandatoryUpdateL = exports.AdLandL = exports.AdInsertObjectL = exports.AdImportZip = exports.AdImportUrl = exports.AdImgTextL = exports.AdImageL = exports.AdFullScreenBannerL = exports.AdFolderUser = exports.AdFolderStarredS = exports.AdFolderS = exports.AdFolderFeatured = exports.AdFolderBasic = exports.AdFirstRunL = exports.AdFadeInL = exports.AdDeeplinkingL = exports.AdCouponL = exports.AdComplementaryAiL = exports.AdCodeEditorL = exports.AdCartAiL = exports.AdBannerL = exports.AdAfterXpagesL = exports.AdAfterScrollL = exports.ActionUrlL = exports.ActionOpenAppL = exports.ActionNoneL = exports.ActionDeeplinkL = void 0;
|
|
4
|
+
exports.UnderstandCustomer = exports.TopProductsXl = exports.TargetedCampaigns = exports.PushImportL = exports.ReportPreparedXl = exports.OtherIdeas = exports.MobileHandbillXl = exports.MetricFormulaXl = exports.MetricSimpleXl = exports.MarketingAutomation = exports.LayoutMixedL = exports.LayoutTextL = exports.LayoutImageBgTextL = exports.LastSeenXl = exports.LayoutImageBgL = exports.ImportVouchersXl = exports.Integration = exports.ImportQuickXl = exports.ImportTransactionsXl = exports.ImportPromotionsXl = exports.ImportProductFeedXl = exports.ImportCustomXl = exports.ImportCustomEventXl = exports.ImportClientsXl = exports.ImportCatalogsXl = exports.FileImportL = exports.DateRecurringXl = exports.DateOntimeXl = exports.DateMultipleXl = exports.ChartTableL = exports.ChartPieL = exports.ChartLineL = exports.ChartDonutLineL = exports.ChartDonutL = exports.ChartComboL = exports.ChartColumnL = exports.CartRecommendationXl = exports.BoostLoyalty = exports.AudienceAnalytics = exports.AiCampaigns = exports.AdWelcomeScreenL = exports.AdWebLayerL = exports.AdWalktroughL = exports.AdVisualEditorNewL = void 0;
|
|
5
5
|
var ActionDeeplinkL_1 = require("./ActionDeeplinkL");
|
|
6
6
|
Object.defineProperty(exports, "ActionDeeplinkL", { enumerable: true, get: function () { return ActionDeeplinkL_1.default; } });
|
|
7
7
|
var ActionNoneL_1 = require("./ActionNoneL");
|
|
@@ -66,16 +66,16 @@ var AdOnboardingL_1 = require("./AdOnboardingL");
|
|
|
66
66
|
Object.defineProperty(exports, "AdOnboardingL", { enumerable: true, get: function () { return AdOnboardingL_1.default; } });
|
|
67
67
|
var AdOpenAppL_1 = require("./AdOpenAppL");
|
|
68
68
|
Object.defineProperty(exports, "AdOpenAppL", { enumerable: true, get: function () { return AdOpenAppL_1.default; } });
|
|
69
|
-
var AdOpenUrlL_1 = require("./AdOpenUrlL");
|
|
70
|
-
Object.defineProperty(exports, "AdOpenUrlL", { enumerable: true, get: function () { return AdOpenUrlL_1.default; } });
|
|
71
69
|
var AdPersonalizedAiL_1 = require("./AdPersonalizedAiL");
|
|
72
70
|
Object.defineProperty(exports, "AdPersonalizedAiL", { enumerable: true, get: function () { return AdPersonalizedAiL_1.default; } });
|
|
71
|
+
var AdOpenUrlL_1 = require("./AdOpenUrlL");
|
|
72
|
+
Object.defineProperty(exports, "AdOpenUrlL", { enumerable: true, get: function () { return AdOpenUrlL_1.default; } });
|
|
73
73
|
var AdPopL_1 = require("./AdPopL");
|
|
74
74
|
Object.defineProperty(exports, "AdPopL", { enumerable: true, get: function () { return AdPopL_1.default; } });
|
|
75
|
-
var AdPortraitL_1 = require("./AdPortraitL");
|
|
76
|
-
Object.defineProperty(exports, "AdPortraitL", { enumerable: true, get: function () { return AdPortraitL_1.default; } });
|
|
77
75
|
var AdPreBuiltSegmentsL_1 = require("./AdPreBuiltSegmentsL");
|
|
78
76
|
Object.defineProperty(exports, "AdPreBuiltSegmentsL", { enumerable: true, get: function () { return AdPreBuiltSegmentsL_1.default; } });
|
|
77
|
+
var AdPortraitL_1 = require("./AdPortraitL");
|
|
78
|
+
Object.defineProperty(exports, "AdPortraitL", { enumerable: true, get: function () { return AdPortraitL_1.default; } });
|
|
79
79
|
var AdShareLinkL_1 = require("./AdShareLinkL");
|
|
80
80
|
Object.defineProperty(exports, "AdShareLinkL", { enumerable: true, get: function () { return AdShareLinkL_1.default; } });
|
|
81
81
|
var AdSilentPushL_1 = require("./AdSilentPushL");
|
|
@@ -152,38 +152,38 @@ var ImportProductFeedXl_1 = require("./ImportProductFeedXl");
|
|
|
152
152
|
Object.defineProperty(exports, "ImportProductFeedXl", { enumerable: true, get: function () { return ImportProductFeedXl_1.default; } });
|
|
153
153
|
var ImportPromotionsXl_1 = require("./ImportPromotionsXl");
|
|
154
154
|
Object.defineProperty(exports, "ImportPromotionsXl", { enumerable: true, get: function () { return ImportPromotionsXl_1.default; } });
|
|
155
|
-
var ImportQuickXl_1 = require("./ImportQuickXl");
|
|
156
|
-
Object.defineProperty(exports, "ImportQuickXl", { enumerable: true, get: function () { return ImportQuickXl_1.default; } });
|
|
157
155
|
var ImportTransactionsXl_1 = require("./ImportTransactionsXl");
|
|
158
156
|
Object.defineProperty(exports, "ImportTransactionsXl", { enumerable: true, get: function () { return ImportTransactionsXl_1.default; } });
|
|
159
|
-
var
|
|
160
|
-
Object.defineProperty(exports, "
|
|
157
|
+
var ImportQuickXl_1 = require("./ImportQuickXl");
|
|
158
|
+
Object.defineProperty(exports, "ImportQuickXl", { enumerable: true, get: function () { return ImportQuickXl_1.default; } });
|
|
161
159
|
var Integration_1 = require("./Integration");
|
|
162
160
|
Object.defineProperty(exports, "Integration", { enumerable: true, get: function () { return Integration_1.default; } });
|
|
163
|
-
var
|
|
164
|
-
Object.defineProperty(exports, "
|
|
161
|
+
var ImportVouchersXl_1 = require("./ImportVouchersXl");
|
|
162
|
+
Object.defineProperty(exports, "ImportVouchersXl", { enumerable: true, get: function () { return ImportVouchersXl_1.default; } });
|
|
165
163
|
var LayoutImageBgL_1 = require("./LayoutImageBgL");
|
|
166
164
|
Object.defineProperty(exports, "LayoutImageBgL", { enumerable: true, get: function () { return LayoutImageBgL_1.default; } });
|
|
165
|
+
var LastSeenXl_1 = require("./LastSeenXl");
|
|
166
|
+
Object.defineProperty(exports, "LastSeenXl", { enumerable: true, get: function () { return LastSeenXl_1.default; } });
|
|
167
167
|
var LayoutImageBgTextL_1 = require("./LayoutImageBgTextL");
|
|
168
168
|
Object.defineProperty(exports, "LayoutImageBgTextL", { enumerable: true, get: function () { return LayoutImageBgTextL_1.default; } });
|
|
169
|
-
var LayoutMixedL_1 = require("./LayoutMixedL");
|
|
170
|
-
Object.defineProperty(exports, "LayoutMixedL", { enumerable: true, get: function () { return LayoutMixedL_1.default; } });
|
|
171
169
|
var LayoutTextL_1 = require("./LayoutTextL");
|
|
172
170
|
Object.defineProperty(exports, "LayoutTextL", { enumerable: true, get: function () { return LayoutTextL_1.default; } });
|
|
171
|
+
var LayoutMixedL_1 = require("./LayoutMixedL");
|
|
172
|
+
Object.defineProperty(exports, "LayoutMixedL", { enumerable: true, get: function () { return LayoutMixedL_1.default; } });
|
|
173
173
|
var MarketingAutomation_1 = require("./MarketingAutomation");
|
|
174
174
|
Object.defineProperty(exports, "MarketingAutomation", { enumerable: true, get: function () { return MarketingAutomation_1.default; } });
|
|
175
|
-
var MetricFormulaXl_1 = require("./MetricFormulaXl");
|
|
176
|
-
Object.defineProperty(exports, "MetricFormulaXl", { enumerable: true, get: function () { return MetricFormulaXl_1.default; } });
|
|
177
175
|
var MetricSimpleXl_1 = require("./MetricSimpleXl");
|
|
178
176
|
Object.defineProperty(exports, "MetricSimpleXl", { enumerable: true, get: function () { return MetricSimpleXl_1.default; } });
|
|
177
|
+
var MetricFormulaXl_1 = require("./MetricFormulaXl");
|
|
178
|
+
Object.defineProperty(exports, "MetricFormulaXl", { enumerable: true, get: function () { return MetricFormulaXl_1.default; } });
|
|
179
179
|
var MobileHandbillXl_1 = require("./MobileHandbillXl");
|
|
180
180
|
Object.defineProperty(exports, "MobileHandbillXl", { enumerable: true, get: function () { return MobileHandbillXl_1.default; } });
|
|
181
181
|
var OtherIdeas_1 = require("./OtherIdeas");
|
|
182
182
|
Object.defineProperty(exports, "OtherIdeas", { enumerable: true, get: function () { return OtherIdeas_1.default; } });
|
|
183
|
-
var PushImportL_1 = require("./PushImportL");
|
|
184
|
-
Object.defineProperty(exports, "PushImportL", { enumerable: true, get: function () { return PushImportL_1.default; } });
|
|
185
183
|
var ReportPreparedXl_1 = require("./ReportPreparedXl");
|
|
186
184
|
Object.defineProperty(exports, "ReportPreparedXl", { enumerable: true, get: function () { return ReportPreparedXl_1.default; } });
|
|
185
|
+
var PushImportL_1 = require("./PushImportL");
|
|
186
|
+
Object.defineProperty(exports, "PushImportL", { enumerable: true, get: function () { return PushImportL_1.default; } });
|
|
187
187
|
var TargetedCampaigns_1 = require("./TargetedCampaigns");
|
|
188
188
|
Object.defineProperty(exports, "TargetedCampaigns", { enumerable: true, get: function () { return TargetedCampaigns_1.default; } });
|
|
189
189
|
var TopProductsXl_1 = require("./TopProductsXl");
|