@sentropic/design-system-react 0.6.0 → 0.8.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 (42) hide show
  1. package/dist/Avatar.d.ts +31 -0
  2. package/dist/Avatar.d.ts.map +1 -0
  3. package/dist/Avatar.js +11 -0
  4. package/dist/Avatar.js.map +1 -0
  5. package/dist/AvatarGroup.d.ts +21 -0
  6. package/dist/AvatarGroup.d.ts.map +1 -0
  7. package/dist/AvatarGroup.js +14 -0
  8. package/dist/AvatarGroup.js.map +1 -0
  9. package/dist/ButtonGroup.d.ts +28 -0
  10. package/dist/ButtonGroup.d.ts.map +1 -0
  11. package/dist/ButtonGroup.js +11 -0
  12. package/dist/ButtonGroup.js.map +1 -0
  13. package/dist/CheckboxGroup.d.ts +38 -0
  14. package/dist/CheckboxGroup.d.ts.map +1 -0
  15. package/dist/CheckboxGroup.js +14 -0
  16. package/dist/CheckboxGroup.js.map +1 -0
  17. package/dist/Collapsible.d.ts +18 -0
  18. package/dist/Collapsible.d.ts.map +1 -0
  19. package/dist/Collapsible.js +22 -0
  20. package/dist/Collapsible.js.map +1 -0
  21. package/dist/RadioGroup.d.ts +36 -0
  22. package/dist/RadioGroup.d.ts.map +1 -0
  23. package/dist/RadioGroup.js +15 -0
  24. package/dist/RadioGroup.js.map +1 -0
  25. package/dist/Stepper.d.ts +31 -0
  26. package/dist/Stepper.d.ts.map +1 -0
  27. package/dist/Stepper.js +28 -0
  28. package/dist/Stepper.js.map +1 -0
  29. package/dist/Typography.d.ts +21 -0
  30. package/dist/Typography.d.ts.map +1 -0
  31. package/dist/Typography.js +24 -0
  32. package/dist/Typography.js.map +1 -0
  33. package/dist/catalog.d.ts +13 -1
  34. package/dist/catalog.d.ts.map +1 -1
  35. package/dist/catalog.js +60 -12
  36. package/dist/catalog.js.map +1 -1
  37. package/dist/index.d.ts +16 -0
  38. package/dist/index.d.ts.map +1 -1
  39. package/dist/index.js +8 -0
  40. package/dist/index.js.map +1 -1
  41. package/dist/styles.css +667 -0
  42. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -7007,3 +7007,670 @@
7007
7007
  line-height: 1;
7008
7008
  white-space: nowrap;
7009
7009
  }
