Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion browser/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion browser/public/meta.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"23.2.915","date":"2026-08-05 23:55:42","note":"this file is auto-generated"}
{"version":"23.2.915","date":"2026-08-14 13:52:24","note":"this file is auto-generated"}
3 changes: 3 additions & 0 deletions browser/src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@import "tailwindcss/utilities.css" layer(utilities);
@source "./samples/**/*.{ts,tsx,js,jsx}";

#root,
html,
body,
Expand Down
2 changes: 1 addition & 1 deletion browser/src/navigation/SamplesBrowser.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"23.2.915","date":"2026-08-05 23:55:42","note":"this file is auto-generated"}
{"version":"23.2.915","date":"2026-08-14 13:52:24","note":"this file is auto-generated"}
4 changes: 2 additions & 2 deletions samples/inputs/badge/tailwind-styling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@tailwindcss/vite": "^4.3.3",
"@types/jest": "^29.2.0",
"@types/node": "^24.7.1",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser": "^3.2.4",
"tailwindcss": "^4.1.14",
"tailwindcss": "^4.3.3",
"typescript": "^4.8.4",
"vite": "^7.1.9",
"vitest": "^3.2.4",
Expand Down
8 changes: 4 additions & 4 deletions samples/inputs/badge/tailwind-styling/src/index.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

@layer theme, base, components, utilities;
@import "tailwindcss/theme.css" layer(theme);
@import "tailwindcss/utilities.css" layer(utilities);
@source "./index.tsx";

/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-badge {
--ig-size: var(--ig-size-small);
Expand Down

This file was deleted.

56 changes: 56 additions & 0 deletions samples/layouts/accordion/customization/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
.accordion-sample {
width: min(760px, 100%);
max-height: 100%;
overflow-y: auto;
margin: 0 auto;
padding: 24px;
box-sizing: border-box;
}

.panel-description {
margin: 0 0 16px;
color: var(--ig-gray-700);
}

.categories-container {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px 24px;
max-width: 520px;
}

.category-option,
.rating-option {
margin: 4px 0;
}

.range-summary {
display: flex;
justify-content: space-between;
max-width: 560px;
margin-bottom: 4px;
font-weight: 600;
}

.cost-slider {
max-width: 560px;
margin: 8px 0 0;
}

.rating-options {
display: grid;
gap: 8px;
max-width: 360px;
}

.rating-control {
flex-direction: row;
}

.time-input {
max-width: 260px;
}

.size-small {
--ig-size: var(--ig-size-small);
}
Loading