@synerise/ds-icon 1.7.2 → 1.8.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 CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.8.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.7.3...@synerise/ds-icon@1.8.0) (2025-11-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **dropdown:** dropdownMenu component ([f0ec827](https://github.com/Synerise/synerise-design/commit/f0ec82792cdcb021fa9a454912f6e7a892e53895))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.7.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.7.2...@synerise/ds-icon@1.7.3) (2025-10-10)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-icon
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.7.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.7.1...@synerise/ds-icon@1.7.2) (2025-09-16)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-icon
package/dist/Icon.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  import React from 'react';
2
- import { type IconProps } from './Icon.types';
3
- declare const Icon: ({ name, component, className, ...rest }: IconProps) => React.JSX.Element;
2
+ declare const Icon: React.ForwardRefExoticComponent<import("./Icon.types").BaseIconProps & Omit<React.HTMLAttributes<HTMLDivElement>, keyof import("./Icon.types").BaseIconProps> & import("@synerise/ds-utils").DataAttributes & React.RefAttributes<HTMLDivElement>>;
4
3
  export default Icon;
package/dist/Icon.js CHANGED
@@ -1,16 +1,17 @@
1
1
  var _excluded = ["name", "component", "className"];
2
2
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
3
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import * as S from './Icon.styles';
6
- var Icon = function Icon(_ref) {
6
+ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
7
7
  var name = _ref.name,
8
8
  component = _ref.component,
9
9
  className = _ref.className,
10
10
  rest = _objectWithoutPropertiesLoose(_ref, _excluded);
11
11
  return /*#__PURE__*/React.createElement(S.IconContainer, _extends({
12
12
  className: "ds-icon " + (className || ''),
13
- title: name
13
+ title: name,
14
+ ref: ref
14
15
  }, rest), component);
15
- };
16
+ });
16
17
  export default Icon;
@@ -1,70 +1,70 @@
1
1
  export { default as WarningL } from './WarningL';
2
- export { default as TooltipL } from './TooltipL';
3
2
  export { default as VideoL } from './VideoL';
3
+ export { default as TooltipL } from './TooltipL';
4
+ export { default as TableL } from './TableL';
4
5
  export { default as TextL } from './TextL';
5
6
  export { default as TextareaL } from './TextareaL';
6
- export { default as TimeL } from './TimeL';
7
- export { default as TableL } from './TableL';
8
- export { default as SpinnerL } from './SpinnerL';
9
7
  export { default as StackedL } from './StackedL';
10
- export { default as ShowL } from './ShowL';
8
+ export { default as TimeL } from './TimeL';
11
9
  export { default as SliderL } from './SliderL';
10
+ export { default as SpinnerL } from './SpinnerL';
12
11
  export { default as SectionL } from './SectionL';
13
12
  export { default as SelectL } from './SelectL';
14
- export { default as Section13L } from './Section13L';
13
+ export { default as ShowL } from './ShowL';
14
+ export { default as Section37L } from './Section37L';
15
+ export { default as RelationOneManyL } from './RelationOneManyL';
15
16
  export { default as Section12L } from './Section12L';
16
17
  export { default as SearchNoResultsL } from './SearchNoResultsL';
17
- export { default as Section37L } from './Section37L';
18
- export { default as RelationManyOneL } from './RelationManyOneL';
18
+ export { default as Section13L } from './Section13L';
19
19
  export { default as RelationOneOneL } from './RelationOneOneL';
20
- export { default as RelationOneManyL } from './RelationOneManyL';
21
20
  export { default as RelationManyManyL } from './RelationManyManyL';
21
+ export { default as RelationManyOneL } from './RelationManyOneL';
22
22
  export { default as RadioL } from './RadioL';
23
+ export { default as NoPermissionL } from './NoPermissionL';
23
24
  export { default as QuoteL } from './QuoteL';
25
+ export { default as NavbarL } from './NavbarL';
24
26
  export { default as PieL } from './PieL';
27
+ export { default as MobileLayout1L } from './MobileLayout1L';
28
+ export { default as MultilineL } from './MultilineL';
25
29
  export { default as NoData } from './NoData';
26
- export { default as NoPermissionL } from './NoPermissionL';
27
- export { default as NavbarL } from './NavbarL';
28
30
  export { default as MobileUrlL } from './MobileUrlL';
