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