Skip to content

Commit db5d590

Browse files
azure-pipelines[bot]tfsbuild
andauthored
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.21.2 (#1001)
Co-authored-by: tfsbuild <[email protected]>
1 parent 14f89c5 commit db5d590

File tree

10 files changed

+1180
-0
lines changed

10 files changed

+1180
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"printWidth": 250,
3+
"tabWidth": 4,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": false,
7+
"trailingComma": "none",
8+
"bracketSpacing": true,
9+
"jsxBracketSameLine": false,
10+
"fluid": false
11+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Sample | Ignite UI | Web Components | infragistics</title>
5+
<meta charset="UTF-8" />
6+
7+
<link rel="shortcut icon" href="https://static.infragistics.com/xplatform/images/browsers/wc.png" >
8+
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Kanit&display=swap" />
10+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium Web" />
11+
<link rel="stylesheet" href="https://static.infragistics.com/xplatform/css/samples/shared.v8.css" />
12+
<link rel="stylesheet" href="/src/index.css" type="text/css" />
13+
14+
</head>
15+
16+
<body>
17+
<div id="root">
18+
19+
<div class="container sample">
20+
21+
<div class="container fill">
22+
<igc-dashboard-tile
23+
name="dashboard"
24+
id="dashboard">
25+
</igc-dashboard-tile>
26+
</div>
27+
</div>
28+
29+
</div>
30+
31+
<!-- This script is needed only for parcel and it will be excluded for webpack -->
32+
<% if (false) { %><script src="src/index.ts"></script><% } %>
33+
</body>
34+
</html>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "example-ignite-ui-web-components",
3+
"description": "This project provides example of using Ignite UI for Web Components",
4+
"author": "Infragistics",
5+
"version": "1.0.0",
6+
"license": "",
7+
"private": true,
8+
"homepage": ".",
9+
"main": "src/index.ts",
10+
"scripts": {
11+
"build": "npm run build:prod",
12+
"build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details",
13+
"build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail",
14+
"serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open",
15+
"serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/",
16+
"start": "npm run serve:dev",
17+
"build:legacy": "npm run build:prod:legacy",
18+
"build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details",
19+
"build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail",
20+
"serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open",
21+
"serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/",
22+
"start:legacy": "npm run serve:dev:legacy"
23+
},
24+
"dependencies": {
25+
"babel-runtime": "^6.26.0",
26+
"igniteui-webcomponents-charts": "5.5.0-beta.1",
27+
"igniteui-webcomponents-core": "5.5.0-beta.1",
28+
"igniteui-webcomponents-dashboards": "5.5.0-beta.1",
29+
"igniteui-webcomponents-gauges": "5.5.0-beta.1",
30+
"igniteui-webcomponents-grids": "6.0.2",
31+
"igniteui-webcomponents-inputs": "5.5.0-beta.1",
32+
"igniteui-webcomponents-layouts": "5.5.0-beta.1",
33+
"igniteui-webcomponents-maps": "5.5.0-beta.1",
34+
"lit-html": "^3.2.0",
35+
"tslib": "^2.0.0"
36+
},
37+
"devDependencies": {
38+
"@babel/cli": "^7.8.3",
39+
"@babel/core": "^7.8.3",
40+
"@babel/plugin-transform-class-properties": "^7.25.9",
41+
"@babel/plugin-transform-class-static-block": "^7.26.0",
42+
"@babel/plugin-transform-runtime": "^7.10.0",
43+
"@babel/preset-env": "^7.8.3",
44+
"@babel/preset-typescript": "^7.8.3",
45+
"@types/source-map": "^0.5.7",
46+
"babel-loader": "^8.1.0",
47+
"babel-plugin-transform-custom-element-classes": "^0.1.0",
48+
"css-loader": "^1.0.0",
49+
"csv-loader": "^3.0.2",
50+
"file-loader": "^4.2.0",
51+
"fork-ts-checker-webpack-plugin": "^4.1.5",
52+
"html-webpack-plugin": "^4.3.0",
53+
"parcel-bundler": "^1.6.1",
54+
"source-map": "^0.7.3",
55+
"style-loader": "^0.22.1",
56+
"tsconfig-paths-webpack-plugin": "^4.0.0",
57+
"typescript": "^4.4.4",
58+
"webpack": "^5.96.1",
59+
"webpack-cli": "^4.10.0",
60+
"webpack-dev-server": "^4.11.1",
61+
"worker-loader": "^3.0.8",
62+
"xml-loader": "^1.2.1"
63+
}
64+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"infiniteLoopProtection": false,
3+
"hardReloadOnChange": false,
4+
"view": "browser",
5+
"template": "parcel"
6+
}

0 commit comments

Comments
 (0)