@bigtablet/design-system 3.18.1 → 3.18.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +3 -2
package/dist/index.d.ts CHANGED
@@ -2094,9 +2094,11 @@ interface DatePickerBaseProps {
2094
2094
  }
2095
2095
  type DatePickerCallbacks = {
2096
2096
  onValueChange: (value: string) => void;
2097
+ /** @deprecated `onValueChange` 를 사용하세요. */
2097
2098
  onChange?: (value: string) => void;
2098
2099
  } | {
2099
2100
  onValueChange?: (value: string) => void;
2101
+ /** @deprecated `onValueChange` 를 사용하세요. */
2100
2102
  onChange: (value: string) => void;
2101
2103
  };
2102
2104
  type DatePickerProps = DatePickerBaseProps & DatePickerCallbacks;
@@ -3006,9 +3008,11 @@ interface PaginationBaseProps {
3006
3008
  }
3007
3009
  type PaginationCallbacks = {
3008
3010
  onPageChange: (page: number) => void;
3011
+ /** @deprecated `onPageChange` 를 사용하세요. */
3009
3012
  onChange?: (page: number) => void;
3010
3013
  } | {
3011
3014
  onPageChange?: (page: number) => void;
3015
+ /** @deprecated `onPageChange` 를 사용하세요. */
3012
3016
  onChange: (page: number) => void;
3013
3017
  };
3014
3018
  type PaginationProps = PaginationBaseProps & PaginationCallbacks;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigtablet/design-system",
3
- "version": "3.18.1",
3
+ "version": "3.18.2",
4
4
  "description": "Bigtablet Design System UI Components",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -49,10 +49,11 @@
49
49
  "test:storybook": "vitest run --project storybook",
50
50
  "lint:css": "stylelint 'src/ui/**/*.scss' 'src/styles/**/*.scss' 'src/vanilla/**/*.scss'",
51
51
  "check:css-vars": "scripts/check-css-vars.sh",
52
- "check:prose": "scripts/check-prose-headings.sh",
53
52
  "check:defaults": "python3 scripts/check-prop-defaults.py",
54
53
  "check:geometry": "python3 scripts/check-overlay-geometry.py",
55
54
  "check:dark-text": "python3 scripts/check-dark-text-tokens.py",
55
+ "check:deprecated": "python3 scripts/check-deprecated-in-stories.py",
56
+ "check:filenames": "python3 scripts/check-story-test-filenames.py",
56
57
  "size": "size-limit",
57
58
  "prepare": "husky"
58
59
  },