Skip to content

Add Sales Grid project and tabs implementation #3

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 16 commits into from
Apr 23, 2025
Merged
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
1 change: 0 additions & 1 deletion .appbuilder-state.json

This file was deleted.

6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
**/node_modules
/.pnp
.pnp.js

@@ -10,6 +10,8 @@

# production
/build
**/dist
**/tsconfig.tsbuildinfo

# misc
.DS_Store
@@ -21,3 +23,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

**/.vs
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -10,9 +10,6 @@ Run `npm start` to build the application, start a web server and open the applic

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

1 change: 0 additions & 1 deletion generationLogs.json

This file was deleted.

231 changes: 0 additions & 231 deletions ig-theme.css

This file was deleted.

20 changes: 3 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
@@ -10,26 +10,12 @@
<meta name="theme-color" content="#000000" />
<title>grid landing pages</title>
<link rel="stylesheet" href="./styles.css">
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
<link href='./node_modules/@igniteui/material-icons-extended/styles/sprite.css' rel='stylesheet'>
<link rel='stylesheet' href='./node_modules/igniteui-webcomponents/themes/light/material.css'>
<link rel='stylesheet' href='./node_modules/igniteui-react-grids/grids/themes/light/material.css'>
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
<link rel='stylesheet' href='./ig-theme.css'>
</head>
<body>
<body class="ig-scrollbar ig-typography">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<div id="root"><img class="loading-indicator" src="/loading.svg"/></div>
</body>
<script type="module" src="/src/main.tsx"></script>
</html>
Loading