Skip to content

Commit

Permalink
chore(deps): bump typescript-eslint to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
Juveniel committed Jul 8, 2024
1 parent 01ab098 commit b99b104
Show file tree
Hide file tree
Showing 18 changed files with 159 additions and 110 deletions.
168 changes: 74 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"@progress/kendo-e2e": "^2.1.1",
"@progress/kendo-theme-tasks": "^1.17.6",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.41",
"@typescript-eslint/parser": "^8.0.0-alpha.41",
"chokidar": "^3.5.3",
"esbuild": "^0.20.0",
"eslint": "^8.17.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/html/src/action-sheet/actionsheet-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,8 @@ export const ActionSheetItem = (
</span>
);
};

ActionSheetItem.states = states;
ActionSheetItem.className = ACTIONSHEETITEM_CLASSNAME;

export default ActionSheetItem;
4 changes: 4 additions & 0 deletions packages/html/src/calendar/calendar-cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,7 @@ export const CalendarCell = (
</td>
);
};

CalendarCell.states = states;

export default CalendarCell;
10 changes: 8 additions & 2 deletions packages/html/src/calendar/calendar-footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Size, classNames } from '../misc';
import { Button } from '../button';

const className = `k-calendar-footer`;
const CALENDARFOOTER_CLASSNAME = `k-calendar-footer`;

const options = {
size: [ Size.small, Size.medium, Size.large ],
Expand All @@ -28,8 +28,14 @@ export const CalendarFooter = (
} = props;

return (
<div {...other} className={classNames(props.className, className)}>
<div {...other} className={classNames(props.className, CALENDARFOOTER_CLASSNAME)}>
<Button size={size} fillMode="flat" themeColor="primary" className="k-calendar-nav-today">{calendarFooterText}</Button>
</div>
);
};

CalendarFooter.options = options;
CalendarFooter.className = CALENDARFOOTER_CLASSNAME;
CalendarFooter.defaultProps = defaultProps;

export default CalendarFooter;
Loading

0 comments on commit b99b104

Please sign in to comment.