@keenmate/pure-admin-theme-audi 1.5.1 → 2.0.0

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 (2) hide show
  1. package/dist/audi.css +895 -19
  2. package/package.json +3 -3
package/dist/audi.css CHANGED
@@ -373,6 +373,7 @@ body.pa-layout--sticky .pa-layout__inner {
373
373
  .pa-layout__main {
374
374
  flex: 1;
375
375
  padding: 1.6rem;
376
+ container-type: inline-size;
376
377
  }
377
378
 
378
379
  .pa-layout__footer {
@@ -1560,7 +1561,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
1560
1561
  margin-inline-start: 95%;
1561
1562
  }
1562
1563
 
1563
- @media (min-width: 576px) {
1564
+ @container (min-width: 576px) {
1564
1565
  .pa-col-sm-5 {
1565
1566
  flex: 0 0 5%;
1566
1567
  max-width: 5%;
@@ -1833,7 +1834,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
1833
1834
  width: auto;
1834
1835
  }
1835
1836
  }
1836
- @media (min-width: 768px) {
1837
+ @container (min-width: 768px) {
1837
1838
  .pa-col-md-5 {
1838
1839
  flex: 0 0 5%;
1839
1840
  max-width: 5%;
@@ -2106,7 +2107,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2106
2107
  width: auto;
2107
2108
  }
2108
2109
  }
2109
- @media (min-width: 992px) {
2110
+ @container (min-width: 992px) {
2110
2111
  .pa-col-lg-5 {
2111
2112
  flex: 0 0 5%;
2112
2113
  max-width: 5%;
@@ -2379,7 +2380,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2379
2380
  width: auto;
2380
2381
  }
2381
2382
  }
2382
- @media (min-width: 1200px) {
2383
+ @container (min-width: 1200px) {
2383
2384
  .pa-col-xl-5 {
2384
2385
  flex: 0 0 5%;
2385
2386
  max-width: 5%;
@@ -3141,6 +3142,21 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
3141
3142
  border-top: none !important;
3142
3143
  }
3143
3144
 
3145
+ .pa-card--live-up {
3146
+ background-color: rgba(40, 167, 69, 0.1);
3147
+ transition: background-color 0.3s ease;
3148
+ }
3149
+
3150
+ .pa-card--live-down {
3151
+ background-color: rgba(220, 53, 69, 0.1);
3152
+ transition: background-color 0.3s ease;
3153
+ }
3154
+
3155
+ .pa-card--live-neutral {
3156
+ background-color: #ffffff;
3157
+ transition: background-color 0.3s ease;
3158
+ }
3159
+
3144
3160
  .pa-card--color-1 {
3145
3161
  border-color: var(--pa-color-1);
3146
3162
  }
@@ -3908,43 +3924,43 @@ a.pa-card p {
3908
3924
  font-size: 1.4rem;
3909
3925
  }
3910
3926
 
3911
- .pa-stat--hero {
3927
+ .pa-stat--hero, .pa-stat--hero-compact {
3912
3928
  display: block;
3913
3929
  text-align: center;
3914
- padding: 2.4rem;
3930
+ padding: 0.8rem 0.8rem 1.2rem;
3915
3931
  }
3916
3932
 
3917
- .pa-stat--hero .pa-stat__label {
3918
- font-size: 1.4rem;
3933
+ .pa-stat--hero .pa-stat__label, .pa-stat--hero-compact .pa-stat__label {
3934
+ font-size: 1.2rem;
3919
3935
  text-transform: uppercase;
3920
3936
  letter-spacing: 0.05em;
3921
- font-weight: 500;
3937
+ font-weight: 600;
3922
3938
  color: var(--pa-text-color-2);
3923
- margin-bottom: 0.8rem;
3939
+ margin-bottom: 0.4rem;
3924
3940
  }
3925
3941
 
3926
- .pa-stat--hero .pa-stat__value {
3927
- font-size: 3.2rem;
3942
+ .pa-stat--hero .pa-stat__value, .pa-stat--hero-compact .pa-stat__value {
3943
+ font-size: 4.48rem;
3928
3944
  font-weight: 700;
3929
3945
  color: var(--pa-text-color-1);
3930
- line-height: 1.1;
3931
- margin-bottom: 0.8rem;
3946
+ line-height: 1;
3947
+ margin-bottom: 0.4rem;
3932
3948
  }
3933
3949
 
3934
- .pa-stat--hero .pa-stat__change {
3950
+ .pa-stat--hero .pa-stat__change, .pa-stat--hero-compact .pa-stat__change {
3935
3951
  font-size: 1.2rem;
3936
- font-weight: 500;
3952
+ font-weight: 600;
3937
3953
  }
3938
3954
 
3939
- .pa-stat--hero .pa-stat__change--positive {
3955
+ .pa-stat--hero .pa-stat__change--positive, .pa-stat--hero-compact .pa-stat__change--positive {
3940
3956
  color: #28a745;
3941
3957
  }
3942
3958
 
3943
- .pa-stat--hero .pa-stat__change--negative {
3959
+ .pa-stat--hero .pa-stat__change--negative, .pa-stat--hero-compact .pa-stat__change--negative {
3944
3960
  color: #dc3545;
3945
3961
  }
3946
3962
 
3947
- .pa-stat--hero .pa-stat__change--neutral {
3963
+ .pa-stat--hero .pa-stat__change--neutral, .pa-stat--hero-compact .pa-stat__change--neutral {
3948
3964
  color: var(--pa-text-color-2);
3949
3965
  }
3950
3966
 
@@ -13661,6 +13677,71 @@ code {
13661
13677
  grid-column: 2;
13662
13678
  }
13663
13679
  }
13680
+ .pa-desc-table__copy {
13681
+ flex-shrink: 0;
13682
+ padding: 0.4rem;
13683
+ background: transparent;
13684
+ border: none;
13685
+ border-radius: 4px;
13686
+ cursor: pointer;
13687
+ transition: opacity 0.15s, background 0.15s;
13688
+ }
13689
+
13690
+ .pa-desc-table__copy:hover {
13691
+ opacity: 1;
13692
+ background: rgba(128, 128, 128, 0.1);
13693
+ }
13694
+
13695
+ .pa-desc-table__value--copy-btn, .pa-desc-table__value--copy-hover {
13696
+ display: flex;
13697
+ align-items: center;
13698
+ gap: 0.8rem;
13699
+ }
13700
+
13701
+ .pa-desc-table__value--copy-btn .pa-desc-table__copy {
13702
+ opacity: 0.5;
13703
+ }
13704
+
13705
+ .pa-desc-table__value--copy-hover .pa-desc-table__copy {
13706
+ opacity: 0;
13707
+ }
13708
+
13709
+ .pa-desc-table__value--copy-hover:hover .pa-desc-table__copy {
13710
+ opacity: 0.5;
13711
+ }
13712
+
13713
+ .pa-desc-table__value--copy-hover:hover .pa-desc-table__copy:hover {
13714
+ opacity: 1;
13715
+ background: rgba(128, 128, 128, 0.1);
13716
+ }
13717
+
13718
+ .pa-desc-table__value--copy-click {
13719
+ cursor: pointer;
13720
+ transition: opacity 0.15s;
13721
+ }
13722
+
13723
+ .pa-desc-table__value--copy-click:hover {
13724
+ opacity: 0.7;
13725
+ }
13726
+
13727
+ .pa-desc-table__value--copy-click::after {
13728
+ content: "Click to copy";
13729
+ font-size: 1rem;
13730
+ opacity: 0;
13731
+ margin-inline-start: 0.8rem;
13732
+ transition: opacity 0.15s;
13733
+ }
13734
+
13735
+ .pa-desc-table__value--copy-click:hover::after {
13736
+ opacity: 0.6;
13737
+ }
13738
+
13739
+ .pa-desc-table__value--copied::after {
13740
+ content: "Copied!" !important;
13741
+ opacity: 1 !important;
13742
+ color: var(--pa-color-4, #28a745);
13743
+ }
13744
+
13664
13745
  .pa-dot-leaders {
13665
13746
  display: flex;
13666
13747
  flex-direction: column;
@@ -13762,6 +13843,57 @@ code {
13762
13843
  font-weight: 700;
13763
13844
  }
13764
13845
 
13846
+ .pa-prop-card__copy {
13847
+ flex-shrink: 0;
13848
+ padding: 0.4rem;
13849
+ background: transparent;
13850
+ border: none;
13851
+ border-radius: 4px;
13852
+ cursor: pointer;
13853
+ transition: opacity 0.15s, background 0.15s;
13854
+ }
13855
+
13856
+ .pa-prop-card__copy:hover {
13857
+ opacity: 1;
13858
+ background: rgba(128, 128, 128, 0.1);
13859
+ }
13860
+
13861
+ .pa-prop-card__row--copy-btn .pa-prop-card__value, .pa-prop-card__row--copy-hover .pa-prop-card__value {
13862
+ display: flex;
13863
+ align-items: center;
13864
+ gap: 0.8rem;
13865
+ }
13866
+
13867
+ .pa-prop-card__row--copy-btn .pa-prop-card__copy, .pa-prop-card__row--copy-hover .pa-prop-card__copy {
13868
+ order: -1;
13869
+ }
13870
+
13871
+ .pa-prop-card__row--copy-btn .pa-prop-card__copy {
13872
+ opacity: 0.5;
13873
+ }
13874
+
13875
+ .pa-prop-card__row--copy-hover .pa-prop-card__copy {
13876
+ opacity: 0;
13877
+ }
13878
+
13879
+ .pa-prop-card__row--copy-hover:hover .pa-prop-card__copy {
13880
+ opacity: 0.5;
13881
+ }
13882
+
13883
+ .pa-prop-card__row--copy-hover:hover .pa-prop-card__copy:hover {
13884
+ opacity: 1;
13885
+ background: rgba(128, 128, 128, 0.1);
13886
+ }
13887
+
13888
+ .pa-prop-card__row--copy-click .pa-prop-card__value {
13889
+ cursor: pointer;
13890
+ transition: opacity 0.15s;
13891
+ }
13892
+
13893
+ .pa-prop-card__row--copy-click .pa-prop-card__value:hover {
13894
+ opacity: 0.7;
13895
+ }
13896
+
13765
13897
  .pa-banded-container {
13766
13898
  container-type: inline-size;
13767
13899
  }
@@ -13858,6 +13990,69 @@ code {
13858
13990
  display: block;
13859
13991
  }
13860
13992
  }
13993
+ .pa-banded__copy {
13994
+ flex-shrink: 0;
13995
+ padding: 0.4rem;
13996
+ background: transparent;
13997
+ border: none;
13998
+ border-radius: 4px;
13999
+ cursor: pointer;
14000
+ transition: opacity 0.15s, background 0.15s;
14001
+ }
14002
+
14003
+ .pa-banded__copy:hover {
14004
+ opacity: 1;
14005
+ background: rgba(128, 128, 128, 0.1);
14006
+ }
14007
+
14008
+ .pa-banded__row--copy-btn .pa-banded__value, .pa-banded__row--copy-hover .pa-banded__value {
14009
+ gap: 0.8rem;
14010
+ }
14011
+
14012
+ .pa-banded__row--copy-btn .pa-banded__copy {
14013
+ opacity: 0.5;
14014
+ }
14015
+
14016
+ .pa-banded__row--copy-hover .pa-banded__copy {
14017
+ opacity: 0;
14018
+ }
14019
+
14020
+ .pa-banded__row--copy-hover:hover .pa-banded__copy {
14021
+ opacity: 0.5;
14022
+ }
14023
+
14024
+ .pa-banded__row--copy-hover:hover .pa-banded__copy:hover {
14025
+ opacity: 1;
14026
+ background: rgba(128, 128, 128, 0.1);
14027
+ }
14028
+
14029
+ .pa-banded__row--copy-click .pa-banded__value {
14030
+ cursor: pointer;
14031
+ transition: opacity 0.15s;
14032
+ }
14033
+
14034
+ .pa-banded__row--copy-click .pa-banded__value:hover {
14035
+ opacity: 0.7;
14036
+ }
14037
+
14038
+ .pa-banded__row--copy-click .pa-banded__value::after {
14039
+ content: "Click to copy";
14040
+ font-size: 1rem;
14041
+ opacity: 0;
14042
+ margin-inline-start: 0.8rem;
14043
+ transition: opacity 0.15s;
14044
+ }
14045
+
14046
+ .pa-banded__row--copy-click .pa-banded__value:hover::after {
14047
+ opacity: 0.6;
14048
+ }
14049
+
14050
+ .pa-banded__row--copied .pa-banded__value::after {
14051
+ content: "Copied!" !important;
14052
+ opacity: 1 !important;
14053
+ color: var(--pa-color-4, #28a745);
14054
+ }
14055
+
13861
14056
  .pa-accent-grid {
13862
14057
  display: grid;
13863
14058
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
@@ -13902,6 +14097,687 @@ code {
13902
14097
  line-height: 1.2;
13903
14098
  }
13904
14099
 
14100
+ .pa-accent-grid__copy {
14101
+ flex-shrink: 0;
14102
+ padding: 0.4rem;
14103
+ background: transparent;
14104
+ border: none;
14105
+ border-radius: 4px;
14106
+ cursor: pointer;
14107
+ transition: opacity 0.15s, background 0.15s;
14108
+ }
14109
+
14110
+ .pa-accent-grid__copy:hover {
14111
+ opacity: 1;
14112
+ background: rgba(128, 128, 128, 0.1);
14113
+ }
14114
+
14115
+ .pa-accent-grid__item--copy-btn .pa-accent-grid__value, .pa-accent-grid__item--copy-hover .pa-accent-grid__value {
14116
+ display: flex;
14117
+ align-items: center;
14118
+ gap: 0.8rem;
14119
+ }
14120
+
14121
+ .pa-accent-grid__item--copy-btn .pa-accent-grid__copy {
14122
+ opacity: 0.5;
14123
+ }
14124
+
14125
+ .pa-accent-grid__item--copy-hover .pa-accent-grid__copy {
14126
+ opacity: 0;
14127
+ }
14128
+
14129
+ .pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy {
14130
+ opacity: 0.5;
14131
+ }
14132
+
14133
+ .pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy:hover {
14134
+ opacity: 1;
14135
+ background: rgba(128, 128, 128, 0.1);
14136
+ }
14137
+
14138
+ .pa-accent-grid__item--copy-click .pa-accent-grid__value {
14139
+ cursor: pointer;
14140
+ transition: opacity 0.15s;
14141
+ }
14142
+
14143
+ .pa-accent-grid__item--copy-click .pa-accent-grid__value:hover {
14144
+ opacity: 0.7;
14145
+ }
14146
+
14147
+ .pa-accent-grid__item--copy-click .pa-accent-grid__value::after {
14148
+ content: "Click to copy";
14149
+ font-size: 1rem;
14150
+ opacity: 0;
14151
+ margin-inline-start: 0.8rem;
14152
+ transition: opacity 0.15s;
14153
+ }
14154
+
14155
+ .pa-accent-grid__item--copy-click .pa-accent-grid__value:hover::after {
14156
+ opacity: 0.6;
14157
+ }
14158
+
14159
+ .pa-accent-grid__item--copied .pa-accent-grid__value::after {
14160
+ content: "Copied!" !important;
14161
+ opacity: 1 !important;
14162
+ color: var(--pa-color-4, #28a745);
14163
+ }
14164
+
14165
+ /* ========================================
14166
+ Data Visualization Components
14167
+ Progress bars, rings, gauges, heatmaps, sparklines
14168
+ ======================================== */
14169
+ .pa-progress {
14170
+ width: 100%;
14171
+ height: 0.8rem;
14172
+ background: rgba(0, 0, 0, 0.08);
14173
+ border-radius: 4px;
14174
+ overflow: hidden;
14175
+ position: relative;
14176
+ }
14177
+
14178
+ .pa-progress__fill {
14179
+ height: 100%;
14180
+ width: var(--value, 0%);
14181
+ background: #007bff;
14182
+ border-radius: inherit;
14183
+ transition: width 0.25s ease;
14184
+ }
14185
+
14186
+ .pa-progress__label {
14187
+ display: flex;
14188
+ justify-content: space-between;
14189
+ margin-bottom: 0.4rem;
14190
+ font-size: 1.2rem;
14191
+ font-weight: 500;
14192
+ color: var(--pa-text-color-1);
14193
+ }
14194
+
14195
+ .pa-progress__label-value {
14196
+ color: var(--pa-text-color-2);
14197
+ }
14198
+
14199
+ .pa-progress--xs {
14200
+ height: 0.3rem;
14201
+ }
14202
+
14203
+ .pa-progress--sm {
14204
+ height: 0.5rem;
14205
+ }
14206
+
14207
+ .pa-progress--lg {
14208
+ height: 1.2rem;
14209
+ }
14210
+
14211
+ .pa-progress--success > .pa-progress__fill {
14212
+ background: #28a745;
14213
+ }
14214
+
14215
+ .pa-progress--warning > .pa-progress__fill {
14216
+ background: #ffc107;
14217
+ }
14218
+
14219
+ .pa-progress--danger > .pa-progress__fill {
14220
+ background: #dc3545;
14221
+ }
14222
+
14223
+ .pa-progress--info > .pa-progress__fill {
14224
+ background: #17a2b8;
14225
+ }
14226
+
14227
+ .pa-progress--rounded {
14228
+ border-radius: 50rem;
14229
+ }
14230
+
14231
+ .pa-progress--striped > .pa-progress__fill {
14232
+ background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%);
14233
+ background-size: 1.6rem 1.6rem;
14234
+ }
14235
+
14236
+ .pa-progress--animated > .pa-progress__fill {
14237
+ animation: pa-progress-stripe 1s linear infinite;
14238
+ }
14239
+
14240
+ @keyframes pa-progress-stripe {
14241
+ 0% {
14242
+ background-position: 1.6rem 0;
14243
+ }
14244
+ 100% {
14245
+ background-position: 0 0;
14246
+ }
14247
+ }
14248
+ .pa-progress-group {
14249
+ display: flex;
14250
+ flex-direction: column;
14251
+ gap: 0.4rem;
14252
+ }
14253
+
14254
+ .pa-stacked-bar {
14255
+ display: flex;
14256
+ width: 100%;
14257
+ height: 1.2rem;
14258
+ border-radius: 4px;
14259
+ overflow: hidden;
14260
+ background: rgba(0, 0, 0, 0.08);
14261
+ }
14262
+
14263
+ .pa-stacked-bar__segment {
14264
+ height: 100%;
14265
+ width: var(--value, 0%);
14266
+ transition: width 0.25s ease;
14267
+ background: #007bff;
14268
+ }
14269
+
14270
+ .pa-stacked-bar__segment--success {
14271
+ background: #28a745;
14272
+ }
14273
+
14274
+ .pa-stacked-bar__segment--warning {
14275
+ background: #ffc107;
14276
+ }
14277
+
14278
+ .pa-stacked-bar__segment--danger {
14279
+ background: #dc3545;
14280
+ }
14281
+
14282
+ .pa-stacked-bar__segment--info {
14283
+ background: #17a2b8;
14284
+ }
14285
+
14286
+ .pa-stacked-bar__segment--secondary {
14287
+ background: #6c757d;
14288
+ }
14289
+
14290
+ .pa-stacked-bar__legend {
14291
+ display: flex;
14292
+ flex-wrap: wrap;
14293
+ gap: 1.6rem;
14294
+ margin-top: 0.8rem;
14295
+ }
14296
+
14297
+ .pa-stacked-bar__legend-item {
14298
+ display: flex;
14299
+ align-items: center;
14300
+ gap: 0.4rem;
14301
+ font-size: 1.2rem;
14302
+ color: var(--pa-text-color-2);
14303
+ }
14304
+
14305
+ .pa-stacked-bar__legend-swatch {
14306
+ width: 1rem;
14307
+ height: 1rem;
14308
+ border-radius: 2px;
14309
+ flex-shrink: 0;
14310
+ }
14311
+
14312
+ .pa-stacked-bar__legend-swatch--primary {
14313
+ background: #007bff;
14314
+ }
14315
+
14316
+ .pa-stacked-bar__legend-swatch--success {
14317
+ background: #28a745;
14318
+ }
14319
+
14320
+ .pa-stacked-bar__legend-swatch--warning {
14321
+ background: #ffc107;
14322
+ }
14323
+
14324
+ .pa-stacked-bar__legend-swatch--danger {
14325
+ background: #dc3545;
14326
+ }
14327
+
14328
+ .pa-stacked-bar__legend-swatch--info {
14329
+ background: #17a2b8;
14330
+ }
14331
+
14332
+ .pa-stacked-bar__legend-swatch--secondary {
14333
+ background: #6c757d;
14334
+ }
14335
+
14336
+ .pa-stacked-bar--sm {
14337
+ height: 0.5rem;
14338
+ }
14339
+
14340
+ .pa-stacked-bar--lg {
14341
+ height: 1.2rem;
14342
+ }
14343
+
14344
+ .pa-stacked-bar--rounded {
14345
+ border-radius: 50rem;
14346
+ }
14347
+
14348
+ .pa-progress-ring {
14349
+ width: 8rem;
14350
+ height: 8rem;
14351
+ border-radius: 50%;
14352
+ background: conic-gradient(#007bff calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
14353
+ display: flex;
14354
+ align-items: center;
14355
+ justify-content: center;
14356
+ flex-shrink: 0;
14357
+ }
14358
+
14359
+ .pa-progress-ring__inner {
14360
+ width: 70%;
14361
+ height: 70%;
14362
+ border-radius: 50%;
14363
+ background: #ffffff;
14364
+ display: flex;
14365
+ flex-direction: column;
14366
+ align-items: center;
14367
+ justify-content: center;
14368
+ }
14369
+
14370
+ .pa-progress-ring__value {
14371
+ font-size: 1.8rem;
14372
+ font-weight: 700;
14373
+ line-height: 1;
14374
+ color: var(--pa-text-color-1);
14375
+ }
14376
+
14377
+ .pa-progress-ring__label {
14378
+ font-size: 1rem;
14379
+ color: var(--pa-text-color-2);
14380
+ margin-top: 0.4rem;
14381
+ }
14382
+
14383
+ .pa-progress-ring--sm {
14384
+ width: 5rem;
14385
+ height: 5rem;
14386
+ }
14387
+
14388
+ .pa-progress-ring--sm .pa-progress-ring__value {
14389
+ font-size: 1.6rem;
14390
+ }
14391
+
14392
+ .pa-progress-ring--sm .pa-progress-ring__label {
14393
+ font-size: 1rem;
14394
+ }
14395
+
14396
+ .pa-progress-ring--lg {
14397
+ width: 11rem;
14398
+ height: 11rem;
14399
+ }
14400
+
14401
+ .pa-progress-ring--lg .pa-progress-ring__value {
14402
+ font-size: 2.4rem;
14403
+ }
14404
+
14405
+ .pa-progress-ring--lg .pa-progress-ring__label {
14406
+ font-size: 1.2rem;
14407
+ }
14408
+
14409
+ .pa-progress-ring--success {
14410
+ background: conic-gradient(#28a745 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
14411
+ }
14412
+
14413
+ .pa-progress-ring--warning {
14414
+ background: conic-gradient(#ffc107 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
14415
+ }
14416
+
14417
+ .pa-progress-ring--danger {
14418
+ background: conic-gradient(#dc3545 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
14419
+ }
14420
+
14421
+ .pa-progress-ring--info {
14422
+ background: conic-gradient(#17a2b8 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
14423
+ }
14424
+
14425
+ .pa-gauge {
14426
+ width: 12rem;
14427
+ height: calc(12rem / 2);
14428
+ border-radius: 12rem 12rem 0 0;
14429
+ overflow: hidden;
14430
+ background: conic-gradient(from 0.75turn, #007bff calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
14431
+ position: relative;
14432
+ flex-shrink: 0;
14433
+ }
14434
+
14435
+ .pa-gauge__inner {
14436
+ position: absolute;
14437
+ bottom: 0;
14438
+ left: 15%;
14439
+ right: 15%;
14440
+ height: 70%;
14441
+ border-radius: 12rem 12rem 0 0;
14442
+ background: #ffffff;
14443
+ display: flex;
14444
+ flex-direction: column;
14445
+ align-items: center;
14446
+ justify-content: flex-end;
14447
+ padding-bottom: 0.4rem;
14448
+ }
14449
+
14450
+ .pa-gauge__value {
14451
+ font-size: 2.4rem;
14452
+ font-weight: 700;
14453
+ line-height: 1;
14454
+ color: var(--pa-text-color-1);
14455
+ }
14456
+
14457
+ .pa-gauge__label {
14458
+ font-size: 1.2rem;
14459
+ color: var(--pa-text-color-2);
14460
+ margin-top: 0.4rem;
14461
+ }
14462
+
14463
+ .pa-gauge__min, .pa-gauge__max {
14464
+ position: absolute;
14465
+ bottom: 0;
14466
+ font-size: 1rem;
14467
+ color: var(--pa-text-color-2);
14468
+ }
14469
+
14470
+ .pa-gauge__min {
14471
+ left: 0;
14472
+ }
14473
+
14474
+ .pa-gauge__max {
14475
+ right: 0;
14476
+ }
14477
+
14478
+ .pa-gauge--success {
14479
+ background: conic-gradient(from 0.75turn, #28a745 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
14480
+ }
14481
+
14482
+ .pa-gauge--warning {
14483
+ background: conic-gradient(from 0.75turn, #ffc107 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
14484
+ }
14485
+
14486
+ .pa-gauge--danger {
14487
+ background: conic-gradient(from 0.75turn, #dc3545 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
14488
+ }
14489
+
14490
+ .pa-gauge--info {
14491
+ background: conic-gradient(from 0.75turn, #17a2b8 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
14492
+ }
14493
+
14494
+ .pa-gauge--zones {
14495
+ background: conic-gradient(from 0.75turn, #28a745 0deg, #28a745 90deg, #ffc107 90deg, #ffc107 135deg, #dc3545 135deg, #dc3545 180deg, rgba(0, 0, 0, 0.08) 180deg);
14496
+ }
14497
+
14498
+ .pa-data-bar {
14499
+ display: flex;
14500
+ flex-direction: column;
14501
+ gap: 0.4rem;
14502
+ min-width: 6rem;
14503
+ }
14504
+
14505
+ .pa-data-bar__value {
14506
+ font-size: 1.4rem;
14507
+ font-weight: 500;
14508
+ color: var(--pa-text-color-1);
14509
+ line-height: 1;
14510
+ }
14511
+
14512
+ .pa-data-bar__track {
14513
+ width: 100%;
14514
+ height: 0.4rem;
14515
+ background: rgba(0, 0, 0, 0.06);
14516
+ border-radius: 2px;
14517
+ overflow: hidden;
14518
+ }
14519
+
14520
+ .pa-data-bar__fill {
14521
+ height: 100%;
14522
+ width: var(--value, 0%);
14523
+ background: #007bff;
14524
+ border-radius: inherit;
14525
+ transition: width 0.25s ease;
14526
+ }
14527
+
14528
+ .pa-data-bar--success .pa-data-bar__fill {
14529
+ background: #28a745;
14530
+ }
14531
+
14532
+ .pa-data-bar--warning .pa-data-bar__fill {
14533
+ background: #ffc107;
14534
+ }
14535
+
14536
+ .pa-data-bar--danger .pa-data-bar__fill {
14537
+ background: #dc3545;
14538
+ }
14539
+
14540
+ .pa-data-bar--info .pa-data-bar__fill {
14541
+ background: #17a2b8;
14542
+ }
14543
+
14544
+ .pa-data-bar--negative .pa-data-bar__fill {
14545
+ background: #dc3545;
14546
+ margin-inline-start: auto;
14547
+ }
14548
+
14549
+ .pa-heatmap {
14550
+ display: inline-grid;
14551
+ grid-template-columns: repeat(53, 1.2rem);
14552
+ grid-auto-rows: 1.2rem;
14553
+ gap: 0.2rem;
14554
+ }
14555
+
14556
+ .pa-heatmap__cell {
14557
+ border-radius: 2px;
14558
+ background: rgba(0, 0, 0, 0.08);
14559
+ }
14560
+
14561
+ .pa-heatmap__cell[data-level="1"] {
14562
+ background: rgba(0, 123, 255, 0.2);
14563
+ }
14564
+
14565
+ .pa-heatmap__cell[data-level="2"] {
14566
+ background: rgba(0, 123, 255, 0.4);
14567
+ }
14568
+
14569
+ .pa-heatmap__cell[data-level="3"] {
14570
+ background: rgba(0, 123, 255, 0.65);
14571
+ }
14572
+
14573
+ .pa-heatmap__cell[data-level="4"] {
14574
+ background: #007bff;
14575
+ }
14576
+
14577
+ .pa-heatmap--success .pa-heatmap__cell[data-level="1"] {
14578
+ background: rgba(40, 167, 69, 0.2);
14579
+ }
14580
+
14581
+ .pa-heatmap--success .pa-heatmap__cell[data-level="2"] {
14582
+ background: rgba(40, 167, 69, 0.4);
14583
+ }
14584
+
14585
+ .pa-heatmap--success .pa-heatmap__cell[data-level="3"] {
14586
+ background: rgba(40, 167, 69, 0.65);
14587
+ }
14588
+
14589
+ .pa-heatmap--success .pa-heatmap__cell[data-level="4"] {
14590
+ background: #28a745;
14591
+ }
14592
+
14593
+ .pa-heatmap--danger .pa-heatmap__cell[data-level="1"] {
14594
+ background: rgba(220, 53, 69, 0.2);
14595
+ }
14596
+
14597
+ .pa-heatmap--danger .pa-heatmap__cell[data-level="2"] {
14598
+ background: rgba(220, 53, 69, 0.4);
14599
+ }
14600
+
14601
+ .pa-heatmap--danger .pa-heatmap__cell[data-level="3"] {
14602
+ background: rgba(220, 53, 69, 0.65);
14603
+ }
14604
+
14605
+ .pa-heatmap--danger .pa-heatmap__cell[data-level="4"] {
14606
+ background: #dc3545;
14607
+ }
14608
+
14609
+ .pa-heatmap__legend {
14610
+ display: flex;
14611
+ align-items: center;
14612
+ gap: 0.4rem;
14613
+ margin-top: 0.8rem;
14614
+ font-size: 1.2rem;
14615
+ color: var(--pa-text-color-2);
14616
+ }
14617
+
14618
+ .pa-heatmap__legend-cell {
14619
+ width: 1.2rem;
14620
+ height: 1.2rem;
14621
+ border-radius: 2px;
14622
+ background: rgba(0, 0, 0, 0.08);
14623
+ }
14624
+
14625
+ .pa-heatmap__legend-cell[data-level="1"] {
14626
+ background: rgba(0, 123, 255, 0.2);
14627
+ }
14628
+
14629
+ .pa-heatmap__legend-cell[data-level="2"] {
14630
+ background: rgba(0, 123, 255, 0.4);
14631
+ }
14632
+
14633
+ .pa-heatmap__legend-cell[data-level="3"] {
14634
+ background: rgba(0, 123, 255, 0.65);
14635
+ }
14636
+
14637
+ .pa-heatmap__legend-cell[data-level="4"] {
14638
+ background: #007bff;
14639
+ }
14640
+
14641
+ .pa-heatmap--compact {
14642
+ grid-template-columns: repeat(53, 1rem);
14643
+ grid-auto-rows: 1rem;
14644
+ gap: 0.1rem;
14645
+ }
14646
+
14647
+ .pa-heatmap--compact .pa-heatmap__cell {
14648
+ border-radius: 1px;
14649
+ }
14650
+
14651
+ .pa-sparkline {
14652
+ display: inline-flex;
14653
+ align-items: flex-end;
14654
+ gap: 0.2rem;
14655
+ height: 3rem;
14656
+ }
14657
+
14658
+ .pa-sparkline__bar {
14659
+ width: 0.3rem;
14660
+ height: var(--value, 50%);
14661
+ background: #007bff;
14662
+ border-radius: 2px 2px 0 0;
14663
+ transition: height 0.25s ease;
14664
+ min-height: 1px;
14665
+ }
14666
+
14667
+ .pa-sparkline--success .pa-sparkline__bar {
14668
+ background: #28a745;
14669
+ }
14670
+
14671
+ .pa-sparkline--warning .pa-sparkline__bar {
14672
+ background: #ffc107;
14673
+ }
14674
+
14675
+ .pa-sparkline--danger .pa-sparkline__bar {
14676
+ background: #dc3545;
14677
+ }
14678
+
14679
+ .pa-sparkline--info .pa-sparkline__bar {
14680
+ background: #17a2b8;
14681
+ }
14682
+
14683
+ .pa-sparkline--sm {
14684
+ height: 2rem;
14685
+ }
14686
+
14687
+ .pa-sparkline--lg {
14688
+ height: 4.8rem;
14689
+ }
14690
+
14691
+ .pa-sparkline--lg .pa-sparkline__bar {
14692
+ width: 0.4rem;
14693
+ }
14694
+
14695
+ .pa-bar-list {
14696
+ display: flex;
14697
+ flex-direction: column;
14698
+ gap: 1.6rem;
14699
+ }
14700
+
14701
+ .pa-bar-list__item {
14702
+ display: flex;
14703
+ flex-direction: column;
14704
+ gap: 0.4rem;
14705
+ }
14706
+
14707
+ .pa-bar-list__header {
14708
+ display: flex;
14709
+ justify-content: space-between;
14710
+ align-items: baseline;
14711
+ gap: 0.8rem;
14712
+ }
14713
+
14714
+ .pa-bar-list__label {
14715
+ font-size: 1.4rem;
14716
+ color: var(--pa-text-color-1);
14717
+ min-width: 0;
14718
+ overflow: hidden;
14719
+ text-overflow: ellipsis;
14720
+ white-space: nowrap;
14721
+ }
14722
+
14723
+ .pa-bar-list__value {
14724
+ font-size: 1.4rem;
14725
+ font-weight: 600;
14726
+ color: var(--pa-text-color-1);
14727
+ flex-shrink: 0;
14728
+ }
14729
+
14730
+ .pa-bar-list__bar {
14731
+ width: 100%;
14732
+ height: 0.4rem;
14733
+ background: rgba(0, 0, 0, 0.06);
14734
+ border-radius: 2px;
14735
+ overflow: hidden;
14736
+ }
14737
+
14738
+ .pa-bar-list__bar::after {
14739
+ content: "";
14740
+ display: block;
14741
+ height: 100%;
14742
+ width: var(--value, 0%);
14743
+ background: #007bff;
14744
+ border-radius: inherit;
14745
+ transition: width 0.25s ease;
14746
+ }
14747
+
14748
+ .pa-bar-list--success .pa-bar-list__bar::after {
14749
+ background: #28a745;
14750
+ }
14751
+
14752
+ .pa-bar-list--warning .pa-bar-list__bar::after {
14753
+ background: #ffc107;
14754
+ }
14755
+
14756
+ .pa-bar-list--danger .pa-bar-list__bar::after {
14757
+ background: #dc3545;
14758
+ }
14759
+
14760
+ .pa-bar-list--info .pa-bar-list__bar::after {
14761
+ background: #17a2b8;
14762
+ }
14763
+
14764
+ .pa-bar-list--compact {
14765
+ gap: 0.8rem;
14766
+ }
14767
+
14768
+ .pa-bar-list--compact .pa-bar-list__item {
14769
+ gap: 0.2rem;
14770
+ }
14771
+
14772
+ .pa-bar-list--compact .pa-bar-list__label,
14773
+ .pa-bar-list--compact .pa-bar-list__value {
14774
+ font-size: 1.2rem;
14775
+ }
14776
+
14777
+ .pa-bar-list--compact .pa-bar-list__bar {
14778
+ height: 0.3rem;
14779
+ }
14780
+
13905
14781
  /* ========================================
13906
14782
  Utility Components
13907
14783
  Font utilities, compact mode, component showcase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keenmate/pure-admin-theme-audi",
3
- "version": "1.5.1",
3
+ "version": "2.0.0",
4
4
  "description": "Audi theme for Pure Admin - includes dark and light variants",
5
5
  "style": "dist/audi.css",
6
6
  "exports": {
@@ -36,10 +36,10 @@
36
36
  },
37
37
  "homepage": "https://github.com/KeenMate/pure-admin#readme",
38
38
  "peerDependencies": {
39
- "@keenmate/pure-admin-core": "^1.0.0"
39
+ "@keenmate/pure-admin-core": "^2.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@keenmate/pure-admin-core": "^1.0.0",
42
+ "@keenmate/pure-admin-core": "^2.0.0",
43
43
  "sass": "^1.70.0"
44
44
  },
45
45
  "publishConfig": {