@sentropic/design-system-vue 0.36.19 → 0.36.21

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/dist/styles.css CHANGED
@@ -11250,6 +11250,114 @@
11250
11250
  flex: 0 0 auto;
11251
11251
  }
11252
11252
 
11253
+ .st-appHeader__brand {
11254
+ align-items: center;
11255
+ color: var(--st-semantic-text-primary);
11256
+ display: inline-flex;
11257
+ flex: 0 0 auto;
11258
+ gap: var(--st-spacing-3, 0.75rem);
11259
+ min-width: 0;
11260
+ text-decoration: none;
11261
+ }
11262
+
11263
+ .st-appHeader__brand:hover,
11264
+ .st-appHeader__brand:focus-visible {
11265
+ text-decoration: none;
11266
+ }
11267
+
11268
+ .st-appHeader__brand:focus-visible {
11269
+ border-radius: var(--st-radius-sm, 0.375rem);
11270
+ box-shadow: 0 0 0 2px var(--st-semantic-border-interactive);
11271
+ outline: none;
11272
+ }
11273
+
11274
+ .st-appHeader__brandMark {
11275
+ aspect-ratio: 1;
11276
+ display: inline-block;
11277
+ flex: 0 0 auto;
11278
+ height: 2rem;
11279
+ object-fit: contain;
11280
+ width: 2rem;
11281
+ }
11282
+
11283
+ .st-appHeader__brandCopy {
11284
+ display: grid;
11285
+ gap: 0.08rem;
11286
+ line-height: 1;
11287
+ min-width: 0;
11288
+ }
11289
+
11290
+ .st-appHeader__brandName {
11291
+ color: var(--st-semantic-text-primary);
11292
+ font-size: 1rem;
11293
+ font-weight: 760;
11294
+ }
11295
+
11296
+ .st-appHeader__brandProduct {
11297
+ color: var(--st-semantic-text-secondary);
11298
+ font-size: 0.75rem;
11299
+ font-weight: 650;
11300
+ }
11301
+
11302
+ .st-appHeader__navLink {
11303
+ align-items: center;
11304
+ border-bottom: 2px solid transparent;
11305
+ border-radius: 0;
11306
+ color: var(--st-semantic-text-secondary);
11307
+ display: inline-flex;
11308
+ font-size: 0.875rem;
11309
+ gap: 0.35rem;
11310
+ line-height: 1;
11311
+ padding: 0.38rem 0.75rem;
11312
+ text-decoration: none;
11313
+ white-space: nowrap;
11314
+ transition: color var(--st-motion-fast, 120ms) ease,
11315
+ border-color var(--st-motion-fast, 120ms) ease;
11316
+ }
11317
+
11318
+ .st-appHeader__navLink:hover,
11319
+ .st-appHeader__navLink:focus-visible {
11320
+ color: var(--st-semantic-text-primary);
11321
+ text-decoration: none;
11322
+ }
11323
+
11324
+ .st-appHeader__navLink[aria-current="page"] {
11325
+ border-bottom-color: var(--st-semantic-border-interactive);
11326
+ color: var(--st-semantic-text-primary);
11327
+ font-weight: 650;
11328
+ }
11329
+
11330
+ .st-appHeader__control {
11331
+ align-items: center;
11332
+ background: var(--st-semantic-surface-default);
11333
+ border: 1px solid var(--st-semantic-border-subtle);
11334
+ border-radius: var(--st-radius-sm, 0.375rem);
11335
+ color: var(--st-semantic-text-secondary);
11336
+ cursor: pointer;
11337
+ display: inline-flex;
11338
+ font: inherit;
11339
+ font-size: 0.75rem;
11340
+ font-weight: 650;
11341
+ gap: 0.35rem;
11342
+ height: 2.25rem;
11343
+ line-height: 1;
11344
+ padding: 0 0.65rem;
11345
+ text-decoration: none;
11346
+ white-space: nowrap;
11347
+ transition: background-color var(--st-motion-fast, 120ms) ease,
11348
+ border-color var(--st-motion-fast, 120ms) ease,
11349
+ color var(--st-motion-fast, 120ms) ease;
11350
+ }
11351
+
11352
+ .st-appHeader__control:hover,
11353
+ .st-appHeader__control:focus-visible,
11354
+ .st-appHeader__control[aria-expanded="true"] {
11355
+ background: var(--st-semantic-surface-subtle);
11356
+ border-color: var(--st-semantic-border-interactive);
11357
+ color: var(--st-semantic-text-primary);
11358
+ outline: none;
11359
+ }
11360
+
11253
11361
  .st-appHeader__actions {
11254
11362
  align-items: center;
11255
11363
  display: flex;
@@ -13982,3 +14090,539 @@
13982
14090
 
13983
14091
  .st-vennChart__tooltipLabel { font-weight: 600; }
13984
14092
  .st-vennChart__tooltipValue { opacity: 0.85; }
14093
+
14094
+
14095
+ /* ---------------------------------------------------------------------------
14096
+ ConfigItemCard — carte d'item de configuration (agents, workflows, gabarits)
14097
+ avec badge de provenance et actions Copier / Éditer / Réinitialiser / Supprimer.
14098
+ --------------------------------------------------------------------------- */
14099
+ .st-configItemCard {
14100
+ background: var(--st-component-card-background, var(--st-semantic-surface-raised));
14101
+ border-width: var(--st-component-card-anatomy-shape-borderWidth, 1px);
14102
+ border-style: var(--st-component-card-anatomy-shape-borderStyle, solid);
14103
+ border-color: var(--st-component-card-border, var(--st-semantic-border-subtle));
14104
+ border-radius: var(--st-component-card-anatomy-shape-radius, 0.5rem);
14105
+ color: var(--st-semantic-text-primary);
14106
+ display: flex;
14107
+ flex-direction: column;
14108
+ gap: var(--st-spacing-1, 0.25rem);
14109
+ padding: var(--st-spacing-4, 1rem);
14110
+ }
14111
+
14112
+ .st-configItemCard__header {
14113
+ align-items: center;
14114
+ display: flex;
14115
+ gap: var(--st-spacing-2, 0.5rem);
14116
+ justify-content: space-between;
14117
+ }
14118
+
14119
+ .st-configItemCard__name {
14120
+ color: var(--st-semantic-text-primary);
14121
+ font-weight: 600;
14122
+ }
14123
+
14124
+ .st-configItemCard__badge {
14125
+ align-items: center;
14126
+ border-radius: 9999px;
14127
+ display: inline-flex;
14128
+ flex: 0 0 auto;
14129
+ font-size: 0.6875rem;
14130
+ font-weight: 500;
14131
+ gap: var(--st-spacing-1, 0.25rem);
14132
+ line-height: 1;
14133
+ padding: 0.1875rem var(--st-spacing-2, 0.5rem);
14134
+ }
14135
+
14136
+ .st-configItemCard__badge--system {
14137
+ background: var(--st-semantic-surface-subtle);
14138
+ color: var(--st-semantic-text-secondary);
14139
+ }
14140
+
14141
+ .st-configItemCard__badge--custom {
14142
+ background: var(--st-semantic-feedback-info);
14143
+ color: var(--st-semantic-text-inverse);
14144
+ }
14145
+
14146
+ .st-configItemCard__badgeIcon {
14147
+ display: block;
14148
+ flex: 0 0 auto;
14149
+ }
14150
+
14151
+ .st-configItemCard__key {
14152
+ color: var(--st-semantic-text-muted);
14153
+ font-size: 0.75rem;
14154
+ }
14155
+
14156
+ .st-configItemCard__description {
14157
+ color: var(--st-semantic-text-secondary);
14158
+ font-size: 0.875rem;
14159
+ line-height: 1.4;
14160
+ margin: var(--st-spacing-1, 0.25rem) 0 0;
14161
+ }
14162
+
14163
+ .st-configItemCard__actions {
14164
+ display: flex;
14165
+ gap: var(--st-spacing-1, 0.25rem);
14166
+ margin-top: var(--st-spacing-3, 0.75rem);
14167
+ }
14168
+
14169
+ .st-configItemCard__action {
14170
+ align-items: center;
14171
+ background: transparent;
14172
+ border: none;
14173
+ border-radius: var(--st-radius-sm, 0.25rem);
14174
+ color: var(--st-semantic-text-muted);
14175
+ cursor: var(--st-cursor-interactive, pointer);
14176
+ display: inline-flex;
14177
+ justify-content: center;
14178
+ padding: var(--st-spacing-1, 0.25rem);
14179
+ transition: color var(--st-motion-fast, 120ms) var(--st-motion-easing, ease),
14180
+ background-color var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
14181
+ }
14182
+
14183
+ .st-configItemCard__action:hover:not(:disabled) {
14184
+ background: var(--st-semantic-surface-hover);
14185
+ color: var(--st-semantic-text-primary);
14186
+ }
14187
+
14188
+ .st-configItemCard__action--warning:hover:not(:disabled) {
14189
+ color: var(--st-semantic-feedback-warning);
14190
+ }
14191
+
14192
+ .st-configItemCard__action--danger:hover:not(:disabled) {
14193
+ color: var(--st-semantic-feedback-error);
14194
+ }
14195
+
14196
+ .st-configItemCard__action:focus-visible {
14197
+ outline: 2px solid var(--st-semantic-border-interactive);
14198
+ outline-offset: 2px;
14199
+ }
14200
+
14201
+ .st-configItemCard__action:disabled {
14202
+ cursor: not-allowed;
14203
+ opacity: 0.5;
14204
+ }
14205
+
14206
+ /* ---------------------------------------------------------------------------
14207
+ FieldCard — carte de groupe de champs avec en-tête titré, pastille de
14208
+ commentaires et variantes plain / bordered / accent (liseré catégoriel).
14209
+ --------------------------------------------------------------------------- */
14210
+ .st-fieldCard {
14211
+ background: var(--st-component-card-background, var(--st-semantic-surface-raised));
14212
+ border-width: var(--st-component-card-anatomy-shape-borderWidth, 1px);
14213
+ border-style: var(--st-component-card-anatomy-shape-borderStyle, solid);
14214
+ border-color: var(--st-component-card-border, var(--st-semantic-border-subtle));
14215
+ border-radius: var(--st-component-card-anatomy-shape-radius, 0.5rem);
14216
+ color: var(--st-semantic-text-primary);
14217
+ display: flex;
14218
+ flex-direction: column;
14219
+ height: 100%;
14220
+ padding: var(--st-spacing-4, 1rem);
14221
+ }
14222
+
14223
+ .st-fieldCard--accent {
14224
+ border-inline-start-width: var(--st-spacing-1, 0.25rem);
14225
+ border-radius: 0;
14226
+ }
14227
+
14228
+ .st-fieldCard__header {
14229
+ align-items: center;
14230
+ display: flex;
14231
+ gap: var(--st-spacing-2, 0.5rem);
14232
+ justify-content: space-between;
14233
+ }
14234
+
14235
+ .st-fieldCard--bordered .st-fieldCard__header {
14236
+ border-bottom: 1px solid var(--st-semantic-border-subtle);
14237
+ margin-bottom: var(--st-spacing-3, 0.75rem);
14238
+ padding-bottom: var(--st-spacing-3, 0.75rem);
14239
+ }
14240
+
14241
+ .st-fieldCard__label {
14242
+ color: var(--st-semantic-text-primary);
14243
+ font-size: 0.875rem;
14244
+ font-weight: 600;
14245
+ line-height: 1.3;
14246
+ margin: 0;
14247
+ }
14248
+
14249
+ .st-fieldCard--bordered .st-fieldCard__label {
14250
+ font-size: 1rem;
14251
+ }
14252
+
14253
+ .st-fieldCard__comments {
14254
+ align-items: center;
14255
+ background: transparent;
14256
+ border: none;
14257
+ border-radius: var(--st-radius-sm, 0.25rem);
14258
+ color: var(--st-semantic-text-muted);
14259
+ cursor: var(--st-cursor-interactive, pointer);
14260
+ display: inline-flex;
14261
+ flex: 0 0 auto;
14262
+ font-size: 0.75rem;
14263
+ gap: 0.1875rem;
14264
+ line-height: 1;
14265
+ padding: 0.125rem var(--st-spacing-1, 0.25rem);
14266
+ }
14267
+
14268
+ .st-fieldCard__comments--static {
14269
+ cursor: default;
14270
+ }
14271
+
14272
+ .st-fieldCard__comments:hover:not(.st-fieldCard__comments--static) {
14273
+ color: var(--st-semantic-text-primary);
14274
+ }
14275
+
14276
+ .st-fieldCard__comments:focus-visible {
14277
+ outline: 2px solid var(--st-semantic-border-interactive);
14278
+ outline-offset: 2px;
14279
+ }
14280
+
14281
+ .st-fieldCard__body {
14282
+ color: var(--st-semantic-text-primary);
14283
+ flex: 1 1 auto;
14284
+ }
14285
+
14286
+ .st-fieldCard--plain .st-fieldCard__body,
14287
+ .st-fieldCard--accent .st-fieldCard__body {
14288
+ margin-top: var(--st-spacing-2, 0.5rem);
14289
+ }
14290
+
14291
+ .st-fieldCard--category1 {
14292
+ border-inline-start-color: var(--st-semantic-data-category1);
14293
+ }
14294
+ .st-fieldCard--category2 {
14295
+ border-inline-start-color: var(--st-semantic-data-category2);
14296
+ }
14297
+ .st-fieldCard--category3 {
14298
+ border-inline-start-color: var(--st-semantic-data-category3);
14299
+ }
14300
+ .st-fieldCard--category4 {
14301
+ border-inline-start-color: var(--st-semantic-data-category4);
14302
+ }
14303
+ .st-fieldCard--category5 {
14304
+ border-inline-start-color: var(--st-semantic-data-category5);
14305
+ }
14306
+ .st-fieldCard--category6 {
14307
+ border-inline-start-color: var(--st-semantic-data-category6);
14308
+ }
14309
+ .st-fieldCard--category7 {
14310
+ border-inline-start-color: var(--st-semantic-data-category7);
14311
+ }
14312
+ .st-fieldCard--category8 {
14313
+ border-inline-start-color: var(--st-semantic-data-category8);
14314
+ }
14315
+
14316
+ /* ---------------------------------------------------------------------------
14317
+ ScoreCard — carte de score avec notation symbolique (étoiles = value,
14318
+ croix = complexity) et score chiffré.
14319
+ --------------------------------------------------------------------------- */
14320
+ .st-scoreCard {
14321
+ background: var(--st-component-card-background, var(--st-semantic-surface-raised));
14322
+ border-width: var(--st-component-card-anatomy-shape-borderWidth, 1px);
14323
+ border-style: var(--st-component-card-anatomy-shape-borderStyle, solid);
14324
+ border-color: var(--st-component-card-border, var(--st-semantic-border-subtle));
14325
+ border-radius: var(--st-component-card-anatomy-shape-radius, 0.5rem);
14326
+ box-shadow: var(--st-component-card-shadow, 0 1px 2px rgb(15 23 42 / 0.08));
14327
+ color: var(--st-semantic-text-primary);
14328
+ display: flex;
14329
+ flex-direction: column;
14330
+ gap: var(--st-spacing-2, 0.5rem);
14331
+ padding: var(--st-spacing-4, 1rem);
14332
+ }
14333
+
14334
+ .st-scoreCard--sm {
14335
+ gap: var(--st-spacing-1, 0.25rem);
14336
+ padding: var(--st-spacing-3, 0.75rem);
14337
+ }
14338
+
14339
+ .st-scoreCard--lg {
14340
+ gap: var(--st-spacing-3, 0.75rem);
14341
+ padding: var(--st-spacing-6, 1.5rem);
14342
+ }
14343
+
14344
+ .st-scoreCard__title {
14345
+ color: var(--st-semantic-text-primary);
14346
+ font-size: 0.9375rem;
14347
+ font-weight: 600;
14348
+ line-height: 1.3;
14349
+ margin: 0;
14350
+ }
14351
+
14352
+ .st-scoreCard__row {
14353
+ align-items: center;
14354
+ display: flex;
14355
+ flex-wrap: wrap;
14356
+ gap: var(--st-spacing-3, 0.75rem);
14357
+ }
14358
+
14359
+ .st-scoreCard__symbols {
14360
+ display: inline-flex;
14361
+ gap: 0.125rem;
14362
+ }
14363
+
14364
+ .st-scoreCard__symbol {
14365
+ display: block;
14366
+ flex: 0 0 auto;
14367
+ }
14368
+
14369
+ .st-scoreCard--sm .st-scoreCard__symbol {
14370
+ height: 16px;
14371
+ width: 16px;
14372
+ }
14373
+
14374
+ .st-scoreCard--lg .st-scoreCard__symbol {
14375
+ height: 24px;
14376
+ width: 24px;
14377
+ }
14378
+
14379
+ .st-scoreCard__symbol--off {
14380
+ color: var(--st-semantic-border-default);
14381
+ }
14382
+
14383
+ .st-scoreCard--value .st-scoreCard__symbol--on {
14384
+ color: var(--st-semantic-feedback-warning);
14385
+ }
14386
+
14387
+ .st-scoreCard--complexity .st-scoreCard__symbol--on {
14388
+ color: var(--st-semantic-text-secondary);
14389
+ }
14390
+
14391
+ .st-scoreCard__score {
14392
+ font-size: 1.0625rem;
14393
+ font-weight: 700;
14394
+ }
14395
+
14396
+ .st-scoreCard--value .st-scoreCard__score {
14397
+ color: var(--st-semantic-feedback-success);
14398
+ }
14399
+
14400
+ .st-scoreCard--complexity .st-scoreCard__score {
14401
+ color: var(--st-semantic-feedback-warning);
14402
+ }
14403
+
14404
+ /* --- AppChrome : coque docs assemblée (compose AppHeader) --- */
14405
+ .st-appChrome {
14406
+ width: 100%;
14407
+ }
14408
+
14409
+ .st-appChrome__header .st-appHeader__bar {
14410
+ max-width: none;
14411
+ }
14412
+
14413
+ .st-appChrome__brand {
14414
+ align-items: center;
14415
+ color: var(--st-semantic-text-primary);
14416
+ display: inline-flex;
14417
+ flex: 0 0 auto;
14418
+ gap: var(--st-spacing-3, 0.75rem);
14419
+ min-width: 0;
14420
+ text-decoration: none;
14421
+ }
14422
+
14423
+ .st-appChrome__brandMark {
14424
+ aspect-ratio: 1;
14425
+ display: inline-block;
14426
+ flex: 0 0 auto;
14427
+ height: 2rem;
14428
+ object-fit: contain;
14429
+ width: 2rem;
14430
+ }
14431
+
14432
+ .st-appChrome__brandCopy {
14433
+ display: grid;
14434
+ gap: 0.08rem;
14435
+ line-height: 1;
14436
+ min-width: 0;
14437
+ }
14438
+
14439
+ .st-appChrome__brandName {
14440
+ color: var(--st-semantic-text-primary);
14441
+ font-size: 1rem;
14442
+ font-weight: 760;
14443
+ }
14444
+
14445
+ .st-appChrome__brandProduct {
14446
+ color: var(--st-semantic-text-secondary);
14447
+ font-size: 0.75rem;
14448
+ font-weight: 650;
14449
+ }
14450
+
14451
+ .st-appChrome__utilityNav {
14452
+ align-items: center;
14453
+ display: flex;
14454
+ gap: var(--st-spacing-2, 0.5rem);
14455
+ }
14456
+
14457
+ .st-appChrome__menuWrap {
14458
+ display: inline-block;
14459
+ position: relative;
14460
+ }
14461
+
14462
+ .st-appChrome__control {
14463
+ font-size: 0.75rem;
14464
+ }
14465
+
14466
+ .st-appChrome__iconControl {
14467
+ justify-content: center;
14468
+ padding: 0;
14469
+ width: 2.25rem;
14470
+ }
14471
+
14472
+ .st-appChrome__chevron {
14473
+ transition: transform var(--st-motion-fast, 120ms) ease;
14474
+ }
14475
+
14476
+ .st-appChrome__chevron.is-rotated {
14477
+ transform: rotate(180deg);
14478
+ }
14479
+
14480
+ .st-appChrome__menu {
14481
+ background: var(--st-semantic-surface-raised, var(--st-semantic-surface-default));
14482
+ border: 1px solid var(--st-semantic-border-subtle);
14483
+ border-radius: var(--st-radius-sm, 0.375rem);
14484
+ box-shadow: var(--st-shadow-medium, 0 8px 24px rgb(15 23 42 / 0.08));
14485
+ display: flex;
14486
+ flex-direction: column;
14487
+ gap: 0.1rem;
14488
+ min-width: 8.5rem;
14489
+ padding: 0.25rem;
14490
+ position: absolute;
14491
+ right: 0;
14492
+ top: calc(100% + 4px);
14493
+ z-index: var(--st-zindex-overlay, 80);
14494
+ }
14495
+
14496
+ .st-appChrome__menuItem {
14497
+ align-items: center;
14498
+ background: transparent;
14499
+ border: 0;
14500
+ border-radius: var(--st-radius-xs, 0.25rem);
14501
+ color: var(--st-semantic-text-secondary);
14502
+ cursor: pointer;
14503
+ display: flex;
14504
+ font: inherit;
14505
+ font-size: 0.82rem;
14506
+ font-weight: 550;
14507
+ gap: 0.45rem;
14508
+ padding: 0.35rem 0.65rem;
14509
+ text-align: left;
14510
+ width: 100%;
14511
+ transition: background-color var(--st-motion-fast, 120ms) ease,
14512
+ color var(--st-motion-fast, 120ms) ease;
14513
+ }
14514
+
14515
+ .st-appChrome__menuItem:hover {
14516
+ background: var(--st-semantic-surface-subtle);
14517
+ color: var(--st-semantic-text-primary);
14518
+ }
14519
+
14520
+ .st-appChrome__menuItem.is-active {
14521
+ color: var(--st-semantic-text-link);
14522
+ font-weight: 650;
14523
+ }
14524
+
14525
+ .st-appChrome__check {
14526
+ align-items: center;
14527
+ display: inline-flex;
14528
+ font-size: 0.75rem;
14529
+ justify-content: center;
14530
+ width: 0.75rem;
14531
+ }
14532
+
14533
+ .st-appChrome__burgerTrigger {
14534
+ align-items: center;
14535
+ background: transparent;
14536
+ border: 0;
14537
+ border-radius: var(--st-radius-xs, 0.25rem);
14538
+ color: var(--st-semantic-text-secondary);
14539
+ cursor: pointer;
14540
+ display: none;
14541
+ height: 2.25rem;
14542
+ justify-content: center;
14543
+ width: 2.25rem;
14544
+ }
14545
+
14546
+ .st-appChrome__burgerTrigger:hover {
14547
+ background: var(--st-semantic-surface-subtle);
14548
+ color: var(--st-semantic-text-primary);
14549
+ }
14550
+
14551
+ .st-appChrome__drawer {
14552
+ background: var(--st-semantic-surface-default);
14553
+ border-bottom: 1px solid var(--st-semantic-border-subtle);
14554
+ box-shadow: var(--st-shadow-medium, 0 10px 20px rgb(15 23 42 / 0.05));
14555
+ display: none;
14556
+ flex-direction: column;
14557
+ gap: var(--st-spacing-5, 1.25rem);
14558
+ padding: var(--st-spacing-5, 1.25rem);
14559
+ }
14560
+
14561
+ .st-appChrome__drawerSection {
14562
+ display: flex;
14563
+ flex-direction: column;
14564
+ gap: var(--st-spacing-2, 0.5rem);
14565
+ }
14566
+
14567
+ .st-appChrome__drawerLabel {
14568
+ color: var(--st-semantic-text-secondary);
14569
+ font-size: 0.75rem;
14570
+ font-weight: 700;
14571
+ letter-spacing: 0.05em;
14572
+ text-transform: uppercase;
14573
+ }
14574
+
14575
+ .st-appChrome__drawerLink {
14576
+ align-items: center;
14577
+ border-bottom: 1px solid var(--st-semantic-border-subtle);
14578
+ color: var(--st-semantic-text-primary);
14579
+ display: inline-flex;
14580
+ font-size: 1rem;
14581
+ font-weight: 650;
14582
+ gap: 0.45rem;
14583
+ padding: 0.45rem 0;
14584
+ text-decoration: none;
14585
+ }
14586
+
14587
+ .st-appChrome__drawerLink[aria-current="page"],
14588
+ .st-appChrome__drawerLink:hover {
14589
+ color: var(--st-semantic-text-link);
14590
+ }
14591
+
14592
+ .st-appChrome__drawerSwitcher {
14593
+ display: flex;
14594
+ gap: var(--st-spacing-2, 0.5rem);
14595
+ }
14596
+
14597
+ .st-appChrome__drawerBtn {
14598
+ background: var(--st-semantic-surface-subtle);
14599
+ border: 1px solid var(--st-semantic-border-subtle);
14600
+ border-radius: var(--st-radius-xs, 0.25rem);
14601
+ color: var(--st-semantic-text-secondary);
14602
+ cursor: pointer;
14603
+ flex: 1;
14604
+ font: inherit;
14605
+ font-size: 0.75rem;
14606
+ font-weight: 650;
14607
+ padding: 0.45rem;
14608
+ }
14609
+
14610
+ .st-appChrome__drawerBtn.is-active {
14611
+ background: var(--st-semantic-border-interactive);
14612
+ border-color: var(--st-semantic-border-interactive);
14613
+ color: var(--st-semantic-text-on-emphasis, var(--st-semantic-surface-default));
14614
+ }
14615
+
14616
+ @media (max-width: 768px) {
14617
+ .st-appChrome__utilityNav {
14618
+ display: none;
14619
+ }
14620
+
14621
+ .st-appChrome__burgerTrigger {
14622
+ display: inline-flex;
14623
+ }
14624
+
14625
+ .st-appChrome__drawer {
14626
+ display: flex;
14627
+ }
14628
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-vue",
3
- "version": "0.36.19",
3
+ "version": "0.36.21",
4
4
  "description": "Vue 3 components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {