@sentropic/design-system-vue 0.36.38 → 0.36.40

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
@@ -16259,3 +16259,389 @@
16259
16259
  transition: none;
16260
16260
  }
16261
16261
  }
16262
+
16263
+ .st-eventFeedPanel {
16264
+ color: var(--st-semantic-text-secondary);
16265
+ display: block;
16266
+ font-family: inherit;
16267
+ width: 100%;
16268
+ }
16269
+
16270
+ .st-eventFeedPanel__label {
16271
+ color: var(--st-semantic-text-primary);
16272
+ font-size: 0.75rem;
16273
+ font-weight: 600;
16274
+ margin: 0 0 var(--st-spacing-2, 0.5rem) 0;
16275
+ }
16276
+
16277
+ .st-eventFeedPanel__list {
16278
+ display: flex;
16279
+ flex-direction: column;
16280
+ gap: var(--st-spacing-1, 0.25rem);
16281
+ list-style: none;
16282
+ margin: 0;
16283
+ overflow-y: auto;
16284
+ padding: 0;
16285
+ }
16286
+
16287
+ .st-eventFeedPanel__item {
16288
+ align-items: flex-start;
16289
+ background: var(--st-semantic-surface-subtle);
16290
+ border-left: 3px solid var(--st-semantic-border-strong);
16291
+ border-radius: var(--st-radius-sm, 0.25rem);
16292
+ display: flex;
16293
+ gap: var(--st-spacing-2, 0.5rem);
16294
+ padding: var(--st-spacing-2, 0.5rem) var(--st-spacing-3, 0.75rem);
16295
+ }
16296
+
16297
+ .st-eventFeedPanel__item--info { border-left-color: var(--st-semantic-feedback-info, var(--st-semantic-action-primary)); }
16298
+ .st-eventFeedPanel__item--success { border-left-color: var(--st-semantic-feedback-success); }
16299
+ .st-eventFeedPanel__item--warning { border-left-color: var(--st-semantic-feedback-warning); }
16300
+ .st-eventFeedPanel__item--error { border-left-color: var(--st-semantic-feedback-error); }
16301
+ .st-eventFeedPanel__item--neutral { border-left-color: var(--st-semantic-border-strong); }
16302
+
16303
+ .st-eventFeedPanel__badge {
16304
+ border-radius: var(--st-radius-full, 9999px);
16305
+ flex: none;
16306
+ height: 0.5rem;
16307
+ margin-top: 0.3125rem;
16308
+ width: 0.5rem;
16309
+ }
16310
+
16311
+ .st-eventFeedPanel__badge--info { background: var(--st-semantic-feedback-info, var(--st-semantic-action-primary)); }
16312
+ .st-eventFeedPanel__badge--success { background: var(--st-semantic-feedback-success); }
16313
+ .st-eventFeedPanel__badge--warning { background: var(--st-semantic-feedback-warning); }
16314
+ .st-eventFeedPanel__badge--error { background: var(--st-semantic-feedback-error); }
16315
+ .st-eventFeedPanel__badge--neutral { background: var(--st-semantic-border-strong); }
16316
+
16317
+ .st-eventFeedPanel__body {
16318
+ display: flex;
16319
+ flex-direction: column;
16320
+ gap: 0.125rem;
16321
+ min-width: 0;
16322
+ }
16323
+
16324
+ .st-eventFeedPanel__meta {
16325
+ align-items: baseline;
16326
+ display: flex;
16327
+ gap: var(--st-spacing-2, 0.5rem);
16328
+ justify-content: space-between;
16329
+ }
16330
+
16331
+ .st-eventFeedPanel__type {
16332
+ color: var(--st-semantic-text-primary);
16333
+ font-size: 0.75rem;
16334
+ font-weight: 600;
16335
+ letter-spacing: 0.02em;
16336
+ text-transform: uppercase;
16337
+ }
16338
+
16339
+ .st-eventFeedPanel__time {
16340
+ color: var(--st-semantic-text-secondary);
16341
+ flex: none;
16342
+ font-size: 0.6875rem;
16343
+ font-variant-numeric: tabular-nums;
16344
+ }
16345
+
16346
+ .st-eventFeedPanel__message {
16347
+ color: var(--st-semantic-text-secondary);
16348
+ font-size: 0.8125rem;
16349
+ line-height: 1.35;
16350
+ margin: 0;
16351
+ }
16352
+
16353
+ .st-vectorFieldChart {
16354
+ color: var(--st-semantic-text-secondary);
16355
+ display: block;
16356
+ font-family: inherit;
16357
+ position: relative;
16358
+ width: 100%;
16359
+ }
16360
+
16361
+ .st-vectorFieldChart svg {
16362
+ display: block;
16363
+ overflow: visible;
16364
+ }
16365
+
16366
+ .st-vectorFieldChart__visual {
16367
+ display: block;
16368
+ }
16369
+
16370
+ .st-vectorFieldChart__grid {
16371
+ opacity: 0.7;
16372
+ stroke: var(--st-semantic-border-subtle);
16373
+ stroke-dasharray: 2 3;
16374
+ stroke-width: 1;
16375
+ }
16376
+
16377
+ .st-vectorFieldChart__axis {
16378
+ stroke: var(--st-semantic-border-subtle);
16379
+ stroke-width: 1;
16380
+ }
16381
+
16382
+ .st-vectorFieldChart__tick {
16383
+ fill: var(--st-semantic-text-secondary);
16384
+ font-size: 0.6875rem;
16385
+ }
16386
+
16387
+ .st-vectorFieldChart__arrow {
16388
+ transition: opacity 120ms ease;
16389
+ }
16390
+
16391
+ .st-vectorFieldChart__arrow--dim {
16392
+ opacity: 0.35;
16393
+ }
16394
+
16395
+ .st-vectorFieldChart__shaft {
16396
+ cursor: pointer;
16397
+ stroke: currentColor;
16398
+ stroke-linecap: round;
16399
+ stroke-width: 2;
16400
+ }
16401
+
16402
+ .st-vectorFieldChart__head {
16403
+ stroke: currentColor;
16404
+ stroke-linecap: round;
16405
+ stroke-width: 2;
16406
+ }
16407
+
16408
+ .st-vectorFieldChart__arrow--category1 { color: var(--st-semantic-data-category1); }
16409
+ .st-vectorFieldChart__arrow--category2 { color: var(--st-semantic-data-category2); }
16410
+ .st-vectorFieldChart__arrow--category3 { color: var(--st-semantic-data-category3); }
16411
+ .st-vectorFieldChart__arrow--category4 { color: var(--st-semantic-data-category4); }
16412
+ .st-vectorFieldChart__arrow--category5 { color: var(--st-semantic-data-category5); }
16413
+ .st-vectorFieldChart__arrow--category6 { color: var(--st-semantic-data-category6); }
16414
+ .st-vectorFieldChart__arrow--category7 { color: var(--st-semantic-data-category7); }
16415
+ .st-vectorFieldChart__arrow--category8 { color: var(--st-semantic-data-category8); }
16416
+
16417
+ .st-vectorFieldChart__tooltip {
16418
+ background: var(--st-semantic-surface-inverse);
16419
+ border-radius: var(--st-radius-sm, 0.25rem);
16420
+ color: var(--st-semantic-text-inverse);
16421
+ display: inline-flex;
16422
+ flex-direction: column;
16423
+ font-size: 0.75rem;
16424
+ gap: 0.125rem;
16425
+ line-height: 1.2;
16426
+ padding: 0.375rem 0.5rem;
16427
+ pointer-events: none;
16428
+ position: absolute;
16429
+ transform: translate(-50%, calc(-100% - 8px));
16430
+ white-space: nowrap;
16431
+ z-index: 1;
16432
+ }
16433
+
16434
+ .st-vectorFieldChart__tooltipLabel {
16435
+ font-weight: 600;
16436
+ }
16437
+
16438
+ .st-vectorFieldChart__tooltipValue {
16439
+ opacity: 0.85;
16440
+ }
16441
+
16442
+ @media (prefers-reduced-motion: reduce) {
16443
+ .st-vectorFieldChart__arrow {
16444
+ transition: none;
16445
+ }
16446
+ }
16447
+
16448
+ .st-contourChart {
16449
+ color: var(--st-semantic-text-secondary);
16450
+ display: block;
16451
+ font-family: inherit;
16452
+ position: relative;
16453
+ width: 100%;
16454
+ }
16455
+
16456
+ .st-contourChart svg {
16457
+ display: block;
16458
+ overflow: visible;
16459
+ }
16460
+
16461
+ .st-contourChart__visual {
16462
+ display: block;
16463
+ }
16464
+
16465
+ .st-contourChart__grid {
16466
+ opacity: 0.5;
16467
+ stroke: var(--st-semantic-border-subtle);
16468
+ stroke-dasharray: 2 3;
16469
+ stroke-width: 1;
16470
+ }
16471
+
16472
+ .st-contourChart__axis {
16473
+ stroke: var(--st-semantic-border-subtle);
16474
+ stroke-width: 1;
16475
+ }
16476
+
16477
+ .st-contourChart__tick {
16478
+ fill: var(--st-semantic-text-secondary);
16479
+ font-size: 0.6875rem;
16480
+ }
16481
+
16482
+ .st-contourChart__cell {
16483
+ cursor: pointer;
16484
+ stroke: var(--st-semantic-surface-default, Canvas);
16485
+ stroke-width: 0.5;
16486
+ transition: opacity 120ms ease;
16487
+ }
16488
+
16489
+ .st-contourChart__cell--dim {
16490
+ opacity: 0.35;
16491
+ }
16492
+
16493
+ .st-contourChart__cell--category1 { fill: var(--st-semantic-data-category1); }
16494
+ .st-contourChart__cell--category2 { fill: var(--st-semantic-data-category2); }
16495
+ .st-contourChart__cell--category3 { fill: var(--st-semantic-data-category3); }
16496
+ .st-contourChart__cell--category4 { fill: var(--st-semantic-data-category4); }
16497
+ .st-contourChart__cell--category5 { fill: var(--st-semantic-data-category5); }
16498
+ .st-contourChart__cell--category6 { fill: var(--st-semantic-data-category6); }
16499
+ .st-contourChart__cell--category7 { fill: var(--st-semantic-data-category7); }
16500
+ .st-contourChart__cell--category8 { fill: var(--st-semantic-data-category8); }
16501
+
16502
+ .st-contourChart__legend {
16503
+ align-items: center;
16504
+ color: var(--st-semantic-text-secondary);
16505
+ display: flex;
16506
+ font-size: 0.6875rem;
16507
+ gap: 0.375rem;
16508
+ margin-top: 0.5rem;
16509
+ }
16510
+
16511
+ .st-contourChart__legendRamp {
16512
+ display: inline-flex;
16513
+ }
16514
+
16515
+ .st-contourChart__legendSwatch {
16516
+ display: inline-block;
16517
+ height: 0.75rem;
16518
+ width: 1.25rem;
16519
+ }
16520
+
16521
+ .st-contourChart__legendSwatch--category1 { background: var(--st-semantic-data-category1); }
16522
+ .st-contourChart__legendSwatch--category2 { background: var(--st-semantic-data-category2); }
16523
+ .st-contourChart__legendSwatch--category3 { background: var(--st-semantic-data-category3); }
16524
+ .st-contourChart__legendSwatch--category4 { background: var(--st-semantic-data-category4); }
16525
+ .st-contourChart__legendSwatch--category5 { background: var(--st-semantic-data-category5); }
16526
+ .st-contourChart__legendSwatch--category6 { background: var(--st-semantic-data-category6); }
16527
+ .st-contourChart__legendSwatch--category7 { background: var(--st-semantic-data-category7); }
16528
+ .st-contourChart__legendSwatch--category8 { background: var(--st-semantic-data-category8); }
16529
+
16530
+ .st-contourChart__tooltip {
16531
+ background: var(--st-semantic-surface-inverse);
16532
+ border-radius: var(--st-radius-sm, 0.25rem);
16533
+ color: var(--st-semantic-text-inverse);
16534
+ display: inline-flex;
16535
+ flex-direction: column;
16536
+ font-size: 0.75rem;
16537
+ gap: 0.125rem;
16538
+ line-height: 1.2;
16539
+ padding: 0.375rem 0.5rem;
16540
+ pointer-events: none;
16541
+ position: absolute;
16542
+ transform: translate(-50%, calc(-100% - 8px));
16543
+ white-space: nowrap;
16544
+ z-index: 1;
16545
+ }
16546
+
16547
+ .st-contourChart__tooltipLabel {
16548
+ font-weight: 600;
16549
+ }
16550
+
16551
+ .st-contourChart__tooltipValue {
16552
+ opacity: 0.85;
16553
+ }
16554
+
16555
+ @media (prefers-reduced-motion: reduce) {
16556
+ .st-contourChart__cell {
16557
+ transition: none;
16558
+ }
16559
+ }
16560
+
16561
+ .st-windBarbChart {
16562
+ color: var(--st-semantic-text-secondary);
16563
+ display: block;
16564
+ font-family: inherit;
16565
+ position: relative;
16566
+ width: 100%;
16567
+ }
16568
+
16569
+ .st-windBarbChart svg {
16570
+ display: block;
16571
+ overflow: visible;
16572
+ }
16573
+
16574
+ .st-windBarbChart__visual {
16575
+ display: block;
16576
+ }
16577
+
16578
+ .st-windBarbChart__axis {
16579
+ stroke: var(--st-semantic-border-subtle);
16580
+ stroke-width: 1;
16581
+ }
16582
+
16583
+ .st-windBarbChart__tick {
16584
+ fill: var(--st-semantic-text-secondary);
16585
+ font-size: 0.6875rem;
16586
+ }
16587
+
16588
+ .st-windBarbChart__barb {
16589
+ transition: opacity 120ms ease;
16590
+ }
16591
+
16592
+ .st-windBarbChart__barb--dim {
16593
+ opacity: 0.35;
16594
+ }
16595
+
16596
+ .st-windBarbChart__shaft {
16597
+ cursor: pointer;
16598
+ stroke: currentColor;
16599
+ stroke-linecap: round;
16600
+ stroke-width: 2;
16601
+ }
16602
+
16603
+ .st-windBarbChart__feather {
16604
+ stroke: currentColor;
16605
+ stroke-linecap: round;
16606
+ stroke-width: 2;
16607
+ }
16608
+
16609
+ .st-windBarbChart__barb--category1 { color: var(--st-semantic-data-category1); }
16610
+ .st-windBarbChart__barb--category2 { color: var(--st-semantic-data-category2); }
16611
+ .st-windBarbChart__barb--category3 { color: var(--st-semantic-data-category3); }
16612
+ .st-windBarbChart__barb--category4 { color: var(--st-semantic-data-category4); }
16613
+ .st-windBarbChart__barb--category5 { color: var(--st-semantic-data-category5); }
16614
+ .st-windBarbChart__barb--category6 { color: var(--st-semantic-data-category6); }
16615
+ .st-windBarbChart__barb--category7 { color: var(--st-semantic-data-category7); }
16616
+ .st-windBarbChart__barb--category8 { color: var(--st-semantic-data-category8); }
16617
+
16618
+ .st-windBarbChart__tooltip {
16619
+ background: var(--st-semantic-surface-inverse);
16620
+ border-radius: var(--st-radius-sm, 0.25rem);
16621
+ color: var(--st-semantic-text-inverse);
16622
+ display: inline-flex;
16623
+ flex-direction: column;
16624
+ font-size: 0.75rem;
16625
+ gap: 0.125rem;
16626
+ line-height: 1.2;
16627
+ padding: 0.375rem 0.5rem;
16628
+ pointer-events: none;
16629
+ position: absolute;
16630
+ transform: translate(-50%, calc(-100% - 8px));
16631
+ white-space: nowrap;
16632
+ z-index: 1;
16633
+ }
16634
+
16635
+ .st-windBarbChart__tooltipLabel {
16636
+ font-weight: 600;
16637
+ }
16638
+
16639
+ .st-windBarbChart__tooltipValue {
16640
+ opacity: 0.85;
16641
+ }
16642
+
16643
+ @media (prefers-reduced-motion: reduce) {
16644
+ .st-windBarbChart__barb {
16645
+ transition: none;
16646
+ }
16647
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-vue",
3
- "version": "0.36.38",
3
+ "version": "0.36.40",
4
4
  "description": "Vue 3 components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {