@sentropic/design-system-vue 0.23.0 → 0.25.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.
package/dist/styles.css CHANGED
@@ -11207,3 +11207,312 @@
11207
11207
  }
11208
11208
  }
11209
11209
 
11210
+
11211
+ /* ── ChordDiagram ── */
11212
+ .st-chordDiagram {
11213
+ color: var(--st-semantic-text-secondary);
11214
+ display: block;
11215
+ font-family: inherit;
11216
+ max-width: 100%;
11217
+ position: relative;
11218
+ width: 100%;
11219
+ }
11220
+
11221
+ .st-chordDiagram svg,
11222
+ .st-chordDiagram__visual {
11223
+ display: block;
11224
+ overflow: visible;
11225
+ }
11226
+
11227
+ .st-chordDiagram__ribbon {
11228
+ cursor: pointer;
11229
+ fill-opacity: 0.4;
11230
+ stroke-opacity: 0.55;
11231
+ transition: opacity 120ms ease;
11232
+ }
11233
+
11234
+ .st-chordDiagram__ribbon:hover {
11235
+ fill-opacity: 0.62;
11236
+ }
11237
+
11238
+ .st-chordDiagram__ribbon--dim {
11239
+ opacity: 0.18;
11240
+ }
11241
+
11242
+ @media (prefers-reduced-motion: reduce) {
11243
+ .st-chordDiagram__ribbon {
11244
+ transition: none;
11245
+ }
11246
+ }
11247
+
11248
+ .st-chordDiagram__arc {
11249
+ stroke: var(--st-semantic-surface-default, Canvas);
11250
+ stroke-width: 1;
11251
+ }
11252
+
11253
+ .st-chordDiagram__arc--category1,
11254
+ .st-chordDiagram__ribbon--category1 { fill: var(--st-semantic-data-category1); stroke: var(--st-semantic-data-category1); }
11255
+ .st-chordDiagram__arc--category2,
11256
+ .st-chordDiagram__ribbon--category2 { fill: var(--st-semantic-data-category2); stroke: var(--st-semantic-data-category2); }
11257
+ .st-chordDiagram__arc--category3,
11258
+ .st-chordDiagram__ribbon--category3 { fill: var(--st-semantic-data-category3); stroke: var(--st-semantic-data-category3); }
11259
+ .st-chordDiagram__arc--category4,
11260
+ .st-chordDiagram__ribbon--category4 { fill: var(--st-semantic-data-category4); stroke: var(--st-semantic-data-category4); }
11261
+ .st-chordDiagram__arc--category5,
11262
+ .st-chordDiagram__ribbon--category5 { fill: var(--st-semantic-data-category5); stroke: var(--st-semantic-data-category5); }
11263
+ .st-chordDiagram__arc--category6,
11264
+ .st-chordDiagram__ribbon--category6 { fill: var(--st-semantic-data-category6); stroke: var(--st-semantic-data-category6); }
11265
+ .st-chordDiagram__arc--category7,
11266
+ .st-chordDiagram__ribbon--category7 { fill: var(--st-semantic-data-category7); stroke: var(--st-semantic-data-category7); }
11267
+ .st-chordDiagram__arc--category8,
11268
+ .st-chordDiagram__ribbon--category8 { fill: var(--st-semantic-data-category8); stroke: var(--st-semantic-data-category8); }
11269
+
11270
+ .st-chordDiagram__arcLabel {
11271
+ /* fill calculé par contrastTextForTone() en inline */
11272
+ font-size: 0.7rem;
11273
+ font-weight: 600;
11274
+ pointer-events: none;
11275
+ }
11276
+
11277
+ .st-chordDiagram__tooltip {
11278
+ background: var(--st-semantic-surface-inverse);
11279
+ border-radius: var(--st-radius-sm, 0.25rem);
11280
+ color: var(--st-semantic-text-inverse);
11281
+ display: inline-flex;
11282
+ flex-direction: column;
11283
+ font-size: 0.75rem;
11284
+ gap: 0.125rem;
11285
+ line-height: 1.2;
11286
+ padding: 0.375rem 0.5rem;
11287
+ pointer-events: none;
11288
+ position: absolute;
11289
+ transform: translate(-50%, -115%);
11290
+ white-space: nowrap;
11291
+ z-index: 1;
11292
+ }
11293
+
11294
+ .st-chordDiagram__tooltipLabel { font-weight: 600; }
11295
+ .st-chordDiagram__tooltipValue { opacity: 0.85; }
11296
+
11297
+ /* ── PackedBubblesChart ── */
11298
+ .st-packedBubblesChart {
11299
+ color: var(--st-semantic-text-secondary);
11300
+ display: block;
11301
+ font-family: inherit;
11302
+ max-width: 100%;
11303
+ position: relative;
11304
+ width: 100%;
11305
+ }
11306
+
11307
+ .st-packedBubblesChart svg,
11308
+ .st-packedBubblesChart__visual {
11309
+ display: block;
11310
+ overflow: visible;
11311
+ }
11312
+
11313
+ .st-packedBubblesChart__circle {
11314
+ cursor: pointer;
11315
+ stroke: var(--st-semantic-surface-default, Canvas);
11316
+ stroke-width: 1.5;
11317
+ transition: opacity 120ms ease;
11318
+ }
11319
+
11320
+ .st-packedBubblesChart__circle--dim {
11321
+ opacity: 0.4;
11322
+ }
11323
+
11324
+ @media (prefers-reduced-motion: reduce) {
11325
+ .st-packedBubblesChart__circle {
11326
+ transition: none;
11327
+ }
11328
+ }
11329
+
11330
+ .st-packedBubblesChart__circle--category1 { fill: var(--st-semantic-data-category1); }
11331
+ .st-packedBubblesChart__circle--category2 { fill: var(--st-semantic-data-category2); }
11332
+ .st-packedBubblesChart__circle--category3 { fill: var(--st-semantic-data-category3); }
11333
+ .st-packedBubblesChart__circle--category4 { fill: var(--st-semantic-data-category4); }
11334
+ .st-packedBubblesChart__circle--category5 { fill: var(--st-semantic-data-category5); }
11335
+ .st-packedBubblesChart__circle--category6 { fill: var(--st-semantic-data-category6); }
11336
+ .st-packedBubblesChart__circle--category7 { fill: var(--st-semantic-data-category7); }
11337
+ .st-packedBubblesChart__circle--category8 { fill: var(--st-semantic-data-category8); }
11338
+
11339
+ .st-packedBubblesChart__label {
11340
+ /* fill calculé par contrastTextForTone() en inline */
11341
+ font-size: 0.7rem;
11342
+ font-weight: 600;
11343
+ pointer-events: none;
11344
+ }
11345
+
11346
+ .st-packedBubblesChart__tooltip {
11347
+ background: var(--st-semantic-surface-inverse);
11348
+ border-radius: var(--st-radius-sm, 0.25rem);
11349
+ color: var(--st-semantic-text-inverse);
11350
+ display: inline-flex;
11351
+ flex-direction: column;
11352
+ font-size: 0.75rem;
11353
+ gap: 0.125rem;
11354
+ line-height: 1.2;
11355
+ padding: 0.375rem 0.5rem;
11356
+ pointer-events: none;
11357
+ position: absolute;
11358
+ transform: translate(-50%, -115%);
11359
+ white-space: nowrap;
11360
+ z-index: 1;
11361
+ }
11362
+
11363
+ .st-packedBubblesChart__tooltipLabel { font-weight: 600; }
11364
+ .st-packedBubblesChart__tooltipValue { opacity: 0.85; }
11365
+
11366
+ /* ── RoseChart (nightingale / polar area) ── */
11367
+ .st-roseChart {
11368
+ color: var(--st-semantic-text-secondary);
11369
+ display: block;
11370
+ font-family: inherit;
11371
+ max-width: 100%;
11372
+ position: relative;
11373
+ width: 100%;
11374
+ }
11375
+
11376
+ .st-roseChart svg,
11377
+ .st-roseChart__visual {
11378
+ display: block;
11379
+ overflow: visible;
11380
+ }
11381
+
11382
+ .st-roseChart__sector {
11383
+ cursor: pointer;
11384
+ fill-opacity: 0.82;
11385
+ stroke: var(--st-semantic-surface-default, Canvas);
11386
+ stroke-width: 1;
11387
+ transition: opacity 120ms ease;
11388
+ }
11389
+
11390
+ .st-roseChart__sector--dim {
11391
+ opacity: 0.4;
11392
+ }
11393
+
11394
+ .st-roseChart__sector--category1 { fill: var(--st-semantic-data-category1); }
11395
+ .st-roseChart__sector--category2 { fill: var(--st-semantic-data-category2); }
11396
+ .st-roseChart__sector--category3 { fill: var(--st-semantic-data-category3); }
11397
+ .st-roseChart__sector--category4 { fill: var(--st-semantic-data-category4); }
11398
+ .st-roseChart__sector--category5 { fill: var(--st-semantic-data-category5); }
11399
+ .st-roseChart__sector--category6 { fill: var(--st-semantic-data-category6); }
11400
+ .st-roseChart__sector--category7 { fill: var(--st-semantic-data-category7); }
11401
+ .st-roseChart__sector--category8 { fill: var(--st-semantic-data-category8); }
11402
+
11403
+ .st-roseChart__label {
11404
+ font-size: 0.68rem;
11405
+ font-weight: 650;
11406
+ pointer-events: none;
11407
+ }
11408
+
11409
+ .st-roseChart__tooltip {
11410
+ background: var(--st-semantic-surface-inverse);
11411
+ border-radius: var(--st-radius-sm, 0.25rem);
11412
+ color: var(--st-semantic-text-inverse);
11413
+ display: inline-flex;
11414
+ flex-direction: column;
11415
+ font-size: 0.75rem;
11416
+ gap: 0.125rem;
11417
+ line-height: 1.2;
11418
+ padding: 0.375rem 0.5rem;
11419
+ pointer-events: none;
11420
+ position: absolute;
11421
+ transform: translate(-50%, -115%);
11422
+ white-space: nowrap;
11423
+ z-index: 1;
11424
+ }
11425
+
11426
+ .st-roseChart__tooltipLabel { font-weight: 600; }
11427
+ .st-roseChart__tooltipValue { opacity: 0.85; }
11428
+
11429
+ @media (prefers-reduced-motion: reduce) {
11430
+ .st-roseChart__sector {
11431
+ transition: none;
11432
+ }
11433
+ }
11434
+
11435
+ /* ── ViolinChart (distribution density) ── */
11436
+ .st-violinChart {
11437
+ color: var(--st-semantic-text-secondary);
11438
+ display: block;
11439
+ font-family: inherit;
11440
+ max-width: 100%;
11441
+ position: relative;
11442
+ width: 100%;
11443
+ }
11444
+
11445
+ .st-violinChart svg,
11446
+ .st-violinChart__visual {
11447
+ display: block;
11448
+ overflow: visible;
11449
+ }
11450
+
11451
+ .st-violinChart__axis {
11452
+ stroke: var(--st-semantic-border-subtle);
11453
+ stroke-width: 1;
11454
+ }
11455
+
11456
+ .st-violinChart__shape {
11457
+ cursor: pointer;
11458
+ fill-opacity: 0.72;
11459
+ stroke: var(--st-semantic-surface-default, Canvas);
11460
+ stroke-width: 1;
11461
+ transition: opacity 120ms ease;
11462
+ }
11463
+
11464
+ .st-violinChart__shape--dim {
11465
+ opacity: 0.4;
11466
+ }
11467
+
11468
+ .st-violinChart__shape--category1 { fill: var(--st-semantic-data-category1); }
11469
+ .st-violinChart__shape--category2 { fill: var(--st-semantic-data-category2); }
11470
+ .st-violinChart__shape--category3 { fill: var(--st-semantic-data-category3); }
11471
+ .st-violinChart__shape--category4 { fill: var(--st-semantic-data-category4); }
11472
+ .st-violinChart__shape--category5 { fill: var(--st-semantic-data-category5); }
11473
+ .st-violinChart__shape--category6 { fill: var(--st-semantic-data-category6); }
11474
+ .st-violinChart__shape--category7 { fill: var(--st-semantic-data-category7); }
11475
+ .st-violinChart__shape--category8 { fill: var(--st-semantic-data-category8); }
11476
+
11477
+ .st-violinChart__box {
11478
+ fill: var(--st-semantic-surface-default, Canvas);
11479
+ fill-opacity: 0.85;
11480
+ stroke: var(--st-semantic-text-secondary);
11481
+ stroke-width: 1;
11482
+ }
11483
+
11484
+ .st-violinChart__median {
11485
+ stroke: var(--st-semantic-text-primary);
11486
+ stroke-width: 2;
11487
+ }
11488
+
11489
+ .st-violinChart__label {
11490
+ fill: var(--st-semantic-text-secondary);
11491
+ font-size: 0.75rem;
11492
+ }
11493
+
11494
+ .st-violinChart__tooltip {
11495
+ background: var(--st-semantic-surface-inverse);
11496
+ border-radius: var(--st-radius-sm, 0.25rem);
11497
+ color: var(--st-semantic-text-inverse);
11498
+ display: inline-flex;
11499
+ flex-direction: column;
11500
+ font-size: 0.75rem;
11501
+ gap: 0.125rem;
11502
+ line-height: 1.2;
11503
+ padding: 0.375rem 0.5rem;
11504
+ pointer-events: none;
11505
+ position: absolute;
11506
+ transform: translate(-50%, -115%);
11507
+ white-space: nowrap;
11508
+ z-index: 1;
11509
+ }
11510
+
11511
+ .st-violinChart__tooltipLabel { font-weight: 600; }
11512
+ .st-violinChart__tooltipValue { opacity: 0.85; }
11513
+
11514
+ @media (prefers-reduced-motion: reduce) {
11515
+ .st-violinChart__shape {
11516
+ transition: none;
11517
+ }
11518
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-vue",
3
- "version": "0.23.0",
3
+ "version": "0.25.0",
4
4
  "description": "Vue 3 components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {