@mohasinac/appkit 2.7.22 → 2.7.24

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 (51) hide show
  1. package/dist/client.d.ts +4 -0
  2. package/dist/client.js +3 -0
  3. package/dist/features/auth/consent-otp.js +8 -8
  4. package/dist/features/auth/permissions/constants.d.ts +1 -1
  5. package/dist/features/auth/permissions/constants.js +2 -0
  6. package/dist/features/before-after/messages/en.json +7 -7
  7. package/dist/features/collections/messages/en.json +9 -9
  8. package/dist/features/consultation/messages/en.json +24 -24
  9. package/dist/features/contact/email.js +179 -179
  10. package/dist/features/corporate/messages/en.json +25 -25
  11. package/dist/features/loyalty/messages/en.json +18 -18
  12. package/dist/features/media/messages/en.json +63 -63
  13. package/dist/features/pre-orders/messages/en.json +12 -12
  14. package/dist/features/site-settings/components/ActionPermissionsManager.d.ts +7 -0
  15. package/dist/features/site-settings/components/ActionPermissionsManager.js +99 -0
  16. package/dist/features/site-settings/components/NavPermissionsManager.d.ts +18 -0
  17. package/dist/features/site-settings/components/NavPermissionsManager.js +33 -0
  18. package/dist/features/whatsapp-bot/messages/en.json +6 -6
  19. package/dist/index.d.ts +4 -0
  20. package/dist/index.js +3 -0
  21. package/dist/next/routing/route-map.d.ts +4 -0
  22. package/dist/next/routing/route-map.js +2 -0
  23. package/dist/styles.css +21 -21
  24. package/dist/tailwind-utilities.css +1 -1
  25. package/dist/tokens/tokens.css +436 -436
  26. package/dist/ui/components/ActiveFilterChips.style.css +66 -66
  27. package/dist/ui/components/AvatarDisplay.style.css +46 -46
  28. package/dist/ui/components/BackgroundRenderer.style.css +31 -31
  29. package/dist/ui/components/Breadcrumb.style.css +60 -60
  30. package/dist/ui/components/CountdownDisplay.style.css +4 -4
  31. package/dist/ui/components/Div.style.css +6 -6
  32. package/dist/ui/components/EmptyState.style.css +28 -28
  33. package/dist/ui/components/FlowDiagram.style.css +77 -77
  34. package/dist/ui/components/FormGrid.style.css +32 -32
  35. package/dist/ui/components/ImageGallery.style.css +163 -163
  36. package/dist/ui/components/ImageLightbox.style.css +58 -58
  37. package/dist/ui/components/ItemRow.style.css +33 -33
  38. package/dist/ui/components/Layout.style.css +229 -229
  39. package/dist/ui/components/Menu.style.css +6 -6
  40. package/dist/ui/components/NavigationLoader.style.css +19 -19
  41. package/dist/ui/components/ResponsiveView.style.css +69 -69
  42. package/dist/ui/components/RoleBadge.style.css +7 -7
  43. package/dist/ui/components/SectionTabs.style.css +164 -164
  44. package/dist/ui/components/Semantic.style.css +14 -14
  45. package/dist/ui/components/SkipToMain.style.css +34 -34
  46. package/dist/ui/components/SortDropdown.style.css +12 -12
  47. package/dist/ui/components/StatusBadge.style.css +5 -5
  48. package/dist/ui/components/UnsavedChangesModal.style.css +33 -33
  49. package/dist/ui/components/ViewToggle.style.css +50 -50
  50. package/dist/ui/components/index.style.css +78 -78
  51. package/package.json +1 -1
