@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.
Files changed (43) hide show
  1. package/CHANGELOG.json +7 -10
  2. package/CHANGELOG.md +5 -5
  3. package/es/components/Drawer/index.d.ts +20 -1
  4. package/es/components/Drawer/index.js +53 -9
  5. package/es/components/Drawer/style.css +8 -0
  6. package/es/components/Drawer/style.less +9 -0
  7. package/es/components/RadioGroup/style.css +7 -0
  8. package/es/components/RadioGroup/style.less +9 -0
  9. package/es/components/Table/ColumnSetting/index.d.ts +16 -0
  10. package/es/components/Table/ColumnSetting/index.js +91 -0
  11. package/es/components/Table/ColumnSetting/style.css +47 -0
  12. package/es/components/Table/ColumnSetting/style.less +46 -0
  13. package/es/components/Table/index.d.ts +27 -2
  14. package/es/components/Table/index.js +127 -3
  15. package/es/components/Table/style.css +4 -0
  16. package/es/components/Table/style.less +7 -0
  17. package/es/constants/language/table/en.js +4 -1
  18. package/es/constants/language/table/type.d.ts +3 -0
  19. package/es/constants/language/table/zh.js +4 -1
  20. package/es/index.css +2891 -2825
  21. package/es/index.less +8 -7
  22. package/es/style/theme.less +5 -0
  23. package/lib/components/Drawer/index.d.ts +20 -1
  24. package/lib/components/Drawer/index.js +53 -9
  25. package/lib/components/Drawer/style.css +8 -0
  26. package/lib/components/Drawer/style.less +9 -0
  27. package/lib/components/RadioGroup/style.css +7 -0
  28. package/lib/components/RadioGroup/style.less +9 -0
  29. package/lib/components/Table/ColumnSetting/index.d.ts +16 -0
  30. package/lib/components/Table/ColumnSetting/index.js +104 -0
  31. package/lib/components/Table/ColumnSetting/style.css +47 -0
  32. package/lib/components/Table/ColumnSetting/style.less +46 -0
  33. package/lib/components/Table/index.d.ts +27 -2
  34. package/lib/components/Table/index.js +126 -2
  35. package/lib/components/Table/style.css +4 -0
  36. package/lib/components/Table/style.less +7 -0
  37. package/lib/constants/language/table/en.js +4 -1
  38. package/lib/constants/language/table/type.d.ts +3 -0
  39. package/lib/constants/language/table/zh.js +4 -1
  40. package/lib/index.css +2293 -2227
  41. package/lib/index.less +3 -2
  42. package/lib/style/theme.less +5 -0
  43. 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/Card/style.less';
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';
@@ -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.1.7",
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.16",
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.1.7",
70
- "@qn-pandora/app-sdk": "^3.1.7",
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
  }