Skip to content

Commit e46f8c3

Browse files
authored
Merge branch 'master' into didimmova/use-radio-focus-border-property
2 parents f2391cc + 6bace83 commit e46f8c3

File tree

12 files changed

+33
-40
lines changed

12 files changed

+33
-40
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/calendar/themes/calendar.base.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@
106106
flex-direction: row;
107107

108108
[part='header'] {
109+
width: rem(168px);
110+
min-width: rem(168px);
109111
justify-content: flex-start;
110112
border-radius: inherit;
111113
border-start-end-radius: 0;

src/components/calendar/themes/shared/bootstrap/calendar.bootstrap.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@ $theme: $bootstrap;
5151
}
5252
}
5353

54-
:host(igc-calendar[header-orientation='vertical']) {
55-
[part~='header'] {
56-
width: rem(168px);
57-
}
58-
}
59-
6054
[part~='header'] {
6155
background: var-get($theme, 'header-background');
6256
color: var-get($theme, 'header-foreground');

src/components/calendar/themes/shared/bootstrap/days-view.bootstrap.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ $border-size: rem(1px);
2727
position: absolute;
2828
width: 100%;
2929
inset-block-start: 100%;
30+
inset-inline-start: 0;
3031
height: rem(1px);
3132
background: var-get($theme, 'border-color');
3233
}

src/components/calendar/themes/shared/fluent/calendar.fluent.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ $theme: $fluent;
3636
}
3737
}
3838

39-
:host(igc-calendar[header-orientation='vertical']) {
40-
[part~='header'] {
41-
width: rem(168px);
42-
}
43-
}
44-
4539
[part='header'] {
4640
color: var-get($theme, 'header-foreground');
4741
background: var-get($theme, 'header-background');

src/components/calendar/themes/shared/indigo/calendar.indigo.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ $theme: $indigo;
5555
:host(igc-calendar[header-orientation='vertical']) {
5656
[part~='header'] {
5757
width: rem(136px);
58+
min-width: rem(136px);
5859

5960
&::after {
6061
inset-inline-start: calc(100% - #{rem(1px)});

src/components/calendar/themes/shared/material/calendar.material.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ $theme: $material;
4545
width: 100%;
4646
}
4747

48-
:host(igc-calendar[header-orientation='vertical']) {
49-
[part~='header'] {
50-
width: rem(168px);
51-
}
52-
}
53-
5448
[part='header'] {
5549
padding: rem(16px) rem(24px);
5650
gap: rem(28px);

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() {

0 commit comments

Comments
 (0)