Skip to content

Commit dccf4db

Browse files
authored
Merge pull request #3 from IgniteUI/skrastev/sales-tabs
Add Sales Grid project and tabs implementation
2 parents f53dfea + 465287b commit dccf4db

File tree

93 files changed

+13156
-1044
lines changed

Some content is hidden

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

93 files changed

+13156
-1044
lines changed

.appbuilder-state.json

-1
This file was deleted.

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/node_modules
4+
**/node_modules
55
/.pnp
66
.pnp.js
77

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

1111
# production
1212
/build
13+
**/dist
14+
**/tsconfig.tsbuildinfo
1315

1416
# misc
1517
.DS_Store
@@ -21,3 +23,5 @@
2123
npm-debug.log*
2224
yarn-debug.log*
2325
yarn-error.log*
26+
27+
**/.vs

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ Run `npm start` to build the application, start a web server and open the applic
1010

1111
Run `npm run build` to build the application into an output directory.
1212

13-
## Running unit tests
14-
15-
Run `npm test` to execute the unit tests via [Vitest](https://vitest.dev/). Runs all `.test.tsx` files under `./src` folder.
1613

1714
## Running code style checks
1815

generationLogs.json

-1
This file was deleted.

ig-theme.css

-231
This file was deleted.

index.html

+3-17
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,12 @@
1010
<meta name="theme-color" content="#000000" />
1111
<title>grid landing pages</title>
1212
<link rel="stylesheet" href="./styles.css">
13+
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
1314
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
14-
<link href='./node_modules/@igniteui/material-icons-extended/styles/sprite.css' rel='stylesheet'>
15-
<link rel='stylesheet' href='./node_modules/igniteui-webcomponents/themes/light/material.css'>
16-
<link rel='stylesheet' href='./node_modules/igniteui-react-grids/grids/themes/light/material.css'>
17-
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
18-
<link rel='stylesheet' href='./ig-theme.css'>
1915
</head>
20-
<body>
16+
<body class="ig-scrollbar ig-typography">
2117
<noscript>You need to enable JavaScript to run this app.</noscript>
22-
<div id="root"></div>
23-
<!--
24-
This HTML file is a template.
25-
If you open it directly in the browser, you will see an empty page.
26-
27-
You can add webfonts, meta tags, or analytics to this file.
28-
The build step will place the bundled scripts into the <body> tag.
29-
30-
To begin the development, run `npm start` or `yarn start`.
31-
To create a production bundle, use `npm run build` or `yarn build`.
32-
-->
18+
<div id="root"><img class="loading-indicator" src="/loading.svg"/></div>
3319
</body>
3420
<script type="module" src="/src/main.tsx"></script>
3521
</html>

0 commit comments

Comments
 (0)