29
- export { default as MultilineL } from './MultilineL';
30
- export { default as MobileLinkL } from './MobileLinkL';
31
- export { default as MobileLayout4L } from './MobileLayout4L';
32
- export { default as MobileLayout3L } from './MobileLayout3L';
33
- export { default as MobileLayout1L } from './MobileLayout1L';
34
31
  export { default as MobileLayout2L } from './MobileLayout2L';
35
- export { default as LocationL } from './LocationL';
36
32
  export { default as MobileClickL } from './MobileClickL';
33
+ export { default as MobileLayout3L } from './MobileLayout3L';
37
34
  export { default as MobileBlockL } from './MobileBlockL';
38
- export { default as LabelL } from './LabelL';
39
35
  export { default as LinkL } from './LinkL';
36
+ export { default as LineL } from './LineL';
37
+ export { default as LocationL } from './LocationL';
38
+ export { default as LandingPageL } from './LandingPageL';
40
39
  export { default as InputL } from './InputL';
41
- export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
42
- export { default as InfoL } from './InfoL';
40
+ export { default as MobileLayout4L } from './MobileLayout4L';
41
+ export { default as LabelL } from './LabelL';
43
42
  export { default as InboxNoResultsL } from './InboxNoResultsL';
43
+ export { default as MobileLinkL } from './MobileLinkL';
44
+ export { default as InfoL } from './InfoL';
45
+ export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
44
46
  export { default as ImageUrlL } from './ImageUrlL';
47
+ export { default as ImageL } from './ImageL';
45
48
  export { default as ImagePotraitL } from './ImagePotraitL';
46
49
  export { default as ImageLandscapeL } from './ImageLandscapeL';
47
- export { default as ImageL } from './ImageL';
48
- export { default as HideL } from './HideL';
49
- export { default as FormL } from './FormL';
50
50
  export { default as HashL } from './HashL';
51
+ export { default as FolderL } from './FolderL';
52
+ export { default as FormL } from './FormL';
53
+ export { default as HideL } from './HideL';
51
54
  export { default as FormGroupL } from './FormGroupL';
52
55
  export { default as FolderPredefinedL } from './FolderPredefinedL';
53
56
  export { default as FormEditL } from './FormEditL';
54
- export { default as FolderL } from './FolderL';
55
57
  export { default as FolderPlainL } from './FolderPlainL';
56
58
  export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
57
59
  export { default as FileTypePictureL } from './FileTypePictureL';
58
- export { default as DividerL } from './DividerL';
59
60
  export { default as CountdownL } from './CountdownL';
60
- export { default as ColumnL } from './ColumnL';
61
+ export { default as DividerL } from './DividerL';
61
62
  export { default as ComboL } from './ComboL';
62
- export { default as CloseL } from './CloseL';
63
63
  export { default as CheckboxL } from './CheckboxL';
64
+ export { default as CloseL } from './CloseL';
64
65
  export { default as CheckL } from './CheckL';
65
- export { default as ButtonL } from './ButtonL';
66
- export { default as ButtonSubmitL } from './ButtonSubmitL';
66
+ export { default as ColumnL } from './ColumnL';
67
67
  export { default as BrowserL } from './BrowserL';
68
+ export { default as ButtonSubmitL } from './ButtonSubmitL';
69
+ export { default as ButtonL } from './ButtonL';
68
70
  export { default as AddL } from './AddL';
69
- export { default as LineL } from './LineL';
70
- export { default as LandingPageL } from './LandingPageL';
@@ -1,70 +1,70 @@
1
1
  export { default as WarningL } from './WarningL';
2
- export { default as TooltipL } from './TooltipL';
3
2
  export { default as VideoL } from './VideoL';
3
+ export { default as TooltipL } from './TooltipL';
4
+ export { default as TableL } from './TableL';
4
5
  export { default as TextL } from './TextL';
5
6
  export { default as TextareaL } from './TextareaL';
6
- export { default as TimeL } from './TimeL';
7
- export { default as TableL } from './TableL';
8
- export { default as SpinnerL } from './SpinnerL';
9
7
  export { default as StackedL } from './StackedL';
