tntd 2.5.9 → 2.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/input/input.less +1 -1
- package/es/tntd-cascader/rc-cascader/hooks/useSearchConfig.js +1 -1
- package/es/tntd-cascader/rc-cascader/hooks/useSearchConfig.js.map +1 -1
- package/es/tntd-cascader/rc-cascader/hooks/useSearchOptions.js +1 -1
- package/es/tntd-cascader/rc-cascader/hooks/useSearchOptions.js.map +1 -1
- package/es/tntd-select/index.js +9 -0
- package/es/tntd-select/index.js.map +1 -1
- package/lib/input/input.less +1 -1
- package/lib/tntd-cascader/rc-cascader/hooks/useSearchConfig.js +1 -1
- package/lib/tntd-cascader/rc-cascader/hooks/useSearchConfig.js.map +1 -1
- package/lib/tntd-cascader/rc-cascader/hooks/useSearchOptions.js +1 -1
- package/lib/tntd-cascader/rc-cascader/hooks/useSearchOptions.js.map +1 -1
- package/lib/tntd-form/CustomForm/components/Item.js +50 -0
- package/lib/tntd-form/CustomForm/components/ItemComp.js +169 -0
- package/lib/tntd-form/CustomForm/components/List.js +96 -0
- package/lib/tntd-form/CustomForm/index.js +66 -0
- package/lib/tntd-form/CustomForm/interface.js +5 -0
- package/lib/tntd-form/CustomForm/store.js +10 -0
- package/lib/tntd-form/CustomForm/utils.js +235 -0
- package/lib/tntd-select/index.d.ts.map +1 -1
- package/lib/tntd-select/index.js +9 -0
- package/lib/tntd-select/index.js.map +1 -1
- package/package.json +1 -1
- package/es/tag/tag.less +0 -61
- package/lib/tag/tag.less +0 -61
package/es/tag/tag.less
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
@tag-prefix-cls: ~'@{ant-prefix}-tag';
|
|
2
|
-
|
|
3
|
-
.@{tag-prefix-cls} {
|
|
4
|
-
border-color: transparent;
|
|
5
|
-
line-height: 22px;
|
|
6
|
-
min-width: 44px;
|
|
7
|
-
padding: 0 8px;
|
|
8
|
-
border-radius: 1px;
|
|
9
|
-
text-align: center;
|
|
10
|
-
|
|
11
|
-
&.@{tag-prefix-cls}-red {
|
|
12
|
-
border-color: inherit;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&.@{tag-prefix-cls}-checkable {
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&.@{tag-prefix-cls}-rounded {
|
|
20
|
-
padding: 0 12px;
|
|
21
|
-
border-radius: 12px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.@{tag-prefix-cls}-dot {
|
|
25
|
-
display: inline-flex;
|
|
26
|
-
align-items: center;
|
|
27
|
-
background-color: transparent;
|
|
28
|
-
padding: 0;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.@{tag-prefix-cls}-icon {
|
|
32
|
-
display: inline-flex;
|
|
33
|
-
align-items: center;
|
|
34
|
-
margin-right: 4px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.@{tag-prefix-cls}-dot-symbol {
|
|
38
|
-
content: '';
|
|
39
|
-
display: inline-block;
|
|
40
|
-
width: 6px;
|
|
41
|
-
height: 6px;
|
|
42
|
-
border-radius: 50%;
|
|
43
|
-
margin-right: 8px;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.@{iconfont-css-prefix}-close {
|
|
47
|
-
margin-left: 4px;
|
|
48
|
-
color: #8b919e;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.make-border-inherit-classes(@i: length(@preset-colors)) when (@i > 0) {
|
|
52
|
-
.make-border-inherit-classes(@i - 1);
|
|
53
|
-
@color: extract(@preset-colors, @i);
|
|
54
|
-
|
|
55
|
-
&-@{color} {
|
|
56
|
-
border-color: inherit;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.make-border-inherit-classes();
|
|
61
|
-
}
|
package/lib/tag/tag.less
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
@tag-prefix-cls: ~'@{ant-prefix}-tag';
|
|
2
|
-
|
|
3
|
-
.@{tag-prefix-cls} {
|
|
4
|
-
border-color: transparent;
|
|
5
|
-
line-height: 22px;
|
|
6
|
-
min-width: 44px;
|
|
7
|
-
padding: 0 8px;
|
|
8
|
-
border-radius: 1px;
|
|
9
|
-
text-align: center;
|
|
10
|
-
|
|
11
|
-
&.@{tag-prefix-cls}-red {
|
|
12
|
-
border-color: inherit;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&.@{tag-prefix-cls}-checkable {
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&.@{tag-prefix-cls}-rounded {
|
|
20
|
-
padding: 0 12px;
|
|
21
|
-
border-radius: 12px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.@{tag-prefix-cls}-dot {
|
|
25
|
-
display: inline-flex;
|
|
26
|
-
align-items: center;
|
|
27
|
-
background-color: transparent;
|
|
28
|
-
padding: 0;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.@{tag-prefix-cls}-icon {
|
|
32
|
-
display: inline-flex;
|
|
33
|
-
align-items: center;
|
|
34
|
-
margin-right: 4px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.@{tag-prefix-cls}-dot-symbol {
|
|
38
|
-
content: '';
|
|
39
|
-
display: inline-block;
|
|
40
|
-
width: 6px;
|
|
41
|
-
height: 6px;
|
|
42
|
-
border-radius: 50%;
|
|
43
|
-
margin-right: 8px;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.@{iconfont-css-prefix}-close {
|
|
47
|
-
margin-left: 4px;
|
|
48
|
-
color: #8b919e;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.make-border-inherit-classes(@i: length(@preset-colors)) when (@i > 0) {
|
|
52
|
-
.make-border-inherit-classes(@i - 1);
|
|
53
|
-
@color: extract(@preset-colors, @i);
|
|
54
|
-
|
|
55
|
-
&-@{color} {
|
|
56
|
-
border-color: inherit;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.make-border-inherit-classes();
|
|
61
|
-
}
|