Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
cb59090
chore(*): update wc version
MonikaKirkova May 9, 2025
c724e44
chore(*): remove igcTabPanelComponent from sample
MonikaKirkova May 9, 2025
90eb488
Merge pull request #980 from IgniteUI/mkirkova/update-wc-package
kacheshmarova May 13, 2025
ae1a2c3
feat(tabs): update tabs samples
MonikaKirkova May 13, 2025
4d12594
Merge pull request #982 from IgniteUI/mkirkova/update-tabs-samples
kacheshmarova May 13, 2025
54accea
refactor(samples): updating wc styling samples
adrianptrv Feb 6, 2025
8189613
chore(new-samples): update wc version
adrianptrv May 13, 2025
a8556a1
Merge pull request #983 from IgniteUI/apetrov/update-wc-samples-vnext
simeonoff May 15, 2025
7ab3471
mdd-new-data-grid-package-and-updates (#975)
mddifilippo89 May 15, 2025
2005954
Adding changes from build igniteui-xplat-examples-output+PRs_2025.3.3…
azure-pipelines[bot] May 15, 2025
7101d2e
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.1…
azure-pipelines[bot] May 15, 2025
61c9e43
igniteui-webcomponents-grids v6.0.2
HUSSAR-mtrela May 15, 2025
b1c3b58
Update build-pipeline.yml
IGvaleries May 16, 2025
f3b9456
Merge pull request #988 from IgniteUI/IGvaleries-node-update
mddifilippo89 May 16, 2025
a51c33f
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.16.2
May 16, 2025
5f3d302
Merge pull request #989 from IgniteUI/ESShared/XPlaform_examples_igni…
mddifilippo89 May 16, 2025
739a4ae
Update build-pipeline.yml for Azure Pipelines (#987)
IGvaleries May 16, 2025
29c35f0
Update index.html
HUSSAR-mtrela May 16, 2025
f6c299f
mdd-updates5.5.0.beta1
mddifilippo89 May 19, 2025
770838a
Merge pull request #997 from IgniteUI/mdd-5.5.0-beta.1-updates
IGvaleries May 19, 2025
45720b2
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.19.1
May 19, 2025
95252e1
Merge pull request #998 from IgniteUI/ESShared/XPlaform_examples_igni…
mddifilippo89 May 19, 2025
14f89c5
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.2…
azure-pipelines[bot] May 21, 2025
db5d590
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.2…
azure-pipelines[bot] May 21, 2025
25872e1
Adding changes from build igniteui-xplat-examples-output+PRs_2025.6.2.2
Jun 2, 2025
648de5a
Adding changes from build igniteui-xplat-examples-output+PRs_2025.6.2.3
Jun 2, 2025
7b0fffc
Merge pull request #1006 from IgniteUI/ESShared/XPlaform_examples_ign…
mddifilippo89 Jun 2, 2025
f6abeea
update packages to 6.0.0-beta.0
IGvaleries Jun 4, 2025
952ad86
Merge pull request #1007 from IgniteUI/vs-update-packages
mddifilippo89 Jun 4, 2025
3445990
Merge branch 'vnext' into ESShared/XPlaform_examples_igniteui-xplat-e…
mddifilippo89 Jun 4, 2025
fa4767a
Merge pull request #1005 from IgniteUI/ESShared/XPlaform_examples_ign…
mddifilippo89 Jun 4, 2025
0b18fe5
update xplat packages to release version 6.0.0 and bump grids to 6.0.3
IGvaleries Jun 5, 2025
468cdad
Merge pull request #1010 from IgniteUI/vs-update-to-release
IGvaleries Jun 5, 2025
2c4a504
Added custom styling to stepper styling sample
MarielaTihova Jun 6, 2025
9d7ca31
Merge branch 'master' into vnext
HUSSAR-mtrela Jun 6, 2025
d8e6dd1
Merge pull request #1011 from IgniteUI/mtihova/stepper-styling-sample
dkamburov Jun 10, 2025
56af9ee
combine multiple data sources in code-viewer
HUSSAR-mtrela Jun 17, 2025
7d30cf7
Merge branch 'master' of https://github.com/IgniteUI/igniteui-wc-exam…
HUSSAR-mtrela Jun 17, 2025
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
4 changes: 2 additions & 2 deletions browser/tasks/Transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1031,10 +1031,10 @@ class CodeViewer {
// jsonContent = jsonContent.replace(/\/\//g, "/");

this.hasRelativeAssetsUrls = false;
this.path = filePath;
this.content = jsonContent;
this.isMain = isMain;
this.fileExtension = fileExtension;
this.fileHeader = fileHeader;
this.path = filePath;
this.content = jsonContent;
}
}
37 changes: 30 additions & 7 deletions browser/tasks/gulp-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ var sampleSources = [
// igConfig.SamplesCopyPath + '/charts/data-chart/chart-performance/package.json',
// igConfig.SamplesCopyPath + '/charts/financial-chart/high-frequency/package.json',
// igConfig.SamplesCopyPath + '/charts/financial-chart/high-volume/package.json',
// igConfig.SamplesCopyPath + '/charts/data-chart/data-annotation-multiple-with-stocks/package.json',

// including all samples for all components:
igConfig.SamplesCopyPath + '/**/package.json',
Expand Down Expand Up @@ -728,6 +729,7 @@ function updateCodeViewer(cb) {

var content = "{\r\n \"sampleFiles\":\r\n";
var contentItems = [];
var dataFiles = [];

var tsItem = new CodeViewer(sample.SampleFilePath, sample.SampleFileSourceCode, "ts", "ts", true);

Expand All @@ -739,19 +741,40 @@ function updateCodeViewer(cb) {
var cssItem = new CodeViewer(file, cssContent, "css", "css", true);
contentItems.push(cssItem);
}
else if (file.indexOf(".html") > 0) {
var tsContent = fs.readFileSync(file, "utf8");
var tsItem = new CodeViewer(file, tsContent, "html", "html", true);
contentItems.push(tsItem);
}
else if (file.indexOf(".ts") > 0 && file.indexOf(sample.SampleFileName) == -1) {

var isIndex = file.indexOf("index.ts") > 0;
var tsContent = fs.readFileSync(file, "utf8");
var tsItem = new CodeViewer(file, tsContent, "ts", "ts", true);
tsItem.fileHeader = isIndex ? "ts" : "DATA";
contentItems.push(tsItem);

if (file.indexOf("index.ts") > 0) {
tsItem.fileHeader = "ts";
contentItems.push(tsItem);
} else {
tsItem.fileHeader = "DATA";
dataFiles.push(tsItem);
}
}
else if (file.indexOf(".html") > 0) {
var tsContent = fs.readFileSync(file, "utf8");
var tsItem = new CodeViewer(file, tsContent, "html", "html", true);
contentItems.push(tsItem);
}

if (dataFiles.length === 1) {
contentItems.push(dataFiles[0]);
} else if (dataFiles.length > 1) {
// combining multiple data files into one data source
var dataPath = dataFiles[0].path;
var dataFolder = dataPath.substring(0, dataPath.lastIndexOf("/"));
var dataContent = "// NOTE this file contains multiple data sources:";
for (let i = 0; i < dataFiles.length; i++) {
const data = dataFiles[i];
dataContent += "\r\n\r\n" + "// Data Source #" + (i+1) + "\r\n";
dataContent += data.content + "\r\n";
}
var dataItem = new CodeViewer(dataFolder + "/DataSources.ts", dataContent, "ts", "DATA", true);
contentItems.push(dataItem);
}

content += JSON.stringify(contentItems, null, ' ');
Expand Down
50 changes: 45 additions & 5 deletions samples/layouts/stepper/styling/src/StepperStyle.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,49 @@
igc-step::part(title) {
color: var(--ig-primary-500);

:root {
--color-teal: rgba(77, 182, 172, 1);
--color-dark-navy: rgba(26, 35, 126, 1);
--color-aqua-gray: rgba(208, 236, 236, 1);
--color-white: rgba(255, 255, 255, 1);

--color-teal-hover: rgba(26, 35, 126, 1);
--color-teal-shadow: rgba(77, 182, 172, 0.5);
}
igc-step[active]::part(indicator) {
background-color: var(--ig-primary-500);

igc-button::part(base) {
margin: 1rem 0.5rem 0 0;
background-color: var(--color-teal);
color: var(--color-white);
font-weight: 600;
transition: background-color 0.25s ease, transform 0.1s ease;
}

igc-button:hover::part(base) {
background-color: var(--color-dark-navy);
}

igc-button:active::part(base) {
transform: scale(0.96);
}

igc-step::part(title) {
color: var(--color-dark-navy);
font-variant: small-caps;
font-weight: bold;
}

igc-step::part(indicator) {
background-color: var(--ig-surface-500);
border-radius: 12px 6px 12px 6px;
background-color: var(--color-aqua-gray);
color: var(--color-dark-navy);
transition: all 0.2s ease;
}

igc-step[active]::part(indicator) {
background-color: var(--color-teal);
box-shadow: 0 2px 8px var(--color-teal-shadow);
transform: scale(1.04);
}

igc-step[active]:active::part(indicator) {
transform: scale(1.08);
}