@antscorp/antsomi-ui 1.3.5-beta.633 → 1.3.5-beta.635
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/es/components/icons/CampaignMenuIcon.d.ts +3 -0
- package/es/components/icons/CampaignMenuIcon.js +7 -0
- package/es/components/icons/EmailTemplateMenuIcon.d.ts +3 -0
- package/es/components/icons/EmailTemplateMenuIcon.js +7 -0
- package/es/components/icons/ExportMenuIcon.d.ts +3 -0
- package/es/components/icons/ExportMenuIcon.js +7 -0
- package/es/components/icons/LazyIcon/LazyIcon.d.ts +5 -0
- package/es/components/icons/LazyIcon/LazyIcon.js +5 -0
- package/es/components/icons/MediaTemplateMenuIcon.d.ts +3 -0
- package/es/components/icons/MediaTemplateMenuIcon.js +7 -0
- package/es/components/icons/UploadMenuIcon.d.ts +3 -0
- package/es/components/icons/UploadMenuIcon.js +7 -0
- package/es/components/icons/index.d.ts +5 -0
- package/es/components/icons/index.js +5 -0
- package/es/components/organism/DataTable/hooks/useDataTableListing/useDataTableListing.js +1 -1
- package/es/components/organism/LeftMenu/utils/index.js +2 -5
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { useIcon } from './hooks/useIcon';
|
|
3
|
+
export const CampaignMenuIcon = forwardRef((props, ref) => {
|
|
4
|
+
const { width, height } = useIcon(props);
|
|
5
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { ref: ref, width: width, height: height }),
|
|
6
|
+
React.createElement("path", { d: "M21 14.0156H24.9844V15.9844H21V14.0156ZM18.9844 20.625C19.2031 20.3438 19.4062 20.0781 19.5938 19.8281C19.8125 19.5469 20.0156 19.2656 20.2031 18.9844C20.6719 19.3594 21.1875 19.7656 21.75 20.2031C22.3438 20.6406 22.8906 21.0469 23.3906 21.4219C23.2031 21.6719 23 21.9375 22.7812 22.2188C22.5938 22.4688 22.4062 22.7344 22.2188 23.0156C21.7188 22.6406 21.1719 22.2344 20.5781 21.7969C20.0156 21.3594 19.4844 20.9688 18.9844 20.625ZM23.3906 8.57812C22.8906 8.95312 22.3438 9.35938 21.75 9.79688C21.1875 10.2344 20.6719 10.6406 20.2031 11.0156C20.0156 10.7344 19.8125 10.4688 19.5938 10.2188C19.4062 9.9375 19.2031 9.67188 18.9844 9.42188C19.4844 9.04688 20.0156 8.64062 20.5781 8.20312C21.1719 7.76563 21.7188 7.35938 22.2188 6.98438C22.4062 7.26562 22.5938 7.54688 22.7812 7.82812C23 8.07812 23.2031 8.32812 23.3906 8.57812ZM6.98438 12H11.0156L15.9844 9V21L11.0156 18H9.98438V21.9844H8.01562V18H6.98438C6.45312 18 5.98438 17.8125 5.57812 17.4375C5.20312 17.0312 5.01562 16.5469 5.01562 15.9844V14.0156C5.01562 13.4531 5.20312 12.9844 5.57812 12.6094C5.98438 12.2031 6.45312 12 6.98438 12ZM18.5156 15C18.5156 15.6562 18.375 16.2812 18.0938 16.875C17.8125 17.4375 17.4531 17.9219 17.0156 18.3281V11.6719C17.4531 12.0781 17.8125 12.5781 18.0938 13.1719C18.375 13.7344 18.5156 14.3438 18.5156 15Z", fill: "currentColor" })));
|
|
7
|
+
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { useIcon } from './hooks/useIcon';
|
|
3
|
+
export const EmailTemplateMenuIcon = forwardRef((props, ref) => {
|
|
4
|
+
const { width, height } = useIcon(props);
|
|
5
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { ref: ref, width: width, height: height }),
|
|
6
|
+
React.createElement("path", { d: "M7.07995 21.1601C6.85168 21.1446 6.63675 21.0469 6.47496 20.8851C6.31318 20.7233 6.21548 20.5084 6.19995 20.2801V9.89689L14.472 15.7049C14.6185 15.7911 14.7855 15.8366 14.9556 15.8366C15.1256 15.8366 15.2926 15.7911 15.4392 15.7049L23.8 9.89689V20.2801C23.7846 20.5084 23.6869 20.7234 23.5251 20.8853C23.3633 21.0471 23.1483 21.1447 22.92 21.1601H7.07995ZM9.13435 8.84009H20.8656L15 12.9401L9.13435 8.84009Z", fill: "currentColor" })));
|
|
7
|
+
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { useIcon } from './hooks/useIcon';
|
|
3
|
+
export const ExportMenuIcon = forwardRef((props, ref) => {
|
|
4
|
+
const { width, height } = useIcon(props);
|
|
5
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { ref: ref, width: width, height: height }),
|
|
6
|
+
React.createElement("path", { d: "M21 18H23.0156V21C23.0156 22.0781 22.0781 23.0156 21 23.0156H9C7.92188 23.0156 6.98438 22.0781 6.98438 21V18H9V21H21V18ZM20.0156 14.0156L15 18.9844L9.98438 14.0156L11.3906 12.6094L14.0156 15.1875V6.98438H15.9844V15.1875L18.6094 12.6094L20.0156 14.0156Z", fill: "currentColor" })));
|
|
7
|
+
});
|
|
@@ -35,6 +35,7 @@ export declare const LazyIcon: {
|
|
|
35
35
|
CallIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
36
36
|
CameraIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
37
37
|
CampaignIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
38
|
+
CampaignMenuIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
38
39
|
CaptureIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
39
40
|
CatalogIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
40
41
|
CategoryIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
@@ -98,6 +99,7 @@ export declare const LazyIcon: {
|
|
|
98
99
|
DynamicTextIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
99
100
|
ElbowConnectorIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
100
101
|
EmailTemplateIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
102
|
+
EmailTemplateMenuIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
101
103
|
EmojiEmotionsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
102
104
|
EventAttributeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
103
105
|
EventIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
@@ -113,6 +115,7 @@ export declare const LazyIcon: {
|
|
|
113
115
|
ExploreIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
114
116
|
ExploreStandardIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
115
117
|
ExportHtmlIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
118
|
+
ExportMenuIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
116
119
|
ExtendValueIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
117
120
|
FactCheckIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
118
121
|
FileDownloadIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
@@ -168,6 +171,7 @@ export declare const LazyIcon: {
|
|
|
168
171
|
MarkAsReadIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
169
172
|
MediaGalleryIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
170
173
|
MediaTemplateIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
174
|
+
MediaTemplateMenuIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
171
175
|
MenuCollapseIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
172
176
|
MenuExpandIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
173
177
|
MenuImageMultiIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
@@ -270,6 +274,7 @@ export declare const LazyIcon: {
|
|
|
270
274
|
UnblockIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
271
275
|
UndoIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
272
276
|
UploadIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
277
|
+
UploadMenuIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
273
278
|
UserAttributesIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
274
279
|
UserIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
275
280
|
ValidateFormatIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
|
|
@@ -35,6 +35,7 @@ export const LazyIcon = {
|
|
|
35
35
|
CallIcon: lazy(() => import('../CallIcon').then(m => ({ default: m.CallIcon }))),
|
|
36
36
|
CameraIcon: lazy(() => import('../CameraIcon').then(m => ({ default: m.CameraIcon }))),
|
|
37
37
|
CampaignIcon: lazy(() => import('../CampaignIcon').then(m => ({ default: m.CampaignIcon }))),
|
|
38
|
+
CampaignMenuIcon: lazy(() => import('../CampaignMenuIcon').then(m => ({ default: m.CampaignMenuIcon }))),
|
|
38
39
|
CaptureIcon: lazy(() => import('../CaptureIcon').then(m => ({ default: m.CaptureIcon }))),
|
|
39
40
|
CatalogIcon: lazy(() => import('../CatalogIcon').then(m => ({ default: m.CatalogIcon }))),
|
|
40
41
|
CategoryIcon: lazy(() => import('../CategoryIcon').then(m => ({ default: m.CategoryIcon }))),
|
|
@@ -104,6 +105,7 @@ export const LazyIcon = {
|
|
|
104
105
|
DynamicTextIcon: lazy(() => import('../DynamicTextIcon').then(m => ({ default: m.DynamicTextIcon }))),
|
|
105
106
|
ElbowConnectorIcon: lazy(() => import('../ElbowConnectorIcon').then(m => ({ default: m.ElbowConnectorIcon }))),
|
|
106
107
|
EmailTemplateIcon: lazy(() => import('../EmailTemplateIcon').then(m => ({ default: m.EmailTemplateIcon }))),
|
|
108
|
+
EmailTemplateMenuIcon: lazy(() => import('../EmailTemplateMenuIcon').then(m => ({ default: m.EmailTemplateMenuIcon }))),
|
|
107
109
|
EmojiEmotionsIcon: lazy(() => import('../EmojiEmotionsIcon').then(m => ({ default: m.EmojiEmotionsIcon }))),
|
|
108
110
|
EventAttributeIcon: lazy(() => import('../EventAttributeIcon').then(m => ({ default: m.EventAttributeIcon }))),
|
|
109
111
|
EventIcon: lazy(() => import('../EventIcon').then(m => ({ default: m.EventIcon }))),
|
|
@@ -119,6 +121,7 @@ export const LazyIcon = {
|
|
|
119
121
|
ExploreIcon: lazy(() => import('../ExploreIcon').then(m => ({ default: m.ExploreIcon }))),
|
|
120
122
|
ExploreStandardIcon: lazy(() => import('../ExploreStandardIcon').then(m => ({ default: m.ExploreStandardIcon }))),
|
|
121
123
|
ExportHtmlIcon: lazy(() => import('../ExportHtmlIcon').then(m => ({ default: m.ExportHtmlIcon }))),
|
|
124
|
+
ExportMenuIcon: lazy(() => import('../ExportMenuIcon').then(m => ({ default: m.ExportMenuIcon }))),
|
|
122
125
|
ExtendValueIcon: lazy(() => import('../ExtendValueIcon').then(m => ({ default: m.ExtendValueIcon }))),
|
|
123
126
|
FactCheckIcon: lazy(() => import('../FactCheckIcon').then(m => ({ default: m.FactCheckIcon }))),
|
|
124
127
|
FileDownloadIcon: lazy(() => import('../FileDownloadIcon').then(m => ({ default: m.FileDownloadIcon }))),
|
|
@@ -172,6 +175,7 @@ export const LazyIcon = {
|
|
|
172
175
|
MarkAsReadIcon: lazy(() => import('../MarkAsReadIcon').then(m => ({ default: m.MarkAsReadIcon }))),
|
|
173
176
|
MediaGalleryIcon: lazy(() => import('../MediaGalleryIcon').then(m => ({ default: m.MediaGalleryIcon }))),
|
|
174
177
|
MediaTemplateIcon: lazy(() => import('../MediaTemplateIcon').then(m => ({ default: m.MediaTemplateIcon }))),
|
|
178
|
+
MediaTemplateMenuIcon: lazy(() => import('../MediaTemplateMenuIcon').then(m => ({ default: m.MediaTemplateMenuIcon }))),
|
|
175
179
|
MenuCollapseIcon: lazy(() => import('../MenuCollapseIcon').then(m => ({ default: m.MenuCollapseIcon }))),
|
|
176
180
|
MenuExpandIcon: lazy(() => import('../MenuExpandIcon').then(m => ({ default: m.MenuExpandIcon }))),
|
|
177
181
|
MenuImageMultiIcon: lazy(() => import('../MenuImageMultiIcon').then(m => ({ default: m.MenuImageMultiIcon }))),
|
|
@@ -276,6 +280,7 @@ export const LazyIcon = {
|
|
|
276
280
|
UnblockIcon: lazy(() => import('../UnblockIcon').then(m => ({ default: m.UnblockIcon }))),
|
|
277
281
|
UndoIcon: lazy(() => import('../UndoIcon').then(m => ({ default: m.UndoIcon }))),
|
|
278
282
|
UploadIcon: lazy(() => import('../UploadIcon').then(m => ({ default: m.UploadIcon }))),
|
|
283
|
+
UploadMenuIcon: lazy(() => import('../UploadMenuIcon').then(m => ({ default: m.UploadMenuIcon }))),
|
|
279
284
|
UserAttributesIcon: lazy(() => import('../UserAttributesIcon').then(m => ({ default: m.UserAttributesIcon }))),
|
|
280
285
|
UserIcon: lazy(() => import('../UserIcon').then(m => ({ default: m.UserIcon }))),
|
|
281
286
|
ValidateFormatIcon: lazy(() => import('../ValidateFormatIcon').then(m => ({ default: m.ValidateFormatIcon }))),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { useIcon } from './hooks/useIcon';
|
|
3
|
+
export const MediaTemplateMenuIcon = forwardRef((props, ref) => {
|
|
4
|
+
const { width, height } = useIcon(props);
|
|
5
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { ref: ref, width: width, height: height }),
|
|
6
|
+
React.createElement("path", { d: "M21.4128 23H7.01283C6.80349 22.9999 6.59624 22.9584 6.40304 22.8776C6.20985 22.7969 6.03453 22.6786 5.88723 22.5297C5.73341 22.3893 5.61061 22.2183 5.52671 22.0276C5.44281 21.8369 5.39965 21.6307 5.40003 21.4224V10.1922H7.01283V21.4224H21.4128V22.9992V23ZM22.9872 19.8071H10.2C9.98915 19.8066 9.78058 19.7631 9.58706 19.6792C9.39353 19.5953 9.2191 19.4728 9.07443 19.3191C8.92107 19.1743 8.79878 18.9998 8.71501 18.8061C8.63125 18.6124 8.58777 18.4036 8.58723 18.1926L8.62483 8.57766C8.62378 8.37069 8.66488 8.16567 8.74562 7.97514C8.82637 7.78461 8.94505 7.61258 9.09443 7.46955C9.23721 7.32018 9.40888 7.20152 9.59897 7.12079C9.78905 7.04007 9.99356 6.99897 10.2 7.00002H15L16.612 8.57766H22.9872C23.1981 8.57805 23.4067 8.62152 23.6003 8.70542C23.7938 8.78932 23.9682 8.91189 24.1128 9.06562C24.2662 9.2104 24.3885 9.38496 24.4722 9.57865C24.556 9.77233 24.5995 9.98109 24.6 10.1922V18.1926C24.5995 18.4036 24.556 18.6124 24.4722 18.8061C24.3885 18.9998 24.2662 19.1743 24.1128 19.3191C23.9682 19.4728 23.7938 19.5954 23.6003 19.6793C23.4067 19.7632 23.1981 19.8067 22.9872 19.8071ZM14.2 10.9934V16.6021L19 13.7977L14.2 10.9934Z", fill: "currentColor" })));
|
|
7
|
+
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { useIcon } from './hooks/useIcon';
|
|
3
|
+
export const UploadMenuIcon = forwardRef((props, ref) => {
|
|
4
|
+
const { width, height } = useIcon(props);
|
|
5
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { ref: ref, width: width, height: height }),
|
|
6
|
+
React.createElement("path", { d: "M21 18H23.0156V21C23.0156 22.0781 22.0781 23.0156 21 23.0156H9C7.92188 23.0156 6.98438 22.0781 6.98438 21V18H9V21H21V18ZM9.98438 12L15 6.98438L20.0156 12L18.6094 13.4062L15.9844 10.8281V18.9844H14.0156V10.8281L11.3906 13.4062L9.98438 12Z", fill: "currentColor" })));
|
|
7
|
+
});
|
|
@@ -33,6 +33,7 @@ export { CalendarIcon } from './CalendarIcon';
|
|
|
33
33
|
export { CallIcon } from './CallIcon';
|
|
34
34
|
export { CameraIcon } from './CameraIcon';
|
|
35
35
|
export { CampaignIcon } from './CampaignIcon';
|
|
36
|
+
export { CampaignMenuIcon } from './CampaignMenuIcon';
|
|
36
37
|
export { CaptureIcon } from './CaptureIcon';
|
|
37
38
|
export { CatalogIcon } from './CatalogIcon';
|
|
38
39
|
export { CategoryIcon } from './CategoryIcon';
|
|
@@ -96,6 +97,7 @@ export { DynamicImageIcon } from './DynamicImageIcon';
|
|
|
96
97
|
export { DynamicTextIcon } from './DynamicTextIcon';
|
|
97
98
|
export { ElbowConnectorIcon } from './ElbowConnectorIcon';
|
|
98
99
|
export { EmailTemplateIcon } from './EmailTemplateIcon';
|
|
100
|
+
export { EmailTemplateMenuIcon } from './EmailTemplateMenuIcon';
|
|
99
101
|
export { EmojiEmotionsIcon } from './EmojiEmotionsIcon';
|
|
100
102
|
export { EventAttributeIcon } from './EventAttributeIcon';
|
|
101
103
|
export { EventIcon } from './EventIcon';
|
|
@@ -111,6 +113,7 @@ export { ExploreBuiltInIcon } from './ExploreBuiltInIcon';
|
|
|
111
113
|
export { ExploreIcon } from './ExploreIcon';
|
|
112
114
|
export { ExploreStandardIcon } from './ExploreStandardIcon';
|
|
113
115
|
export { ExportHtmlIcon } from './ExportHtmlIcon';
|
|
116
|
+
export { ExportMenuIcon } from './ExportMenuIcon';
|
|
114
117
|
export { ExtendValueIcon } from './ExtendValueIcon';
|
|
115
118
|
export { FactCheckIcon } from './FactCheckIcon';
|
|
116
119
|
export { FileDownloadIcon } from './FileDownloadIcon';
|
|
@@ -164,6 +167,7 @@ export { MapIcon } from './MapIcon';
|
|
|
164
167
|
export { MarkAsReadIcon } from './MarkAsReadIcon';
|
|
165
168
|
export { MediaGalleryIcon } from './MediaGalleryIcon';
|
|
166
169
|
export { MediaTemplateIcon } from './MediaTemplateIcon';
|
|
170
|
+
export { MediaTemplateMenuIcon } from './MediaTemplateMenuIcon';
|
|
167
171
|
export { MenuCollapseIcon } from './MenuCollapseIcon';
|
|
168
172
|
export { MenuExpandIcon } from './MenuExpandIcon';
|
|
169
173
|
export { MenuImageMultiIcon } from './MenuImageMultiIcon';
|
|
@@ -266,6 +270,7 @@ export { TipsIdeaLight24Icon } from './TipsIdeaLight24Icon';
|
|
|
266
270
|
export { UnblockIcon } from './UnblockIcon';
|
|
267
271
|
export { UndoIcon } from './UndoIcon';
|
|
268
272
|
export { UploadIcon } from './UploadIcon';
|
|
273
|
+
export { UploadMenuIcon } from './UploadMenuIcon';
|
|
269
274
|
export { UserAttributesIcon } from './UserAttributesIcon';
|
|
270
275
|
export { UserIcon } from './UserIcon';
|
|
271
276
|
export { ValidateFormatIcon } from './ValidateFormatIcon';
|
|
@@ -33,6 +33,7 @@ export { CalendarIcon } from './CalendarIcon';
|
|
|
33
33
|
export { CallIcon } from './CallIcon';
|
|
34
34
|
export { CameraIcon } from './CameraIcon';
|
|
35
35
|
export { CampaignIcon } from './CampaignIcon';
|
|
36
|
+
export { CampaignMenuIcon } from './CampaignMenuIcon';
|
|
36
37
|
export { CaptureIcon } from './CaptureIcon';
|
|
37
38
|
export { CatalogIcon } from './CatalogIcon';
|
|
38
39
|
export { CategoryIcon } from './CategoryIcon';
|
|
@@ -96,6 +97,7 @@ export { DynamicImageIcon } from './DynamicImageIcon';
|
|
|
96
97
|
export { DynamicTextIcon } from './DynamicTextIcon';
|
|
97
98
|
export { ElbowConnectorIcon } from './ElbowConnectorIcon';
|
|
98
99
|
export { EmailTemplateIcon } from './EmailTemplateIcon';
|
|
100
|
+
export { EmailTemplateMenuIcon } from './EmailTemplateMenuIcon';
|
|
99
101
|
export { EmojiEmotionsIcon } from './EmojiEmotionsIcon';
|
|
100
102
|
export { EventAttributeIcon } from './EventAttributeIcon';
|
|
101
103
|
export { EventIcon } from './EventIcon';
|
|
@@ -111,6 +113,7 @@ export { ExploreBuiltInIcon } from './ExploreBuiltInIcon';
|
|
|
111
113
|
export { ExploreIcon } from './ExploreIcon';
|
|
112
114
|
export { ExploreStandardIcon } from './ExploreStandardIcon';
|
|
113
115
|
export { ExportHtmlIcon } from './ExportHtmlIcon';
|
|
116
|
+
export { ExportMenuIcon } from './ExportMenuIcon';
|
|
114
117
|
export { ExtendValueIcon } from './ExtendValueIcon';
|
|
115
118
|
export { FactCheckIcon } from './FactCheckIcon';
|
|
116
119
|
export { FileDownloadIcon } from './FileDownloadIcon';
|
|
@@ -164,6 +167,7 @@ export { MapIcon } from './MapIcon';
|
|
|
164
167
|
export { MarkAsReadIcon } from './MarkAsReadIcon';
|
|
165
168
|
export { MediaGalleryIcon } from './MediaGalleryIcon';
|
|
166
169
|
export { MediaTemplateIcon } from './MediaTemplateIcon';
|
|
170
|
+
export { MediaTemplateMenuIcon } from './MediaTemplateMenuIcon';
|
|
167
171
|
export { MenuCollapseIcon } from './MenuCollapseIcon';
|
|
168
172
|
export { MenuExpandIcon } from './MenuExpandIcon';
|
|
169
173
|
export { MenuImageMultiIcon } from './MenuImageMultiIcon';
|
|
@@ -266,6 +270,7 @@ export { TipsIdeaLight24Icon } from './TipsIdeaLight24Icon';
|
|
|
266
270
|
export { UnblockIcon } from './UnblockIcon';
|
|
267
271
|
export { UndoIcon } from './UndoIcon';
|
|
268
272
|
export { UploadIcon } from './UploadIcon';
|
|
273
|
+
export { UploadMenuIcon } from './UploadMenuIcon';
|
|
269
274
|
export { UserAttributesIcon } from './UserAttributesIcon';
|
|
270
275
|
export { UserIcon } from './UserIcon';
|
|
271
276
|
export { ValidateFormatIcon } from './ValidateFormatIcon';
|
|
@@ -749,7 +749,7 @@ export function useDataTableListing(props) {
|
|
|
749
749
|
onMatchesAnyLoadMore,
|
|
750
750
|
},
|
|
751
751
|
/* Pagination */
|
|
752
|
-
pagination: Object.assign(Object.assign({}, pagination), { total
|
|
752
|
+
pagination: Object.assign(Object.assign({}, pagination), { total, onChange: onChangePagination }),
|
|
753
753
|
/* Table */
|
|
754
754
|
table: Object.assign(Object.assign({}, tableProps), { loading: isTableListingLoading || isTableListingRefetching, columns: tableColumns, dataSource: tableData, columnWidths: table.columnWidths || {}, expandable: Object.assign({ showExpandColumn: false, expandedRowKeys: expandedRowKeys || [] }, tableProps === null || tableProps === void 0 ? void 0 : tableProps.expandable), rowSelection: {
|
|
755
755
|
selectedRowKeys: selectedRow.keys || [],
|
|
@@ -10,7 +10,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
12
|
// Libraries
|
|
13
|
-
import React, {
|
|
13
|
+
import React, { Suspense } from 'react';
|
|
14
14
|
import { cloneDeep, isArray, isEmpty, isNil, sortBy } from 'lodash';
|
|
15
15
|
// Components
|
|
16
16
|
import { LazyIcon as Icons } from '@antscorp/antsomi-ui/es/components/icons/LazyIcon';
|
|
@@ -516,10 +516,7 @@ export const getCustomActiveAppCode = (args) => {
|
|
|
516
516
|
export const renderMenuIcon = (iconName) => {
|
|
517
517
|
try {
|
|
518
518
|
// const ComponentIcon = iconName && Icons[iconName];
|
|
519
|
-
|
|
520
|
-
startTransition(() => {
|
|
521
|
-
ComponentIcon = iconName && Icons[iconName];
|
|
522
|
-
});
|
|
519
|
+
const ComponentIcon = iconName && Icons[iconName];
|
|
523
520
|
return ComponentIcon ? (React.createElement(Suspense, { fallback: null },
|
|
524
521
|
React.createElement(ComponentIcon, { className: "menu-item__icon", size: 30 }))) : (React.createElement(IconWrapper, null, isNil(iconName) ? null : React.createElement(Icon, { type: iconName })));
|
|
525
522
|
}
|