@arco-themes/react-cecloud-tds-design 0.0.1

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 (75) hide show
  1. package/README.md +84 -0
  2. package/component.less +33 -0
  3. package/components/Alert/index.css +1 -0
  4. package/components/Alert/index.less +7 -0
  5. package/components/AutoComplete/index.css +0 -0
  6. package/components/AutoComplete/index.less +3 -0
  7. package/components/Button/index.css +1 -0
  8. package/components/Button/index.less +9 -0
  9. package/components/Cascader/index.css +1 -0
  10. package/components/Cascader/index.less +5 -0
  11. package/components/Checkbox/index.css +1 -0
  12. package/components/Checkbox/index.less +15 -0
  13. package/components/DatePicker/index.css +1 -0
  14. package/components/DatePicker/index.less +41 -0
  15. package/components/Descriptions/index.css +1 -0
  16. package/components/Descriptions/index.less +32 -0
  17. package/components/Drawer/index.css +1 -0
  18. package/components/Drawer/index.less +15 -0
  19. package/components/Empty/index.css +1 -0
  20. package/components/Empty/index.less +13 -0
  21. package/components/Form/index.css +1 -0
  22. package/components/Form/index.less +67 -0
  23. package/components/Input/index.css +1 -0
  24. package/components/Input/index.less +51 -0
  25. package/components/InputNumber/index.css +1 -0
  26. package/components/InputNumber/index.less +49 -0
  27. package/components/InputTag/index.css +1 -0
  28. package/components/InputTag/index.less +10 -0
  29. package/components/Link/index.css +1 -0
  30. package/components/Link/index.less +9 -0
  31. package/components/Menu/index.css +1 -0
  32. package/components/Menu/index.less +59 -0
  33. package/components/Message/index.css +1 -0
  34. package/components/Message/index.less +10 -0
  35. package/components/Modal/index.css +1 -0
  36. package/components/Modal/index.less +39 -0
  37. package/components/Pagination/index.css +1 -0
  38. package/components/Pagination/index.less +17 -0
  39. package/components/Progress/index.css +1 -0
  40. package/components/Progress/index.less +11 -0
  41. package/components/Radio/index.css +1 -0
  42. package/components/Radio/index.less +82 -0
  43. package/components/Select/index.css +0 -0
  44. package/components/Select/index.less +7 -0
  45. package/components/Slider/index.css +1 -0
  46. package/components/Slider/index.less +13 -0
  47. package/components/Spin/index.css +1 -0
  48. package/components/Spin/index.less +6 -0
  49. package/components/Switch/index.css +1 -0
  50. package/components/Switch/index.less +14 -0
  51. package/components/Table/index.css +1 -0
  52. package/components/Table/index.less +184 -0
  53. package/components/Tabs/index.css +1 -0
  54. package/components/Tabs/index.less +189 -0
  55. package/components/TimePicker/index.css +1 -0
  56. package/components/TimePicker/index.less +5 -0
  57. package/components/Tooltip/index.css +1 -0
  58. package/components/Tooltip/index.less +5 -0
  59. package/components/Transfer/index.css +1 -0
  60. package/components/Transfer/index.less +22 -0
  61. package/components/Tree/index.css +1 -0
  62. package/components/Tree/index.less +36 -0
  63. package/components/TreeSelect/index.css +1 -0
  64. package/components/TreeSelect/index.less +7 -0
  65. package/components/Upload/index.css +1 -0
  66. package/components/Upload/index.less +50 -0
  67. package/config.d.ts +5 -0
  68. package/config.js +6 -0
  69. package/css/arco.css +6 -0
  70. package/index.less +12 -0
  71. package/package.json +19 -0
  72. package/theme.css +637 -0
  73. package/theme.less +6542 -0
  74. package/tokens.less +4182 -0
  75. package/variables.less +2235 -0
@@ -0,0 +1,50 @@
1
+ .@{upload-prefix-cls} {
2
+ // icon颜色
3
+ &-list-item-done .arco-upload-list-file-icon, &-list-file-icon {
4
+ color: var(--color-text-3);
5
+ }
6
+
7
+ // 未开始
8
+ &-list-item-init{
9
+ // 文字颜色
10
+ .arco-upload-list-item-text-name-text{
11
+ color: var(--color-text-2);
12
+ }
13
+ // 背景色
14
+ .arco-upload-list-item-text{
15
+ background-color: rgb(var(--primary-1));
16
+ }
17
+ }
18
+
19
+ // 上传中
20
+ &-list-item-uploading{
21
+ .arco-upload-list-item-text-name-link{
22
+ color: rgb(var(--primary-6));
23
+ }
24
+ .arco-upload-list-item-text{
25
+ background-color: rgb(var(--primary-1));
26
+ }
27
+ }
28
+
29
+
30
+ // 上传成功
31
+ &-list-item-done{
32
+ .arco-upload-list-item-text-name-link{
33
+ color: rgb(var(--primary-6));
34
+ }
35
+ .arco-upload-list-item-text{
36
+ background-color: rgb(var(--success-1));
37
+ }
38
+ }
39
+
40
+ // 上传失败
41
+ &-list-item-error{
42
+ .arco-upload-list-reupload-icon{
43
+ font-weight: 600;
44
+ }
45
+ .arco-upload-list-item-text{
46
+ background-color: rgb(var(--danger-1));
47
+ }
48
+ }
49
+
50
+ }
package/config.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ declare module 'undefined/config' {
2
+ const componentConfig:any;
3
+ export {componentConfig};
4
+ }
5
+
package/config.js ADDED
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export const componentConfig = {
3
+ Button: {
4
+ type: 'primary'
5
+ }
6
+ };