Skip to content
Open
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"dependencies": {
"@floating-ui/react": "^0.27.8",
"@igniteui/material-icons-extended": "^3.0.0",
"apexgantt": "^3.17.1",
"element-internals-polyfill": "^1.3.10",
"functions-have-names": "^1.2.3",
"igniteui-react": "^19.2.1",
Expand Down
3 changes: 3 additions & 0 deletions projects/manifacturing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
*.tsbuildinfo
14 changes: 14 additions & 0 deletions projects/manifacturing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Manifacturing Sample

Standalone Ignite UI for React sample for production operations.

## Run locally

1. Install dependencies:
npm install
2. Start development server:
npm start

## Build

npm run build
29 changes: 29 additions & 0 deletions projects/manifacturing/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";

export default tseslint.config(
{ ignores: ["dist"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true }
],
"@typescript-eslint/no-explicit-any": "off"
},
}
);
13 changes: 13 additions & 0 deletions projects/manifacturing/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Manufacturing Operations</title>
<link rel="stylesheet" href="./styles.scss" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading
Loading