10
- export { default as ShowL } from './ShowL';
8
+ export { default as TimeL } from './TimeL';
11
9
  export { default as SliderL } from './SliderL';
10
+ export { default as SpinnerL } from './SpinnerL';
12
11
  export { default as SectionL } from './SectionL';
13
12
  export { default as SelectL } from './SelectL';
14
- export { default as Section13L } from './Section13L';
13
+ export { default as ShowL } from './ShowL';
14
+ export { default as Section37L } from './Section37L';
15
+ export { default as RelationOneManyL } from './RelationOneManyL';
15
16
  export { default as Section12L } from './Section12L';
16
17
  export { default as SearchNoResultsL } from './SearchNoResultsL';
17
- export { default as Section37L } from './Section37L';
18
- export { default as RelationManyOneL } from './RelationManyOneL';
18
+ export { default as Section13L } from './Section13L';
19
19
  export { default as RelationOneOneL } from './RelationOneOneL';
20
- export { default as RelationOneManyL } from './RelationOneManyL';
21
20
  export { default as RelationManyManyL } from './RelationManyManyL';
21
+ export { default as RelationManyOneL } from './RelationManyOneL';
22
22
  export { default as RadioL } from './RadioL';
23
+ export { default as NoPermissionL } from './NoPermissionL';
23
24
  export { default as QuoteL } from './QuoteL';
25
+ export { default as NavbarL } from './NavbarL';
24
26
  export { default as PieL } from './PieL';
27
+ export { default as MobileLayout1L } from './MobileLayout1L';
28
+ export { default as MultilineL } from './MultilineL';
25
29
  export { default as NoData } from './NoData';
26
- export { default as NoPermissionL } from './NoPermissionL';
27
- export { default as NavbarL } from './NavbarL';
28
30
  export { default as MobileUrlL } from './MobileUrlL';
29
- export { default as MultilineL } from './MultilineL';
30
- export { default as MobileLinkL } from './MobileLinkL';
31
- export { default as MobileLayout4L } from './MobileLayout4L';
32
- export { default as MobileLayout3L } from './MobileLayout3L';
33
- export { default as MobileLayout1L } from './MobileLayout1L';
34
31
  export { default as MobileLayout2L } from './MobileLayout2L';
35
- export { default as LocationL } from './LocationL';
36
32
  export { default as MobileClickL } from './MobileClickL';
33
+ export { default as MobileLayout3L } from './MobileLayout3L';
37
34
  export { default as MobileBlockL } from './MobileBlockL';
38
- export { default as LabelL } from './LabelL';
39
35
  export { default as LinkL } from './LinkL';
36
+ export { default as LineL } from './LineL';
37
+ export { default as LocationL } from './LocationL';
38
+ export { default as LandingPageL } from './LandingPageL';
40
39
  export { default as InputL } from './InputL';
41
- export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
42
- export { default as InfoL } from './InfoL';
40
+ export { default as MobileLayout4L } from './MobileLayout4L';
41
+ export { default as LabelL } from './LabelL';
43
42
  export { default as InboxNoResultsL } from './InboxNoResultsL';
43
+ export { default as MobileLinkL } from './MobileLinkL';
44
+ export { default as InfoL } from './InfoL';
45
+ export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
44
46
  export { default as ImageUrlL } from './ImageUrlL';
47
+ export { default as ImageL } from './ImageL';
45
48
  export { default as ImagePotraitL } from './ImagePotraitL';
46
49
  export { default as ImageLandscapeL } from './ImageLandscapeL';
47
- export { default as ImageL } from './ImageL';
48
- export { default as HideL } from './HideL';
49
- export { default as FormL } from './FormL';
50
50
  export { default as HashL } from './HashL';
51
+ export { default as FolderL } from './FolderL';
52
+ export { default as FormL } from './FormL';
53
+ export { default as HideL } from './HideL';
51
54
  export { default as FormGroupL } from './FormGroupL';
52
55
  export { default as FolderPredefinedL } from './FolderPredefinedL';
53
56
  export { default as FormEditL } from './FormEditL';
54
- export { default as FolderL } from './FolderL';
55
57
  export { default as FolderPlainL } from './FolderPlainL';
56
58
  export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
57
59
  export { default as FileTypePictureL } from './FileTypePictureL';
