@arco-design/mobile-react 2.26.0 → 2.27.1
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/CHANGELOG.md +29 -0
- package/README.en-US.md +2 -2
- package/README.md +2 -2
- package/cjs/form/form-item.js +4 -2
- package/cjs/icon/IconHeart/index.js +1 -1
- package/cjs/icon/IconKeyboard/index.d.ts +7 -0
- package/cjs/icon/IconKeyboard/index.js +48 -0
- package/cjs/icon/IconKeyboardDelete/index.d.ts +7 -0
- package/cjs/icon/IconKeyboardDelete/index.js +44 -0
- package/cjs/icon/IconMinus/index.js +1 -1
- package/cjs/icon/IconMore/index.js +1 -1
- package/cjs/icon/IconNotice/index.js +1 -1
- package/cjs/icon/IconNoticeOff/index.js +1 -1
- package/cjs/icon/IconPlay/index.js +1 -1
- package/cjs/icon/IconSetting/index.js +2 -2
- package/cjs/icon/IconSound/index.js +1 -1
- package/cjs/icon/IconStar/index.js +1 -1
- package/cjs/icon/IconStarFill/index.js +1 -1
- package/cjs/icon/IconTriDown/index.js +1 -1
- package/cjs/icon/IconTriUp/index.js +1 -1
- package/cjs/icon/IconUpload/index.js +1 -1
- package/cjs/icon/IconWarnCircle/index.js +1 -1
- package/cjs/icon/IconWarnCircleFill/index.js +1 -1
- package/cjs/icon/index.d.ts +2 -0
- package/cjs/icon/index.js +12 -2
- package/cjs/image-picker/style/css/index.d.ts +1 -0
- package/cjs/image-picker/style/css/index.js +2 -0
- package/cjs/image-picker/style/index.d.ts +1 -0
- package/cjs/image-picker/style/index.js +2 -0
- package/cjs/index-bar/context.d.ts +3 -0
- package/cjs/index-bar/context.js +15 -0
- package/cjs/index-bar/demo/style/css/mobile.css +23 -0
- package/cjs/index-bar/demo/style/mobile.less +26 -0
- package/cjs/index-bar/group.d.ts +3 -0
- package/cjs/index-bar/group.js +101 -0
- package/cjs/index-bar/index.d.ts +15 -0
- package/cjs/index-bar/index.js +274 -0
- package/cjs/index-bar/side-bar.d.ts +3 -0
- package/cjs/index-bar/side-bar.js +102 -0
- package/cjs/index-bar/style/css/index.css +164 -0
- package/cjs/index-bar/style/css/index.d.ts +3 -0
- package/cjs/index-bar/style/css/index.js +7 -0
- package/cjs/index-bar/style/index.d.ts +3 -0
- package/cjs/index-bar/style/index.js +7 -0
- package/cjs/index-bar/style/index.less +122 -0
- package/cjs/index-bar/type.d.ts +195 -0
- package/cjs/index-bar/type.js +3 -0
- package/cjs/index-bar/utils.d.ts +6 -0
- package/cjs/index-bar/utils.js +68 -0
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +9 -1
- package/cjs/keyboard/demo/style/css/mobile.css +4 -0
- package/cjs/keyboard/demo/style/mobile.less +8 -0
- package/cjs/keyboard/index.d.ts +13 -0
- package/cjs/keyboard/index.js +270 -0
- package/cjs/keyboard/style/css/index.css +93 -0
- package/cjs/keyboard/style/css/index.d.ts +3 -0
- package/cjs/keyboard/style/css/index.js +7 -0
- package/cjs/keyboard/style/index.d.ts +3 -0
- package/cjs/keyboard/style/index.js +7 -0
- package/cjs/keyboard/style/index.less +80 -0
- package/cjs/keyboard/type.d.ts +102 -0
- package/cjs/keyboard/type.js +3 -0
- package/cjs/picker/index.js +3 -39
- package/cjs/picker/type.d.ts +1 -1
- package/cjs/picker-view/components/cascader.d.ts +2 -3
- package/cjs/picker-view/components/cascader.js +8 -6
- package/cjs/picker-view/components/multi-picker.d.ts +2 -3
- package/cjs/picker-view/components/multi-picker.js +31 -35
- package/cjs/picker-view/components/picker-cell.d.ts +1 -1
- package/cjs/picker-view/components/picker-cell.js +5 -7
- package/cjs/picker-view/index.d.ts +1 -1
- package/cjs/picker-view/index.js +9 -20
- package/cjs/picker-view/type.d.ts +2 -2
- package/cjs/slider/hooks/useSliderEvents.js +20 -20
- package/cjs/sticky/index.js +2 -2
- package/cjs/style.d.ts +2 -0
- package/cjs/style.js +4 -0
- package/dist/index.js +1172 -444
- package/dist/index.min.js +5 -5
- package/dist/style.css +215 -1
- package/dist/style.min.css +1 -1
- package/esm/form/form-item.js +4 -2
- package/esm/icon/IconHeart/index.js +1 -1
- package/esm/icon/IconKeyboard/index.d.ts +7 -0
- package/esm/icon/IconKeyboard/index.js +37 -0
- package/esm/icon/IconKeyboardDelete/index.d.ts +7 -0
- package/esm/icon/IconKeyboardDelete/index.js +33 -0
- package/esm/icon/IconMinus/index.js +1 -1
- package/esm/icon/IconMore/index.js +1 -1
- package/esm/icon/IconNotice/index.js +1 -1
- package/esm/icon/IconNoticeOff/index.js +1 -1
- package/esm/icon/IconPlay/index.js +1 -1
- package/esm/icon/IconSetting/index.js +2 -2
- package/esm/icon/IconSound/index.js +1 -1
- package/esm/icon/IconStar/index.js +1 -1
- package/esm/icon/IconStarFill/index.js +1 -1
- package/esm/icon/IconTriDown/index.js +1 -1
- package/esm/icon/IconTriUp/index.js +1 -1
- package/esm/icon/IconUpload/index.js +1 -1
- package/esm/icon/IconWarnCircle/index.js +1 -1
- package/esm/icon/IconWarnCircleFill/index.js +1 -1
- package/esm/icon/index.d.ts +2 -0
- package/esm/icon/index.js +2 -0
- package/esm/image-picker/style/css/index.d.ts +1 -0
- package/esm/image-picker/style/css/index.js +1 -0
- package/esm/image-picker/style/index.d.ts +1 -0
- package/esm/image-picker/style/index.js +1 -0
- package/esm/index-bar/context.d.ts +3 -0
- package/esm/index-bar/context.js +8 -0
- package/esm/index-bar/demo/style/css/mobile.css +23 -0
- package/esm/index-bar/demo/style/mobile.less +26 -0
- package/esm/index-bar/group.d.ts +3 -0
- package/esm/index-bar/group.js +83 -0
- package/esm/index-bar/index.d.ts +15 -0
- package/esm/index-bar/index.js +253 -0
- package/esm/index-bar/side-bar.d.ts +3 -0
- package/esm/index-bar/side-bar.js +90 -0
- package/esm/index-bar/style/css/index.css +164 -0
- package/esm/index-bar/style/css/index.d.ts +3 -0
- package/esm/index-bar/style/css/index.js +3 -0
- package/esm/index-bar/style/index.d.ts +3 -0
- package/esm/index-bar/style/index.js +3 -0
- package/esm/index-bar/style/index.less +122 -0
- package/esm/index-bar/type.d.ts +195 -0
- package/esm/index-bar/type.js +1 -0
- package/esm/index-bar/utils.d.ts +6 -0
- package/esm/index-bar/utils.js +53 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -0
- package/esm/keyboard/demo/style/css/mobile.css +4 -0
- package/esm/keyboard/demo/style/mobile.less +8 -0
- package/esm/keyboard/index.d.ts +13 -0
- package/esm/keyboard/index.js +243 -0
- package/esm/keyboard/style/css/index.css +93 -0
- package/esm/keyboard/style/css/index.d.ts +3 -0
- package/esm/keyboard/style/css/index.js +3 -0
- package/esm/keyboard/style/index.d.ts +3 -0
- package/esm/keyboard/style/index.js +3 -0
- package/esm/keyboard/style/index.less +80 -0
- package/esm/keyboard/type.d.ts +102 -0
- package/esm/keyboard/type.js +1 -0
- package/esm/picker/index.js +3 -40
- package/esm/picker/type.d.ts +1 -1
- package/esm/picker-view/components/cascader.d.ts +2 -3
- package/esm/picker-view/components/cascader.js +8 -6
- package/esm/picker-view/components/multi-picker.d.ts +2 -3
- package/esm/picker-view/components/multi-picker.js +31 -34
- package/esm/picker-view/components/picker-cell.d.ts +1 -1
- package/esm/picker-view/components/picker-cell.js +5 -7
- package/esm/picker-view/index.d.ts +1 -1
- package/esm/picker-view/index.js +10 -21
- package/esm/picker-view/type.d.ts +2 -2
- package/esm/slider/hooks/useSliderEvents.js +20 -20
- package/esm/sticky/index.js +2 -2
- package/esm/style.d.ts +2 -0
- package/esm/style.js +2 -0
- package/package.json +3 -3
- package/tokens/app/arcodesign/default/css-variables.less +43 -0
- package/tokens/app/arcodesign/default/index.d.ts +43 -0
- package/tokens/app/arcodesign/default/index.js +43 -0
- package/tokens/app/arcodesign/default/index.json +516 -0
- package/tokens/app/arcodesign/default/index.less +43 -0
- package/umd/form/form-item.js +4 -2
- package/umd/icon/IconHeart/index.js +1 -1
- package/umd/icon/IconKeyboard/index.d.ts +7 -0
- package/umd/icon/IconKeyboard/index.js +56 -0
- package/umd/icon/IconKeyboardDelete/index.d.ts +7 -0
- package/umd/icon/IconKeyboardDelete/index.js +52 -0
- package/umd/icon/IconMinus/index.js +1 -1
- package/umd/icon/IconMore/index.js +1 -1
- package/umd/icon/IconNotice/index.js +1 -1
- package/umd/icon/IconNoticeOff/index.js +1 -1
- package/umd/icon/IconPlay/index.js +1 -1
- package/umd/icon/IconSetting/index.js +2 -2
- package/umd/icon/IconSound/index.js +1 -1
- package/umd/icon/IconStar/index.js +1 -1
- package/umd/icon/IconStarFill/index.js +1 -1
- package/umd/icon/IconTriDown/index.js +1 -1
- package/umd/icon/IconTriUp/index.js +1 -1
- package/umd/icon/IconUpload/index.js +1 -1
- package/umd/icon/IconWarnCircle/index.js +1 -1
- package/umd/icon/IconWarnCircleFill/index.js +1 -1
- package/umd/icon/index.d.ts +2 -0
- package/umd/icon/index.js +12 -6
- package/umd/image-picker/style/css/index.d.ts +1 -0
- package/umd/image-picker/style/css/index.js +4 -4
- package/umd/image-picker/style/index.d.ts +1 -0
- package/umd/image-picker/style/index.js +4 -4
- package/umd/index-bar/context.d.ts +3 -0
- package/umd/index-bar/context.js +26 -0
- package/umd/index-bar/demo/style/css/mobile.css +23 -0
- package/umd/index-bar/demo/style/mobile.less +26 -0
- package/umd/index-bar/group.d.ts +3 -0
- package/umd/index-bar/group.js +107 -0
- package/umd/index-bar/index.d.ts +15 -0
- package/umd/index-bar/index.js +274 -0
- package/umd/index-bar/side-bar.d.ts +3 -0
- package/umd/index-bar/side-bar.js +113 -0
- package/umd/index-bar/style/css/index.css +164 -0
- package/umd/index-bar/style/css/index.d.ts +3 -0
- package/umd/index-bar/style/css/index.js +15 -0
- package/umd/index-bar/style/index.d.ts +3 -0
- package/umd/index-bar/style/index.js +15 -0
- package/umd/index-bar/style/index.less +122 -0
- package/umd/index-bar/type.d.ts +195 -0
- package/umd/index-bar/type.js +17 -0
- package/umd/index-bar/utils.d.ts +6 -0
- package/umd/index-bar/utils.js +78 -0
- package/umd/index.d.ts +2 -0
- package/umd/index.js +9 -5
- package/umd/keyboard/demo/style/css/mobile.css +4 -0
- package/umd/keyboard/demo/style/mobile.less +8 -0
- package/umd/keyboard/index.d.ts +13 -0
- package/umd/keyboard/index.js +271 -0
- package/umd/keyboard/style/css/index.css +93 -0
- package/umd/keyboard/style/css/index.d.ts +3 -0
- package/umd/keyboard/style/css/index.js +15 -0
- package/umd/keyboard/style/index.d.ts +3 -0
- package/umd/keyboard/style/index.js +15 -0
- package/umd/keyboard/style/index.less +80 -0
- package/umd/keyboard/type.d.ts +102 -0
- package/umd/keyboard/type.js +17 -0
- package/umd/picker/index.js +3 -39
- package/umd/picker/type.d.ts +1 -1
- package/umd/picker-view/components/cascader.d.ts +2 -3
- package/umd/picker-view/components/cascader.js +8 -6
- package/umd/picker-view/components/multi-picker.d.ts +2 -3
- package/umd/picker-view/components/multi-picker.js +31 -35
- package/umd/picker-view/components/picker-cell.d.ts +1 -1
- package/umd/picker-view/components/picker-cell.js +5 -7
- package/umd/picker-view/index.d.ts +1 -1
- package/umd/picker-view/index.js +9 -20
- package/umd/picker-view/type.d.ts +2 -2
- package/umd/slider/hooks/useSliderEvents.js +20 -20
- package/umd/sticky/index.js +2 -2
- package/umd/style.d.ts +2 -0
- package/umd/style.js +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arco-design/mobile-react",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.27.1",
|
4
4
|
"description": "",
|
5
5
|
"main": "cjs/index.js",
|
6
6
|
"module": "esm/index.js",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"author": "taoyiyue@bytedance.com",
|
16
16
|
"license": "ISC",
|
17
17
|
"dependencies": {
|
18
|
-
"@arco-design/mobile-utils": "2.
|
18
|
+
"@arco-design/mobile-utils": "2.15.1",
|
19
19
|
"@arco-design/transformable": "^1.0.0",
|
20
20
|
"lodash.throttle": "^4.1.1",
|
21
21
|
"resize-observer-polyfill": "^1.5.1"
|
@@ -35,5 +35,5 @@
|
|
35
35
|
"publishConfig": {
|
36
36
|
"access": "public"
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "9c06acb2cc9341ee12843d1720e9b796cbbc2ac5"
|
39
39
|
}
|
@@ -705,6 +705,34 @@
|
|
705
705
|
--image-picker-close-height: ~`pxtorem(18)`;
|
706
706
|
--image-picker-close-background: rgba(0, 0, 0, 0.3);
|
707
707
|
--image-picker-close-border-radius: 0 ~`pxtorem(2)`;
|
708
|
+
--index-bar-background: white;
|
709
|
+
--index-bar-group-active-color: var(--primary-color);
|
710
|
+
--index-bar-group-left-spacing: ~`pxtorem(16)`;
|
711
|
+
--index-bar-group-title-height: ~`pxtorem(24)`;
|
712
|
+
--index-bar-group-title-background: #f7f8fa;
|
713
|
+
--index-bar-group-title-font-color: var(--sub-info-font-color);
|
714
|
+
--index-bar-group-title-font-size: ~`pxtorem(14)`;
|
715
|
+
--index-bar-group-item-height: ~`pxtorem(54)`;
|
716
|
+
--index-bar-group-item-font-size: ~`pxtorem(16)`;
|
717
|
+
--index-bar-sidebar-active-color: var(--primary-color);
|
718
|
+
--index-bar-sidebar-item-font-size: ~`pxtorem(10)`;
|
719
|
+
--index-bar-sidebar-item-line-height: ~`pxtorem(14)`;
|
720
|
+
--index-bar-sidebar-item-padding: ~`pxtorem(2)` ~`pxtorem(8)`;
|
721
|
+
--index-bar-sidebar-item-width: ~`pxtorem(10)`;
|
722
|
+
--index-bar-sidebar-sweat-padding: 0 ~`pxtorem(8)`;
|
723
|
+
--index-bar-sidebar-sweat-background: #323232;
|
724
|
+
--index-bar-sidebar-sweat-color: white;
|
725
|
+
--index-bar-sidebar-sweat-right: ~`pxtorem(36)`;
|
726
|
+
--index-bar-sidebar-sweat-font-size: ~`pxtorem(24)`;
|
727
|
+
--index-bar-sidebar-sweat-radius: ~`pxtorem(50)`;
|
728
|
+
--index-bar-sidebar-sweat-triangle-position: ~`pxtorem(-27)`;
|
729
|
+
--index-bar-sidebar-sweat-triangle-border: ~`pxtorem(18)` solid transparent;
|
730
|
+
--index-bar-sidebar-toast-background: #323232;
|
731
|
+
--index-bar-sidebar-toast-color: white;
|
732
|
+
--index-bar-sidebar-toast-height: ~`pxtorem(48)`;
|
733
|
+
--index-bar-sidebar-toast-radius: ~`pxtorem(4)`;
|
734
|
+
--index-bar-sidebar-toast-padding: 0 ~`pxtorem(8)`;
|
735
|
+
--index-bar-sidebar-toast-font-size: ~`pxtorem(24)`;
|
708
736
|
--stepper-font-size: ~`pxtorem(14)`;
|
709
737
|
--stepper-square-border: 1PX solid #f2f3f5;
|
710
738
|
--stepper-square-border-radius: ~`pxtorem(2)`;
|
@@ -742,6 +770,21 @@
|
|
742
770
|
--time-line-content-font-size: ~`pxtorem(16)`;
|
743
771
|
--time-line-content-background-color: var(--line-color);
|
744
772
|
--time-line-content-color: var(--font-color);
|
773
|
+
--keyboard-background: #f2f3f5;
|
774
|
+
--keyboard-content-padding: ~`pxtorem(8)`;
|
775
|
+
--keyboard-unified-margin: ~`pxtorem(8)`;
|
776
|
+
--keyboard-confirm-key-background: #165dff;
|
777
|
+
--keyboard-confirm-key-color: #ffffff;
|
778
|
+
--keyboard-confirm-key-font-size: ~`pxtorem(18)`;
|
779
|
+
--keyboard-key-font-weight: 500;
|
780
|
+
--keyboard-key-font-size: ~`pxtorem(22)`;
|
781
|
+
--keyboard-key-icon-size: ~`pxtorem(26)`;
|
782
|
+
--keyboard-key-line-height: ~`pxtorem(30)`;
|
783
|
+
--keyboard-key-background: #ffffff;
|
784
|
+
--keyboard-key-active-background: #e5e6eb;
|
785
|
+
--keyboard-key-border-radius: ~`pxtorem(4)`;
|
786
|
+
--keyboard-key-height: ~`pxtorem(48)`;
|
787
|
+
--keyboard-key-color: #1d2129;
|
745
788
|
--divider-line-thickness: 1PX;
|
746
789
|
--divider-line-color: var(--line-color);
|
747
790
|
--divider-content-font-size: ~`pxtorem(14)`;
|
@@ -704,6 +704,34 @@ export interface ArcodesignToken extends Record<string, string> {
|
|
704
704
|
'image-picker-close-height': string;
|
705
705
|
'image-picker-close-background': string;
|
706
706
|
'image-picker-close-border-radius': string;
|
707
|
+
'index-bar-background': string;
|
708
|
+
'index-bar-group-active-color': string;
|
709
|
+
'index-bar-group-left-spacing': string;
|
710
|
+
'index-bar-group-title-height': string;
|
711
|
+
'index-bar-group-title-background': string;
|
712
|
+
'index-bar-group-title-font-color': string;
|
713
|
+
'index-bar-group-title-font-size': string;
|
714
|
+
'index-bar-group-item-height': string;
|
715
|
+
'index-bar-group-item-font-size': string;
|
716
|
+
'index-bar-sidebar-active-color': string;
|
717
|
+
'index-bar-sidebar-item-font-size': string;
|
718
|
+
'index-bar-sidebar-item-line-height': string;
|
719
|
+
'index-bar-sidebar-item-padding': string;
|
720
|
+
'index-bar-sidebar-item-width': string;
|
721
|
+
'index-bar-sidebar-sweat-padding': string;
|
722
|
+
'index-bar-sidebar-sweat-background': string;
|
723
|
+
'index-bar-sidebar-sweat-color': string;
|
724
|
+
'index-bar-sidebar-sweat-right': string;
|
725
|
+
'index-bar-sidebar-sweat-font-size': string;
|
726
|
+
'index-bar-sidebar-sweat-radius': string;
|
727
|
+
'index-bar-sidebar-sweat-triangle-position': string;
|
728
|
+
'index-bar-sidebar-sweat-triangle-border': string;
|
729
|
+
'index-bar-sidebar-toast-background': string;
|
730
|
+
'index-bar-sidebar-toast-color': string;
|
731
|
+
'index-bar-sidebar-toast-height': string;
|
732
|
+
'index-bar-sidebar-toast-radius': string;
|
733
|
+
'index-bar-sidebar-toast-padding': string;
|
734
|
+
'index-bar-sidebar-toast-font-size': string;
|
707
735
|
'stepper-font-size': string;
|
708
736
|
'stepper-square-border': string;
|
709
737
|
'stepper-square-border-radius': string;
|
@@ -741,6 +769,21 @@ export interface ArcodesignToken extends Record<string, string> {
|
|
741
769
|
'time-line-content-font-size': string;
|
742
770
|
'time-line-content-background-color': string;
|
743
771
|
'time-line-content-color': string;
|
772
|
+
'keyboard-background': string;
|
773
|
+
'keyboard-content-padding': string;
|
774
|
+
'keyboard-unified-margin': string;
|
775
|
+
'keyboard-confirm-key-background': string;
|
776
|
+
'keyboard-confirm-key-color': string;
|
777
|
+
'keyboard-confirm-key-font-size': string;
|
778
|
+
'keyboard-key-font-weight': string;
|
779
|
+
'keyboard-key-font-size': string;
|
780
|
+
'keyboard-key-icon-size': string;
|
781
|
+
'keyboard-key-line-height': string;
|
782
|
+
'keyboard-key-background': string;
|
783
|
+
'keyboard-key-active-background': string;
|
784
|
+
'keyboard-key-border-radius': string;
|
785
|
+
'keyboard-key-height': string;
|
786
|
+
'keyboard-key-color': string;
|
744
787
|
'divider-line-thickness': string;
|
745
788
|
'divider-line-color': string;
|
746
789
|
'divider-content-font-size': string;
|
@@ -716,6 +716,34 @@ var tokens = {
|
|
716
716
|
"image-picker-close-height": "0.36rem",
|
717
717
|
"image-picker-close-background": "rgba(0, 0, 0, 0.3)",
|
718
718
|
"image-picker-close-border-radius": "0 0.04rem",
|
719
|
+
"index-bar-background": "white",
|
720
|
+
"index-bar-group-active-color": "var(--primary-color)",
|
721
|
+
"index-bar-group-left-spacing": "0.32rem",
|
722
|
+
"index-bar-group-title-height": "0.48rem",
|
723
|
+
"index-bar-group-title-background": "#f7f8fa",
|
724
|
+
"index-bar-group-title-font-color": "var(--sub-info-font-color)",
|
725
|
+
"index-bar-group-title-font-size": "0.28rem",
|
726
|
+
"index-bar-group-item-height": "1.08rem",
|
727
|
+
"index-bar-group-item-font-size": "0.32rem",
|
728
|
+
"index-bar-sidebar-active-color": "var(--primary-color)",
|
729
|
+
"index-bar-sidebar-item-font-size": "0.2rem",
|
730
|
+
"index-bar-sidebar-item-line-height": "0.28rem",
|
731
|
+
"index-bar-sidebar-item-padding": "0.04rem 0.16rem",
|
732
|
+
"index-bar-sidebar-item-width": "0.2rem",
|
733
|
+
"index-bar-sidebar-sweat-padding": "0 0.16rem",
|
734
|
+
"index-bar-sidebar-sweat-background": "#323232",
|
735
|
+
"index-bar-sidebar-sweat-color": "white",
|
736
|
+
"index-bar-sidebar-sweat-right": "0.72rem",
|
737
|
+
"index-bar-sidebar-sweat-font-size": "0.48rem",
|
738
|
+
"index-bar-sidebar-sweat-radius": "1rem",
|
739
|
+
"index-bar-sidebar-sweat-triangle-position": "-0.54rem",
|
740
|
+
"index-bar-sidebar-sweat-triangle-border": "0.36rem solid transparent",
|
741
|
+
"index-bar-sidebar-toast-background": "#323232",
|
742
|
+
"index-bar-sidebar-toast-color": "white",
|
743
|
+
"index-bar-sidebar-toast-height": "0.96rem",
|
744
|
+
"index-bar-sidebar-toast-radius": "0.08rem",
|
745
|
+
"index-bar-sidebar-toast-padding": "0 0.16rem",
|
746
|
+
"index-bar-sidebar-toast-font-size": "0.48rem",
|
719
747
|
"stepper-font-size": "0.28rem",
|
720
748
|
"stepper-square-border": "1PX solid #f2f3f5",
|
721
749
|
"stepper-square-border-radius": "0.04rem",
|
@@ -753,6 +781,21 @@ var tokens = {
|
|
753
781
|
"time-line-content-font-size": "0.32rem",
|
754
782
|
"time-line-content-background-color": "var(--line-color)",
|
755
783
|
"time-line-content-color": "var(--font-color)",
|
784
|
+
"keyboard-background": "#f2f3f5",
|
785
|
+
"keyboard-content-padding": "0.16rem",
|
786
|
+
"keyboard-unified-margin": "0.16rem",
|
787
|
+
"keyboard-confirm-key-background": "#165dff",
|
788
|
+
"keyboard-confirm-key-color": "#ffffff",
|
789
|
+
"keyboard-confirm-key-font-size": "0.36rem",
|
790
|
+
"keyboard-key-font-weight": "500",
|
791
|
+
"keyboard-key-font-size": "0.44rem",
|
792
|
+
"keyboard-key-icon-size": "0.52rem",
|
793
|
+
"keyboard-key-line-height": "0.6rem",
|
794
|
+
"keyboard-key-background": "#ffffff",
|
795
|
+
"keyboard-key-active-background": "#e5e6eb",
|
796
|
+
"keyboard-key-border-radius": "0.08rem",
|
797
|
+
"keyboard-key-height": "0.96rem",
|
798
|
+
"keyboard-key-color": "#1d2129",
|
756
799
|
"divider-line-thickness": "1PX",
|
757
800
|
"divider-line-color": "var(--line-color)",
|
758
801
|
"divider-content-font-size": "0.28rem",
|