@lambo-design/shared 1.0.0-beta.200 → 1.0.0-beta.202

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 (58) hide show
  1. package/config/config.js +1 -0
  2. package/config/themes/atrovirens/atrovirens.css +563 -563
  3. package/config/themes/blue/blue.css +563 -563
  4. package/config/themes/blue-white/blue-white.css +563 -563
  5. package/config/themes/blue-white-tight/blue-white-tight.css +564 -564
  6. package/config/themes/deep/deep.css +563 -563
  7. package/config/themes/default/default.css +563 -563
  8. package/config/themes/eap/eap.css +563 -563
  9. package/config/themes/gold/gold.css +563 -563
  10. package/config/themes/lime/lime.css +563 -563
  11. package/config/themes/orange/orange.css +563 -563
  12. package/config/themes/red/red.css +563 -563
  13. package/nstyles/common.less +197 -197
  14. package/nstyles/components/404.less +46 -46
  15. package/nstyles/components/button.less +34 -34
  16. package/nstyles/components/date-picker.less +37 -37
  17. package/nstyles/components/drawer.less +20 -20
  18. package/nstyles/components/dropdown.less +18 -18
  19. package/nstyles/components/excel-flow.less +72 -72
  20. package/nstyles/components/form.less +303 -303
  21. package/nstyles/components/layout/collect.less +10 -10
  22. package/nstyles/components/layout/detail-view.less +107 -107
  23. package/nstyles/components/layout/full-screen.less +7 -7
  24. package/nstyles/components/layout/other-menu.less +142 -142
  25. package/nstyles/components/layout/page-view.less +101 -101
  26. package/nstyles/components/layout/sider-trigger.less +41 -41
  27. package/nstyles/components/layout/tags-nav.less +113 -113
  28. package/nstyles/components/modal.less +85 -85
  29. package/nstyles/components/panel.less +31 -31
  30. package/nstyles/components/select.less +3 -3
  31. package/nstyles/components/sign.less +27 -27
  32. package/nstyles/components/tree.less +159 -159
  33. package/nstyles/components/upload.less +131 -131
  34. package/nstyles/index.less +5 -5
  35. package/nstyles/reset.less +65 -65
  36. package/nstyles/third/ag.less +173 -173
  37. package/nstyles/third/index.less +11 -11
  38. package/nstyles/third/view-design.less +356 -356
  39. package/nstyles/variables/base.less +143 -143
  40. package/nstyles/variables/index.less +4 -4
  41. package/nstyles/variables/theme/default/button.less +7 -7
  42. package/nstyles/variables/theme/default/common.less +57 -57
  43. package/nstyles/variables/theme/default/index.less +7 -7
  44. package/nstyles/variables/theme/default/layout.less +40 -40
  45. package/nstyles/variables/theme/default/table.less +37 -37
  46. package/nstyles/variables/theme/default/tag.less +3 -3
  47. package/nstyles/variables/theme/default/upload.less +3 -3
  48. package/nstyles/variables/theme/index.less +13 -13
  49. package/nstyles/variables/theme/small/button.less +7 -7
  50. package/nstyles/variables/theme/small/common.less +39 -39
  51. package/nstyles/variables/theme/small/index.less +5 -5
  52. package/nstyles/variables/theme/small/layout.less +21 -21
  53. package/nstyles/variables/theme/small/table.less +17 -17
  54. package/nstyles/variables/theme/small/tag.less +3 -3
  55. package/package.json +1 -1
  56. package/utils/dict/index.js +33 -0
  57. package/utils/n/api.js +8 -0
  58. package/utils/platform.js +74 -0
