Skip to content

Commit 3d80b94

Browse files
authored
Merge branch 'master' into mpopov/calendar/bug/header-title-size
2 parents 1067f3c + dc343fd commit 3d80b94

File tree

6 files changed

+29
-22
lines changed

6 files changed

+29
-22
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
6969

7070
## Components available in [Ignite UI for WebComponents Grids]
7171

72-
| Components | Status | Documentation |
73-
| :--------- | :----: | :---------------------: |
74-
| Pivot Grid || [Docs][Pivot Grid Docs] |
75-
| Data Grid || [Docs][Data Grid Docs] |
76-
| Tree Grid || [Docs][Tree Grid Docs] |
77-
| Hierarchical Grid || [Docs][Hierarchical Grid Docs] |
72+
| Components | Status | Documentation |
73+
| :---------------- | :----: | :----------------------------: |
74+
| Pivot Grid || [Docs][Pivot Grid Docs] |
75+
| Data Grid || [Docs][Data Grid Docs] |
76+
| Tree Grid || [Docs][Tree Grid Docs] |
77+
| Hierarchical Grid || [Docs][Hierarchical Grid Docs] |
7878

7979
### The Lightweight Web Components Data Grid and Data Table
8080

@@ -199,7 +199,7 @@ npm run storybook:build
199199
[Pivot Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/pivot-grid/overview
200200
[Data Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/grid/overview
201201
[Tree Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/tree-grid/overview
202-
[Hierarchical Grid Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/hierarchical-grid/overview)
202+
[Hierarchical Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/hierarchical-grid/overview
203203
[Switch Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/switch
204204
[Ripple Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/ripple
205205
[Radio Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/radio

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@
9292
"sass-embedded": "~1.78.0",
9393
"sinon": "^20.0.0",
9494
"storybook": "^8.6.12",
95-
"stylelint": "^16.17.0",
95+
"stylelint": "^16.18.0",
9696
"stylelint-config-standard-scss": "^14.0.0",
9797
"stylelint-prettier": "^5.0.3",
9898
"stylelint-scss": "^6.11.1",
9999
"ts-lit-plugin": "^2.0.2",
100100
"tslib": "^2.8.1",
101101
"typedoc": "~0.27.9",
102102
"typedoc-plugin-localization": "^3.0.6",
103-
"typescript": "^5.8.2",
103+
"typescript": "^5.8.3",
104104
"vite": "^6.2.3"
105105
},
106106
"browserslist": [

src/components/file-input/file-input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import { fileValidators } from './validators.js';
4646
export default class IgcFileInputComponent extends IgcInputBaseComponent {
4747
private _hasActivation = false;
4848
public static readonly tagName = 'igc-file-input';
49-
public static override styles = [...super.styles, styles];
49+
public static override styles = [...IgcInputBaseComponent.styles, styles];
5050

5151
/* blazorSuppress */
5252
public static register() {

src/components/stepper/themes/step/step.base.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,17 @@
192192
}
193193

194194
[part~='start'] {
195+
--align-text: end;
196+
195197
[part='text'] {
196198
order: -1;
197199
}
198200
}
199201

202+
[part~='end'] {
203+
--align-text: start;
204+
}
205+
200206
[part~='start'],
201207
[part~='end'] {
202208
align-items: center;

vite.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export default defineConfig({
1414
css: {
1515
preprocessorOptions: {
1616
scss: {
17-
includePaths: ['node_modules', 'src'],
17+
api: 'modern-compiler',
18+
loadPaths: ['node_modules', 'src'],
1819
},
1920
},
2021
},

0 commit comments

Comments
 (0)