58
- export { default as DividerL } from './DividerL';
59
60
  export { default as CountdownL } from './CountdownL';
60
- export { default as ColumnL } from './ColumnL';
61
+ export { default as DividerL } from './DividerL';
61
62
  export { default as ComboL } from './ComboL';
62
- export { default as CloseL } from './CloseL';
63
63
  export { default as CheckboxL } from './CheckboxL';
64
+ export { default as CloseL } from './CloseL';
64
65
  export { default as CheckL } from './CheckL';
65
- export { default as ButtonL } from './ButtonL';
66
- export { default as ButtonSubmitL } from './ButtonSubmitL';
66
+ export { default as ColumnL } from './ColumnL';
67
67
  export { default as BrowserL } from './BrowserL';
68
- export { default as AddL } from './AddL';
69
- export { default as LineL } from './LineL';
70
- export { default as LandingPageL } from './LandingPageL';
68
+ export { default as ButtonSubmitL } from './ButtonSubmitL';
69
+ export { default as ButtonL } from './ButtonL';
70
+ export { default as AddL } from './AddL';
@@ -1,103 +1,103 @@
1
- export { default as WebhookXl } from './WebhookXl';
2
- export { default as WthStarsXl } from './WthStarsXl';
3
1
  export { default as WeblayerXl } from './WeblayerXl';
4
2
  export { default as WarningXl } from './WarningXl';
5
3
  export { default as VoucherXl } from './VoucherXl';
4
+ export { default as WthStarsXl } from './WthStarsXl';
5
+ export { default as WebhookXl } from './WebhookXl';
6
6
  export { default as VisualEditorXl } from './VisualEditorXl';
7
7
  export { default as VisualEditorStarXl } from './VisualEditorStarXl';
8
- export { default as UserCircleXl } from './UserCircleXl';
9
8
  export { default as UserIdXl } from './UserIdXl';
9
+ export { default as UserCircleXl } from './UserCircleXl';
10
10
  export { default as ToolsXl } from './ToolsXl';
11
11
  export { default as UserCircleUpXl } from './UserCircleUpXl';
12
- export { default as StopXl } from './StopXl';
13
- export { default as TargetXl } from './TargetXl';
14
12
  export { default as SmsXl } from './SmsXl';
13
+ export { default as TargetXl } from './TargetXl';
14
+ export { default as SilentPushXl } from './SilentPushXl';
15
+ export { default as StopXl } from './StopXl';
16
+ export { default as SearchSemanticXl } from './SearchSemanticXl';
15
17
  export { default as ShowXl } from './ShowXl';
16
18
  export { default as SectionXl } from './SectionXl';
17
- export { default as SearchSemanticXl } from './SearchSemanticXl';
18
- export { default as SearchNoResultsXl } from './SearchNoResultsXl';
19
- export { default as SilentPushXl } from './SilentPushXl';
20
19
  export { default as SearchHybridXl } from './SearchHybridXl';
21
- export { default as ReggressionXl } from './ReggressionXl';
20
+ export { default as SearchNoResultsXl } from './SearchNoResultsXl';
22
21
  export { default as SearchKeywordsXl } from './SearchKeywordsXl';
23
- export { default as ProductsSimilarXl } from './ProductsSimilarXl';
22
+ export { default as RecentInteractionsXl } from './RecentInteractionsXl';
24
23
  export { default as PushXl } from './PushXl';
24
+ export { default as ProductsSimilarXl } from './ProductsSimilarXl';
25
+ export { default as ReggressionXl } from './ReggressionXl';
25
26
  export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
26
- export { default as ProductsFeedXl } from './ProductsFeedXl';
27
- export { default as RecentInteractionsXl } from './RecentInteractionsXl';
28
- export { default as NotificationsEditXl } from './NotificationsEditXl';
29
27
  export { default as ProductsBundleXl } from './ProductsBundleXl';
30
28
  export { default as PlayXl } from './PlayXl';
29
+ export { default as ProductsFeedXl } from './ProductsFeedXl';
31
30
  export { default as PauseXl } from './PauseXl';
32
- export { default as NoPermissionXl } from './NoPermissionXl';
33
31
  export { default as NetworkFileXl } from './NetworkFileXl';
