@para-ui/core 3.0.35 → 3.0.36
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/CollapseLayout/index.d.ts +2 -0
- package/CollapseLayout/index.js +8 -4
- package/ComboSelect/index.js +1 -1
- package/Form/index.js +2 -2
- package/FormItem/index.js +2 -2
- package/README.md +853 -843
- package/Styles/form.scss +5 -5
- package/Styles/index.scss +37 -37
- package/Styles/normalize.scss +348 -348
- package/Styles/scrollbar.scss +223 -223
- package/Styles/theme.scss +74 -74
- package/Table/index.js +64 -47
- package/Table/interface.d.ts +19 -2
- package/Transfer/index.js +1 -1
- package/Tree/index.js +2 -2
- package/_verture/{index-c50e7727.js → index-257f53f9.js} +15 -0
- package/_verture/{index-291a16a8.js → index-c62ad493.js} +0 -0
- package/index.d.ts +2 -4
- package/index.js +3 -4
- package/package.json +168 -168
- package/umd/ButtonGroup.js +2 -2
- package/umd/CheckboxGroup.js +2 -2
- package/umd/CollapseLayout.js +1 -1
- package/umd/ComboSelect.js +3 -3
- package/umd/Form.js +3 -3
- package/umd/FormItem.js +3 -3
- package/umd/Pagination.js +1 -1
- package/umd/RadioGroup.js +2 -2
- package/umd/Select.js +1 -1
- package/umd/SelectInput.js +1 -1
- package/umd/Selector.js +1 -1
- package/umd/SelectorPicker.js +3 -3
- package/umd/Table.js +3 -3
- package/umd/Transfer.js +1 -1
- package/umd/Tree.js +1 -1
- package/Test/index.d.ts +0 -3
- package/Test/index.js +0 -9
- package/umd/Test.js +0 -1
package/Styles/form.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
.#{$prefixCls}-form {
|
|
2
|
-
.#{$prefixCls}-helper-text {
|
|
3
|
-
min-height: 20px;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
1
|
+
.#{$prefixCls}-form {
|
|
2
|
+
.#{$prefixCls}-helper-text {
|
|
3
|
+
min-height: 20px;
|
|
4
|
+
}
|
|
5
|
+
}
|
package/Styles/index.scss
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
@import "normalize";
|
|
2
|
-
@import "theme";
|
|
3
|
-
@import "scrollbar";
|
|
4
|
-
@import "form";
|
|
5
|
-
|
|
6
|
-
* {
|
|
7
|
-
font-family: $font-family;
|
|
8
|
-
margin: 0;
|
|
9
|
-
padding: 0;
|
|
10
|
-
box-sizing: border-box;
|
|
11
|
-
outline: none;
|
|
12
|
-
-webkit-tap-highlight-color: transparent;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
html, body {
|
|
16
|
-
width: 100%;
|
|
17
|
-
height: 100%;
|
|
18
|
-
overflow: hidden;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
ol, ul {
|
|
22
|
-
list-style: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
a,
|
|
26
|
-
h1,
|
|
27
|
-
h2,
|
|
28
|
-
h3,
|
|
29
|
-
h4,
|
|
30
|
-
h5,
|
|
31
|
-
h6,
|
|
32
|
-
input,
|
|
33
|
-
select,
|
|
34
|
-
button,
|
|
35
|
-
textarea {
|
|
36
|
-
outline: none;
|
|
37
|
-
}
|
|
1
|
+
@import "normalize";
|
|
2
|
+
@import "theme";
|
|
3
|
+
@import "scrollbar";
|
|
4
|
+
@import "form";
|
|
5
|
+
|
|
6
|
+
* {
|
|
7
|
+
font-family: $font-family;
|
|
8
|
+
margin: 0;
|
|
9
|
+
padding: 0;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
outline: none;
|
|
12
|
+
-webkit-tap-highlight-color: transparent;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
html, body {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
ol, ul {
|
|
22
|
+
list-style: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
a,
|
|
26
|
+
h1,
|
|
27
|
+
h2,
|
|
28
|
+
h3,
|
|
29
|
+
h4,
|
|
30
|
+
h5,
|
|
31
|
+
h6,
|
|
32
|
+
input,
|
|
33
|
+
select,
|
|
34
|
+
button,
|
|
35
|
+
textarea {
|
|
36
|
+
outline: none;
|
|
37
|
+
}
|