@seed-design/migration-index 0.0.30 → 2.0.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.
- package/CHANGELOG.md +37 -0
- package/color.d.ts +1 -1
- package/color.mjs +1 -1
- package/iconography.d.ts +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
- package/typography.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @seed-design/migration-index
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 60d1a82: 1.2에서 deprecate된 옵션을 제거합니다.
|
|
8
|
+
|
|
9
|
+
- 색상 토큰
|
|
10
|
+
- `$color.bg.layer-fill`: 라이트 및 다크 모드에서 모두 테스트 후 `$color.bg.neutral-weak`으로 대체할 수 있습니다.
|
|
11
|
+
- 그라디언트 토큰
|
|
12
|
+
- `$gradient.fade-layer-floating`
|
|
13
|
+
- `$gradient.fade-layer-default`
|
|
14
|
+
- Chip Tabs의 `brandSolid` variant
|
|
15
|
+
- AppBar의 `divider` 옵션
|
|
16
|
+
- Image Frame의 `rounded` variant: `borderRadius` 옵션을 사용해주세요.
|
|
17
|
+
- Switch의 `small` 및 `medium` size: 각각 `16`과 `32`를 사용해주세요.
|
|
18
|
+
- Checkbox의 `default` 및 `stronger` weight: 각각 `regular`와 `bold`를 사용해주세요.
|
|
19
|
+
- `<Box display="inlineFlex" />` 등 유틸리티 컴포넌트 레이아웃 프로퍼티의 camelCase 옵션: kebab-case 옵션을 사용해주세요.
|
|
20
|
+
- `display`, `justifyContent`, `justify`, `alignItems`, `align`, `alignContent`, `alignSelf`, `flexDirection`, `direction`
|
|
21
|
+
- `AppBar`의 `divider` 옵션
|
|
22
|
+
- 하단 구분선이 더 이상 표시되지 않습니다.
|
|
23
|
+
- `BottomSheetRoot` (`DrawerRoot`)의 `noBodyStyles` 옵션
|
|
24
|
+
- 제거되어 기본값(true)처럼 동작합니다.
|
|
25
|
+
- `BottomSheetRoot` (`DrawerRoot`)의 `preventScrollRestoration` 옵션
|
|
26
|
+
- 제거되어 기본값(false)처럼 동작합니다.
|
|
27
|
+
- `BottomSheetRoot`의 `direction` 옵션
|
|
28
|
+
- BottomSheet는 항상 아래에서 올라오므로 `direction`을 받지 않습니다.
|
|
29
|
+
- `BottomSheetBackdrop` (`DrawerBackdrop`)의 `forceMount` 옵션
|
|
30
|
+
- 제거되어 `BottomSheetRoot` (`DrawerRoot`)의 `lazyMount`/`unmountOnExit` 옵션으로 대체할 수 있습니다.
|
|
31
|
+
- `BottomSheetContent` (`DrawerContent`)의 `onPointerDownOutside`, `onOpenAutoFocus`, `onCloseAutoFocus`, `onEscapeKeyDown`, `onInteractOutside`, `forceMount`, `onFocusOutside` 옵션
|
|
32
|
+
- 제거되어 `BottomSheetRoot` (`DrawerRoot`)의 `onOpenChange` 두 번째 인자 `details`를 통해 대체할 수 있습니다.
|
|
33
|
+
|
|
34
|
+
## 1.0.0
|
|
35
|
+
|
|
36
|
+
### Major Changes
|
|
37
|
+
|
|
38
|
+
- 34f92f2: 🌱 SEED Design 패키지의 첫 메이저 버전을 출시합니다.
|
|
39
|
+
|
|
3
40
|
## 0.0.30
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/color.d.ts
CHANGED
package/color.mjs
CHANGED
package/iconography.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ export {
|
|
|
3
3
|
scaleColorMappings,
|
|
4
4
|
semanticColorMappings,
|
|
5
5
|
staticColorMappings,
|
|
6
|
-
} from "./color";
|
|
7
|
-
export { iconMappings, monochromeIconMappings, multicolorIconMappings } from "./iconography";
|
|
8
|
-
export { typographyMappings } from "./typography";
|
|
6
|
+
} from "./color.mjs";
|
|
7
|
+
export { iconMappings, monochromeIconMappings, multicolorIconMappings } from "./iconography.mjs";
|
|
8
|
+
export { typographyMappings } from "./typography.mjs";
|
|
9
9
|
|
|
10
|
-
export type { FoundationTokenMapping } from "./types";
|
|
10
|
+
export type { FoundationTokenMapping } from "./types.js";
|
package/package.json
CHANGED
package/typography.d.ts
CHANGED