@shoplflow/base 0.42.13 → 0.42.15

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.cjs CHANGED
@@ -2329,13 +2329,14 @@ exports.CheckboxStyleVariants = {
2329
2329
  var getSelectedStyle = (isHovered) => {
2330
2330
  const domain = exports.getDomain();
2331
2331
  const selectedStrokeColor = domain === "hada" ? exports.colorTokens.neutral700 : exports.colorTokens.primary300;
2332
+ const selectedHoverStrokeColor = domain === "hada" ? exports.colorTokens.neutral700 : exports.colorTokens.primary400;
2332
2333
  return react$1.css`
2333
2334
  & > svg > circle {
2334
2335
  stroke: ${selectedStrokeColor};
2335
2336
  }
2336
2337
  ${isHovered && react$1.css`
2337
2338
  & > svg > circle {
2338
- stroke: ${exports.colorTokens.primary400};
2339
+ stroke: ${selectedHoverStrokeColor};
2339
2340
  }
2340
2341
  `}
2341
2342
  `;
package/dist/index.d.cts CHANGED
@@ -1416,7 +1416,7 @@ declare type DayCalendarType = {
1416
1416
  handleDayRangeChange: (dates: [Date | null, Date | null]) => void;
1417
1417
  };
1418
1418
  declare type DayDatepickerSizeVariantType = $Values<typeof DayDatepickerSizeVariants>;
1419
- declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay' | 'fixedHeight' | 'className'> & DayDatepickerOptionProps;
1419
+ declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay' | 'fixedHeight' | 'className' | 'onMonthChange' | 'onYearChange'> & DayDatepickerOptionProps;
1420
1420
  declare type DayDatepickerOptionProps = {
1421
1421
  /**
1422
1422
  * 캘린더 타입
package/dist/index.d.ts CHANGED
@@ -1416,7 +1416,7 @@ declare type DayCalendarType = {
1416
1416
  handleDayRangeChange: (dates: [Date | null, Date | null]) => void;
1417
1417
  };
1418
1418
  declare type DayDatepickerSizeVariantType = $Values<typeof DayDatepickerSizeVariants>;
1419
- declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay' | 'fixedHeight' | 'className'> & DayDatepickerOptionProps;
1419
+ declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay' | 'fixedHeight' | 'className' | 'onMonthChange' | 'onYearChange'> & DayDatepickerOptionProps;
1420
1420
  declare type DayDatepickerOptionProps = {
1421
1421
  /**
1422
1422
  * 캘린더 타입
package/dist/index.js CHANGED
@@ -2302,13 +2302,14 @@ var CheckboxStyleVariants = {
2302
2302
  var getSelectedStyle = (isHovered) => {
2303
2303
  const domain = getDomain();
2304
2304
  const selectedStrokeColor = domain === "hada" ? colorTokens.neutral700 : colorTokens.primary300;
2305
+ const selectedHoverStrokeColor = domain === "hada" ? colorTokens.neutral700 : colorTokens.primary400;
2305
2306
  return css`
2306
2307
  & > svg > circle {
2307
2308
  stroke: ${selectedStrokeColor};
2308
2309
  }
2309
2310
  ${isHovered && css`
2310
2311
  & > svg > circle {
2311
- stroke: ${colorTokens.primary400};
2312
+ stroke: ${selectedHoverStrokeColor};
2312
2313
  }
2313
2314
  `}
2314
2315
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shoplflow/base",
3
- "version": "0.42.13",
3
+ "version": "0.42.15",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -90,9 +90,9 @@
90
90
  "react-datepicker": "^7.3.0",
91
91
  "react-dom": "^18.2.0",
92
92
  "simplebar-react": "^3.2.6",
93
- "@shoplflow/hada-assets": "^0.1.8",
94
93
  "@shoplflow/shopl-assets": "^0.12.23",
95
- "@shoplflow/utils": "^0.7.0"
94
+ "@shoplflow/utils": "^0.7.0",
95
+ "@shoplflow/hada-assets": "^0.1.8"
96
96
  },
97
97
  "scripts": {
98
98
  "type-check": "tsc --noEmit",