@uniai-fe/uds-primitives 0.3.16 → 0.3.18

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
@@ -344,6 +344,19 @@
344
344
  --input-table-text-large-size: var(--font-body-small-size);
345
345
  --input-table-text-large-line-height: var(--font-body-small-line-height);
346
346
  --input-table-text-large-weight: var(--font-body-small-weight);
347
+ /* Figma size 매핑: small/medium/large typography 토큰 */
348
+ --input-text-small-size: var(--font-body-xsmall-size);
349
+ --input-text-small-line-height: var(--font-label-medium-line-height);
350
+ --input-text-small-weight: 400;
351
+ --input-text-small-letter-spacing: 0.2px;
352
+ --input-text-medium-size: var(--font-body-medium-size);
353
+ --input-text-medium-line-height: var(--font-body-medium-line-height);
354
+ --input-text-medium-weight: 400;
355
+ --input-text-medium-letter-spacing: 0px;
356
+ --input-text-large-size: var(--font-body-large-size);
357
+ --input-text-large-line-height: var(--font-body-large-line-height);
358
+ --input-text-large-weight: 400;
359
+ --input-text-large-letter-spacing: 0px;
347
360
  /* Label/helper colors */
348
361
  --input-label-color: var(--color-label-standard);
349
362
  --input-label-accent-color: var(--color-primary-default);
@@ -365,9 +378,9 @@
365
378
  --input-placeholder-disabled-color: var(--color-label-disabled);
366
379
  /* 변경: readonly 입력은 placeholder를 숨겨 value 텍스트 대비를 고정한다. */
367
380
  --input-placeholder-readonly-color: transparent;
368
- --input-font-size: var(--font-body-medium-size);
369
- --input-line-height: var(--font-body-medium-line-height);
370
- --input-font-weight: 400;
381
+ --input-font-size: var(--input-text-medium-size);
382
+ --input-line-height: var(--input-text-medium-line-height);
383
+ --input-font-weight: var(--input-text-medium-weight);
371
384
  --input-letter-spacing: 0px;
372
385
  /* Border tokens */
373
386
  --input-border-color: var(--color-border-standard-cool-gray);
@@ -497,18 +510,19 @@
497
510
  --input-table-text-large-line-height
498
511
  );
499
512
  --select-table-text-large-weight: var(--input-table-text-large-weight);
500
- --select-text-small-size: 15px;
501
- --select-text-small-line-height: 1.4;
502
- --select-text-small-letter-spacing: 0.2px;
503
- --select-text-small-weight: 400;
504
- --select-text-medium-size: var(--font-body-medium-size);
505
- --select-text-medium-line-height: var(--font-body-medium-line-height);
506
- --select-text-medium-letter-spacing: 0;
507
- --select-text-medium-weight: 400;
508
- --select-text-large-size: var(--font-body-large-size);
509
- --select-text-large-line-height: var(--font-body-large-line-height);
510
- --select-text-large-letter-spacing: 0;
511
- --select-text-large-weight: 400;
513
+ /* 변경: trigger 텍스트 토큰을 input text 토큰과 직접 매핑해 size typography를 동기화한다. */
514
+ --select-text-small-size: var(--input-text-small-size);
515
+ --select-text-small-line-height: var(--input-text-small-line-height);
516
+ --select-text-small-letter-spacing: var(--input-text-small-letter-spacing);
517
+ --select-text-small-weight: var(--input-text-small-weight);
518
+ --select-text-medium-size: var(--input-text-medium-size);
519
+ --select-text-medium-line-height: var(--input-text-medium-line-height);
520
+ --select-text-medium-letter-spacing: var(--input-text-medium-letter-spacing);
521
+ --select-text-medium-weight: var(--input-text-medium-weight);
522
+ --select-text-large-size: var(--input-text-large-size);
523
+ --select-text-large-line-height: var(--input-text-large-line-height);
524
+ --select-text-large-letter-spacing: var(--input-text-large-letter-spacing);
525
+ --select-text-large-weight: var(--input-text-large-weight);
512
526
  --select-icon-size-small: 1.6rem;
