@angular/cdk 19.1.0-next.0 → 19.1.0-next.2
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/fesm2022/a11y.mjs +43 -43
- package/fesm2022/a11y.mjs.map +1 -1
- package/fesm2022/accordion.mjs +10 -10
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/bidi.mjs +10 -10
- package/fesm2022/bidi.mjs.map +1 -1
- package/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/clipboard.mjs +10 -10
- package/fesm2022/clipboard.mjs.map +1 -1
- package/fesm2022/collections.mjs +3 -3
- package/fesm2022/collections.mjs.map +1 -1
- package/fesm2022/dialog.mjs +10 -10
- package/fesm2022/dialog.mjs.map +1 -1
- package/fesm2022/drag-drop.mjs +31 -31
- package/fesm2022/drag-drop.mjs.map +1 -1
- package/fesm2022/layout.mjs +10 -10
- package/fesm2022/layout.mjs.map +1 -1
- package/fesm2022/listbox.mjs +10 -10
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +50 -50
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/observers/private.mjs +3 -3
- package/fesm2022/observers/private.mjs.map +1 -1
- package/fesm2022/observers.mjs +13 -13
- package/fesm2022/observers.mjs.map +1 -1
- package/fesm2022/overlay.mjs +37 -37
- package/fesm2022/overlay.mjs.map +1 -1
- package/fesm2022/platform.mjs +7 -7
- package/fesm2022/platform.mjs.map +1 -1
- package/fesm2022/portal.mjs +16 -16
- package/fesm2022/portal.mjs.map +1 -1
- package/fesm2022/private.mjs +6 -6
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/scrolling.mjs +35 -35
- package/fesm2022/scrolling.mjs.map +1 -1
- package/fesm2022/stepper.mjs +22 -22
- package/fesm2022/stepper.mjs.map +1 -1
- package/fesm2022/table.mjs +76 -76
- package/fesm2022/table.mjs.map +1 -1
- package/fesm2022/text-field.mjs +16 -16
- package/fesm2022/text-field.mjs.map +1 -1
- package/fesm2022/tree.mjs +25 -25
- package/fesm2022/tree.mjs.map +1 -1
- package/listbox/index.d.ts +1 -1
- package/overlay/index.d.ts +2 -2
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/scrolling/index.d.ts +1 -1
package/listbox/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare class CdkListbox<T = unknown> implements AfterContentInit, OnDest
|
|
|
39
39
|
set useActiveDescendant(value: boolean);
|
|
40
40
|
private _useActiveDescendant;
|
|
41
41
|
/** The orientation of the listbox. Only affects keyboard interaction, not visual layout. */
|
|
42
|
-
get orientation():
|
|
42
|
+
get orientation(): "horizontal" | "vertical";
|
|
43
43
|
set orientation(value: 'horizontal' | 'vertical');
|
|
44
44
|
private _orientation;
|
|
45
45
|
/** The function used to compare option values. */
|
package/overlay/index.d.ts
CHANGED
|
@@ -271,7 +271,7 @@ export declare class ConnectionPositionPair {
|
|
|
271
271
|
/** Offset along the Y axis. */
|
|
272
272
|
offsetY?: number | undefined;
|
|
273
273
|
/** Class(es) to be applied to the panel while this position is active. */
|
|
274
|
-
panelClass?:
|
|
274
|
+
panelClass?: string | string[] | undefined;
|
|
275
275
|
/** X-axis attachment point for connected overlay origin. Can be 'start', 'end', or 'center'. */
|
|
276
276
|
originX: HorizontalConnectionPos;
|
|
277
277
|
/** Y-axis attachment point for connected overlay origin. Can be 'top', 'bottom', or 'center'. */
|
|
@@ -286,7 +286,7 @@ export declare class ConnectionPositionPair {
|
|
|
286
286
|
/** Offset along the Y axis. */
|
|
287
287
|
offsetY?: number | undefined,
|
|
288
288
|
/** Class(es) to be applied to the panel while this position is active. */
|
|
289
|
-
panelClass?:
|
|
289
|
+
panelClass?: string | string[] | undefined);
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
/**
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ function default_1() {
|
|
|
29
29
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
30
30
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
31
31
|
// dependencies in new CLI projects.
|
|
32
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.0-next.
|
|
32
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.0-next.2`);
|
|
33
33
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
34
34
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
35
35
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
@@ -29,7 +29,7 @@ function default_1() {
|
|
|
29
29
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
30
30
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
31
31
|
// dependencies in new CLI projects.
|
|
32
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.0-next.
|
|
32
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.0-next.2`);
|
|
33
33
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
34
34
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
35
35
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
package/scrolling/index.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ export declare class CdkVirtualScrollViewport extends CdkVirtualScrollable imple
|
|
|
251
251
|
/** Emits when the rendered range changes. */
|
|
252
252
|
private readonly _renderedRangeSubject;
|
|
253
253
|
/** The direction the viewport scrolls. */
|
|
254
|
-
get orientation():
|
|
254
|
+
get orientation(): "horizontal" | "vertical";
|
|
255
255
|
set orientation(orientation: 'horizontal' | 'vertical');
|
|
256
256
|
private _orientation;
|
|
257
257
|
/**
|