7010
+
7011
+ /* ===========================================================================
7012
+ Avatar — ported from components-svelte/src/lib/Avatar.svelte
7013
+ =========================================================================== */
7014
+ .st-avatar {
7015
+ align-items: center;
7016
+ display: inline-flex;
7017
+ flex: 0 0 auto;
7018
+ justify-content: center;
7019
+ overflow: hidden;
7020
+ user-select: none;
7021
+ vertical-align: middle;
7022
+ }
7023
+
7024
+ .st-avatar--circle {
7025
+ border-radius: 50%;
7026
+ }
7027
+
7028
+ .st-avatar--square {
7029
+ border-radius: var(--st-radius-sm, 0.375rem);
7030
+ }
7031
+
7032
+ .st-avatar--sm {
7033
+ font-size: 0.6875rem;
7034
+ height: 1.5rem;
7035
+ width: 1.5rem;
7036
+ }
7037
+
7038
+ .st-avatar--md {
7039
+ font-size: 0.8125rem;
7040
+ height: 2rem;
7041
+ width: 2rem;
7042
+ }
7043
+
7044
+ .st-avatar--lg {
7045
+ font-size: 1rem;
7046
+ height: 2.5rem;
7047
+ width: 2.5rem;
7048
+ }
7049
+
7050
+ .st-avatar--xl {
7051
+ font-size: 1.25rem;
7052
+ height: 3.5rem;
7053
+ width: 3.5rem;
7054
+ }
7055
+
7056
+ .st-avatar__image {
7057
+ display: block;
7058
+ height: 100%;
7059
+ object-fit: cover;
7060
+ object-position: center;
7061
+ width: 100%;
7062
+ }
7063
+
7064
+ .st-avatar__initials {
7065
+ font-weight: 700;
7066
+ letter-spacing: 0.01em;
7067
+ line-height: 1;
7068
+ }
7069
+
7070
+ .st-avatar--category1 {
7071
+ background: color-mix(in srgb, var(--st-semantic-data-category1) 16%, white);
7072
+ color: var(--st-semantic-data-category1);
7073
+ }
7074
+ .st-avatar--category2 {
7075
+ background: color-mix(in srgb, var(--st-semantic-data-category2) 16%, white);
7076
+ color: var(--st-semantic-data-category2);
7077
+ }
7078
+ .st-avatar--category3 {
7079
+ background: color-mix(in srgb, var(--st-semantic-data-category3) 16%, white);
7080
+ color: var(--st-semantic-data-category3);
7081
+ }
7082
+ .st-avatar--category4 {
7083
+ background: color-mix(in srgb, var(--st-semantic-data-category4) 16%, white);
7084
+ color: var(--st-semantic-data-category4);
7085
+ }
7086
+ .st-avatar--category5 {
7087
+ background: color-mix(in srgb, var(--st-semantic-data-category5) 16%, white);
7088
+ color: var(--st-semantic-data-category5);
7089
+ }
7090
+ .st-avatar--category6 {
7091
+ background: color-mix(in srgb, var(--st-semantic-data-category6) 16%, white);
7092
+ color: var(--st-semantic-data-category6);
7093
+ }
7094
+ .st-avatar--category7 {
7095
+ background: color-mix(in srgb, var(--st-semantic-data-category7) 16%, white);
7096
+ color: var(--st-semantic-data-category7);
7097
+ }
7098
+ .st-avatar--category8 {
7099
+ background: color-mix(in srgb, var(--st-semantic-data-category8) 16%, white);
7100
+ color: var(--st-semantic-data-category8);
7101
+ }
7102
+
7103
+ .st-avatar--image {
7104
+ background: var(--st-semantic-surface-subtle, #eef2f7);
7105
+ }
7106
+
7107
+ /* ===========================================================================
7108
+ AvatarGroup — ported from components-svelte/src/lib/AvatarGroup.svelte
7109
+ =========================================================================== */
7110
+ .st-avatarGroup {
7111
+ align-items: center;
7112
+ display: inline-flex;
7113
+ flex-direction: row;
7114
+ }
7115
+
7116
+ .st-avatarGroup > * {
7117
+ box-shadow: 0 0 0 2px var(--st-semantic-surface-default, #ffffff);
7118
+ position: relative;
7119
+ }
7120
+
7121
+ .st-avatarGroup > * + * {
7122
+ margin-inline-start: -0.5rem;
7123
+ }
7124
+
7125
+ .st-avatarGroup--sm > * + * {
7126
+ margin-inline-start: -0.375rem;
7127
+ }
7128
+
7129
+ .st-avatarGroup--lg > * + * {
7130
+ margin-inline-start: -0.625rem;
7131
+ }
7132
+
7133
+ .st-avatarGroup--xl > * + * {
7134
+ margin-inline-start: -0.875rem;
7135
+ }
7136
+
7137
+ .st-avatarGroup__overflow {
7138
+ align-items: center;
7139
+ background: var(--st-semantic-surface-subtle, #eef2f7);
7140
+ border-radius: 50%;
7141
+ box-shadow: 0 0 0 2px var(--st-semantic-surface-default, #ffffff);
7142
+ color: var(--st-semantic-text-secondary, #64748b);
7143
+ display: inline-flex;
7144
+ flex: 0 0 auto;
7145
+ font-weight: 700;
7146
+ justify-content: center;
7147
+ margin-inline-start: -0.5rem;
7148
+ position: relative;
7149
+ user-select: none;
7150
+ }
7151
+
7152
+ .st-avatarGroup--sm .st-avatarGroup__overflow {
7153
+ font-size: 0.6875rem;
7154
+ height: 1.5rem;
7155
+ margin-inline-start: -0.375rem;
7156
+ width: 1.5rem;
7157
+ }
7158
+
7159
+ .st-avatarGroup--md .st-avatarGroup__overflow {
7160
+ font-size: 0.75rem;
7161
+ height: 2rem;
7162
+ width: 2rem;
7163
+ }
7164
+
7165
+ .st-avatarGroup--lg .st-avatarGroup__overflow {
7166
+ font-size: 0.875rem;
7167
+ height: 2.5rem;
7168
+ margin-inline-start: -0.625rem;
7169
+ width: 2.5rem;
7170
+ }
7171
+
7172
+ .st-avatarGroup--xl .st-avatarGroup__overflow {
7173
+ font-size: 1.125rem;
7174
+ height: 3.5rem;
7175
+ margin-inline-start: -0.875rem;
7176
+ width: 3.5rem;
7177
+ }
7178
+
7179
+ /* ===========================================================================
7180
+ ButtonGroup — ported from components-svelte/src/lib/ButtonGroup.svelte
7181
+ =========================================================================== */
7182
+ .st-buttonGroup {
7183
+ align-items: stretch;
7184
+ display: inline-flex;
7185
+ }
7186
+
7187
+ .st-buttonGroup--horizontal {
7188
+ flex-direction: row;
7189
+ }
7190
+
7191
+ .st-buttonGroup--vertical {
7192
+ flex-direction: column;
7193
+ }
7194
+
7195
+ .st-buttonGroup:not(.st-buttonGroup--attached) {
7196
+ gap: var(--st-spacing-2, 0.5rem);
7197
+ }
7198
+
7199
+ .st-buttonGroup--attached {
7200
+ gap: 0;
7201
+ }
7202
+
7203
+ .st-buttonGroup--attached.st-buttonGroup--horizontal > * + * {
7204
+ margin-inline-start: -1px;
7205
+ }
7206
+
7207
+ .st-buttonGroup--attached.st-buttonGroup--vertical > * + * {
7208
+ margin-block-start: -1px;
7209
+ }
7210
+
7211
+ .st-buttonGroup--attached.st-buttonGroup--horizontal > *:not(:first-child):not(:last-child) {
7212
+ border-radius: 0;
7213
+ }
7214
+
7215
+ .st-buttonGroup--attached.st-buttonGroup--horizontal > *:first-child {
7216
+ border-end-end-radius: 0;
7217
+ border-start-end-radius: 0;
7218
+ }
7219
+
7220
+ .st-buttonGroup--attached.st-buttonGroup--horizontal > *:last-child {
7221
+ border-end-start-radius: 0;
7222
+ border-start-start-radius: 0;
7223
+ }
7224
+
7225
+ .st-buttonGroup--attached.st-buttonGroup--vertical > *:not(:first-child):not(:last-child) {
7226
+ border-radius: 0;
7227
+ }
7228
+
7229
+ .st-buttonGroup--attached.st-buttonGroup--vertical > *:first-child {
7230
+ border-end-start-radius: 0;
7231
+ border-end-end-radius: 0;
7232
+ }
7233
+
7234
+ .st-buttonGroup--attached.st-buttonGroup--vertical > *:last-child {
7235
+ border-start-start-radius: 0;
7236
+ border-start-end-radius: 0;
7237
+ }
7238
+
7239
+ .st-buttonGroup--attached > *:hover,
7240
+ .st-buttonGroup--attached > *:focus-visible {
7241
+ z-index: 1;
7242
+ }
7243
+
7244
+ /* ===========================================================================
7245
+ CheckboxGroup — ported from components-svelte/src/lib/CheckboxGroup.svelte
7246
+ =========================================================================== */
7247
+ .st-checkboxGroup {
7248
+ border: 0;
7249
+ margin: 0;
7250
+ min-width: 0;
7251
+ padding: 0;
7252
+ }
7253
+
7254
+ .st-checkboxGroup__legend {
7255
+ color: var(--st-component-field-labelText, var(--st-semantic-text-primary));
7256
+ font-size: 0.9375rem;
7257
+ font-weight: 650;
7258
+ line-height: 1.3;
7259
+ padding: 0;
7260
+ }
7261
+
7262
+ .st-checkboxGroup__help {
7263
+ color: var(--st-component-field-helpText, var(--st-semantic-text-secondary));
7264
+ font-size: 0.8125rem;
7265
+ margin: 0.25rem 0 0;
7266
+ }
7267
+
7268
+ .st-checkboxGroup__options {
7269
+ display: flex;
7270
+ gap: var(--st-spacing-3, 0.75rem);
7271
+ margin-top: var(--st-spacing-2, 0.5rem);
7272
+ }
7273
+
7274
+ .st-checkboxGroup--vertical .st-checkboxGroup__options {
7275
+ flex-direction: column;
7276
+ }
7277
+
7278
+ .st-checkboxGroup--horizontal .st-checkboxGroup__options {
7279
+ flex-direction: row;
7280
+ flex-wrap: wrap;
7281
+ }
7282
+
7283
+ /* ===========================================================================
7284
+ RadioGroup — ported from components-svelte/src/lib/RadioGroup.svelte
7285
+ =========================================================================== */
7286
+ .st-radioGroup {
7287
+ border: 0;
7288
+ margin: 0;
7289
+ min-width: 0;
7290
+ padding: 0;
7291
+ }
7292
+
7293
+ .st-radioGroup__legend {
7294
+ color: var(--st-component-field-labelText, var(--st-semantic-text-primary));
7295
+ font-size: 0.9375rem;
7296
+ font-weight: 650;
7297
+ line-height: 1.3;
7298
+ padding: 0;
7299
+ }
7300
+
7301
+ .st-radioGroup__help {
7302
+ color: var(--st-component-field-helpText, var(--st-semantic-text-secondary));
7303
+ font-size: 0.8125rem;
7304
+ margin: 0.25rem 0 0;
7305
+ }
7306
+
7307
+ .st-radioGroup__options {
7308
+ display: flex;
7309
+ gap: var(--st-spacing-3, 0.75rem);
7310
+ margin-top: var(--st-spacing-2, 0.5rem);
7311
+ }
7312
+
7313
+ .st-radioGroup--vertical .st-radioGroup__options {
7314
+ flex-direction: column;
7315
+ }
7316
+
7317
+ .st-radioGroup--horizontal .st-radioGroup__options {
7318
+ flex-direction: row;
7319
+ flex-wrap: wrap;
7320
+ }
7321
+
7322
+ /* ===========================================================================
7323
+ Typography — ported from components-svelte/src/lib/Typography.svelte
7324
+ =========================================================================== */
7325
+ .st-typography {
7326
+ color: var(--st-semantic-text-primary);
7327
+ margin: 0;
7328
+ }
7329
+
7330
+ .st-typography--display {
7331
+ font-size: 2.75rem;
7332
+ font-weight: 700;
7333
+ letter-spacing: -0.02em;
7334
+ line-height: 1.1;
7335
+ }
7336
+
7337
+ .st-typography--h1 {
7338
+ font-size: 2rem;
7339
+ font-weight: 700;
7340
+ letter-spacing: -0.015em;
7341
+ line-height: 1.15;
7342
+ }
7343
+
7344
+ .st-typography--h2 {
7345
+ font-size: 1.625rem;
7346
+ font-weight: 700;
7347
+ letter-spacing: -0.01em;
7348
+ line-height: 1.2;
7349
+ }
7350
+
7351
+ .st-typography--h3 {
7352
+ font-size: 1.375rem;
7353
+ font-weight: 650;
7354
+ letter-spacing: -0.01em;
7355
+ line-height: 1.25;
7356
+ }
7357
+
7358
+ .st-typography--h4 {
7359
+ font-size: 1.125rem;
7360
+ font-weight: 650;
7361
+ line-height: 1.3;
7362
+ }
7363
+
7364
+ .st-typography--h5 {
7365
+ font-size: 1rem;
7366
+ font-weight: 650;
7367
+ line-height: 1.35;
7368
+ }
7369
+
7370
+ .st-typography--h6 {
7371
+ font-size: 0.875rem;
7372
+ font-weight: 650;
7373
+ line-height: 1.4;
7374
+ }
7375
+
7376
+ .st-typography--body {
7377
+ font-size: 1rem;
7378
+ font-weight: 400;
7379
+ line-height: 1.55;
7380
+ }
7381
+
7382
+ .st-typography--body-sm {
7383
+ font-size: 0.875rem;
7384
+ font-weight: 400;
7385
+ line-height: 1.5;
7386
+ }
7387
+
7388
+ .st-typography--caption {
7389
+ color: var(--st-semantic-text-secondary);
7390
+ font-size: 0.8125rem;
7391
+ font-weight: 400;
7392
+ line-height: 1.4;
7393
+ }
7394
+
7395
+ .st-typography--overline {
7396
+ color: var(--st-semantic-text-secondary);
7397
+ font-size: 0.6875rem;
7398
+ font-weight: 650;
7399
+ letter-spacing: 0.08em;
7400
+ line-height: 1.3;
7401
+ text-transform: uppercase;
7402
+ }
7403
+
7404
+ .st-typography--weight-regular {
7405
+ font-weight: 400;
7406
+ }
7407
+ .st-typography--weight-medium {
7408
+ font-weight: 500;
7409
+ }
7410
+ .st-typography--weight-semibold {
7411
+ font-weight: 650;
7412
+ }
7413
+ .st-typography--weight-bold {
7414
+ font-weight: 700;
7415
+ }
7416
+
7417
+ .st-typography--tone-primary {
7418
+ color: var(--st-semantic-text-primary);
7419
+ }
7420
+ .st-typography--tone-secondary {
7421
+ color: var(--st-semantic-text-secondary);
7422
+ }
7423
+ .st-typography--tone-muted {
7424
+ color: var(--st-semantic-text-muted);
7425
+ }
7426
+ .st-typography--tone-inverse {
7427
+ color: var(--st-semantic-text-inverse);
7428
+ }
7429
+ .st-typography--tone-link {
7430
+ color: var(--st-semantic-text-link, var(--st-semantic-action-primary));
7431
+ }
7432
+
7433
+ .st-typography--align-start {
7434
+ text-align: start;
7435
+ }
7436
+ .st-typography--align-center {
7437
+ text-align: center;
7438
+ }
7439
+ .st-typography--align-end {
7440
+ text-align: end;
7441
+ }
7442
+ .st-typography--align-justify {
7443
+ text-align: justify;
7444
+ }
7445
+
7446
+ .st-typography--truncate {
7447
+ overflow: hidden;
7448
+ text-overflow: ellipsis;
7449
+ white-space: nowrap;
7450
+ }
7451
+
7452
+ /* ===========================================================================
7453
+ Collapsible — ported from components-svelte/src/lib/Collapsible.svelte
7454
+ =========================================================================== */
7455
+ .st-collapsible {
7456
+ color: var(--st-semantic-text-primary);
7457
+ width: 100%;
7458
+ }
7459
+
7460
+ .st-collapsible__trigger {
7461
+ align-items: center;
7462
+ background: transparent;
7463
+ border: 0;
7464
+ color: var(--st-component-accordion-text, inherit);
7465
+ cursor: pointer;
7466
+ display: flex;
7467
+ font: inherit;
7468
+ font-size: var(--st-component-accordion-fontSize, 0.9375rem);
7469
+ font-weight: var(--st-component-accordion-fontWeight, 650);
7470
+ gap: 0.75rem;
7471
+ justify-content: space-between;
7472
+ line-height: var(--st-component-accordion-lineHeight, 1.3);
7473
+ padding: var(--st-component-accordion-paddingBlock, 0.625rem)
7474
+ var(--st-component-accordion-paddingInline, 0.25rem);
7475
+ text-align: start;
7476
+ transition: background-color var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
7477
+ width: 100%;
7478
+ }
7479
+
7480
+ .st-collapsible__trigger:hover:not(:disabled) {
7481
+ background: var(--st-component-control-hoverBackground, var(--st-semantic-surface-subtle));
7482
+ }
7483
+
7484
+ .st-collapsible__trigger:focus-visible {
7485
+ outline: 2px solid var(--st-component-control-focusRing, var(--st-semantic-border-interactive));
7486
+ outline-offset: -2px;
7487
+ }
7488
+
7489
+ .st-collapsible__trigger:disabled {
7490
+ color: var(--st-semantic-text-muted);
7491
+ cursor: not-allowed;
7492
+ }
7493
+
7494
+ .st-collapsible__title {
7495
+ flex: 1 1 auto;
7496
+ }
7497
+
7498
+ .st-collapsible__icon {
7499
+ align-items: center;
7500
+ color: var(--st-semantic-text-secondary);
7501
+ display: inline-flex;
7502
+ flex: 0 0 auto;
7503
+ height: 1.25rem;
7504
+ justify-content: center;
7505
+ transition: transform var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
7506
+ width: 1.25rem;
7507
+ }
7508
+
7509
+ .st-collapsible--open .st-collapsible__icon {
7510
+ transform: rotate(180deg);
7511
+ }
7512
+
7513
+ .st-collapsible__region {
7514
+ color: var(--st-semantic-text-secondary);
7515
+ line-height: 1.5;
7516
+ padding: 0 0.25rem 0.625rem;
7517
+ }
7518
+
7519
+ /* ===========================================================================
7520
+ Stepper — ported from components-svelte/src/lib/Stepper.svelte
7521
+ =========================================================================== */
7522
+ .st-stepper {
7523
+ color: var(--st-semantic-text-primary);
7524
+ display: flex;
7525
+ list-style: none;
7526
+ margin: 0;
7527
+ padding: 0;
7528
+ }
7529
+
7530
+ .st-stepper--horizontal {
7531
+ align-items: flex-start;
7532
+ flex-direction: row;
7533
+ }
7534
+
7535
+ .st-stepper--vertical {
7536
+ flex-direction: column;
7537
+ }
7538
+
7539
+ .st-stepper__step {
7540
+ display: flex;
7541
+ flex: 1 1 0;
7542
+ gap: var(--st-spacing-2, 0.5rem);
7543
+ min-width: 0;
7544
+ position: relative;
7545
+ }
7546
+
7547
+ .st-stepper--horizontal .st-stepper__step {
7548
+ align-items: flex-start;
7549
+ flex-direction: column;
7550
+ }
7551
+
7552
+ .st-stepper--vertical .st-stepper__step {
7553
+ align-items: flex-start;
7554
+ flex: 0 0 auto;
7555
+ flex-direction: row;
7556
+ }
7557
+
7558
+ .st-stepper__indicator {
7559
+ align-items: center;
7560
+ display: flex;
7561
+ flex: 0 0 auto;
7562
+ justify-content: center;
7563
+ position: relative;
7564
+ }
7565
+
7566
+ .st-stepper--horizontal .st-stepper__indicator {
7567
+ flex-direction: row;
7568
+ width: 100%;
7569
+ }
7570
+
7571
+ .st-stepper--vertical .st-stepper__indicator {
7572
+ flex-direction: column;
7573
+ min-height: 3rem;
7574
+ }
7575
+
7576
+ .st-stepper__circle {
7577
+ align-items: center;
7578
+ background: var(--st-semantic-surface-default);
7579
+ border: 1.5px solid var(--st-semantic-border-strong);
7580
+ border-radius: 50%;
7581
+ color: var(--st-semantic-text-secondary);
7582
+ display: inline-flex;
7583
+ flex: 0 0 auto;
7584
+ font-size: 0.75rem;
7585
+ font-weight: 600;
7586
+ height: 1.5rem;
7587
+ justify-content: center;
7588
+ line-height: 1;
7589
+ width: 1.5rem;
7590
+ z-index: 1;
7591
+ }
7592
+
7593
+ .st-stepper__circle--button {
7594
+ cursor: pointer;
7595
+ font: inherit;
7596
+ font-size: 0.75rem;
7597
+ font-weight: 600;
7598
+ padding: 0;
7599
+ transition:
7600
+ background var(--st-motion-fast, 120ms) var(--st-motion-easing, ease),
7601
+ border-color var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
7602
+ }
7603
+
7604
+ .st-stepper__circle--button:hover {
7605
+ border-color: var(--st-semantic-action-primary);
7606
+ }
7607
+
7608
+ .st-stepper__circle--button:focus-visible {
7609
+ outline: 2px solid var(--st-semantic-border-interactive, var(--st-semantic-action-primary));
7610
+ outline-offset: 2px;
7611
+ }
7612
+
7613
+ .st-stepper__index {
7614
+ line-height: 1;
7615
+ }
7616
+
7617
+ .st-stepper__connector {
7618
+ background: var(--st-semantic-border-subtle);
7619
+ flex: 1 1 auto;
7620
+ }
7621
+
7622
+ .st-stepper--horizontal .st-stepper__connector {
7623
+ height: 2px;
7624
+ margin-top: calc(0.75rem - 1px);
7625
+ }
7626
+
7627
+ .st-stepper--vertical .st-stepper__connector {
7628
+ margin-left: calc(0.75rem - 1px);
7629
+ min-height: 1.5rem;
7630
+ width: 2px;
7631
+ }
7632
+
7633
+ .st-stepper__text {
7634
+ display: grid;
7635
+ gap: 0.125rem;
7636
+ min-width: 0;
7637
+ }
7638
+
7639
+ .st-stepper--horizontal .st-stepper__text {
7640
+ padding-right: var(--st-spacing-3, 0.75rem);
7641
+ padding-top: var(--st-spacing-2, 0.5rem);
7642
+ }
7643
+
7644
+ .st-stepper--vertical .st-stepper__text {
7645
+ padding-bottom: var(--st-spacing-3, 0.75rem);
7646
+ }
7647
+
7648
+ .st-stepper__label {
7649
+ color: var(--st-semantic-text-primary);
7650
+ font-size: 0.875rem;
7651
+ font-weight: 600;
7652
+ }
7653
+
7654
+ .st-stepper__description {
7655
+ color: var(--st-semantic-text-secondary);
7656
+ font-size: 0.8125rem;
7657
+ }
7658
+
7659
+ .st-stepper__step--complete .st-stepper__circle {
7660
+ background: var(--st-semantic-action-primary);
7661
+ border-color: var(--st-semantic-action-primary);
7662
+ color: var(--st-semantic-action-primaryText);
7663
+ }
7664
+
7665
+ .st-stepper__step--complete .st-stepper__connector {
7666
+ background: var(--st-semantic-action-primary);
7667
+ }
7668
+
7669
+ .st-stepper__step--current .st-stepper__circle {
7670
+ border-color: var(--st-semantic-action-primary);
7671
+ color: var(--st-semantic-action-primary);
7672
+ }
7673
+
7674
+ .st-stepper__step--current .st-stepper__label {
7675
+ color: var(--st-semantic-action-primary);
7676
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-react",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "description": "React components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {