@indice/ng-components 0.2.161 → 0.2.162
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/_styles.css +630 -3
- package/esm2020/lib/controls/advanced-search/advanced-search.component.mjs +112 -0
- package/esm2020/lib/controls/advanced-search/models.mjs +90 -0
- package/esm2020/lib/controls/combobox/combobox.component.mjs +4 -3
- package/esm2020/lib/controls/list-view/list-view.component.mjs +18 -4
- package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +7 -3
- package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +17 -13
- package/esm2020/lib/controls/stepper/lib-step.component.mjs +3 -3
- package/esm2020/lib/controls/stepper/lib-stepper.component.mjs +34 -11
- package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +3 -2
- package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +3 -3
- package/esm2020/lib/helpers/base-list.component.mjs +47 -3
- package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +6 -7
- package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +7 -9
- package/esm2020/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +7 -7
- package/esm2020/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.mjs +45 -0
- package/esm2020/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +25 -0
- package/esm2020/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +21 -0
- package/esm2020/lib/ng-components.module.mjs +22 -6
- package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +1 -2
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/indice-ng-components.mjs +744 -379
- package/fesm2015/indice-ng-components.mjs.map +1 -1
- package/fesm2020/indice-ng-components.mjs +735 -378
- package/fesm2020/indice-ng-components.mjs.map +1 -1
- package/lib/controls/advanced-search/advanced-search.component.d.ts +26 -0
- package/lib/controls/advanced-search/models.d.ts +83 -0
- package/lib/controls/list-view/list-view.component.d.ts +6 -1
- package/lib/controls/nav-links-list/nav-links-list.component.d.ts +5 -2
- package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +3 -3
- package/lib/controls/stepper/lib-stepper.component.d.ts +15 -4
- package/lib/helpers/base-list.component.d.ts +11 -0
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -3
- package/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.d.ts +14 -0
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +12 -0
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +10 -0
- package/lib/ng-components.module.d.ts +9 -4
- package/package.json +2 -2
- package/public-api.d.ts +2 -0
package/_styles.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@layer components {
|
|
2
2
|
|
|
3
3
|
.avatar-container {
|
|
4
|
-
@apply inline-flex items-center justify-center h-8 w-8 rounded-full
|
|
4
|
+
@apply inline-flex items-center justify-center h-8 w-8 rounded-full ;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.avatar-container-large {
|
|
8
|
-
@apply inline-flex items-center justify-center h-12 w-12 rounded-full
|
|
8
|
+
@apply inline-flex items-center justify-center h-12 w-12 rounded-full;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.avatar-text {
|
|
@@ -36,6 +36,414 @@
|
|
|
36
36
|
letter-spacing: 0.2625px;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
@layer components {
|
|
40
|
+
.toggle-button {
|
|
41
|
+
@apply mt-3 relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.toggle-span {
|
|
45
|
+
@apply translate-x-0 pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.enabled {
|
|
49
|
+
@apply bg-indigo-600
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.enabled-anim {
|
|
53
|
+
@apply translate-x-5
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.disabled {
|
|
57
|
+
@apply bg-gray-200
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.disabled-anim {
|
|
61
|
+
@apply translate-x-0
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.modal-open {
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
}
|
|
68
|
+
.modal-open .modal {
|
|
69
|
+
overflow-x: hidden;
|
|
70
|
+
overflow-y: auto;
|
|
71
|
+
}
|
|
72
|
+
.modal {
|
|
73
|
+
position: fixed;
|
|
74
|
+
top: 0;
|
|
75
|
+
left: 0;
|
|
76
|
+
z-index: 1050;
|
|
77
|
+
display: none;
|
|
78
|
+
width: 100%;
|
|
79
|
+
height: 100%;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
outline: 0;
|
|
82
|
+
}
|
|
83
|
+
.modal-dialog {
|
|
84
|
+
position: relative;
|
|
85
|
+
width: auto;
|
|
86
|
+
margin: 0.5rem;
|
|
87
|
+
pointer-events: none;
|
|
88
|
+
}
|
|
89
|
+
.modal.fade .modal-dialog {
|
|
90
|
+
transition: transform 0.3s ease-out;
|
|
91
|
+
transform: translate(0, -50px);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.fade {
|
|
95
|
+
transition: opacity 0.15s linear;
|
|
96
|
+
}
|
|
97
|
+
.fade:not(.show) {
|
|
98
|
+
opacity: 0;
|
|
99
|
+
}
|
|
100
|
+
@media (prefers-reduced-motion: reduce) {
|
|
101
|
+
.modal.fade .modal-dialog {
|
|
102
|
+
transition: none;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
.modal.show .modal-dialog {
|
|
106
|
+
transform: none;
|
|
107
|
+
}
|
|
108
|
+
.modal.modal-static .modal-dialog {
|
|
109
|
+
transform: scale(1.02);
|
|
110
|
+
}
|
|
111
|
+
.modal-dialog-scrollable {
|
|
112
|
+
display: flex;
|
|
113
|
+
max-height: subtract(100%, 1rem);
|
|
114
|
+
}
|
|
115
|
+
.modal-dialog-scrollable .modal-content {
|
|
116
|
+
max-height: subtract(100vh, 1rem);
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
}
|
|
119
|
+
.modal-dialog-scrollable .modal-header,
|
|
120
|
+
.modal-dialog-scrollable .modal-footer {
|
|
121
|
+
flex-shrink: 0;
|
|
122
|
+
}
|
|
123
|
+
.modal-dialog-scrollable .modal-body {
|
|
124
|
+
overflow-y: auto;
|
|
125
|
+
}
|
|
126
|
+
.modal-dialog-centered {
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
min-height: subtract(100%, 1rem);
|
|
130
|
+
}
|
|
131
|
+
.modal-dialog-centered::before {
|
|
132
|
+
display: block;
|
|
133
|
+
height: subtract(100vh, 1rem);
|
|
134
|
+
height: -webkit-min-content;
|
|
135
|
+
height: min-content;
|
|
136
|
+
content: "";
|
|
137
|
+
}
|
|
138
|
+
.modal-dialog-centered.modal-dialog-scrollable {
|
|
139
|
+
flex-direction: column;
|
|
140
|
+
justify-content: center;
|
|
141
|
+
height: 100%;
|
|
142
|
+
}
|
|
143
|
+
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
|
|
144
|
+
max-height: none;
|
|
145
|
+
}
|
|
146
|
+
.modal-dialog-centered.modal-dialog-scrollable::before {
|
|
147
|
+
content: none;
|
|
148
|
+
}
|
|
149
|
+
.modal-content {
|
|
150
|
+
position: relative;
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
width: 100%;
|
|
154
|
+
pointer-events: auto;
|
|
155
|
+
background-color: #fff;
|
|
156
|
+
background-clip: padding-box;
|
|
157
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
158
|
+
border-radius: 0.3rem;
|
|
159
|
+
outline: 0;
|
|
160
|
+
}
|
|
161
|
+
.modal-backdrop {
|
|
162
|
+
position: fixed;
|
|
163
|
+
top: 0;
|
|
164
|
+
left: 0;
|
|
165
|
+
z-index: 1040;
|
|
166
|
+
width: 100vw;
|
|
167
|
+
height: 100vh;
|
|
168
|
+
background-color: #000;
|
|
169
|
+
}
|
|
170
|
+
.modal-backdrop.fade {
|
|
171
|
+
opacity: 0;
|
|
172
|
+
}
|
|
173
|
+
.modal-backdrop.show {
|
|
174
|
+
opacity: 0.5;
|
|
175
|
+
}
|
|
176
|
+
.modal-scrollbar-measure {
|
|
177
|
+
position: absolute;
|
|
178
|
+
top: -9999px;
|
|
179
|
+
width: 50px;
|
|
180
|
+
height: 50px;
|
|
181
|
+
overflow: scroll;
|
|
182
|
+
}
|
|
183
|
+
@media (min-width: 576px) {
|
|
184
|
+
.modal-dialog {
|
|
185
|
+
max-width: 500px;
|
|
186
|
+
margin: 1.75rem auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.modal-dialog-scrollable {
|
|
190
|
+
max-height: subtract(100%, 3.5rem);
|
|
191
|
+
}
|
|
192
|
+
.modal-dialog-scrollable .modal-content {
|
|
193
|
+
max-height: subtract(100vh, 3.5rem);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.modal-dialog-centered {
|
|
197
|
+
min-height: subtract(100%, 3.5rem);
|
|
198
|
+
}
|
|
199
|
+
.modal-dialog-centered::before {
|
|
200
|
+
height: subtract(100vh, 3.5rem);
|
|
201
|
+
height: -webkit-min-content;
|
|
202
|
+
height: min-content;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.modal-sm {
|
|
206
|
+
max-width: 300px;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
@media (min-width: 992px) {
|
|
210
|
+
.modal-lg,
|
|
211
|
+
.modal-xl {
|
|
212
|
+
max-width: 800px;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
@media (min-width: 1200px) {
|
|
216
|
+
.modal-xl {
|
|
217
|
+
max-width: 1140px;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/*# sourceMappingURL=styles.css.map*/
|
|
222
|
+
|
|
223
|
+
@layer components {
|
|
224
|
+
.tab-group-select-hidden {
|
|
225
|
+
@apply sm:hidden;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.tab-group-select {
|
|
229
|
+
@apply block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.tab-active {
|
|
233
|
+
@apply border-blue-500 text-blue-600 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.tab {
|
|
237
|
+
@apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.tab-group-container-nav {
|
|
241
|
+
@apply -mb-px flex space-x-8;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.tab-group-container-hidden {
|
|
245
|
+
@apply hidden sm:block;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.tab-group-container {
|
|
249
|
+
@apply border-b border-gray-200;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@layer components {
|
|
254
|
+
.shell-sidebar-container-fixed {
|
|
255
|
+
@apply fixed w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.shell-sidebar-toggle-button {
|
|
259
|
+
@apply hidden sm:block px-4 border-0 text-white focus:outline-none;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.shell-sidebar-container-hidden {
|
|
263
|
+
@apply hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.shell-sidebar-content-container {
|
|
267
|
+
@apply flex flex-col;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.shell-sidebar-content-container-inner {
|
|
271
|
+
@apply sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.shell-sidebar-header-container {
|
|
275
|
+
@apply flex-1;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.shell-sidebar-component-container {
|
|
279
|
+
@apply flex w-full flex-col h-full min-h-0 bg-gray-800;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.shell-sidebar-component-container-inner {
|
|
283
|
+
@apply flex items-center h-16 flex-shrink-0 px-4 bg-gray-900;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.shell-sidebar-component-links-container {
|
|
287
|
+
@apply pt-4 px-2;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
}
|
|
291
|
+
@layer components {
|
|
292
|
+
}
|
|
293
|
+
@layer components {
|
|
294
|
+
|
|
295
|
+
.sidebar-off-canvas-menu-container {
|
|
296
|
+
@apply relative z-40 md:hidden;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
.sidebar-off-canvas-menu-backdrop {
|
|
302
|
+
@apply fixed inset-0 transition-opacity ease-linear opacity-0 duration-300 pointer-events-none bg-gray-600 bg-opacity-75;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.sidebar-off-canvas-menu-backdrop-opacity-100 {
|
|
306
|
+
@apply fixed inset-0 transition-opacity ease-linear duration-300 pointer-events-none bg-gray-600 bg-opacity-75 opacity-100;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.sidebar-off-canvas-menu-container-inner {
|
|
310
|
+
@apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform translate-x-0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.sidebar-off-canvas-menu-container-inner-active {
|
|
314
|
+
@apply translate-x-0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.sidebar-off-canvas-menu-container-inner-not-active {
|
|
318
|
+
@apply -translate-x-full;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
.sidebar-off-canvas-menu-container-inner-translate-x-full {
|
|
323
|
+
@apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform -translate-x-full;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.sidebar-off-canvas-layout-container {
|
|
327
|
+
@apply relative flex-1 flex flex-col max-w-xs w-full pt-5 pb-4 bg-gray-800;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.sidebar-off-canvas-toggle-button-container {
|
|
331
|
+
@apply absolute top-0 right-0 -mr-12 pt-2;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.sidebar-off-canvas-toggle-button {
|
|
335
|
+
@apply ml-1 flex items-center justify-center h-10 w-10 rounded-full focus:outline-none;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.sidebar-off-canvas-app-logo-container {
|
|
339
|
+
@apply flex-shrink-0 flex items-center px-4;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.sidebar-dummy-element {
|
|
343
|
+
@apply flex-shrink-0 w-14;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.sidebar-static-menu-outer-container {
|
|
347
|
+
@apply hidden md:flex;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.sidebar-static-menu-container {
|
|
351
|
+
@apply flex-col w-64 fixed inset-y-0;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.sidebar-static-menu-container-active {
|
|
355
|
+
@apply flex;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.sidebar-static-menu-container-not-active {
|
|
359
|
+
@apply hidden;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.sidebar-static-menu-container-inner {
|
|
363
|
+
@apply flex-1 flex flex-col min-h-0 bg-gray-800 shadow-lg;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.sidebar-static-menu-app-logo-container {
|
|
367
|
+
@apply flex items-center h-16 flex-shrink-0 px-4 bg-gray-900;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.sidebar-static-menu-header-app-logo-container {
|
|
371
|
+
@apply flex items-center h-16 flex-shrink-0 ;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/* !!!! malakai onoma !!!! */
|
|
375
|
+
.sidebar-static-menu-wrapper {
|
|
376
|
+
@apply flex flex-col;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.sidebar-static-menu-wrapper-active {
|
|
380
|
+
@apply sm:pl-64;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.sidebar-static-menu-toggle-button-container {
|
|
384
|
+
@apply sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-900 shadow;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.sidebar-static-menu-toggle-button {
|
|
388
|
+
@apply px-4 text-white bg-gray-800 focus:outline-none;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.sidebar-static-menu-header-container {
|
|
392
|
+
@apply flex-1 px-4 flex justify-between;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.sidebar-static-menu-header-near-container {
|
|
396
|
+
@apply flex-1 flex;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.sidebar-static-menu-header-far-container {
|
|
400
|
+
@apply ml-4 flex items-center md:ml-6;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
@layer components {
|
|
409
|
+
|
|
410
|
+
.notifications-nav-link {
|
|
411
|
+
@apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.header-notifications {
|
|
415
|
+
@apply flex gap-3 items-center;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.header-notifications-dropdown-button {
|
|
419
|
+
@apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
|
|
420
|
+
focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.header-notifications-dropdown {
|
|
424
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.header-notifications-dropdown-with-username {
|
|
428
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.header-notifications-dropdown-view-all-button{
|
|
432
|
+
@apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.notification-messages::-webkit-scrollbar-thumb {
|
|
436
|
+
@apply bg-gray-600 hover:bg-gray-700;
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.notification-messages::-webkit-scrollbar {
|
|
441
|
+
width: 7px;
|
|
442
|
+
height: 7px;
|
|
443
|
+
background: transparent;
|
|
444
|
+
cursor: pointer;
|
|
445
|
+
/* or add it to the track */
|
|
446
|
+
}
|
|
39
447
|
/*** IMPORTED FILE NOT FOUND ***/
|
|
40
448
|
@import 'tailwindcss/base';/*** --- ***/
|
|
41
449
|
/*** IMPORTED FILE NOT FOUND ***/
|
|
@@ -3047,7 +3455,7 @@
|
|
|
3047
3455
|
}
|
|
3048
3456
|
|
|
3049
3457
|
.pager-icon-button {
|
|
3050
|
-
@apply inline-flex relative ml-2
|
|
3458
|
+
@apply inline-flex relative ml-2 items-center px-2 py-2 rounded-l-sm border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50;
|
|
3051
3459
|
}
|
|
3052
3460
|
|
|
3053
3461
|
.pager-pages-container {
|
|
@@ -3067,6 +3475,54 @@
|
|
|
3067
3475
|
}
|
|
3068
3476
|
}
|
|
3069
3477
|
|
|
3478
|
+
@layer components {
|
|
3479
|
+
|
|
3480
|
+
.advanced-search-container {
|
|
3481
|
+
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
.advanced-search-filter {
|
|
3485
|
+
@apply flex gap-6 mb-2 pr-2;
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
|
+
.advanced-search-filter-field-container {
|
|
3489
|
+
|
|
3490
|
+
}
|
|
3491
|
+
|
|
3492
|
+
.advanced-search-filter-value-container {
|
|
3493
|
+
@apply flex gap-6 mb-6;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.advanced-search-filter-field-label {
|
|
3497
|
+
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
.advanced-search-filter-value-label {
|
|
3501
|
+
@apply block;
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
.advanced-search-filter-value-input {
|
|
3505
|
+
@apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
.advanced-search-filter-value-input-daterange-from {
|
|
3509
|
+
@apply mt-6 p-2;
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
.advanced-search-filter-value-input-daterange-to {
|
|
3513
|
+
@apply mt-6 p-2;
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
.advanced-search-chips {
|
|
3517
|
+
@apply inline-flex rounded-full items-center mx-2 mb-4 py-1 pl-3 pr-1 text-sm font-medium bg-gray-300 text-gray-700;
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
.advanced-search-chips-remove-filter {
|
|
3521
|
+
@apply flex-shrink-0 ml-0.5 h-4 w-4 rounded-full inline-flex items-center justify-center text-gray-400 hover:bg-gray-200 hover:text-gray-500 focus:outline-none focus:bg-gray-500 focus:text-white;
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3070
3526
|
@layer components {
|
|
3071
3527
|
|
|
3072
3528
|
.app-logo {
|
|
@@ -3429,6 +3885,177 @@
|
|
|
3429
3885
|
|
|
3430
3886
|
}
|
|
3431
3887
|
|
|
3888
|
+
@layer components {
|
|
3889
|
+
/* Bullets */
|
|
3890
|
+
.stepper-bullets-container {
|
|
3891
|
+
@apply flex items-center justify-center;
|
|
3892
|
+
}
|
|
3893
|
+
.stepper-bullets-counter {
|
|
3894
|
+
@apply text-sm font-medium;
|
|
3895
|
+
}
|
|
3896
|
+
.stepper-bullets-ol {
|
|
3897
|
+
@apply ml-8 flex items-center space-x-5;
|
|
3898
|
+
}
|
|
3899
|
+
.stepper-bullets-completed-step {
|
|
3900
|
+
@apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
|
|
3901
|
+
}
|
|
3902
|
+
.stepper-bullets-active-step {
|
|
3903
|
+
@apply relative flex items-center justify-center;
|
|
3904
|
+
}
|
|
3905
|
+
.stepper-bullets-active-step-level1 {
|
|
3906
|
+
@apply absolute w-5 h-5 p-px flex;
|
|
3907
|
+
}
|
|
3908
|
+
.stepper-bullets-active-step-level11 {
|
|
3909
|
+
@apply w-full h-full rounded-full bg-blue-200;
|
|
3910
|
+
}
|
|
3911
|
+
.stepper-bullets-active-step-bullet {
|
|
3912
|
+
@apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
|
|
3913
|
+
}
|
|
3914
|
+
.stepper-bullets-upcoming-step {
|
|
3915
|
+
@apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
/* Bullets & Text */
|
|
3919
|
+
.stepper-bullets-and-text-container {
|
|
3920
|
+
@apply flex items-center justify-center;
|
|
3921
|
+
}
|
|
3922
|
+
.stepper-bullets-and-text-ol {
|
|
3923
|
+
@apply space-y-6;
|
|
3924
|
+
}
|
|
3925
|
+
.stepper-bullets-and-text-completed-step {
|
|
3926
|
+
@apply flex items-start;
|
|
3927
|
+
}
|
|
3928
|
+
.stepper-bullets-and-text-completed-step-level1 {
|
|
3929
|
+
@apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
|
|
3930
|
+
}
|
|
3931
|
+
.stepper-bullets-and-text-completed-step-container {
|
|
3932
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
3933
|
+
}
|
|
3934
|
+
.stepper-bullets-and-text-active-step {
|
|
3935
|
+
@apply flex items-start;
|
|
3936
|
+
}
|
|
3937
|
+
.stepper-bullets-and-text-active-step-level1 {
|
|
3938
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
3939
|
+
}
|
|
3940
|
+
.stepper-bullets-and-text-active-step-level11 {
|
|
3941
|
+
@apply absolute h-4 w-4 rounded-full bg-blue-200;
|
|
3942
|
+
}
|
|
3943
|
+
.stepper-bullets-and-text-active-step-level12 {
|
|
3944
|
+
@apply relative block w-2 h-2 bg-blue-600 rounded-full;
|
|
3945
|
+
}
|
|
3946
|
+
.stepper-bullets-and-text-active-step-container {
|
|
3947
|
+
@apply ml-3 text-sm font-medium text-blue-600;
|
|
3948
|
+
}
|
|
3949
|
+
.stepper-bullets-and-text-upcoming-step {
|
|
3950
|
+
@apply flex items-start;
|
|
3951
|
+
}
|
|
3952
|
+
.stepper-bullets-and-text-upcoming-step-level1 {
|
|
3953
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
3954
|
+
}
|
|
3955
|
+
.stepper-bullets-and-text-upcoming-step-level2 {
|
|
3956
|
+
@apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
|
|
3957
|
+
}
|
|
3958
|
+
.stepper-bullets-and-text-upcoming-step-container {
|
|
3959
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
/* Circles */
|
|
3963
|
+
|
|
3964
|
+
/* Panels With Border */
|
|
3965
|
+
.panels-with-border-container {
|
|
3966
|
+
@apply border-t border-b border-gray-200;
|
|
3967
|
+
}
|
|
3968
|
+
.panels-with-border-nav {
|
|
3969
|
+
@apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
|
|
3970
|
+
}
|
|
3971
|
+
.panels-with-border-ol {
|
|
3972
|
+
@apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
|
|
3973
|
+
}
|
|
3974
|
+
.panels-with-border-li {
|
|
3975
|
+
@apply relative overflow-hidden lg:flex-1 cursor-pointer;
|
|
3976
|
+
}
|
|
3977
|
+
.panels-with-border-completed-step {
|
|
3978
|
+
@apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
|
|
3979
|
+
}
|
|
3980
|
+
.panels-with-border-completed-step-level1 {
|
|
3981
|
+
@apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
3982
|
+
}
|
|
3983
|
+
.panels-with-border-completed-step-level2 {
|
|
3984
|
+
@apply px-6 py-5 flex items-start text-sm font-medium;
|
|
3985
|
+
}
|
|
3986
|
+
.panels-with-border-completed-step-level21 {
|
|
3987
|
+
@apply flex-shrink-0;
|
|
3988
|
+
}
|
|
3989
|
+
.panels-with-border-completed-step-level211 {
|
|
3990
|
+
@apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
|
|
3991
|
+
}
|
|
3992
|
+
.panels-with-border-completed-step-level22 {
|
|
3993
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
3994
|
+
}
|
|
3995
|
+
.panels-with-border-completed-step-level221 {
|
|
3996
|
+
@apply text-xs font-semibold tracking-wide uppercase;
|
|
3997
|
+
}
|
|
3998
|
+
.panels-with-border-completed-step-level222 {
|
|
3999
|
+
@apply text-sm font-medium text-gray-500;
|
|
4000
|
+
}
|
|
4001
|
+
.panels-with-border-active-step {
|
|
4002
|
+
@apply border border-gray-200 overflow-hidden lg:border-0;
|
|
4003
|
+
}
|
|
4004
|
+
.panels-with-border-active-step-level1 {
|
|
4005
|
+
@apply absolute top-0 left-0 w-1 h-full bg-blue-600 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
4006
|
+
}
|
|
4007
|
+
.panels-with-border-active-step-level2 {
|
|
4008
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
4009
|
+
}
|
|
4010
|
+
.panels-with-border-active-step-level21 {
|
|
4011
|
+
@apply flex-shrink-0;
|
|
4012
|
+
}
|
|
4013
|
+
.panels-with-border-active-step-level211 {
|
|
4014
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
|
|
4015
|
+
}
|
|
4016
|
+
.panels-with-border-active-step-level211-text {
|
|
4017
|
+
@apply text-blue-600;
|
|
4018
|
+
}
|
|
4019
|
+
.panels-with-border-active-step-level22 {
|
|
4020
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
4021
|
+
}
|
|
4022
|
+
.panels-with-border-active-step-level221 {
|
|
4023
|
+
@apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
|
|
4024
|
+
}
|
|
4025
|
+
.panels-with-border-active-step-level222 {
|
|
4026
|
+
@apply text-sm font-medium text-gray-500;
|
|
4027
|
+
}
|
|
4028
|
+
.panels-with-border-step-separator {
|
|
4029
|
+
@apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
|
|
4030
|
+
}
|
|
4031
|
+
.panels-with-border-upcoming-step {
|
|
4032
|
+
@apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
|
|
4033
|
+
}
|
|
4034
|
+
.panels-with-border-upcoming-step-level1 {
|
|
4035
|
+
@apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
4036
|
+
}
|
|
4037
|
+
.panels-with-border-upcoming-step-level2 {
|
|
4038
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
4039
|
+
}
|
|
4040
|
+
.panels-with-border-upcoming-step-level21 {
|
|
4041
|
+
@apply flex-shrink-0;
|
|
4042
|
+
}
|
|
4043
|
+
.panels-with-border-upcoming-step-level211 {
|
|
4044
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
|
|
4045
|
+
}
|
|
4046
|
+
.panels-with-border-upcoming-step-level211-text {
|
|
4047
|
+
@apply text-gray-500;
|
|
4048
|
+
}
|
|
4049
|
+
.panels-with-border-upcoming-step-level22 {
|
|
4050
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
4051
|
+
}
|
|
4052
|
+
.panels-with-border-upcoming-step-level221 {
|
|
4053
|
+
@apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
|
|
4054
|
+
}
|
|
4055
|
+
.panels-with-border-upcoming-step-level222 {
|
|
4056
|
+
@apply text-sm font-medium text-gray-500;
|
|
4057
|
+
}
|
|
4058
|
+
}
|
|
3432
4059
|
@layer components {
|
|
3433
4060
|
.tab-group-select-hidden {
|
|
3434
4061
|
@apply sm:hidden;
|