zartui 1.0.21 → 1.0.23
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/es/calendar/components/Header.js +6 -0
- package/es/calendar/index.js +5 -0
- package/es/index.js +4 -3
- package/es/radio-picker/PickerColumn.js +421 -0
- package/es/radio-picker/index.css +1 -0
- package/es/radio-picker/index.js +477 -0
- package/es/radio-picker/index.less +152 -0
- package/es/radio-picker/shared.js +36 -0
- package/es/radio-picker/style/index.js +13 -0
- package/es/radio-picker/style/less.js +13 -0
- package/es/style/var.less +3 -0
- package/lib/calendar/components/Header.js +6 -0
- package/lib/calendar/index.js +5 -0
- package/lib/index.css +1 -1
- package/lib/index.js +6 -2
- package/lib/index.less +1 -0
- package/lib/radio-picker/PickerColumn.js +441 -0
- package/lib/radio-picker/index.css +1 -0
- package/lib/radio-picker/index.js +495 -0
- package/lib/radio-picker/index.less +152 -0
- package/lib/radio-picker/shared.js +42 -0
- package/lib/radio-picker/style/index.js +13 -0
- package/lib/radio-picker/style/less.js +13 -0
- package/lib/style/var.less +3 -0
- package/lib/zart.js +1356 -406
- package/lib/zart.min.js +4 -4
- package/package.json +1 -1
package/lib/style/var.less
CHANGED
|
@@ -654,6 +654,9 @@
|
|
|
654
654
|
@multiple-picker-warpper-padding: 12px 16px 4px 16px;
|
|
655
655
|
@multiple-picker-option-text-color: @gray-a6;
|
|
656
656
|
|
|
657
|
+
// RadioPicker
|
|
658
|
+
@radio-picker-warpper-item-padding: 10px @padding-md;
|
|
659
|
+
|
|
657
660
|
// Popover
|
|
658
661
|
@popover-arrow-size: 5px;
|
|
659
662
|
@popover-border-radius: @border-radius-sm;
|