@synerise/ds-icon 1.0.0 → 1.1.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 +19 -0
- package/dist/cjs/icons/L/HideL.d.ts +3 -0
- package/dist/cjs/icons/L/HideL.js +8 -0
- package/dist/cjs/icons/L/index.d.ts +22 -21
- package/dist/cjs/icons/L/index.js +46 -44
- package/dist/cjs/icons/XL/index.d.ts +33 -33
- package/dist/cjs/icons/XL/index.js +68 -68
- package/dist/cjs/icons/additional/index.d.ts +32 -32
- package/dist/cjs/icons/additional/index.js +66 -66
- package/dist/cjs/icons/colorIcons/index.d.ts +2 -2
- package/dist/cjs/icons/colorIcons/index.js +5 -5
- package/dist/cjs/icons/index.d.ts +280 -280
- package/dist/cjs/icons/index.js +580 -580
- package/dist/esm/icons/L/HideL.d.ts +3 -0
- package/dist/esm/icons/L/HideL.js +6 -0
- package/dist/esm/icons/L/index.d.ts +22 -21
- package/dist/esm/icons/L/index.js +22 -21
- package/dist/esm/icons/XL/index.d.ts +33 -33
- package/dist/esm/icons/XL/index.js +33 -33
- package/dist/esm/icons/additional/index.d.ts +32 -32
- package/dist/esm/icons/additional/index.js +32 -32
- package/dist/esm/icons/colorIcons/index.d.ts +2 -2
- package/dist/esm/icons/colorIcons/index.js +2 -2
- package/dist/esm/icons/index.d.ts +280 -280
- package/dist/esm/icons/index.js +280 -280
- package/package.json +3 -3
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const HideL = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 48 48", fill: "none", className: "hide-l" }, props),
|
|
3
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24.102 11.992h.022a18.42 18.42 0 017.601 1.76 28.789 28.789 0 016.025 3.766 35.834 35.834 0 015.513 5.45 1.253 1.253 0 01-.007 1.557 35.791 35.791 0 01-5.5 5.436 28.797 28.797 0 01-6.027 3.77 18.442 18.442 0 01-7.627 1.761 18.419 18.419 0 01-7.601-1.76 28.792 28.792 0 01-6.025-3.766 35.838 35.838 0 01-5.513-5.45 1.253 1.253 0 01.007-1.557 35.79 35.79 0 015.5-5.435 28.794 28.794 0 016.027-3.77 18.424 18.424 0 017.605-1.762zm.01 1.5l-.471.014a16.93 16.93 0 00-6.508 1.606 27.332 27.332 0 00-5.724 3.581 34.292 34.292 0 00-5.268 5.204l.128-.155.34.408a34.326 34.326 0 004.228 4.177l.58.47a27.322 27.322 0 005.72 3.577 16.906 16.906 0 006.965 1.618 16.93 16.93 0 006.991-1.62 27.333 27.333 0 005.724-3.58 34.287 34.287 0 005.269-5.205l-.13.155-.339-.408a34.323 34.323 0 00-4.228-4.176l-.579-.47a27.323 27.323 0 00-5.721-3.578 16.924 16.924 0 00-6.986-1.618h.009z", fill: "#6A7580" }),
|
|
4
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.49 23.74a5.623 5.623 0 1111.246 0 5.623 5.623 0 01-11.246 0zm9.746 0a4.123 4.123 0 10-8.246 0 4.123 4.123 0 008.246 0z", fill: "#6A7580" }),
|
|
5
|
+
React.createElement("path", { d: "M6 35l36-22", stroke: "#6A7580", strokeWidth: 1.5, strokeLinecap: "round" })));
|
|
6
|
+
export default HideL;
|
|
@@ -1,68 +1,69 @@
|
|
|
1
|
-
export { default as BrowserL } from './BrowserL';
|
|
2
1
|
export { default as AddL } from './AddL';
|
|
3
|
-
export { default as
|
|
2
|
+
export { default as BrowserL } from './BrowserL';
|
|
4
3
|
export { default as ButtonL } from './ButtonL';
|
|
4
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
5
5
|
export { default as CheckL } from './CheckL';
|
|
6
6
|
export { default as CheckboxL } from './CheckboxL';
|
|
7
|
-
export { default as ColumnL } from './ColumnL';
|
|
8
7
|
export { default as CloseL } from './CloseL';
|
|
9
|
-
export { default as
|
|
8
|
+
export { default as ColumnL } from './ColumnL';
|
|
10
9
|
export { default as ComboL } from './ComboL';
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as FolderPlainL } from './FolderPlainL';
|
|
10
|
+
export { default as CountdownL } from './CountdownL';
|
|
13
11
|
export { default as DividerL } from './DividerL';
|
|
12
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
14
13
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
15
14
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
16
15
|
export { default as FolderL } from './FolderL';
|
|
16
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
17
17
|
export { default as FormEditL } from './FormEditL';
|
|
18
18
|
export { default as FormGroupL } from './FormGroupL';
|
|
19
|
+
export { default as FormL } from './FormL';
|
|
20
|
+
export { default as HashL } from './HashL';
|
|
21
|
+
export { default as HideL } from './HideL';
|
|
19
22
|
export { default as ImageL } from './ImageL';
|
|
20
23
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
21
|
-
export { default as HashL } from './HashL';
|
|
22
|
-
export { default as ImageUrlL } from './ImageUrlL';
|
|
23
24
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
25
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
24
26
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
25
27
|
export { default as InfoL } from './InfoL';
|
|
26
28
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
27
29
|
export { default as InputL } from './InputL';
|
|
28
|
-
export { default as LandingPageL } from './LandingPageL';
|
|
29
30
|
export { default as LabelL } from './LabelL';
|
|
30
|
-
export { default as
|
|
31
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
31
32
|
export { default as LinkL } from './LinkL';
|
|
32
33
|
export { default as LocationL } from './LocationL';
|
|
33
|
-
export { default as
|
|
34
|
+
export { default as LineL } from './LineL';
|
|
34
35
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
35
36
|
export { default as MobileClickL } from './MobileClickL';
|
|
37
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
36
38
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
37
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
38
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
39
39
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
40
40
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
41
|
-
export { default as NoData } from './NoData';
|
|
42
41
|
export { default as MultilineL } from './MultilineL';
|
|
42
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
43
43
|
export { default as NavbarL } from './NavbarL';
|
|
44
|
-
export { default as
|
|
44
|
+
export { default as NoData } from './NoData';
|
|
45
45
|
export { default as NoPermissionL } from './NoPermissionL';
|
|
46
|
-
export { default as RadioL } from './RadioL';
|
|
47
46
|
export { default as QuoteL } from './QuoteL';
|
|
47
|
+
export { default as PieL } from './PieL';
|
|
48
|
+
export { default as RadioL } from './RadioL';
|
|
48
49
|
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
49
50
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
50
51
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
51
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
52
52
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
53
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
53
54
|
export { default as Section12L } from './Section12L';
|
|
54
55
|
export { default as Section13L } from './Section13L';
|
|
56
|
+
export { default as Section37L } from './Section37L';
|
|
55
57
|
export { default as SectionL } from './SectionL';
|
|
56
58
|
export { default as SelectL } from './SelectL';
|
|
57
|
-
export { default as
|
|
59
|
+
export { default as ShowL } from './ShowL';
|
|
58
60
|
export { default as SliderL } from './SliderL';
|
|
59
61
|
export { default as SpinnerL } from './SpinnerL';
|
|
60
62
|
export { default as StackedL } from './StackedL';
|
|
61
63
|
export { default as TableL } from './TableL';
|
|
62
|
-
export { default as ShowL } from './ShowL';
|
|
63
64
|
export { default as TextL } from './TextL';
|
|
64
65
|
export { default as TextareaL } from './TextareaL';
|
|
65
66
|
export { default as VideoL } from './VideoL';
|
|
66
|
-
export { default as WarningL } from './WarningL';
|
|
67
67
|
export { default as TooltipL } from './TooltipL';
|
|
68
|
-
export { default as
|
|
68
|
+
export { default as WarningL } from './WarningL';
|
|
69
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
@@ -1,68 +1,69 @@
|
|
|
1
|
-
export { default as BrowserL } from './BrowserL';
|
|
2
1
|
export { default as AddL } from './AddL';
|
|
3
|
-
export { default as
|
|
2
|
+
export { default as BrowserL } from './BrowserL';
|
|
4
3
|
export { default as ButtonL } from './ButtonL';
|
|
4
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
5
5
|
export { default as CheckL } from './CheckL';
|
|
6
6
|
export { default as CheckboxL } from './CheckboxL';
|
|
7
|
-
export { default as ColumnL } from './ColumnL';
|
|
8
7
|
export { default as CloseL } from './CloseL';
|
|
9
|
-
export { default as
|
|
8
|
+
export { default as ColumnL } from './ColumnL';
|
|
10
9
|
export { default as ComboL } from './ComboL';
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as FolderPlainL } from './FolderPlainL';
|
|
10
|
+
export { default as CountdownL } from './CountdownL';
|
|
13
11
|
export { default as DividerL } from './DividerL';
|
|
12
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
14
13
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
15
14
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
16
15
|
export { default as FolderL } from './FolderL';
|
|
16
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
17
17
|
export { default as FormEditL } from './FormEditL';
|
|
18
18
|
export { default as FormGroupL } from './FormGroupL';
|
|
19
|
+
export { default as FormL } from './FormL';
|
|
20
|
+
export { default as HashL } from './HashL';
|
|
21
|
+
export { default as HideL } from './HideL';
|
|
19
22
|
export { default as ImageL } from './ImageL';
|
|
20
23
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
21
|
-
export { default as HashL } from './HashL';
|
|
22
|
-
export { default as ImageUrlL } from './ImageUrlL';
|
|
23
24
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
25
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
24
26
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
25
27
|
export { default as InfoL } from './InfoL';
|
|
26
28
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
27
29
|
export { default as InputL } from './InputL';
|
|
28
|
-
export { default as LandingPageL } from './LandingPageL';
|
|
29
30
|
export { default as LabelL } from './LabelL';
|
|
30
|
-
export { default as
|
|
31
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
31
32
|
export { default as LinkL } from './LinkL';
|
|
32
33
|
export { default as LocationL } from './LocationL';
|
|
33
|
-
export { default as
|
|
34
|
+
export { default as LineL } from './LineL';
|
|
34
35
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
35
36
|
export { default as MobileClickL } from './MobileClickL';
|
|
37
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
36
38
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
37
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
38
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
39
39
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
40
40
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
41
|
-
export { default as NoData } from './NoData';
|
|
42
41
|
export { default as MultilineL } from './MultilineL';
|
|
42
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
43
43
|
export { default as NavbarL } from './NavbarL';
|
|
44
|
-
export { default as
|
|
44
|
+
export { default as NoData } from './NoData';
|
|
45
45
|
export { default as NoPermissionL } from './NoPermissionL';
|
|
46
|
-
export { default as RadioL } from './RadioL';
|
|
47
46
|
export { default as QuoteL } from './QuoteL';
|
|
47
|
+
export { default as PieL } from './PieL';
|
|
48
|
+
export { default as RadioL } from './RadioL';
|
|
48
49
|
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
49
50
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
50
51
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
51
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
52
52
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
53
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
53
54
|
export { default as Section12L } from './Section12L';
|
|
54
55
|
export { default as Section13L } from './Section13L';
|
|
56
|
+
export { default as Section37L } from './Section37L';
|
|
55
57
|
export { default as SectionL } from './SectionL';
|
|
56
58
|
export { default as SelectL } from './SelectL';
|
|
57
|
-
export { default as
|
|
59
|
+
export { default as ShowL } from './ShowL';
|
|
58
60
|
export { default as SliderL } from './SliderL';
|
|
59
61
|
export { default as SpinnerL } from './SpinnerL';
|
|
60
62
|
export { default as StackedL } from './StackedL';
|
|
61
63
|
export { default as TableL } from './TableL';
|
|
62
|
-
export { default as ShowL } from './ShowL';
|
|
63
64
|
export { default as TextL } from './TextL';
|
|
64
65
|
export { default as TextareaL } from './TextareaL';
|
|
65
66
|
export { default as VideoL } from './VideoL';
|
|
66
|
-
export { default as WarningL } from './WarningL';
|
|
67
67
|
export { default as TooltipL } from './TooltipL';
|
|
68
|
-
export { default as
|
|
68
|
+
export { default as WarningL } from './WarningL';
|
|
69
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AbTestXl } from './AbTestXl';
|
|
2
2
|
export { default as AddXl } from './AddXl';
|
|
3
|
-
export { default as
|
|
3
|
+
export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
|
|
4
4
|
export { default as AfterEventXl } from './AfterEventXl';
|
|
5
|
-
export { default as
|
|
5
|
+
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
6
6
|
export { default as ApiXl } from './ApiXl';
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as AttributeXl } from './AttributeXl';
|
|
8
|
+
export { default as BasicBuilderXl } from './BasicBuilderXl';
|
|
8
9
|
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
9
|
-
export { default as BillingXl } from './BillingXl';
|
|
10
10
|
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
11
|
+
export { default as BillingXl } from './BillingXl';
|
|
13
12
|
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
13
|
+
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
14
|
+
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
14
15
|
export { default as BulbEditXl } from './BulbEditXl';
|
|
15
16
|
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
17
|
+
export { default as CalculatorXl } from './CalculatorXl';
|
|
16
18
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
17
|
-
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
18
19
|
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
20
|
+
export { default as CalendarXl } from './CalendarXl';
|
|
19
21
|
export { default as CardAeXl } from './CardAeXl';
|
|
20
|
-
export { default as
|
|
22
|
+
export { default as CardVisaXl } from './CardVisaXl';
|
|
21
23
|
export { default as CartAddXl } from './CartAddXl';
|
|
22
|
-
export { default as CalendarXl } from './CalendarXl';
|
|
23
24
|
export { default as CheckInXl } from './CheckInXl';
|
|
25
|
+
export { default as CheckOutXl } from './CheckOutXl';
|
|
24
26
|
export { default as CheckXl } from './CheckXl';
|
|
25
27
|
export { default as ClassificationXl } from './ClassificationXl';
|
|
26
|
-
export { default as CheckOutXl } from './CheckOutXl';
|
|
27
|
-
export { default as CardVisaXl } from './CardVisaXl';
|
|
28
|
-
export { default as CloneNodesXl } from './CloneNodesXl';
|
|
29
28
|
export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
|
|
30
|
-
export { default as
|
|
29
|
+
export { default as CloneNodesXl } from './CloneNodesXl';
|
|
30
|
+
export { default as CompareXl } from './CompareXl';
|
|
31
31
|
export { default as CouponXl } from './CouponXl';
|
|
32
|
+
export { default as CupXl } from './CupXl';
|
|
32
33
|
export { default as DiscountXl } from './DiscountXl';
|
|
33
|
-
export { default as CompareXl } from './CompareXl';
|
|
34
|
-
export { default as FileUrlXl } from './FileUrlXl';
|
|
35
|
-
export { default as EventXl } from './EventXl';
|
|
36
|
-
export { default as FileZipXl } from './FileZipXl';
|
|
37
34
|
export { default as FileUpXl } from './FileUpXl';
|
|
35
|
+
export { default as EventXl } from './EventXl';
|
|
36
|
+
export { default as FileUrlXl } from './FileUrlXl';
|
|
38
37
|
export { default as FileXl } from './FileXl';
|
|
38
|
+
export { default as FileZipXl } from './FileZipXl';
|
|
39
39
|
export { default as FirstRunXl } from './FirstRunXl';
|
|
40
|
-
export { default as FolderStarXl } from './FolderStarXl';
|
|
41
40
|
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
41
|
+
export { default as FolderStarXl } from './FolderStarXl';
|
|
42
42
|
export { default as FolderUserXl } from './FolderUserXl';
|
|
43
43
|
export { default as FolderXl } from './FolderXl';
|
|
44
44
|
export { default as FormXl } from './FormXl';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as InfoXl } from './InfoXl';
|
|
45
|
+
export { default as FormulaXl } from './FormulaXl';
|
|
47
46
|
export { default as FunctionXl } from './FunctionXl';
|
|
47
|
+
export { default as GemsXl } from './GemsXl';
|
|
48
48
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
49
|
-
export { default as FormulaXl } from './FormulaXl';
|
|
50
49
|
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
51
|
-
export { default as
|
|
50
|
+
export { default as InfoXl } from './InfoXl';
|
|
52
51
|
export { default as IntegrationXl } from './IntegrationXl';
|
|
52
|
+
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
53
53
|
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
54
|
-
export { default as LaunchXl } from './LaunchXl';
|
|
55
54
|
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
55
|
+
export { default as LaunchXl } from './LaunchXl';
|
|
56
56
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
57
57
|
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
58
|
-
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
59
58
|
export { default as MessageXl } from './MessageXl';
|
|
59
|
+
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
60
60
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
61
61
|
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
62
|
-
export { default as MultivalueXl } from './MultivalueXl';
|
|
63
62
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
63
|
+
export { default as MultivalueXl } from './MultivalueXl';
|
|
64
64
|
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
65
65
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
66
|
-
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
67
66
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
68
|
-
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
69
67
|
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
68
|
+
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
70
69
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
71
|
-
export { default as
|
|
70
|
+
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
72
71
|
export { default as PushXl } from './PushXl';
|
|
72
|
+
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
73
73
|
export { default as ReggressionXl } from './ReggressionXl';
|
|
74
74
|
export { default as SearchHybridXl } from './SearchHybridXl';
|
|
75
75
|
export { default as SearchKeywordsXl } from './SearchKeywordsXl';
|
|
76
|
-
export { default as SectionXl } from './SectionXl';
|
|
77
76
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
78
77
|
export { default as SearchSemanticXl } from './SearchSemanticXl';
|
|
78
|
+
export { default as SectionXl } from './SectionXl';
|
|
79
79
|
export { default as ShowXl } from './ShowXl';
|
|
80
|
-
export { default as SmsXl } from './SmsXl';
|
|
81
80
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
81
|
+
export { default as SmsXl } from './SmsXl';
|
|
82
82
|
export { default as TargetXl } from './TargetXl';
|
|
83
|
-
export { default as UserCircleXl } from './UserCircleXl';
|
|
84
83
|
export { default as ToolsXl } from './ToolsXl';
|
|
85
84
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
85
|
+
export { default as UserCircleXl } from './UserCircleXl';
|
|
86
|
+
export { default as UserIdXl } from './UserIdXl';
|
|
86
87
|
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
87
88
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
88
|
-
export { default as UserIdXl } from './UserIdXl';
|
|
89
89
|
export { default as VoucherXl } from './VoucherXl';
|
|
90
90
|
export { default as WarningXl } from './WarningXl';
|
|
91
91
|
export { default as WebhookXl } from './WebhookXl';
|
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AbTestXl } from './AbTestXl';
|
|
2
2
|
export { default as AddXl } from './AddXl';
|
|
3
|
-
export { default as
|
|
3
|
+
export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
|
|
4
4
|
export { default as AfterEventXl } from './AfterEventXl';
|
|
5
|
-
export { default as
|
|
5
|
+
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
6
6
|
export { default as ApiXl } from './ApiXl';
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as AttributeXl } from './AttributeXl';
|
|
8
|
+
export { default as BasicBuilderXl } from './BasicBuilderXl';
|
|
8
9
|
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
9
|
-
export { default as BillingXl } from './BillingXl';
|
|
10
10
|
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
11
|
+
export { default as BillingXl } from './BillingXl';
|
|
13
12
|
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
13
|
+
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
14
|
+
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
14
15
|
export { default as BulbEditXl } from './BulbEditXl';
|
|
15
16
|
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
17
|
+
export { default as CalculatorXl } from './CalculatorXl';
|
|
16
18
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
17
|
-
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
18
19
|
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
20
|
+
export { default as CalendarXl } from './CalendarXl';
|
|
19
21
|
export { default as CardAeXl } from './CardAeXl';
|
|
20
|
-
export { default as
|
|
22
|
+
export { default as CardVisaXl } from './CardVisaXl';
|
|
21
23
|
export { default as CartAddXl } from './CartAddXl';
|
|
22
|
-
export { default as CalendarXl } from './CalendarXl';
|
|
23
24
|
export { default as CheckInXl } from './CheckInXl';
|
|
25
|
+
export { default as CheckOutXl } from './CheckOutXl';
|
|
24
26
|
export { default as CheckXl } from './CheckXl';
|
|
25
27
|
export { default as ClassificationXl } from './ClassificationXl';
|
|
26
|
-
export { default as CheckOutXl } from './CheckOutXl';
|
|
27
|
-
export { default as CardVisaXl } from './CardVisaXl';
|
|
28
|
-
export { default as CloneNodesXl } from './CloneNodesXl';
|
|
29
28
|
export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
|
|
30
|
-
export { default as
|
|
29
|
+
export { default as CloneNodesXl } from './CloneNodesXl';
|
|
30
|
+
export { default as CompareXl } from './CompareXl';
|
|
31
31
|
export { default as CouponXl } from './CouponXl';
|
|
32
|
+
export { default as CupXl } from './CupXl';
|
|
32
33
|
export { default as DiscountXl } from './DiscountXl';
|
|
33
|
-
export { default as CompareXl } from './CompareXl';
|
|
34
|
-
export { default as FileUrlXl } from './FileUrlXl';
|
|
35
|
-
export { default as EventXl } from './EventXl';
|
|
36
|
-
export { default as FileZipXl } from './FileZipXl';
|
|
37
34
|
export { default as FileUpXl } from './FileUpXl';
|
|
35
|
+
export { default as EventXl } from './EventXl';
|
|
36
|
+
export { default as FileUrlXl } from './FileUrlXl';
|
|
38
37
|
export { default as FileXl } from './FileXl';
|
|
38
|
+
export { default as FileZipXl } from './FileZipXl';
|
|
39
39
|
export { default as FirstRunXl } from './FirstRunXl';
|
|
40
|
-
export { default as FolderStarXl } from './FolderStarXl';
|
|
41
40
|
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
41
|
+
export { default as FolderStarXl } from './FolderStarXl';
|
|
42
42
|
export { default as FolderUserXl } from './FolderUserXl';
|
|
43
43
|
export { default as FolderXl } from './FolderXl';
|
|
44
44
|
export { default as FormXl } from './FormXl';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as InfoXl } from './InfoXl';
|
|
45
|
+
export { default as FormulaXl } from './FormulaXl';
|
|
47
46
|
export { default as FunctionXl } from './FunctionXl';
|
|
47
|
+
export { default as GemsXl } from './GemsXl';
|
|
48
48
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
49
|
-
export { default as FormulaXl } from './FormulaXl';
|
|
50
49
|
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
51
|
-
export { default as
|
|
50
|
+
export { default as InfoXl } from './InfoXl';
|
|
52
51
|
export { default as IntegrationXl } from './IntegrationXl';
|
|
52
|
+
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
53
53
|
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
54
|
-
export { default as LaunchXl } from './LaunchXl';
|
|
55
54
|
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
55
|
+
export { default as LaunchXl } from './LaunchXl';
|
|
56
56
|
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
57
57
|
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
58
|
-
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
59
58
|
export { default as MessageXl } from './MessageXl';
|
|
59
|
+
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
60
60
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
61
61
|
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
62
|
-
export { default as MultivalueXl } from './MultivalueXl';
|
|
63
62
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
63
|
+
export { default as MultivalueXl } from './MultivalueXl';
|
|
64
64
|
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
65
65
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
66
|
-
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
67
66
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
68
|
-
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
69
67
|
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
68
|
+
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
70
69
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
71
|
-
export { default as
|
|
70
|
+
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
72
71
|
export { default as PushXl } from './PushXl';
|
|
72
|
+
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
73
73
|
export { default as ReggressionXl } from './ReggressionXl';
|
|
74
74
|
export { default as SearchHybridXl } from './SearchHybridXl';
|
|
75
75
|
export { default as SearchKeywordsXl } from './SearchKeywordsXl';
|
|
76
|
-
export { default as SectionXl } from './SectionXl';
|
|
77
76
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
78
77
|
export { default as SearchSemanticXl } from './SearchSemanticXl';
|
|
78
|
+
export { default as SectionXl } from './SectionXl';
|
|
79
79
|
export { default as ShowXl } from './ShowXl';
|
|
80
|
-
export { default as SmsXl } from './SmsXl';
|
|
81
80
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
81
|
+
export { default as SmsXl } from './SmsXl';
|
|
82
82
|
export { default as TargetXl } from './TargetXl';
|
|
83
|
-
export { default as UserCircleXl } from './UserCircleXl';
|
|
84
83
|
export { default as ToolsXl } from './ToolsXl';
|
|
85
84
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
85
|
+
export { default as UserCircleXl } from './UserCircleXl';
|
|
86
|
+
export { default as UserIdXl } from './UserIdXl';
|
|
86
87
|
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
87
88
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
88
|
-
export { default as UserIdXl } from './UserIdXl';
|
|
89
89
|
export { default as VoucherXl } from './VoucherXl';
|
|
90
90
|
export { default as WarningXl } from './WarningXl';
|
|
91
91
|
export { default as WebhookXl } from './WebhookXl';
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
export { default as ActionDeeplinkL } from './ActionDeeplinkL';
|
|
2
|
+
export { default as ActionNoneL } from './ActionNoneL';
|
|
2
3
|
export { default as ActionOpenAppL } from './ActionOpenAppL';
|
|
3
4
|
export { default as ActionUrlL } from './ActionUrlL';
|
|
4
|
-
export { default as ActionNoneL } from './ActionNoneL';
|
|
5
5
|
export { default as AdAfterScrollL } from './AdAfterScrollL';
|
|
6
|
-
export { default as AdBannerL } from './AdBannerL';
|
|
7
6
|
export { default as AdAfterXpagesL } from './AdAfterXpagesL';
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as AdDeeplinkingL } from './AdDeeplinkingL';
|
|
7
|
+
export { default as AdBannerL } from './AdBannerL';
|
|
10
8
|
export { default as AdCartAiL } from './AdCartAiL';
|
|
9
|
+
export { default as AdCodeEditorL } from './AdCodeEditorL';
|
|
11
10
|
export { default as AdCouponL } from './AdCouponL';
|
|
12
|
-
export { default as AdFadeInL } from './AdFadeInL';
|
|
13
11
|
export { default as AdComplementaryAiL } from './AdComplementaryAiL';
|
|
12
|
+
export { default as AdFadeInL } from './AdFadeInL';
|
|
13
|
+
export { default as AdDeeplinkingL } from './AdDeeplinkingL';
|
|
14
|
+
export { default as AdFirstRunL } from './AdFirstRunL';
|
|
14
15
|
export { default as AdFolderBasic } from './AdFolderBasic';
|
|
15
16
|
export { default as AdFolderFeatured } from './AdFolderFeatured';
|
|
16
|
-
export { default as AdFirstRunL } from './AdFirstRunL';
|
|
17
17
|
export { default as AdFolderS } from './AdFolderS';
|
|
18
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';
|
|
22
22
|
export { default as AdImgTextL } from './AdImgTextL';
|
|
23
|
-
export { default as AdImportUrl } from './AdImportUrl';
|
|
24
23
|
export { default as AdImportZip } from './AdImportZip';
|
|
24
|
+
export { default as AdImportUrl } from './AdImportUrl';
|
|
25
25
|
export { default as AdInsertObjectL } from './AdInsertObjectL';
|
|
26
|
-
export { default as AdMandatoryUpgradeL } from './AdMandatoryUpgradeL';
|
|
27
|
-
export { default as AdMandatoryUpdateL } from './AdMandatoryUpdateL';
|
|
28
26
|
export { default as AdLandL } from './AdLandL';
|
|
29
|
-
export { default as
|
|
27
|
+
export { default as AdMandatoryUpdateL } from './AdMandatoryUpdateL';
|
|
28
|
+
export { default as AdMandatoryUpgradeL } from './AdMandatoryUpgradeL';
|
|
30
29
|
export { default as AdOnExitL } from './AdOnExitL';
|
|
30
|
+
export { default as AdOnDemandL } from './AdOnDemandL';
|
|
31
31
|
export { default as AdOnLandingL } from './AdOnLandingL';
|
|
32
32
|
export { default as AdOnboardingL } from './AdOnboardingL';
|
|
33
33
|
export { default as AdOpenAppL } from './AdOpenAppL';
|
|
@@ -35,61 +35,61 @@ export { default as AdOpenUrlL } from './AdOpenUrlL';
|
|
|
35
35
|
export { default as AdPersonalizedAiL } from './AdPersonalizedAiL';
|
|
36
36
|
export { default as AdPopL } from './AdPopL';
|
|
37
37
|
export { default as AdPortraitL } from './AdPortraitL';
|
|
38
|
-
export { default as AdShareLinkL } from './AdShareLinkL';
|
|
39
38
|
export { default as AdPreBuiltSegmentsL } from './AdPreBuiltSegmentsL';
|
|
40
|
-
export { default as
|
|
39
|
+
export { default as AdShareLinkL } from './AdShareLinkL';
|
|
41
40
|
export { default as AdSilentPushL } from './AdSilentPushL';
|
|
41
|
+
export { default as AdSimilarAiL } from './AdSimilarAiL';
|
|
42
42
|
export { default as AdSimplePushL } from './AdSimplePushL';
|
|
43
|
+
export { default as AdSlideDownL } from './AdSlideDownL';
|
|
43
44
|
export { default as AdSlideLeftL } from './AdSlideLeftL';
|
|
45
|
+
export { default as AdSlideRightL } from './AdSlideRightL';
|
|
44
46
|
export { default as AdSlideUpL } from './AdSlideUpL';
|
|
45
47
|
export { default as AdTempCodeS } from './AdTempCodeS';
|
|
46
|
-
export { default as AdVisualEditorL } from './AdVisualEditorL';
|
|
47
|
-
export { default as AdTextEditorL } from './AdTextEditorL';
|
|
48
48
|
export { default as AdUserSegmentsL } from './AdUserSegmentsL';
|
|
49
|
+
export { default as AdTextEditorL } from './AdTextEditorL';
|
|
49
50
|
export { default as AdVisualAiL } from './AdVisualAiL';
|
|
51
|
+
export { default as AdVisualEditorL } from './AdVisualEditorL';
|
|
50
52
|
export { default as AdVisualEditorNewL } from './AdVisualEditorNewL';
|
|
51
|
-
export { default as AdWebLayerL } from './AdWebLayerL';
|
|
52
53
|
export { default as AdWalktroughL } from './AdWalktroughL';
|
|
54
|
+
export { default as AdWebLayerL } from './AdWebLayerL';
|
|
53
55
|
export { default as AdWelcomeScreenL } from './AdWelcomeScreenL';
|
|
54
|
-
export { default as AudienceAnalytics } from './AudienceAnalytics';
|
|
55
56
|
export { default as AiCampaigns } from './AiCampaigns';
|
|
57
|
+
export { default as AudienceAnalytics } from './AudienceAnalytics';
|
|
56
58
|
export { default as BoostLoyalty } from './BoostLoyalty';
|
|
57
59
|
export { default as CartRecommendationXl } from './CartRecommendationXl';
|
|
58
|
-
export { default as ChartComboL } from './ChartComboL';
|
|
59
60
|
export { default as ChartDonutL } from './ChartDonutL';
|
|
60
|
-
export { default as ChartDonutLineL } from './ChartDonutLineL';
|
|
61
61
|
export { default as ChartColumnL } from './ChartColumnL';
|
|
62
|
-
export { default as
|
|
62
|
+
export { default as ChartComboL } from './ChartComboL';
|
|
63
|
+
export { default as ChartDonutLineL } from './ChartDonutLineL';
|
|
63
64
|
export { default as ChartLineL } from './ChartLineL';
|
|
65
|
+
export { default as ChartPieL } from './ChartPieL';
|
|
64
66
|
export { default as ChartTableL } from './ChartTableL';
|
|
67
|
+
export { default as DateMultipleXl } from './DateMultipleXl';
|
|
65
68
|
export { default as DateRecurringXl } from './DateRecurringXl';
|
|
66
69
|
export { default as DateOntimeXl } from './DateOntimeXl';
|
|
67
|
-
export { default as FileImportL } from './FileImportL';
|
|
68
70
|
export { default as ImportCatalogsXl } from './ImportCatalogsXl';
|
|
71
|
+
export { default as FileImportL } from './FileImportL';
|
|
69
72
|
export { default as ImportClientsXl } from './ImportClientsXl';
|
|
70
73
|
export { default as ImportCustomEventXl } from './ImportCustomEventXl';
|
|
74
|
+
export { default as ImportProductFeedXl } from './ImportProductFeedXl';
|
|
71
75
|
export { default as ImportCustomXl } from './ImportCustomXl';
|
|
72
76
|
export { default as ImportPromotionsXl } from './ImportPromotionsXl';
|
|
73
|
-
export { default as ImportProductFeedXl } from './ImportProductFeedXl';
|
|
74
77
|
export { default as ImportQuickXl } from './ImportQuickXl';
|
|
75
|
-
export { default as ImportVouchersXl } from './ImportVouchersXl';
|
|
76
78
|
export { default as ImportTransactionsXl } from './ImportTransactionsXl';
|
|
77
|
-
export { default as
|
|
79
|
+
export { default as ImportVouchersXl } from './ImportVouchersXl';
|
|
78
80
|
export { default as Integration } from './Integration';
|
|
79
|
-
export { default as
|
|
81
|
+
export { default as LastSeenXl } from './LastSeenXl';
|
|
80
82
|
export { default as LayoutImageBgL } from './LayoutImageBgL';
|
|
81
|
-
export { default as
|
|
83
|
+
export { default as LayoutImageBgTextL } from './LayoutImageBgTextL';
|
|
82
84
|
export { default as LayoutMixedL } from './LayoutMixedL';
|
|
85
|
+
export { default as LayoutTextL } from './LayoutTextL';
|
|
83
86
|
export { default as MarketingAutomation } from './MarketingAutomation';
|
|
84
87
|
export { default as MetricFormulaXl } from './MetricFormulaXl';
|
|
85
|
-
export { default as LayoutTextL } from './LayoutTextL';
|
|
86
|
-
export { default as MobileHandbillXl } from './MobileHandbillXl';
|
|
87
88
|
export { default as MetricSimpleXl } from './MetricSimpleXl';
|
|
88
|
-
export { default as
|
|
89
|
+
export { default as OtherIdeas } from './OtherIdeas';
|
|
90
|
+
export { default as MobileHandbillXl } from './MobileHandbillXl';
|
|
89
91
|
export { default as PushImportL } from './PushImportL';
|
|
92
|
+
export { default as ReportPreparedXl } from './ReportPreparedXl';
|
|
90
93
|
export { default as TargetedCampaigns } from './TargetedCampaigns';
|
|
91
|
-
export { default as UnderstandCustomer } from './UnderstandCustomer';
|
|
92
94
|
export { default as TopProductsXl } from './TopProductsXl';
|
|
93
|
-
export { default as
|
|
94
|
-
export { default as AdSlideDownL } from './AdSlideDownL';
|
|
95
|
-
export { default as AdSlideRightL } from './AdSlideRightL';
|
|
95
|
+
export { default as UnderstandCustomer } from './UnderstandCustomer';
|