@xaypay/tui 0.2.20 → 0.2.21
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 +393 -126
- package/dist/index.js +393 -126
- package/package.json +1 -1
- package/tui.config.js +12 -1
package/package.json
CHANGED
package/tui.config.js
CHANGED
|
@@ -107,6 +107,7 @@ export default {
|
|
|
107
107
|
},
|
|
108
108
|
|
|
109
109
|
colors: {
|
|
110
|
+
placeholder: 'gray',
|
|
110
111
|
background: 'white',
|
|
111
112
|
backgroundDisable: presetColors.secondary,
|
|
112
113
|
},
|
|
@@ -596,7 +597,15 @@ export default {
|
|
|
596
597
|
label: {
|
|
597
598
|
color: '#4A4A4D',
|
|
598
599
|
|
|
599
|
-
font: {...fontObject}
|
|
600
|
+
font: {...fontObject},
|
|
601
|
+
|
|
602
|
+
tooltip: {
|
|
603
|
+
color: '#fff',
|
|
604
|
+
padding: '12px',
|
|
605
|
+
borderRadius: '8px',
|
|
606
|
+
font: {...fontObject},
|
|
607
|
+
backgroundColor: '#000',
|
|
608
|
+
}
|
|
600
609
|
},
|
|
601
610
|
|
|
602
611
|
font: {...fontObject},
|
|
@@ -779,6 +788,8 @@ export default {
|
|
|
779
788
|
TABLE: {
|
|
780
789
|
className: '',
|
|
781
790
|
textAlign: 'center',
|
|
791
|
+
border: '1px solid',
|
|
792
|
+
borderColor: 'transparent',
|
|
782
793
|
|
|
783
794
|
column: {
|
|
784
795
|
maxWidth: '',
|