@tendaui/components 1.0.0 → 1.0.2
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/LICENSE +21 -21
- package/README.md +176 -176
- package/alert/Alert.tsx +3 -2
- package/button/_example/base.tsx +10 -0
- package/button/_example/icon.tsx +20 -0
- package/color-picker/ColorPickPanel.tsx +9 -0
- package/color-picker/ColorPicker.tsx +67 -0
- package/color-picker/components/panel/alpha.tsx +32 -0
- package/color-picker/components/panel/format/index.tsx +47 -0
- package/color-picker/components/panel/format/inputs.tsx +119 -0
- package/color-picker/components/panel/header.tsx +37 -0
- package/color-picker/components/panel/hue.tsx +20 -0
- package/color-picker/components/panel/index.tsx +191 -0
- package/color-picker/components/panel/saturation.tsx +81 -0
- package/color-picker/components/panel/slider.tsx +76 -0
- package/color-picker/components/panel/swatches.tsx +84 -0
- package/color-picker/components/trigger.tsx +49 -0
- package/color-picker/defaultProps.ts +7 -0
- package/color-picker/helpers.ts +53 -0
- package/color-picker/hooks/useClassNames.ts +9 -0
- package/color-picker/hooks/useStyles.ts +39 -0
- package/color-picker/index.ts +12 -0
- package/color-picker/style/css.js +1 -0
- package/color-picker/style/index.js +1 -0
- package/color-picker/type.ts +143 -0
- package/color-picker/utils/color-picker/cmyk.ts +89 -0
- package/color-picker/utils/color-picker/color.ts +467 -0
- package/color-picker/utils/color-picker/constants.ts +187 -0
- package/color-picker/utils/color-picker/draggable.ts +100 -0
- package/color-picker/utils/color-picker/format.ts +95 -0
- package/color-picker/utils/color-picker/gradient.ts +243 -0
- package/color-picker/utils/color-picker/index.ts +7 -0
- package/color-picker/utils/color-picker/types.ts +33 -0
- package/common/observe.ts +33 -0
- package/common.ts +20 -0
- package/config-provider/ConfigContext.tsx +4 -1
- package/config-provider/index.ts +1 -1
- package/dialog/DialogCard.tsx +4 -6
- package/dialog/hooks/useDialogPosition.ts +1 -2
- package/dialog/plugin.tsx +3 -2
- package/drawer/Drawer.tsx +264 -0
- package/drawer/defaultProps.ts +19 -0
- package/drawer/hooks/useDrag.ts +98 -0
- package/drawer/hooks/useLockStyle.ts +36 -0
- package/drawer/index.ts +5 -0
- package/drawer/style/css.js +1 -0
- package/drawer/style/index.js +1 -0
- package/drawer/type.ts +193 -0
- package/drawer/utils/index.ts +76 -0
- package/fireworks/Fireworks.tsx +138 -0
- package/fireworks/index.ts +10 -0
- package/fireworks/style/css.js +0 -0
- package/fireworks/style/index.js +0 -0
- package/fireworks/type.ts +72 -0
- package/form/FormItem.tsx +5 -5
- package/form/easing.ts +10 -0
- package/form/scroll.ts +124 -0
- package/form/type.ts +519 -519
- package/global-config/default-config.ts +95 -0
- package/global-config/locale/ar_KW.ts +270 -0
- package/global-config/locale/en_US.ts +280 -0
- package/global-config/locale/it_IT.ts +287 -0
- package/global-config/locale/ja_JP.ts +279 -0
- package/global-config/locale/ko_KR.ts +279 -0
- package/global-config/locale/ru_RU.ts +288 -0
- package/global-config/locale/zh_CN.ts +279 -0
- package/global-config/locale/zh_TW.ts +279 -0
- package/global-config/mobile/default-config.ts +6 -0
- package/global-config/mobile/locale/ar_KW.ts +113 -0
- package/global-config/mobile/locale/en_US.ts +114 -0
- package/global-config/mobile/locale/it_IT.ts +114 -0
- package/global-config/mobile/locale/ja_JP.ts +101 -0
- package/global-config/mobile/locale/ko_KR.ts +101 -0
- package/global-config/mobile/locale/ru_RU.ts +113 -0
- package/global-config/mobile/locale/zh_CN.ts +101 -0
- package/global-config/mobile/locale/zh_TW.ts +101 -0
- package/global-config/t.ts +111 -0
- package/hooks/useControlled.ts +3 -3
- package/hooks/useDeepEffect.ts +32 -0
- package/hooks/useGlobalIcon.ts +10 -3
- package/hooks/useLastest.ts +2 -6
- package/hooks/useResizeObserve.ts +36 -0
- package/index.ts +10 -7
- package/input/Input.tsx +4 -1
- package/input/defaultProps.ts +0 -2
- package/input/type.ts +1 -6
- package/input-number/InputNumber.tsx +124 -0
- package/input-number/defaultProps.ts +17 -0
- package/input-number/index.ts +9 -0
- package/input-number/style/css.js +1 -0
- package/input-number/style/index.js +1 -0
- package/input-number/type.ts +147 -0
- package/input-number/useInputNumber.tsx +270 -0
- package/ip-input/IPInput.tsx +516 -0
- package/ip-input/defaultProps.ts +11 -0
- package/ip-input/index.ts +3 -0
- package/ip-input/style/css.js +1 -0
- package/ip-input/style/index.js +1 -0
- package/ip-input/type.ts +115 -0
- package/ip-input/utils.ts +112 -0
- package/layout/Aside.tsx +38 -0
- package/layout/Layout.tsx +104 -0
- package/layout/defaultProps.ts +9 -0
- package/layout/index.ts +9 -0
- package/layout/style/css.js +1 -0
- package/layout/style/index.js +1 -0
- package/layout/type.ts +43 -0
- package/list/List.tsx +144 -0
- package/list/ListItem.tsx +36 -0
- package/list/ListItemMeta.tsx +40 -0
- package/list/defaultProps.ts +11 -0
- package/list/hooks/useListVirtualScroll.ts +82 -0
- package/list/index.ts +11 -0
- package/list/style/css.js +1 -0
- package/list/style/index.js +1 -0
- package/list/type.ts +93 -0
- package/locale/LocalReceiver.ts +55 -0
- package/locale/ar_KW.ts +7 -0
- package/locale/en_US.ts +7 -0
- package/locale/it_IT.ts +6 -0
- package/locale/ja_JP.ts +6 -0
- package/locale/ko_KR.ts +6 -0
- package/locale/ru_RU.ts +6 -0
- package/locale/zh_CN.ts +5 -0
- package/locale/zh_TW.ts +7 -0
- package/notification/NotifyContainer.tsx +2 -2
- package/notification/NotifyContext.tsx +1 -0
- package/package.json +6 -3
- package/popup/Popup.tsx +34 -10
- package/radio/Radio.tsx +24 -0
- package/radio/RadioGroup.tsx +159 -0
- package/radio/defaultProps.ts +18 -0
- package/radio/index.ts +12 -0
- package/radio/style/css.js +0 -0
- package/radio/style/index.js +1 -0
- package/radio/type.ts +115 -0
- package/radio/useKeyboard.ts +36 -0
- package/select/hooks/useOptions.ts +10 -7
- package/select/hooks/usePanelVirtualScroll.ts +1 -1
- package/select/type.ts +382 -382
- package/select-input/type.ts +280 -280
- package/slider/Slider.tsx +270 -0
- package/slider/SliderHandleButton.tsx +50 -0
- package/slider/defaultProps.ts +15 -0
- package/slider/index.ts +9 -0
- package/slider/style/css.js +1 -0
- package/slider/style/index.js +1 -0
- package/slider/type.ts +77 -0
- package/style/all.js +26 -0
- package/styles/_global.scss +39 -39
- package/styles/_vars.scss +358 -386
- package/styles/components/alert/_index.scss +175 -175
- package/styles/components/alert/_vars.scss +39 -39
- package/styles/components/badge/_index.scss +70 -70
- package/styles/components/badge/_vars.scss +25 -25
- package/styles/components/button/_index.scss +499 -511
- package/styles/components/button/_mixins.scss +39 -39
- package/styles/components/button/_vars.scss +120 -122
- package/styles/components/checkbox/_index.scss +158 -158
- package/styles/components/checkbox/_var.scss +60 -60
- package/styles/components/color-picker/_index.scss +586 -0
- package/styles/components/color-picker/_mixins.scss +0 -0
- package/styles/components/color-picker/_vars.scss +84 -0
- package/styles/components/dialog/_animate.scss +135 -135
- package/styles/components/dialog/_index.scss +311 -311
- package/styles/components/dialog/_vars.scss +59 -59
- package/styles/components/drawer/_index.scss +205 -0
- package/styles/components/drawer/_mixins.scss +1 -0
- package/styles/components/drawer/_var.scss +53 -0
- package/styles/components/fireworks/_index.scss +86 -0
- package/styles/components/fireworks/_vars.scss +4 -0
- package/styles/components/form/_index.scss +174 -174
- package/styles/components/form/_mixins.scss +76 -76
- package/styles/components/form/_vars.scss +100 -100
- package/styles/components/input/_index.scss +349 -349
- package/styles/components/input/_mixins.scss +116 -116
- package/styles/components/input/_vars.scss +134 -134
- package/styles/components/input-number/_index.scss +353 -0
- package/styles/components/input-number/_mixins.scss +0 -0
- package/styles/components/input-number/_vars.scss +65 -0
- package/styles/components/ip-input/_index.scss +280 -0
- package/styles/components/layout/_index.scss +47 -0
- package/styles/components/layout/_mixin.scss +0 -0
- package/styles/components/layout/_vars.scss +18 -0
- package/styles/components/layout/doc.scss +74 -0
- package/styles/components/list/_index.scss +172 -0
- package/styles/components/list/_mixins.scss +0 -0
- package/styles/components/list/_vars.scss +41 -0
- package/styles/components/loading/_index.scss +112 -112
- package/styles/components/loading/_vars.scss +39 -39
- package/styles/components/notification/_index.scss +160 -160
- package/styles/components/notification/_mixins.scss +12 -12
- package/styles/components/notification/_vars.scss +59 -59
- package/styles/components/popup/_index.scss +82 -82
- package/styles/components/popup/_mixin.scss +149 -149
- package/styles/components/popup/_var.scss +31 -31
- package/styles/components/radio/_index.scss +376 -0
- package/styles/components/radio/_mixins.scss +0 -0
- package/styles/components/radio/_var.scss +92 -0
- package/styles/components/select/_index.scss +290 -290
- package/styles/components/select/_var.scss +65 -65
- package/styles/components/select-input/_index.scss +5 -5
- package/styles/components/select-input/_var.scss +3 -3
- package/styles/components/slider/_index.scss +241 -0
- package/styles/components/slider/_mixins.scss +0 -0
- package/styles/components/slider/_vars.scss +50 -0
- package/styles/components/switch/_index.scss +279 -279
- package/styles/components/switch/_vars.scss +61 -61
- package/styles/components/table/_index.scss +193 -0
- package/styles/components/table/_var.scss +52 -0
- package/styles/components/tabs/_index.scss +165 -0
- package/styles/components/tabs/_mixins.scss +11 -0
- package/styles/components/tabs/_vars.scss +71 -0
- package/styles/components/tag/_index.scss +316 -316
- package/styles/components/tag/_var.scss +85 -85
- package/styles/components/tag-input/_index.scss +163 -163
- package/styles/components/tag-input/_vars.scss +16 -16
- package/styles/globals.css +250 -250
- package/styles/mixins/_focus.scss +7 -7
- package/styles/mixins/_layout.scss +32 -32
- package/styles/mixins/_reset.scss +10 -10
- package/styles/mixins/_scrollbar.scss +31 -31
- package/styles/mixins/_text.scss +48 -48
- package/styles/rillple.css +16 -16
- package/styles/scrollbar.css +41 -41
- package/styles/themes/_dark.scss +191 -191
- package/styles/themes/_font.scss +69 -79
- package/styles/themes/_index.scss +5 -5
- package/styles/themes/_light.scss +190 -190
- package/styles/themes/_radius.scss +9 -9
- package/styles/themes/_size.scss +68 -68
- package/styles/themes.css +66 -66
- package/styles/utilities/_animation.scss +57 -57
- package/styles/utilities/_tips.scss +9 -9
- package/tab/TabBar.tsx +85 -0
- package/tab/TabNav.tsx +103 -0
- package/tab/TabNavItem.tsx +80 -0
- package/tab/TabPanel.tsx +42 -0
- package/tab/Tabs.tsx +71 -0
- package/tab/defaultProps.ts +19 -0
- package/tab/index.ts +7 -0
- package/tab/style/index.js +1 -0
- package/tab/type.ts +125 -0
- package/tab/useTabClass.ts +20 -0
- package/table/Cell.tsx +109 -0
- package/table/TBody.tsx +77 -0
- package/table/THead.tsx +63 -0
- package/table/TR.tsx +78 -0
- package/table/Table.tsx +73 -0
- package/table/defaultProps.ts +14 -0
- package/table/hooks/index.ts +4 -0
- package/table/hooks/useTableClassName.ts +63 -0
- package/table/hooks/useTableStyle.ts +93 -0
- package/table/index.ts +7 -0
- package/table/style/css.js +1 -0
- package/table/style/index.js +1 -0
- package/table/type.ts +192 -0
- package/tag/Tag.tsx +1 -1
- package/tag-input/hooks/useTagList.tsx +1 -1
- package/utils/dom.ts +4 -0
- package/utils/forwardRefWithStatics.ts +1 -4
- package/utils/input-number/large-number.ts +423 -0
- package/utils/input-number/number.ts +257 -0
- package/utils/isFragment.ts +6 -6
- package/utils/log/index.ts +3 -0
- package/utils/log/log.ts +30 -0
- package/utils/log/types.ts +12 -0
- package/utils/number.ts +21 -0
- package/utils/scroll.ts +26 -0
- package/utils/style.ts +2 -4
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// 组件允许单个组件打包,因此默认引入公共基础样式
|
|
2
|
+
|
|
3
|
+
@import "../../_vars.scss";
|
|
4
|
+
|
|
5
|
+
@import "./_vars.scss";
|
|
6
|
+
|
|
7
|
+
@import "./_mixin.scss";
|
|
8
|
+
|
|
9
|
+
@import "../../mixins/_reset.scss";
|
|
10
|
+
|
|
11
|
+
.#{$prefix}-layout {
|
|
12
|
+
@include reset;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.#{$prefix}-layout,
|
|
16
|
+
.#{$prefix}-layout__direction-vertical {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
background: $layout-bg-color;
|
|
20
|
+
flex: auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.#{$prefix}-layout--with-sider,
|
|
24
|
+
.#{$prefix}-layout__direction-horizontal {
|
|
25
|
+
flex-direction: row;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.#{$prefix}-layout__header {
|
|
29
|
+
height: $layout-header-height;
|
|
30
|
+
background-color: $layout-header-bg-color;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.#{$prefix}-layout__content {
|
|
34
|
+
flex: auto;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.#{$prefix}-layout__sider {
|
|
38
|
+
position: relative;
|
|
39
|
+
transition: all $layout-sider-anim-duration;
|
|
40
|
+
background: $layout-sider-bg-color;
|
|
41
|
+
width: $layout-sider-width;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.#{$prefix}-layout__footer {
|
|
45
|
+
color: $layout-footer-color;
|
|
46
|
+
padding: 24px;
|
|
47
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// 颜色
|
|
2
|
+
// layout字体色
|
|
3
|
+
$layout-color: $text-color-secondary;
|
|
4
|
+
// layout背景色
|
|
5
|
+
$layout-bg-color: $bg-color-page;
|
|
6
|
+
// header背景色
|
|
7
|
+
$layout-header-bg-color: $bg-color-container;
|
|
8
|
+
// sider背景色
|
|
9
|
+
$layout-sider-bg-color: $bg-color-container;
|
|
10
|
+
// footer字体色
|
|
11
|
+
$layout-footer-color: $text-color-placeholder;
|
|
12
|
+
|
|
13
|
+
// 尺寸
|
|
14
|
+
$layout-header-height: $comp-size-xxxl;
|
|
15
|
+
$layout-sider-width: 232px;
|
|
16
|
+
|
|
17
|
+
// 动画
|
|
18
|
+
$layout-sider-anim-duration: $anim-duration-base;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
@import "../../_vars.scss";
|
|
2
|
+
|
|
3
|
+
.#{$prefix}-layout__content {
|
|
4
|
+
height: 600px;
|
|
5
|
+
text-align: center;
|
|
6
|
+
padding: 24px 24px 0;
|
|
7
|
+
|
|
8
|
+
> div {
|
|
9
|
+
background: #fff;
|
|
10
|
+
height: 100%;
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
overflow: auto;
|
|
15
|
+
word-wrap: break-word;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.#{$prefix}-layout__footer {
|
|
20
|
+
min-height: 46px;
|
|
21
|
+
text-align: center;
|
|
22
|
+
color: $text-color-placeholder;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.#{$prefix}-layout__sider {
|
|
26
|
+
text-align: center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.#{$prefix}-layout__header {
|
|
30
|
+
text-align: center;
|
|
31
|
+
color: #fff;
|
|
32
|
+
background-color: $brand-color-4;
|
|
33
|
+
font-size: $font-size-l;
|
|
34
|
+
line-height: 64px;
|
|
35
|
+
|
|
36
|
+
.t-layout__header {
|
|
37
|
+
color: #fff;
|
|
38
|
+
background: #266fe8;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.#{$prefix}-layout__sider {
|
|
43
|
+
background-color: $brand-color-6;
|
|
44
|
+
color: #fff;
|
|
45
|
+
font-size: $font-size-l;
|
|
46
|
+
display: flex;
|
|
47
|
+
align-items: center;
|
|
48
|
+
justify-content: center;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.#{$prefix}-layout__content {
|
|
52
|
+
text-align: center;
|
|
53
|
+
color: #fff;
|
|
54
|
+
background: $brand-color-5;
|
|
55
|
+
height: 100px;
|
|
56
|
+
font-size: $font-size-l;
|
|
57
|
+
padding: 0;
|
|
58
|
+
display: flex;
|
|
59
|
+
align-items: center;
|
|
60
|
+
justify-content: center;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.#{$prefix}-layout__footer {
|
|
64
|
+
min-height: 46px;
|
|
65
|
+
text-align: center;
|
|
66
|
+
color: #fff;
|
|
67
|
+
background: $brand-color-4;
|
|
68
|
+
font-size: $font-size-l;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.#{$prefix}-layout__sider {
|
|
72
|
+
text-align: center;
|
|
73
|
+
font-size: $font-size-l;
|
|
74
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
@import "../../_vars.scss";
|
|
2
|
+
|
|
3
|
+
@import "./_vars.scss";
|
|
4
|
+
|
|
5
|
+
@import "../../mixins/_reset.scss";
|
|
6
|
+
|
|
7
|
+
@import "../../mixins//layout.scss";
|
|
8
|
+
|
|
9
|
+
@import "../../mixins/scrollbar.scss";
|
|
10
|
+
.#{$prefix}-list {
|
|
11
|
+
@include reset();
|
|
12
|
+
@include scrollbar();
|
|
13
|
+
|
|
14
|
+
overflow: auto;
|
|
15
|
+
color: $list-font-color;
|
|
16
|
+
background: $list-bg-color-default;
|
|
17
|
+
|
|
18
|
+
&__inner {
|
|
19
|
+
@include list-style-none();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-item {
|
|
23
|
+
font: $list-item-font;
|
|
24
|
+
padding: $list-item-spacer-default;
|
|
25
|
+
display: flex;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
align-items: center;
|
|
28
|
+
position: relative;
|
|
29
|
+
|
|
30
|
+
&::after {
|
|
31
|
+
content: "";
|
|
32
|
+
position: absolute;
|
|
33
|
+
left: 0;
|
|
34
|
+
bottom: 0;
|
|
35
|
+
width: 100%;
|
|
36
|
+
height: 1px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&-main {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-content: space-between;
|
|
43
|
+
width: 100%;
|
|
44
|
+
flex: 1;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&__meta {
|
|
48
|
+
display: flex;
|
|
49
|
+
// padding: $list-meta-padding;
|
|
50
|
+
|
|
51
|
+
&-avatar {
|
|
52
|
+
width: $list-avatar-size;
|
|
53
|
+
height: $list-avatar-size;
|
|
54
|
+
border-radius: calc($list-avatar-size / 2);
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
background: $list-avatar-bg-color;
|
|
57
|
+
margin-right: $list-avatar-margin-right;
|
|
58
|
+
flex-shrink: 0;
|
|
59
|
+
|
|
60
|
+
img {
|
|
61
|
+
max-width: 100%;
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&-title {
|
|
68
|
+
padding: 0;
|
|
69
|
+
font: $list-meta-title-font;
|
|
70
|
+
margin: $list-meta-title-margin;
|
|
71
|
+
color: $list-meta-title-color;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&-description {
|
|
75
|
+
margin-right: $list-meta-description-margin-right;
|
|
76
|
+
color: $list-meta-description-color;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&__action {
|
|
81
|
+
list-style: none;
|
|
82
|
+
padding: 0;
|
|
83
|
+
flex-shrink: 0;
|
|
84
|
+
|
|
85
|
+
& > li {
|
|
86
|
+
display: inline-block;
|
|
87
|
+
|
|
88
|
+
&:not(:last-child) {
|
|
89
|
+
margin-right: $list-action-margin-right;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.t-icon {
|
|
93
|
+
color: $list-action-icon-color;
|
|
94
|
+
font-size: $list-icon-size;
|
|
95
|
+
|
|
96
|
+
&:hover {
|
|
97
|
+
color: $list-link-color;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
& > a {
|
|
103
|
+
text-decoration: none;
|
|
104
|
+
color: $list-action-color;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&--split {
|
|
111
|
+
.#{$prefix}-list-item::after {
|
|
112
|
+
background: $list-item-split-color;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&--stripe {
|
|
117
|
+
.#{$prefix}-list-item {
|
|
118
|
+
&:nth-child(even) {
|
|
119
|
+
background: $list-bg-color-strip;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
&--vertical-action {
|
|
125
|
+
.#{$prefix}-list-item {
|
|
126
|
+
flex-direction: column;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&.#{$prefix}-size-s {
|
|
131
|
+
.#{$prefix}-list-item {
|
|
132
|
+
padding: $list-item-spacer-small;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&.#{$prefix}-size-l {
|
|
137
|
+
.#{$prefix}-list-item {
|
|
138
|
+
padding: $list-item-spacer-large;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&__header,
|
|
143
|
+
&__footer {
|
|
144
|
+
background: $list-bg-color-default;
|
|
145
|
+
padding: $list-padding;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.#{$prefix}-list__load {
|
|
150
|
+
background: $list-bg-color-default;
|
|
151
|
+
text-align: center;
|
|
152
|
+
line-height: $list-load-line-height;
|
|
153
|
+
|
|
154
|
+
> div {
|
|
155
|
+
display: flex;
|
|
156
|
+
align-items: center;
|
|
157
|
+
justify-content: center;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&:not(:empty) {
|
|
161
|
+
padding: $list-load-not-empty-padding; // 如果不是空子元素才设置padding
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.#{$prefix}-loading {
|
|
165
|
+
font-size: $list-load-font-size;
|
|
166
|
+
margin-right: $list-load-icon-margin;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.#{$prefix}-loading.#{$prefix}-is-load-more {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// 颜色
|
|
2
|
+
$list-bg-color-default: $bg-color-container;
|
|
3
|
+
$list-bg-color-strip: $bg-color-secondarycontainer;
|
|
4
|
+
$list-item-split-color: $border-level-1-color;
|
|
5
|
+
$list-avatar-bg-color: $bg-color-page;
|
|
6
|
+
$list-text-color-loading: $text-color-placeholder;
|
|
7
|
+
// $list-icon-color-loading: $brand-color-5;
|
|
8
|
+
$list-text-color-load-more: $text-color-placeholder;
|
|
9
|
+
$list-meta-title-color: $text-color-primary;
|
|
10
|
+
$list-meta-description-color: $text-color-primary;
|
|
11
|
+
$list-action-color: $brand-color;
|
|
12
|
+
$list-action-icon-color: $text-color-secondary;
|
|
13
|
+
$list-link-color: $text-color-link;
|
|
14
|
+
$list-font-color: $text-color-primary;
|
|
15
|
+
|
|
16
|
+
// 间距
|
|
17
|
+
$list-padding: $comp-paddingTB-m $comp-paddingLR-l;
|
|
18
|
+
$list-item-spacer-small: $comp-paddingTB-s $comp-paddingLR-m;
|
|
19
|
+
$list-item-spacer-default: $comp-paddingTB-m $comp-paddingLR-l;
|
|
20
|
+
$list-item-spacer-large: $comp-paddingTB-l $comp-paddingLR-xl;
|
|
21
|
+
// $list-meta-padding: $spacer-s 0;
|
|
22
|
+
$list-avatar-margin-right: $comp-margin-l;
|
|
23
|
+
$list-meta-title-margin: 0 0 $comp-margin-s;
|
|
24
|
+
$list-meta-description-margin-right: $comp-margin-xxl;
|
|
25
|
+
$list-action-margin-right: $comp-margin-l;
|
|
26
|
+
$list-load-not-empty-padding: $comp-paddingTB-m $comp-paddingLR-l;
|
|
27
|
+
$list-load-icon-margin: $comp-margin-s;
|
|
28
|
+
|
|
29
|
+
// 尺寸
|
|
30
|
+
$list-item-line-height: $text-line-height-base;
|
|
31
|
+
$list-avatar-size: $comp-size-xxxl;
|
|
32
|
+
$list-icon-size: $comp-size-xxxs;
|
|
33
|
+
|
|
34
|
+
// 字体
|
|
35
|
+
$list-item-font: $font-body-medium;
|
|
36
|
+
$list-meta-title-font: $font-title-medium;
|
|
37
|
+
$list-load-font-size: $comp-size-xxxs;
|
|
38
|
+
$list-load-more-font-size: $comp-size-xxxs;
|
|
39
|
+
|
|
40
|
+
// 行号
|
|
41
|
+
$list-load-line-height: $text-line-height-base;
|
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
@import '../../_vars.scss';
|
|
2
|
-
|
|
3
|
-
@import './_vars.scss';
|
|
4
|
-
|
|
5
|
-
@import '../../utilities/_animation.scss';
|
|
6
|
-
|
|
7
|
-
@import '../../mixins/_reset.scss';
|
|
8
|
-
|
|
9
|
-
.#{$prefix}-loading {
|
|
10
|
-
@include reset;
|
|
11
|
-
|
|
12
|
-
position: relative;
|
|
13
|
-
color: $loading-color;
|
|
14
|
-
font-size: $loading-icon-size;
|
|
15
|
-
|
|
16
|
-
&--lock {
|
|
17
|
-
overflow: hidden;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&.#{$prefix}-size-s {
|
|
21
|
-
font-size: $loading-icon-size-small;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.#{$prefix}-size-l {
|
|
25
|
-
font-size: $loading-icon-size-large;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&__parent--relative {
|
|
29
|
-
position: relative !important;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.#{$prefix}-loading__fullscreen {
|
|
34
|
-
position: fixed;
|
|
35
|
-
top: 0;
|
|
36
|
-
left: 0;
|
|
37
|
-
width: 100%;
|
|
38
|
-
height: 100%;
|
|
39
|
-
z-index: $z-index-loading;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.#{$prefix}-loading--center {
|
|
43
|
-
display: inline-flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
vertical-align: middle;
|
|
46
|
-
justify-content: center;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.#{$prefix}-loading__content {
|
|
50
|
-
position: absolute;
|
|
51
|
-
left: 48%;
|
|
52
|
-
top: 20%;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.#{$prefix}-loading--inherit-color {
|
|
56
|
-
color: inherit;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.#{$prefix}-loading__parent {
|
|
60
|
-
position: relative;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.#{$prefix}-loading__overlay {
|
|
64
|
-
background-color: $loading-mask-color;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
/** 仅用于作为包裹元素时 */
|
|
68
|
-
.#{$prefix}-loading--full {
|
|
69
|
-
position: absolute;
|
|
70
|
-
top: 0;
|
|
71
|
-
left: 0;
|
|
72
|
-
width: 100%;
|
|
73
|
-
height: 100%;
|
|
74
|
-
z-index: $z-index-loading;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.#{$prefix}-loading--hidden {
|
|
78
|
-
visibility: hidden;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.#{$prefix}-loading--visible {
|
|
82
|
-
visibility: visible;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.#{$prefix}-loading__text {
|
|
86
|
-
width: auto;
|
|
87
|
-
display: inline-block;
|
|
88
|
-
vertical-align: middle;
|
|
89
|
-
font: $loading-text-size;
|
|
90
|
-
margin-left: $loading-text-margin-left;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.#{$prefix}-loading__gradient {
|
|
94
|
-
display: inline-flex;
|
|
95
|
-
justify-content: center;
|
|
96
|
-
align-items: center;
|
|
97
|
-
vertical-align: middle;
|
|
98
|
-
|
|
99
|
-
&-conic {
|
|
100
|
-
width: 100%;
|
|
101
|
-
height: 100%;
|
|
102
|
-
border-radius: $border-radius-circle;
|
|
103
|
-
/* stylelint-disable-next-line color-no-hex */
|
|
104
|
-
background: conic-gradient(
|
|
105
|
-
from 90deg at 50% 50%,
|
|
106
|
-
#fff 0deg,
|
|
107
|
-
currentcolor 360deg
|
|
108
|
-
);
|
|
109
|
-
-webkit-mask: radial-gradient(transparent calc(50% - 0.5px), #fff 50%);
|
|
110
|
-
mask: radial-gradient(transparent calc(50% - 0.5px), #fff 50%);
|
|
111
|
-
}
|
|
112
|
-
}
|
|
1
|
+
@import '../../_vars.scss';
|
|
2
|
+
|
|
3
|
+
@import './_vars.scss';
|
|
4
|
+
|
|
5
|
+
@import '../../utilities/_animation.scss';
|
|
6
|
+
|
|
7
|
+
@import '../../mixins/_reset.scss';
|
|
8
|
+
|
|
9
|
+
.#{$prefix}-loading {
|
|
10
|
+
@include reset;
|
|
11
|
+
|
|
12
|
+
position: relative;
|
|
13
|
+
color: $loading-color;
|
|
14
|
+
font-size: $loading-icon-size;
|
|
15
|
+
|
|
16
|
+
&--lock {
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&.#{$prefix}-size-s {
|
|
21
|
+
font-size: $loading-icon-size-small;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.#{$prefix}-size-l {
|
|
25
|
+
font-size: $loading-icon-size-large;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&__parent--relative {
|
|
29
|
+
position: relative !important;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.#{$prefix}-loading__fullscreen {
|
|
34
|
+
position: fixed;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
width: 100%;
|
|
38
|
+
height: 100%;
|
|
39
|
+
z-index: $z-index-loading;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.#{$prefix}-loading--center {
|
|
43
|
+
display: inline-flex;
|
|
44
|
+
align-items: center;
|
|
45
|
+
vertical-align: middle;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.#{$prefix}-loading__content {
|
|
50
|
+
position: absolute;
|
|
51
|
+
left: 48%;
|
|
52
|
+
top: 20%;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.#{$prefix}-loading--inherit-color {
|
|
56
|
+
color: inherit;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.#{$prefix}-loading__parent {
|
|
60
|
+
position: relative;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.#{$prefix}-loading__overlay {
|
|
64
|
+
background-color: $loading-mask-color;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/** 仅用于作为包裹元素时 */
|
|
68
|
+
.#{$prefix}-loading--full {
|
|
69
|
+
position: absolute;
|
|
70
|
+
top: 0;
|
|
71
|
+
left: 0;
|
|
72
|
+
width: 100%;
|
|
73
|
+
height: 100%;
|
|
74
|
+
z-index: $z-index-loading;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.#{$prefix}-loading--hidden {
|
|
78
|
+
visibility: hidden;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.#{$prefix}-loading--visible {
|
|
82
|
+
visibility: visible;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.#{$prefix}-loading__text {
|
|
86
|
+
width: auto;
|
|
87
|
+
display: inline-block;
|
|
88
|
+
vertical-align: middle;
|
|
89
|
+
font: $loading-text-size;
|
|
90
|
+
margin-left: $loading-text-margin-left;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.#{$prefix}-loading__gradient {
|
|
94
|
+
display: inline-flex;
|
|
95
|
+
justify-content: center;
|
|
96
|
+
align-items: center;
|
|
97
|
+
vertical-align: middle;
|
|
98
|
+
|
|
99
|
+
&-conic {
|
|
100
|
+
width: 100%;
|
|
101
|
+
height: 100%;
|
|
102
|
+
border-radius: $border-radius-circle;
|
|
103
|
+
/* stylelint-disable-next-line color-no-hex */
|
|
104
|
+
background: conic-gradient(
|
|
105
|
+
from 90deg at 50% 50%,
|
|
106
|
+
#fff 0deg,
|
|
107
|
+
currentcolor 360deg
|
|
108
|
+
);
|
|
109
|
+
-webkit-mask: radial-gradient(transparent calc(50% - 0.5px), #fff 50%);
|
|
110
|
+
mask: radial-gradient(transparent calc(50% - 0.5px), #fff 50%);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
// 组件变量
|
|
2
|
-
// 名称可按如下规则定义:
|
|
3
|
-
// <component>-[type]-[attrtype]-<attr>-[status]
|
|
4
|
-
|
|
5
|
-
// component:组件名,如button,
|
|
6
|
-
// type: 组件类型,如 button 的次要按钮(line)
|
|
7
|
-
// attrtype: 属性的具体应用场景。如颜色,用于背景(bg)、文本(text)、边框(border)等
|
|
8
|
-
// attr: 属性名称,如color、height、radius等
|
|
9
|
-
// status: 表示组件状态或尺寸,如 hover、disabled、s、l 等
|
|
10
|
-
|
|
11
|
-
// 如:$button-line-bg-color-hover
|
|
12
|
-
// 如:$button-line-height-s
|
|
13
|
-
|
|
14
|
-
//颜色
|
|
15
|
-
$loading-color: $brand-color;
|
|
16
|
-
$loading-mask-color: $mask-disabled;
|
|
17
|
-
$loading-gradient-color: $brand-color;
|
|
18
|
-
|
|
19
|
-
// 字号
|
|
20
|
-
$loading-text-size: $font-body-medium;
|
|
21
|
-
$loading-icon-size: $comp-size-l;
|
|
22
|
-
$loading-icon-size-small: $comp-size-xxxs;
|
|
23
|
-
$loading-icon-size-large: $comp-size-xxxl;
|
|
24
|
-
$loading-fullscreen-icon-size: $loading-icon-size;
|
|
25
|
-
|
|
26
|
-
// 间距
|
|
27
|
-
$loading-text-margin-left: $comp-margin-xs;
|
|
28
|
-
$loading-gradient-padding-s: 1px;
|
|
29
|
-
$loading-gradient-padding-m: 3px;
|
|
30
|
-
$loading-gradient-padding-l: 5px;
|
|
31
|
-
|
|
32
|
-
// Size
|
|
33
|
-
$loading-gradient-size-s: $comp-size-xxxs;
|
|
34
|
-
$loading-gradient-size-m: $comp-size-xl;
|
|
35
|
-
$loading-gradient-size-l: $comp-size-xxxl;
|
|
36
|
-
|
|
37
|
-
$loading-gradient-mask-size-s: 5.5px;
|
|
38
|
-
$loading-gradient-mask-size-m: 11.5px;
|
|
39
|
-
$loading-gradient-mask-size-l: 15.5px;
|
|
1
|
+
// 组件变量
|
|
2
|
+
// 名称可按如下规则定义:
|
|
3
|
+
// <component>-[type]-[attrtype]-<attr>-[status]
|
|
4
|
+
|
|
5
|
+
// component:组件名,如button,
|
|
6
|
+
// type: 组件类型,如 button 的次要按钮(line)
|
|
7
|
+
// attrtype: 属性的具体应用场景。如颜色,用于背景(bg)、文本(text)、边框(border)等
|
|
8
|
+
// attr: 属性名称,如color、height、radius等
|
|
9
|
+
// status: 表示组件状态或尺寸,如 hover、disabled、s、l 等
|
|
10
|
+
|
|
11
|
+
// 如:$button-line-bg-color-hover
|
|
12
|
+
// 如:$button-line-height-s
|
|
13
|
+
|
|
14
|
+
//颜色
|
|
15
|
+
$loading-color: $brand-color;
|
|
16
|
+
$loading-mask-color: $mask-disabled;
|
|
17
|
+
$loading-gradient-color: $brand-color;
|
|
18
|
+
|
|
19
|
+
// 字号
|
|
20
|
+
$loading-text-size: $font-body-medium;
|
|
21
|
+
$loading-icon-size: $comp-size-l;
|
|
22
|
+
$loading-icon-size-small: $comp-size-xxxs;
|
|
23
|
+
$loading-icon-size-large: $comp-size-xxxl;
|
|
24
|
+
$loading-fullscreen-icon-size: $loading-icon-size;
|
|
25
|
+
|
|
26
|
+
// 间距
|
|
27
|
+
$loading-text-margin-left: $comp-margin-xs;
|
|
28
|
+
$loading-gradient-padding-s: 1px;
|
|
29
|
+
$loading-gradient-padding-m: 3px;
|
|
30
|
+
$loading-gradient-padding-l: 5px;
|
|
31
|
+
|
|
32
|
+
// Size
|
|
33
|
+
$loading-gradient-size-s: $comp-size-xxxs;
|
|
34
|
+
$loading-gradient-size-m: $comp-size-xl;
|
|
35
|
+
$loading-gradient-size-l: $comp-size-xxxl;
|
|
36
|
+
|
|
37
|
+
$loading-gradient-mask-size-s: 5.5px;
|
|
38
|
+
$loading-gradient-mask-size-m: 11.5px;
|
|
39
|
+
$loading-gradient-mask-size-l: 15.5px;
|