-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check and add header components in column when entering from refresh …
…event
- Loading branch information
Showing
7 changed files
with
102 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
This file is auto-generated by Vaadin. | ||
--> | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style> | ||
body, #outlet { | ||
height: 100vh; | ||
width: 100%; | ||
margin: 0; | ||
} | ||
</style> | ||
<!-- index.ts is included here automatically (either by the dev server or during the build) --> | ||
</head> | ||
<body> | ||
<!-- This outlet div is where the views are rendered --> | ||
<div id="outlet"></div> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// This TypeScript configuration file is generated by vaadin-maven-plugin. | ||
// This is needed for TypeScript compiler to compile your TypeScript code in the project. | ||
// It is recommended to commit this file to the VCS. | ||
// You might want to change the configurations to fit your preferences | ||
// For more information about the configurations, please refer to http://www.typescriptlang.org/docs/handbook/tsconfig-json.html | ||
{ | ||
"flow_version": "23.3.4", | ||
"compilerOptions": { | ||
"sourceMap": true, | ||
"jsx": "react-jsx", | ||
"inlineSources": true, | ||
"module": "esNext", | ||
"target": "es2020", | ||
"moduleResolution": "node", | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"experimentalDecorators": true, | ||
"useDefineForClassFields": false, | ||
"baseUrl": "frontend", | ||
"paths": { | ||
"@vaadin/flow-frontend": ["generated/jar-resources"], | ||
"@vaadin/flow-frontend/*": ["generated/jar-resources/*"], | ||
"Frontend/*": ["*"] | ||
} | ||
}, | ||
"include": [ | ||
"frontend/**/*", | ||
"types.d.ts" | ||
], | ||
"exclude": [ | ||
"frontend/generated/jar-resources/**" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This TypeScript modules definition file is generated by vaadin-maven-plugin. | ||
// You can not directly import your different static files into TypeScript, | ||
// This is needed for TypeScript compiler to declare and export as a TypeScript module. | ||
// It is recommended to commit this file to the VCS. | ||
// You might want to change the configurations to fit your preferences | ||
declare module '*.css' { | ||
import { CSSResultGroup } from 'lit'; | ||
const content: CSSResultGroup; | ||
export default content; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { UserConfigFn } from 'vite'; | ||
import { overrideVaadinConfig } from './vite.generated'; | ||
|
||
const customConfig: UserConfigFn = (env) => ({ | ||
// Here you can add custom Vite parameters | ||
// https://vitejs.dev/config/ | ||
}); | ||
|
||
export default overrideVaadinConfig(customConfig); |
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