@scbt-ecom/ui 0.110.0 → 0.111.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.
Files changed (41) hide show
  1. package/dist/lib/shared/types/nonNullable.js +2 -0
  2. package/dist/lib/shared/types/nonNullable.js.map +1 -0
  3. package/dist/lib/shared/ui/formElements/controlled/autocomplete/Autocomplete.js +1 -1
  4. package/dist/lib/shared/ui/formElements/controlled/autocomplete/Autocomplete.js.map +1 -1
  5. package/dist/lib/shared/ui/formElements/controlled/combobox/ComboboxControl.js +1 -1
  6. package/dist/lib/shared/ui/formElements/controlled/combobox/ComboboxControl.js.map +1 -1
  7. package/dist/lib/shared/ui/formElements/ui/fieldAttachment/FieldAttachment.js +1 -1
  8. package/dist/lib/shared/ui/formElements/ui/fieldAttachment/FieldAttachment.js.map +1 -1
  9. package/dist/lib/shared/ui/formElements/uncontrolled/combobox/combobox.js +1 -1
  10. package/dist/lib/shared/ui/formElements/uncontrolled/combobox/combobox.js.map +1 -1
  11. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/MaskInput.js +1 -1
  12. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/MaskInput.js.map +1 -1
  13. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/constants.js +2 -0
  14. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/constants.js.map +1 -0
  15. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/index.js +2 -0
  16. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/index.js.map +1 -0
  17. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/types.js +2 -0
  18. package/dist/lib/shared/ui/formElements/uncontrolled/maskInput/model/types.js.map +1 -0
  19. package/dist/lib/shared/ui/icon/allowedIcons.js +1 -1
  20. package/dist/lib/shared/ui/icon/allowedIcons.js.map +1 -1
  21. package/dist/lib/shared/ui/icon/iconsMap.js +1 -1
  22. package/dist/lib/shared/ui/icon/iconsMap.js.map +1 -1
  23. package/dist/lib/widgets/model/helpers.js +2 -2
  24. package/dist/lib/widgets/model/helpers.js.map +1 -1
  25. package/dist/node_modules/@date-fns/tz/date/index.js.map +1 -1
  26. package/dist/node_modules/@date-fns/tz/date/mini.js +1 -1
  27. package/dist/node_modules/@date-fns/tz/date/mini.js.map +1 -1
  28. package/dist/node_modules/@date-fns/tz/tzOffset/index.js +1 -1
  29. package/dist/node_modules/@date-fns/tz/tzOffset/index.js.map +1 -1
  30. package/dist/stats.html +1 -1
  31. package/dist/types/lib/shared/types/index.d.ts +1 -0
  32. package/dist/types/lib/shared/types/nonNullable.d.ts +1 -0
  33. package/dist/types/lib/shared/ui/formElements/uncontrolled/combobox/combobox.d.ts +1 -1
  34. package/dist/types/lib/shared/ui/formElements/uncontrolled/index.d.ts +1 -1
  35. package/dist/types/lib/shared/ui/formElements/uncontrolled/maskInput/MaskInput.d.ts +5 -3
  36. package/dist/types/lib/shared/ui/formElements/uncontrolled/maskInput/model/constants.d.ts +4 -0
  37. package/dist/types/lib/shared/ui/formElements/uncontrolled/maskInput/model/index.d.ts +3 -0
  38. package/dist/types/lib/shared/ui/formElements/uncontrolled/maskInput/model/types.d.ts +2 -0
  39. package/dist/types/lib/shared/ui/icon/allowedIcons.d.ts +11 -11
  40. package/dist/types/lib/shared/ui/icon/iconsMap.d.ts +60 -60
  41. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
1
  export type * from './deepPartial';
2
2
  export type * from './keysOf';
3
3
  export type * from './dicriminatedUnion';
4
+ export type * from './nonNullable';
@@ -0,0 +1 @@
1
+ export type NonNullable<T> = T extends null ? never : T;
@@ -86,7 +86,7 @@ export interface ComboboxProps<Multi extends boolean> extends Omit<DropdownListP
86
86
  filterDisabled?: boolean;
