@qn-pandora/pandora-component 4.1.7 → 4.2.0
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/CHANGELOG.json +7 -10
- package/CHANGELOG.md +5 -5
- package/es/components/Drawer/index.d.ts +20 -1
- package/es/components/Drawer/index.js +53 -9
- package/es/components/Drawer/style.css +8 -0
- package/es/components/Drawer/style.less +9 -0
- package/es/components/RadioGroup/style.css +7 -0
- package/es/components/RadioGroup/style.less +9 -0
- package/es/components/Table/ColumnSetting/index.d.ts +16 -0
- package/es/components/Table/ColumnSetting/index.js +91 -0
- package/es/components/Table/ColumnSetting/style.css +47 -0
- package/es/components/Table/ColumnSetting/style.less +46 -0
- package/es/components/Table/index.d.ts +27 -2
- package/es/components/Table/index.js +127 -3
- package/es/components/Table/style.css +4 -0
- package/es/components/Table/style.less +7 -0
- package/es/constants/language/table/en.js +4 -1
- package/es/constants/language/table/type.d.ts +3 -0
- package/es/constants/language/table/zh.js +4 -1
- package/es/index.css +2891 -2825
- package/es/index.less +8 -7
- package/es/style/theme.less +5 -0
- package/lib/components/Drawer/index.d.ts +20 -1
- package/lib/components/Drawer/index.js +53 -9
- package/lib/components/Drawer/style.css +8 -0
- package/lib/components/Drawer/style.less +9 -0
- package/lib/components/RadioGroup/style.css +7 -0
- package/lib/components/RadioGroup/style.less +9 -0
- package/lib/components/Table/ColumnSetting/index.d.ts +16 -0
- package/lib/components/Table/ColumnSetting/index.js +104 -0
- package/lib/components/Table/ColumnSetting/style.css +47 -0
- package/lib/components/Table/ColumnSetting/style.less +46 -0
- package/lib/components/Table/index.d.ts +27 -2
- package/lib/components/Table/index.js +126 -2
- package/lib/components/Table/style.css +4 -0
- package/lib/components/Table/style.less +7 -0
- package/lib/constants/language/table/en.js +4 -1
- package/lib/constants/language/table/type.d.ts +3 -0
- package/lib/constants/language/table/zh.js +4 -1
- package/lib/index.css +2293 -2227
- package/lib/index.less +3 -2
- package/lib/style/theme.less +5 -0
- package/package.json +6 -5
package/lib/index.less
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@import './style/mixin.less';
|
2
2
|
@import './style/theme.less';
|
3
|
-
@import './components/Breadcrumb/style.less';
|
4
3
|
@import './components/AutoComplete/style.less';
|
5
|
-
@import './components/
|
4
|
+
@import './components/Breadcrumb/style.less';
|
6
5
|
@import './components/Button/style.less';
|
6
|
+
@import './components/Card/style.less';
|
7
7
|
@import './components/CheckTransformList/style.less';
|
8
8
|
@import './components/Checkbox/style.less';
|
9
9
|
@import './components/CheckboxList/style.less';
|
@@ -42,6 +42,7 @@
|
|
42
42
|
@import './components/OptionList/OptionItem/style.less';
|
43
43
|
@import './components/OptionList/PopoverOptionList/style.less';
|
44
44
|
@import './components/Steps/ControlButton/style.less';
|
45
|
+
@import './components/Table/ColumnSetting/style.less';
|
45
46
|
@import './components/Table/ColumnTag/style.less';
|
46
47
|
@import './components/TagList/Tag/style.less';
|
47
48
|
@import './components/TagList/TagSwitch/style.less';
|
package/lib/style/theme.less
CHANGED
@@ -72,6 +72,7 @@
|
|
72
72
|
@font-color-6: #666;
|
73
73
|
@font-color-9: #999;
|
74
74
|
@font-color-7: #333;
|
75
|
+
@font-color-8: #8c8c8c;
|
75
76
|
@secondary-font-color: #c1c7d0; // phoenix
|
76
77
|
@disabled-text-color: #9eaec5; // pandora-visualization pheonix
|
77
78
|
@log-font-family: 'Droid Sans Mono', 'Consolas', 'Monaco', 'Courier New',
|
@@ -394,7 +395,11 @@
|
|
394
395
|
@agent-box-shadow-color: rgba(53, 53, 53, 0.07);
|
395
396
|
@agent-cursor-color: #282828;
|
396
397
|
@agent-spl-background-color: #edeff2;
|
398
|
+
@agent-example-desc-color: #595959;
|
397
399
|
@agent-input-border-color: #e9e9e9;
|
398
400
|
@agent-border-color: #e8e8e8;
|
399
401
|
@background-color-fa: #fafafa;
|
400
402
|
@background-color-f5: #f5f5f5;
|
403
|
+
@background-color-f4: #f4f5f6;
|
404
|
+
@background-linear-color: rgba(244, 245, 246, 0);
|
405
|
+
@background-color-e2: #e2e4e6;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@qn-pandora/pandora-component",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.2.0",
|
4
4
|
"description": "基础组件",
|
5
5
|
"author": "pandora <pandora@qiniu.com>",
|
6
6
|
"homepage": "https://github.com/qbox/phoenix#readme",
|
@@ -43,7 +43,7 @@
|
|
43
43
|
"react": "^16.8.6"
|
44
44
|
},
|
45
45
|
"devDependencies": {
|
46
|
-
"@qn-pandora/pandora-tools": "^2.0.
|
46
|
+
"@qn-pandora/pandora-tools": "^2.0.15",
|
47
47
|
"@types/classnames": "^2.2.7",
|
48
48
|
"@types/react": "^16.14.5",
|
49
49
|
"@types/react-measure": "^2.0.4",
|
@@ -60,14 +60,14 @@
|
|
60
60
|
"mobx-react": "5.4.4",
|
61
61
|
"react": "^16.8.6",
|
62
62
|
"typescript": "~3.8.0",
|
63
|
-
"@types/crypto-js": "~4.1.1",
|
63
|
+
"@types/crypto-js": "~4.1.1",
|
64
64
|
"@types/uuid": "^3.4.5"
|
65
65
|
},
|
66
66
|
"dependencies": {
|
67
67
|
"@ant-design/compatible": "1.0.8",
|
68
68
|
"@ant-design/icons": "4.7.0",
|
69
|
-
"@qn-pandora/pandora-component-icons": "^3.
|
70
|
-
"@qn-pandora/app-sdk": "^3.
|
69
|
+
"@qn-pandora/pandora-component-icons": "^3.2.0",
|
70
|
+
"@qn-pandora/app-sdk": "^3.2.0",
|
71
71
|
"flat": "^5.0.0",
|
72
72
|
"antd-mobile": "2.3.3",
|
73
73
|
"css": "3.0.0",
|
@@ -76,6 +76,7 @@
|
|
76
76
|
"prop-types": "^15.7.2",
|
77
77
|
"react-measure": "^2.5.2",
|
78
78
|
"resumablejs": "^1.1.0",
|
79
|
+
"screenfull": "^4.2.1",
|
79
80
|
"crypto-js": "~4.1.1",
|
80
81
|
"uuid": "^3.3.3"
|
81
82
|
}
|