ar-design 0.2.80 → 0.2.82

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 (54) hide show
  1. package/dist/assets/css/components/data-display/chip/chip.css +1 -3
  2. package/dist/assets/css/components/form/checkbox/core/border.css +106 -74
  3. package/dist/assets/css/components/form/select/styles.css +1 -1
  4. package/dist/assets/css/components/form/switch/core/border.css +178 -59
  5. package/dist/assets/css/components/form/switch/styles.css +4 -8
  6. package/dist/assets/css/components/form/upload/preview-selected-files.css +5 -1
  7. package/dist/assets/css/core/ar-core.css +10 -2
  8. package/dist/assets/css/core/color-palette.css +111 -0
  9. package/dist/assets/css/core/variants/animation.css +90 -60
  10. package/dist/assets/css/core/variants/borderless/borderless.css +325 -122
  11. package/dist/assets/css/core/variants/dashed/dashed.css +323 -147
  12. package/dist/assets/css/core/variants/filled/styles.css +439 -0
  13. package/dist/assets/css/core/variants/outlined/styles.css +406 -0
  14. package/dist/assets/css/core/variants/surface/styles.css +263 -0
  15. package/dist/components/data-display/card/index.js +1 -1
  16. package/dist/components/data-display/chip/IProps.d.ts +2 -2
  17. package/dist/components/data-display/chip/index.js +2 -2
  18. package/dist/components/data-display/table/IProps.d.ts +2 -2
  19. package/dist/components/data-display/table/index.js +7 -7
  20. package/dist/components/feedback/popover/index.js +2 -2
  21. package/dist/components/feedback/popup/index.js +6 -6
  22. package/dist/components/feedback/progress/index.js +1 -1
  23. package/dist/components/form/button/IProps.d.ts +2 -2
  24. package/dist/components/form/button/index.js +2 -2
  25. package/dist/components/form/button-action/index.js +2 -2
  26. package/dist/components/form/checkbox/IProps.d.ts +2 -2
  27. package/dist/components/form/checkbox/index.js +2 -2
  28. package/dist/components/form/date-picker/Props.d.ts +1 -1
  29. package/dist/components/form/date-picker/index.js +2 -2
  30. package/dist/components/form/input/IProps.d.ts +2 -2
  31. package/dist/components/form/input/index.js +3 -3
  32. package/dist/components/form/input-tag/IProps.d.ts +1 -1
  33. package/dist/components/form/radio/IProps.d.ts +2 -2
  34. package/dist/components/form/radio/index.js +2 -2
  35. package/dist/components/form/select/Props.d.ts +5 -5
  36. package/dist/components/form/select/index.js +8 -6
  37. package/dist/components/form/switch/IProps.d.ts +2 -2
  38. package/dist/components/form/switch/index.js +2 -2
  39. package/dist/components/form/text-editor/IProps.d.ts +2 -2
  40. package/dist/components/form/text-editor/index.d.ts +1 -1
  41. package/dist/components/form/text-editor/index.js +3 -3
  42. package/dist/components/form/upload/PreviewSelectedFile.js +12 -2
  43. package/dist/components/form/upload/PreviewSelectedFiles.js +19 -7
  44. package/dist/components/form/upload/Props.d.ts +2 -3
  45. package/dist/components/form/upload/index.js +2 -3
  46. package/dist/components/icons/Compiler.js +37 -0
  47. package/dist/components/navigation/steps/index.js +1 -1
  48. package/dist/libs/infrastructure/shared/Utils.d.ts +10 -2
  49. package/dist/libs/infrastructure/shared/Utils.js +263 -2
  50. package/dist/libs/types/IGlobalProps.d.ts +13 -1
  51. package/dist/libs/types/index.d.ts +5 -3
  52. package/package.json +1 -1
  53. package/dist/assets/css/core/variants/filled/filled.css +0 -260
  54. package/dist/assets/css/core/variants/outlined/outlined.css +0 -206