@@ -1,229 +1,229 @@
1
- .appkit-container {
2
- margin-left: auto;
3
- margin-right: auto;
4
- padding-left: 1rem;
5
- padding-right: 1rem;
6
- }
7
-
8
- @media (min-width: 640px) {
9
- .appkit-container {
10
- padding-left: 1.5rem;
11
- padding-right: 1.5rem;
12
- }
13
- }
14
-
15
- @media (min-width: 1024px) {
16
- .appkit-container {
17
- padding-left: 2rem;
18
- padding-right: 2rem;
19
- }
20
- }
21
-
22
- .appkit-container--sm { max-width: 48rem; }
23
- .appkit-container--md { max-width: 56rem; }
24
- .appkit-container--lg { max-width: 64rem; }
25
- .appkit-container--xl { max-width: 72rem; }
26
- .appkit-container--2xl { max-width: 80rem; }
27
- .appkit-container--full { max-width: 96rem; }
28
- .appkit-container--wide { max-width: 96rem; }
29
- .appkit-container--ultra { max-width: 1920px; }
30
-
31
- @media (min-width: 1024px) {
32
- .appkit-container--wide {
33
- padding-left: 1.5rem;
34
- padding-right: 1.5rem;
35
- }
36
- }
37
-
38
- .appkit-stack {
39
- display: flex;
40
- flex-direction: column;
41
- }
42
-
43
- .appkit-row {
44
- display: flex;
45
- flex-direction: row;
46
- }
47
-
48
- .appkit-grid {
49
- display: grid;
50
- }
51
-
52
- .appkit-row--wrap { flex-wrap: wrap; }
53
- .appkit-stack--centered,
54
- .appkit-row--centered {
55
- align-items: center;
56
- justify-content: center;
57
- }
58
-
59
- .appkit-items--start { align-items: flex-start; }
60
- .appkit-items--center { align-items: center; }
61
- .appkit-items--end { align-items: flex-end; }
62
- .appkit-items--stretch { align-items: stretch; }
63
- .appkit-items--baseline { align-items: baseline; }
64
-
65
- .appkit-justify--start { justify-content: flex-start; }
66
- .appkit-justify--center { justify-content: center; }
67
- .appkit-justify--end { justify-content: flex-end; }
68
- .appkit-justify--between { justify-content: space-between; }
69
- .appkit-justify--around { justify-content: space-around; }
70
- .appkit-justify--evenly { justify-content: space-evenly; }
71
-
72
- .appkit-gap--px { gap: 1px; }
73
- .appkit-gap--xs { gap: 0.25rem; }
74
- .appkit-gap--sm { gap: 0.5rem; }
75
- .appkit-gap--2-5 { gap: 0.625rem; }
76
- .appkit-gap--3 { gap: 0.75rem; }
77
- .appkit-gap--md { gap: 1rem; }
78
- .appkit-gap--5 { gap: 1.25rem; }
79
- .appkit-gap--lg { gap: 1.5rem; }
80
- .appkit-gap--xl { gap: 2rem; }
81
- .appkit-gap--2xl { gap: 3rem; }
82
-
83
- .appkit-grid--1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
84
- .appkit-grid--2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
85
- .appkit-grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
86
- .appkit-grid--4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
87
- .appkit-grid--5 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
88
- .appkit-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
89
- .appkit-grid--cards { grid-template-columns: repeat(1, minmax(0, 1fr)); }
90
- .appkit-grid--product-cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
91
- .appkit-grid--product-cards-compact { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card), 1fr)); gap: 1rem; }
92
- .appkit-grid--store-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card), 1fr)); gap: 1.5rem; }
93
- .appkit-grid--category-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-xs), 1fr)); gap: 1rem; }
94
- .appkit-grid--coupon-cards { grid-template-columns: repeat(auto-fill, minmax(264px, 1fr)); gap: 1.5rem; }
95
- .appkit-grid--address-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-lg), 1fr)); gap: 1rem; }
96
- .appkit-grid--stat-tiles { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
97
- .appkit-grid--nav-tiles { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-sm), 1fr)); gap: 1rem; }
98
- .appkit-grid--halves { grid-template-columns: repeat(1, minmax(0, 1fr)); }
99
- .appkit-grid--two-third { grid-template-columns: repeat(1, minmax(0, 1fr)); }
100
- .appkit-grid--one-third { grid-template-columns: repeat(1, minmax(0, 1fr)); }
101
- .appkit-grid--sidebar { grid-template-columns: repeat(1, minmax(0, 1fr)); }
102
- .appkit-grid--sidebar-right { grid-template-columns: repeat(1, minmax(0, 1fr)); }
103
- .appkit-grid--sidebar-wide { grid-template-columns: repeat(1, minmax(0, 1fr)); }
104
- .appkit-grid--product-detail-triplet {
105
- grid-template-columns: repeat(1, minmax(0, 1fr));
106
- gap: 1.5rem;
107
- }
108
- .appkit-grid--detail-split {
109
- display: flex;
110
- flex-direction: column;
111
- gap: 1.5rem;
112
- }
113
- @media (min-width: 768px) {
114
- .appkit-grid--detail-split {
115
- flex-direction: row;
116
- }
117
- .appkit-grid--detail-split > *:first-child {
118
- width: 50%;
119
- flex-shrink: 0;
120
- }
121
- .appkit-grid--detail-split > *:nth-child(n+2) {
122
- flex: 1;
123
- }
124
- }
125
- .appkit-grid--auto-sm { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
126
- .appkit-grid--auto-md { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
127
- .appkit-grid--auto-lg { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
128
-
129
- @media (min-width: 640px) {
130
- .appkit-grid--2,
131
- .appkit-grid--3,
132
- .appkit-grid--4,
133
- .appkit-grid--5,
134
- .appkit-grid--cards {
135
- grid-template-columns: repeat(2, minmax(0, 1fr));
136
- }
137
-
138
- .appkit-grid--6 {
139
- grid-template-columns: repeat(3, minmax(0, 1fr));
140
- }
141
- }
142
-
143
- @media (min-width: 768px) {
144
- .appkit-grid--5,
145
- .appkit-grid--cards {
146
- grid-template-columns: repeat(3, minmax(0, 1fr));
147
- }
148
-
149
- .appkit-grid--halves {
150
- grid-template-columns: repeat(2, minmax(0, 1fr));
151
- }
152
-
153
- .appkit-grid--two-third {
154
- grid-template-columns: 2fr 1fr;
155
- }
156
-
157
- .appkit-grid--one-third {
158
- grid-template-columns: 1fr 2fr;
159
- }
160
-
161
- .appkit-grid--6 {
162
- grid-template-columns: repeat(4, minmax(0, 1fr));
163
- }
164
- }
165
-
166
- @media (min-width: 1024px) {
167
- .appkit-grid--3,
168
- .appkit-grid--4,
169
- .appkit-grid--5,
170
- .appkit-grid--cards {
171
- grid-template-columns: repeat(3, minmax(0, 1fr));
172
- }
173
-
174
- .appkit-grid--sidebar {
175
- grid-template-columns: 280px 1fr;
176
- }
177
-
178
- .appkit-grid--sidebar-right {
179
- grid-template-columns: 1fr 280px;
180
- }
181
-
182
- .appkit-grid--sidebar-wide {
183
- grid-template-columns: 320px 1fr;
184
- }
185
-
186
- .appkit-grid--product-detail-triplet {
187
- grid-template-columns: 1fr 1fr 280px;
188
- gap: 2rem;
189
- }
190
- }
191
-
192
- @media (min-width: 1280px) {
193
- .appkit-grid--4 {
194
- grid-template-columns: repeat(4, minmax(0, 1fr));
195
- }
196
-
197
- .appkit-grid--6 {
198
- grid-template-columns: repeat(5, minmax(0, 1fr));
199
- }
200
-
201
- .appkit-grid--product-detail-triplet {
202
- grid-template-columns: 1fr 1fr 300px;
203
- }
204
- }
205
-
206
- @media (min-width: 1536px) {
207
- .appkit-grid--2,
208
- .appkit-grid--halves {
209
- grid-template-columns: repeat(2, minmax(0, 1fr));
210
- }
211
-
212
- .appkit-grid--3 {
213
- grid-template-columns: repeat(4, minmax(0, 1fr));
214
- }
215
-
216
- .appkit-grid--4,
217
- .appkit-grid--5,
218
- .appkit-grid--cards {
219
- grid-template-columns: repeat(5, minmax(0, 1fr));
220
- }
221
-
222
- .appkit-grid--6 {
223
- grid-template-columns: repeat(6, minmax(0, 1fr));
224
- }
225
-
226
- .appkit-grid--product-detail-triplet {
227
- grid-template-columns: 1fr 1fr 320px;
228
- }
229
- }
1
+ .appkit-container {
2
+ margin-left: auto;
3
+ margin-right: auto;
4
+ padding-left: 1rem;
5
+ padding-right: 1rem;
6
+ }
7
+
8
+ @media (min-width: 640px) {
9
+ .appkit-container {
10
+ padding-left: 1.5rem;
11
+ padding-right: 1.5rem;
12
+ }
13
+ }
14
+
15
+ @media (min-width: 1024px) {
16
+ .appkit-container {
17
+ padding-left: 2rem;
18
+ padding-right: 2rem;
19
+ }
20
+ }
21
+
22
+ .appkit-container--sm { max-width: 48rem; }
23
+ .appkit-container--md { max-width: 56rem; }
24
+ .appkit-container--lg { max-width: 64rem; }
25
+ .appkit-container--xl { max-width: 72rem; }
26
+ .appkit-container--2xl { max-width: 80rem; }
27
+ .appkit-container--full { max-width: 96rem; }
28
+ .appkit-container--wide { max-width: 96rem; }
29
+ .appkit-container--ultra { max-width: 1920px; }
30
+
31
+ @media (min-width: 1024px) {
32
+ .appkit-container--wide {
33
+ padding-left: 1.5rem;
34
+ padding-right: 1.5rem;
35
+ }
36
+ }
37
+
38
+ .appkit-stack {
39
+ display: flex;
40
+ flex-direction: column;
41
+ }
42
+
43
+ .appkit-row {
44
+ display: flex;
45
+ flex-direction: row;
46
+ }
47
+
48
+ .appkit-grid {
49
+ display: grid;
50
+ }
51
+
52
+ .appkit-row--wrap { flex-wrap: wrap; }
53
+ .appkit-stack--centered,
54
+ .appkit-row--centered {
55
+ align-items: center;
56
+ justify-content: center;
57
+ }
58
+
59
+ .appkit-items--start { align-items: flex-start; }
60
+ .appkit-items--center { align-items: center; }
61
+ .appkit-items--end { align-items: flex-end; }
62
+ .appkit-items--stretch { align-items: stretch; }
63
+ .appkit-items--baseline { align-items: baseline; }
64
+
65
+ .appkit-justify--start { justify-content: flex-start; }
66
+ .appkit-justify--center { justify-content: center; }
67
+ .appkit-justify--end { justify-content: flex-end; }
68
+ .appkit-justify--between { justify-content: space-between; }
69
+ .appkit-justify--around { justify-content: space-around; }
70
+ .appkit-justify--evenly { justify-content: space-evenly; }
71
+
72
+ .appkit-gap--px { gap: 1px; }
73
+ .appkit-gap--xs { gap: 0.25rem; }
74
+ .appkit-gap--sm { gap: 0.5rem; }
75
+ .appkit-gap--2-5 { gap: 0.625rem; }
76
+ .appkit-gap--3 { gap: 0.75rem; }
77
+ .appkit-gap--md { gap: 1rem; }
78
+ .appkit-gap--5 { gap: 1.25rem; }
79
+ .appkit-gap--lg { gap: 1.5rem; }
80
+ .appkit-gap--xl { gap: 2rem; }
81
+ .appkit-gap--2xl { gap: 3rem; }
82
+
83
+ .appkit-grid--1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
84
+ .appkit-grid--2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
85
+ .appkit-grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
86
+ .appkit-grid--4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
87
+ .appkit-grid--5 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
88
+ .appkit-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
89
+ .appkit-grid--cards { grid-template-columns: repeat(1, minmax(0, 1fr)); }
90
+ .appkit-grid--product-cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
91
+ .appkit-grid--product-cards-compact { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card), 1fr)); gap: 1rem; }
92
+ .appkit-grid--store-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card), 1fr)); gap: 1.5rem; }
93
+ .appkit-grid--category-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-xs), 1fr)); gap: 1rem; }
94
+ .appkit-grid--coupon-cards { grid-template-columns: repeat(auto-fill, minmax(264px, 1fr)); gap: 1.5rem; }
95
+ .appkit-grid--address-cards { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-lg), 1fr)); gap: 1rem; }
96
+ .appkit-grid--stat-tiles { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
97
+ .appkit-grid--nav-tiles { grid-template-columns: repeat(auto-fill, minmax(var(--appkit-grid-min-card-sm), 1fr)); gap: 1rem; }
98
+ .appkit-grid--halves { grid-template-columns: repeat(1, minmax(0, 1fr)); }
99
+ .appkit-grid--two-third { grid-template-columns: repeat(1, minmax(0, 1fr)); }
100
+ .appkit-grid--one-third { grid-template-columns: repeat(1, minmax(0, 1fr)); }
101
+ .appkit-grid--sidebar { grid-template-columns: repeat(1, minmax(0, 1fr)); }
102
+ .appkit-grid--sidebar-right { grid-template-columns: repeat(1, minmax(0, 1fr)); }
103
+ .appkit-grid--sidebar-wide { grid-template-columns: repeat(1, minmax(0, 1fr)); }
104
+ .appkit-grid--product-detail-triplet {
105
+ grid-template-columns: repeat(1, minmax(0, 1fr));
106
+ gap: 1.5rem;
107
+ }
108
+ .appkit-grid--detail-split {
109
+ display: flex;
110
+ flex-direction: column;
111
+ gap: 1.5rem;
112
+ }
113
+ @media (min-width: 768px) {
114
+ .appkit-grid--detail-split {
115
+ flex-direction: row;
116
+ }
117
+ .appkit-grid--detail-split > *:first-child {
118
+ width: 50%;
119
+ flex-shrink: 0;
120
+ }
121
+ .appkit-grid--detail-split > *:nth-child(n+2) {
122
+ flex: 1;
123
+ }
124
+ }
125
+ .appkit-grid--auto-sm { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
126
+ .appkit-grid--auto-md { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
127
+ .appkit-grid--auto-lg { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
128
+
129
+ @media (min-width: 640px) {
130
+ .appkit-grid--2,
131
+ .appkit-grid--3,
132
+ .appkit-grid--4,
133
+ .appkit-grid--5,
134
+ .appkit-grid--cards {
135
+ grid-template-columns: repeat(2, minmax(0, 1fr));
136
+ }
137
+
138
+ .appkit-grid--6 {
139
+ grid-template-columns: repeat(3, minmax(0, 1fr));
140
+ }
141
+ }
142
+
143
+ @media (min-width: 768px) {
144
+ .appkit-grid--5,
145
+ .appkit-grid--cards {
146
+ grid-template-columns: repeat(3, minmax(0, 1fr));
147
+ }
148
+
149
+ .appkit-grid--halves {
150
+ grid-template-columns: repeat(2, minmax(0, 1fr));
151
+ }
152
+
153
+ .appkit-grid--two-third {
154
+ grid-template-columns: 2fr 1fr;
155
+ }
156
+
157
+ .appkit-grid--one-third {
158
+ grid-template-columns: 1fr 2fr;
159
+ }
160
+
161
+ .appkit-grid--6 {
162
+ grid-template-columns: repeat(4, minmax(0, 1fr));
163
+ }
164
+ }
165
+
166
+ @media (min-width: 1024px) {
167
+ .appkit-grid--3,
168
+ .appkit-grid--4,
169
+ .appkit-grid--5,
170
+ .appkit-grid--cards {
171
+ grid-template-columns: repeat(3, minmax(0, 1fr));
172
+ }
173
+
174
+ .appkit-grid--sidebar {
175
+ grid-template-columns: 280px 1fr;
176
+ }
177
+
178
+ .appkit-grid--sidebar-right {
179
+ grid-template-columns: 1fr 280px;
180
+ }
181
+
182
+ .appkit-grid--sidebar-wide {
183
+ grid-template-columns: 320px 1fr;
184
+ }
185
+
186
+ .appkit-grid--product-detail-triplet {
187
+ grid-template-columns: 1fr 1fr 280px;
188
+ gap: 2rem;
189
+ }
190
+ }
191
+
192
+ @media (min-width: 1280px) {
193
+ .appkit-grid--4 {
194
+ grid-template-columns: repeat(4, minmax(0, 1fr));
195
+ }
196
+
197
+ .appkit-grid--6 {
198
+ grid-template-columns: repeat(5, minmax(0, 1fr));
199
+ }
200
+
201
+ .appkit-grid--product-detail-triplet {
202
+ grid-template-columns: 1fr 1fr 300px;
203
+ }
204
+ }
205
+
206
+ @media (min-width: 1536px) {
207
+ .appkit-grid--2,
208
+ .appkit-grid--halves {
209
+ grid-template-columns: repeat(2, minmax(0, 1fr));
210
+ }
211
+
212
+ .appkit-grid--3 {
213
+ grid-template-columns: repeat(4, minmax(0, 1fr));
214
+ }
215
+
216
+ .appkit-grid--4,
217
+ .appkit-grid--5,
218
+ .appkit-grid--cards {
219
+ grid-template-columns: repeat(5, minmax(0, 1fr));
220
+ }
221
+
222
+ .appkit-grid--6 {
223
+ grid-template-columns: repeat(6, minmax(0, 1fr));
224
+ }
225
+
226
+ .appkit-grid--product-detail-triplet {
227
+ grid-template-columns: 1fr 1fr 320px;
228
+ }
229
+ }
@@ -1,6 +1,6 @@
1
- /* Menu — delegates to Dropdown; no additional styles needed */
2
- /* Exists for style contract compliance. See Dropdown.style.css for actual styles. */
3
-
4
- .appkit-menu {
5
- /* Inherits all styling from Dropdown */
6
- }
1
+ /* Menu — delegates to Dropdown; no additional styles needed */
2
+ /* Exists for style contract compliance. See Dropdown.style.css for actual styles. */
3
+
4
+ .appkit-menu {
5
+ /* Inherits all styling from Dropdown */
6
+ }
@@ -1,19 +1,19 @@
1
- .appkit-nav-loader {
2
- position: fixed;
3
- inset: 0;
4
- z-index: 9998;
5
- display: flex;
6
- flex-direction: column;
7
- align-items: center;
8
- justify-content: center;
9
- gap: 1.25rem;
10
- background: rgba(0, 0, 0, 0.55);
11
- backdrop-filter: blur(4px);
12
- }
13
-
14
- .appkit-nav-loader__timer {
15
- font-size: 0.875rem;
16
- font-variant-numeric: tabular-nums;
17
- color: rgba(255, 255, 255, 0.75);
18
- letter-spacing: 0.04em;
19
- }
1
+ .appkit-nav-loader {
2
+ position: fixed;
3
+ inset: 0;
4
+ z-index: 9998;
5
+ display: flex;
6
+ flex-direction: column;
7
+ align-items: center;
8
+ justify-content: center;
9
+ gap: 1.25rem;
10
+ background: rgba(0, 0, 0, 0.55);
11
+ backdrop-filter: blur(4px);
12
+ }
13
+
14
+ .appkit-nav-loader__timer {
15
+ font-size: 0.875rem;
16
+ font-variant-numeric: tabular-nums;
17
+ color: rgba(255, 255, 255, 0.75);
18
+ letter-spacing: 0.04em;
19
+ }
@@ -1,69 +1,69 @@
1
- /* ResponsiveView — CSS-driven responsive branch visibility */
2
-
3
- .appkit-responsive-view__mobile {
4
- display: block;
5
- }
6
-
7
- .appkit-responsive-view__desktop {
8
- display: none;
9
- }
10
-
11
- .appkit-responsive-view__tablet {
12
- display: none;
13
- }
14
-
15
- /* sm breakpoint */
16
- .appkit-responsive-view--sm .appkit-responsive-view__mobile {
17
- @media (min-width: 640px) {
18
- display: none;
19
- }
20
- }
21
- .appkit-responsive-view--sm .appkit-responsive-view__desktop {
22
- @media (min-width: 640px) {
23
- display: block;
24
- }
25
- }
26
-
27
- /* md breakpoint (default) */
28
- .appkit-responsive-view--md .appkit-responsive-view__mobile {
29
- @media (min-width: 768px) {
30
- display: none;
31
- }
32
- }
33
- .appkit-responsive-view--md .appkit-responsive-view__desktop {
34
- @media (min-width: 768px) {
35
- display: block;
36
- }
37
- }
38
- .appkit-responsive-view--md .appkit-responsive-view__tablet {
39
- @media (min-width: 768px) {
40
- display: block;
41
- }
42
- @media (min-width: 1024px) {
43
- display: none;
44
- }
45
- }
46
-
47
- /* lg breakpoint */
48
- .appkit-responsive-view--lg .appkit-responsive-view__mobile {
49
- @media (min-width: 1024px) {
50
- display: none;
51
- }
52
- }
53
- .appkit-responsive-view--lg .appkit-responsive-view__desktop {
54
- @media (min-width: 1024px) {
55
- display: block;
56
- }
57
- }
58
-
59
- /* xl breakpoint */
60
- .appkit-responsive-view--xl .appkit-responsive-view__mobile {
61
- @media (min-width: 1280px) {
62
- display: none;
63
- }
64
- }
65
- .appkit-responsive-view--xl .appkit-responsive-view__desktop {
66
- @media (min-width: 1280px) {
67
- display: block;
68
- }
69
- }
1
+ /* ResponsiveView — CSS-driven responsive branch visibility */
2
+
3
+ .appkit-responsive-view__mobile {
4
+ display: block;
5
+ }
6
+
7
+ .appkit-responsive-view__desktop {
8
+ display: none;
9
+ }
10
+
11
+ .appkit-responsive-view__tablet {
12
+ display: none;
13
+ }
14
+
15
+ /* sm breakpoint */
16
+ .appkit-responsive-view--sm .appkit-responsive-view__mobile {
17
+ @media (min-width: 640px) {
18
+ display: none;
19
+ }
20
+ }
21
+ .appkit-responsive-view--sm .appkit-responsive-view__desktop {
22
+ @media (min-width: 640px) {
23
+ display: block;
24
+ }
25
+ }
26
+
27
+ /* md breakpoint (default) */
28
+ .appkit-responsive-view--md .appkit-responsive-view__mobile {
29
+ @media (min-width: 768px) {
30
+ display: none;
31
+ }
32
+ }
33
+ .appkit-responsive-view--md .appkit-responsive-view__desktop {
34
+ @media (min-width: 768px) {
35
+ display: block;
36
+ }
37
+ }
38
+ .appkit-responsive-view--md .appkit-responsive-view__tablet {
39
+ @media (min-width: 768px) {
40
+ display: block;
41
+ }
42
+ @media (min-width: 1024px) {
43
+ display: none;
44
+ }
45
+ }
46
+
47
+ /* lg breakpoint */
48
+ .appkit-responsive-view--lg .appkit-responsive-view__mobile {
49
+ @media (min-width: 1024px) {
50
+ display: none;
51
+ }
52
+ }
53
+ .appkit-responsive-view--lg .appkit-responsive-view__desktop {
54
+ @media (min-width: 1024px) {
55
+ display: block;
56
+ }
57
+ }
58
+
59
+ /* xl breakpoint */
60
+ .appkit-responsive-view--xl .appkit-responsive-view__mobile {
61
+ @media (min-width: 1280px) {
62
+ display: none;
63
+ }
64
+ }
65
+ .appkit-responsive-view--xl .appkit-responsive-view__desktop {
66
+ @media (min-width: 1280px) {
67
+ display: block;
68
+ }
69
+ }
@@ -1,7 +1,7 @@
1
- /* RoleBadge — thin wrapper over Badge with role-specific color mapping */
2
- /* No additional styles needed — delegates entirely to Badge component */
3
- /* File exists to satisfy style contract requirement */
4
-
5
- .appkit-role-badge {
6
- /* Inherits all styling from Badge variant */
7
- }
1
+ /* RoleBadge — thin wrapper over Badge with role-specific color mapping */
2
+ /* No additional styles needed — delegates entirely to Badge component */
3
+ /* File exists to satisfy style contract requirement */
4
+
5
+ .appkit-role-badge {
6
+ /* Inherits all styling from Badge variant */
7
+ }