monkey-style-guide-v2 0.0.41 → 0.0.43

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 (26) hide show
  1. package/assets/scss/directives/_popover.scss +23 -10
  2. package/assets/scss/input/_styles.scss +0 -16
  3. package/assets/scss/theme.scss +0 -1
  4. package/fesm2022/monkey-style-guide-v2.mjs +558 -765
  5. package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
  6. package/lib/components/avatar/avatar.component.d.ts +1 -0
  7. package/lib/components/filter-bar/filter-bar.component.d.ts +0 -4
  8. package/lib/components/index.d.ts +1 -0
  9. package/lib/components/input-phone/input-phone.component.d.ts +2 -1
  10. package/lib/components/option/option.component.d.ts +0 -2
  11. package/{assets/scss/util/_index.scss → lib/components/user-profile-button/index.d.ts} +3 -4
  12. package/lib/components/user-profile-button/user-profile-button.component.d.ts +24 -0
  13. package/lib/tokens/index.d.ts +1 -1
  14. package/monkey-style-guide-v2-0.0.43.tgz +0 -0
  15. package/package.json +1 -1
  16. package/assets/scss/util/_icon.scss +0 -10
  17. package/lib/components/filter-bar/components/currency/currency.component.d.ts +0 -7
  18. package/lib/components/filter-bar/components/currency/index.d.ts +0 -1
  19. package/lib/components/filter-bar/components/date/date.component.d.ts +0 -11
  20. package/lib/components/filter-bar/components/date/index.d.ts +0 -1
  21. package/lib/components/filter-bar/components/index.d.ts +0 -4
  22. package/lib/components/filter-bar/components/input/index.d.ts +0 -1
  23. package/lib/components/filter-bar/components/input/input.component.d.ts +0 -6
  24. package/lib/components/filter-bar/components/status/index.d.ts +0 -1
  25. package/lib/components/filter-bar/components/status/status.component.d.ts +0 -5
  26. package/monkey-style-guide-v2-0.0.41.tgz +0 -0
@@ -1,7 +1,7 @@
1
1
  .mecx-popover-container {
2
2
  display: flex;
3
3
  flex-direction: column;
4
- border-radius: 16px;
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: 12px;
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
+ }
@@ -40,19 +40,3 @@ input[type='date']::-webkit-calendar-picker-indicator {
40
40
  -webkit-appearance: none;
41
41
  opacity: 0;
42
42
  }
43
-
44
- input:-webkit-autofill {
45
- box-shadow: 0 0 0px 1000px var(--mecx-color-white) inset !important;
46
- }
47
-
48
- input:-moz-autofill {
49
- box-shadow: 0 0 0px 1000px var(--mecx-color-white) inset !important;
50
- }
51
-
52
- input {
53
- &:autofill,
54
- &:-webkit-autofill,
55
- &:-moz-autofill {
56
- box-shadow: 0 0 0 1000px var(--mecx-color-white) inset !important;
57
- }
58
- }
@@ -11,4 +11,3 @@
11
11
  @use './directives';
12
12
  @use './table';
13
13
  @use './typography';
14
- @use './util';