@bigtablet/design-system 3.17.1 → 3.17.2
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/index.css +6 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2229,6 +2229,12 @@ body:has(.bottom_nav) {
|
|
|
2229
2229
|
.chip_disabled button {
|
|
2230
2230
|
cursor: not-allowed;
|
|
2231
2231
|
}
|
|
2232
|
+
.chip_type_static.chip_disabled {
|
|
2233
|
+
opacity: 1;
|
|
2234
|
+
}
|
|
2235
|
+
.chip_type_static.chip_disabled .chip_trailing {
|
|
2236
|
+
opacity: 0.38;
|
|
2237
|
+
}
|
|
2232
2238
|
.chip_type_static {
|
|
2233
2239
|
cursor: default;
|
|
2234
2240
|
border: none;
|
package/dist/index.d.ts
CHANGED
|
@@ -1396,7 +1396,7 @@ interface ChipProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onClic
|
|
|
1396
1396
|
selected?: boolean;
|
|
1397
1397
|
/** 삭제 가능 여부 (input / static 타입에서 사용) */
|
|
1398
1398
|
removable?: boolean;
|
|
1399
|
-
/** 비활성화
|
|
1399
|
+
/** 비활성화 상태. `static` 은 컨트롤이 아닌 텍스트 라벨이라 라벨은 흐려지지 않고 remove 버튼만 흐려진다 */
|
|
1400
1400
|
disabled?: boolean;
|
|
1401
1401
|
/** 팝업 열림 상태 (filter 타입에서 aria-expanded로 사용) */
|
|
1402
1402
|
open?: boolean;
|