513
527
  --select-icon-size-medium: 2rem;
514
528
  --select-icon-size-large: 2rem;
@@ -652,9 +666,15 @@
652
666
  .alternate.is-horizontal.loading .empty-text {
653
667
  transform: translateY(0.2rem);
654
668
  }
669
+ .alternate.is-horizontal.loading .empty-text {
670
+ margin-left: 1rem;
671
+ }
655
672
  .alternate.is-vertical {
656
673
  flex-direction: column;
657
674
  }
675
+ .alternate.is-vertical .empty-text {
676
+ margin-top: 1rem;
677
+ }
658
678
 
659
679
  .alternate-loading-icon {
660
680
  width: 2.4rem;
@@ -666,12 +686,6 @@
666
686
  justify-content: center;
667
687
  animation: alternate-loading-spin 1s linear infinite;
668
688
  }
669
- .alternate-loading-icon.is-horizontal {
670
- margin-right: 1rem;
671
- }
672
- .alternate-loading-icon.is-vertical {
673
- margin-bottom: 1rem;
674
- }
675
689
  .alternate-loading-icon.is-medium {
676
690
  width: 3.6rem;
677
691
  height: 3.6rem;
@@ -680,6 +694,10 @@
680
694
  width: 5.2rem;
681
695
  height: 5.2rem;
682
696
  }
697
+ .alternate-loading-icon svg {
698
+ width: 100%;
699
+ height: 100%;
700
+ }
683
701
 
684
702
 
685
703
 
@@ -1760,6 +1778,7 @@
1760
1778
  box-sizing: border-box;
1761
1779
  margin: 0;
1762
1780
  width: fit-content;
1781
+ max-width: 100%;
1763
1782
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
1764
1783
  }
1765
1784
 
@@ -1863,12 +1882,13 @@ figure.chip {
1863
1882
  }
1864
1883
 
1865
1884
  .chip-label {
1866
- display: flex;
1867
- align-items: center;
1868
- gap: var(--theme-chip-label-gap);
1869
1885
  color: inherit;
1870
- line-height: 1;
1886
+ line-height: 1em;
1871
1887
  white-space: nowrap;
1888
+ width: fit-content;
1889
+ max-width: 100%;
1890
+ overflow: hidden;
1891
+ text-overflow: ellipsis;
1872
1892
  }
1873
1893
 
