monkey-style-guide-v2 0.0.40 → 0.0.42
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/assets/scss/directives/_popover.scss +23 -10
- package/assets/scss/theme.scss +0 -1
- package/fesm2022/monkey-style-guide-v2.mjs +551 -758
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/avatar/avatar.component.d.ts +1 -0
- package/lib/components/filter-bar/filter-bar.component.d.ts +0 -4
- package/lib/components/index.d.ts +1 -0
- package/lib/components/option/option.component.d.ts +0 -2
- package/{assets/scss/util/_index.scss → lib/components/user-profile-button/index.d.ts} +3 -4
- package/lib/components/user-profile-button/user-profile-button.component.d.ts +24 -0
- package/monkey-style-guide-v2-0.0.42.tgz +0 -0
- package/package.json +1 -1
- package/assets/scss/util/_icon.scss +0 -10
- package/lib/components/filter-bar/components/currency/currency.component.d.ts +0 -7
- package/lib/components/filter-bar/components/currency/index.d.ts +0 -1
- package/lib/components/filter-bar/components/date/date.component.d.ts +0 -11
- package/lib/components/filter-bar/components/date/index.d.ts +0 -1
- package/lib/components/filter-bar/components/index.d.ts +0 -4
- package/lib/components/filter-bar/components/input/index.d.ts +0 -1
- package/lib/components/filter-bar/components/input/input.component.d.ts +0 -6
- package/lib/components/filter-bar/components/status/index.d.ts +0 -1
- package/lib/components/filter-bar/components/status/status.component.d.ts +0 -5
- package/monkey-style-guide-v2-0.0.40.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.mecx-popover-container {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
|
-
border-radius:
|
|
4
|
+
border-radius: 8px;
|
|
5
5
|
border: 2px solid var(--mecx-color-gray-200);
|
|
6
6
|
background: var(--mecx-color-white);
|
|
7
7
|
box-shadow:
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.mecx-popover-content {
|
|
51
|
-
min-width: 160px;
|
|
52
51
|
flex: 1;
|
|
53
52
|
|
|
54
53
|
&.add-radius {
|
|
@@ -66,13 +65,6 @@
|
|
|
66
65
|
|
|
67
66
|
.mecx-popover-content > :first-child {
|
|
68
67
|
border: none !important;
|
|
69
|
-
border-top-left-radius: 16px;
|
|
70
|
-
border-top-right-radius: 16px;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.mecx-popover-content > :last-child {
|
|
74
|
-
border-bottom-left-radius: 16px;
|
|
75
|
-
border-bottom-right-radius: 16px;
|
|
76
68
|
}
|
|
77
69
|
|
|
78
70
|
.mecx-popover-actions {
|
|
@@ -80,10 +72,31 @@
|
|
|
80
72
|
padding: 14px 24px;
|
|
81
73
|
justify-content: flex-end;
|
|
82
74
|
align-items: center;
|
|
83
|
-
gap:
|
|
75
|
+
gap: 24px;
|
|
84
76
|
align-self: stretch;
|
|
85
77
|
border-top: 2px solid var(--mecx-color-gray-200);
|
|
86
78
|
background: var(--mecx-color-white);
|
|
87
79
|
border-bottom-left-radius: 16px;
|
|
88
80
|
border-bottom-right-radius: 16px;
|
|
89
81
|
}
|
|
82
|
+
|
|
83
|
+
.mecx-popover-content .context-menu {
|
|
84
|
+
display: flex;
|
|
85
|
+
flex-direction: column;
|
|
86
|
+
align-items: start;
|
|
87
|
+
min-width: 150px;
|
|
88
|
+
padding: 4px;
|
|
89
|
+
gap: 4px;
|
|
90
|
+
|
|
91
|
+
monkey-button {
|
|
92
|
+
width: 100%;
|
|
93
|
+
|
|
94
|
+
button {
|
|
95
|
+
justify-content: start;
|
|
96
|
+
|
|
97
|
+
span {
|
|
98
|
+
text-decoration: none;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
package/assets/scss/theme.scss
CHANGED