87
87
  /**
88
88
  * Включить рендеринг в портале
89
- * @param portal document.body
89
+ * @property {false | HTMLElement} portal document.body
90
90
  */
91
91
  portal?: false | HTMLElement;
92
92
  }
@@ -50,7 +50,7 @@ export declare const Uncontrolled: {
50
50
  onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
51
51
  };
52
52
  } & {
53
- mask: "datetime" | "email" | "numeric" | "currency" | "decimal" | "integer" | "percentage" | "url" | "ip" | "mac" | "ssn" | "brl-currency" | "cpf" | "cnpj" | (string & {}) | (string[] & {}) | null;
53
+ mask: import('../../../types').NonNullable<import('./maskInput/model').Mask>;
54
54
  externalMaskDefinitions?: Record<string, import('./maskInput/MaskInput').Definition>;
55
55
  } & import('react').RefAttributes<HTMLInputElement>>;
56
56
  CheckboxBase: import('react').ForwardRefExoticComponent<import('@radix-ui/react-checkbox').CheckboxProps & {
@@ -1,4 +1,6 @@
1
1
  import { InputBaseProps } from '../input';
2
+ import { Mask } from './model';
3
+ import { NonNullable } from '../../../../../../shared/types';
2
4
  type Validator = (char: string) => boolean;
3
5
  type Casing = 'upper' | 'lower' | 'title';
4
6
  export type Definition = {
@@ -12,7 +14,7 @@ export type MaskInputProps = InputBaseProps & {
12
14
  /**
13
15
  * маска, по которой будет определяться валидация символов
14
16
  */
15
- mask: 'datetime' | 'email' | 'numeric' | 'currency' | 'decimal' | 'integer' | 'percentage' | 'url' | 'ip' | 'mac' | 'ssn' | 'brl-currency' | 'cpf' | 'cnpj' | (string & {}) | (string[] & {}) | null;
17
+ mask: NonNullable<Mask>;
16
18
  /**
17
19
  * дополнительные валидаторы спец символов в маске
18
20
  */
@@ -29,7 +31,7 @@ export declare const MaskInput: import('react').ForwardRefExoticComponent<Omit<i
29
31
  classes?: import('../input/Input').InputBaseClasses;
30
32
  label: string;
31
33
  invalid?: boolean;
32
- attachmentProps?: import('../../../../types').DeepPartial<import('../../ui').IFieldAttachmentProps>;
34
+ attachmentProps?: import('../../../../../../shared/types').DeepPartial<import('../../ui').IFieldAttachmentProps>;
33
35
  renderValues?: () => React.JSX.Element | null;
34
36
  externalHandlers?: {
35
37
  onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
@@ -41,7 +43,7 @@ export declare const MaskInput: import('react').ForwardRefExoticComponent<Omit<i
41
43
  /**
42
44
  * маска, по которой будет определяться валидация символов
43
45
  */
44
- mask: "datetime" | "email" | "numeric" | "currency" | "decimal" | "integer" | "percentage" | "url" | "ip" | "mac" | "ssn" | "brl-currency" | "cpf" | "cnpj" | (string & {}) | (string[] & {}) | null;
46
+ mask: NonNullable<Mask>;
45
47
  /**
46
48
  * дополнительные валидаторы спец символов в маске
47
49
  */
@@ -0,0 +1,4 @@
1
+ import { Mask } from './types';
2
+ export declare const DEFAULT_PHONE: string[];
3
+ export declare const DEFAULT_CAR: string[];
4
+ export declare const defaultMask: Map<Mask, Mask>;
@@ -0,0 +1,3 @@
1
+ export * from './constants';
2
+ export type * from './types';
3
+ export { defaultDefinitions } from './mask';
@@ -0,0 +1,2 @@
1
+ import { Mask as DefaultMask } from 'use-mask-input';
2
+ export type Mask = DefaultMask | 'phone' | 'car';
@@ -2,17 +2,17 @@ export type AllowedIcons = (typeof allowedIcons.flatten)[number];
2
2
  export type AllowedIconsGroup<T extends keyof typeof allowedIcons.group> = (typeof allowedIcons.group)[T][number];
3
3
  export declare const allowedIcons: {
4
4
  readonly group: {
5
- readonly arrows: readonly ["arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll"];
6
- readonly brandLogos: readonly ["brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite"];
7
- readonly communication: readonly ["communication/phone"];
8
- readonly editor: readonly ["editor/bold", "editor/fonts", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo"];
9
- readonly files: readonly ["files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload"];
10
- readonly general: readonly ["general/calendar", "general/check", "general/close", "general/edit", "general/heart", "general/hiddenEye", "general/loginFilled", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye"];
11
- readonly info: readonly ["info/helpCircle", "info/warningCircle"];
12
- readonly logos: readonly ["logos/beeline", "logos/megafon", "logos/mts"];
13
- readonly media: readonly ["media/desktop", "media/mobile"];
14
- readonly social: readonly ["social/classmates", "social/telegram", "social/vk"];
15
5
  readonly status: readonly ["status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser", "status/succesCircle"];
6
+ readonly social: readonly ["social/classmates", "social/telegram", "social/vk"];
7
+ readonly media: readonly ["media/desktop", "media/mobile"];
8
+ readonly logos: readonly ["logos/beeline", "logos/megafon", "logos/mts"];
9
+ readonly info: readonly ["info/helpCircle", "info/warningCircle"];
10
+ readonly general: readonly ["general/calendar", "general/check", "general/close", "general/edit", "general/heart", "general/hiddenEye", "general/loginFilled", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye"];
11
+ readonly files: readonly ["files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload"];
12
+ readonly editor: readonly ["editor/bold", "editor/fonts", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo"];
13
+ readonly communication: readonly ["communication/phone"];
14
+ readonly brandLogos: readonly ["brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite"];
15
+ readonly arrows: readonly ["arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll"];
16
16
  };
17
- readonly flatten: readonly ["arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll", "brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite", "communication/phone", "editor/bold", "editor/fonts", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo", "files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload", "general/calendar", "general/check", "general/close", "general/edit", "general/heart", "general/hiddenEye", "general/loginFilled", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye", "info/helpCircle", "info/warningCircle", "logos/beeline", "logos/megafon", "logos/mts", "media/desktop", "media/mobile", "social/classmates", "social/telegram", "social/vk", "status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser", "status/succesCircle"];
17
+ readonly flatten: readonly ["status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser", "status/succesCircle", "social/classmates", "social/telegram", "social/vk", "media/desktop", "media/mobile", "logos/beeline", "logos/megafon", "logos/mts", "info/helpCircle", "info/warningCircle", "general/calendar", "general/check", "general/close", "general/edit", "general/heart", "general/hiddenEye", "general/loginFilled", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye", "files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload", "editor/bold", "editor/fonts", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo", "communication/phone", "brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite", "arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll"];
18
18
  };
@@ -1,359 +1,359 @@
1
1
  export declare const iconsMap: {
2
- 'arrows/arrowCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2
+ 'status/badSmile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
4
  titleId?: string;
5
5
  desc?: string;
6
6
  descId?: string;
7
7
  }>;
8
- 'arrows/arrowDownRight': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
8
+ 'status/iconMark': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
9
  title?: string;
10
10
  titleId?: string;
11
11
  desc?: string;
12
12
  descId?: string;
13
13
  }>;
14
- 'arrows/arrowLink': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
14
+ 'status/iconRetry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
15
  title?: string;
16
16
  titleId?: string;
17
17
  desc?: string;
18
18
  descId?: string;
19
19
  }>;
20
- 'arrows/arrowRight': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
20
+ 'status/iconUser': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
21
  title?: string;
22
22
  titleId?: string;
23
23
  desc?: string;
24
24
  descId?: string;
25
25
  }>;
26
- 'arrows/arrowRotate': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
26
+ 'status/succesCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
27
  title?: string;
28
28
  titleId?: string;
29
29
  desc?: string;
30
30
  descId?: string;
31
31
  }>;
32
- 'arrows/arrowScroll': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
32
+ 'social/classmates': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
33
  title?: string;
34
34
  titleId?: string;
35
35
  desc?: string;
36
36
  descId?: string;
37
37
  }>;
38
- 'brandLogos/logoBlack': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
38
+ 'social/telegram': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
39
  title?: string;
40
40
  titleId?: string;
41
41
  desc?: string;
42
42
  descId?: string;
43
43
  }>;
44
- 'brandLogos/logoBusiness': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
44
+ 'social/vk': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
45
  title?: string;
46
46
  titleId?: string;
47
47
  desc?: string;
48
48
  descId?: string;
49
49
  }>;
50
- 'brandLogos/logoGray': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
50
+ 'media/desktop': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
51
  title?: string;
52
52
  titleId?: string;
53
53
  desc?: string;
54
54
  descId?: string;
55
55
  }>;
