@synerise/ds-icon 0.47.0 → 0.48.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 +30 -0
- package/dist/cjs/icons/L/ShowL.d.ts +3 -0
- package/dist/cjs/icons/L/ShowL.js +8 -0
- package/dist/cjs/icons/L/index.d.ts +30 -29
- package/dist/cjs/icons/L/index.js +60 -58
- package/dist/cjs/icons/XL/LaunchXl.d.ts +3 -0
- package/dist/cjs/icons/XL/LaunchXl.js +6 -0
- package/dist/cjs/icons/XL/index.d.ts +36 -35
- package/dist/cjs/icons/XL/index.js +72 -70
- package/dist/cjs/icons/additional/index.d.ts +42 -42
- package/dist/cjs/icons/additional/index.js +84 -84
- package/dist/cjs/icons/index.d.ts +370 -370
- package/dist/cjs/icons/index.js +744 -744
- package/dist/esm/icons/L/ShowL.d.ts +3 -0
- package/dist/esm/icons/L/ShowL.js +6 -0
- package/dist/esm/icons/L/index.d.ts +30 -29
- package/dist/esm/icons/L/index.js +30 -29
- package/dist/esm/icons/XL/LaunchXl.d.ts +3 -0
- package/dist/esm/icons/XL/LaunchXl.js +4 -0
- package/dist/esm/icons/XL/index.d.ts +36 -35
- package/dist/esm/icons/XL/index.js +36 -35
- package/dist/esm/icons/additional/index.d.ts +42 -42
- package/dist/esm/icons/additional/index.js +42 -42
- package/dist/esm/icons/index.d.ts +370 -370
- package/dist/esm/icons/index.js +370 -370
- package/package.json +3 -3
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ShowL = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 48 48", className: "show-l" }, props),
|
|
3
|
+
React.createElement("g", { fill: "#384350", fillRule: "nonzero" },
|
|
4
|
+
React.createElement("path", { d: "M24.124 11.993h-.021a18.424 18.424 0 00-7.606 1.762 28.8 28.8 0 00-6.027 3.77 35.788 35.788 0 00-5.5 5.435 1.253 1.253 0 00-.007 1.558 35.832 35.832 0 005.514 5.45 28.79 28.79 0 006.024 3.766 18.419 18.419 0 007.602 1.76 18.443 18.443 0 007.627-1.762 28.801 28.801 0 006.027-3.77 35.789 35.789 0 005.5-5.436 1.253 1.253 0 00.006-1.557 35.832 35.832 0 00-5.513-5.45 28.79 28.79 0 00-6.025-3.766 18.418 18.418 0 00-7.601-1.76zm-.483 1.514l.471-.014h-.01c2.418.034 4.8.586 6.987 1.619a27.32 27.32 0 015.721 3.577l.58.47a34.327 34.327 0 014.227 4.176l.339.408.13-.154a34.291 34.291 0 01-5.269 5.204 27.33 27.33 0 01-5.724 3.58 16.93 16.93 0 01-6.99 1.62 16.905 16.905 0 01-6.966-1.618 27.32 27.32 0 01-5.72-3.577l-.58-.47A34.328 34.328 0 016.61 24.15l-.34-.408-.128.155a34.291 34.291 0 015.269-5.204 27.33 27.33 0 015.723-3.58 16.93 16.93 0 016.508-1.607z" }),
|
|
5
|
+
React.createElement("path", { d: "M24.113 18.12a5.623 5.623 0 100 11.246 5.623 5.623 0 000-11.245zm0 1.5a4.123 4.123 0 110 8.246 4.123 4.123 0 010-8.245z" }))));
|
|
6
|
+
export default ShowL;
|
|
@@ -1,61 +1,62 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AddL } from './AddL';
|
|
2
|
+
export { default as ButtonL } from './ButtonL';
|
|
2
3
|
export { default as CheckL } from './CheckL';
|
|
4
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
3
5
|
export { default as CheckboxL } from './CheckboxL';
|
|
4
|
-
export { default as CloseL } from './CloseL';
|
|
5
|
-
export { default as ComboL } from './ComboL';
|
|
6
6
|
export { default as ColumnL } from './ColumnL';
|
|
7
|
-
export { default as CountdownL } from './CountdownL';
|
|
8
|
-
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
9
7
|
export { default as DividerL } from './DividerL';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as FormEditL } from './FormEditL';
|
|
8
|
+
export { default as ComboL } from './ComboL';
|
|
9
|
+
export { default as CountdownL } from './CountdownL';
|
|
13
10
|
export { default as FormGroupL } from './FormGroupL';
|
|
11
|
+
export { default as FormEditL } from './FormEditL';
|
|
12
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
13
|
+
export { default as HashL } from './HashL';
|
|
14
|
+
export { default as CloseL } from './CloseL';
|
|
14
15
|
export { default as ImageL } from './ImageL';
|
|
15
|
-
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
16
|
-
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
17
16
|
export { default as FormL } from './FormL';
|
|
18
|
-
export { default as
|
|
17
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
19
18
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
19
|
+
export { default as InfoL } from './InfoL';
|
|
20
20
|
export { default as InputL } from './InputL';
|
|
21
21
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
22
|
-
export { default as
|
|
22
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
23
|
+
export { default as LabelL } from './LabelL';
|
|
24
|
+
export { default as LinkL } from './LinkL';
|
|
23
25
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
24
26
|
export { default as LineL } from './LineL';
|
|
25
|
-
export { default as LabelL } from './LabelL';
|
|
26
27
|
export { default as MobileClickL } from './MobileClickL';
|
|
27
28
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as LocationL } from './LocationL';
|
|
29
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
30
30
|
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
31
|
+
export { default as LocationL } from './LocationL';
|
|
32
|
+
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
31
33
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
32
34
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
33
|
-
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
34
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
35
35
|
export { default as MultilineL } from './MultilineL';
|
|
36
|
-
export { default as
|
|
36
|
+
export { default as NoData } from './NoData';
|
|
37
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
38
|
+
export { default as QuoteL } from './QuoteL';
|
|
39
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
37
40
|
export { default as NavbarL } from './NavbarL';
|
|
38
41
|
export { default as PieL } from './PieL';
|
|
39
|
-
export { default as QuoteL } from './QuoteL';
|
|
40
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
41
42
|
export { default as RadioL } from './RadioL';
|
|
43
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
42
44
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
45
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
46
|
+
export { default as Section12L } from './Section12L';
|
|
43
47
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
44
48
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
49
|
+
export { default as Section13L } from './Section13L';
|
|
50
|
+
export { default as Section37L } from './Section37L';
|
|
47
51
|
export { default as SectionL } from './SectionL';
|
|
48
52
|
export { default as SelectL } from './SelectL';
|
|
49
53
|
export { default as SliderL } from './SliderL';
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as SpinnerL } from './SpinnerL';
|
|
54
|
+
export { default as ShowL } from './ShowL';
|
|
52
55
|
export { default as StackedL } from './StackedL';
|
|
53
56
|
export { default as TableL } from './TableL';
|
|
54
|
-
export { default as
|
|
57
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
55
58
|
export { default as TextareaL } from './TextareaL';
|
|
59
|
+
export { default as TextL } from './TextL';
|
|
60
|
+
export { default as WarningL } from './WarningL';
|
|
56
61
|
export { default as TooltipL } from './TooltipL';
|
|
57
62
|
export { default as VideoL } from './VideoL';
|
|
58
|
-
export { default as WarningL } from './WarningL';
|
|
59
|
-
export { default as Section37L } from './Section37L';
|
|
60
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
61
|
-
export { default as Section12L } from './Section12L';
|
|
@@ -1,61 +1,62 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AddL } from './AddL';
|
|
2
|
+
export { default as ButtonL } from './ButtonL';
|
|
2
3
|
export { default as CheckL } from './CheckL';
|
|
4
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
3
5
|
export { default as CheckboxL } from './CheckboxL';
|
|
4
|
-
export { default as CloseL } from './CloseL';
|
|
5
|
-
export { default as ComboL } from './ComboL';
|
|
6
6
|
export { default as ColumnL } from './ColumnL';
|
|
7
|
-
export { default as CountdownL } from './CountdownL';
|
|
8
|
-
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
9
7
|
export { default as DividerL } from './DividerL';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as FormEditL } from './FormEditL';
|
|
8
|
+
export { default as ComboL } from './ComboL';
|
|
9
|
+
export { default as CountdownL } from './CountdownL';
|
|
13
10
|
export { default as FormGroupL } from './FormGroupL';
|
|
11
|
+
export { default as FormEditL } from './FormEditL';
|
|
12
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
13
|
+
export { default as HashL } from './HashL';
|
|
14
|
+
export { default as CloseL } from './CloseL';
|
|
14
15
|
export { default as ImageL } from './ImageL';
|
|
15
|
-
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
16
|
-
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
17
16
|
export { default as FormL } from './FormL';
|
|
18
|
-
export { default as
|
|
17
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
19
18
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
19
|
+
export { default as InfoL } from './InfoL';
|
|
20
20
|
export { default as InputL } from './InputL';
|
|
21
21
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
22
|
-
export { default as
|
|
22
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
23
|
+
export { default as LabelL } from './LabelL';
|
|
24
|
+
export { default as LinkL } from './LinkL';
|
|
23
25
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
24
26
|
export { default as LineL } from './LineL';
|
|
25
|
-
export { default as LabelL } from './LabelL';
|
|
26
27
|
export { default as MobileClickL } from './MobileClickL';
|
|
27
28
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as LocationL } from './LocationL';
|
|
29
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
30
30
|
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
31
|
+
export { default as LocationL } from './LocationL';
|
|
32
|
+
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
31
33
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
32
34
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
33
|
-
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
34
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
35
35
|
export { default as MultilineL } from './MultilineL';
|
|
36
|
-
export { default as
|
|
36
|
+
export { default as NoData } from './NoData';
|
|
37
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
38
|
+
export { default as QuoteL } from './QuoteL';
|
|
39
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
37
40
|
export { default as NavbarL } from './NavbarL';
|
|
38
41
|
export { default as PieL } from './PieL';
|
|
39
|
-
export { default as QuoteL } from './QuoteL';
|
|
40
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
41
42
|
export { default as RadioL } from './RadioL';
|
|
43
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
42
44
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
45
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
46
|
+
export { default as Section12L } from './Section12L';
|
|
43
47
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
44
48
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
49
|
+
export { default as Section13L } from './Section13L';
|
|
50
|
+
export { default as Section37L } from './Section37L';
|
|
47
51
|
export { default as SectionL } from './SectionL';
|
|
48
52
|
export { default as SelectL } from './SelectL';
|
|
49
53
|
export { default as SliderL } from './SliderL';
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as SpinnerL } from './SpinnerL';
|
|
54
|
+
export { default as ShowL } from './ShowL';
|
|
52
55
|
export { default as StackedL } from './StackedL';
|
|
53
56
|
export { default as TableL } from './TableL';
|
|
54
|
-
export { default as
|
|
57
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
55
58
|
export { default as TextareaL } from './TextareaL';
|
|
59
|
+
export { default as TextL } from './TextL';
|
|
60
|
+
export { default as WarningL } from './WarningL';
|
|
56
61
|
export { default as TooltipL } from './TooltipL';
|
|
57
62
|
export { default as VideoL } from './VideoL';
|
|
58
|
-
export { default as WarningL } from './WarningL';
|
|
59
|
-
export { default as Section37L } from './Section37L';
|
|
60
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
61
|
-
export { default as Section12L } from './Section12L';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const LaunchXl = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 96 96", className: "launch-xl" }, props),
|
|
3
|
+
React.createElement("path", { d: "M73.01 17.01a4.94 4.94 0 013.809 1.445 4.94 4.94 0 011.446 3.809c-.602 9.232-4.398 18.122-10.696 25.06a.745.745 0 01-.164.248l-3.934 3.934c2.294 5.27 1.145 11.463-2.942 15.55L49.67 77.914a.75.75 0 01-1.232-.264l-4.854-12.776a11.094 11.094 0 01-6.16-3.126l-1.42-1.42-2.347 2.349a.748.748 0 01-1.061 0 .749.749 0 010-1.06l2.349-2.35-1.42-1.418a11.083 11.083 0 01-3.157-6.376l-12.885-4.895a.752.752 0 01-.264-1.232l10.859-10.858a14.084 14.084 0 0115.828-2.823l3.795-3.795a.733.733 0 01.248-.165c6.939-6.298 15.828-10.094 25.06-10.695zM25.64 62.267c4.063 0 7.367 3.305 7.367 7.366 0 4.062-3.304 7.366-7.366 7.366h-6.617a.75.75 0 01-.75-.75v-6.616c0-4.061 3.305-7.366 7.366-7.366zm36.688-9.618l-9.1 9.099a11.101 11.101 0 01-7.9 3.273l-.084-.004 4.186 11.016 10.039-10.038a12.585 12.585 0 002.859-13.346zM25.64 63.767a5.873 5.873 0 00-5.867 5.866v5.866h5.867a5.872 5.872 0 005.866-5.866 5.872 5.872 0 00-5.866-5.866zm47.675-45.268l-.208.008a39.228 39.228 0 00-10.484 2.163 43.548 43.548 0 016.59 5.39 43.901 43.901 0 012.935 3.245.75.75 0 11-1.161.949 42.024 42.024 0 00-9.975-8.863c-.034-.022-.054-.055-.083-.08a40.27 40.27 0 00-12.158 7.674.741.741 0 01-.194.13l-13.991 13.99a9.611 9.611 0 00-2.834 6.842 9.617 9.617 0 002.834 6.842l1.419 1.419 13.262-13.262a.75.75 0 011.06 1.06L37.068 59.268l1.418 1.419a9.613 9.613 0 006.843 2.834 9.609 9.609 0 006.84-2.834l14-14a.676.676 0 01.12-.185c6.173-6.715 9.895-15.358 10.48-24.335a3.441 3.441 0 00-1.01-2.651 3.434 3.434 0 00-2.65-1.01zM42.765 32.807a12.583 12.583 0 00-13.626 2.742L19.1 45.587l11.158 4.24c.03-2.94 1.186-5.7 3.268-7.782zm17.95-3.96c1.525 0 2.96.595 4.038 1.674a5.672 5.672 0 011.672 4.037 5.676 5.676 0 01-1.672 4.038 5.676 5.676 0 01-4.038 1.672 5.672 5.672 0 01-4.037-1.672 5.673 5.673 0 01-1.673-4.038 5.67 5.67 0 011.673-4.037 5.67 5.67 0 014.037-1.673zm0 1.503a4.2 4.2 0 00-2.977 1.23 4.216 4.216 0 000 5.955 4.215 4.215 0 005.954 0 4.216 4.216 0 000-5.954 4.2 4.2 0 00-2.977-1.231z", fill: "#384350", fillRule: "nonzero" })));
|
|
4
|
+
export default LaunchXl;
|
|
@@ -1,79 +1,80 @@
|
|
|
1
|
-
export { default as AbTestXl } from './AbTestXl';
|
|
2
1
|
export { default as AddXl } from './AddXl';
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
2
|
+
export { default as AbTestXl } from './AbTestXl';
|
|
3
|
+
export { default as AfterEventXl } from './AfterEventXl';
|
|
5
4
|
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
5
|
+
export { default as AttributeXl } from './AttributeXl';
|
|
6
6
|
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
7
7
|
export { default as BillingXl } from './BillingXl';
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as AfterEventXl } from './AfterEventXl';
|
|
8
|
+
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
10
9
|
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
11
|
-
export { default as
|
|
10
|
+
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
11
|
+
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
12
12
|
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
13
|
-
export { default as
|
|
13
|
+
export { default as BulbEditXl } from './BulbEditXl';
|
|
14
14
|
export { default as CalculatorXl } from './CalculatorXl';
|
|
15
|
-
export { default as
|
|
15
|
+
export { default as CardAeXl } from './CardAeXl';
|
|
16
16
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
17
|
-
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
18
17
|
export { default as CardVisaXl } from './CardVisaXl';
|
|
18
|
+
export { default as CheckInXl } from './CheckInXl';
|
|
19
19
|
export { default as CartAddXl } from './CartAddXl';
|
|
20
|
+
export { default as CheckOutXl } from './CheckOutXl';
|
|
20
21
|
export { default as CheckXl } from './CheckXl';
|
|
21
|
-
export { default as CompareXl } from './CompareXl';
|
|
22
22
|
export { default as ClassificationXl } from './ClassificationXl';
|
|
23
|
-
export { default as DiscountXl } from './DiscountXl';
|
|
24
|
-
export { default as CupXl } from './CupXl';
|
|
25
23
|
export { default as CouponXl } from './CouponXl';
|
|
26
|
-
export { default as
|
|
24
|
+
export { default as CompareXl } from './CompareXl';
|
|
25
|
+
export { default as CupXl } from './CupXl';
|
|
26
|
+
export { default as DiscountXl } from './DiscountXl';
|
|
27
27
|
export { default as EventXl } from './EventXl';
|
|
28
|
+
export { default as FileUpXl } from './FileUpXl';
|
|
29
|
+
export { default as FileUrlXl } from './FileUrlXl';
|
|
28
30
|
export { default as FileXl } from './FileXl';
|
|
29
|
-
export { default as FirstRunXl } from './FirstRunXl';
|
|
30
31
|
export { default as FileZipXl } from './FileZipXl';
|
|
32
|
+
export { default as FirstRunXl } from './FirstRunXl';
|
|
31
33
|
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
32
34
|
export { default as FolderStarXl } from './FolderStarXl';
|
|
33
35
|
export { default as FolderUserXl } from './FolderUserXl';
|
|
34
|
-
export { default as
|
|
36
|
+
export { default as FormulaXl } from './FormulaXl';
|
|
35
37
|
export { default as FormXl } from './FormXl';
|
|
36
38
|
export { default as FunctionXl } from './FunctionXl';
|
|
37
|
-
export { default as FileUpXl } from './FileUpXl';
|
|
38
|
-
export { default as FormulaXl } from './FormulaXl';
|
|
39
39
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
40
|
-
export { default as IntegrationXl } from './IntegrationXl';
|
|
41
40
|
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
41
|
+
export { default as IntegrationXl } from './IntegrationXl';
|
|
42
|
+
export { default as InfoXl } from './InfoXl';
|
|
43
|
+
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
42
44
|
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
43
45
|
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
44
|
-
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
45
46
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
46
|
-
export { default as
|
|
47
|
+
export { default as LaunchXl } from './LaunchXl';
|
|
47
48
|
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
48
49
|
export { default as MessageXl } from './MessageXl';
|
|
50
|
+
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
49
51
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
50
|
-
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
51
52
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
52
|
-
export { default as
|
|
53
|
-
export { default as
|
|
53
|
+
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
54
|
+
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
55
|
+
export { default as CalendarXl } from './CalendarXl';
|
|
54
56
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
55
|
-
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
56
57
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
57
58
|
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
58
59
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
59
|
-
export { default as
|
|
60
|
+
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
60
61
|
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
61
62
|
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
63
|
+
export { default as PushXl } from './PushXl';
|
|
62
64
|
export { default as ReggressionXl } from './ReggressionXl';
|
|
63
|
-
export { default as SectionXl } from './SectionXl';
|
|
64
65
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
65
|
-
export { default as
|
|
66
|
-
export { default as ShowXl } from './ShowXl';
|
|
66
|
+
export { default as SectionXl } from './SectionXl';
|
|
67
67
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
68
|
+
export { default as ShowXl } from './ShowXl';
|
|
69
|
+
export { default as ToolsXl } from './ToolsXl';
|
|
70
|
+
export { default as MultivalueXl } from './MultivalueXl';
|
|
68
71
|
export { default as UserCircleXl } from './UserCircleXl';
|
|
69
|
-
export { default as CheckInXl } from './CheckInXl';
|
|
70
|
-
export { default as CardAeXl } from './CardAeXl';
|
|
71
|
-
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
72
|
-
export { default as UserIdXl } from './UserIdXl';
|
|
73
72
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
73
|
+
export { default as UserIdXl } from './UserIdXl';
|
|
74
|
+
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
75
|
+
export { default as WebhookXl } from './WebhookXl';
|
|
74
76
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
75
|
-
export { default as ToolsXl } from './ToolsXl';
|
|
76
|
-
export { default as WarningXl } from './WarningXl';
|
|
77
77
|
export { default as VoucherXl } from './VoucherXl';
|
|
78
|
-
export { default as WebhookXl } from './WebhookXl';
|
|
79
78
|
export { default as WeblayerXl } from './WeblayerXl';
|
|
79
|
+
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
80
|
+
export { default as WarningXl } from './WarningXl';
|
|
@@ -1,79 +1,80 @@
|
|
|
1
|
-
export { default as AbTestXl } from './AbTestXl';
|
|
2
1
|
export { default as AddXl } from './AddXl';
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
2
|
+
export { default as AbTestXl } from './AbTestXl';
|
|
3
|
+
export { default as AfterEventXl } from './AfterEventXl';
|
|
5
4
|
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
5
|
+
export { default as AttributeXl } from './AttributeXl';
|
|
6
6
|
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
7
7
|
export { default as BillingXl } from './BillingXl';
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as AfterEventXl } from './AfterEventXl';
|
|
8
|
+
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
10
9
|
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
11
|
-
export { default as
|
|
10
|
+
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
11
|
+
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
12
12
|
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
13
|
-
export { default as
|
|
13
|
+
export { default as BulbEditXl } from './BulbEditXl';
|
|
14
14
|
export { default as CalculatorXl } from './CalculatorXl';
|
|
15
|
-
export { default as
|
|
15
|
+
export { default as CardAeXl } from './CardAeXl';
|
|
16
16
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
17
|
-
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
18
17
|
export { default as CardVisaXl } from './CardVisaXl';
|
|
18
|
+
export { default as CheckInXl } from './CheckInXl';
|
|
19
19
|
export { default as CartAddXl } from './CartAddXl';
|
|
20
|
+
export { default as CheckOutXl } from './CheckOutXl';
|
|
20
21
|
export { default as CheckXl } from './CheckXl';
|
|
21
|
-
export { default as CompareXl } from './CompareXl';
|
|
22
22
|
export { default as ClassificationXl } from './ClassificationXl';
|
|
23
|
-
export { default as DiscountXl } from './DiscountXl';
|
|
24
|
-
export { default as CupXl } from './CupXl';
|
|
25
23
|
export { default as CouponXl } from './CouponXl';
|
|
26
|
-
export { default as
|
|
24
|
+
export { default as CompareXl } from './CompareXl';
|
|
25
|
+
export { default as CupXl } from './CupXl';
|
|
26
|
+
export { default as DiscountXl } from './DiscountXl';
|
|
27
27
|
export { default as EventXl } from './EventXl';
|
|
28
|
+
export { default as FileUpXl } from './FileUpXl';
|
|
29
|
+
export { default as FileUrlXl } from './FileUrlXl';
|
|
28
30
|
export { default as FileXl } from './FileXl';
|
|
29
|
-
export { default as FirstRunXl } from './FirstRunXl';
|
|
30
31
|
export { default as FileZipXl } from './FileZipXl';
|
|
32
|
+
export { default as FirstRunXl } from './FirstRunXl';
|
|
31
33
|
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
32
34
|
export { default as FolderStarXl } from './FolderStarXl';
|
|
33
35
|
export { default as FolderUserXl } from './FolderUserXl';
|
|
34
|
-
export { default as
|
|
36
|
+
export { default as FormulaXl } from './FormulaXl';
|
|
35
37
|
export { default as FormXl } from './FormXl';
|
|
36
38
|
export { default as FunctionXl } from './FunctionXl';
|
|
37
|
-
export { default as FileUpXl } from './FileUpXl';
|
|
38
|
-
export { default as FormulaXl } from './FormulaXl';
|
|
39
39
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
40
|
-
export { default as IntegrationXl } from './IntegrationXl';
|
|
41
40
|
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
41
|
+
export { default as IntegrationXl } from './IntegrationXl';
|
|
42
|
+
export { default as InfoXl } from './InfoXl';
|
|
43
|
+
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
42
44
|
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
43
45
|
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
44
|
-
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
45
46
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
46
|
-
export { default as
|
|
47
|
+
export { default as LaunchXl } from './LaunchXl';
|
|
47
48
|
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
48
49
|
export { default as MessageXl } from './MessageXl';
|
|
50
|
+
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
49
51
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
50
|
-
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
51
52
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
52
|
-
export { default as
|
|
53
|
-
export { default as
|
|
53
|
+
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
54
|
+
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
55
|
+
export { default as CalendarXl } from './CalendarXl';
|
|
54
56
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
55
|
-
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
56
57
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
57
58
|
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
58
59
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
59
|
-
export { default as
|
|
60
|
+
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
60
61
|
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
61
62
|
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
63
|
+
export { default as PushXl } from './PushXl';
|
|
62
64
|
export { default as ReggressionXl } from './ReggressionXl';
|
|
63
|
-
export { default as SectionXl } from './SectionXl';
|
|
64
65
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
65
|
-
export { default as
|
|
66
|
-
export { default as ShowXl } from './ShowXl';
|
|
66
|
+
export { default as SectionXl } from './SectionXl';
|
|
67
67
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
68
|
+
export { default as ShowXl } from './ShowXl';
|
|
69
|
+
export { default as ToolsXl } from './ToolsXl';
|
|
70
|
+
export { default as MultivalueXl } from './MultivalueXl';
|
|
68
71
|
export { default as UserCircleXl } from './UserCircleXl';
|
|
69
|
-
export { default as CheckInXl } from './CheckInXl';
|
|
70
|
-
export { default as CardAeXl } from './CardAeXl';
|
|
71
|
-
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
72
|
-
export { default as UserIdXl } from './UserIdXl';
|
|
73
72
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
73
|
+
export { default as UserIdXl } from './UserIdXl';
|
|
74
|
+
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
75
|
+
export { default as WebhookXl } from './WebhookXl';
|
|
74
76
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
75
|
-
export { default as ToolsXl } from './ToolsXl';
|
|
76
|
-
export { default as WarningXl } from './WarningXl';
|
|
77
77
|
export { default as VoucherXl } from './VoucherXl';
|
|
78
|
-
export { default as WebhookXl } from './WebhookXl';
|
|
79
78
|
export { default as WeblayerXl } from './WeblayerXl';
|
|
79
|
+
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
80
|
+
export { default as WarningXl } from './WarningXl';
|
|
@@ -1,91 +1,91 @@
|
|
|
1
1
|
export { default as ActionDeeplinkL } from './ActionDeeplinkL';
|
|
2
2
|
export { default as ActionUrlL } from './ActionUrlL';
|
|
3
|
-
export { default as ActionOpenAppL } from './ActionOpenAppL';
|
|
4
|
-
export { default as ActionNoneL } from './ActionNoneL';
|
|
5
|
-
export { default as AdAfterXpagesL } from './AdAfterXpagesL';
|
|
6
|
-
export { default as AdCartAiL } from './AdCartAiL';
|
|
7
3
|
export { default as AdAfterScrollL } from './AdAfterScrollL';
|
|
4
|
+
export { default as AdAfterXpagesL } from './AdAfterXpagesL';
|
|
5
|
+
export { default as ActionNoneL } from './ActionNoneL';
|
|
6
|
+
export { default as ActionOpenAppL } from './ActionOpenAppL';
|
|
8
7
|
export { default as AdBannerL } from './AdBannerL';
|
|
9
8
|
export { default as AdCodeEditorL } from './AdCodeEditorL';
|
|
10
9
|
export { default as AdComplementaryAiL } from './AdComplementaryAiL';
|
|
11
|
-
export { default as AdFirstRunL } from './AdFirstRunL';
|
|
12
|
-
export { default as AdFadeInL } from './AdFadeInL';
|
|
13
|
-
export { default as AdFolderBasic } from './AdFolderBasic';
|
|
14
10
|
export { default as AdCouponL } from './AdCouponL';
|
|
11
|
+
export { default as AdCartAiL } from './AdCartAiL';
|
|
15
12
|
export { default as AdDeeplinkingL } from './AdDeeplinkingL';
|
|
13
|
+
export { default as AdFolderBasic } from './AdFolderBasic';
|
|
14
|
+
export { default as AdFirstRunL } from './AdFirstRunL';
|
|
16
15
|
export { default as AdFolderFeatured } from './AdFolderFeatured';
|
|
17
|
-
export { default as AdImgTextL } from './AdImgTextL';
|
|
18
16
|
export { default as AdFullScreenBannerL } from './AdFullScreenBannerL';
|
|
17
|
+
export { default as AdFolderUser } from './AdFolderUser';
|
|
19
18
|
export { default as AdImageL } from './AdImageL';
|
|
19
|
+
export { default as AdImgTextL } from './AdImgTextL';
|
|
20
20
|
export { default as AdImportUrl } from './AdImportUrl';
|
|
21
|
-
export { default as AdLandL } from './AdLandL';
|
|
22
21
|
export { default as AdImportZip } from './AdImportZip';
|
|
23
22
|
export { default as AdInsertObjectL } from './AdInsertObjectL';
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as AdFolderUser } from './AdFolderUser';
|
|
26
|
-
export { default as AdOnLandingL } from './AdOnLandingL';
|
|
27
|
-
export { default as AdOnboardingL } from './AdOnboardingL';
|
|
28
|
-
export { default as AdOnExitL } from './AdOnExitL';
|
|
23
|
+
export { default as AdLandL } from './AdLandL';
|
|
29
24
|
export { default as AdMandatoryUpgradeL } from './AdMandatoryUpgradeL';
|
|
30
|
-
export { default as
|
|
25
|
+
export { default as AdFadeInL } from './AdFadeInL';
|
|
26
|
+
export { default as AdOnExitL } from './AdOnExitL';
|
|
27
|
+
export { default as AdOnboardingL } from './AdOnboardingL';
|
|
28
|
+
export { default as AdOnLandingL } from './AdOnLandingL';
|
|
31
29
|
export { default as AdOpenAppL } from './AdOpenAppL';
|
|
30
|
+
export { default as AdPersonalizedAiL } from './AdPersonalizedAiL';
|
|
32
31
|
export { default as AdOpenUrlL } from './AdOpenUrlL';
|
|
33
|
-
export { default as AdPreBuiltSegmentsL } from './AdPreBuiltSegmentsL';
|
|
34
32
|
export { default as AdPopL } from './AdPopL';
|
|
35
|
-
export { default as AdShareLinkL } from './AdShareLinkL';
|
|
36
33
|
export { default as AdPortraitL } from './AdPortraitL';
|
|
37
|
-
export { default as
|
|
34
|
+
export { default as AdShareLinkL } from './AdShareLinkL';
|
|
35
|
+
export { default as AdPreBuiltSegmentsL } from './AdPreBuiltSegmentsL';
|
|
38
36
|
export { default as AdSilentPushL } from './AdSilentPushL';
|
|
37
|
+
export { default as AdSimilarAiL } from './AdSimilarAiL';
|
|
38
|
+
export { default as AdMandatoryUpdateL } from './AdMandatoryUpdateL';
|
|
39
|
+
export { default as AdSlideDownL } from './AdSlideDownL';
|
|
40
|
+
export { default as AdSimplePushL } from './AdSimplePushL';
|
|
39
41
|
export { default as AdSlideLeftL } from './AdSlideLeftL';
|
|
40
|
-
export { default as AdSlideUpL } from './AdSlideUpL';
|
|
41
42
|
export { default as AdSlideRightL } from './AdSlideRightL';
|
|
42
|
-
export { default as AdUserSegmentsL } from './AdUserSegmentsL';
|
|
43
43
|
export { default as AdVisualAiL } from './AdVisualAiL';
|
|
44
44
|
export { default as AdTextEditorL } from './AdTextEditorL';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as AdSimilarAiL } from './AdSimilarAiL';
|
|
47
|
-
export { default as AdSlideDownL } from './AdSlideDownL';
|
|
45
|
+
export { default as AdSlideUpL } from './AdSlideUpL';
|
|
48
46
|
export { default as AdVisualEditorNewL } from './AdVisualEditorNewL';
|
|
47
|
+
export { default as AdVisualEditorL } from './AdVisualEditorL';
|
|
48
|
+
export { default as AdWalktroughL } from './AdWalktroughL';
|
|
49
|
+
export { default as AdWebLayerL } from './AdWebLayerL';
|
|
49
50
|
export { default as AiCampaigns } from './AiCampaigns';
|
|
51
|
+
export { default as AdWelcomeScreenL } from './AdWelcomeScreenL';
|
|
50
52
|
export { default as AudienceAnalytics } from './AudienceAnalytics';
|
|
51
53
|
export { default as BoostLoyalty } from './BoostLoyalty';
|
|
52
54
|
export { default as CartRecommendationXl } from './CartRecommendationXl';
|
|
53
|
-
export { default as
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as AdWelcomeScreenL } from './AdWelcomeScreenL';
|
|
56
|
-
export { default as AdWalktroughL } from './AdWalktroughL';
|
|
55
|
+
export { default as ChartDonutL } from './ChartDonutL';
|
|
56
|
+
export { default as ChartDonutLineL } from './ChartDonutLineL';
|
|
57
57
|
export { default as ChartComboL } from './ChartComboL';
|
|
58
|
+
export { default as ChartTableL } from './ChartTableL';
|
|
59
|
+
export { default as ChartColumnL } from './ChartColumnL';
|
|
58
60
|
export { default as ChartLineL } from './ChartLineL';
|
|
59
61
|
export { default as ChartPieL } from './ChartPieL';
|
|
60
|
-
export { default as
|
|
62
|
+
export { default as DateRecurringXl } from './DateRecurringXl';
|
|
61
63
|
export { default as DateMultipleXl } from './DateMultipleXl';
|
|
62
64
|
export { default as DateOntimeXl } from './DateOntimeXl';
|
|
63
|
-
export { default as
|
|
65
|
+
export { default as FileImportL } from './FileImportL';
|
|
66
|
+
export { default as ImportCustomEventXl } from './ImportCustomEventXl';
|
|
64
67
|
export { default as ImportCatalogsXl } from './ImportCatalogsXl';
|
|
68
|
+
export { default as AdUserSegmentsL } from './AdUserSegmentsL';
|
|
69
|
+
export { default as ImportCustomXl } from './ImportCustomXl';
|
|
65
70
|
export { default as ImportClientsXl } from './ImportClientsXl';
|
|
66
|
-
export { default as ChartDonutL } from './ChartDonutL';
|
|
67
|
-
export { default as ChartDonutLineL } from './ChartDonutLineL';
|
|
68
|
-
export { default as ImportCustomEventXl } from './ImportCustomEventXl';
|
|
69
71
|
export { default as ImportPromotionsXl } from './ImportPromotionsXl';
|
|
70
|
-
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
71
72
|
export { default as ImportTransactionsXl } from './ImportTransactionsXl';
|
|
73
|
+
export { default as ImportProductFeedXl } from './ImportProductFeedXl';
|
|
74
|
+
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
72
75
|
export { default as ImportVouchersXl } from './ImportVouchersXl';
|
|
73
76
|
export { default as Integration } from './Integration';
|
|
74
77
|
export { default as LastSeenXl } from './LastSeenXl';
|
|
75
78
|
export { default as LayoutImageBgL } from './LayoutImageBgL';
|
|
76
79
|
export { default as LayoutImageBgTextL } from './LayoutImageBgTextL';
|
|
77
|
-
export { default as FileImportL } from './FileImportL';
|
|
78
|
-
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
79
80
|
export { default as LayoutTextL } from './LayoutTextL';
|
|
81
|
+
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
80
82
|
export { default as MarketingAutomation } from './MarketingAutomation';
|
|
81
|
-
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
82
83
|
export { default as MetricSimpleXl } from './MetricSimpleXl';
|
|
83
|
-
export { default as
|
|
84
|
-
export { default as
|
|
84
|
+
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
85
|
+
export { default as MobileHandbillXl } from './MobileHandbillXl';
|
|
85
86
|
export { default as ReportPreparedXl } from './ReportPreparedXl';
|
|
86
|
-
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
87
87
|
export { default as TopProductsXl } from './TopProductsXl';
|
|
88
|
-
export { default as
|
|
89
|
-
export { default as
|
|
88
|
+
export { default as PushImportL } from './PushImportL';
|
|
89
|
+
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
90
90
|
export { default as UnderstandCustomer } from './UnderstandCustomer';
|
|
91
|
-
export { default as
|
|
91
|
+
export { default as OtherIdeas } from './OtherIdeas';
|