1874
1894
  .chip-remove-button {
@@ -2467,9 +2487,17 @@ figure.chip {
2467
2487
  }
2468
2488
  .input-field[data-size=small] {
2469
2489
  min-height: var(--input-default-height-small);
2490
+ --input-font-size: var(--input-text-small-size);
2491
+ --input-line-height: var(--input-text-small-line-height);
2492
+ --input-font-weight: var(--input-text-small-weight);
2493
+ --input-letter-spacing: var(--input-text-small-letter-spacing);
2470
2494
  }
2471
2495
  .input-field[data-size=large] {
2472
2496
  min-height: var(--input-default-height-large);
2497
+ --input-font-size: var(--input-text-large-size);
2498
+ --input-line-height: var(--input-text-large-line-height);
2499
+ --input-font-weight: var(--input-text-large-weight);
2500
+ --input-letter-spacing: var(--input-text-large-letter-spacing);
2473
2501
  }
2474
2502
  .input-field[data-priority=secondary] {
2475
2503
  border: none;
@@ -2499,6 +2527,10 @@ figure.chip {
2499
2527
  border-radius: var(--input-tertiary-radius-base);
2500
2528
  background-color: var(--input-surface-color);
2501
2529
  min-height: var(--input-tertiary-height-base);
2530
+ --input-font-size: var(--input-text-medium-size);
2531
+ --input-line-height: var(--input-text-medium-line-height);
2532
+ --input-font-weight: var(--input-text-medium-weight);
2533
+ --input-letter-spacing: var(--input-text-medium-letter-spacing);
2502
2534
  row-gap: var(--input-tertiary-row-gap);
2503
2535
  column-gap: var(--input-default-gap);
2504
2536
  flex-wrap: wrap;
@@ -3874,7 +3906,7 @@ figure.chip {
3874
3906
  }
3875
3907
 
3876
3908
  .select-button[data-priority=secondary][data-size=large] .select-label {
3877
- font-weight: 600;
3909
+ --select-text-large-weight: 600;
3878
3910
  }
3879
3911
 
3880
3912
  .select-tags {
@@ -4185,157 +4217,162 @@ figure.chip {
4185
4217
 
4186
4218
 
4187
4219
 
4188
- .table.table-container {
4220
+ .table {
4189
4221
  width: 100%;
4190
4222
  border-collapse: collapse;
4191
4223
  border-spacing: 0;
4192
4224
  }
4193
-
4194
- .table.table-container .table-native-cell.table-th,
4195
- .table.table-container .table-native-cell.table-td {
4225
+ .table :where(.table-native-cell):where(.table-th) {
4196
4226
  vertical-align: middle;
4197
4227
  background-color: var(--table-cell-background-color);
4198
4228
  text-align: left;
4199
4229
  }
4200
-
4201
- .table.table-container[data-layout=line] .table-native-cell.table-th,
4202
- .table.table-container[data-layout=line] .table-native-cell.table-td {
4230
+ .table :where(.table-native-cell):where(.table-td) {
4231
+ vertical-align: middle;
4232
+ background-color: var(--table-cell-background-color);
4233
+ text-align: left;
4234
+ position: relative;
4235
+ z-index: 0;
4236
+ }
4237
+ .table[data-layout=line] :where(.table-native-cell):where(.table-th) {
4203
4238
  --table-cell-padding-inline: var(--table-line-cell-padding-inline);
4204
4239
  --table-cell-padding-block: var(--table-line-cell-padding-block);
4205
4240
  border-bottom: 1px solid var(--table-border-color);
4206
4241
  }
4207
-
4208
- .table.table-container[data-layout=line] .table-head .table-native-cell.table-th {
4242
+ .table[data-layout=line] :where(.table-native-cell):where(.table-td) {
4243
+ --table-cell-padding-inline: var(--table-line-cell-padding-inline);
4244
+ --table-cell-padding-block: var(--table-line-cell-padding-block);
4245
+ border-bottom: 1px solid var(--table-border-color);
4246
+ }
4247
+ .table[data-layout=line] :where(.table-head) :where(.table-native-cell):where(.table-th) {
4209
4248
  height: var(--table-line-cell-height-head);
4210
4249
  border-top: 1px solid var(--table-border-color);
4211
4250
  background-color: var(--table-line-head-background-color);
4212
4251
  }
4213
-
4214
- .table.table-container[data-layout=line] .table-body .table-native-cell.table-td,
4215
- .table.table-container[data-layout=line] .table-foot .table-native-cell.table-td {
4252
+ .table[data-layout=line] :where(.table-body) :where(.table-native-cell):where(.table-td) {
4216
4253
  height: var(--table-line-cell-height-body);
4217
4254
  }
4218
-
4219
- .table.table-container[data-layout=line] .table-body .table-native-cell.table-th .table-native-cell-text,
4220
- .table.table-container[data-layout=line] .table-body .table-native-cell.table-th .table-cell-text {
4255
+ .table[data-layout=line] :where(.table-body) :where(.table-native-cell):where(.table-th) :where(.table-native-cell-text) {
4221
4256
  font-weight: 600;
4222
4257
  }
4223
-
4224
- .table.table-container[data-layout=line] .table-native-cell[rowspan] {
4258
+ .table[data-layout=line] :where(.table-body) :where(.table-native-cell):where(.table-th) :where(.table-cell-text) {
4259
+ font-weight: 600;
4260
+ }
4261
+ .table[data-layout=line] :where(.table-foot) :where(.table-native-cell):where(.table-td) {
4262
+ height: var(--table-line-cell-height-body);
4263
+ }
4264
+ .table[data-layout=line] :where(.table-native-cell[rowspan]) {
4225
4265
  border-right: 1px solid var(--table-border-color);
4226
4266
  }
4227
-
4228
- .table.table-container[data-layout=grid] .table-native-cell.table-th,
4229
- .table.table-container[data-layout=grid] .table-native-cell.table-td {
4267
+ .table[data-layout=grid] {
4268
+ border-radius: var(--table-grid-border-radius);
4269
+ overflow: visible;
4270
+ isolation: isolate;
4271
+ }
4272
+ .table[data-layout=grid] :where(.table-native-cell):where(.table-th) {
4230
4273
  --table-cell-padding-inline: var(--table-grid-cell-padding-inline);
4231
4274
  --table-cell-padding-block: var(--table-grid-cell-padding-block);
4232
4275
  height: var(--table-grid-cell-height);
4233
4276
  }
4234
-
4235
- .table.table-container[data-layout=grid] {
4236
- border-radius: var(--table-grid-border-radius);
4237
- overflow: visible;
4238
- isolation: isolate;
4277
+ .table[data-layout=grid] :where(.table-native-cell):where(.table-td) {
4278
+ --table-cell-padding-inline: var(--table-grid-cell-padding-inline);
4279
+ --table-cell-padding-block: var(--table-grid-cell-padding-block);
4280
+ height: var(--table-grid-cell-height);
4239
4281
  }
4240
-
4241
- .table.table-container[data-layout=grid] .table-head .table-native-cell.table-th {
4282
+ .table[data-layout=grid] :where(.table-head) :where(.table-native-cell):where(.table-th) {
4242
4283
  background-color: var(--table-grid-head-background-color);
4243
4284
  }
4244
-
4245
- .table.table-container[data-layout=grid] .table-body .table-native-cell.table-th {
4285
+ .table[data-layout=grid] :where(.table-head) :where(.table-row:first-child) > :where(.table-native-cell:first-child) {
4286
+ border-top-left-radius: var(--table-grid-border-radius);
4287
+ }
4288
+ .table[data-layout=grid] :where(.table-head) :where(.table-row:first-child) > :where(.table-native-cell:last-child) {
4289
+ border-top-right-radius: var(--table-grid-border-radius);
4290
+ }
4291
+ .table[data-layout=grid] :where(.table-body) :where(.table-native-cell):where(.table-th) {
4246
4292
  background-color: var(--table-grid-row-header-background-color);
4247
4293
  }
4248
-
4249
- .table.table-container[data-layout=grid] .table-foot .table-native-cell.table-th {
4294
+ .table[data-layout=grid] :where(.table-foot) :where(.table-native-cell):where(.table-th) {
4250
4295
  background-color: var(--table-grid-row-header-background-color);
4251
4296
  }
4252
-
4253
- .table.table-container[data-layout=grid] .table-row[data-highlighted=true] .table-native-cell.table-th,
4254
- .table.table-container[data-layout=grid] .table-row[data-highlighted=true] .table-native-cell.table-td {
4297
+ .table[data-layout=grid] :where(.table-row[data-highlighted=true]) :where(.table-native-cell):where(.table-th) {
4255
4298
  background-color: var(--table-grid-row-highlight-background-color);
4256
4299
  }
4257
-
4258
- .table.table-container .table-row > .table-native-cell.table-th:first-child {
4259
- position: sticky;
4260
- left: 0;
4300
+ .table[data-layout=grid] :where(.table-row[data-highlighted=true]) :where(.table-native-cell):where(.table-td) {
4301
+ background-color: var(--table-grid-row-highlight-background-color);
4261
4302
  }
4262
-
4263
- .table.table-container .table-head .table-row > .table-native-cell.table-th:first-child {
4264
- z-index: 150;
4303
+ .table[data-layout=grid] :where(.table-cell-content) {
4304
+ border-right: 1px solid var(--table-border-color);
4305
+ border-bottom: 1px solid var(--table-border-color);
4265
4306
  }
4266
-
4267
- .table.table-container .table-body .table-row > .table-native-cell.table-th:first-child {
4268
- z-index: 100;
4307
+ .table[data-layout=grid] :where(.table-head) :where(.table-row:first-child) > :where(.table-native-cell) > :where(.table-cell-content) {
4308
+ border-top: 1px solid var(--table-border-color);
4269
4309
  }
4270
-
4271
- .table.table-container .table-foot .table-row > .table-native-cell.table-th:first-child {
4272
- z-index: 50;
4310
+ .table[data-layout=grid] :where(.table-row) > :where(.table-native-cell:first-child) > :where(.table-cell-content) {
4311
+ border-left: 1px solid var(--table-border-color);
4273
4312
  }
4274
-
4275
- .table.table-container .table-head .table-row:first-child > .table-native-cell.table-th:first-child {
4276
- z-index: 200;
4313
+ .table[data-layout=grid] :where(.table-row) > :where(.table-native-cell[rowspan]) > :where(.table-cell-content) {
4314
+ border-right: 0;
4277
4315
  }
4278
-
4279
- .table.table-container .table-native-cell.table-td {
4280
- position: relative;
4281
- z-index: 0;
4316
+ .table[data-layout=grid] :where(.table-row) > :where(.table-native-cell[rowspan] + .table-native-cell) > :where(.table-cell-content) {
4317
+ border-left: 1px solid var(--table-border-color);
4282
4318
  }
4283
-
4284
- .table.table-container[data-layout=grid] .table-head .table-row:first-child > .table-native-cell:first-child {
4285
- border-top-left-radius: var(--table-grid-border-radius);
4319
+ .table[data-layout=grid] :where(.table-row:first-child) > :where(.table-native-cell:first-child) :where(.table-cell-content) {
4320
+ border-top-left-radius: inherit;
4286
4321
  }
4287
-
4288
- .table.table-container[data-layout=grid] .table-head .table-row:first-child > .table-native-cell:last-child {
4289
- border-top-right-radius: var(--table-grid-border-radius);
4322
+ .table[data-layout=grid] :where(.table-row:first-child) > :where(.table-native-cell:last-child) :where(.table-cell-content) {
4323
+ border-top-right-radius: inherit;
4290
4324
  }
4291
-
4292
- .table.table-container[data-layout=grid] .table-foot .table-row:last-child > .table-native-cell:first-child,
4293
- .table.table-container[data-layout=grid]:not([data-has-footer=true]) .table-body:last-of-type .table-row:last-child > .table-native-cell:first-child {
4325
+ .table[data-layout=grid] :where(.table-foot) :where(.table-row:last-child) > :where(.table-native-cell:first-child) {
4294
4326
  border-bottom-left-radius: var(--table-grid-border-radius);
4295
4327
  }
4296
-
4297
- .table.table-container[data-layout=grid] .table-foot .table-row:last-child > .table-native-cell:last-child,
4298
- .table.table-container[data-layout=grid]:not([data-has-footer=true]) .table-body:last-of-type .table-row:last-child > .table-native-cell:last-child {
4328
+ .table[data-layout=grid] :where(.table-foot) :where(.table-row:last-child) > :where(.table-native-cell:first-child) :where(.table-cell-content) {
4329
+ border-bottom-left-radius: inherit;
4330
+ }
4331
+ .table[data-layout=grid] :where(.table-foot) :where(.table-row:last-child) > :where(.table-native-cell:last-child) {
4299
4332
  border-bottom-right-radius: var(--table-grid-border-radius);
4300
4333
  }
4301
-
4302
- .table.table-container[data-layout=grid] .table-cell-content {
4303
- border-right: 1px solid var(--table-border-color);
4304
- border-bottom: 1px solid var(--table-border-color);
4334
+ .table[data-layout=grid] :where(.table-foot) :where(.table-row:last-child) > :where(.table-native-cell:last-child) :where(.table-cell-content) {
4335
+ border-bottom-right-radius: inherit;
4305
4336
  }
4306
-
4307
- .table.table-container[data-layout=grid] .table-head .table-row:first-child > .table-native-cell > .table-cell-content {
4308
- border-top: 1px solid var(--table-border-color);
4337
+ .table[data-layout=grid]:not([data-has-footer=true]) :where(.table-body:last-of-type) :where(.table-row:last-child) > :where(.table-native-cell:first-child) {
4338
+ border-bottom-left-radius: var(--table-grid-border-radius);
4309
4339
  }
4310
-
4311
- .table.table-container[data-layout=grid] .table-row > .table-native-cell:first-child > .table-cell-content {
4312
- border-left: 1px solid var(--table-border-color);
4340
+ .table[data-layout=grid]:not([data-has-footer=true]) :where(.table-body:last-of-type) :where(.table-row:last-child) > :where(.table-native-cell:first-child) :where(.table-cell-content) {
4341
+ border-bottom-left-radius: inherit;
4313
4342
  }
4314
-
4315
- .table.table-container[data-layout=grid] .table-row > .table-native-cell[rowspan] > .table-cell-content {
4316
- border-right: 0;
4343
+ .table[data-layout=grid]:not([data-has-footer=true]) :where(.table-body:last-of-type) :where(.table-row:last-child) > :where(.table-native-cell:last-child) {
4344
+ border-bottom-right-radius: var(--table-grid-border-radius);
4317
4345
  }
4318
-
4319
- .table.table-container[data-layout=grid] .table-row > .table-native-cell[rowspan] + .table-native-cell > .table-cell-content {
4320
- border-left: 1px solid var(--table-border-color);
4346
+ .table[data-layout=grid]:not([data-has-footer=true]) :where(.table-body:last-of-type) :where(.table-row:last-child) > :where(.table-native-cell:last-child) :where(.table-cell-content) {
4347
+ border-bottom-right-radius: inherit;
4321
4348
  }
4322
-
4323
- .table.table-container[data-layout=grid] .table-row:first-child > .table-native-cell:first-child .table-cell-content {
4324
- border-top-left-radius: inherit;
4349
+ .table :where(.table-row) > :where(.table-native-cell:first-child):where(.table-th) {
4350
+ position: sticky;
4351
+ left: 0;
4325
4352
  }
4326
-
4327
- .table.table-container[data-layout=grid] .table-row:first-child > .table-native-cell:last-child .table-cell-content {
4328
- border-top-right-radius: inherit;
4353
+ .table :where(.table-head) :where(.table-row) > :where(.table-native-cell:first-child):where(.table-th) {
4354
+ z-index: 150;
4329
4355
  }
4330
-
4331
- .table.table-container[data-layout=grid] .table-foot .table-row:last-child > .table-native-cell:first-child .table-cell-content,
4332
- .table.table-container[data-layout=grid]:not([data-has-footer=true]) .table-body:last-of-type .table-row:last-child > .table-native-cell:first-child .table-cell-content {
4333
- border-bottom-left-radius: inherit;
4356
+ .table :where(.table-body) :where(.table-row) > :where(.table-native-cell:first-child):where(.table-th) {
4357
+ z-index: 100;
4334
4358
  }
4335
-
4336
- .table.table-container[data-layout=grid] .table-foot .table-row:last-child > .table-native-cell:last-child .table-cell-content,
4337
- .table.table-container[data-layout=grid]:not([data-has-footer=true]) .table-body:last-of-type .table-row:last-child > .table-native-cell:last-child .table-cell-content {
4338
- border-bottom-right-radius: inherit;
4359
+ .table :where(.table-foot) :where(.table-row) > :where(.table-native-cell:first-child):where(.table-th) {
4360
+ z-index: 50;
4361
+ }
4362
+ .table :where(.table-head) :where(.table-row:first-child) > :where(.table-native-cell:first-child):where(.table-th) {
4363
+ z-index: 200;
4364
+ }
4365
+ .table :where(.table-foot .table-cell-content) {
4366
+ color: var(--table-td-text-color);
4367
+ font-size: var(--table-td-text-size);
4368
+ font-weight: var(--table-td-text-weight);
4369
+ line-height: var(--table-td-text-line-height);
4370
+ }
4371
+ .table :where(.table-foot .table-cell-text) {
4372
+ color: var(--table-td-text-color);
4373
+ font-size: var(--table-td-text-size);
4374
+ font-weight: var(--table-td-text-weight);
4375
+ line-height: var(--table-td-text-line-height);
4339
4376
  }
4340
4377
 
4341
4378
  .table-scroll-wrapper {
@@ -4357,14 +4394,13 @@ figure.chip {
4357
4394
  overflow: auto;
4358
4395
  }
4359
4396
 
4360
- .table-native-cell.table-th .table-native-cell-text {
4397
+ :where(.table-native-cell):where(.table-th) .table-native-cell-text {
4361
4398
  color: var(--table-th-text-color);
4362
4399
  font-size: var(--table-th-text-size);
4363
4400
  font-weight: var(--table-th-text-weight);
4364
4401
  line-height: var(--table-th-text-line-height);
4365
4402
  }
4366
-
4367
- .table-native-cell.table-td .table-native-cell-text {
4403
+ :where(.table-native-cell):where(.table-td) .table-native-cell-text {
4368
4404
  color: var(--table-td-text-color);
4369
4405
  font-size: var(--table-td-text-size);
4370
4406
  font-weight: var(--table-td-text-weight);
@@ -4446,7 +4482,7 @@ figure.chip {
4446
4482
  margin: 0;
4447
4483
  }
4448
4484
 
4449
- .table-cell-content .table-cell-text {
4485
+ :where(.table-cell-content) :where(.table-cell-text) {
4450
4486
  color: inherit;
4451
4487
  font-size: inherit;
4452
4488
  font-weight: inherit;
@@ -4549,7 +4585,7 @@ figure.chip {
4549
4585
  align-items: baseline;
4550
4586
  }
4551
4587
 
4552
- .table-cell.table-head-cell .table-cell-text {
4588
+ :where(.table-cell):where(.table-head-cell) .table-cell-text {
4553
4589
  color: var(--table-th-text-color);
4554
4590
  font-size: var(--table-th-text-size);
4555
4591
  font-weight: var(--table-th-text-weight);
@@ -4565,31 +4601,31 @@ figure.chip {
4565
4601
  line-height: var(--table-td-text-line-height);
4566
4602
  }
4567
4603
 
4568
- .table-cell.table-head-cell .radio-label-text {
4604
+ :where(.table-cell):where(.table-head-cell) .radio-label-text {
4569
4605
  color: var(--table-th-text-color);
4570
4606
  font-size: var(--table-th-text-size);
4571
4607
  font-weight: var(--table-th-text-weight);
4572
4608
  line-height: var(--table-th-text-line-height);
4573
4609
  }
4574
-
4575
- .table-cell.table-body-cell .table-cell-text,
4576
- .table-cell.table-foot-cell .table-cell-text {
4610
+ :where(.table-cell):where(.table-body-cell) .table-cell-text {
4577
4611
  color: var(--table-td-text-color);
4578
4612
  font-size: var(--table-td-text-size);
4579
4613
  font-weight: var(--table-td-text-weight);
4580
4614
  line-height: var(--table-td-text-line-height);
4581
4615
  }
4582
-
4583
- .table.table-container .table-foot .table-cell-content,
4584
- .table.table-container .table-foot .table-cell-text {
4616
+ :where(.table-cell):where(.table-body-cell) .radio-label-text {
4585
4617
  color: var(--table-td-text-color);
4586
4618
  font-size: var(--table-td-text-size);
4587
4619
  font-weight: var(--table-td-text-weight);
4588
4620
  line-height: var(--table-td-text-line-height);
4589
4621
  }
4590
-
4591
- .table-cell.table-body-cell .radio-label-text,
4592
- .table-cell.table-foot-cell .radio-label-text {
4622
+ :where(.table-cell):where(.table-foot-cell) .table-cell-text {
4623
+ color: var(--table-td-text-color);
4624
+ font-size: var(--table-td-text-size);
4625
+ font-weight: var(--table-td-text-weight);
4626
+ line-height: var(--table-td-text-line-height);
4627
+ }
4628
+ :where(.table-cell):where(.table-foot-cell) .radio-label-text {
4593
4629
  color: var(--table-td-text-color);
4594
4630
  font-size: var(--table-td-text-size);
4595
4631
  font-weight: var(--table-td-text-weight);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-primitives",
3
- "version": "0.3.16",
3
+ "version": "0.3.18",
4
4
  "description": "UNIAI Design System; Primitives Components Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -15,7 +15,7 @@
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
18
- "packageManager": "pnpm@10.28.2",
18
+ "packageManager": "pnpm@10.30.2",
19
19
  "engines": {
20
20
  "node": ">=24",
21
21
  "pnpm": ">=10"
@@ -65,7 +65,16 @@
65
65
  "react": "^19",
66
66
  "react-daum-postcode": "^3",
67
67
  "react-dom": "^19",
68
- "react-hook-form": "^7"
68
+ "react-hook-form": "^7",
69
+ "@radix-ui/react-checkbox": "^1.3.3",
70
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
71
+ "@radix-ui/react-popover": "^1.1.15",
72
+ "@radix-ui/react-radio-group": "^1.3.8",
73
+ "@radix-ui/react-tabs": "^1.1.13",
74
+ "@radix-ui/react-tooltip": "^1.2.8",
75
+ "@radix-ui/react-visually-hidden": "^1.2.4",
76
+ "clsx": "^2.1.1",
77
+ "dayjs": "^1.11.19"
69
78
  },
70
79
  "dependencies": {
71
80
  "@radix-ui/react-checkbox": "^1.3.3",
@@ -77,15 +86,15 @@
77
86
  "@radix-ui/react-visually-hidden": "^1.2.4",
78
87
  "clsx": "^2.1.1",
79
88
  "dayjs": "^1.11.19",
80
- "react-daum-postcode": "^3.2.0"
89
+ "react-daum-postcode": "^4.0.0"
81
90
  },
82
91
  "devDependencies": {
83
- "@mantine/core": "^8.3.14",
84
- "@mantine/dates": "^8.3.14",
85
- "@mantine/hooks": "^8.3.14",
92
+ "@mantine/core": "^8.3.15",
93
+ "@mantine/dates": "^8.3.15",
94
+ "@mantine/hooks": "^8.3.15",
86
95
  "@svgr/webpack": "^8.1.0",
87
96
  "@types/node": "^24.10.2",
88
- "@types/react": "^19.2.11",
97
+ "@types/react": "^19.2.14",
89
98
  "@types/react-dom": "^19.2.3",
90
99
  "@uniai-fe/eslint-config": "workspace:*",
91
100
  "@uniai-fe/next-devkit": "workspace:*",
@@ -94,7 +103,7 @@
94
103
  "@uniai-fe/util-functions": "workspace:*",
95
104
  "eslint": "^9.39.2",
96
105
  "prettier": "^3.8.1",
97
- "react-hook-form": "^7.71.1",
106
+ "react-hook-form": "^7.71.2",
98
107
  "sass": "^1.97.3",
99
108
  "typescript": "~5.9.3"
100
109
  }
@@ -31,11 +31,17 @@
31
31
  .empty-text {
32
32
  transform: translateY(0.2rem);
33
33
  }
34
+ .empty-text {
35
+ margin-left: 1rem;
36
+ }
34
37
  }
35
38
  }
36
39
 
37
40
  &.is-vertical {
38
41
  flex-direction: column;
42
+ .empty-text {
43
+ margin-top: 1rem;
44
+ }
39
45
  }
40
46
  }
41
47
 
@@ -49,14 +55,6 @@
49
55
  justify-content: center;
50
56
  animation: alternate-loading-spin 1s linear infinite;
51
57
 
52
- &.is-horizontal {
53
- margin-right: 1rem;
54
- }
55
-
56
- &.is-vertical {
57
- margin-bottom: 1rem;
58
- }
59
-
60
58
  &.is-medium {
61
59
  width: 3.6rem;
62
60
  height: 3.6rem;
@@ -66,4 +64,9 @@
66
64
  width: 5.2rem;
67
65
  height: 5.2rem;
68
66
  }
67
+
68
+ svg {
69
+ width: 100%;
70
+ height: 100%;
71
+ }
69
72
  }