Skip to content

Commit 2004670

Browse files
authored
Add main view with tabs and routing (#5)
1 parent a7b000d commit 2004670

40 files changed

+3029
-624
lines changed

azure-pipelines/igniteui-wc-grid-examples.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,19 @@ stages:
119119
workingDir: '$(Build.SourcesDirectory)'
120120
customCommand: 'install -g igniteui-cli'
121121

122+
- task: PowerShell@2
123+
displayName: 'Update vite.config to licensed'
124+
inputs:
125+
failOnStderr: true
126+
showWarnings: true
127+
workingDirectory: '$(Build.SourcesDirectory)'
128+
targetType: 'inline'
129+
script: |
130+
#Update vite.config.ts
131+
$viteConfig = Get-Content -Raw ./vite.config.ts
132+
$updatedViteConfig = $viteConfig -replace 'igniteui-webcomponents-', '@infragistics/igniteui-webcomponents-'
133+
$updatedViteConfig | Set-Content ./vite.config.ts
134+
122135
- task: Bash@3
123136
displayName: 'Run Ignite UI Upgrade in Root and All Project Subdirectories'
124137
inputs:

index.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Vite + Lit + TS</title>
6+
<title>Web Components Sample Apps</title>
7+
<link rel="icon" href="%BASE_URL%favicon.ico" />
8+
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet" />
9+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
710
<link rel="stylesheet" href="./src/index.css" />
11+
<link rel="stylesheet" href="./node_modules/igniteui-webcomponents-grids/grids/themes/light/material.css" />
12+
<link rel="stylesheet" href="./node_modules/igniteui-webcomponents/themes/light/material.css" />
813
<script type="module" src="./src/app.ts"></script>
914
</head>
10-
<body>
15+
<body class="ig-scrollbar ig-typography">
1116
<app-root></app-root>
1217
</body>
1318
</html>

0 commit comments

Comments
 (0)