bri-components 1.4.42 → 1.4.44

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 (61) hide show
  1. package/lib/0.bri-components.min.js +1 -1
  2. package/lib/1.bri-components.min.js +1 -1
  3. package/lib/10.bri-components.min.js +1 -1
  4. package/lib/2.bri-components.min.js +1 -1
  5. package/lib/3.bri-components.min.js +1 -1
  6. package/lib/4.bri-components.min.js +1 -1
  7. package/lib/5.bri-components.min.js +1 -1
  8. package/lib/6.bri-components.min.js +1 -1
  9. package/lib/7.bri-components.min.js +1 -1
  10. package/lib/8.bri-components.min.js +1 -1
  11. package/lib/9.bri-components.min.js +1 -1
  12. package/lib/bri-components.min.js +4 -76
  13. package/package.json +1 -1
  14. package/src/components/controls/base/BriUpload/BriUpload.vue +6 -5
  15. package/src/components/controls/base/DshDate/DshDaterange.vue +57 -25
  16. package/src/components/controls/base/DshNumber/DshNumber.vue +4 -6
  17. package/src/components/controls/mixins/userAndDepartMixin.js +3 -3
  18. package/src/components/controls/senior/selectDepartments.vue +23 -19
  19. package/src/components/controls/senior/selectUsers/selectUsers.vue +8 -8
  20. package/src/components/list/BriCard.vue +43 -0
  21. package/src/components/list/BriTree.vue +59 -1
  22. package/src/components/list/BriTreeItem.vue +53 -0
  23. package/src/components/list/DshPage.vue +95 -0
  24. package/src/components/list/mixins/tableBaseMixin.js +1 -4
  25. package/src/components/other/BriAvatar.vue +77 -12
  26. package/src/components/other/BriCode.vue +9 -2
  27. package/src/components/other/BriCollapseTree.vue +95 -2
  28. package/src/components/other/BriGantt.vue +319 -6
  29. package/src/components/other/BriIframe.vue +20 -0
  30. package/src/components/other/BriLoading.vue +61 -2
  31. package/src/components/other/DshColorPanel.vue +43 -0
  32. package/src/components/other/DshMenuNav.vue +84 -0
  33. package/src/components/small/BriDrawer.vue +43 -8
  34. package/src/components/small/BriTooltip.vue +1 -1
  35. package/src/components/small/DshBtnModal.vue +6 -0
  36. package/src/components/small/DshButtons.vue +34 -0
  37. package/src/components/small/DshIcons.vue +10 -0
  38. package/src/components/small/DshSteps.vue +61 -0
  39. package/src/components/small/DshTitle.vue +14 -0
  40. package/src/styles/components/index.less +3 -29
  41. package/src/styles/components/list/BriCard.less +0 -40
  42. package/src/styles/components/list/BriTree.less +0 -56
  43. package/src/styles/components/list/BriTreeItem.less +0 -50
  44. package/src/styles/components/list/DshPage.less +0 -92
  45. package/src/styles/components/other/BriAvatar.less +0 -64
  46. package/src/styles/components/other/BriCode.less +0 -5
  47. package/src/styles/components/other/BriCollapseTree.less +0 -91
  48. package/src/styles/components/other/BriGantt.less +0 -313
  49. package/src/styles/components/other/BriIframe.less +0 -17
  50. package/src/styles/components/other/BriLoading.less +0 -57
  51. package/src/styles/components/other/DshColorPanel.less +0 -40
  52. package/src/styles/components/other/DshMenuNav.less +0 -82
  53. package/src/styles/components/small/BriDrawer.less +0 -34
  54. package/src/styles/components/small/DshBtnModal.less +0 -3
  55. package/src/styles/components/small/DshButtons.less +0 -31
  56. package/src/styles/components/small/DshIcons.less +0 -7
  57. package/src/styles/components/small/DshSteps.less +0 -58
  58. package/src/styles/components/small/DshTitle.less +0 -15
  59. /package/src/styles/components/{small/BriButton.less → BriButton.less} +0 -0
  60. /package/src/styles/components/{list/BriTable.less → BriTable.less} +0 -0
  61. /package/src/styles/components/{small/DshModal.less → DshModal.less} +0 -0
