@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
package/styles/themes/_size.scss
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
// size/margin/padding相关 token
|
|
2
|
-
:root {
|
|
3
|
-
--td-size-1: 2px;
|
|
4
|
-
--td-size-2: 4px;
|
|
5
|
-
--td-size-3: 6px;
|
|
6
|
-
--td-size-4: 8px;
|
|
7
|
-
--td-size-5: 12px;
|
|
8
|
-
--td-size-6: 16px;
|
|
9
|
-
--td-size-7: 20px;
|
|
10
|
-
--td-size-8: 24px;
|
|
11
|
-
--td-size-9: 28px;
|
|
12
|
-
--td-size-10: 32px;
|
|
13
|
-
--td-size-11: 36px;
|
|
14
|
-
--td-size-12: 40px;
|
|
15
|
-
--td-size-13: 48px;
|
|
16
|
-
--td-size-14: 56px;
|
|
17
|
-
--td-size-15: 64px;
|
|
18
|
-
--td-size-16: 72px;
|
|
19
|
-
|
|
20
|
-
//全局 component 组件尺寸高度相关 token
|
|
21
|
-
--td-comp-size-xxxs: var(--td-size-6);
|
|
22
|
-
--td-comp-size-xxs: var(--td-size-7);
|
|
23
|
-
--td-comp-size-xs: var(--td-size-8);
|
|
24
|
-
--td-comp-size-s: var(--td-size-9);
|
|
25
|
-
--td-comp-size-m: var(--td-size-10);
|
|
26
|
-
--td-comp-size-l: var(--td-size-11);
|
|
27
|
-
--td-comp-size-xl: var(--td-size-12);
|
|
28
|
-
--td-comp-size-xxl: var(--td-size-13);
|
|
29
|
-
--td-comp-size-xxxl: var(--td-size-14);
|
|
30
|
-
--td-comp-size-xxxxl: var(--td-size-15);
|
|
31
|
-
--td-comp-size-xxxxxl: var(--td-size-16);
|
|
32
|
-
|
|
33
|
-
//全局 popup 弹出层整体边距 token
|
|
34
|
-
--td-pop-padding-s: var(--td-size-2);
|
|
35
|
-
--td-pop-padding-m: var(--td-size-3);
|
|
36
|
-
--td-pop-padding-l: var(--td-size-4);
|
|
37
|
-
--td-pop-padding-xl: var(--td-size-5);
|
|
38
|
-
--td-pop-padding-xxl: var(--td-size-6);
|
|
39
|
-
|
|
40
|
-
//全局 component 组件左右边距 token
|
|
41
|
-
--td-comp-paddingLR-xxs: var(--td-size-1);
|
|
42
|
-
--td-comp-paddingLR-xs: var(--td-size-2);
|
|
43
|
-
--td-comp-paddingLR-s: var(--td-size-4);
|
|
44
|
-
--td-comp-paddingLR-m: var(--td-size-5);
|
|
45
|
-
--td-comp-paddingLR-l: var(--td-size-6);
|
|
46
|
-
--td-comp-paddingLR-xl: var(--td-size-8);
|
|
47
|
-
--td-comp-paddingLR-xxl: var(--td-size-10);
|
|
48
|
-
|
|
49
|
-
//全局 component 组件上下边距 token
|
|
50
|
-
--td-comp-paddingTB-xxs: var(--td-size-1);
|
|
51
|
-
--td-comp-paddingTB-xs: var(--td-size-2);
|
|
52
|
-
--td-comp-paddingTB-s: var(--td-size-4);
|
|
53
|
-
--td-comp-paddingTB-m: var(--td-size-5);
|
|
54
|
-
--td-comp-paddingTB-l: var(--td-size-6);
|
|
55
|
-
--td-comp-paddingTB-xl: var(--td-size-8);
|
|
56
|
-
--td-comp-paddingTB-xxl: var(--td-size-10);
|
|
57
|
-
|
|
58
|
-
//全局 component 组件间距 token
|
|
59
|
-
--td-comp-margin-xxs: var(--td-size-1);
|
|
60
|
-
--td-comp-margin-xs: var(--td-size-2);
|
|
61
|
-
--td-comp-margin-s: var(--td-size-4);
|
|
62
|
-
--td-comp-margin-m: var(--td-size-5);
|
|
63
|
-
--td-comp-margin-l: var(--td-size-6);
|
|
64
|
-
--td-comp-margin-xl: var(--td-size-7);
|
|
65
|
-
--td-comp-margin-xxl: var(--td-size-8);
|
|
66
|
-
--td-comp-margin-xxxl: var(--td-size-10);
|
|
67
|
-
--td-comp-margin-xxxxl: var(--td-size-12);
|
|
68
|
-
}
|
|
1
|
+
// size/margin/padding相关 token
|
|
2
|
+
:root {
|
|
3
|
+
--td-size-1: 2px;
|
|
4
|
+
--td-size-2: 4px;
|
|
5
|
+
--td-size-3: 6px;
|
|
6
|
+
--td-size-4: 8px;
|
|
7
|
+
--td-size-5: 12px;
|
|
8
|
+
--td-size-6: 16px;
|
|
9
|
+
--td-size-7: 20px;
|
|
10
|
+
--td-size-8: 24px;
|
|
11
|
+
--td-size-9: 28px;
|
|
12
|
+
--td-size-10: 32px;
|
|
13
|
+
--td-size-11: 36px;
|
|
14
|
+
--td-size-12: 40px;
|
|
15
|
+
--td-size-13: 48px;
|
|
16
|
+
--td-size-14: 56px;
|
|
17
|
+
--td-size-15: 64px;
|
|
18
|
+
--td-size-16: 72px;
|
|
19
|
+
|
|
20
|
+
//全局 component 组件尺寸高度相关 token
|
|
21
|
+
--td-comp-size-xxxs: var(--td-size-6);
|
|
22
|
+
--td-comp-size-xxs: var(--td-size-7);
|
|
23
|
+
--td-comp-size-xs: var(--td-size-8);
|
|
24
|
+
--td-comp-size-s: var(--td-size-9);
|
|
25
|
+
--td-comp-size-m: var(--td-size-10);
|
|
26
|
+
--td-comp-size-l: var(--td-size-11);
|
|
27
|
+
--td-comp-size-xl: var(--td-size-12);
|
|
28
|
+
--td-comp-size-xxl: var(--td-size-13);
|
|
29
|
+
--td-comp-size-xxxl: var(--td-size-14);
|
|
30
|
+
--td-comp-size-xxxxl: var(--td-size-15);
|
|
31
|
+
--td-comp-size-xxxxxl: var(--td-size-16);
|
|
32
|
+
|
|
33
|
+
//全局 popup 弹出层整体边距 token
|
|
34
|
+
--td-pop-padding-s: var(--td-size-2);
|
|
35
|
+
--td-pop-padding-m: var(--td-size-3);
|
|
36
|
+
--td-pop-padding-l: var(--td-size-4);
|
|
37
|
+
--td-pop-padding-xl: var(--td-size-5);
|
|
38
|
+
--td-pop-padding-xxl: var(--td-size-6);
|
|
39
|
+
|
|
40
|
+
//全局 component 组件左右边距 token
|
|
41
|
+
--td-comp-paddingLR-xxs: var(--td-size-1);
|
|
42
|
+
--td-comp-paddingLR-xs: var(--td-size-2);
|
|
43
|
+
--td-comp-paddingLR-s: var(--td-size-4);
|
|
44
|
+
--td-comp-paddingLR-m: var(--td-size-5);
|
|
45
|
+
--td-comp-paddingLR-l: var(--td-size-6);
|
|
46
|
+
--td-comp-paddingLR-xl: var(--td-size-8);
|
|
47
|
+
--td-comp-paddingLR-xxl: var(--td-size-10);
|
|
48
|
+
|
|
49
|
+
//全局 component 组件上下边距 token
|
|
50
|
+
--td-comp-paddingTB-xxs: var(--td-size-1);
|
|
51
|
+
--td-comp-paddingTB-xs: var(--td-size-2);
|
|
52
|
+
--td-comp-paddingTB-s: var(--td-size-4);
|
|
53
|
+
--td-comp-paddingTB-m: var(--td-size-5);
|
|
54
|
+
--td-comp-paddingTB-l: var(--td-size-6);
|
|
55
|
+
--td-comp-paddingTB-xl: var(--td-size-8);
|
|
56
|
+
--td-comp-paddingTB-xxl: var(--td-size-10);
|
|
57
|
+
|
|
58
|
+
//全局 component 组件间距 token
|
|
59
|
+
--td-comp-margin-xxs: var(--td-size-1);
|
|
60
|
+
--td-comp-margin-xs: var(--td-size-2);
|
|
61
|
+
--td-comp-margin-s: var(--td-size-4);
|
|
62
|
+
--td-comp-margin-m: var(--td-size-5);
|
|
63
|
+
--td-comp-margin-l: var(--td-size-6);
|
|
64
|
+
--td-comp-margin-xl: var(--td-size-7);
|
|
65
|
+
--td-comp-margin-xxl: var(--td-size-8);
|
|
66
|
+
--td-comp-margin-xxxl: var(--td-size-10);
|
|
67
|
+
--td-comp-margin-xxxxl: var(--td-size-12);
|
|
68
|
+
}
|
package/styles/themes.css
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
.theme-blue {
|
|
4
|
-
--primary: var(--color-blue-600);
|
|
5
|
-
--primary-foreground: var(--color-blue-50);
|
|
6
|
-
--ring: var(--color-blue-400);
|
|
7
|
-
--sidebar-primary: var(--color-blue-600);
|
|
8
|
-
--sidebar-primary-foreground: var(--color-blue-50);
|
|
9
|
-
--sidebar-ring: var(--color-blue-400);
|
|
10
|
-
--chart-1: var(--color-blue-300);
|
|
11
|
-
--chart-2: var(--color-blue-500);
|
|
12
|
-
--chart-3: var(--color-blue-600);
|
|
13
|
-
--chart-4: var(--color-blue-700);
|
|
14
|
-
--chart-5: var(--color-blue-800);
|
|
15
|
-
}
|
|
16
|
-
.theme-blue.dark {
|
|
17
|
-
--primary: var(--color-blue-500);
|
|
18
|
-
--primary-foreground: var(--color-blue-50);
|
|
19
|
-
--ring: var(--color-blue-900);
|
|
20
|
-
--sidebar-primary: var(--color-blue-500);
|
|
21
|
-
--sidebar-primary-foreground: var(--color-blue-50);
|
|
22
|
-
--sidebar-ring: var(--color-blue-900);
|
|
23
|
-
}
|
|
24
|
-
@media (prefers-color-scheme: dark) {
|
|
25
|
-
.theme-blue {
|
|
26
|
-
--primary: var(--color-blue-500);
|
|
27
|
-
--primary-foreground: var(--color-blue-50);
|
|
28
|
-
--ring: var(--color-blue-900);
|
|
29
|
-
--sidebar-primary: var(--color-blue-500);
|
|
30
|
-
--sidebar-primary-foreground: var(--color-blue-50);
|
|
31
|
-
--sidebar-ring: var(--color-blue-900);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.theme-green {
|
|
36
|
-
--primary: var(--color-lime-600);
|
|
37
|
-
--primary-foreground: var(--color-lime-50);
|
|
38
|
-
--ring: var(--color-lime-400);
|
|
39
|
-
--chart-1: var(--color-green-300);
|
|
40
|
-
--chart-2: var(--color-green-500);
|
|
41
|
-
--chart-3: var(--color-green-600);
|
|
42
|
-
--chart-4: var(--color-green-700);
|
|
43
|
-
--chart-5: var(--color-green-800);
|
|
44
|
-
--sidebar-primary: var(--color-lime-600);
|
|
45
|
-
--sidebar-primary-foreground: var(--color-lime-50);
|
|
46
|
-
--sidebar-ring: var(--color-lime-400);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.theme-green.dark {
|
|
50
|
-
--primary: var(--color-lime-600);
|
|
51
|
-
--primary-foreground: var(--color-lime-50);
|
|
52
|
-
--ring: var(--color-lime-900);
|
|
53
|
-
--sidebar-primary: var(--color-lime-500);
|
|
54
|
-
--sidebar-primary-foreground: var(--color-lime-50);
|
|
55
|
-
--sidebar-ring: var(--color-lime-900);
|
|
56
|
-
}
|
|
57
|
-
@media (prefers-color-scheme: dark) {
|
|
58
|
-
.theme-green {
|
|
59
|
-
--primary: var(--color-lime-500);
|
|
60
|
-
--primary-foreground: var(--color-lime-50);
|
|
61
|
-
--ring: var(--color-lime-900);
|
|
62
|
-
--sidebar-primary: var(--color-lime-500);
|
|
63
|
-
--sidebar-primary-foreground: var(--color-lime-50);
|
|
64
|
-
--sidebar-ring: var(--color-lime-900);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.theme-blue {
|
|
4
|
+
--primary: var(--color-blue-600);
|
|
5
|
+
--primary-foreground: var(--color-blue-50);
|
|
6
|
+
--ring: var(--color-blue-400);
|
|
7
|
+
--sidebar-primary: var(--color-blue-600);
|
|
8
|
+
--sidebar-primary-foreground: var(--color-blue-50);
|
|
9
|
+
--sidebar-ring: var(--color-blue-400);
|
|
10
|
+
--chart-1: var(--color-blue-300);
|
|
11
|
+
--chart-2: var(--color-blue-500);
|
|
12
|
+
--chart-3: var(--color-blue-600);
|
|
13
|
+
--chart-4: var(--color-blue-700);
|
|
14
|
+
--chart-5: var(--color-blue-800);
|
|
15
|
+
}
|
|
16
|
+
.theme-blue.dark {
|
|
17
|
+
--primary: var(--color-blue-500);
|
|
18
|
+
--primary-foreground: var(--color-blue-50);
|
|
19
|
+
--ring: var(--color-blue-900);
|
|
20
|
+
--sidebar-primary: var(--color-blue-500);
|
|
21
|
+
--sidebar-primary-foreground: var(--color-blue-50);
|
|
22
|
+
--sidebar-ring: var(--color-blue-900);
|
|
23
|
+
}
|
|
24
|
+
@media (prefers-color-scheme: dark) {
|
|
25
|
+
.theme-blue {
|
|
26
|
+
--primary: var(--color-blue-500);
|
|
27
|
+
--primary-foreground: var(--color-blue-50);
|
|
28
|
+
--ring: var(--color-blue-900);
|
|
29
|
+
--sidebar-primary: var(--color-blue-500);
|
|
30
|
+
--sidebar-primary-foreground: var(--color-blue-50);
|
|
31
|
+
--sidebar-ring: var(--color-blue-900);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.theme-green {
|
|
36
|
+
--primary: var(--color-lime-600);
|
|
37
|
+
--primary-foreground: var(--color-lime-50);
|
|
38
|
+
--ring: var(--color-lime-400);
|
|
39
|
+
--chart-1: var(--color-green-300);
|
|
40
|
+
--chart-2: var(--color-green-500);
|
|
41
|
+
--chart-3: var(--color-green-600);
|
|
42
|
+
--chart-4: var(--color-green-700);
|
|
43
|
+
--chart-5: var(--color-green-800);
|
|
44
|
+
--sidebar-primary: var(--color-lime-600);
|
|
45
|
+
--sidebar-primary-foreground: var(--color-lime-50);
|
|
46
|
+
--sidebar-ring: var(--color-lime-400);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.theme-green.dark {
|
|
50
|
+
--primary: var(--color-lime-600);
|
|
51
|
+
--primary-foreground: var(--color-lime-50);
|
|
52
|
+
--ring: var(--color-lime-900);
|
|
53
|
+
--sidebar-primary: var(--color-lime-500);
|
|
54
|
+
--sidebar-primary-foreground: var(--color-lime-50);
|
|
55
|
+
--sidebar-ring: var(--color-lime-900);
|
|
56
|
+
}
|
|
57
|
+
@media (prefers-color-scheme: dark) {
|
|
58
|
+
.theme-green {
|
|
59
|
+
--primary: var(--color-lime-500);
|
|
60
|
+
--primary-foreground: var(--color-lime-50);
|
|
61
|
+
--ring: var(--color-lime-900);
|
|
62
|
+
--sidebar-primary: var(--color-lime-500);
|
|
63
|
+
--sidebar-primary-foreground: var(--color-lime-50);
|
|
64
|
+
--sidebar-ring: var(--color-lime-900);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
@import '../_vars.scss';
|
|
2
|
-
|
|
3
|
-
@keyframes t-fade-in {
|
|
4
|
-
from {
|
|
5
|
-
opacity: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
to {
|
|
9
|
-
opacity: 1;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@keyframes t-fade-out {
|
|
14
|
-
from {
|
|
15
|
-
opacity: 1;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
to {
|
|
19
|
-
opacity: 0;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@keyframes t-spin {
|
|
24
|
-
from {
|
|
25
|
-
transform: rotate(0deg);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
to {
|
|
29
|
-
transform: rotate(360deg);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.#{$prefix}-icon-loading {
|
|
34
|
-
animation: t-spin 1s linear infinite;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// 动态生成 keyframes 动画
|
|
38
|
-
@mixin anim-g-attr-change($name, $attr, $from, $to) {
|
|
39
|
-
@keyframes #{$name} {
|
|
40
|
-
from {
|
|
41
|
-
#{$attr}: #{$from};
|
|
42
|
-
}
|
|
43
|
-
to {
|
|
44
|
-
#{$attr}: #{$to};
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@keyframes t-zoom-out {
|
|
50
|
-
from {
|
|
51
|
-
transform: scale(0.2);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
to {
|
|
55
|
-
transform: scale(1);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
1
|
+
@import '../_vars.scss';
|
|
2
|
+
|
|
3
|
+
@keyframes t-fade-in {
|
|
4
|
+
from {
|
|
5
|
+
opacity: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
to {
|
|
9
|
+
opacity: 1;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@keyframes t-fade-out {
|
|
14
|
+
from {
|
|
15
|
+
opacity: 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
to {
|
|
19
|
+
opacity: 0;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes t-spin {
|
|
24
|
+
from {
|
|
25
|
+
transform: rotate(0deg);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
to {
|
|
29
|
+
transform: rotate(360deg);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.#{$prefix}-icon-loading {
|
|
34
|
+
animation: t-spin 1s linear infinite;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// 动态生成 keyframes 动画
|
|
38
|
+
@mixin anim-g-attr-change($name, $attr, $from, $to) {
|
|
39
|
+
@keyframes #{$name} {
|
|
40
|
+
from {
|
|
41
|
+
#{$attr}: #{$from};
|
|
42
|
+
}
|
|
43
|
+
to {
|
|
44
|
+
#{$attr}: #{$to};
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@keyframes t-zoom-out {
|
|
50
|
+
from {
|
|
51
|
+
transform: scale(0.2);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
to {
|
|
55
|
+
transform: scale(1);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@import '../mixins/_text.scss';
|
|
2
|
-
.#{$prefix}-tips {
|
|
3
|
-
font-size: $font-size-s;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
@include tips-text-status(default);
|
|
7
|
-
@include tips-text-status(error);
|
|
8
|
-
@include tips-text-status(warning);
|
|
9
|
-
@include tips-text-status(success);
|
|
1
|
+
@import '../mixins/_text.scss';
|
|
2
|
+
.#{$prefix}-tips {
|
|
3
|
+
font-size: $font-size-s;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@include tips-text-status(default);
|
|
7
|
+
@include tips-text-status(error);
|
|
8
|
+
@include tips-text-status(warning);
|
|
9
|
+
@include tips-text-status(success);
|
package/tab/TabBar.tsx
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import React, { useEffect, useState, CSSProperties, useRef } from "react";
|
|
2
|
+
import classNames from "classnames";
|
|
3
|
+
import useConfig from "../hooks/useConfig";
|
|
4
|
+
import useMutationObserver from "../hooks/useMutationObserver";
|
|
5
|
+
import useResizeObserver from "../hooks/useResizeObserve";
|
|
6
|
+
interface TabBarProps {
|
|
7
|
+
tabPosition: string;
|
|
8
|
+
activeId: string | number;
|
|
9
|
+
containerRef: React.MutableRefObject<HTMLDivElement>;
|
|
10
|
+
navsWrapRef: React.MutableRefObject<HTMLDivElement>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const TabBar: React.FC<TabBarProps> = (props) => {
|
|
14
|
+
const { tabPosition, activeId, containerRef, navsWrapRef } = props;
|
|
15
|
+
const { classPrefix } = useConfig();
|
|
16
|
+
const [barStyle, setBarStyle] = useState<CSSProperties>({});
|
|
17
|
+
const tabsClassPrefix = `${classPrefix}-tabs`;
|
|
18
|
+
const currentActiveIdRef = useRef(activeId);
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
currentActiveIdRef.current = activeId;
|
|
21
|
+
}, [activeId]);
|
|
22
|
+
|
|
23
|
+
const computeStyle = React.useCallback(() => {
|
|
24
|
+
const isHorizontal = ["bottom", "top"].includes(tabPosition);
|
|
25
|
+
const transformPosition = isHorizontal ? "translateX" : "translateY";
|
|
26
|
+
const itemProp = isHorizontal ? "width" : "height";
|
|
27
|
+
const barBorderProp = isHorizontal ? "width" : "height";
|
|
28
|
+
|
|
29
|
+
let offset = 0;
|
|
30
|
+
|
|
31
|
+
if (containerRef.current) {
|
|
32
|
+
const itemsRef = containerRef.current?.querySelectorAll<HTMLElement>(`.${tabsClassPrefix}__nav-item`);
|
|
33
|
+
if (itemsRef.length - 1 >= (currentActiveIdRef.current as number)) {
|
|
34
|
+
itemsRef.forEach((item, itemIndex) => {
|
|
35
|
+
if (itemIndex < (currentActiveIdRef.current as number)) {
|
|
36
|
+
offset += Number(getComputedStyle(item)[itemProp].replace("px", ""));
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
const computedItem = itemsRef[currentActiveIdRef.current];
|
|
40
|
+
if (!computedItem) {
|
|
41
|
+
setBarStyle({ transform: `${transformPosition}(${0}px)`, [barBorderProp]: 0 });
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
const itemPropValue = getComputedStyle(computedItem)[itemProp];
|
|
45
|
+
setBarStyle({ transform: `${transformPosition}(${offset}px)`, [barBorderProp]: itemPropValue || 0 });
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}, [currentActiveIdRef, containerRef, tabPosition, tabsClassPrefix]);
|
|
49
|
+
|
|
50
|
+
useEffect(() => {
|
|
51
|
+
if (containerRef.current) {
|
|
52
|
+
setTimeout(() => computeStyle());
|
|
53
|
+
}
|
|
54
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
55
|
+
}, [tabPosition, activeId, containerRef.current]);
|
|
56
|
+
|
|
57
|
+
const handleMutationObserver = React.useCallback(
|
|
58
|
+
(mutations: MutationRecord[]) => {
|
|
59
|
+
mutations.forEach((mutation) => {
|
|
60
|
+
if (mutation.type === "characterData") {
|
|
61
|
+
computeStyle();
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
},
|
|
65
|
+
[computeStyle]
|
|
66
|
+
);
|
|
67
|
+
|
|
68
|
+
useMutationObserver(containerRef.current, handleMutationObserver);
|
|
69
|
+
|
|
70
|
+
useResizeObserver(navsWrapRef, computeStyle);
|
|
71
|
+
|
|
72
|
+
return (
|
|
73
|
+
<div
|
|
74
|
+
className={classNames({
|
|
75
|
+
[`${tabsClassPrefix}__bar`]: true,
|
|
76
|
+
[`${classPrefix}-is-${tabPosition}`]: true
|
|
77
|
+
})}
|
|
78
|
+
style={barStyle}
|
|
79
|
+
></div>
|
|
80
|
+
);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
TabBar.displayName = "TabBar";
|
|
84
|
+
|
|
85
|
+
export default TabBar;
|
package/tab/TabNav.tsx
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import React, { useCallback, useEffect, useRef, useState, WheelEvent } from "react";
|
|
2
|
+
import classNames from "classnames";
|
|
3
|
+
import noop from "../utils/noop";
|
|
4
|
+
import { useTabClass } from "./useTabClass";
|
|
5
|
+
import TabNavItem from "./TabNavItem";
|
|
6
|
+
import TabBar from "./TabBar";
|
|
7
|
+
import { omit } from "lodash-es";
|
|
8
|
+
import { TdTabsProps, TdTabPanelProps, TabValue } from "./type";
|
|
9
|
+
export interface TabNavProps extends TdTabsProps {
|
|
10
|
+
itemList: TdTabPanelProps[];
|
|
11
|
+
activeValue: TabValue;
|
|
12
|
+
size?: "medium" | "large";
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
const TabNav: React.FC<TabNavProps> = (props) => {
|
|
16
|
+
const {
|
|
17
|
+
placement = "top",
|
|
18
|
+
itemList = [],
|
|
19
|
+
theme,
|
|
20
|
+
addable,
|
|
21
|
+
onAdd,
|
|
22
|
+
scrollPosition = "auto",
|
|
23
|
+
size = "medium",
|
|
24
|
+
disabled = false,
|
|
25
|
+
onRemove = noop,
|
|
26
|
+
onChange = noop,
|
|
27
|
+
activeValue,
|
|
28
|
+
children,
|
|
29
|
+
action
|
|
30
|
+
} = props;
|
|
31
|
+
const { tdTabsClassGenerator, tdClassGenerator, tdSizeClassGenerator } = useTabClass();
|
|
32
|
+
const navsContainerRef = useRef<HTMLDivElement>(null);
|
|
33
|
+
const navsWrapRef = useRef<HTMLDivElement>(null);
|
|
34
|
+
const getIndex = useCallback(
|
|
35
|
+
(value) => {
|
|
36
|
+
const index = itemList.findIndex((item) => item.value === value);
|
|
37
|
+
return index > -1 ? index : -1;
|
|
38
|
+
},
|
|
39
|
+
[itemList]
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
const activeIndex = getIndex(activeValue);
|
|
43
|
+
const [activeTab, setActiveTab] = useState<HTMLElement>(null);
|
|
44
|
+
const TabBarCom = (
|
|
45
|
+
<TabBar tabPosition={placement} activeId={activeIndex} containerRef={navsWrapRef} navsWrapRef={navsWrapRef} />
|
|
46
|
+
);
|
|
47
|
+
const handleTabItemClick = (clickItem) => {
|
|
48
|
+
if (activeValue !== clickItem.value) {
|
|
49
|
+
onChange(clickItem.value);
|
|
50
|
+
}
|
|
51
|
+
clickItem?.onClick?.(clickItem.value);
|
|
52
|
+
};
|
|
53
|
+
const handleTabItemRemove = (removeItem) => {
|
|
54
|
+
const { value: removeValue, index: removeIndex } = removeItem;
|
|
55
|
+
if (removeValue === activeValue) {
|
|
56
|
+
onChange(removeIndex === 0 ? itemList[removeIndex + 1]?.value : itemList[removeIndex - 1].value);
|
|
57
|
+
}
|
|
58
|
+
onRemove(removeItem);
|
|
59
|
+
};
|
|
60
|
+
const handleTabAdd = (e) => {
|
|
61
|
+
onAdd({ e });
|
|
62
|
+
};
|
|
63
|
+
return (
|
|
64
|
+
<div ref={navsContainerRef} className={classNames(tdTabsClassGenerator("nav"))} style={{ minHeight: 48 }}>
|
|
65
|
+
<div className={classNames(tdTabsClassGenerator("nav-container"), addable ? tdClassGenerator("is-addable") : "")}>
|
|
66
|
+
<div
|
|
67
|
+
className={classNames(
|
|
68
|
+
tdTabsClassGenerator("nav-wrap"),
|
|
69
|
+
["left", "right"].includes(placement) ? tdClassGenerator("is-vertical") : "",
|
|
70
|
+
tdClassGenerator("is-smooth")
|
|
71
|
+
)}
|
|
72
|
+
ref={navsWrapRef}
|
|
73
|
+
>
|
|
74
|
+
{TabBarCom}
|
|
75
|
+
{itemList.map((v, index) => (
|
|
76
|
+
<TabNavItem
|
|
77
|
+
{...omit(props, ["className", "style"])}
|
|
78
|
+
{...v}
|
|
79
|
+
onRemove={v.onRemove}
|
|
80
|
+
key={v.value}
|
|
81
|
+
label={v.label}
|
|
82
|
+
isActive={activeValue === v.value}
|
|
83
|
+
theme={theme}
|
|
84
|
+
placement={placement}
|
|
85
|
+
index={index}
|
|
86
|
+
disabled={disabled || v.disabled}
|
|
87
|
+
onClick={() => handleTabItemClick(v)}
|
|
88
|
+
onTabRemove={handleTabItemRemove}
|
|
89
|
+
innerRef={(ref) => {
|
|
90
|
+
if (activeValue === v.value) {
|
|
91
|
+
setActiveTab(ref);
|
|
92
|
+
}
|
|
93
|
+
}}
|
|
94
|
+
/>
|
|
95
|
+
))}
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
98
|
+
</div>
|
|
99
|
+
);
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
TabNav.displayName = "TabNav";
|
|
103
|
+
export default TabNav;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import React, { MouseEvent } from "react";
|
|
2
|
+
import classNames from "classnames";
|
|
3
|
+
import { IconClose as TdCloseIcon } from "@tendaui/icons";
|
|
4
|
+
|
|
5
|
+
import noop from "../utils/noop";
|
|
6
|
+
import { useTabClass } from "./useTabClass";
|
|
7
|
+
import useGlobalIcon from "../hooks/useGlobalIcon";
|
|
8
|
+
|
|
9
|
+
import type { StyledProps } from "../common";
|
|
10
|
+
import type { TdTabPanelProps, TdTabsProps } from "./type";
|
|
11
|
+
|
|
12
|
+
export interface TabNavItemProps extends TdTabPanelProps, StyledProps {
|
|
13
|
+
// 当前 item 是否处于激活态
|
|
14
|
+
isActive: boolean;
|
|
15
|
+
// 点击事件
|
|
16
|
+
onClick: (e: MouseEvent) => void;
|
|
17
|
+
theme: "normal" | "card";
|
|
18
|
+
placement: string;
|
|
19
|
+
size?: "medium" | "large";
|
|
20
|
+
index: number;
|
|
21
|
+
innerRef(ref: HTMLElement): void;
|
|
22
|
+
onTabRemove: TdTabsProps["onRemove"];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const TabNavItem: React.FC<TabNavItemProps> = (props) => {
|
|
26
|
+
const {
|
|
27
|
+
label,
|
|
28
|
+
removable,
|
|
29
|
+
isActive,
|
|
30
|
+
onClick = noop,
|
|
31
|
+
placement,
|
|
32
|
+
onRemove = noop,
|
|
33
|
+
value,
|
|
34
|
+
size = "medium",
|
|
35
|
+
disabled = false,
|
|
36
|
+
index,
|
|
37
|
+
onTabRemove = noop,
|
|
38
|
+
innerRef
|
|
39
|
+
} = props;
|
|
40
|
+
|
|
41
|
+
const { CloseIcon } = useGlobalIcon({ CloseIcon: TdCloseIcon });
|
|
42
|
+
|
|
43
|
+
// 样式变量和常量定义
|
|
44
|
+
const { tdTabsClassGenerator, tdClassGenerator, tdSizeClassGenerator } = useTabClass();
|
|
45
|
+
|
|
46
|
+
// 斜八度动画
|
|
47
|
+
return (
|
|
48
|
+
<div
|
|
49
|
+
ref={innerRef}
|
|
50
|
+
onClick={disabled ? noop : onClick}
|
|
51
|
+
className={classNames(
|
|
52
|
+
tdTabsClassGenerator("nav-item"),
|
|
53
|
+
tdSizeClassGenerator(size),
|
|
54
|
+
isActive ? tdClassGenerator("is-active") : "",
|
|
55
|
+
tdClassGenerator(`is-${placement}`),
|
|
56
|
+
disabled ? tdClassGenerator("is-disabled") : "",
|
|
57
|
+
props.className
|
|
58
|
+
)}
|
|
59
|
+
>
|
|
60
|
+
{/* 根据新的 dom 结构和样式进行改动,卡片类型情况下不需要 nav-item-wrapper 这个 div */}
|
|
61
|
+
<div className={classNames(tdTabsClassGenerator("nav-item-wrapper"))}>
|
|
62
|
+
<span className={classNames(tdTabsClassGenerator("nav-item-text-wrapper"))}>{label}</span>
|
|
63
|
+
</div>
|
|
64
|
+
{removable && !disabled ? (
|
|
65
|
+
<span
|
|
66
|
+
className={classNames("remove-btn")}
|
|
67
|
+
onClick={(e) => {
|
|
68
|
+
e.stopPropagation();
|
|
69
|
+
onRemove({ value, e });
|
|
70
|
+
onTabRemove({ value, e, index });
|
|
71
|
+
}}
|
|
72
|
+
>
|
|
73
|
+
<CloseIcon />
|
|
74
|
+
</span>
|
|
75
|
+
) : null}
|
|
76
|
+
</div>
|
|
77
|
+
);
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export default TabNavItem;
|