34
- export { default as MultivalueXl } from './MultivalueXl';
35
- export { default as MobileUpdateXl } from './MobileUpdateXl';
36
- export { default as MobilePromotionXl } from './MobilePromotionXl';
32
+ export { default as NotificationsEditXl } from './NotificationsEditXl';
33
+ export { default as NoPermissionXl } from './NoPermissionXl';
37
34
  export { default as MobileStepsXl } from './MobileStepsXl';
35
+ export { default as MobileUpdateXl } from './MobileUpdateXl';
38
36
  export { default as MobileBannerXl } from './MobileBannerXl';
39
- export { default as MessageXl } from './MessageXl';
40
- export { default as MetaXl } from './MetaXl';
37
+ export { default as MultivalueXl } from './MultivalueXl';
38
+ export { default as MobilePromotionXl } from './MobilePromotionXl';
41
39
  export { default as MarketingAutomationXl } from './MarketingAutomationXl';
40
+ export { default as MessageXl } from './MessageXl';
42
41
  export { default as LoyalityBoostXl } from './LoyalityBoostXl';
43
42
  export { default as LaunchXl } from './LaunchXl';
44
- export { default as InteractionsXl } from './InteractionsXl';
45
43
  export { default as LaptopTargetXl } from './LaptopTargetXl';
44
+ export { default as MetaXl } from './MetaXl';
46
45
  export { default as LaptopAiXl } from './LaptopAiXl';
47
46
  export { default as IntegrationsXl } from './IntegrationsXl';
48
- export { default as IntegrationXl } from './IntegrationXl';
49
47
  export { default as InsertObjectXl } from './InsertObjectXl';
48
+ export { default as InteractionsXl } from './InteractionsXl';
50
49
  export { default as InfoXl } from './InfoXl';
51
50
  export { default as InboxNoResultsXl } from './InboxNoResultsXl';
51
+ export { default as IntegrationXl } from './IntegrationXl';
52
52
  export { default as FunctionXl } from './FunctionXl';
53
+ export { default as GemsXl } from './GemsXl';
53
54
  export { default as FormulaXl } from './FormulaXl';
54
- export { default as FormXl } from './FormXl';
55
- export { default as FolderXl } from './FolderXl';
56
55
  export { default as FolderUserXl } from './FolderUserXl';
57
- export { default as FolderTagXl } from './FolderTagXl';
58
56
  export { default as FolderStarXl } from './FolderStarXl';
59
- export { default as FolderCartXl } from './FolderCartXl';
57
+ export { default as FolderTagXl } from './FolderTagXl';
60
58
  export { default as FolderCheckXl } from './FolderCheckXl';
61
- export { default as FolderAddXl } from './FolderAddXl';
59
+ export { default as FolderXl } from './FolderXl';
62
60
  export { default as FirstRunXl } from './FirstRunXl';
61
+ export { default as FormXl } from './FormXl';
62
+ export { default as FolderCartXl } from './FolderCartXl';
63
+ export { default as FileUpXl } from './FileUpXl';
64
+ export { default as FolderAddXl } from './FolderAddXl';
63
65
  export { default as FileZipXl } from './FileZipXl';
64
- export { default as FileXl } from './FileXl';
65
66
  export { default as FileUrlXl } from './FileUrlXl';
66
67
  export { default as FileDownXl } from './FileDownXl';
67
- export { default as FileUpXl } from './FileUpXl';
68
68
  export { default as EventXl } from './EventXl';
69
- export { default as ErrorXl } from './ErrorXl';
70
- export { default as DiscountXl } from './DiscountXl';
69
+ export { default as FileXl } from './FileXl';
71
70
  export { default as CupXl } from './CupXl';
72
- export { default as CouponXl } from './CouponXl';
71
+ export { default as DiscountXl } from './DiscountXl';
72
+ export { default as ErrorXl } from './ErrorXl';
73
73
  export { default as CloneNodesXl } from './CloneNodesXl';
74
- export { default as CompareXl } from './CompareXl';
75
74
  export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
76
- export { default as CheckXl } from './CheckXl';
77
- export { default as ClassificationXl } from './ClassificationXl';
75
+ export { default as CompareXl } from './CompareXl';
78
76
  export { default as CheckOutXl } from './CheckOutXl';