@@ -0,0 +1,406 @@
1
+ /* #region BLUE */
2
+ .outlined:not(.disabled) {
3
+ &.blue {
4
+ &.active {
5
+ animation: clicked-blue ease-in-out 750ms 0s 1 normal both;
6
+ }
7
+ }
8
+ }
9
+
10
+ input.outlined:not(.disabled),
11
+ iframe.outlined:not(.disabled),
12
+ .ar-select > .selections.outlined:not(.disabled) {
13
+ &.blue {
14
+ border: solid 1px var(--blue-500);
15
+ color: var(--blue-500);
16
+
17
+ &:focus,
18
+ &.focused {
19
+ border-color: var(--blue-300);
20
+ box-shadow: 0 0 0 3.5px var(--blue-100);
21
+ }
22
+ }
23
+ }
24
+
25
+ button.outlined:not(.disabled) {
26
+ &.blue {
27
+ color: var(--blue-500);
28
+
29
+ &:hover,
30
+ &:focus {
31
+ background-color: var(--blue-100);
32
+ }
33
+ }
34
+ }
35
+ /* #endregion */
36
+ /* BLUE */
37
+
38
+ /* #region PURPLE */
39
+ .outlined:not(.disabled) {
40
+ &.purple {
41
+ &.active {
42
+ animation: clicked-purple ease-in-out 750ms 0s 1 normal both;
43
+ }
44
+ }
45
+ }
46
+
47
+ input.outlined:not(.disabled),
48
+ iframe.outlined:not(.disabled),
49
+ .ar-select > .selections.outlined:not(.disabled) {
50
+ &.purple {
51
+ border: solid 1px var(--purple-500);
52
+ color: var(--purple-500);
53
+
54
+ &:focus,
55
+ &.focused {
56
+ border-color: var(--purple-300);
57
+ box-shadow: 0 0 0 3.5px var(--purple-100);
58
+ }
59
+ }
60
+ }
61
+
62
+ button.outlined:not(.disabled) {
63
+ &.purple {
64
+ color: var(--purple-500);
65
+
66
+ &:hover,
67
+ &:focus {
68
+ background-color: var(--purple-100);
69
+ }
70
+ }
71
+ }
72
+ /* #endregion */
73
+ /* PURPLE */
74
+
75
+ /* #region PINK */
76
+ .outlined:not(.disabled) {
77
+ &.pink {
78
+ &.active {
79
+ animation: clicked-pink ease-in-out 750ms 0s 1 normal both;
80
+ }
81
+ }
82
+ }
83
+
84
+ input.outlined:not(.disabled),
85
+ iframe.outlined:not(.disabled),
86
+ .ar-select > .selections.outlined:not(.disabled) {
87
+ &.pink {
88
+ border: solid 1px var(--pink-500);
89
+ color: var(--pink-500);
90
+
91
+ &:focus,
92
+ &.focused {
93
+ border-color: var(--pink-300);
94
+ box-shadow: 0 0 0 3.5px var(--pink-100);
95
+ }
96
+ }
97
+ }
98
+
99
+ button.outlined:not(.disabled) {
100
+ &.pink {
101
+ color: var(--pink-500);
102
+
103
+ &:hover,
104
+ &:focus {
105
+ background-color: var(--pink-100);
106
+ }
107
+ }
108
+ }
109
+ /* #endregion */
110
+ /* PINK */
111
+
112
+ /* #region RED */
113
+ .outlined:not(.disabled) {
114
+ &.red {
115
+ &.active {
116
+ animation: clicked-red ease-in-out 750ms 0s 1 normal both;
117
+ }
118
+ }
119
+ }
120
+
121
+ input.outlined:not(.disabled),
122
+ iframe.outlined:not(.disabled),
123
+ .ar-select > .selections.outlined:not(.disabled) {
124
+ &.red {
125
+ border: solid 1px var(--red-500);
126
+ color: var(--red-500);
127
+
128
+ &:focus,
129
+ &.focused {
130
+ border-color: var(--red-300);
131
+ box-shadow: 0 0 0 3.5px var(--red-100);
132
+ }
133
+ }
134
+ }
135
+
136
+ button.outlined:not(.disabled) {
137
+ &.red {
138
+ color: var(--red-500);
139
+
140
+ &:hover,
141
+ &:focus {
142
+ background-color: var(--red-100);
143
+ }
144
+ }
145
+ }
146
+ /* #endregion */
147
+ /* RED */
148
+
149
+ /* #region ORANGE */
150
+ .outlined:not(.disabled) {
151
+ &.orange {
152
+ &.active {
153
+ animation: clicked-orange ease-in-out 750ms 0s 1 normal both;
154
+ }
155
+ }
156
+ }
157
+
158
+ input.outlined:not(.disabled),
159
+ iframe.outlined:not(.disabled),
160
+ .ar-select > .selections.outlined:not(.disabled) {
161
+ &.orange {
162
+ border: solid 1px var(--orange-500);
163
+ color: var(--orange-500);
164
+
165
+ &:focus,
166
+ &.focused {
167
+ border-color: var(--orange-300);
168
+ box-shadow: 0 0 0 3.5px var(--orange-100);
169
+ }
170
+ }
171
+ }
172
+
173
+ button.outlined:not(.disabled) {
174
+ &.orange {
175
+ color: var(--orange-500);
176
+
177
+ &:hover,
178
+ &:focus {
179
+ background-color: var(--orange-100);
180
+ }
181
+ }
182
+ }
183
+ /* #endregion */
184
+ /* ORANGE */
185
+
186
+ /* #region YELLOW */
187
+ .outlined:not(.disabled) {
188
+ &.yellow {
189
+ &.active {
190
+ animation: clicked-yellow ease-in-out 750ms 0s 1 normal both;
191
+ }
192
+ }
193
+ }
194
+
195
+ input.outlined:not(.disabled),
196
+ iframe.outlined:not(.disabled),
197
+ .ar-select > .selections.outlined:not(.disabled) {
198
+ &.yellow {
199
+ border: solid 1px var(--yellow-500);
200
+ color: var(--yellow-500);
201
+
202
+ &:focus,
203
+ &.focused {
204
+ border-color: var(--yellow-300);
205
+ box-shadow: 0 0 0 3.5px var(--yellow-100);
206
+ }
207
+ }
208
+ }
209
+
210
+ button.outlined:not(.disabled) {
211
+ &.yellow {
212
+ color: var(--yellow-500);
213
+
214
+ &:hover,
215
+ &:focus {
216
+ background-color: var(--yellow-100);
217
+ }
218
+ }
219
+ }
220
+ /* #endregion */
221
+ /* YELLOW */
222
+
223
+ /* #region GREEN */
224
+ .outlined:not(.disabled) {
225
+ &.green {
226
+ &.active {
227
+ animation: clicked-green ease-in-out 750ms 0s 1 normal both;
228
+ }
229
+ }
230
+ }
231
+
232
+ input.outlined:not(.disabled),
233
+ iframe.outlined:not(.disabled),
234
+ .ar-select > .selections.outlined:not(.disabled) {
235
+ &.green {
236
+ border: solid 1px var(--green-500);
237
+ color: var(--green-500);
238
+
239
+ &:focus,
240
+ &.focused {
241
+ border-color: var(--green-300);
242
+ box-shadow: 0 0 0 3.5px var(--green-100);
243
+ }
244
+ }
245
+ }
246
+
247
+ button.outlined:not(.disabled) {
248
+ &.green {
249
+ color: var(--green-500);
250
+
251
+ &:hover,
252
+ &:focus {
253
+ background-color: var(--green-100);
254
+ }
255
+ }
256
+ }
257
+ /* #endregion */
258
+ /* GREEN */
259
+
260
+ /* #region TEAL */
261
+ .outlined:not(.disabled) {
262
+ &.teal {
263
+ &.active {
264
+ animation: clicked-teal ease-in-out 750ms 0s 1 normal both;
265
+ }
266
+ }
267
+ }
268
+
269
+ input.outlined:not(.disabled),
270
+ iframe.outlined:not(.disabled),
271
+ .ar-select > .selections.outlined:not(.disabled) {
272
+ &.teal {
273
+ border: solid 1px var(--teal-500);
274
+ color: var(--teal-500);
275
+
276
+ &:focus,
277
+ &.focused {
278
+ border-color: var(--teal-300);
279
+ box-shadow: 0 0 0 3.5px var(--teal-100);
280
+ }
281
+ }
282
+ }
283
+
284
+ button.outlined:not(.disabled) {
285
+ &.teal {
286
+ color: var(--teal-500);
287
+
288
+ &:hover,
289
+ &:focus {
290
+ background-color: var(--teal-100);
291
+ }
292
+ }
293
+ }
294
+ /* #endregion */
295
+ /* TEAL */
296
+
297
+ /* #region CYAN */
298
+ .outlined:not(.disabled) {
299
+ &.cyan {
300
+ &.active {
301
+ animation: clicked-cyan ease-in-out 750ms 0s 1 normal both;
302
+ }
303
+ }
304
+ }
305
+
306
+ input.outlined:not(.disabled),
307
+ iframe.outlined:not(.disabled),
308
+ .ar-select > .selections.outlined:not(.disabled) {
309
+ &.cyan {
310
+ border: solid 1px var(--cyan-500);
311
+ color: var(--cyan-500);
312
+
313
+ &:focus,
314
+ &.focused {
315
+ border-color: var(--cyan-300);
316
+ box-shadow: 0 0 0 3.5px var(--cyan-100);
317
+ }
318
+ }
319
+ }
320
+
321
+ button.outlined:not(.disabled) {
322
+ &.cyan {
323
+ color: var(--cyan-500);
324
+
325
+ &:hover,
326
+ &:focus {
327
+ background-color: var(--cyan-100);
328
+ }
329
+ }
330
+ }
331
+ /* #endregion */
332
+ /* CYAN */
333
+
334
+ /* #region GRAY */
335
+ .outlined:not(.disabled) {
336
+ &.gray {
337
+ &.active {
338
+ animation: clicked-gray ease-in-out 750ms 0s 1 normal both;
339
+ }
340
+ }
341
+ }
342
+
343
+ input.outlined:not(.disabled),
344
+ iframe.outlined:not(.disabled),
345
+ .ar-select > .selections.outlined:not(.disabled) {
346
+ &.gray {
347
+ border: solid 1px var(--gray-500);
348
+ color: var(--gray-500);
349
+
350
+ &:focus,
351
+ &.focused {
352
+ border-color: var(--gray-300);
353
+ box-shadow: 0 0 0 3.5px var(--gray-100);
354
+ }
355
+ }
356
+ }
357
+
358
+ button.outlined:not(.disabled) {
359
+ &.gray {
360
+ color: var(--gray-500);
361
+
362
+ &:hover,
363
+ &:focus {
364
+ background-color: var(--gray-100);
365
+ }
366
+ }
367
+ }
368
+ /* #endregion */
369
+ /* GRAY */
370
+
371
+ /* #region LIGHT */
372
+ .outlined:not(.disabled) {
373
+ &.light {
374
+ &.active {
375
+ animation: clicked-light ease-in-out 750ms 0s 1 normal both;
376
+ }
377
+ }
378
+ }
379
+
380
+ input.outlined:not(.disabled),
381
+ iframe.outlined:not(.disabled),
382
+ .ar-select > .selections.outlined:not(.disabled) {
383
+ &.light {
384
+ border: solid 1px var(--light-500);
385
+ color: var(--black);
386
+
387
+ &:focus,
388
+ &.focused {
389
+ border-color: var(--light-300);
390
+ box-shadow: 0 0 0 3.5px var(--light-100);
391
+ }
392
+ }
393
+ }
394
+
395
+ button.outlined:not(.disabled) {
396
+ &.light {
397
+ color: var(--light-500);
398
+
399
+ &:hover,
400
+ &:focus {
401
+ background-color: var(--light-100);
402
+ }
403
+ }
404
+ }
405
+ /* #endregion */
406
+ /* LIGHT */
@@ -0,0 +1,263 @@
1
+ /* #region BLUE */
2
+ .surface:not(.disabled) {
3
+ &.blue {
4
+ background-color: var(--blue-100);
5
+ border:solid 1px var(--blue-300);
6
+ color: var(--blue-600);
7
+
8
+ &.active {
9
+ animation: clicked-blue ease-in-out 750ms 0s 1 normal both;
10
+ }
11
+ }
12
+ }
13
+
14
+ button.surface:not(.disabled) {
15
+ &.blue {
16
+ &:hover,
17
+ &:focus {
18
+ background-color: var(--blue-300);
19
+ }
20
+ }
21
+ }
22
+ /* #endregion */
23
+ /* BLUE */
24
+
25
+ /* #region PURPLE */
26
+ .surface:not(.disabled) {
27
+ &.purple {
28
+ background-color: var(--purple-100);
29
+ border:solid 1px var(--purple-300);
30
+ color: var(--purple-600);
31
+
32
+ &.active {
33
+ animation: clicked-purple ease-in-out 750ms 0s 1 normal both;
34
+ }
35
+ }
36
+ }
37
+
38
+ button.surface:not(.disabled) {
39
+ &.purple {
40
+ &:hover,
41
+ &:focus {
42
+ background-color: var(--purple-300);
43
+ }
44
+ }
45
+ }
46
+ /* #endregion */
47
+ /* PURPLE */
48
+
49
+ /* #region PINK */
50
+ .surface:not(.disabled) {
51
+ &.pink {
52
+ background-color: var(--pink-100);
53
+ border:solid 1px var(--pink-300);
54
+ color: var(--pink-600);
55
+
56
+ &.active {
57
+ animation: clicked-pink ease-in-out 750ms 0s 1 normal both;
58
+ }
59
+ }
60
+ }
61
+
62
+ button.surface:not(.disabled) {
63
+ &.pink {
64
+ &:hover,
65
+ &:focus {
66
+ background-color: var(--pink-300);
67
+ }
68
+ }
69
+ }
70
+ /* #endregion */
71
+ /* PINK */
72
+
73
+ /* #region RED */
74
+ .surface:not(.disabled) {
75
+ &.red {
76
+ background-color: var(--red-100);
77
+ border:solid 1px var(--red-300);
78
+ color: var(--red-600);
79
+
80
+ &.active {
81
+ animation: clicked-red ease-in-out 750ms 0s 1 normal both;
82
+ }
83
+ }
84
+ }
85
+
86
+ button.surface:not(.disabled) {
87
+ &.red {
88
+ &:hover,
89
+ &:focus {
90
+ background-color: var(--red-300);
91
+ }
92
+ }
93
+ }
94
+ /* #endregion */
95
+ /* RED */
96
+
97
+ /* #region ORANGE */
98
+ .surface:not(.disabled) {
99
+ &.orange {
100
+ background-color: var(--orange-100);
101
+ border:solid 1px var(--orange-300);
102
+ color: var(--orange-600);
103
+
104
+ &.active {
105
+ animation: clicked-orange ease-in-out 750ms 0s 1 normal both;
106
+ }
107
+ }
108
+ }
109
+
110
+ button.surface:not(.disabled) {
111
+ &.orange {
112
+ &:hover,
113
+ &:focus {
114
+ background-color: var(--orange-300);
115
+ }
116
+ }
117
+ }
118
+ /* #endregion */
119
+ /* ORANGE */
120
+
121
+ /* #region YELLOW */
122
+ .surface:not(.disabled) {
123
+ &.yellow {
124
+ background-color: var(--yellow-100);
125
+ border:solid 1px var(--yellow-300);
126
+ color: var(--yellow-600);
127
+
128
+ &.active {
129
+ animation: clicked-yellow ease-in-out 750ms 0s 1 normal both;
130
+ }
131
+ }
132
+ }
133
+
134
+ button.surface:not(.disabled) {
135
+ &.yellow {
136
+ &:hover,
137
+ &:focus {
138
+ background-color: var(--yellow-300);
139
+ }
140
+ }
141
+ }
142
+ /* #endregion */
143
+ /* YELLOW */
144
+
145
+ /* #region GREEN */
146
+ .surface:not(.disabled) {
147
+ &.green {
148
+ background-color: var(--green-100);
149
+ border:solid 1px var(--green-300);
150
+ color: var(--green-600);
151
+
152
+ &.active {
153
+ animation: clicked-green ease-in-out 750ms 0s 1 normal both;
154
+ }
155
+ }
156
+ }
157
+
158
+ button.surface:not(.disabled) {
159
+ &.green {
160
+ &:hover,
161
+ &:focus {
162
+ background-color: var(--green-300);
163
+ }
164
+ }
165
+ }
166
+ /* #endregion */
167
+ /* GREEN */
168
+
169
+ /* #region TEAL */
170
+ .surface:not(.disabled) {
171
+ &.teal {
172
+ background-color: var(--teal-100);
173
+ border:solid 1px var(--teal-300);
174
+ color: var(--teal-600);
175
+
176
+ &.active {
177
+ animation: clicked-teal ease-in-out 750ms 0s 1 normal both;
178
+ }
179
+ }
180
+ }
181
+
182
+ button.surface:not(.disabled) {
183
+ &.teal {
184
+ &:hover,
185
+ &:focus {
186
+ background-color: var(--teal-300);
187
+ }
188
+ }
189
+ }
190
+ /* #endregion */
191
+ /* TEAL */
192
+
193
+ /* #region CYAN */
194
+ .surface:not(.disabled) {
195
+ &.cyan {
196
+ background-color: var(--cyan-100);
197
+ border:solid 1px var(--cyan-300);
198
+ color: var(--cyan-600);
199
+
200
+ &.active {
201
+ animation: clicked-cyan ease-in-out 750ms 0s 1 normal both;
202
+ }
203
+ }
204
+ }
205
+
206
+ button.surface:not(.disabled) {
207
+ &.cyan {
208
+ &:hover,
209
+ &:focus {
210
+ background-color: var(--cyan-300);
211
+ }
212
+ }
213
+ }
214
+ /* #endregion */
215
+ /* CYAN */
216
+
217
+ /* #region GRAY */
218
+ .surface:not(.disabled) {
219
+ &.gray {
220
+ background-color: var(--gray-100);
221
+ border:solid 1px var(--gray-300);
222
+ color: var(--gray-600);
223
+
224
+ &.active {
225
+ animation: clicked-gray ease-in-out 750ms 0s 1 normal both;
226
+ }
227
+ }
228
+ }
229
+
230
+ button.surface:not(.disabled) {
231
+ &.gray {
232
+ &:hover,
233
+ &:focus {
234
+ background-color: var(--gray-300);
235
+ }
236
+ }
237
+ }
238
+ /* #endregion */
239
+ /* GRAY */
240
+
241
+ /* #region LIGHT */
242
+ .surface:not(.disabled) {
243
+ &.light {
244
+ background-color: var(--light-100);
245
+ border:solid 1px var(--light-300);
246
+ color: var(--light-600);
247
+
248
+ &.active {
249
+ animation: clicked-light ease-in-out 750ms 0s 1 normal both;
250
+ }
251
+ }
252
+ }
253
+
254
+ button.surface:not(.disabled) {
255
+ &.light {
256
+ &:hover,
257
+ &:focus {
258
+ background-color: var(--light-300);
259
+ }
260
+ }
261
+ }
262
+ /* #endregion */
263
+ /* LIGHT */
@@ -6,7 +6,7 @@ const { Title } = Typography;
6
6
  const Card = ({ children, title = "", actions, status }) => {
7
7
  // variables
8
8
  const _titleClassName = ["title"];
9
- _titleClassName.push(...Utils.GetClassName(undefined, status, undefined, undefined, undefined, undefined));
9
+ _titleClassName.push(...Utils.GetClassName(undefined, status, undefined, undefined, undefined, undefined, undefined));
10
10
  return (React.createElement("div", { className: "ar-card" },
11
11
  title && (React.createElement("div", { className: _titleClassName.map((c) => c).join(" ") },
12
12
  React.createElement(Title, { Level: "h4" }, title),
@@ -1,5 +1,5 @@
1
- import { IBorder, IIcon, IStatus, IVariant } from "../../../libs/types/IGlobalProps";
2
- interface IProps extends IVariant, IStatus, IBorder, IIcon {
1
+ import { IBorder, IColors, IIcon, IVariant } from "../../../libs/types/IGlobalProps";
2
+ interface IProps extends IVariant, IColors, IBorder, IIcon {
3
3
  /**
4
4
  * Bileşende gösterilecek metin.
5
5
  *
@@ -2,9 +2,9 @@
2
2
  import React from "react";
3
3
  import "../../../assets/css/components/data-display/chip/chip.css";
4
4
  import Utils from "../../../libs/infrastructure/shared/Utils";
5
- const Chip = ({ variant = "outlined", status = "primary", border = { radius: "sm" }, text, icon, }) => {
5
+ const Chip = ({ variant = "outlined", color = "light", border = { radius: "sm" }, text, icon }) => {
6
6
  let _chipClassName = ["ar-chip"];
7
- _chipClassName.push(...Utils.GetClassName(variant, status, border, undefined, undefined, undefined));
7
+ _chipClassName.push(...Utils.GetClassName(variant, undefined, color, border, undefined, undefined, undefined));
8
8
  return (React.createElement("div", { className: _chipClassName.map((c) => c).join(" ") },
9
9
  icon?.element && React.createElement("span", null, icon?.element),
10
10
  React.createElement("span", null, text)));
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { AllowedTypes, TableColumnType } from "../../../libs/types";
2
+ import { MimeTypes, TableColumnType } from "../../../libs/types";
3
3
  import { IChildren } from "../../../libs/types/IGlobalProps";
4
4
  import { FilterOperator } from "../../../libs/infrastructure/shared/Enums";
5
5
  export type Operator = "Contains" | "DoesNotContains" | "Equals" | "DoesNotEquals" | "BeginsWith" | "EndsWith" | "Blank" | "NotBlank";
@@ -61,7 +61,7 @@ type ImportActionType = {
61
61
  /**
62
62
  * Kabul edilen dosya türleri.
63
63
  */
64
- allowedTypes?: AllowedTypes[];
64
+ allowedTypes?: MimeTypes[];
65
65
  /**
66
66
  * Butonun önünde gösterilecek içerik.
67
67
  */