@@ -1,18 +1,18 @@
1
- .ivu-select-dropdown.ivu-dropdown-transfer {
2
- max-height: none !important;
3
-
4
- .ind-dropdown-list {
5
- .ivu-dropdown-menu {
6
- max-height: 400px;
7
- overflow-y: auto;
8
- }
9
-
10
- .ind-button-group {
11
- margin: var(--ind-padding-xs) var(--ind-padding-xs) 0;
12
- }
13
-
14
- .ivu-dropdown-item {
15
- user-select: none;
16
- }
17
- }
18
- }
1
+ .ivu-select-dropdown.ivu-dropdown-transfer {
2
+ max-height: none !important;
3
+
4
+ .ind-dropdown-list {
5
+ .ivu-dropdown-menu {
6
+ max-height: 400px;
7
+ overflow-y: auto;
8
+ }
9
+
10
+ .ind-button-group {
11
+ margin: var(--ind-padding-xs) var(--ind-padding-xs) 0;
12
+ }
13
+
14
+ .ivu-dropdown-item {
15
+ user-select: none;
16
+ }
17
+ }
18
+ }
@@ -1,72 +1,72 @@
1
- .excel-flow-wrap {
2
- width: 100%;
3
- height: 60vh;
4
- display: flex;
5
- flex-direction: column;
6
- justify-content: space-between;
7
-
8
- // 步骤条的样式, 按理说不应该自己定义的,先写个版本出来吧
9
- .ivu-steps .ivu-steps-head,
10
- .ivu-steps .ivu-steps-main {
11
- vertical-align: middle;
12
- }
13
- .ivu-steps .ivu-steps-title {
14
- margin-bottom: 0;
15
- }
16
-
17
- .content-wrap {
18
- height: 100%;
19
- padding: 20px 50px;
20
- display: flex;
21
- flex-direction: column;
22
- justify-content: flex-start;
23
- overflow: auto;
24
-
25
- .download-btn,
26
- .import-btn {
27
- margin-top: 20px;
28
- border: 1px solid var(--ind-border-color);
29
- border-radius: 4px;
30
-
31
- display: flex;
32
- justify-content: space-between;
33
- .icon {
34
- width: 120px;
35
- flex-shrink: 0;
36
- border-right: 1px solid var(--ind-border-color);
37
- background-color: var(--ind-bg-color-dark);
38
- text-align: center;
39
- display: flex;
40
- flex-direction: column;
41
- justify-content: space-around;
42
- }
43
- .text-panel {
44
- margin: 20px;
45
- width: 100%;
46
- .title {
47
- font-size: 16px;
48
- color: var(--ind-black);
49
- }
50
- .desc {
51
- color: var(--ind-gray-5);
52
- }
53
- .link {
54
- color: var(--ind-blue);
55
- cursor: pointer;
56
- }
57
- }
58
- }
59
-
60
- .done-wrap {
61
- text-align: center;
62
- .success-title {
63
- font-weight: bold;
64
- font-size: 18px;
65
- }
66
- }
67
- }
68
- .bottom-btn-area {
69
- display: flex;
70
- justify-content: center;
71
- }
72
- }
1
+ .excel-flow-wrap {
2
+ width: 100%;
3
+ height: 60vh;
4
+ display: flex;
5
+ flex-direction: column;
6
+ justify-content: space-between;
7
+
8
+ // 步骤条的样式, 按理说不应该自己定义的,先写个版本出来吧
9
+ .ivu-steps .ivu-steps-head,
10
+ .ivu-steps .ivu-steps-main {
11
+ vertical-align: middle;
12
+ }
13
+ .ivu-steps .ivu-steps-title {
14
+ margin-bottom: 0;
15
+ }
16
+
17
+ .content-wrap {
18
+ height: 100%;
19
+ padding: 20px 50px;
20
+ display: flex;
21
+ flex-direction: column;
22
+ justify-content: flex-start;
23
+ overflow: auto;
24
+
25
+ .download-btn,
26
+ .import-btn {
27
+ margin-top: 20px;
28
+ border: 1px solid var(--ind-border-color);
29
+ border-radius: 4px;
30
+
31
+ display: flex;
32
+ justify-content: space-between;
33
+ .icon {
34
+ width: 120px;
35
+ flex-shrink: 0;
36
+ border-right: 1px solid var(--ind-border-color);
37
+ background-color: var(--ind-bg-color-dark);
38
+ text-align: center;
39
+ display: flex;
40
+ flex-direction: column;
41
+ justify-content: space-around;
42
+ }
43
+ .text-panel {
44
+ margin: 20px;
45
+ width: 100%;
46
+ .title {
47
+ font-size: 16px;
48
+ color: var(--ind-black);
49
+ }
50
+ .desc {
51
+ color: var(--ind-gray-5);
52
+ }
53
+ .link {
54
+ color: var(--ind-blue);
55
+ cursor: pointer;
56
+ }
57
+ }
58
+ }
59
+
60
+ .done-wrap {
61
+ text-align: center;
62
+ .success-title {
63
+ font-weight: bold;
64
+ font-size: 18px;
65
+ }
66
+ }
67
+ }
68
+ .bottom-btn-area {
69
+ display: flex;
70
+ justify-content: center;
71
+ }
72
+ }