Skip to content

Commit de3cd28

Browse files
authored
Merge pull request #123 from KasperskyLab/feature/add-hexa-ui-docs
feat: add hexa ui docs
2 parents 6076046 + fa341b8 commit de3cd28

52 files changed

Lines changed: 22679 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/hexa-ui/.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
.vscode/
3+
.idea
4+
lib
5+
_build
6+
.env
7+
dist
8+
dist.zip
9+
.history
10+
/react
11+
esm/
12+
!package-lock.json
13+
.npmrc

docs/hexa-ui/eslint.config.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { defineConfig } from 'eslint/config'
2+
3+
import configs from '@kaspersky/dev-tools/lib/configs/eslint/index.mjs'
4+
5+
export default defineConfig([
6+
configs.eslint.base,
7+
configs.eslint.react,
8+
configs.eslint.typescript,
9+
{
10+
ignores: ['esm', 'node_modules', 'docs']
11+
},
12+
{
13+
files: ['**/*.{js,jsx,ts,tsx}'],
14+
languageOptions: {
15+
parserOptions: {
16+
project: 'tsconfig.json'
17+
}
18+
},
19+
rules: {
20+
'@typescript-eslint/no-unsafe-function-type': 'error'
21+
}
22+
},
23+
{
24+
files: ['**/*.config.*'],
25+
languageOptions: {
26+
parserOptions: {
27+
project: null
28+
}
29+
}
30+
}
31+
])

docs/hexa-ui/fonts.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
declare module '*.woff';
2+
declare module '*.woff2';
3+
declare module '*.ttf';
4+
declare module '*.eot';
5+
declare module '*.otf';
6+
declare module '*.module.scss' {
7+
const classes: { [key: string]: string }
8+
export default classes
9+
}
10+
11+
declare module '*.scss'

docs/hexa-ui/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Documentation</title>
7+
</head>
8+
<body>
9+
<div id="root"></div>
10+
<script type="module" src="/src/main.tsx"></script>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)