mn-angular-lib 0.0.43 → 0.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mn-angular-lib",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -0,0 +1 @@
1
+ /* All styles moved to Tailwind classes in the template */
@@ -0,0 +1,5 @@
1
+ .select-arrow {
2
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
3
+ background-repeat: no-repeat;
4
+ background-position: right 0.75rem center;
5
+ }
@@ -0,0 +1,36 @@
1
+ :host {
2
+ position: fixed;
3
+ inset: 0;
4
+ z-index: 1000;
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
8
+ }
9
+
10
+ @keyframes fadeIn {
11
+ from { opacity: 0; }
12
+ to { opacity: 1; }
13
+ }
14
+
15
+ @keyframes slideIn {
16
+ from { opacity: 0; transform: translateY(-1rem); }
17
+ to { opacity: 1; transform: translateY(0); }
18
+ }
19
+
20
+ @keyframes fadeOut {
21
+ from { opacity: 1; }
22
+ to { opacity: 0; }
23
+ }
24
+
25
+ @keyframes slideOut {
26
+ from { opacity: 1; transform: translateY(0); }
27
+ to { opacity: 0; transform: translateY(1rem); }
28
+ }
29
+
30
+ :host(.closing) .modal-backdrop {
31
+ animation: fadeOut 0.15s ease-in-out forwards;
32
+ }
33
+
34
+ :host(.closing) .modal-container {
35
+ animation: slideOut 0.15s ease-in-out forwards;
36
+ }
@@ -0,0 +1 @@
1
+ /* All styles moved to Tailwind classes in the template */
@@ -0,0 +1 @@
1
+ /* All styling uses Tailwind utility classes in the template */