56
- 'brandLogos/logoInsurance': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
56
+ 'media/mobile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
57
  title?: string;
58
58
  titleId?: string;
59
59
  desc?: string;
60
60
  descId?: string;
61
61
  }>;
62
- 'brandLogos/logoMain': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
62
+ 'logos/beeline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
63
  title?: string;
64
64
  titleId?: string;
65
65
  desc?: string;
66
66
  descId?: string;
67
67
  }>;
68
- 'brandLogos/logoWhite': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
68
+ 'logos/megafon': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
69
  title?: string;
70
70
  titleId?: string;
71
71
  desc?: string;
72
72
  descId?: string;
73
73
  }>;
74
- 'communication/phone': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
74
+ 'logos/mts': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
75
  title?: string;
76
76
  titleId?: string;
77
77
  desc?: string;
78
78
  descId?: string;
79
79
  }>;
80
- 'editor/bold': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
80
+ 'info/helpCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
81
  title?: string;
82
82
  titleId?: string;
83
83
  desc?: string;
84
84
  descId?: string;
85
85
  }>;
86
- 'editor/fonts': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
86
+ 'info/warningCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
87
  title?: string;
88
88
  titleId?: string;
89
89
  desc?: string;
90
90
  descId?: string;
91
91
  }>;
92
- 'editor/heading': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
92
+ 'general/calendar': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
93
  title?: string;