@@ -1,82 +0,0 @@
1
- .DshMenuNav {
2
- width: 100%;
3
- height: 100%;
4
- border-radius: 8px;
5
- overflow: hidden;
6
- display: flex;
7
- flex-direction: row;
8
-
9
- &-nav {
10
- width: 121px;
11
- height: 100%;
12
- background-color: #ffffff;
13
- display: flex;
14
- flex-direction: column;
15
- position: relative;
16
- box-shadow: 5px 0px 9px rgba(0, 0, 0, 0.1);
17
- &-left {
18
- }
19
- &-right {
20
- border-left: 1px solid @borderColor;
21
- }
22
-
23
- &-title {
24
- padding: 10px 20px;
25
- height: 80px;
26
- line-height: 60px;
27
- font-weight: 600;
28
- font-size: 16px;
29
- }
30
-
31
- .list {
32
- flex: 1;
33
- min-height: 0px;
34
- overflow: auto;
35
- &-item {
36
- padding: 10px 30px;
37
- background-color: #ffffff;
38
- line-height: 20px;
39
- font-size: @smallTitleSize;
40
- cursor: pointer;
41
- &:hover {
42
- color: @themeColor;
43
- }
44
- &-active {
45
- color: @themeColor;
46
- background-color: #F7FCFC;
47
- }
48
-
49
- &-bottom {
50
- width: 100%;
51
- border-top: 1px solid @borderColor;
52
- position: absolute;
53
- left: 0px;
54
- bottom: 0px;
55
- }
56
- &-beforeText {
57
- display: block;
58
- color: @textColor;
59
- padding: 15px 5px 5px 15px;
60
- margin: -10px -30px 10px -30px;
61
- font-size: 14px;
62
- background: #fff;
63
- }
64
- &-iconClass {
65
- color: @themeColor;
66
- padding-right: 5px;
67
- font-size: 18px;
68
- }
69
- }
70
- }
71
- }
72
-
73
- &-view {
74
- flex: 1;
75
- min-width: 0px;
76
- height: 100%;
77
- }
78
- }
79
-
80
- .DshMenuNav {
81
-
82
- }
@@ -1,34 +0,0 @@
1
- .BriDrawer {
2
- .ivu-drawer-header {
3
- padding: 16px 16px 15px;
4
- }
5
- .ivu-drawer-body {
6
- padding: 0px;
7
- }
8
- .ivu-drawer-close {
9
- top: 18px;
10
- right: 18px
11
- }
12
- &-header {
13
- color: @textColor;
14
- font-weight: 500;
15
- font-size: @smallTitleSize;
16
- line-height: @smallTitleHeight;
17
- }
18
- &-close {
19
- color: @contentColor;
20
- }
21
- &-main {
22
- height: 100%;
23
- display: flex;
24
- flex-direction: column;
25
- }
26
- &-body {
27
- flex: 1;
28
- overflow: auto;
29
- }
30
- &-footer {
31
- border-top: 1px solid @borderColor;
32
- padding: 11px 16px 12px;
33
- }
34
- }
@@ -1,3 +0,0 @@
1
- .DshBtnModal {
2
-
3
- }
@@ -1,31 +0,0 @@
1
- .DshButtons {
2
- &-flex {
3
- width: 100%;
4
- height: 100%;
5
- .dsh-flex-row-between-center();
6
-
7
- // 更多
8
- .DshButtons-dropdown {
9
- margin: 0 15px 0 0;
10
- font-size: 16px;
11
- font-weight: 400;
12
- color: @themeColor;
13
-
14
- &-more {
15
- display: flex;
16
- flex-direction: row;
17
- justify-content: center;
18
- align-items: center;
19
-
20
- &-name {}
21
- }
22
- }
23
- }
24
-
25
- &-item {
26
- > span {
27
- width: 100%;
28
- .dsh-ellipsis();
29
- }
30
- }
31
- }
@@ -1,7 +0,0 @@
1
- .DshIcons {
2
- display: inline-block;
3
-
4
- &-item {
5
- cursor: pointer;
6
- }
7
- }
@@ -1,58 +0,0 @@
1
- .DshSteps {
2
- &-item {
3
- cursor: pointer;
4
- }
5
- }
6
-
7
-
8
- .DshSteps {
9
- .ivu-steps-vertical {
10
- .ivu-steps-item {
11
- padding-bottom: 30px;
12
- &:last-child {
13
- margin-bottom: 0px;
14
- }
15
-
16
- .ivu-steps-tail {
17
- position: absolute;
18
- left: 13px;
19
- top: 0;
20
- height: 100%;
21
- width: 1px;
22
- padding: 35px 0 5px 0;
23
- & > i {
24
- background-color: #e8eaec;
25
- }
26
- }
27
-
28
- &.ivu-steps-status-process,
29
- &.ivu-steps-status-finish {
30
- .ivu-steps-head-inner {
31
- background-color: @themeColor;
32
- border-color: @themeColor;
33
- span,
34
- & > .ivu-steps-icon {
35
- color: #ffffff;
36
- }
37
- }
38
- }
39
-
40
- &.ivu-steps-status-finish {
41
- .ivu-steps-head-inner {
42
- background-color: #ffffff;
43
- border-color: @themeColor;
44
- span,
45
- & > .ivu-steps-icon {
46
- color: @themeColor;
47
- }
48
- }
49
-
50
- .ivu-steps-tail {
51
- & > i:after {
52
- background: @themeColor;
53
- }
54
- }
55
- }
56
- }
57
- }
58
- }
@@ -1,15 +0,0 @@
1
- .DshTitle {
2
- height: 100%;
3
- display: flex;
4
- align-items: center;
5
- cursor: pointer;
6
- &-name {
7
- margin-left: 8px;
8
- font-size: @smallTitleSize;
9
- }
10
- }
11
-
12
-
13
- .DshTitle {
14
-
15
- }