Skip to content

Commit c543d49

Browse files
authored
build(deps): Bumped dependencies (#2174)
1 parent 57cd9ad commit c543d49

10 files changed

Lines changed: 395 additions & 392 deletions

File tree

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"lit": "^3.3.2"
6161
},
6262
"devDependencies": {
63-
"@biomejs/biome": "~2.4.9",
63+
"@biomejs/biome": "~2.4.10",
6464
"@custom-elements-manifest/analyzer": "^0.11.0",
6565
"@igniteui/material-icons-extended": "^3.1.0",
6666
"@open-wc/testing": "^4.0.0",
@@ -81,13 +81,13 @@
8181
"husky": "^9.1.7",
8282
"ig-typedoc-theme": "^7.0.1",
8383
"igniteui-i18n-resources": "^1.0.4",
84-
"igniteui-theming": "^25.0.3",
84+
"igniteui-theming": "^25.1.0",
8585
"keep-a-changelog": "^3.0.2",
8686
"lint-staged": "^16.4.0",
8787
"lit-analyzer": "^2.0.3",
8888
"madge": "^8.0.0",
8989
"node-watch": "^0.7.4",
90-
"playwright": "^1.58.2",
90+
"playwright": "^1.59.1",
9191
"postcss": "^8.5.8",
9292
"prettier": "^3.8.1",
9393
"rimraf": "^6.1.3",

src/animations/easings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ enum EaseInOut {
3131
Back = 'cubic-bezier(0.680, -0.550, 0.265, 1.550)',
3232
}
3333

34-
export { EaseIn, EaseOut, EaseInOut };
34+
export { EaseIn, EaseInOut, EaseOut };

src/components/common/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const chatUserInputContext = createContext<ChatState>(
2626

2727
export {
2828
carouselContext,
29-
tileManagerContext,
3029
chatContext,
3130
chatUserInputContext,
31+
tileManagerContext,
3232
};

src/components/common/controllers/slot.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ function setSlots<const T extends readonly string[]>(...slots: T) {
186186
return [DefaultSlot, ...slots] as const;
187187
}
188188

189-
export { addSlotController, DefaultSlot, setSlots };
190189
export type {
191190
InferSlotNames,
192-
SlotController,
193-
SlotQueryOptions,
194191
SlotChangeCallback,
195192
SlotChangeCallbackParameters,
193+
SlotController,
196194
SlotControllerOptions,
195+
SlotQueryOptions,
197196
};
197+
export { addSlotController, DefaultSlot, setSlots };

src/components/date-time-input/datetime-mask-parser.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ import { createDatePart, DatePartType, type IDatePart } from './date-part.js';
88
* Types of date/time parts that can appear in a format string.
99
* Re-exported from date-part.ts for backward compatibility.
1010
*/
11-
export { DatePartType as DateParts };
12-
1311
/**
1412
* Re-export createDatePart factory for creating standalone parts.
1513
*/
16-
export { createDatePart };
14+
export { createDatePart, DatePartType as DateParts };
1715

1816
/**
1917
* Information about a parsed date part within a format string.

src/components/rating/rating.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ describe('Rating component', () => {
232232
it('correctly renders symbols passed through igc-rating-symbol', async () => {
233233
const projected = await fixture<IgcRatingComponent>(
234234
html`<igc-rating>
235-
<igc-rating-symbol>🐝</igc-rating-symbol>
236-
<igc-rating-symbol>🐝</igc-rating-symbol>
237-
<igc-rating-symbol>🐝</igc-rating-symbol>
235+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
236+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
237+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
238238
</igc-rating>`
239239
);
240240

@@ -248,9 +248,9 @@ describe('Rating component', () => {
248248
it('sets max value correctly when igc-rating-symbols are projected', async () => {
249249
const projected = await fixture<IgcRatingComponent>(
250250
html`<igc-rating>
251-
<igc-rating-symbol>🐝</igc-rating-symbol>
252-
<igc-rating-symbol>🐝</igc-rating-symbol>
253-
<igc-rating-symbol>🐝</igc-rating-symbol>
251+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
252+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
253+
<igc-rating-symbol slot="symbol">🐝</igc-rating-symbol>
254254
</igc-rating>`
255255
);
256256

src/components/splitter/splitter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ describe('Splitter', () => {
850850
await elementUpdated(splitter);
851851

852852
const bar = getSplitterPart(splitter, BAR_PART);
853-
let barSize = bar.getBoundingClientRect().width;
853+
const barSize = bar.getBoundingClientRect().width;
854854
bar.focus();
855855
await elementUpdated(splitter);
856856

src/components/splitter/types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ interface IgcSplitterComponentEventMap {
4747
}
4848

4949
export type {
50+
IgcSplitterComponentEventMap,
51+
IgcSplitterResizeEventArgs,
52+
IgcSplitterResizeEventDetail,
5053
PanePosition,
51-
SplitterPaneState,
5254
PaneResizeSnapshot,
55+
SplitterPaneState,
5356
SplitterResizeState,
54-
IgcSplitterResizeEventArgs,
55-
IgcSplitterResizeEventDetail,
56-
IgcSplitterComponentEventMap,
5757
};

src/components/stepper/common/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,5 +224,5 @@ function createStepperState(): StepperState {
224224
return new StepperState();
225225
}
226226

227-
export { createStepperState };
228227
export type { StepperState };
228+
export { createStepperState };

0 commit comments

Comments
 (0)