@uniai-fe/uds-primitives 0.6.8 → 0.6.10

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
@@ -5234,6 +5234,8 @@ figure.chip {
5234
5234
  align-items: center;
5235
5235
  width: 100%;
5236
5236
  height: 100%;
5237
+ min-width: 0;
5238
+ max-width: 100%;
5237
5239
  justify-content: flex-start;
5238
5240
  box-sizing: border-box;
5239
5241
  gap: var(--table-cell-content-gap);
@@ -5256,6 +5258,16 @@ figure.chip {
5256
5258
  line-height: inherit;
5257
5259
  }
5258
5260
 
5261
+ :where(.table-cell-content > .table-cell-text) {
5262
+ display: block;
5263
+ flex: 0 1 auto;
5264
+ min-width: 0;
5265
+ max-width: 100%;
5266
+ overflow: hidden;
5267
+ text-overflow: ellipsis;
5268
+ white-space: nowrap;
5269
+ }
5270
+
5259
5271
  .table-cell-content[data-align-x=left] {
5260
5272
  justify-content: flex-start;
5261
5273
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-primitives",
3
- "version": "0.6.8",
3
+ "version": "0.6.10",
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.33.2",
18
+ "packageManager": "pnpm@10.33.3",
19
19
  "engines": {
20
20
  "node": ">=24",
21
21
  "pnpm": ">=10"
@@ -93,7 +93,7 @@
93
93
  "@mantine/dates": "^8.3.18",
94
94
  "@mantine/hooks": "^8.3.18",
95
95
  "@svgr/webpack": "^8.1.0",
96
- "@types/node": "^24.10.2",
96
+ "@types/node": "^24.12.3",
97
97
  "@types/react": "^19.2.14",
98
98
  "@types/react-dom": "^19.2.3",
99
99
  "@uniai-fe/eslint-config": "workspace:*",
@@ -103,7 +103,7 @@
103
103
  "@uniai-fe/util-functions": "workspace:*",
104
104
  "eslint": "^9.39.2",
105
105
  "prettier": "^3.8.3",
106
- "react-hook-form": "^7.73.1",
106
+ "react-hook-form": "^7.75.0",
107
107
  "sass": "^1.99.0",
108
108
  "typescript": "5.9.3"
109
109
  }
@@ -404,6 +404,8 @@
404
404
  align-items: center;
405
405
  width: 100%;
406
406
  height: 100%;
407
+ min-width: 0;
408
+ max-width: 100%;
407
409
  justify-content: flex-start;
408
410
  box-sizing: border-box;
409
411
  gap: var(--table-cell-content-gap);
@@ -505,6 +507,16 @@
505
507
  }
506
508
  }
507
509
 
510
+ :where(.table-cell-content > .table-cell-text) {
511
+ display: block;
512
+ flex: 0 1 auto;
513
+ min-width: 0;
514
+ max-width: 100%;
515
+ overflow: hidden;
516
+ text-overflow: ellipsis;
517
+ white-space: nowrap;
518
+ }
519
+
508
520
  // 변경: Cell.alignX/alignY로 콘텐츠 정렬을 제어한다.
509
521
  .table-cell-content[data-align-x="left"] {
510
522
  justify-content: flex-start;