@depup/angular__material 21.2.2-depup.19 → 21.2.4-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/changes.json +1 -1
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker-testing.mjs +24 -2
- package/fesm2022/datepicker-testing.mjs.map +1 -1
- package/fesm2022/datepicker.mjs.map +1 -1
- package/package.json +10 -8
- package/schematics/ng-add/index.js +1 -1
- package/tooltip/_m3-tooltip.scss +3 -2
- package/types/_date-range-input-harness-chunk.d.ts +4 -1
- package/types/datepicker-testing.d.ts +22 -3
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/angular__material",
|
|
3
|
-
"version": "21.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "21.2.4-depup.0",
|
|
4
|
+
"description": "Angular Material (with updated dependencies)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/angular/components.git"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
|
-
"depup",
|
|
11
|
-
"dependency-bumped",
|
|
12
|
-
"updated-deps",
|
|
13
10
|
"@angular/material",
|
|
11
|
+
"depup",
|
|
12
|
+
"updated-dependencies",
|
|
13
|
+
"security",
|
|
14
|
+
"latest",
|
|
15
|
+
"patched",
|
|
14
16
|
"angular",
|
|
15
17
|
"material",
|
|
16
18
|
"material design",
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
}
|
|
358
360
|
},
|
|
359
361
|
"peerDependencies": {
|
|
360
|
-
"@angular/cdk": "21.2.
|
|
362
|
+
"@angular/cdk": "21.2.4",
|
|
361
363
|
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
362
364
|
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
363
365
|
"@angular/forms": "^21.0.0 || ^22.0.0",
|
|
@@ -397,8 +399,8 @@
|
|
|
397
399
|
},
|
|
398
400
|
"depsUpdated": 1,
|
|
399
401
|
"originalPackage": "@angular/material",
|
|
400
|
-
"originalVersion": "21.2.
|
|
401
|
-
"processedAt": "2026-03-
|
|
402
|
+
"originalVersion": "21.2.4",
|
|
403
|
+
"processedAt": "2026-03-25T20:18:06.954Z",
|
|
402
404
|
"smokeTest": "passed"
|
|
403
405
|
}
|
|
404
406
|
}
|
|
@@ -19,7 +19,7 @@ const package_config_1 = require("./package-config");
|
|
|
19
19
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
20
20
|
* the default for Angular framework dependencies in CLI projects.
|
|
21
21
|
*/
|
|
22
|
-
const fallbackMaterialVersionRange = `~21.2.
|
|
22
|
+
const fallbackMaterialVersionRange = `~21.2.4`;
|
|
23
23
|
/**
|
|
24
24
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
25
25
|
* automatically executed if developers run `ng add @angular/material`.
|
package/tooltip/_m3-tooltip.scss
CHANGED
|
@@ -7,10 +7,11 @@
|
|
|
7
7
|
$system: m3-utils.get-system($theme);
|
|
8
8
|
|
|
9
9
|
@return (
|
|
10
|
-
base: (
|
|
10
|
+
base: (
|
|
11
|
+
tooltip-container-shape: map.get($system, corner-extra-small),
|
|
12
|
+
),
|
|
11
13
|
color: (
|
|
12
14
|
tooltip-container-color: map.get($system, inverse-surface),
|
|
13
|
-
tooltip-container-shape: map.get($system, corner-extra-small),
|
|
14
15
|
tooltip-supporting-text-color: map.get($system, inverse-on-surface),
|
|
15
16
|
),
|
|
16
17
|
typography: (
|
|
@@ -38,6 +38,9 @@ interface DateRangeInputHarnessFilters extends MatFormFieldControlHarnessFilters
|
|
|
38
38
|
/** Filters based on the value of the input. */
|
|
39
39
|
value?: string | RegExp;
|
|
40
40
|
}
|
|
41
|
+
/** A set of criteria that can be used to filter a list of datepicker actions instances. */
|
|
42
|
+
interface DatepickerActionsHarnessFilters extends BaseHarnessFilters {
|
|
43
|
+
}
|
|
41
44
|
|
|
42
45
|
/** Base class for datepicker input harnesses. */
|
|
43
46
|
declare abstract class MatDatepickerInputHarnessBase extends MatFormFieldControlHarnessBase {
|
|
@@ -281,4 +284,4 @@ declare class MatDateRangeInputHarness extends DatepickerTriggerHarnessBase {
|
|
|
281
284
|
}
|
|
282
285
|
|
|
283
286
|
export { CalendarView, DatepickerTriggerHarnessBase, MatCalendarCellHarness, MatCalendarHarness, MatDateRangeInputHarness, MatDatepickerInputHarness, MatEndDateHarness, MatStartDateHarness };
|
|
284
|
-
export type { CalendarCellHarnessFilters, CalendarHarnessFilters, DateRangeInputHarnessFilters, DatepickerInputHarnessFilters, DatepickerToggleHarnessFilters };
|
|
287
|
+
export type { CalendarCellHarnessFilters, CalendarHarnessFilters, DateRangeInputHarnessFilters, DatepickerActionsHarnessFilters, DatepickerInputHarnessFilters, DatepickerToggleHarnessFilters };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DatepickerTriggerHarnessBase, DatepickerToggleHarnessFilters } from './_date-range-input-harness-chunk.js';
|
|
1
|
+
import { DatepickerTriggerHarnessBase, DatepickerToggleHarnessFilters, DatepickerActionsHarnessFilters } from './_date-range-input-harness-chunk.js';
|
|
2
2
|
export { CalendarCellHarnessFilters, CalendarHarnessFilters, CalendarView, DateRangeInputHarnessFilters, DatepickerInputHarnessFilters, MatCalendarCellHarness, MatCalendarHarness, MatDateRangeInputHarness, MatDatepickerInputHarness, MatEndDateHarness, MatStartDateHarness } from './_date-range-input-harness-chunk.js';
|
|
3
|
-
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
3
|
+
import { HarnessPredicate, ContentContainerComponentHarness } from '@angular/cdk/testing';
|
|
4
4
|
import '@angular/material/form-field/testing/control';
|
|
5
5
|
|
|
6
6
|
/** Harness for interacting with a standard Material datepicker toggle in tests. */
|
|
@@ -22,4 +22,23 @@ declare class MatDatepickerToggleHarness extends DatepickerTriggerHarnessBase {
|
|
|
22
22
|
protected _openCalendar(): Promise<void>;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
/** Harness for interacting with a standard Material datepicker actions in tests. */
|
|
26
|
+
declare class MatDatepickerActionsHarness extends ContentContainerComponentHarness<string> {
|
|
27
|
+
static hostSelector: string;
|
|
28
|
+
private _applyLocator;
|
|
29
|
+
private _cancelLocator;
|
|
30
|
+
/**
|
|
31
|
+
* Gets a `HarnessPredicate` that can be used to search for a `MatDatepickerActionsHarness` that
|
|
32
|
+
* meets certain criteria.
|
|
33
|
+
* @param options Options for filtering which datepicker actions instances are considered a match.
|
|
34
|
+
* @return a `HarnessPredicate` configured with the given options.
|
|
35
|
+
*/
|
|
36
|
+
static with(options?: DatepickerActionsHarnessFilters): HarnessPredicate<MatDatepickerActionsHarness>;
|
|
37
|
+
/** Applies the current selection. */
|
|
38
|
+
apply(): Promise<void>;
|
|
39
|
+
/** Cancels the current selection. */
|
|
40
|
+
cancel(): Promise<void>;
|
|
41
|
+
private _clickAction;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export { DatepickerActionsHarnessFilters, DatepickerToggleHarnessFilters, MatDatepickerActionsHarness, MatDatepickerToggleHarness };
|