Skip to content

chore(deps-dev): bump @babel/template from 7.26.9 to 7.27.0 #670

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions package-lock.json

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


Unchanged files with check annotations Beta

import clsx from 'clsx';
import { createUseStyles } from 'react-jss';
type Render = (config: { msg: string }) => React.ReactElement<any, any> | null;

Check warning on line 7 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type

Check warning on line 7 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type
type CullingDate = string | number | Date;
interface StaleDataInfo {
/** Current date */
currDate: CullingDate;
/** Optional prop to add custom children */
children?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;

Check warning on line 51 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type

Check warning on line 51 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type
/** Option to add custom message ReactElement */
render?: Render;
/** Optional custom warning message */