@tendaui/components 1.0.0 → 1.2.3
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,193 @@
|
|
|
1
|
+
@import "../../vars.scss";
|
|
2
|
+
@import "../../mixins/_reset.scss";
|
|
3
|
+
@import "./_var.scss";
|
|
4
|
+
|
|
5
|
+
// 表格基础样式
|
|
6
|
+
.#{$prefix}-table {
|
|
7
|
+
@include reset;
|
|
8
|
+
|
|
9
|
+
width: 100%;
|
|
10
|
+
font: $table-font;
|
|
11
|
+
color: $table-text-color;
|
|
12
|
+
background-color: $table-bg;
|
|
13
|
+
position: relative;
|
|
14
|
+
|
|
15
|
+
&__content {
|
|
16
|
+
position: relative;
|
|
17
|
+
overflow: auto;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&__table {
|
|
21
|
+
width: 100%;
|
|
22
|
+
border-spacing: 0;
|
|
23
|
+
border-collapse: collapse;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// 表头
|
|
27
|
+
&__header {
|
|
28
|
+
th {
|
|
29
|
+
color: $table-head-text-color;
|
|
30
|
+
font-weight: 500;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// 表体
|
|
35
|
+
&__body {
|
|
36
|
+
tr {
|
|
37
|
+
background-color: $table-bg;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// 单元格基础样式
|
|
42
|
+
th,
|
|
43
|
+
td {
|
|
44
|
+
position: relative;
|
|
45
|
+
padding: $table-padding-normal;
|
|
46
|
+
border-bottom: 1px solid $table-border-color;
|
|
47
|
+
line-height: $table-line-height;
|
|
48
|
+
font-weight: normal;
|
|
49
|
+
overflow-wrap: break-word;
|
|
50
|
+
background-color: inherit;
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
text-align: left;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// 对齐方式
|
|
56
|
+
.#{$prefix}-align-left {
|
|
57
|
+
text-align: left;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.#{$prefix}-align-center {
|
|
61
|
+
text-align: center;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.#{$prefix}-align-right {
|
|
65
|
+
text-align: right;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// 文本省略
|
|
69
|
+
&__ellipsis {
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
text-overflow: ellipsis;
|
|
73
|
+
width: 100%;
|
|
74
|
+
max-width: 100%;
|
|
75
|
+
display: block;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// 当单元格启用省略时
|
|
79
|
+
&__cell--ellipsis {
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
position: relative;
|
|
82
|
+
max-width: 100%;
|
|
83
|
+
|
|
84
|
+
// 确保内部内容不会超出
|
|
85
|
+
& > div {
|
|
86
|
+
width: 100%;
|
|
87
|
+
max-width: 100%;
|
|
88
|
+
box-sizing: border-box;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// 边框模式
|
|
93
|
+
&--bordered {
|
|
94
|
+
td,
|
|
95
|
+
th {
|
|
96
|
+
border-left: 1px solid $table-border-color;
|
|
97
|
+
|
|
98
|
+
&:first-child {
|
|
99
|
+
border-left-width: 0;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&__content {
|
|
104
|
+
border: 1px solid $table-border-color;
|
|
105
|
+
border-radius: var(--td-border-radius-default, 4px);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// 斑马纹
|
|
110
|
+
&--stripe {
|
|
111
|
+
tbody tr:nth-of-type(odd) {
|
|
112
|
+
background-color: $table-highlight-bg-color;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// 悬浮效果
|
|
117
|
+
&--hover {
|
|
118
|
+
tbody tr {
|
|
119
|
+
transition: background-color 0.2s linear;
|
|
120
|
+
|
|
121
|
+
&:hover {
|
|
122
|
+
background-color: $table-highlight-bg-color-hover;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// 尺寸
|
|
128
|
+
&--size-small {
|
|
129
|
+
th,
|
|
130
|
+
td {
|
|
131
|
+
padding: $table-padding-small;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&--size-medium {
|
|
136
|
+
th,
|
|
137
|
+
td {
|
|
138
|
+
padding: $table-padding-normal;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&--size-large {
|
|
143
|
+
th,
|
|
144
|
+
td {
|
|
145
|
+
padding: $table-padding-large;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// 布局方式
|
|
150
|
+
&--layout-fixed {
|
|
151
|
+
table-layout: fixed;
|
|
152
|
+
|
|
153
|
+
// 固定布局下,省略文本需要特殊处理
|
|
154
|
+
td.#{$prefix}-table__cell--ellipsis,
|
|
155
|
+
th.#{$prefix}-table__cell--ellipsis {
|
|
156
|
+
overflow: hidden;
|
|
157
|
+
position: relative;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
&--layout-auto {
|
|
162
|
+
table-layout: auto;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// 垂直对齐
|
|
166
|
+
&--vertical-align-top {
|
|
167
|
+
tbody td {
|
|
168
|
+
vertical-align: top;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
&--vertical-align-bottom {
|
|
173
|
+
tbody td {
|
|
174
|
+
vertical-align: bottom;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// 空数据
|
|
179
|
+
&__empty-row {
|
|
180
|
+
td {
|
|
181
|
+
padding: 0;
|
|
182
|
+
border: 0;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
&__empty {
|
|
187
|
+
display: flex;
|
|
188
|
+
align-items: center;
|
|
189
|
+
justify-content: center;
|
|
190
|
+
min-height: $table-empty-min-height;
|
|
191
|
+
color: $table-color-empty;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// 表格变量
|
|
2
|
+
// 参考 table_tdesign/style/table/_var.less
|
|
3
|
+
|
|
4
|
+
// Color
|
|
5
|
+
$table-bg: $bg-color-container;
|
|
6
|
+
$table-text-color: $text-color-primary;
|
|
7
|
+
$table-head-text-color: $text-color-placeholder;
|
|
8
|
+
$table-border-color: $component-border;
|
|
9
|
+
$table-link-text-color: $text-color-link;
|
|
10
|
+
$table-action-bg-color: $bg-color-container-hover;
|
|
11
|
+
$table-highlight-bg-color: $bg-color-secondarycontainer;
|
|
12
|
+
$table-highlight-bg-color-hover: $bg-color-secondarycontainer-hover;
|
|
13
|
+
$table-highlight-dark-bg-color: $bg-color-container-hover;
|
|
14
|
+
$table-row-disabled-color: $text-color-disabled;
|
|
15
|
+
$table-icon-default-color: $text-color-placeholder;
|
|
16
|
+
$table-icon-active-color: $brand-color;
|
|
17
|
+
$table-filter-icon-default-color: $text-color-primary;
|
|
18
|
+
$table-color-empty: $text-color-disabled;
|
|
19
|
+
$table-fixed-cell-border-color: $component-border;
|
|
20
|
+
$table-sort-bg-color: $bg-color-secondarycontainer;
|
|
21
|
+
|
|
22
|
+
// Size
|
|
23
|
+
$table-line-height: $text-line-height-base;
|
|
24
|
+
$table-line-height-half: calc(#{$font-size-base} + 2px);
|
|
25
|
+
$table-font: $font-body-medium;
|
|
26
|
+
$table-icon-size: $font-size-l;
|
|
27
|
+
$table-loading-size: $table-icon-size;
|
|
28
|
+
|
|
29
|
+
$table-padding-horizontal: $comp-paddingLR-l;
|
|
30
|
+
$table-padding-small: $comp-paddingTB-s $comp-paddingLR-s;
|
|
31
|
+
$table-padding-normal: $comp-paddingTB-m $comp-paddingLR-l;
|
|
32
|
+
$table-padding-large: $comp-paddingTB-l $comp-paddingLR-xl;
|
|
33
|
+
$table-td-padding-vertical-top: 13px;
|
|
34
|
+
$table-td-padding-vertical-bottom: 11px;
|
|
35
|
+
$table-td-padding-vertical: $comp-paddingTB-m;
|
|
36
|
+
$table-td-padding-horizontal: $comp-paddingLR-l;
|
|
37
|
+
$table-td-editable-icon-margin: $comp-margin-s;
|
|
38
|
+
$table-pagination-padding-normal: $comp-paddingTB-l $comp-paddingLR-l;
|
|
39
|
+
$table-controller-trigger-padding: $comp-paddingTB-l 0;
|
|
40
|
+
$table-default-pagination-padding: $comp-paddingTB-l $comp-paddingLR-l;
|
|
41
|
+
|
|
42
|
+
$table-fixed-cell-box-shadow-spread-radius: -10px;
|
|
43
|
+
$table-fixed-cell-border-width: 4px;
|
|
44
|
+
$table-fixed-cell-border-width-light: 2px;
|
|
45
|
+
$table-fixed-cell-border: #{$table-fixed-cell-border-width} solid $table-fixed-cell-border-color;
|
|
46
|
+
$table-fixed-cell-border-light: #{$table-fixed-cell-border-width-light} solid $table-fixed-cell-border-color;
|
|
47
|
+
|
|
48
|
+
// Other
|
|
49
|
+
$table-double-sort-icon-space: $comp-margin-xxs;
|
|
50
|
+
$table-filter-icon-margin-left: $comp-margin-s;
|
|
51
|
+
$table-controller-item-margin: $comp-margin-l;
|
|
52
|
+
$table-empty-min-height: 120px;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
@import "../../vars.scss";
|
|
2
|
+
@import "./vars.scss";
|
|
3
|
+
@import "./_mixins.scss";
|
|
4
|
+
@import "../../mixins/reset.scss";
|
|
5
|
+
|
|
6
|
+
.#{$prefix}-tabs {
|
|
7
|
+
@include reset;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
background-color: $tab-default-bg;
|
|
10
|
+
|
|
11
|
+
&__header {
|
|
12
|
+
&.#{$prefix}-is-left {
|
|
13
|
+
float: left;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.#{$prefix}-is-right {
|
|
17
|
+
float: right;
|
|
18
|
+
}
|
|
19
|
+
.t-icon {
|
|
20
|
+
font-size: $tab-icon-size;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
&__nav {
|
|
24
|
+
position: relative;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
user-select: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&__nav-container {
|
|
30
|
+
position: relative;
|
|
31
|
+
|
|
32
|
+
&.#{$prefix}-is-addable {
|
|
33
|
+
margin-right: $tab-btn-width;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.#{$prefix}-tabs__nav--card {
|
|
37
|
+
// border-bottom: 1px solid $tab-default-stroke;
|
|
38
|
+
|
|
39
|
+
&::after {
|
|
40
|
+
content: "";
|
|
41
|
+
background-color: transparent;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&__nav-item {
|
|
47
|
+
display: inline-flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
font: $font-body-medium;
|
|
50
|
+
color: $tab-default-text;
|
|
51
|
+
position: relative;
|
|
52
|
+
overflow: hidden;
|
|
53
|
+
z-index: 0;
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
flex-shrink: 0;
|
|
56
|
+
transition: $tab-nav-item-transition;
|
|
57
|
+
|
|
58
|
+
&-wrapper {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
height: $tab-nav-item-wrapper-height;
|
|
62
|
+
padding: $tab-nav-item-wrapper-padding;
|
|
63
|
+
margin-left: $tab-nav-item-margin-left;
|
|
64
|
+
margin-right: $tab-nav-item-margin-right;
|
|
65
|
+
border-radius: $border-radius-default;
|
|
66
|
+
transition: $tab-nav-item-transition;
|
|
67
|
+
|
|
68
|
+
--ripple-color: $bg-color-container-active;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&.#{$prefix}-size-l {
|
|
72
|
+
font: $tab-nav-item-font;
|
|
73
|
+
|
|
74
|
+
.#{$prefix}-tabs__nav-item-wrapper {
|
|
75
|
+
height: $tab-nav-item-wrapper-height-large;
|
|
76
|
+
padding: $tab-nav-item-wrapper-padding-large;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&-text-wrapper {
|
|
81
|
+
position: relative;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.#{$prefix}-is-disabled):not(.#{$prefix}-is-active):hover {
|
|
87
|
+
.#{$prefix}-tabs__nav-item-wrapper {
|
|
88
|
+
background-color: $bg-color-container-hover;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&.#{$prefix}-is-left,
|
|
93
|
+
&.#{$prefix}-is-right {
|
|
94
|
+
display: flex;
|
|
95
|
+
align-items: center;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&.#{$prefix}-size-m {
|
|
99
|
+
height: $tab-height-middle;
|
|
100
|
+
line-height: $tab-height-middle;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&.#{$prefix}-size-l {
|
|
104
|
+
height: $tab-height-large;
|
|
105
|
+
line-height: $tab-height-large;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&.#{$prefix}-is-active {
|
|
109
|
+
color: $tab-default-text-select;
|
|
110
|
+
// font-weight: 500;
|
|
111
|
+
text-shadow: $tab-btn-text-shadow-active; // 由于在wins上字体变粗时会扩大width的宽度,导致有抖动的问题;因此采用text-shadow来代替
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.#{$prefix}-is-disabled {
|
|
115
|
+
color: $tab-default-text-disabled;
|
|
116
|
+
cursor: not-allowed;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
& > .remove-btn {
|
|
120
|
+
margin-left: $tab-btn-remove-btn-margin-left;
|
|
121
|
+
transition: $tab-btn-remove-btn-transition;
|
|
122
|
+
display: flex;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
&__content {
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
position: relative;
|
|
128
|
+
}
|
|
129
|
+
&__bar {
|
|
130
|
+
position: absolute;
|
|
131
|
+
background-color: $tab-default-bar-bg-color;
|
|
132
|
+
z-index: 1;
|
|
133
|
+
transition: $tab-bar-transition;
|
|
134
|
+
border-radius: $border-radius-small;
|
|
135
|
+
|
|
136
|
+
&.#{$prefix}-is-top {
|
|
137
|
+
bottom: 0;
|
|
138
|
+
left: 0;
|
|
139
|
+
height: $tab-default-stroke-size;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&.#{$prefix}-is-bottom {
|
|
143
|
+
top: 0;
|
|
144
|
+
left: 0;
|
|
145
|
+
height: $tab-default-stroke-size;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&.#{$prefix}-is-left {
|
|
149
|
+
top: 0;
|
|
150
|
+
right: 0;
|
|
151
|
+
width: $tab-default-stroke-size;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
&.#{$prefix}-is-right {
|
|
155
|
+
top: 0;
|
|
156
|
+
left: 0;
|
|
157
|
+
width: $tab-default-stroke-size;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.#{$prefix}-tab-panel {
|
|
162
|
+
&.#{$prefix}-is-hidden {
|
|
163
|
+
display: none;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@mixin bar-track-pseudo($w: 100%, $h: 100%, $top: auto, $right: auto, $bottom: auto, $left: auto) {
|
|
2
|
+
content: "";
|
|
3
|
+
width: $w;
|
|
4
|
+
height: $h;
|
|
5
|
+
position: absolute;
|
|
6
|
+
top: $top;
|
|
7
|
+
right: $right;
|
|
8
|
+
bottom: $bottom;
|
|
9
|
+
left: $left;
|
|
10
|
+
background-color: $tab-card-stroke;
|
|
11
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
// 默认选项卡
|
|
2
|
+
$tab-default-bg: $bg-color-container;
|
|
3
|
+
$tab-default-bg-hover: $bg-color-container-hover;
|
|
4
|
+
$tab-default-bg-active: $bg-color-container-active;
|
|
5
|
+
|
|
6
|
+
$tab-default-text: $text-color-secondary;
|
|
7
|
+
$tab-default-text-select: $brand-color;
|
|
8
|
+
$tab-default-text-disabled: $text-color-disabled;
|
|
9
|
+
|
|
10
|
+
$tab-default-icon: $text-color-secondary;
|
|
11
|
+
$tab-default-icon-select: $brand-color;
|
|
12
|
+
$tab-default-icon-disabled: $text-color-disabled;
|
|
13
|
+
|
|
14
|
+
$tab-default-stroke: $component-stroke;
|
|
15
|
+
$tab-default-bar-bg-color: $brand-color;
|
|
16
|
+
$tab-default-stroke-size: 3px;
|
|
17
|
+
|
|
18
|
+
// 卡片选项卡
|
|
19
|
+
$tab-card-bg: $bg-color-secondarycontainer;
|
|
20
|
+
$tab-card-bg-hover: $bg-color-secondarycontainer-hover;
|
|
21
|
+
$tab-card-bg-active: $bg-color-secondarycontainer-active;
|
|
22
|
+
$tab-card-bg-select: $bg-color-container;
|
|
23
|
+
|
|
24
|
+
$tab-card-text: $text-color-secondary;
|
|
25
|
+
$tab-card-text-select: $brand-color;
|
|
26
|
+
$tab-card-text-disabled: $text-color-disabled;
|
|
27
|
+
|
|
28
|
+
$tab-card-icon: $text-color-secondary;
|
|
29
|
+
$tab-card-icon-select: $text-color-primary;
|
|
30
|
+
$tab-card-icon-disabled: $text-color-disabled;
|
|
31
|
+
|
|
32
|
+
$tab-card-stroke: $component-stroke;
|
|
33
|
+
|
|
34
|
+
// 其他
|
|
35
|
+
$tab-height-middle: $comp-size-xxl;
|
|
36
|
+
$tab-height-large: $comp-size-xxxxl;
|
|
37
|
+
$tab-nav-item-wrapper-height: $comp-size-m;
|
|
38
|
+
$tab-nav-item-wrapper-height-large: $comp-size-xxl;
|
|
39
|
+
$tab-btn-width: 40px;
|
|
40
|
+
$tab-nav-item-margin-left: $comp-margin-s;
|
|
41
|
+
$tab-nav-item-margin-right: $comp-margin-s;
|
|
42
|
+
$tab-nav-item-wrapper-padding: 0 $comp-paddingLR-s;
|
|
43
|
+
$tab-nav-item-wrapper-padding-large: 0 $comp-paddingLR-m;
|
|
44
|
+
$tab-btn-remove-btn-margin-left: $comp-margin-s;
|
|
45
|
+
$tab-nav-card-nav-item-padding-right: $comp-paddingLR-l;
|
|
46
|
+
$tab-nav-card-nav-item-padding-left: $comp-paddingLR-l;
|
|
47
|
+
$tab-nav-card-nav-item-padding-right-large: $comp-paddingLR-xl;
|
|
48
|
+
$tab-nav-card-nav-item-padding-left-large: $comp-paddingLR-xl;
|
|
49
|
+
|
|
50
|
+
// 尺寸
|
|
51
|
+
$tab-icon-size: $font-size-l; // icon尺寸
|
|
52
|
+
$tab-nav-item-font: $font-body-large; // tab文本字体大小
|
|
53
|
+
|
|
54
|
+
// 圆角&边框
|
|
55
|
+
$tab-btn-border: 1px solid $tab-card-stroke; // 按钮边框
|
|
56
|
+
$tab-bar-operations-border: 1px solid $tab-card-stroke; // 卡片边框
|
|
57
|
+
|
|
58
|
+
// 动画&过度
|
|
59
|
+
$tab-nav-scroll-transform: translate(0); // 滚动栏滚动过度
|
|
60
|
+
$tab-btn-fade-transform-left: translateX(-50px); // 按钮过渡动画
|
|
61
|
+
$tab-btn-fade-transform-right: translateX(50px); // 按钮过渡动画
|
|
62
|
+
$tab-nav-warp-is-smooth-transform: transform $anim-duration-moderate $anim-time-fn-ease-out; // smooth 过渡动画
|
|
63
|
+
$tab-nav-item-transition: background-color $anim-time-fn-easing $anim-duration-base;
|
|
64
|
+
$tab-btn-remove-btn-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); // 删除按钮动画过渡
|
|
65
|
+
$tab-btn-icon-close-transition: color $anim-time-fn-easing $anim-duration-base; // 关闭按钮过渡动画
|
|
66
|
+
|
|
67
|
+
// 阴影
|
|
68
|
+
$tab-bar-operations-btn-box-shadow: -10px 0 20px 5px rgba(0, 0, 0, 5%); // 按钮阴影
|
|
69
|
+
$tab-bar-transition: all $anim-duration-moderate $anim-time-fn-easing; // 选项卡过渡动画
|
|
70
|
+
$tab-btn-box-shadow: 10px 0px 20px 5px rgba(0, 0, 0, 0.05); // 按钮阴影
|
|
71
|
+
$tab-btn-text-shadow-active: 0 0 0.3px currentcolor; // 按钮选中颜色 win系统兼容
|