@synerise/ds-icon 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.d.ts +4 -0
  3. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.js +14 -0
  4. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.types.d.ts +4 -0
  5. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.types.js +2 -0
  6. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.utils.d.ts +2 -0
  7. package/dist/cjs/MimeTypeIcon/MimeTypeIcon.utils.js +45 -0
  8. package/dist/cjs/icons/L/index.d.ts +31 -31
  9. package/dist/cjs/icons/L/index.js +64 -64
  10. package/dist/cjs/icons/XL/index.d.ts +36 -36
  11. package/dist/cjs/icons/XL/index.js +74 -74
  12. package/dist/cjs/icons/additional/index.d.ts +41 -41
  13. package/dist/cjs/icons/additional/index.js +84 -84
  14. package/dist/cjs/icons/colorIcons/index.d.ts +6 -6
  15. package/dist/cjs/icons/colorIcons/index.js +13 -13
  16. package/dist/cjs/icons/index.d.ts +339 -339
  17. package/dist/cjs/icons/index.js +696 -696
  18. package/dist/cjs/index.d.ts +3 -0
  19. package/dist/cjs/index.js +3 -1
  20. package/dist/esm/MimeTypeIcon/MimeTypeIcon.d.ts +4 -0
  21. package/dist/esm/MimeTypeIcon/MimeTypeIcon.js +12 -0
  22. package/dist/esm/MimeTypeIcon/MimeTypeIcon.types.d.ts +4 -0
  23. package/dist/esm/MimeTypeIcon/MimeTypeIcon.types.js +1 -0
  24. package/dist/esm/MimeTypeIcon/MimeTypeIcon.utils.d.ts +2 -0
  25. package/dist/esm/MimeTypeIcon/MimeTypeIcon.utils.js +41 -0
  26. package/dist/esm/icons/L/index.d.ts +31 -31
  27. package/dist/esm/icons/L/index.js +31 -31
  28. package/dist/esm/icons/XL/index.d.ts +36 -36
  29. package/dist/esm/icons/XL/index.js +36 -36
  30. package/dist/esm/icons/additional/index.d.ts +41 -41
  31. package/dist/esm/icons/additional/index.js +41 -41
  32. package/dist/esm/icons/colorIcons/index.d.ts +6 -6
  33. package/dist/esm/icons/colorIcons/index.js +6 -6
  34. package/dist/esm/icons/index.d.ts +339 -339
  35. package/dist/esm/icons/index.js +339 -339
  36. package/dist/esm/index.d.ts +3 -0
  37. package/dist/esm/index.js +1 -0
  38. package/package.json +2 -2
@@ -11,4 +11,7 @@ export * from './icons/L';
11
11
  export * from './icons/colorIcons';
12
12
  export * from './icons/XL';
13
13
  export * from './icons/additional';
14
+ export { default as MimeTypeIcon } from './MimeTypeIcon/MimeTypeIcon';
15
+ export type { MimeTypeIconsProps } from './MimeTypeIcon/MimeTypeIcon.types';
16
+ export type { IconProps } from './Icon.types';
14
17
  export { medium, large, xLarge, color, additional };
package/dist/cjs/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.additional = exports.color = exports.xLarge = exports.large = exports.medium = exports.default = void 0;
3
+ exports.additional = exports.color = exports.xLarge = exports.large = exports.medium = exports.MimeTypeIcon = exports.default = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const medium = require("./icons");
6
6
  exports.medium = medium;
@@ -22,3 +22,5 @@ tslib_1.__exportStar(require("./icons/colorIcons"), exports);
22
22
  tslib_1.__exportStar(require("./icons/XL"), exports);
23
23
  // Some of this icons are duplicated in XL folder, consider removing it before uploading new version
24
24
  tslib_1.__exportStar(require("./icons/additional"), exports);