94
94
  titleId?: string;
95
95
  desc?: string;
96
96
  descId?: string;
97
97
  }>;
98
- 'editor/italic': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
98
+ 'general/check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
99
  title?: string;
100
100
  titleId?: string;
101
101
  desc?: string;
102
102
  descId?: string;
103
103
  }>;
104
- 'editor/link': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
104
+ 'general/close': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
105
  title?: string;
106
106
  titleId?: string;
107
107
  desc?: string;
108
108
  descId?: string;
109
109
  }>;
110
- 'editor/list': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
110
+ 'general/edit': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
111
  title?: string;
112
112
  titleId?: string;
113
113
  desc?: string;
114
114
  descId?: string;
115
115
  }>;
116
- 'editor/palette': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
116
+ 'general/heart': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
117
  title?: string;
118
118
  titleId?: string;
119
119
  desc?: string;
120
120
  descId?: string;
121
121
  }>;
122
- 'editor/redo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
122
+ 'general/hiddenEye': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
123
  title?: string;
124
124
  titleId?: string;
125
125
  desc?: string;
126
126
  descId?: string;
127
127
  }>;
128
- 'editor/removeFormatting': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
128
+ 'general/loginFilled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
129
  title?: string;
130
130
  titleId?: string;
131
131
  desc?: string;
132
132
  descId?: string;
133
133
  }>;
134
- 'editor/space': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
134
+ 'general/menu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
135
  title?: string;
136
136
  titleId?: string;
137
137
  desc?: string;
138
138
  descId?: string;
