-
Notifications
You must be signed in to change notification settings - Fork 0
Ttonev/hr portal latest #6
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
5a93ffd
hr-portal initial version
tishko0 aa46dbb
hr portal react
tishko0 65e49a1
removed unnecessary wrapping
tishko0 d1e7cae
resolved comments
tishko0 e61cb88
Merge branch 'skrastev/sales-tabs' of https://github.com/IgniteUI/gri…
mddragnev e7da3e8
Updated vite to include project assets and updated images to resolve …
tishko0 9a2f64d
Merge branch 'ttonev/hr-portal' of https://github.com/IgniteUI/grid-d…
tishko0 2358bd1
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 2a5b53c
cleaning up
tishko0 0ac6f75
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 a57edec
updated app to run locally and with plugin
tishko0 8fcf092
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 16eed0d
Merge branch 'vnext' into ttonev/hr-portal-latest
dkamburov 7c461fa
resolved comments
tishko0 59269eb
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 75b65e4
added interface for data type and simplified date template
tishko0 1474af9
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 f42c800
removed padding
tishko0 67c3408
Merge branch 'vnext' into ttonev/hr-portal-latest
tishko0 e21656c
updated classes and reordered data
tishko0 8a7ef32
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,16 @@ | ||
# Editor configuration, see https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.ts] | ||
quote_type = single | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
This file contains hidden or 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,26 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/dist | ||
tsconfig.tsbuildinfo | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.vs |
This file contains hidden or 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,27 @@ | ||
# HR Portal app | ||
|
||
## Development server | ||
|
||
Run `npm start` to build the application, start a web server and open the application in the default browser. The application will open in `http://localhost:3003/` by default. | ||
|
||
## Build | ||
|
||
Run `npm run build` to build the application into an output directory. | ||
|
||
## Running unit tests | ||
|
||
Run `npm test` to execute the unit tests via [Vitest](https://vitest.dev/). Runs all `.test.tsx` files under `./src` folder. | ||
|
||
## Running code style checks | ||
|
||
Run `npm run lint` to execute the code styling rules for the project. | ||
|
||
## Licensing | ||
|
||
See the [License FAQ and Installation documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-licensing) for information on how to upgrade to the full licensed package, if the project is using a Trial version of Ignite UI for React, and how to setup your environment and CI to use our licensed npm feed. | ||
|
||
Alternatively run `npm run infragistics-login` for a guided login to our licensed feed. | ||
|
||
## Additional resources | ||
|
||
- [Ignite UI for React](https://www.infragistics.com/products/ignite-ui-react) - to learn more about the product or to dive into component specifics and showcases. |
This file contains hidden or 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,48 @@ | ||
import js from '@eslint/js'; | ||
import typescriptParser from '@typescript-eslint/parser'; | ||
import reactRefresh from 'eslint-plugin-react-refresh'; | ||
import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
const compat = new FlatCompat({ | ||
recommendedConfig: js.configs.recommended | ||
}); | ||
|
||
export default [ | ||
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended'), | ||
{ | ||
files: ['**/*.ts', '**/*.tsx'], | ||
languageOptions: { | ||
globals: { | ||
browser: true, | ||
es2020: true, | ||
}, | ||
parser: typescriptParser, | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
}, | ||
plugins: { | ||
reactRefresh | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ | ||
args: 'all', | ||
argsIgnorePattern: '^_', | ||
caughtErrors: 'all', | ||
caughtErrorsIgnorePattern: '^_', | ||
destructuredArrayIgnorePattern: '^(_|set)', | ||
varsIgnorePattern: '^_', | ||
ignoreRestSiblings: true, | ||
}, | ||
], | ||
'reactRefresh/only-export-components': ['warn', { allowConstantExport: true }], | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
}, | ||
{ | ||
ignores: ['dist'] | ||
} | ||
]; |
This file contains hidden or 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,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>HR Portal</title> | ||
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>S | ||
<link rel='stylesheet' href='./node_modules/igniteui-webcomponents/themes/light/fluent.css'> | ||
<link rel='stylesheet' href='./node_modules/igniteui-react-grids/grids/themes/light/fluent.css'> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap" rel="stylesheet"> | ||
mddragnev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<link rel="shortcut icon" href="/favicon.ico" /> | ||
<link rel="stylesheet" href="./styles.scss"> | ||
</head> | ||
<body class="ig-scrollbar ig-typography"> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
</body> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.