-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add nextjs app * lint monorepo fix * Fix depcheck * Upgrade mrlint * Upgrade mrlint * Remove next eslint * Add back theme provider, vite env vars * Add BrowserRouter * Fix post-checkout * Switch from app router to pages router * Fix vite env vars
- Loading branch information
1 parent
779f237
commit b7fa2b5
Showing
92 changed files
with
1,192 additions
and
630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-56.8 KB
.yarn/cache/@emotion-babel-plugin-npm-11.9.5-b7f39a1c47-e9f6752d9e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-21.4 KB
.yarn/cache/@emotion-is-prop-valid-npm-1.1.3-d70163c49e-511997c3bb.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-7.62 KB
.yarn/cache/@emotion-weak-memoize-npm-0.2.5-9f2e49e7c8-27d402b0c6.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-12.7 KB
.yarn/cache/babel-plugin-macros-npm-3.1.0-320e781f4e-765de4abeb.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-13.4 KB
.yarn/cache/hoist-non-react-statics-npm-3.3.2-e7b709e6c1-b153827042.zip
Binary file not shown.
Binary file renamed
BIN
+2.72 MB
...int-npm-0.0.114-d7e8592619-4ae5cfc3b3.zip → ...int-npm-0.0.117-bafe352c9f-d82afa6bef.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 37 additions & 1 deletion
38
packages/commons/react/common-components/src/declarations.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 37 additions & 1 deletion
38
packages/commons/react/contexted-dialog/src/declarations.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 37 additions & 1 deletion
38
packages/commons/react/react-query-utils/src/declarations.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/// <reference types="vite/client" /> | ||
// CSS modules | ||
type CSSModuleClasses = Readonly<Record<string, string>>; | ||
|
||
declare module "*.module.scss" { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module "*.css" {} | ||
declare module "*.scss" {} | ||
|
||
// images | ||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.svg" { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module "*.ico" { | ||
const src: string; | ||
export default src; | ||
} |
Oops, something went wrong.