139
139
  }>;
140
- 'editor/strikethrough': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
140
+ 'general/plus': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
141
  title?: string;
142
142
  titleId?: string;
143
143
  desc?: string;
144
144
  descId?: string;
145
145
  }>;
146
- 'editor/typography': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
146
+ 'general/reorder': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
147
  title?: string;
148
148
  titleId?: string;
149
149
  desc?: string;
150
150
  descId?: string;
151
151
  }>;
152
- 'editor/underline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
152
+ 'general/search': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
153
  title?: string;
154
154
  titleId?: string;
155
155
  desc?: string;
156
156
  descId?: string;
157
157
  }>;
158
- 'editor/undo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
158
+ 'general/shield': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
159
  title?: string;
160
160
  titleId?: string;
161
161
  desc?: string;
162
162
  descId?: string;
163
163
  }>;
164
- 'files/border': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
164
+ 'general/showEye': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
165
165
  title?: string;
166
166
  titleId?: string;
167
167
  desc?: string;
168
168
  descId?: string;
169
169
  }>;
170
- 'files/borderError': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
170
+ 'files/border': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
171
171
  title?: string;
172
172
  titleId?: string;
173
173
  desc?: string;
174
174
  descId?: string;
175
175
  }>;
176
- 'files/documentFilled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
176
+ 'files/borderError': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
177
177
  title?: string;
178
178
  titleId?: string;
179
179
  desc?: string;
180
180
  descId?: string;
181
181
  }>;
182
- 'files/documentOutline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
182
+ 'files/documentFilled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
183
183
  title?: string;
184
184
  titleId?: string;
185
185
  desc?: string;
186
186
  descId?: string;
187
187
  }>;
188
- 'files/upload': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
188
+ 'files/documentOutline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
189
189
  title?: string;
190
190
  titleId?: string;
191
191
  desc?: string;
192
192
  descId?: string;
193
193
  }>;
194
- 'general/calendar': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
194
+ 'files/upload': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
195
195
  title?: string;
196
196
  titleId?: string;
197
197
  desc?: string;
198
198
  descId?: string;
199
199
  }>;
200
- 'general/check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
200
+ 'editor/bold': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
201
201
  title?: string;
202
202
  titleId?: string;
203
203
  desc?: string;
204
204
  descId?: string;
205
205
  }>;
206
- 'general/close': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
206
+ 'editor/fonts': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
207
207
  title?: string;
208
208
  titleId?: string;
209
209
  desc?: string;
210
210
  descId?: string;
211
211
  }>;
212
- 'general/edit': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
212
+ 'editor/heading': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
213
213
  title?: string;
214
214
  titleId?: string;
215
215
  desc?: string;
216
216
  descId?: string;
217
217
  }>;
218
- 'general/heart': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
218
+ 'editor/italic': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
219
219
  title?: string;
220
220
  titleId?: string;
221
221
  desc?: string;
222
222
  descId?: string;
223
223
  }>;
224
- 'general/hiddenEye': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
224
+ 'editor/link': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
225
225
  title?: string;
226
226
  titleId?: string;
227
227
  desc?: string;
228
228
  descId?: string;
229
229
  }>;
230
- 'general/loginFilled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
230
+ 'editor/list': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
231
231
  title?: string;
232
232
  titleId?: string;
233
233
  desc?: string;
234
234
  descId?: string;
235
235
  }>;
236
- 'general/menu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
236
+ 'editor/palette': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
237
237
  title?: string;
238
238
  titleId?: string;
239
239
  desc?: string;
240
240
  descId?: string;
241
241
  }>;
242
- 'general/plus': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
242
+ 'editor/redo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
243
243
  title?: string;
244
244
  titleId?: string;
245
245
  desc?: string;
246
246
  descId?: string;
247
247
  }>;
248
- 'general/reorder': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
248
+ 'editor/removeFormatting': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
249
249
  title?: string;
250
250
  titleId?: string;
251
251
  desc?: string;
252
252
  descId?: string;
253
253
  }>;
