@xaypay/tui 0.2.23 → 0.2.25
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/index.es.js +785 -209
- package/dist/index.js +1680 -1115
- package/package.json +1 -1
- package/tui.config.js +62 -5
package/package.json
CHANGED
package/tui.config.js
CHANGED
|
@@ -115,14 +115,22 @@ export default {
|
|
|
115
115
|
font: {...fontObject},
|
|
116
116
|
|
|
117
117
|
label: {
|
|
118
|
-
|
|
118
|
+
useTooltip: false,
|
|
119
119
|
color: presetColors.dark,
|
|
120
120
|
display: 'block',
|
|
121
121
|
lineHeight: '22px',
|
|
122
122
|
iconMargin: '10px',
|
|
123
123
|
marginBottom: '6px',
|
|
124
124
|
|
|
125
|
-
font: {...fontObject}
|
|
125
|
+
font: {...fontObject},
|
|
126
|
+
|
|
127
|
+
tooltip: {
|
|
128
|
+
color: '#fff',
|
|
129
|
+
padding: '12px',
|
|
130
|
+
borderRadius: '8px',
|
|
131
|
+
font: { ...fontObject },
|
|
132
|
+
backgroundColor: '#000',
|
|
133
|
+
}
|
|
126
134
|
},
|
|
127
135
|
|
|
128
136
|
error: {
|
|
@@ -155,6 +163,11 @@ export default {
|
|
|
155
163
|
hover: presetColors.dark
|
|
156
164
|
}
|
|
157
165
|
}
|
|
166
|
+
},
|
|
167
|
+
|
|
168
|
+
icon: {
|
|
169
|
+
// comment here for example,
|
|
170
|
+
// required: React.createElement(SvgChecked, { fill: 'green' }),
|
|
158
171
|
}
|
|
159
172
|
},
|
|
160
173
|
// default properties for <Tooltip /> component
|
|
@@ -310,13 +323,22 @@ export default {
|
|
|
310
323
|
},
|
|
311
324
|
|
|
312
325
|
label: {
|
|
326
|
+
useTooltip: false,
|
|
313
327
|
color: presetColors.dark,
|
|
314
328
|
display: 'block',
|
|
315
329
|
lineHeight: '22px',
|
|
316
330
|
marginBottom: '6px',
|
|
317
331
|
textTransform: 'none',
|
|
318
332
|
|
|
319
|
-
font: {...fontObject}
|
|
333
|
+
font: {...fontObject},
|
|
334
|
+
|
|
335
|
+
tooltip: {
|
|
336
|
+
color: '#fff',
|
|
337
|
+
padding: '12px',
|
|
338
|
+
borderRadius: '8px',
|
|
339
|
+
font: { ...fontObject },
|
|
340
|
+
backgroundColor: '#000',
|
|
341
|
+
}
|
|
320
342
|
},
|
|
321
343
|
|
|
322
344
|
selected: {
|
|
@@ -385,6 +407,11 @@ export default {
|
|
|
385
407
|
},
|
|
386
408
|
|
|
387
409
|
font: {...fontObject}
|
|
410
|
+
},
|
|
411
|
+
|
|
412
|
+
icon: {
|
|
413
|
+
// comment here for example,
|
|
414
|
+
// required: React.createElement(SvgChecked, { fill: 'green' }),
|
|
388
415
|
}
|
|
389
416
|
},
|
|
390
417
|
// default properties for <Textarea /> component
|
|
@@ -417,11 +444,20 @@ export default {
|
|
|
417
444
|
},
|
|
418
445
|
|
|
419
446
|
label: {
|
|
447
|
+
useTooltip: false,
|
|
420
448
|
color: presetColors.dark,
|
|
421
449
|
display: 'block',
|
|
422
450
|
marginBottom: '10px',
|
|
423
451
|
|
|
424
|
-
font: {...fontObject}
|
|
452
|
+
font: {...fontObject},
|
|
453
|
+
|
|
454
|
+
tooltip: {
|
|
455
|
+
color: '#fff',
|
|
456
|
+
padding: '12px',
|
|
457
|
+
borderRadius: '8px',
|
|
458
|
+
font: { ...fontObject },
|
|
459
|
+
backgroundColor: '#000',
|
|
460
|
+
}
|
|
425
461
|
},
|
|
426
462
|
|
|
427
463
|
font: {...fontObject},
|
|
@@ -435,6 +471,11 @@ export default {
|
|
|
435
471
|
},
|
|
436
472
|
|
|
437
473
|
font: {...fontObject}
|
|
474
|
+
},
|
|
475
|
+
|
|
476
|
+
icon: {
|
|
477
|
+
// comment here for example,
|
|
478
|
+
// required: React.createElement(SvgChecked, { fill: 'green' }),
|
|
438
479
|
}
|
|
439
480
|
},
|
|
440
481
|
// default properties for <NewAutocomplete /> component
|
|
@@ -471,13 +512,22 @@ export default {
|
|
|
471
512
|
},
|
|
472
513
|
|
|
473
514
|
label: {
|
|
515
|
+
useTooltip: false,
|
|
474
516
|
color: presetColors.dark,
|
|
475
517
|
display: 'block',
|
|
476
518
|
lineHeight: '22px',
|
|
477
519
|
marginBottom: '6px',
|
|
478
520
|
textTransform: 'none',
|
|
479
521
|
|
|
480
|
-
font: {...fontObject}
|
|
522
|
+
font: {...fontObject},
|
|
523
|
+
|
|
524
|
+
tooltip: {
|
|
525
|
+
color: '#fff',
|
|
526
|
+
padding: '12px',
|
|
527
|
+
borderRadius: '8px',
|
|
528
|
+
font: { ...fontObject },
|
|
529
|
+
backgroundColor: '#000',
|
|
530
|
+
}
|
|
481
531
|
},
|
|
482
532
|
|
|
483
533
|
contentBottom: {
|
|
@@ -578,6 +628,7 @@ export default {
|
|
|
578
628
|
sizeText: 'Առավելագույնը',
|
|
579
629
|
timeForRemoveError: 4000,
|
|
580
630
|
extentionsRowMarginTop: '40px',
|
|
631
|
+
extentionsTextColor: 'black',
|
|
581
632
|
|
|
582
633
|
border: {
|
|
583
634
|
width: '2px',
|
|
@@ -595,6 +646,7 @@ export default {
|
|
|
595
646
|
},
|
|
596
647
|
|
|
597
648
|
label: {
|
|
649
|
+
useTooltip: false,
|
|
598
650
|
color: '#4A4A4D',
|
|
599
651
|
|
|
600
652
|
font: {...fontObject},
|
|
@@ -729,6 +781,11 @@ export default {
|
|
|
729
781
|
wrapHeight: '100%',
|
|
730
782
|
},
|
|
731
783
|
|
|
784
|
+
closeIcon: {
|
|
785
|
+
top: '24px',
|
|
786
|
+
right: '24px'
|
|
787
|
+
},
|
|
788
|
+
|
|
732
789
|
icon: {
|
|
733
790
|
className: 'tui_close-modal-icon'
|
|
734
791
|
// zoom: React.createElement(SvgChecked, { fill: 'green' }),
|