@fxlt/common-ui 0.0.4-rc2 → 0.0.5-rc1
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/animations.css +15 -0
- package/components.css +42 -22
- package/dm-sans/DMSans-Bold.ttf +0 -0
- package/dm-sans/DMSans-Light.ttf +0 -0
- package/dm-sans/DMSans-Medium.ttf +0 -0
- package/dm-sans/DMSans-Regular.ttf +0 -0
- package/dm-sans/DMSans-SemiBold.ttf +0 -0
- package/dm-sans/DMSans-Thin.ttf +0 -0
- package/fesm2022/fxlt-common-ui.mjs +200 -83
- package/fesm2022/fxlt-common-ui.mjs.map +1 -1
- package/fonts.css +70 -0
- package/index.d.ts +47 -29
- package/orbitron/Orbitron-Bold.ttf +0 -0
- package/orbitron/Orbitron-Medium.ttf +0 -0
- package/orbitron/Orbitron-Regular.ttf +0 -0
- package/orbitron/Orbitron-SemiBold.ttf +0 -0
- package/package.json +1 -3
- package/src/lib/styles/animations.css +15 -0
- package/src/lib/styles/components.css +42 -22
- package/src/lib/styles/fonts.css +70 -0
- package/src/lib/styles/theme.css +5 -1
- package/src/lib/ui/components/chart/chart.component.html +10 -8
- package/src/lib/ui/components/table-cell/table-cell.component.html +7 -0
- package/src/lib/ui/components/tag/tag.component.html +7 -35
- package/tailwind.config.js +9 -0
- package/theme.css +5 -1
package/animations.css
CHANGED
|
@@ -113,3 +113,18 @@
|
|
|
113
113
|
.fade-out-animation {
|
|
114
114
|
animation: fade-out 0.4s ease-out forwards;
|
|
115
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
CHANGED
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
padding-top: 4px !important;
|
|
94
94
|
padding-bottom: 4px !important;
|
|
95
95
|
line-height: 24px !important;
|
|
96
|
-
font-family: '
|
|
96
|
+
font-family: 'BeVietnamPro';
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.mdc-data-table__row {
|
|
@@ -104,11 +104,7 @@
|
|
|
104
104
|
.mdc-data-table__cell {
|
|
105
105
|
border-left: 1px solid rgb(var(--border-default)) !important;
|
|
106
106
|
background-color: rgb(var(--bg-primary)) !important;
|
|
107
|
-
|
|
108
|
-
padding-bottom: 8px !important;
|
|
109
|
-
padding-left: 16px !important;
|
|
110
|
-
padding-right: 16px !important; */
|
|
111
|
-
font-family: 'BeVietnamProRegular';
|
|
107
|
+
font-family: 'BeVietnamPro';
|
|
112
108
|
}
|
|
113
109
|
|
|
114
110
|
.mat-mdc-cell {
|
|
@@ -181,6 +177,9 @@ input[type='password'] {
|
|
|
181
177
|
.txt-heading-07 {
|
|
182
178
|
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
183
179
|
}
|
|
180
|
+
.txt-heading-table {
|
|
181
|
+
@apply text-base font-dmsans font-semibold text-text-primary tracking-tight;
|
|
182
|
+
}
|
|
184
183
|
.txt-heading-compact-02 {
|
|
185
184
|
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
186
185
|
}
|
|
@@ -381,6 +380,27 @@ input[type='password'] {
|
|
|
381
380
|
.tag-information {
|
|
382
381
|
@apply tag-common bg-information/10;
|
|
383
382
|
}
|
|
383
|
+
.tag-default-solid {
|
|
384
|
+
@apply tag-common bg-bg-hover;
|
|
385
|
+
}
|
|
386
|
+
.tag-success-solid {
|
|
387
|
+
@apply tag-common bg-success;
|
|
388
|
+
}
|
|
389
|
+
.tag-warning-solid {
|
|
390
|
+
@apply tag-common bg-warning;
|
|
391
|
+
}
|
|
392
|
+
.tag-danger-solid {
|
|
393
|
+
@apply tag-common bg-danger;
|
|
394
|
+
}
|
|
395
|
+
.tag-critical-solid {
|
|
396
|
+
@apply tag-common bg-critical;
|
|
397
|
+
}
|
|
398
|
+
.tag-discovery-solid {
|
|
399
|
+
@apply tag-common bg-discovery;
|
|
400
|
+
}
|
|
401
|
+
.tag-information-solid {
|
|
402
|
+
@apply tag-common bg-information;
|
|
403
|
+
}
|
|
384
404
|
.tag-square {
|
|
385
405
|
@apply rounded px-semi py-small;
|
|
386
406
|
}
|
|
@@ -389,25 +409,12 @@ input[type='password'] {
|
|
|
389
409
|
}
|
|
390
410
|
/* progress bar */
|
|
391
411
|
.progress-bar-container {
|
|
392
|
-
@apply bg-bg-hover mt-semi rounded-
|
|
412
|
+
@apply bg-bg-hover mt-semi rounded-md h-1.5 overflow-hidden shadow-inner;
|
|
393
413
|
}
|
|
394
414
|
.progress-bar-buffer {
|
|
395
|
-
@apply h-1.5 bg-primary rounded-
|
|
396
|
-
}
|
|
397
|
-
@keyframes pulse-glow {
|
|
398
|
-
0%,
|
|
399
|
-
100% {
|
|
400
|
-
opacity: 1;
|
|
401
|
-
filter: brightness(1);
|
|
402
|
-
}
|
|
403
|
-
50% {
|
|
404
|
-
opacity: 0.7;
|
|
405
|
-
filter: brightness(1.4);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
.animate-pulse-glow {
|
|
409
|
-
animation: pulse-glow 3s ease-in-out infinite;
|
|
415
|
+
@apply h-1.5 bg-primary rounded-md transition-all duration-700 ease-in-out;
|
|
410
416
|
}
|
|
417
|
+
|
|
411
418
|
/* radio button */
|
|
412
419
|
.radio-container {
|
|
413
420
|
@apply w-large h-large flex items-center justify-center rounded-full border;
|
|
@@ -451,3 +458,16 @@ input[type='password'] {
|
|
|
451
458
|
.dialog-header {
|
|
452
459
|
@apply px-xl py-semi;
|
|
453
460
|
}
|
|
461
|
+
.border-gradient-primary {
|
|
462
|
+
border: 1px solid transparent;
|
|
463
|
+
background:
|
|
464
|
+
linear-gradient(var(--surface, #fff), var(--surface, #fff)) padding-box,
|
|
465
|
+
linear-gradient(
|
|
466
|
+
135deg,
|
|
467
|
+
rgb(var(--gradient-primary-start)),
|
|
468
|
+
rgb(var(--gradient-primary-end))
|
|
469
|
+
) border-box;
|
|
470
|
+
}
|
|
471
|
+
.skeleton-load {
|
|
472
|
+
@apply rounded bg-gray-200 animate-pulse motion-reduce:animate-none;
|
|
473
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|