254
- 'general/search': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
254
+ 'editor/space': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
255
255
  title?: string;
256
256
  titleId?: string;
257
257
  desc?: string;
258
258
  descId?: string;
259
259
  }>;
260
- 'general/shield': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
260
+ 'editor/strikethrough': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
261
261
  title?: string;
262
262
  titleId?: string;
263
263
  desc?: string;
264
264
  descId?: string;
265
265
  }>;
266
- 'general/showEye': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
266
+ 'editor/typography': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
267
267
  title?: string;
268
268
  titleId?: string;
269
269
  desc?: string;
270
270
  descId?: string;
271
271
  }>;
272
- 'info/helpCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
272
+ 'editor/underline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
273
273
  title?: string;
274
274
  titleId?: string;
275
275
  desc?: string;
276
276
  descId?: string;
277
277
  }>;
278
- 'info/warningCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
278
+ 'editor/undo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
279
279
  title?: string;
280
280
  titleId?: string;
281
281
  desc?: string;
282
282
  descId?: string;
283
283
  }>;
284
- 'logos/beeline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
284
+ 'communication/phone': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
285
285
  title?: string;
286
286
  titleId?: string;
287
287
  desc?: string;
288
288
  descId?: string;
289
289
  }>;
290
- 'logos/megafon': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
290
+ 'brandLogos/logoBlack': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
291
291
  title?: string;
292
292
  titleId?: string;
293
293
  desc?: string;
294
294
  descId?: string;
295
295
  }>;
296
- 'logos/mts': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
296
+ 'brandLogos/logoBusiness': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
297
297
  title?: string;
298
298
  titleId?: string;
299
299
  desc?: string;
300
300
  descId?: string;
301
301
  }>;
302
- 'media/desktop': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
302
+ 'brandLogos/logoGray': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
303
303
  title?: string;
304
304
  titleId?: string;
305
305
  desc?: string;
306
306
  descId?: string;
307
307
  }>;
308
- 'media/mobile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
308
+ 'brandLogos/logoInsurance': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
309
309
  title?: string;
310
310
  titleId?: string;
311
311
  desc?: string;
312
312
  descId?: string;
313
313
  }>;
314
- 'social/classmates': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
314
+ 'brandLogos/logoMain': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
315
315
  title?: string;
316
316
  titleId?: string;
317
317
  desc?: string;
318
318
  descId?: string;
319
319
  }>;
320
- 'social/telegram': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
320
+ 'brandLogos/logoWhite': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
321
321
  title?: string;
322
322
  titleId?: string;
323
323
  desc?: string;
324
324
  descId?: string;
325
325
  }>;
326
- 'social/vk': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
326
+ 'arrows/arrowCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
327
327
  title?: string;
328
328
  titleId?: string;
329
329
  desc?: string;
330
330
  descId?: string;
331
331
  }>;
332
- 'status/badSmile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
332
+ 'arrows/arrowDownRight': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
333
333
  title?: string;
334
334
  titleId?: string;
335
335
  desc?: string;
336
336
  descId?: string;
337
337
  }>;
338
- 'status/iconMark': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
338
+ 'arrows/arrowLink': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
339
339
  title?: string;
340
340
  titleId?: string;
341
341
  desc?: string;
342
342
  descId?: string;
343
343
  }>;
344
- 'status/iconRetry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
344
+ 'arrows/arrowRight': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
345
345
  title?: string;
346
346
  titleId?: string;
347
347
  desc?: string;
348
348
  descId?: string;
349
349
  }>;
350
- 'status/iconUser': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
350
+ 'arrows/arrowRotate': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
351
351
  title?: string;
352
352
  titleId?: string;
353
353
  desc?: string;
354
354
  descId?: string;
355
355
  }>;
356
- 'status/succesCircle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
356
+ 'arrows/arrowScroll': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
357
357
  title?: string;
358
358
  titleId?: string;
359
359
  desc?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scbt-ecom/ui",
3
- "version": "0.110.0",
3
+ "version": "0.111.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {