igniteui-cli 13.1.0-beta.0 → 13.1.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-cli",
3
- "version": "13.1.0-beta.0",
3
+ "version": "13.1.0-beta.2",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -72,8 +72,8 @@
72
72
  "all": true
73
73
  },
74
74
  "dependencies": {
75
- "@igniteui/angular-templates": "~17.1.1310-beta.0",
76
- "@igniteui/cli-core": "~13.1.0-beta.0",
75
+ "@igniteui/angular-templates": "~17.0.1310-beta.2",
76
+ "@igniteui/cli-core": "~13.1.0-beta.2",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -1,6 +1,6 @@
1
1
  import { expect, test } from 'vitest';
2
2
  import { render } from '@testing-library/react';
3
- import App from './App';
3
+ import App from './app';
4
4
 
5
5
  test('renders without crashing', () => {
6
6
  const wrapper = render(<App />);
@@ -8,6 +8,10 @@ body {
8
8
  -moz-osx-font-smoothing: grayscale;
9
9
  }
10
10
 
11
+ html, body, #root {
12
+ height: 100%;
13
+ }
14
+
11
15
  code {
12
16
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
13
17
  monospace;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import ReactDOM from 'react-dom/client';
3
3
  import { createBrowserRouter, RouterProvider } from "react-router-dom";
4
4
  import { routes } from "./app/app-routes";
5
- import App from './app/App';
5
+ import App from './app/app';
6
6
  import 'react-app-polyfill/ie11';
7
7
  import './index.css';
8
8
 
@@ -1,7 +1,7 @@
1
1
  import { Outlet } from "react-router-dom";
2
2
  import { routes } from './app-routes';
3
3
  import NavigationHeader from "../components/navigation-header";
4
- import "./App.css";
4
+ import "./app.css";
5
5
 
6
6
  export default function App() {
7
7
  const name = "$(name)";