25
+ var MimeTypeIcon_1 = require("./MimeTypeIcon/MimeTypeIcon");
26
+ Object.defineProperty(exports, "MimeTypeIcon", { enumerable: true, get: function () { return MimeTypeIcon_1.default; } });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { MimeTypeIconsProps } from './MimeTypeIcon.types';
3
+ declare const MimeTypeIcon: ({ type, ...iconProps }: MimeTypeIconsProps) => React.JSX.Element;
4
+ export default MimeTypeIcon;
@@ -0,0 +1,12 @@
1
+ import { __rest } from "tslib";
2
+ import React, { useMemo } from 'react';
3
+ import Icon from '../Icon';
4
+ import { mapMimeTypeToIcon } from './MimeTypeIcon.utils';
5
+ const MimeTypeIcon = (_a) => {
6
+ var { type } = _a, iconProps = __rest(_a, ["type"]);
7
+ const component = useMemo(() => {
8
+ return mapMimeTypeToIcon(type);
9
+ }, [type]);
10
+ return React.createElement(Icon, Object.assign({}, iconProps, { component: component }));
11
+ };
12
+ export default MimeTypeIcon;
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from '../Icon.types';
2
+ export type MimeTypeIconsProps = Omit<IconProps, 'component'> & {
3
+ type: string;
4
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const mapMimeTypeToIcon: (mimeType: string) => React.JSX.Element;
@@ -0,0 +1,41 @@
1
+ import React from 'react';
2
+ import { FileActionM, FileArchiveM, FileCodeM, FileM, FileTypeImageM, FileTypePlainM, FileTypeTableM, FileTypeTextM, } from '../icons';
3
+ export const mapMimeTypeToIcon = (mimeType) => {
4
+ switch (mimeType) {
5
+ case 'text/csv':
6
+ return React.createElement(FileTypeTableM, null);
7
+ case 'application/msword':
8
+ case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document':
9
+ return React.createElement(FileTypeTextM, null);
10
+ case 'text/html':
11
+ return React.createElement(FileCodeM, null);
12
+ case 'audio/mp3':
13
+ case 'audio/mpeg3':
14
+ return React.createElement(FileActionM, null);
15
+ case 'application/pdf':
16
+ return React.createElement(FileTypeImageM, null);
17
+ case 'application/mspowerpoint':
18
+ case 'application/vnd.ms-powerpoint':
19
+ case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
20
+ return React.createElement(FileTypePlainM, null);
21
+ case 'image/svg':
22
+ return React.createElement(FileTypeImageM, null);
23
+ case 'text/plain':
24
+ return React.createElement(FileTypeTextM, null);
25
+ case 'video/avi':
26
+ case 'video/quicktime':
27
+ case 'video/mpeg':
28
+ return React.createElement(FileActionM, null);
29
+ case 'application/excel':
30
+ case 'application/vnd.ms-excel':
31
+ case 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet':
32
+ return React.createElement(FileTypeTableM, null);
33
+ case 'application/zip':
34
+ case 'multipart/x-zip':
35
+ case 'application/x-compressed':
36
+ case 'application/x-zip-compressed':
37
+ return React.createElement(FileArchiveM, null);
38
+ default:
39
+ return React.createElement(FileM, null);
40
+ }
41
+ };
@@ -1,69 +1,69 @@
1
- export { default as AddL } from './AddL';
2
1
  export { default as BrowserL } from './BrowserL';
3
2
  export { default as ButtonL } from './ButtonL';
3
+ export { default as AddL } from './AddL';
4
4
  export { default as ButtonSubmitL } from './ButtonSubmitL';
5
- export { default as CloseL } from './CloseL';
6
5
  export { default as CheckL } from './CheckL';
7
6
  export { default as CheckboxL } from './CheckboxL';
8
- export { default as ColumnL } from './ColumnL';
7
+ export { default as CloseL } from './CloseL';
9
8
  export { default as ComboL } from './ComboL';
10
- export { default as DividerL } from './DividerL';
11
9
  export { default as FileTypePictureL } from './FileTypePictureL';
10
+ export { default as ColumnL } from './ColumnL';
11
+ export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
12
12
  export { default as CountdownL } from './CountdownL';
13
13
  export { default as FolderL } from './FolderL';
14
- export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
15
- export { default as FolderPlainL } from './FolderPlainL';
14
+ export { default as DividerL } from './DividerL';
16
15
  export { default as FolderPredefinedL } from './FolderPredefinedL';
16
+ export { default as FormEditL } from './FormEditL';
17
+ export { default as FolderPlainL } from './FolderPlainL';
18
+ export { default as HashL } from './HashL';
17
19
  export { default as FormGroupL } from './FormGroupL';
18
- export { default as HideL } from './HideL';
19
20
  export { default as FormL } from './FormL';
20
- export { default as ImagePotraitL } from './ImagePotraitL';
21
- export { default as HashL } from './HashL';
21
+ export { default as HideL } from './HideL';
22
+ export { default as ImageLandscapeL } from './ImageLandscapeL';
23
+ export { default as ImageL } from './ImageL';
22
24
  export { default as ImageUrlL } from './ImageUrlL';
23
25
  export { default as InboxNoResultsL } from './InboxNoResultsL';
26
+ export { default as ImagePotraitL } from './ImagePotraitL';
24
27
  export { default as InfoL } from './InfoL';
25
- export { default as InputL } from './InputL';
26
28
  export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
27
- export { default as LandingPageL } from './LandingPageL';
29
+ export { default as InputL } from './InputL';
28
30
  export { default as LabelL } from './LabelL';
29
- export { default as LinkL } from './LinkL';
31
+ export { default as LandingPageL } from './LandingPageL';
30
32
  export { default as LineL } from './LineL';
33
+ export { default as LinkL } from './LinkL';
31
34
  export { default as MobileBlockL } from './MobileBlockL';
32
- export { default as LocationL } from './LocationL';
33
- export { default as MobileClickL } from './MobileClickL';
34
35
  export { default as MobileLayout1L } from './MobileLayout1L';
35
- export { default as MobileLayout3L } from './MobileLayout3L';
36
+ export { default as MobileLayout2L } from './MobileLayout2L';
37
+ export { default as MobileClickL } from './MobileClickL';
36
38
  export { default as MobileLayout4L } from './MobileLayout4L';
39
+ export { default as MobileLayout3L } from './MobileLayout3L';
37
40
  export { default as MobileLinkL } from './MobileLinkL';
41
+ export { default as LocationL } from './LocationL';
38
42
  export { default as MobileUrlL } from './MobileUrlL';
39
- export { default as MobileLayout2L } from './MobileLayout2L';
40
- export { default as NavbarL } from './NavbarL';
41
43
  export { default as MultilineL } from './MultilineL';
42
- export { default as NoData } from './NoData';
44
+ export { default as NavbarL } from './NavbarL';
43
45
  export { default as NoPermissionL } from './NoPermissionL';
44
- export { default as PieL } from './PieL';
45
- export { default as FormEditL } from './FormEditL';
46
+ export { default as NoData } from './NoData';
46
47
  export { default as QuoteL } from './QuoteL';
48
+ export { default as RadioL } from './RadioL';
49
+ export { default as PieL } from './PieL';
47
50
  export { default as RelationManyManyL } from './RelationManyManyL';
48
51
  export { default as RelationManyOneL } from './RelationManyOneL';
49
- export { default as ImageL } from './ImageL';
50
- export { default as SearchNoResultsL } from './SearchNoResultsL';
51
- export { default as ImageLandscapeL } from './ImageLandscapeL';
52
52
  export { default as RelationOneOneL } from './RelationOneOneL';
53
- export { default as Section13L } from './Section13L';
53
+ export { default as SearchNoResultsL } from './SearchNoResultsL';
54
54
  export { default as Section12L } from './Section12L';
55
+ export { default as RelationOneManyL } from './RelationOneManyL';
56
+ export { default as Section13L } from './Section13L';
55
57
  export { default as Section37L } from './Section37L';
56
58
  export { default as SectionL } from './SectionL';
57
- export { default as SelectL } from './SelectL';
58
59
  export { default as ShowL } from './ShowL';
60
+ export { default as SelectL } from './SelectL';
61
+ export { default as SliderL } from './SliderL';
59
62
  export { default as StackedL } from './StackedL';
60
- export { default as TableL } from './TableL';
61
63
  export { default as SpinnerL } from './SpinnerL';
62
- export { default as TextareaL } from './TextareaL';
63
64
  export { default as TextL } from './TextL';
65
+ export { default as TextareaL } from './TextareaL';
66
+ export { default as TableL } from './TableL';
64
67
  export { default as TooltipL } from './TooltipL';
65
- export { default as WarningL } from './WarningL';
66
68
  export { default as VideoL } from './VideoL';
67
- export { default as SliderL } from './SliderL';
68
- export { default as RadioL } from './RadioL';
69
- export { default as RelationOneManyL } from './RelationOneManyL';
69
+ export { default as WarningL } from './WarningL';
@@ -1,69 +1,69 @@
1
- export { default as AddL } from './AddL';
2
1
  export { default as BrowserL } from './BrowserL';
3
2
  export { default as ButtonL } from './ButtonL';
3
+ export { default as AddL } from './AddL';
4
4
  export { default as ButtonSubmitL } from './ButtonSubmitL';
5
- export { default as CloseL } from './CloseL';
6
5
  export { default as CheckL } from './CheckL';
7
6
  export { default as CheckboxL } from './CheckboxL';
8
- export { default as ColumnL } from './ColumnL';
7
+ export { default as CloseL } from './CloseL';
9
8
  export { default as ComboL } from './ComboL';
10
- export { default as DividerL } from './DividerL';
11
9
  export { default as FileTypePictureL } from './FileTypePictureL';
10
+ export { default as ColumnL } from './ColumnL';
11
+ export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
12
12
  export { default as CountdownL } from './CountdownL';
13
13
  export { default as FolderL } from './FolderL';
14
- export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
15
- export { default as FolderPlainL } from './FolderPlainL';
14
+ export { default as DividerL } from './DividerL';
16
15
  export { default as FolderPredefinedL } from './FolderPredefinedL';
16
+ export { default as FormEditL } from './FormEditL';
17
+ export { default as FolderPlainL } from './FolderPlainL';
18
+ export { default as HashL } from './HashL';
17
19
  export { default as FormGroupL } from './FormGroupL';
18
- export { default as HideL } from './HideL';
19
20
  export { default as FormL } from './FormL';
20
- export { default as ImagePotraitL } from './ImagePotraitL';
21
- export { default as HashL } from './HashL';
21
+ export { default as HideL } from './HideL';
22
+ export { default as ImageLandscapeL } from './ImageLandscapeL';
23
+ export { default as ImageL } from './ImageL';
22
24
  export { default as ImageUrlL } from './ImageUrlL';
23
25
  export { default as InboxNoResultsL } from './InboxNoResultsL';
26
+ export { default as ImagePotraitL } from './ImagePotraitL';
24
27
  export { default as InfoL } from './InfoL';
25
- export { default as InputL } from './InputL';
26
28
  export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
27
- export { default as LandingPageL } from './LandingPageL';
29
+ export { default as InputL } from './InputL';
28
30
  export { default as LabelL } from './LabelL';
29
- export { default as LinkL } from './LinkL';
31
+ export { default as LandingPageL } from './LandingPageL';
30
32
  export { default as LineL } from './LineL';
33
+ export { default as LinkL } from './LinkL';
31
34
  export { default as MobileBlockL } from './MobileBlockL';
32
- export { default as LocationL } from './LocationL';
33
- export { default as MobileClickL } from './MobileClickL';
34
35
  export { default as MobileLayout1L } from './MobileLayout1L';
35
- export { default as MobileLayout3L } from './MobileLayout3L';
36
+ export { default as MobileLayout2L } from './MobileLayout2L';
37
+ export { default as MobileClickL } from './MobileClickL';
36
38
  export { default as MobileLayout4L } from './MobileLayout4L';
39
+ export { default as MobileLayout3L } from './MobileLayout3L';
37
40
  export { default as MobileLinkL } from './MobileLinkL';
41
+ export { default as LocationL } from './LocationL';
38
42
  export { default as MobileUrlL } from './MobileUrlL';
39
- export { default as MobileLayout2L } from './MobileLayout2L';
40
- export { default as NavbarL } from './NavbarL';
41
43
  export { default as MultilineL } from './MultilineL';
42
- export { default as NoData } from './NoData';
44
+ export { default as NavbarL } from './NavbarL';
43
45
  export { default as NoPermissionL } from './NoPermissionL';
44
- export { default as PieL } from './PieL';
45
- export { default as FormEditL } from './FormEditL';
46
+ export { default as NoData } from './NoData';
46
47
  export { default as QuoteL } from './QuoteL';
48
+ export { default as RadioL } from './RadioL';
49
+ export { default as PieL } from './PieL';
47
50
  export { default as RelationManyManyL } from './RelationManyManyL';
48
51
  export { default as RelationManyOneL } from './RelationManyOneL';
49
- export { default as ImageL } from './ImageL';
50
- export { default as SearchNoResultsL } from './SearchNoResultsL';
51
- export { default as ImageLandscapeL } from './ImageLandscapeL';
52
52
  export { default as RelationOneOneL } from './RelationOneOneL';
53
- export { default as Section13L } from './Section13L';
53
+ export { default as SearchNoResultsL } from './SearchNoResultsL';
54
54
  export { default as Section12L } from './Section12L';
55
+ export { default as RelationOneManyL } from './RelationOneManyL';
56
+ export { default as Section13L } from './Section13L';
55
57
  export { default as Section37L } from './Section37L';
56
58
  export { default as SectionL } from './SectionL';
57
- export { default as SelectL } from './SelectL';
58
59
  export { default as ShowL } from './ShowL';
60
+ export { default as SelectL } from './SelectL';
61
+ export { default as SliderL } from './SliderL';
59
62
  export { default as StackedL } from './StackedL';
60
- export { default as TableL } from './TableL';
61
63
  export { default as SpinnerL } from './SpinnerL';
62
- export { default as TextareaL } from './TextareaL';
63
64
  export { default as TextL } from './TextL';
65
+ export { default as TextareaL } from './TextareaL';
66
+ export { default as TableL } from './TableL';
64
67
  export { default as TooltipL } from './TooltipL';
65
- export { default as WarningL } from './WarningL';
66
68
  export { default as VideoL } from './VideoL';
67
- export { default as SliderL } from './SliderL';
68
- export { default as RadioL } from './RadioL';
69
- export { default as RelationOneManyL } from './RelationOneManyL';
69
+ export { default as WarningL } from './WarningL';
@@ -2,97 +2,97 @@ export { default as AbTestXl } from './AbTestXl';
2
2
  export { default as AddXl } from './AddXl';
3
3
  export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
4
4
  export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
5
- export { default as AfterEventXl } from './AfterEventXl';
5
+ export { default as ApiXl } from './ApiXl';
6
6
  export { default as AttributeXl } from './AttributeXl';
7
+ export { default as AfterEventXl } from './AfterEventXl';
7
8
  export { default as BasicBuilderXl } from './BasicBuilderXl';
8
- export { default as BillingXl } from './BillingXl';
9
9
  export { default as BasketCheckXl } from './BasketCheckXl';
10
- export { default as BrowserCloseXl } from './BrowserCloseXl';
11
10
  export { default as BeforeEventXl } from './BeforeEventXl';
11
+ export { default as BrowserCloseXl } from './BrowserCloseXl';
12
+ export { default as BillingXl } from './BillingXl';
12
13
  export { default as BrowserLandingXl } from './BrowserLandingXl';
13
14
  export { default as BrowserCodeXl } from './BrowserCodeXl';
14
15
  export { default as BrowserScrollXl } from './BrowserScrollXl';
15
16
  export { default as CalculatorXl } from './CalculatorXl';
17
+ export { default as CalendarScheduleXl } from './CalendarScheduleXl';
16
18
  export { default as BulbEditXl } from './BulbEditXl';
17
19
  export { default as CalendarIntervalXl } from './CalendarIntervalXl';
18
- export { default as CalendarScheduleXl } from './CalendarScheduleXl';
19
20
  export { default as CalendarXl } from './CalendarXl';
20
21
  export { default as CardAeXl } from './CardAeXl';
21
22
  export { default as CardVisaXl } from './CardVisaXl';
22
23
  export { default as CartAddXl } from './CartAddXl';
23
- export { default as CheckOutXl } from './CheckOutXl';
24
+ export { default as CloneNodesXl } from './CloneNodesXl';
24
25
  export { default as CheckInXl } from './CheckInXl';
25
- export { default as CheckXl } from './CheckXl';
26
- export { default as ClassificationXl } from './ClassificationXl';
27
26
  export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
28
- export { default as CouponXl } from './CouponXl';
27
+ export { default as CheckOutXl } from './CheckOutXl';
28
+ export { default as CheckXl } from './CheckXl';
29
29
  export { default as CompareXl } from './CompareXl';
30
- export { default as CloneNodesXl } from './CloneNodesXl';
30
+ export { default as CouponXl } from './CouponXl';
31
31
  export { default as CupXl } from './CupXl';
32
+ export { default as ClassificationXl } from './ClassificationXl';
32
33
  export { default as DiscountXl } from './DiscountXl';
33
34
  export { default as EventXl } from './EventXl';
34
35
  export { default as FileUpXl } from './FileUpXl';
35
- export { default as FileUrlXl } from './FileUrlXl';
36
36
  export { default as FileDownXl } from './FileDownXl';
37
- export { default as FirstRunXl } from './FirstRunXl';
38
- export { default as FolderCheckXl } from './FolderCheckXl';
37
+ export { default as FileUrlXl } from './FileUrlXl';
39
38
  export { default as FileXl } from './FileXl';
39
+ export { default as FolderCheckXl } from './FolderCheckXl';
40
+ export { default as FirstRunXl } from './FirstRunXl';
40
41
  export { default as FileZipXl } from './FileZipXl';
41
42
  export { default as FolderStarXl } from './FolderStarXl';
42
43
  export { default as FolderUserXl } from './FolderUserXl';
43
- export { default as FormulaXl } from './FormulaXl';
44
44
  export { default as FormXl } from './FormXl';
45
- export { default as FunctionXl } from './FunctionXl';
46
- export { default as GemsXl } from './GemsXl';
47
- export { default as InfoXl } from './InfoXl';
48
45
  export { default as FolderXl } from './FolderXl';
46
+ export { default as FormulaXl } from './FormulaXl';
47
+ export { default as GemsXl } from './GemsXl';
48
+ export { default as FunctionXl } from './FunctionXl';
49
49
  export { default as InboxNoResultsXl } from './InboxNoResultsXl';
50
50
  export { default as InsertObjectXl } from './InsertObjectXl';
51
51
  export { default as IntegrationXl } from './IntegrationXl';
52
+ export { default as InfoXl } from './InfoXl';
52
53
  export { default as IntegrationsXl } from './IntegrationsXl';
54
+ export { default as LaptopAiXl } from './LaptopAiXl';
53
55
  export { default as LaptopTargetXl } from './LaptopTargetXl';
54
- export { default as ApiXl } from './ApiXl';
55
- export { default as LoyalityBoostXl } from './LoyalityBoostXl';
56
56
  export { default as LaunchXl } from './LaunchXl';
57
- export { default as LaptopAiXl } from './LaptopAiXl';
57
+ export { default as MetaXl } from './MetaXl';
58
58
  export { default as MarketingAutomationXl } from './MarketingAutomationXl';
59
59
  export { default as MessageXl } from './MessageXl';
60
- export { default as MetaXl } from './MetaXl';
61
- export { default as MobilePromotionXl } from './MobilePromotionXl';
62
60
  export { default as MobileBannerXl } from './MobileBannerXl';
61
+ export { default as LoyalityBoostXl } from './LoyalityBoostXl';
62
+ export { default as MobilePromotionXl } from './MobilePromotionXl';
63
63
  export { default as MobileStepsXl } from './MobileStepsXl';
64
64
  export { default as MultivalueXl } from './MultivalueXl';
65
- export { default as NetworkFileXl } from './NetworkFileXl';
66
65
  export { default as MobileUpdateXl } from './MobileUpdateXl';
66
+ export { default as NetworkFileXl } from './NetworkFileXl';
67
67
  export { default as NoPermissionXl } from './NoPermissionXl';
68
- export { default as PauseXl } from './PauseXl';
69
68
  export { default as NotificationsEditXl } from './NotificationsEditXl';
70
69
  export { default as ProductsBundleXl } from './ProductsBundleXl';
71
70
  export { default as PlayXl } from './PlayXl';
71
+ export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
72
+ export { default as PauseXl } from './PauseXl';
72
73
  export { default as ProductsFeedXl } from './ProductsFeedXl';
73
74
  export { default as ProductsSimilarXl } from './ProductsSimilarXl';
74
75
  export { default as PushXl } from './PushXl';
75
- export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
76
76
  export { default as RecentInteractionsXl } from './RecentInteractionsXl';
77
- export { default as SearchNoResultsXl } from './SearchNoResultsXl';
78
77
  export { default as ReggressionXl } from './ReggressionXl';
79
- export { default as ShowXl } from './ShowXl';
80
- export { default as SectionXl } from './SectionXl';
81
78
  export { default as SearchHybridXl } from './SearchHybridXl';
82
- export { default as SearchSemanticXl } from './SearchSemanticXl';
83
79
  export { default as SearchKeywordsXl } from './SearchKeywordsXl';
84
- export { default as StopXl } from './StopXl';
85
- export { default as TargetXl } from './TargetXl';
80
+ export { default as SearchNoResultsXl } from './SearchNoResultsXl';
81
+ export { default as SectionXl } from './SectionXl';
86
82
  export { default as SilentPushXl } from './SilentPushXl';
83
+ export { default as ShowXl } from './ShowXl';
84
+ export { default as StopXl } from './StopXl';
85
+ export { default as SearchSemanticXl } from './SearchSemanticXl';
87
86
  export { default as SmsXl } from './SmsXl';
88
- export { default as UserIdXl } from './UserIdXl';
89
- export { default as UserCircleXl } from './UserCircleXl';
87
+ export { default as ToolsXl } from './ToolsXl';
88
+ export { default as TargetXl } from './TargetXl';
90
89
  export { default as UserCircleUpXl } from './UserCircleUpXl';
91
- export { default as VisualEditorStarXl } from './VisualEditorStarXl';
90
+ export { default as UserCircleXl } from './UserCircleXl';
91
+ export { default as UserIdXl } from './UserIdXl';
92
92
  export { default as VisualEditorXl } from './VisualEditorXl';
93
+ export { default as WarningXl } from './WarningXl';
93
94
  export { default as VoucherXl } from './VoucherXl';
94
- export { default as ToolsXl } from './ToolsXl';
95
95
  export { default as WebhookXl } from './WebhookXl';
96
- export { default as WarningXl } from './WarningXl';
97
- export { default as WthStarsXl } from './WthStarsXl';
98
96
  export { default as WeblayerXl } from './WeblayerXl';
97
+ export { default as VisualEditorStarXl } from './VisualEditorStarXl';
98
+ export { default as WthStarsXl } from './WthStarsXl';
@@ -2,97 +2,97 @@ export { default as AbTestXl } from './AbTestXl';
2
2
  export { default as AddXl } from './AddXl';
3
3
  export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
4
4
  export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
5
- export { default as AfterEventXl } from './AfterEventXl';
5
+ export { default as ApiXl } from './ApiXl';
6
6
  export { default as AttributeXl } from './AttributeXl';
7
+ export { default as AfterEventXl } from './AfterEventXl';
7
8
  export { default as BasicBuilderXl } from './BasicBuilderXl';
8
- export { default as BillingXl } from './BillingXl';
9
9
  export { default as BasketCheckXl } from './BasketCheckXl';
10
- export { default as BrowserCloseXl } from './BrowserCloseXl';
11
10
  export { default as BeforeEventXl } from './BeforeEventXl';
11
+ export { default as BrowserCloseXl } from './BrowserCloseXl';
12
+ export { default as BillingXl } from './BillingXl';
12
13
  export { default as BrowserLandingXl } from './BrowserLandingXl';
13
14
  export { default as BrowserCodeXl } from './BrowserCodeXl';
14
15
  export { default as BrowserScrollXl } from './BrowserScrollXl';
15
16
  export { default as CalculatorXl } from './CalculatorXl';
17
+ export { default as CalendarScheduleXl } from './CalendarScheduleXl';
16
18
  export { default as BulbEditXl } from './BulbEditXl';
17
19
  export { default as CalendarIntervalXl } from './CalendarIntervalXl';
18
- export { default as CalendarScheduleXl } from './CalendarScheduleXl';
19
20
  export { default as CalendarXl } from './CalendarXl';
20
21
  export { default as CardAeXl } from './CardAeXl';
21
22
  export { default as CardVisaXl } from './CardVisaXl';
22
23
  export { default as CartAddXl } from './CartAddXl';
23
- export { default as CheckOutXl } from './CheckOutXl';
24
+ export { default as CloneNodesXl } from './CloneNodesXl';
24
25
  export { default as CheckInXl } from './CheckInXl';
25
- export { default as CheckXl } from './CheckXl';
26
- export { default as ClassificationXl } from './ClassificationXl';
27
26
  export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
28
- export { default as CouponXl } from './CouponXl';
27
+ export { default as CheckOutXl } from './CheckOutXl';
28
+ export { default as CheckXl } from './CheckXl';
29
29
  export { default as CompareXl } from './CompareXl';
30
- export { default as CloneNodesXl } from './CloneNodesXl';
30
+ export { default as CouponXl } from './CouponXl';
31
31
  export { default as CupXl } from './CupXl';
32
+ export { default as ClassificationXl } from './ClassificationXl';
32
33
  export { default as DiscountXl } from './DiscountXl';
33
34
  export { default as EventXl } from './EventXl';
34
35
  export { default as FileUpXl } from './FileUpXl';
35
- export { default as FileUrlXl } from './FileUrlXl';
36
36
  export { default as FileDownXl } from './FileDownXl';
37
- export { default as FirstRunXl } from './FirstRunXl';
38
- export { default as FolderCheckXl } from './FolderCheckXl';
37
+ export { default as FileUrlXl } from './FileUrlXl';
39
38
  export { default as FileXl } from './FileXl';
39
+ export { default as FolderCheckXl } from './FolderCheckXl';
40
+ export { default as FirstRunXl } from './FirstRunXl';
40
41
  export { default as FileZipXl } from './FileZipXl';
41
42
  export { default as FolderStarXl } from './FolderStarXl';
42
43
  export { default as FolderUserXl } from './FolderUserXl';
43
- export { default as FormulaXl } from './FormulaXl';
44
44
  export { default as FormXl } from './FormXl';
45
- export { default as FunctionXl } from './FunctionXl';
46
- export { default as GemsXl } from './GemsXl';
47
- export { default as InfoXl } from './InfoXl';
48
45
  export { default as FolderXl } from './FolderXl';
46
+ export { default as FormulaXl } from './FormulaXl';
47
+ export { default as GemsXl } from './GemsXl';
48
+ export { default as FunctionXl } from './FunctionXl';
49
49
  export { default as InboxNoResultsXl } from './InboxNoResultsXl';
50
50
  export { default as InsertObjectXl } from './InsertObjectXl';
51
51
  export { default as IntegrationXl } from './IntegrationXl';
52
+ export { default as InfoXl } from './InfoXl';
52
53
  export { default as IntegrationsXl } from './IntegrationsXl';
54
+ export { default as LaptopAiXl } from './LaptopAiXl';
53
55
  export { default as LaptopTargetXl } from './LaptopTargetXl';
54
- export { default as ApiXl } from './ApiXl';
55
- export { default as LoyalityBoostXl } from './LoyalityBoostXl';
56
56
  export { default as LaunchXl } from './LaunchXl';
57
- export { default as LaptopAiXl } from './LaptopAiXl';
57
+ export { default as MetaXl } from './MetaXl';
58
58
  export { default as MarketingAutomationXl } from './MarketingAutomationXl';
59
59
  export { default as MessageXl } from './MessageXl';
60
- export { default as MetaXl } from './MetaXl';
61
- export { default as MobilePromotionXl } from './MobilePromotionXl';
62
60
  export { default as MobileBannerXl } from './MobileBannerXl';
61
+ export { default as LoyalityBoostXl } from './LoyalityBoostXl';
62
+ export { default as MobilePromotionXl } from './MobilePromotionXl';
63
63
  export { default as MobileStepsXl } from './MobileStepsXl';
64
64
  export { default as MultivalueXl } from './MultivalueXl';
65
- export { default as NetworkFileXl } from './NetworkFileXl';
66
65
  export { default as MobileUpdateXl } from './MobileUpdateXl';
66
+ export { default as NetworkFileXl } from './NetworkFileXl';
67
67
  export { default as NoPermissionXl } from './NoPermissionXl';
68
- export { default as PauseXl } from './PauseXl';
69
68
  export { default as NotificationsEditXl } from './NotificationsEditXl';
70
69
  export { default as ProductsBundleXl } from './ProductsBundleXl';
71
70
  export { default as PlayXl } from './PlayXl';
71
+ export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
72
+ export { default as PauseXl } from './PauseXl';
72
73
  export { default as ProductsFeedXl } from './ProductsFeedXl';
73
74
  export { default as ProductsSimilarXl } from './ProductsSimilarXl';
74
75
  export { default as PushXl } from './PushXl';
75
- export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
76
76
  export { default as RecentInteractionsXl } from './RecentInteractionsXl';
77
- export { default as SearchNoResultsXl } from './SearchNoResultsXl';
78
77
  export { default as ReggressionXl } from './ReggressionXl';
79
- export { default as ShowXl } from './ShowXl';
80
- export { default as SectionXl } from './SectionXl';
81
78
  export { default as SearchHybridXl } from './SearchHybridXl';
82
- export { default as SearchSemanticXl } from './SearchSemanticXl';
83
79
  export { default as SearchKeywordsXl } from './SearchKeywordsXl';
84
- export { default as StopXl } from './StopXl';
85
- export { default as TargetXl } from './TargetXl';
80
+ export { default as SearchNoResultsXl } from './SearchNoResultsXl';
81
+ export { default as SectionXl } from './SectionXl';
86
82
  export { default as SilentPushXl } from './SilentPushXl';
83
+ export { default as ShowXl } from './ShowXl';
84
+ export { default as StopXl } from './StopXl';
85
+ export { default as SearchSemanticXl } from './SearchSemanticXl';
87
86
  export { default as SmsXl } from './SmsXl';
88
- export { default as UserIdXl } from './UserIdXl';
89
- export { default as UserCircleXl } from './UserCircleXl';
87
+ export { default as ToolsXl } from './ToolsXl';
88
+ export { default as TargetXl } from './TargetXl';
90
89
  export { default as UserCircleUpXl } from './UserCircleUpXl';
91
- export { default as VisualEditorStarXl } from './VisualEditorStarXl';
90
+ export { default as UserCircleXl } from './UserCircleXl';
91
+ export { default as UserIdXl } from './UserIdXl';
92
92
  export { default as VisualEditorXl } from './VisualEditorXl';
93
+ export { default as WarningXl } from './WarningXl';
93
94
  export { default as VoucherXl } from './VoucherXl';
94
- export { default as ToolsXl } from './ToolsXl';
95
95
  export { default as WebhookXl } from './WebhookXl';
96
- export { default as WarningXl } from './WarningXl';
97
- export { default as WthStarsXl } from './WthStarsXl';
98
96
  export { default as WeblayerXl } from './WeblayerXl';
97
+ export { default as VisualEditorStarXl } from './VisualEditorStarXl';
98
+ export { default as WthStarsXl } from './WthStarsXl';