79
- export { default as CheckInXl } from './CheckInXl';
80
- export { default as CardVisaXl } from './CardVisaXl';
77
+ export { default as ClassificationXl } from './ClassificationXl';
81
78
  export { default as CartAddXl } from './CartAddXl';
79
+ export { default as CardVisaXl } from './CardVisaXl';
80
+ export { default as CheckXl } from './CheckXl';
81
+ export { default as CheckInXl } from './CheckInXl';
82
82
  export { default as CalendarXl } from './CalendarXl';
83
- export { default as CardAeXl } from './CardAeXl';
84
- export { default as CalendarIntervalXl } from './CalendarIntervalXl';
85
83
  export { default as CalendarScheduleXl } from './CalendarScheduleXl';
86
- export { default as BulbEditXl } from './BulbEditXl';
84
+ export { default as CalendarIntervalXl } from './CalendarIntervalXl';
85
+ export { default as CardAeXl } from './CardAeXl';
86
+ export { default as CouponXl } from './CouponXl';
87
87
  export { default as CalculatorXl } from './CalculatorXl';
88
88
  export { default as BrowserScrollXl } from './BrowserScrollXl';
89
- export { default as BrowserLandingXl } from './BrowserLandingXl';
90
89
  export { default as BrowserCodeXl } from './BrowserCodeXl';
90
+ export { default as BulbEditXl } from './BulbEditXl';
91
+ export { default as BrowserLandingXl } from './BrowserLandingXl';
92
+ export { default as BillingXl } from './BillingXl';
93
+ export { default as BasketCheckXl } from './BasketCheckXl';
91
94
  export { default as BrowserCloseXl } from './BrowserCloseXl';
92
95
  export { default as BeforeEventXl } from './BeforeEventXl';
93
- export { default as BasketCheckXl } from './BasketCheckXl';
94
- export { default as BillingXl } from './BillingXl';
95
- export { default as BasicBuilderXl } from './BasicBuilderXl';
96
96
  export { default as AttributeXl } from './AttributeXl';
97
- export { default as AfterEventXl } from './AfterEventXl';
97
+ export { default as BasicBuilderXl } from './BasicBuilderXl';
98
98
  export { default as ApiXl } from './ApiXl';
99
+ export { default as AfterEventXl } from './AfterEventXl';
99
100
  export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
100
101
  export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
101
- export { default as AbTestXl } from './AbTestXl';
102
102
  export { default as AddXl } from './AddXl';
103
- export { default as GemsXl } from './GemsXl';
103
+ export { default as AbTestXl } from './AbTestXl';
@@ -1,103 +1,103 @@
1
- export { default as WebhookXl } from './WebhookXl';
2
- export { default as WthStarsXl } from './WthStarsXl';
3
1
  export { default as WeblayerXl } from './WeblayerXl';
4
2
  export { default as WarningXl } from './WarningXl';
5
3
  export { default as VoucherXl } from './VoucherXl';
4
+ export { default as WthStarsXl } from './WthStarsXl';
5
+ export { default as WebhookXl } from './WebhookXl';
6
6
  export { default as VisualEditorXl } from './VisualEditorXl';
7
7
  export { default as VisualEditorStarXl } from './VisualEditorStarXl';
8
- export { default as UserCircleXl } from './UserCircleXl';
9
8
  export { default as UserIdXl } from './UserIdXl';
9
+ export { default as UserCircleXl } from './UserCircleXl';
10
10
  export { default as ToolsXl } from './ToolsXl';
11
11
  export { default as UserCircleUpXl } from './UserCircleUpXl';
12
- export { default as StopXl } from './StopXl';
13
- export { default as TargetXl } from './TargetXl';
14
12
  export { default as SmsXl } from './SmsXl';
13
+ export { default as TargetXl } from './TargetXl';
14
+ export { default as SilentPushXl } from './SilentPushXl';
15
+ export { default as StopXl } from './StopXl';
16
+ export { default as SearchSemanticXl } from './SearchSemanticXl';
15
17
  export { default as ShowXl } from './ShowXl';
16
18
  export { default as SectionXl } from './SectionXl';
