@foxeltech/angular-ui 0.0.1

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 (68) hide show
  1. package/BeVietnamPro/BeVietnamPro-Bold.ttf +0 -0
  2. package/BeVietnamPro/BeVietnamPro-ExtraLight.ttf +0 -0
  3. package/BeVietnamPro/BeVietnamPro-Light.ttf +0 -0
  4. package/BeVietnamPro/BeVietnamPro-Medium.ttf +0 -0
  5. package/BeVietnamPro/BeVietnamPro-Regular.ttf +0 -0
  6. package/BeVietnamPro/BeVietnamPro-SemiBold.ttf +0 -0
  7. package/BeVietnamPro/BeVietnamPro-Thin.ttf +0 -0
  8. package/README.md +3 -0
  9. package/SpaceMono-Regular.ttf +0 -0
  10. package/animations.css +130 -0
  11. package/components.css +480 -0
  12. package/dialogs.css +70 -0
  13. package/dm-sans/DMSans-Bold.ttf +0 -0
  14. package/dm-sans/DMSans-Light.ttf +0 -0
  15. package/dm-sans/DMSans-Medium.ttf +0 -0
  16. package/dm-sans/DMSans-Regular.ttf +0 -0
  17. package/dm-sans/DMSans-SemiBold.ttf +0 -0
  18. package/dm-sans/DMSans-Thin.ttf +0 -0
  19. package/fesm2022/foxeltech-angular-ui.mjs +3450 -0
  20. package/fesm2022/foxeltech-angular-ui.mjs.map +1 -0
  21. package/fonts.css +125 -0
  22. package/index.d.ts +1022 -0
  23. package/orbitron/Orbitron-Bold.ttf +0 -0
  24. package/orbitron/Orbitron-Medium.ttf +0 -0
  25. package/orbitron/Orbitron-Regular.ttf +0 -0
  26. package/orbitron/Orbitron-SemiBold.ttf +0 -0
  27. package/package.json +56 -0
  28. package/src/lib/styles/animations.css +130 -0
  29. package/src/lib/styles/components.css +480 -0
  30. package/src/lib/styles/dialogs.css +70 -0
  31. package/src/lib/styles/fonts.css +125 -0
  32. package/src/lib/styles/tailwind.css +18 -0
  33. package/src/lib/styles/theme.css +67 -0
  34. package/src/lib/ui/components/button/button.component.html +223 -0
  35. package/src/lib/ui/components/chart/chart.component.html +11 -0
  36. package/src/lib/ui/components/checkbox/checkbox.component.html +42 -0
  37. package/src/lib/ui/components/circle-progress-bar/circle-progress-bar.component.html +44 -0
  38. package/src/lib/ui/components/datetime-picker/datetime-picker.component.html +36 -0
  39. package/src/lib/ui/components/dnd-upload/dnd-upload.component.html +34 -0
  40. package/src/lib/ui/components/drawer/drawer.component.html +101 -0
  41. package/src/lib/ui/components/flow-connection/flow-connection.component.html +10 -0
  42. package/src/lib/ui/components/hero-icon/hero-icon.component.html +8 -0
  43. package/src/lib/ui/components/input/input.component.css +0 -0
  44. package/src/lib/ui/components/input/input.component.html +48 -0
  45. package/src/lib/ui/components/kanban-board/kanban-board.component.html +43 -0
  46. package/src/lib/ui/components/loading-panel/loading-panel.component.html +51 -0
  47. package/src/lib/ui/components/radio-button/radio-button.component.css +0 -0
  48. package/src/lib/ui/components/radio-button/radio-button.component.html +35 -0
  49. package/src/lib/ui/components/radio-button-toggle/radio-button-toggle.component.html +34 -0
  50. package/src/lib/ui/components/rich-text-area/rich-text-area.component.html +3 -0
  51. package/src/lib/ui/components/search-bar/search-bar.component.html +22 -0
  52. package/src/lib/ui/components/select/select.component.css +102 -0
  53. package/src/lib/ui/components/select/select.component.html +42 -0
  54. package/src/lib/ui/components/skeleton-table-loading/skeleton-table-loading.component.html +21 -0
  55. package/src/lib/ui/components/slider/slider.component.html +54 -0
  56. package/src/lib/ui/components/switch/switch.component.html +21 -0
  57. package/src/lib/ui/components/tab-component/tab.component.html +1 -0
  58. package/src/lib/ui/components/tab-group/tab-group.component.html +75 -0
  59. package/src/lib/ui/components/table-cell/table-cell.component.html +7 -0
  60. package/src/lib/ui/components/tag/tag.component.html +15 -0
  61. package/src/lib/ui/components/toast/toast.component.html +48 -0
  62. package/src/lib/ui/components/toast-container/toast-container.component.html +12 -0
  63. package/src/lib/ui/components/tree-diagram/tree-diagram.component.html +40 -0
  64. package/src/lib/ui/dialogs/confirmation/confirmation.component.html +17 -0
  65. package/tailwind-config.d.ts +4 -0
  66. package/tailwind.config.js +88 -0
  67. package/tailwind.css +18 -0
  68. package/theme.css +67 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @fxlt/common-ui
