@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 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
@@ -1,4 +1,4 @@
1
- import type { FoundationTokenMapping } from "./types";
1
+ import type { FoundationTokenMapping } from "./types.js";
2
2
 
3
3
  export declare const semanticColorMappings: FoundationTokenMapping[];
4
4
  export declare const scaleColorMappings: FoundationTokenMapping[];
package/color.mjs CHANGED
@@ -78,7 +78,7 @@ export const semanticColorMappings = [
78
78
  },
79
79
  {
80
80
  previous: "$semantic.color.paper-contents",
81
- next: ["$color.bg.layer-fill"],
81
+ next: ["$color.bg.neutral-weak"],
82
82
  alternative: ["$color.palette.gray-100"],
83
83
  },
84
84
  {
package/iconography.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { FoundationTokenMapping } from "./types";
1
+ import type { FoundationTokenMapping } from "./types.js";
2
2
 
3
3
  export declare const monochromeIconMappings: FoundationTokenMapping[];
4
4
  export declare const multicolorIconMappings: FoundationTokenMapping[];
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/migration-index",
3
- "version": "0.0.30",
3
+ "version": "2.0.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
package/typography.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import type { FoundationTokenMapping } from "./types";
1
+ import type { FoundationTokenMapping } from "./types.js";
2
2
 
3
3
  export declare const typographyMappings: FoundationTokenMapping[];