17
- export { default as SearchSemanticXl } from './SearchSemanticXl';
18
- export { default as SearchNoResultsXl } from './SearchNoResultsXl';
19
- export { default as SilentPushXl } from './SilentPushXl';
20
19
  export { default as SearchHybridXl } from './SearchHybridXl';
21
- export { default as ReggressionXl } from './ReggressionXl';
20
+ export { default as SearchNoResultsXl } from './SearchNoResultsXl';
22
21
  export { default as SearchKeywordsXl } from './SearchKeywordsXl';
23
- export { default as ProductsSimilarXl } from './ProductsSimilarXl';
22
+ export { default as RecentInteractionsXl } from './RecentInteractionsXl';
24
23
  export { default as PushXl } from './PushXl';
24
+ export { default as ProductsSimilarXl } from './ProductsSimilarXl';
25
+ export { default as ReggressionXl } from './ReggressionXl';
25
26
  export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
26
- export { default as ProductsFeedXl } from './ProductsFeedXl';
27
- export { default as RecentInteractionsXl } from './RecentInteractionsXl';
28
- export { default as NotificationsEditXl } from './NotificationsEditXl';
29
27
  export { default as ProductsBundleXl } from './ProductsBundleXl';
30
28
  export { default as PlayXl } from './PlayXl';
29
+ export { default as ProductsFeedXl } from './ProductsFeedXl';
31
30
  export { default as PauseXl } from './PauseXl';
32
- export { default as NoPermissionXl } from './NoPermissionXl';
33
31
  export { default as NetworkFileXl } from './NetworkFileXl';
34
- export { default as MultivalueXl } from './MultivalueXl';
35
- export { default as MobileUpdateXl } from './MobileUpdateXl';
36
- export { default as MobilePromotionXl } from './MobilePromotionXl';
32
+ export { default as NotificationsEditXl } from './NotificationsEditXl';
33
+ export { default as NoPermissionXl } from './NoPermissionXl';
37
34
  export { default as MobileStepsXl } from './MobileStepsXl';
35
+ export { default as MobileUpdateXl } from './MobileUpdateXl';
38
36
  export { default as MobileBannerXl } from './MobileBannerXl';
39
- export { default as MessageXl } from './MessageXl';
40
- export { default as MetaXl } from './MetaXl';
37
+ export { default as MultivalueXl } from './MultivalueXl';
38
+ export { default as MobilePromotionXl } from './MobilePromotionXl';
41
39
  export { default as MarketingAutomationXl } from './MarketingAutomationXl';
40
+ export { default as MessageXl } from './MessageXl';
42
41
  export { default as LoyalityBoostXl } from './LoyalityBoostXl';
43
42
  export { default as LaunchXl } from './LaunchXl';
44
- export { default as InteractionsXl } from './InteractionsXl';
45
43
  export { default as LaptopTargetXl } from './LaptopTargetXl';
44
+ export { default as MetaXl } from './MetaXl';
46
45
  export { default as LaptopAiXl } from './LaptopAiXl';
47
46
  export { default as IntegrationsXl } from './IntegrationsXl';
48
- export { default as IntegrationXl } from './IntegrationXl';
49
47
  export { default as InsertObjectXl } from './InsertObjectXl';
48
+ export { default as InteractionsXl } from './InteractionsXl';
50
49
  export { default as InfoXl } from './InfoXl';
51
50
  export { default as InboxNoResultsXl } from './InboxNoResultsXl';
51
+ export { default as IntegrationXl } from './IntegrationXl';
52
52
  export { default as FunctionXl } from './FunctionXl';
53
+ export { default as GemsXl } from './GemsXl';
53
54
  export { default as FormulaXl } from './FormulaXl';
54
- export { default as FormXl } from './FormXl';
55
- export { default as FolderXl } from './FolderXl';
56
55
  export { default as FolderUserXl } from './FolderUserXl';
57
- export { default as FolderTagXl } from './FolderTagXl';
58
56
  export { default as FolderStarXl } from './FolderStarXl';
59
- export { default as FolderCartXl } from './FolderCartXl';
57
+ export { default as FolderTagXl } from './FolderTagXl';
60
58
  export { default as FolderCheckXl } from './FolderCheckXl';
61
- export { default as FolderAddXl } from './FolderAddXl';
59
+ export { default as FolderXl } from './FolderXl';
62
60
  export { default as FirstRunXl } from './FirstRunXl';