2
+
3
+ Common UI & Service Library
Binary file
package/animations.css ADDED
@@ -0,0 +1,130 @@
1
+ @keyframes horizontal-fade-in {
2
+ from {
3
+ opacity: 0;
4
+ transform: translateX(30px);
5
+ }
6
+ to {
7
+ opacity: 1;
8
+ transform: translateX(0);
9
+ }
10
+ }
11
+
12
+ .horizontal-fade-in-animation {
13
+ animation: horizontal-fade-in 0.4s ease-out forwards;
14
+ }
15
+
16
+ @keyframes top-fade-in {
17
+ from {
18
+ opacity: 0;
19
+ transform: translateY(-30px);
20
+ }
21
+ to {
22
+ opacity: 1;
23
+ transform: translateY(0);
24
+ }
25
+ }
26
+
27
+ .top-fade-in-animation {
28
+ animation: top-fade-in 0.4s ease-out forwards;
29
+ }
30
+
31
+ @keyframes bottom-fade-in {
32
+ from {
33
+ opacity: 0;
34
+ transform: translateY(30px);
35
+ }
36
+ to {
37
+ opacity: 1;
38
+ transform: translateY(0);
39
+ }
40
+ }
41
+
42
+ .bottom-fade-in-animation {
43
+ animation: bottom-fade-in 0.4s ease-out forwards;
44
+ }
45
+
46
+ @keyframes fade-in {
47
+ from {
48
+ opacity: 0;
49
+ }
50
+ to {
51
+ opacity: 1;
52
+ }
53
+ }
54
+
55
+ .fade-in-animation {
56
+ animation: fade-in 0.4s ease-out forwards;
57
+ }
58
+ /* out animation */
59
+ @keyframes horizontal-fade-out {
60
+ from {
61
+ opacity: 1;
62
+ transform: translateX(0);
63
+ }
64
+ to {
65
+ opacity: 0;
66
+ transform: translateX(30px);
67
+ }
68
+ }
69
+
70
+ .horizontal-fade-out-animation {
71
+ animation: horizontal-fade-out 0.4s ease-out forwards;
72
+ }
73
+
74
+ @keyframes top-fade-out {
75
+ from {
76
+ opacity: 1;
77
+ transform: translateY(0);
78
+ }
79
+ to {
80
+ opacity: 0;
81
+ transform: translateY(-30px);
82
+ }
83
+ }
84
+
85
+ .top-fade-out-animation {
86
+ animation: top-fade-out 0.4s ease-out forwards;
87
+ }
88
+
89
+ @keyframes bottom-fade-out {
90
+ from {
91
+ opacity: 1;
92
+ transform: translateY(30px);
93
+ }
94
+ to {
95
+ opacity: 0;
96
+ transform: translateY(0);
97
+ }
98
+ }
99
+
100
+ .bottom-fade-out-animation {
101
+ animation: bottom-fade-out 0.4s ease-out forwards;
102
+ }
103
+
104
+ @keyframes fade-out {
105
+ from {
106
+ opacity: 1;
107
+ }
108
+ to {
109
+ opacity: 0;
110
+ }
111
+ }
112
+
113
+ .fade-out-animation {
114
+ animation: fade-out 0.4s ease-out forwards;
115
+ }
116
+
117
+ @keyframes pulse-glow {
118
+ 0%,
119
+ 100% {
120
+ opacity: 1;
121
+ filter: brightness(1);
122
+ }
123
+ 50% {
124
+ opacity: 0.7;
125
+ filter: brightness(1.4);
126
+ }
127
+ }
128
+ .animate-pulse-glow {
129
+ animation: pulse-glow 3s ease-in-out infinite;
130
+ }
package/components.css ADDED
@@ -0,0 +1,480 @@
1
+ /* Material Override */
2
+ .mdc-line-ripple,
3
+ .mat-mdc-form-field-focus-overlay,
4
+ .mat-mdc-form-field-outline,
5
+ .mat-mdc-form-field-underline,
6
+ .mat-form-field-underline {
7
+ display: none !important;
8
+ }
9
+
10
+ .cdk-overlay-container {
11
+ z-index: 2000 !important;
12
+ }
13
+
14
+ .mat-mdc-form-field.mat-mdc-form-field-type-mat-select .mdc-notched-outline__leading,
15
+ .mat-mdc-form-field.mat-mdc-form-field-type-mat-select .mdc-notched-outline__notch,
16
+ .mat-mdc-form-field.mat-mdc-form-field-type-mat-select .mdc-notched-outline__trailing {
17
+ border-color: rgb(var(--border-default)) !important;
18
+ }
19
+
20
+ .mat-mdc-form-field-flex {
21
+ padding-left: 10px;
22
+ padding-right: 10px;
23
+ }
24
+
25
+ .mat-mdc-paginator-range-label,
26
+ .mat-mdc-paginator-page-size-label {
27
+ font-size: 14px;
28
+ color: rgb(var(--text-secondary));
29
+ font-weight: 500;
30
+ }
31
+ .mat-mdc-select-value-text {
32
+ color: rgb(var(--text-primary));
33
+ }
34
+ .mat-mdc-paginator-icon {
35
+ color: rgb(var(--text-primary));
36
+ }
37
+ .mdc-list-item__primary-text {
38
+ color: rgb(var(--text-primary));
39
+ }
40
+ .mat-mdc-option.mdc-list-item.mdc-list-item--selected.mat-mdc-option-active
41
+ .mdc-list-item__primary-text {
42
+ color: rgb(var(--text-primary)) !important;
43
+ font-weight: 700 !important;
44
+ }
45
+
46
+ .mat-expansion-panel {
47
+ box-shadow: none !important; /* Remove shadow */
48
+ border-radius: 0 !important; /* Remove border radius */
49
+ background-color: transparent !important; /* Make background transparent */
50
+ }
51
+
52
+ .mat-expansion-panel-header {
53
+ height: auto !important;
54
+ padding: 0 !important;
55
+ background-color: transparent !important;
56
+ }
57
+
58
+ .mat-expansion-panel-header .mat-panel-title,
59
+ .mat-expansion-panel-header .mat-panel-description {
60
+ color: unset !important;
61
+ margin: 0 !important;
62
+ }
63
+
64
+ .mat-expansion-panel-body {
65
+ padding: 0 !important;
66
+ }
67
+
68
+ .mat-expansion-panel-content {
69
+ background-color: transparent !important;
70
+ }
71
+
72
+ .mat-expansion-indicator::after {
73
+ display: none !important;
74
+ }
75
+
76
+ .mat-content.mat-content-hide-toggle {
77
+ margin-right: 0px !important;
78
+ }
79
+ .mat-mdc-tooltip {
80
+ border-radius: 6px !important;
81
+ background-color: rgb(var(--bg-primary)) !important;
82
+ }
83
+
84
+ .mat-mdc-table {
85
+ border: 2px solid rgb(var(--border-default)) !important;
86
+ border-radius: 4px !important;
87
+ }
88
+
89
+ .mdc-data-table__header-row {
90
+ height: 32px !important;
91
+ min-height: 32px !important;
92
+ }
93
+
94
+ .mdc-data-table__header-cell {
95
+ border-left: 1px solid rgb(var(--border-default)) !important;
96
+ background-color: rgb(var(--bg-primary-hover)) !important;
97
+ padding-top: 4px !important;
98
+ padding-bottom: 4px !important;
99
+ line-height: 24px !important;
100
+ font-family: 'BeVietnamPro';
101
+ }
102
+
103
+ .mdc-data-table__row {
104
+ height: 0 !important;
105
+ min-height: 0 !important;
106
+ }
107
+
108
+ .mdc-data-table__cell {
109
+ border-left: 1px solid rgb(var(--border-default)) !important;
110
+ background-color: rgb(var(--bg-primary)) !important;
111
+ font-family: 'BeVietnamPro';
112
+ }
113
+
114
+ .mat-mdc-cell {
115
+ border-color: rgb(var(--border-default)) !important;
116
+ }
117
+
118
+ .mat-mdc-select-panel {
119
+ background-color: rgb(var(--bg-primary)) !important;
120
+ border: 1px solid rgb(var(--border-default)) !important;
121
+ border-radius: 0.5rem !important;
122
+ box-shadow: 0 2px 4px rgb(var(--shadow-color) / 0.1) !important;
123
+ }
124
+
125
+ .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow {
126
+ color: rgb(var(--text-primary)) !important;
127
+ }
128
+
129
+ .mat-mdc-menu-panel {
130
+ border-radius: 6px !important;
131
+ border-color: rgb(var(--border-default)) !important;
132
+ }
133
+ .mat-mdc-menu-panel .mat-mdc-menu-content {
134
+ @apply bg-bg-primary shadow-none border rounded-[6px] border-border-default flex flex-col;
135
+ }
136
+
137
+ .mat-mdc-option .mat-pseudo-checkbox {
138
+ color: rgb(var(--text-primary));
139
+ }
140
+
141
+ .mat-mdc-dialog-surface {
142
+ background-color: rgb(var(--bg-primary)) !important;
143
+ border-radius: 8px !important;
144
+ }
145
+ .mat-mdc-dialog-container .mat-mdc-dialog-content {
146
+ letter-spacing: 0 !important;
147
+ padding: 10px 20px !important;
148
+ }
149
+
150
+ input[type='number']::-webkit-outer-spin-button,
151
+ input[type='number']::-webkit-inner-spin-button {
152
+ -webkit-appearance: none;
153
+ margin: 0;
154
+ }
155
+
156
+ /* Hide number input arrows in Firefox */
157
+ input[type='number'] {
158
+ -moz-appearance: textfield;
159
+ }
160
+
161
+ input[type='password'] {
162
+ background-color: rgb(var(--bg-primary)) !important;
163
+ color: inherit;
164
+ transition: none !important;
165
+ -webkit-text-security: disc;
166
+ }
167
+
168
+ /* system style */
169
+ .txt-heading-02 {
170
+ @apply font-semibold text-4xl tracking-normal leading-10 text-text-primary;
171
+ }
172
+ .txt-heading-03 {
173
+ @apply font-semibold text-3xl tracking-normal leading-10 text-text-primary;
174
+ }
175
+ .txt-heading-04 {
176
+ @apply font-semibold text-2xl tracking-normal leading-9 text-text-primary;
177
+ }
178
+ .txt-heading-05 {
179
+ @apply font-semibold text-xl tracking-normal leading-7 text-text-primary;
180
+ }
181
+ .txt-heading-06 {
182
+ @apply font-semibold text-base tracking-normal leading-6 text-text-primary;
183
+ }
184
+ .txt-heading-07 {
185
+ @apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
186
+ }
187
+ .txt-heading-table {
188
+ @apply text-base font-dmsans font-semibold text-text-primary tracking-tight;
189
+ }
190
+ .txt-heading-compact-02 {
191
+ @apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
192
+ }
193
+ .txt-body-compact-01 {
194
+ @apply font-normal text-sm tracking-normal leading-5 text-text-primary;
195
+ }
196
+ .txt-body-01 {
197
+ @apply font-normal text-sm tracking-normal leading-5 text-text-primary;
198
+ }
199
+ .txt-body-02 {
200
+ @apply font-normal text-base tracking-normal leading-6 text-text-primary;
201
+ }
202
+ .txt-body-medium-01 {
203
+ @apply font-medium text-sm tracking-normal leading-5 text-text-primary;
204
+ }
205
+ .txt-body-medium-02 {
206
+ @apply font-medium text-base tracking-normal leading-6 text-text-primary;
207
+ }
208
+ .txt-body-p-bold {
209
+ @apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
210
+ }
211
+ .txt-body-p-normal {
212
+ @apply font-normal text-sm tracking-normal leading-5 text-text-primary;
213
+ }
214
+ .txt-utility-caption {
215
+ @apply font-normal text-xs tracking-normal leading-4 text-text-primary;
216
+ }
217
+ .txt-utility-button {
218
+ @apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
219
+ }
220
+ .txt-utility-description {
221
+ @apply font-light text-xs tracking-normal leading-4 text-text-secondary;
222
+ }
223
+ .txt-tag-label {
224
+ @apply font-medium text-xs;
225
+ }
226
+
227
+ .txt-page-title {
228
+ @apply text-3xl text-text-primary font-semibold tracking-normal leading-10;
229
+ }
230
+ .txt-page-subtitle {
231
+ @apply leading-6 text-base text-text-secondary font-normal tracking-normal;
232
+ }
233
+ .txt-default {
234
+ @apply text-sm font-normal text-text-primary tracking-normal;
235
+ }
236
+ .txt-field-label {
237
+ @apply mb-1 text-sm font-semibold text-text-primary tracking-normal;
238
+ }
239
+ .txt-invalid {
240
+ @apply mt-1 text-sm text-text-error text-left;
241
+ }
242
+ .txt-placeholder {
243
+ @apply text-sm font-normal text-text-placeholder tracking-normal;
244
+ }
245
+ .txt-required {
246
+ @apply ml-[1px] text-sm font-semibold text-text-error;
247
+ }
248
+ .txt-section-header {
249
+ @apply mb-1 text-xl text-text-primary font-semibold tracking-normal leading-7;
250
+ }
251
+ .txt-section-subtitle {
252
+ @apply text-sm text-text-secondary font-normal tracking-normal;
253
+ }
254
+ .txt-table-header {
255
+ @apply text-xs text-text-secondary font-semibold tracking-normal;
256
+ }
257
+ .txt-table-content {
258
+ @apply text-sm text-text-primary font-normal tracking-normal;
259
+ }
260
+ .txt-table-description {
261
+ @apply text-xs text-text-placeholder font-normal tracking-normal;
262
+ }
263
+ .txt-card-header {
264
+ @apply mb-1 text-xl text-text-primary font-medium tracking-normal;
265
+ }
266
+ .txt-card-content {
267
+ @apply text-sm font-normal text-text-secondary tracking-normal;
268
+ }
269
+ .txt-card-description {
270
+ @apply text-xs font-light text-text-secondary tracking-normal;
271
+ }
272
+ .txt-card-info-header {
273
+ @apply text-sm font-normal text-text-primary tracking-normal;
274
+ }
275
+ .txt-card-info-content {
276
+ @apply text-2xl font-semibold text-text-primary tracking-normal;
277
+ }
278
+ .txt-card-info-description {
279
+ @apply text-xs font-light text-text-secondary tracking-normal;
280
+ }
281
+ .txt-tag-common {
282
+ @apply font-medium text-xs;
283
+ }
284
+ .txt-tag-default {
285
+ @apply txt-tag-common text-text-secondary;
286
+ }
287
+ .txt-tag-success {
288
+ @apply txt-tag-common text-success;
289
+ }
290
+ .txt-tag-warning {
291
+ @apply txt-tag-common text-warning;
292
+ }
293
+ .txt-tag-critical {
294
+ @apply txt-tag-common text-critical;
295
+ }
296
+ .txt-tag-danger {
297
+ @apply txt-tag-common text-danger;
298
+ }
299
+ .txt-tag-information {
300
+ @apply txt-tag-common text-information;
301
+ }
302
+ .txt-tag-discovery {
303
+ @apply txt-tag-common text-discovery;
304
+ }
305
+ .txt-link {
306
+ @apply font-semibold text-text-link text-sm tracking-normal;
307
+ }
308
+ .txt-otp-input {
309
+ @apply text-center text-xl tracking-widest font-[700] placeholder:font-normal placeholder:text-text-placeholder placeholder:tracking-normal;
310
+ }
311
+ .txt-hash {
312
+ @apply font-mono text-sm text-text-primary tracking-normal;
313
+ }
314
+
315
+ .btn-common {
316
+ @apply flex text-sm h-10 font-semibold px-xl py-normal items-center justify-center rounded-lg shadow-sm transition-all duration-200 disabled:opacity-50 disabled:pointer-events-none disabled:cursor-not-allowed;
317
+ }
318
+ .btn-default {
319
+ @apply btn-common bg-button-default hover:opacity-75 text-text-inverse;
320
+ }
321
+ .btn-primary {
322
+ @apply btn-common bg-button-primary hover:opacity-75 text-text-focus;
323
+ }
324
+ .btn-alternative {
325
+ @apply btn-common hover:bg-bg-hover text-text-primary border border-border-default;
326
+ }
327
+ .btn-menu-common {
328
+ @apply flex flex-row items-center px-semi;
329
+ }
330
+ .btn-menu-top {
331
+ @apply btn-menu-common border-b border-border-default pt-small pb-semi;
332
+ }
333
+ .btn-menu-middle {
334
+ @apply btn-menu-common border-b border-border-default py-semi;
335
+ }
336
+ .btn-menu-bottom {
337
+ @apply btn-menu-common pt-semi pb-small;
338
+ }
339
+
340
+ .input-default {
341
+ @apply block h-[36px] text-text-primary placeholder:text-text-placeholder bg-bg-primary w-full rounded-md border px-semi py-normal border-border-default focus:outline-none focus:border-2 focus:border-border-interactive text-sm text-text-primary tracking-normal ring-0 transition-colors duration-500 ease-in-out;
342
+ }
343
+ .input-invalid {
344
+ @apply border-bg-error focus:ring-bg-error focus:border-bg-error;
345
+ }
346
+ .input-focus-secondary {
347
+ @apply focus:border-2 focus:border-border-hover2 focus:bg-bg-hover2;
348
+ }
349
+ .input-otp {
350
+ @apply bg-bg-primary w-full rounded-md border px-semi py-normal border-border-default focus:outline-none focus:border-2 focus:border-border-interactive text-text-primary ring-0 transition-colors duration-500 ease-in-out;
351
+ }
352
+
353
+ .card-common {
354
+ @apply text-left px-xl py-large border border-border-default rounded-lg shadow-sm transition-colors duration-500 ease-in-out;
355
+ }
356
+ .card-information {
357
+ @apply card-common hover:opacity-70 hover:shadow-md hover:border-border-selected;
358
+ }
359
+ .card-create-container {
360
+ @apply bg-bg-primary pb-normal border-b border-border-default transition-colors duration-500 ease-in-out;
361
+ }
362
+ .card-list-item {
363
+ @apply flex items-center justify-between rounded-md px-semi py-normal bg-bg-primary mb-normal last:mb-0;
364
+ }
365
+
366
+ .tag-common {
367
+ @apply flex min-w-7 px-normal py-small hover:opacity-70 items-center justify-center;
368
+ }
369
+ .tag-default {
370
+ @apply tag-common bg-bg-hover;
371
+ }
372
+ .tag-success {
373
+ @apply tag-common bg-success/10;
374
+ }
375
+ .tag-warning {
376
+ @apply tag-common bg-warning/10;
377
+ }
378
+ .tag-danger {
379
+ @apply tag-common bg-danger/10;
380
+ }
381
+ .tag-critical {
382
+ @apply tag-common bg-critical/10;
383
+ }
384
+ .tag-discovery {
385
+ @apply tag-common bg-discovery/10;
386
+ }
387
+ .tag-information {
388
+ @apply tag-common bg-information/10;
389
+ }
390
+ .tag-default-solid {
391
+ @apply tag-common bg-bg-hover;
392
+ }
393
+ .tag-success-solid {
394
+ @apply tag-common bg-success;
395
+ }
396
+ .tag-warning-solid {
397
+ @apply tag-common bg-warning;
398
+ }
399
+ .tag-danger-solid {
400
+ @apply tag-common bg-danger;
401
+ }
402
+ .tag-critical-solid {
403
+ @apply tag-common bg-critical;
404
+ }
405
+ .tag-discovery-solid {
406
+ @apply tag-common bg-discovery;
407
+ }
408
+ .tag-information-solid {
409
+ @apply tag-common bg-information;
410
+ }
411
+ .tag-square {
412
+ @apply rounded px-semi py-small;
413
+ }
414
+ .tag-round {
415
+ @apply rounded-2xl;
416
+ }
417
+ /* progress bar */
418
+ .progress-bar-container {
419
+ @apply bg-bg-hover mt-semi rounded-md h-1.5 overflow-hidden shadow-inner;
420
+ }
421
+ .progress-bar-buffer {
422
+ @apply h-1.5 bg-primary rounded-md transition-all duration-700 ease-in-out;
423
+ }
424
+
425
+ /* radio button */
426
+ .radio-container {
427
+ @apply w-large h-large flex items-center justify-center rounded-full border;
428
+ }
429
+
430
+ .radio-dot {
431
+ @apply w-1.5 h-1.5 bg-bg-primary rounded-full;
432
+ }
433
+ .radio-checked {
434
+ @apply bg-bg-error border-bg-error;
435
+ }
436
+ .radio-uncheck {
437
+ @apply bg-bg-primary border-border-strong;
438
+ }
439
+ .table-page-container {
440
+ max-height: calc(100vh - 315px);
441
+ overflow: auto;
442
+ }
443
+ .table-cell-padding {
444
+ padding-top: 8px !important;
445
+ padding-bottom: 8px !important;
446
+ padding-left: 16px !important;
447
+ padding-right: 16px !important;
448
+ }
449
+ .table-expanded-row {
450
+ padding-top: 16px !important;
451
+ padding-bottom: 16px !important;
452
+ }
453
+ .table-action-col {
454
+ width: 40px;
455
+ }
456
+ .table-status-col {
457
+ width: 200px;
458
+ }
459
+ .table-empty {
460
+ @apply w-full h-[100px] flex items-center justify-center;
461
+ }
462
+ .dialog-container {
463
+ @apply rounded-lg border border-border-default;
464
+ }
465
+ .dialog-header {
466
+ @apply px-xl py-semi;
467
+ }
468
+ .border-gradient-primary {
469
+ border: 1px solid transparent;
470
+ background:
471
+ linear-gradient(var(--surface, #fff), var(--surface, #fff)) padding-box,
472
+ linear-gradient(
473
+ 135deg,
474
+ rgb(var(--gradient-primary-start)),
475
+ rgb(var(--gradient-primary-end))
476
+ ) border-box;
477
+ }
478
+ .skeleton-load {
479
+ @apply rounded bg-gray-200 animate-pulse motion-reduce:animate-none;
480
+ }
package/dialogs.css ADDED
@@ -0,0 +1,70 @@
1
+ .fx-dialog {
2
+ max-width: unset !important;
3
+ border-radius: 8px !important;
4
+ .mat-dialog-actions {
5
+ border-top: 1px solid rgb(var(--border-default)) !important;
6
+ margin-left: -24px;
7
+ margin-right: -24px;
8
+ padding: 12px 24px 10px 10px;
9
+ }
10
+
11
+ .mat-dialog-title {
12
+ margin-left: -24px;
13
+ margin-right: -24px;
14
+ padding-right: 24px;
15
+ padding-left: 24px;
16
+ border-bottom: 1px solid rgb(var(--border-default));
17
+ padding-bottom: 20px;
18
+ letter-spacing: 0 !important;
19
+ }
20
+
21
+ .mat-dialog-content {
22
+ min-height: 110px;
23
+ letter-spacing: 0 !important;
24
+ }
25
+ }
26
+
27
+ .fx-fullsize-dialog {
28
+ max-width: 100vw !important;
29
+ height: 100%;
30
+
31
+ mat-dialog-container {
32
+ padding: 0;
33
+
34
+ form.wrapped-form {
35
+ display: flex;
36
+ flex-direction: column;
37
+ height: 100%;
38
+ justify-content: space-between;
39
+ }
40
+
41
+ .mat-dialog-title {
42
+ background-color: rgb(var(--bg-primary));
43
+ box-shadow: 0px 4px 8px rgba(26, 28, 38, 0.15);
44
+ color: rgb(var(--text-primary));
45
+ padding: 12px 20px;
46
+ min-height: 24px;
47
+
48
+ h2 {
49
+ font-weight: 500;
50
+ font-size: 18px;
51
+ line-height: 24px;
52
+ }
53
+ }
54
+
55
+ .mat-dialog-content {
56
+ background: rgb(var(--bg-primary));
57
+ padding: 16px 20px;
58
+ margin: unset;
59
+ height: 100%;
60
+ max-height: unset;
61
+ letter-spacing: 0 !important;
62
+ }
63
+
64
+ .mat-dialog-actions {
65
+ background-color: rgb(var(--bg-primary));
66
+ padding: 12px 20px;
67
+ margin-bottom: unset;
68
+ }
69
+ }
70
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file