gantri-components 2.147.0-beta.3 → 2.147.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/dist/components/file-uploader/components/configured-custom-content/configured-custom-content.types.d.ts +0 -2
- package/dist/components/file-uploader/components/file-uploader-thumbnail-variant/components/thumbnail-render/thumbnail-render.types.d.ts +1 -1
- package/dist/components/file-uploader/components/file-uploader-thumbnail-variant/file-uploader-thumbnail-variant.types.d.ts +1 -1
- package/dist/components/file-uploader/components/uploader-actions/uploader-actions.types.d.ts +0 -2
- package/dist/components/file-uploader/file-uploader.types.d.ts +2 -7
- package/dist/components/icon/generated/ui-control/VideoEnlarge.d.ts +3 -0
- package/dist/components/icon/generated/ui-control/VideoEnlarge24.d.ts +3 -0
- package/dist/components/icon/generated/ui-control/index.d.ts +2 -0
- package/dist/components/icon/generated/work/HandFinish.d.ts +3 -0
- package/dist/components/icon/generated/work/HandFinish24.d.ts +3 -0
- package/dist/components/icon/generated/work/index.d.ts +2 -0
- package/dist/components/icon/icon.type.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
- package/dist/components/file-uploader/components/icon-recover/icon-recover.d.ts +0 -3
- package/dist/components/file-uploader/components/icon-recover/icon-recover.types.d.ts +0 -7
- package/dist/components/file-uploader/components/icon-recover/index.d.ts +0 -1
|
@@ -3,7 +3,5 @@ import { OptionalValues } from '../../../../types/common';
|
|
|
3
3
|
export type ConfiguredCustomContentProps = OptionalValues<Required<Pick<FileUploaderProps, 'CustomContent' | 'enableCopyUrl' | 'fileName' | 'fileUrl' | 'isDisabled' | 'isDraggable' | 'isReplaceable' | 'processing' | 'SortableDragHandleWrapper'>>> & {
|
|
4
4
|
deleteFile: () => Promise<void>;
|
|
5
5
|
handleOpenFileSelect: () => void;
|
|
6
|
-
handleRecoverFile?: (fileUrl: string) => Promise<void>;
|
|
7
6
|
isDraggingOver: boolean;
|
|
8
|
-
thumbnailUrl?: string;
|
|
9
7
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OptionalValues } from '../../../../../../types/common';
|
|
2
2
|
import { DeleteFile, FileUploaderProps } from '../../../../file-uploader.types';
|
|
3
|
-
export type ThumbnailRenderProps = OptionalValues<Required<Pick<FileUploaderProps, '
|
|
3
|
+
export type ThumbnailRenderProps = OptionalValues<Required<Pick<FileUploaderProps, 'SortableDragHandleWrapper' | 'enableCopyUrl' | 'fileUrl' | 'isDisabled' | 'isDraggable' | 'isReplaceable' | 'onClick' | 'thumbnailSize' | 'transformThumbnailSrc'>>> & {
|
|
4
4
|
deleteFile: DeleteFile;
|
|
5
5
|
handleOpenFileSelect: () => void;
|
|
6
6
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FileUploaderProps, DeleteFile } from '../../file-uploader.types';
|
|
2
2
|
import { OptionalValues } from '../../../../types/common';
|
|
3
|
-
export type FileUploaderThumbnailVariantProps = OptionalValues<Required<Pick<FileUploaderProps, '
|
|
3
|
+
export type FileUploaderThumbnailVariantProps = OptionalValues<Required<Pick<FileUploaderProps, 'SortableDragHandleWrapper' | 'disabledDescription' | 'enableCopyUrl' | 'fileUrl' | 'isActive' | 'isDisabled' | 'isDraggable' | 'isReplaceable' | 'onClick' | 'processing' | 'thumbnailSize' | 'transformThumbnailSrc'>>> & {
|
|
4
4
|
deleteFile: DeleteFile;
|
|
5
5
|
handleOpenFileSelect: () => void;
|
|
6
6
|
isDraggingOver: boolean;
|
package/dist/components/file-uploader/components/uploader-actions/uploader-actions.types.d.ts
CHANGED
|
@@ -5,8 +5,6 @@ export type UploaderActionIconsProps = OptionalValues<{
|
|
|
5
5
|
enableCopyUrl: boolean;
|
|
6
6
|
fileUrl: string;
|
|
7
7
|
handleOpenFileSelect: () => void;
|
|
8
|
-
handleRecoverFile?: (fileUrl: string) => Promise<void>;
|
|
9
8
|
isDisabled: boolean;
|
|
10
9
|
isReplaceable: boolean;
|
|
11
|
-
thumbnailUrl?: string;
|
|
12
10
|
}>;
|
|
@@ -2,7 +2,6 @@ import { FocusEventHandler, HTMLAttributes, PropsWithChildren, ReactNode } from
|
|
|
2
2
|
import { ButtonProps } from '../button/button.types';
|
|
3
3
|
import { BoxProps } from '../box/box.types';
|
|
4
4
|
import { fileUploaderVariants } from './file-uploader.constants';
|
|
5
|
-
import { HandleRecoverFileDef } from './components/icon-recover/icon-recover.types';
|
|
6
5
|
export type FileUploaderProps = {
|
|
7
6
|
/** Any children passed will appear just within the uploader above everything else. Use this for notifications like download toasts. */
|
|
8
7
|
children?: ReactNode;
|
|
@@ -13,8 +12,6 @@ export type FileUploaderProps = {
|
|
|
13
12
|
fileUrl: string;
|
|
14
13
|
/** This function should delete the record from the database, ***then*** delete the file. */
|
|
15
14
|
handleDeleteFile: HandleDeleteFile;
|
|
16
|
-
/** Provides a method for potential file recovery. */
|
|
17
|
-
handleRecoverFile?: HandleRecoverFileDef;
|
|
18
15
|
inputName?: string;
|
|
19
16
|
isActive?: boolean;
|
|
20
17
|
isDisabled?: boolean;
|
|
@@ -76,12 +73,10 @@ export interface SelectedFileDetails {
|
|
|
76
73
|
/** If invalid, return the error message to display. */
|
|
77
74
|
export type ValidateFile = (file: SelectedFileDetails) => Promise<string | undefined | void> | string | undefined | void;
|
|
78
75
|
export type HandleFileSelected = (validFile: SelectedFileDetails) => Promise<any>;
|
|
79
|
-
export type FileUploaderCustomContent = (props:
|
|
80
|
-
export interface FileUploaderCustomContentPropsDef {
|
|
76
|
+
export type FileUploaderCustomContent = (props: {
|
|
81
77
|
IconCopyUrl: () => JSX.Element;
|
|
82
78
|
IconDelete: () => JSX.Element;
|
|
83
79
|
IconDrag: () => JSX.Element;
|
|
84
|
-
IconRecoverFile: () => JSX.Element;
|
|
85
80
|
IconReplace: () => JSX.Element;
|
|
86
81
|
UploaderActionIcons: () => JSX.Element;
|
|
87
82
|
fileName: string;
|
|
@@ -90,7 +85,7 @@ export interface FileUploaderCustomContentPropsDef {
|
|
|
90
85
|
isDisabled: boolean | undefined;
|
|
91
86
|
isDraggingOver: boolean;
|
|
92
87
|
processing: boolean;
|
|
93
|
-
}
|
|
88
|
+
}) => JSX.Element;
|
|
94
89
|
export type OnFileUploaderError = (props: {
|
|
95
90
|
error: unknown;
|
|
96
91
|
fallbackMessage: string;
|
|
@@ -45,6 +45,8 @@ export { default as ThreeDotsCluster } from './ThreeDotsCluster';
|
|
|
45
45
|
export { default as ThreeDotsCluster24 } from './ThreeDotsCluster24';
|
|
46
46
|
export { default as ThreeDotsHorizontal } from './ThreeDotsHorizontal';
|
|
47
47
|
export { default as ThreeDotsHorizontal24 } from './ThreeDotsHorizontal24';
|
|
48
|
+
export { default as VideoEnlarge } from './VideoEnlarge';
|
|
49
|
+
export { default as VideoEnlarge24 } from './VideoEnlarge24';
|
|
48
50
|
export { default as X } from './X';
|
|
49
51
|
export { default as X24 } from './X24';
|
|
50
52
|
export { default as XSmall } from './XSmall';
|
|
@@ -12,6 +12,8 @@ export { default as CubeOutline } from './CubeOutline';
|
|
|
12
12
|
export { default as CubeOutline24 } from './CubeOutline24';
|
|
13
13
|
export { default as Glue } from './Glue';
|
|
14
14
|
export { default as Glue24 } from './Glue24';
|
|
15
|
+
export { default as HandFinish } from './HandFinish';
|
|
16
|
+
export { default as HandFinish24 } from './HandFinish24';
|
|
15
17
|
export { default as Leaf } from './Leaf';
|
|
16
18
|
export { default as Leaf24 } from './Leaf24';
|
|
17
19
|
export { default as LightBulb } from './LightBulb';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const IconsList: readonly ["actions:funnel", "actions:funnel_24", "actions:funnel_filled", "actions:funnel_filled_24", "actions:gear", "actions:gear_24", "actions:life_buoy", "actions:life_buoy_24", "actions:link", "actions:link_24", "actions:star", "actions:star_24", "actions:star_filled", "actions:star_filled_24", "actions:star_half", "actions:star_half_24", "actions:stroke_play", "actions:stroke_play_24", "actions:thumbs_up", "actions:thumbs_up_24", "actions:trash_can", "actions:trash_can_24", "alert:bell", "alert:bell_24", "alert:bell_filled", "alert:bell_filled_24", "alert:i_circle", "alert:i_circle_24", "alert:lightning_bolt", "alert:lightning_bolt_24", "alert:lightning_bolt_filled", "alert:lightning_bolt_filled_24", "alert:question_mark_circle", "alert:question_mark_circle_24", "alert:warning_triangle", "alert:warning_triangle_24", "animated:loader", "arrows:arrow_chevron_double_down", "arrows:arrow_chevron_double_down_24", "arrows:arrow_chevron_double_left", "arrows:arrow_chevron_double_left_24", "arrows:arrow_chevron_double_right", "arrows:arrow_chevron_double_right_24", "arrows:arrow_chevron_double_up", "arrows:arrow_chevron_double_up_24", "arrows:arrow_chevron_down", "arrows:arrow_chevron_down_24", "arrows:arrow_chevron_left", "arrows:arrow_chevron_left_24", "arrows:arrow_chevron_right", "arrows:arrow_chevron_right_24", "arrows:arrow_chevron_up", "arrows:arrow_chevron_up_24", "arrows:arrow_diag", "arrows:arrow_diag_24", "arrows:arrow_down", "arrows:arrow_down_24", "arrows:arrow_download", "arrows:arrow_download_24", "arrows:arrow_external", "arrows:arrow_external_24", "arrows:arrow_left", "arrows:arrow_left_24", "arrows:arrow_line_down", "arrows:arrow_line_down_24", "arrows:arrow_line_left", "arrows:arrow_line_left_24", "arrows:arrow_line_right", "arrows:arrow_line_right_24", "arrows:arrow_line_up", "arrows:arrow_line_up_24", "arrows:arrow_return", "arrows:arrow_right", "arrows:arrow_right_24", "arrows:arrow_rotate_two", "arrows:arrow_rotate_two_24", "arrows:arrow_triangle_down", "arrows:arrow_triangle_down_24", "arrows:arrow_triangle_left", "arrows:arrow_triangle_left_24", "arrows:arrow_triangle_right", "arrows:arrow_triangle_right_24", "arrows:arrow_triangle_up", "arrows:arrow_triangle_up_24", "arrows:arrow_triangle_updown", "arrows:arrow_triangle_updown_24", "arrows:arrow_triangle_updown_down_filled", "arrows:arrow_triangle_updown_down_filled_24", "arrows:arrow_triangle_updown_filled", "arrows:arrow_triangle_updown_filled_24", "arrows:arrow_triangle_updown_top_filled", "arrows:arrow_triangle_updown_top_filled_24", "arrows:arrow_up", "arrows:arrow_up_24", "arrows:arrow_updown", "arrows:arrow_updown_24", "arrows:arrow_updown_filled", "arrows:arrow_updown_filled_24", "arrows:arrow_upload", "arrows:arrow_upload_24", "data:chart_bar", "data:chart_bar_24", "docs:document_blank", "docs:document_blank_24", "docs:document_lines", "docs:document_lines_24", "docs:pencil", "docs:pencil_24", "location:house", "location:house_24", "location:location_california", "location:location_california_24", "location:location_pin", "location:location_pin_24", "logos:logo_affirm", "logos:logo_affirm_colored", "logos:logo_apple", "logos:logo_apple_text", "logos:logo_apple_text_24", "logos:logo_behance", "logos:logo_facebook", "logos:logo_gantri", "logos:logo_github", "logos:logo_google", "logos:logo_google_text", "logos:logo_google_text_24", "logos:logo_instagram", "logos:logo_linkedin", "logos:logo_pinterest", "logos:logo_tiktok", "logos:logo_twitter", "logos:logo_yotpo", "logos:logo_youtube", "machine:difficulty_easy", "machine:difficulty_hard", "machine:difficulty_moderate", "machine:difficulty_multiple", "machine:laptop", "media:photo", "media:photo_24", "media:photo_filled", "media:photo_filled_24", "payment:cash", "payment:cash_24", "payment:credit_card", "payment:credit_card_24", "payment:gift_box", "payment:gift_box_24", "payment:gift_card", "payment:gift_card_24", "payment:shopping_bag", "payment:shopping_bag_24", "people:people", "people:people_24", "people:person", "people:person_24", "people:person_outline", "people:person_outline_24", "time:calendar", "time:calendar_24", "time:clock", "time:clock_24", "time:clock_filled", "time:clock_filled_24", "ui-control:award_ribbon", "ui-control:check_mark", "ui-control:check_mark_24", "ui-control:check_mark_circle_filled", "ui-control:check_mark_circle_filled_24", "ui-control:drag", "ui-control:email", "ui-control:email_24", "ui-control:exclamation_circle_filled", "ui-control:exclamation_circle_filled_24", "ui-control:globe", "ui-control:globe_24", "ui-control:grid", "ui-control:grid_24", "ui-control:left_quote", "ui-control:lines_three", "ui-control:lines_three_24", "ui-control:lines_three_vertical", "ui-control:lines_three_vertical_24", "ui-control:lines_two", "ui-control:lines_two_24", "ui-control:lines_two_dots", "ui-control:lines_two_dots_24", "ui-control:minus", "ui-control:minus_24", "ui-control:minus_circle", "ui-control:minus_circle_24", "ui-control:minus_circle_filled", "ui-control:minus_circle_filled_24", "ui-control:pause", "ui-control:pause_24", "ui-control:play", "ui-control:plus", "ui-control:plus_24", "ui-control:plus_circle", "ui-control:plus_circle_24", "ui-control:plus_circle_filled", "ui-control:plus_circle_filled_24", "ui-control:shield", "ui-control:shield_24", "ui-control:sound_off", "ui-control:sound_off_24", "ui-control:sound_on", "ui-control:three_dots_cluster", "ui-control:three_dots_cluster_24", "ui-control:three_dots_horizontal", "ui-control:three_dots_horizontal_24", "ui-control:x", "ui-control:x_24", "ui-control:x_small", "ui-control:x_small_24", "view:eye_open", "view:eye_open_24", "view:magnifying_glass", "view:magnifying_glass_24", "view:magnifying_glass_filled", "view:magnifying_glass_filled_24", "work:assemble", "work:assemble_24", "work:basket_filled", "work:basket_filled_24", "work:box", "work:box_24", "work:broom", "work:broom_24", "work:corner", "work:corner_24", "work:cube_outline", "work:cube_outline_24", "work:glue", "work:glue_24", "work:leaf", "work:leaf_24", "work:light_bulb", "work:light_bulb_24", "work:mask", "work:mask_24", "work:no_entry", "work:no_entry_24", "work:p_circle", "work:p_circle_24", "work:print_nozzle", "work:print_nozzle_24", "work:rfid_signal", "work:rfid_signal_24", "work:sand_painted", "work:sand_painted_24", "work:sand_paper", "work:sand_paper_24", "work:sand_primed", "work:sand_primed_24", "work:sd_card_filled_exclamation", "work:sd_card_filled_exclamation_24", "work:sd_card_outline", "work:sd_card_outline_24", "work:spool", "work:spool_24", "work:sun", "work:sun_24", "work:tape", "work:tape_24", "work:triangle_ruler", "work:triangle_ruler_24", "work:triangle_ruler_filled", "work:tumbler", "work:tumbler_24", "work:water_drop", "work:water_drop_24", "work:water_drop_dotted", "work:water_drop_dotted_24", "work:wrench", "work:wrench_24"];
|
|
1
|
+
export declare const IconsList: readonly ["actions:funnel", "actions:funnel_24", "actions:funnel_filled", "actions:funnel_filled_24", "actions:gear", "actions:gear_24", "actions:life_buoy", "actions:life_buoy_24", "actions:link", "actions:link_24", "actions:star", "actions:star_24", "actions:star_filled", "actions:star_filled_24", "actions:star_half", "actions:star_half_24", "actions:stroke_play", "actions:stroke_play_24", "actions:thumbs_up", "actions:thumbs_up_24", "actions:trash_can", "actions:trash_can_24", "alert:bell", "alert:bell_24", "alert:bell_filled", "alert:bell_filled_24", "alert:i_circle", "alert:i_circle_24", "alert:lightning_bolt", "alert:lightning_bolt_24", "alert:lightning_bolt_filled", "alert:lightning_bolt_filled_24", "alert:question_mark_circle", "alert:question_mark_circle_24", "alert:warning_triangle", "alert:warning_triangle_24", "animated:loader", "arrows:arrow_chevron_double_down", "arrows:arrow_chevron_double_down_24", "arrows:arrow_chevron_double_left", "arrows:arrow_chevron_double_left_24", "arrows:arrow_chevron_double_right", "arrows:arrow_chevron_double_right_24", "arrows:arrow_chevron_double_up", "arrows:arrow_chevron_double_up_24", "arrows:arrow_chevron_down", "arrows:arrow_chevron_down_24", "arrows:arrow_chevron_left", "arrows:arrow_chevron_left_24", "arrows:arrow_chevron_right", "arrows:arrow_chevron_right_24", "arrows:arrow_chevron_up", "arrows:arrow_chevron_up_24", "arrows:arrow_diag", "arrows:arrow_diag_24", "arrows:arrow_down", "arrows:arrow_down_24", "arrows:arrow_download", "arrows:arrow_download_24", "arrows:arrow_external", "arrows:arrow_external_24", "arrows:arrow_left", "arrows:arrow_left_24", "arrows:arrow_line_down", "arrows:arrow_line_down_24", "arrows:arrow_line_left", "arrows:arrow_line_left_24", "arrows:arrow_line_right", "arrows:arrow_line_right_24", "arrows:arrow_line_up", "arrows:arrow_line_up_24", "arrows:arrow_return", "arrows:arrow_right", "arrows:arrow_right_24", "arrows:arrow_rotate_two", "arrows:arrow_rotate_two_24", "arrows:arrow_triangle_down", "arrows:arrow_triangle_down_24", "arrows:arrow_triangle_left", "arrows:arrow_triangle_left_24", "arrows:arrow_triangle_right", "arrows:arrow_triangle_right_24", "arrows:arrow_triangle_up", "arrows:arrow_triangle_up_24", "arrows:arrow_triangle_updown", "arrows:arrow_triangle_updown_24", "arrows:arrow_triangle_updown_down_filled", "arrows:arrow_triangle_updown_down_filled_24", "arrows:arrow_triangle_updown_filled", "arrows:arrow_triangle_updown_filled_24", "arrows:arrow_triangle_updown_top_filled", "arrows:arrow_triangle_updown_top_filled_24", "arrows:arrow_up", "arrows:arrow_up_24", "arrows:arrow_updown", "arrows:arrow_updown_24", "arrows:arrow_updown_filled", "arrows:arrow_updown_filled_24", "arrows:arrow_upload", "arrows:arrow_upload_24", "data:chart_bar", "data:chart_bar_24", "docs:document_blank", "docs:document_blank_24", "docs:document_lines", "docs:document_lines_24", "docs:pencil", "docs:pencil_24", "location:house", "location:house_24", "location:location_california", "location:location_california_24", "location:location_pin", "location:location_pin_24", "logos:logo_affirm", "logos:logo_affirm_colored", "logos:logo_apple", "logos:logo_apple_text", "logos:logo_apple_text_24", "logos:logo_behance", "logos:logo_facebook", "logos:logo_gantri", "logos:logo_github", "logos:logo_google", "logos:logo_google_text", "logos:logo_google_text_24", "logos:logo_instagram", "logos:logo_linkedin", "logos:logo_pinterest", "logos:logo_tiktok", "logos:logo_twitter", "logos:logo_yotpo", "logos:logo_youtube", "machine:difficulty_easy", "machine:difficulty_hard", "machine:difficulty_moderate", "machine:difficulty_multiple", "machine:laptop", "media:photo", "media:photo_24", "media:photo_filled", "media:photo_filled_24", "payment:cash", "payment:cash_24", "payment:credit_card", "payment:credit_card_24", "payment:gift_box", "payment:gift_box_24", "payment:gift_card", "payment:gift_card_24", "payment:shopping_bag", "payment:shopping_bag_24", "people:people", "people:people_24", "people:person", "people:person_24", "people:person_outline", "people:person_outline_24", "time:calendar", "time:calendar_24", "time:clock", "time:clock_24", "time:clock_filled", "time:clock_filled_24", "ui-control:award_ribbon", "ui-control:check_mark", "ui-control:check_mark_24", "ui-control:check_mark_circle_filled", "ui-control:check_mark_circle_filled_24", "ui-control:drag", "ui-control:email", "ui-control:email_24", "ui-control:exclamation_circle_filled", "ui-control:exclamation_circle_filled_24", "ui-control:globe", "ui-control:globe_24", "ui-control:grid", "ui-control:grid_24", "ui-control:left_quote", "ui-control:lines_three", "ui-control:lines_three_24", "ui-control:lines_three_vertical", "ui-control:lines_three_vertical_24", "ui-control:lines_two", "ui-control:lines_two_24", "ui-control:lines_two_dots", "ui-control:lines_two_dots_24", "ui-control:minus", "ui-control:minus_24", "ui-control:minus_circle", "ui-control:minus_circle_24", "ui-control:minus_circle_filled", "ui-control:minus_circle_filled_24", "ui-control:pause", "ui-control:pause_24", "ui-control:play", "ui-control:plus", "ui-control:plus_24", "ui-control:plus_circle", "ui-control:plus_circle_24", "ui-control:plus_circle_filled", "ui-control:plus_circle_filled_24", "ui-control:shield", "ui-control:shield_24", "ui-control:sound_off", "ui-control:sound_off_24", "ui-control:sound_on", "ui-control:three_dots_cluster", "ui-control:three_dots_cluster_24", "ui-control:three_dots_horizontal", "ui-control:three_dots_horizontal_24", "ui-control:video_enlarge", "ui-control:video_enlarge_24", "ui-control:x", "ui-control:x_24", "ui-control:x_small", "ui-control:x_small_24", "view:eye_open", "view:eye_open_24", "view:magnifying_glass", "view:magnifying_glass_24", "view:magnifying_glass_filled", "view:magnifying_glass_filled_24", "work:assemble", "work:assemble_24", "work:basket_filled", "work:basket_filled_24", "work:box", "work:box_24", "work:broom", "work:broom_24", "work:corner", "work:corner_24", "work:cube_outline", "work:cube_outline_24", "work:glue", "work:glue_24", "work:hand_finish", "work:hand_finish_24", "work:leaf", "work:leaf_24", "work:light_bulb", "work:light_bulb_24", "work:mask", "work:mask_24", "work:no_entry", "work:no_entry_24", "work:p_circle", "work:p_circle_24", "work:print_nozzle", "work:print_nozzle_24", "work:rfid_signal", "work:rfid_signal_24", "work:sand_painted", "work:sand_painted_24", "work:sand_paper", "work:sand_paper_24", "work:sand_primed", "work:sand_primed_24", "work:sd_card_filled_exclamation", "work:sd_card_filled_exclamation_24", "work:sd_card_outline", "work:sd_card_outline_24", "work:spool", "work:spool_24", "work:sun", "work:sun_24", "work:tape", "work:tape_24", "work:triangle_ruler", "work:triangle_ruler_24", "work:triangle_ruler_filled", "work:tumbler", "work:tumbler_24", "work:water_drop", "work:water_drop_24", "work:water_drop_dotted", "work:water_drop_dotted_24", "work:wrench", "work:wrench_24"];
|
|
2
2
|
export type IconType = typeof IconsList[number];
|