61
+ export { default as FormXl } from './FormXl';
62
+ export { default as FolderCartXl } from './FolderCartXl';
63
+ export { default as FileUpXl } from './FileUpXl';
64
+ export { default as FolderAddXl } from './FolderAddXl';
63
65
  export { default as FileZipXl } from './FileZipXl';
64
- export { default as FileXl } from './FileXl';
65
66
  export { default as FileUrlXl } from './FileUrlXl';
66
67
  export { default as FileDownXl } from './FileDownXl';
67
- export { default as FileUpXl } from './FileUpXl';
68
68
  export { default as EventXl } from './EventXl';
69
- export { default as ErrorXl } from './ErrorXl';
70
- export { default as DiscountXl } from './DiscountXl';
69
+ export { default as FileXl } from './FileXl';
71
70
  export { default as CupXl } from './CupXl';
72
- export { default as CouponXl } from './CouponXl';
71
+ export { default as DiscountXl } from './DiscountXl';
72
+ export { default as ErrorXl } from './ErrorXl';
73
73
  export { default as CloneNodesXl } from './CloneNodesXl';
74
- export { default as CompareXl } from './CompareXl';
75
74
  export { default as CloneNodesFlowXl } from './CloneNodesFlowXl';
76
- export { default as CheckXl } from './CheckXl';
77
- export { default as ClassificationXl } from './ClassificationXl';
75
+ export { default as CompareXl } from './CompareXl';
78
76
  export { default as CheckOutXl } from './CheckOutXl';
79
- export { default as CheckInXl } from './CheckInXl';
80
- export { default as CardVisaXl } from './CardVisaXl';
77
+ export { default as ClassificationXl } from './ClassificationXl';
81
78
  export { default as CartAddXl } from './CartAddXl';
79
+ export { default as CardVisaXl } from './CardVisaXl';
80
+ export { default as CheckXl } from './CheckXl';
81
+ export { default as CheckInXl } from './CheckInXl';
82
82
  export { default as CalendarXl } from './CalendarXl';
83
- export { default as CardAeXl } from './CardAeXl';
84
- export { default as CalendarIntervalXl } from './CalendarIntervalXl';
85
83
  export { default as CalendarScheduleXl } from './CalendarScheduleXl';
86
- export { default as BulbEditXl } from './BulbEditXl';
84
+ export { default as CalendarIntervalXl } from './CalendarIntervalXl';
85
+ export { default as CardAeXl } from './CardAeXl';
86
+ export { default as CouponXl } from './CouponXl';
87
87
  export { default as CalculatorXl } from './CalculatorXl';
88
88
  export { default as BrowserScrollXl } from './BrowserScrollXl';
89
- export { default as BrowserLandingXl } from './BrowserLandingXl';
90
89
  export { default as BrowserCodeXl } from './BrowserCodeXl';
90
+ export { default as BulbEditXl } from './BulbEditXl';
91
+ export { default as BrowserLandingXl } from './BrowserLandingXl';
92
+ export { default as BillingXl } from './BillingXl';
93
+ export { default as BasketCheckXl } from './BasketCheckXl';
91
94
  export { default as BrowserCloseXl } from './BrowserCloseXl';
92
95
  export { default as BeforeEventXl } from './BeforeEventXl';
93
- export { default as BasketCheckXl } from './BasketCheckXl';
94
- export { default as BillingXl } from './BillingXl';
95
- export { default as BasicBuilderXl } from './BasicBuilderXl';
96
96
  export { default as AttributeXl } from './AttributeXl';
97
- export { default as AfterEventXl } from './AfterEventXl';
97
+ export { default as BasicBuilderXl } from './BasicBuilderXl';
98
98
  export { default as ApiXl } from './ApiXl';
99
+ export { default as AfterEventXl } from './AfterEventXl';
99
100
  export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
100
101
  export { default as AdvancedBuilderXl } from './AdvancedBuilderXl';
101
- export { default as AbTestXl } from './AbTestXl';
102
102
  export { default as AddXl } from './AddXl';
103
- export { default as GemsXl } from './GemsXl';
103
+ export { default as AbTestXl } from './AbTestXl';