@angular/material 19.0.0 → 19.1.0-next.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/button-toggle/index.d.ts +1 -0
- package/core/style/_menu-common.scss +0 -1
- package/datepicker/index.d.ts +10 -0
- package/fesm2022/bottom-sheet.mjs.map +1 -1
- package/fesm2022/button-toggle.mjs +11 -3
- package/fesm2022/button-toggle.mjs.map +1 -1
- package/fesm2022/chips.mjs +1 -0
- package/fesm2022/chips.mjs.map +1 -1
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker.mjs +26 -3
- package/fesm2022/datepicker.mjs.map +1 -1
- package/fesm2022/dialog.mjs.map +1 -1
- package/fesm2022/menu.mjs +2 -2
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/sidenav.mjs +4 -4
- package/fesm2022/sidenav.mjs.map +1 -1
- package/fesm2022/snack-bar.mjs.map +1 -1
- package/fesm2022/timepicker.mjs +4 -1
- package/fesm2022/timepicker.mjs.map +1 -1
- package/package.json +7 -7
- package/schematics/ng-add/index.js +2 -2
- package/schematics/ng-add/index.mjs +2 -2
- package/schematics/ng-generate/theme-color/index_bundled.js +431 -128
- package/schematics/ng-generate/theme-color/index_bundled.js.map +2 -2
- package/schematics/ng-generate/theme-color/schema.json +6 -0
- package/timepicker/index.d.ts +5 -2
|
@@ -34,6 +34,12 @@
|
|
|
34
34
|
"type": "string",
|
|
35
35
|
"description": "Workspace-relative path to a directory where generated theme file will be created",
|
|
36
36
|
"x-prompt": "What is the directory you want to place the generated theme file in? (Enter the relative path such as 'src/app/styles/' or leave blank to generate at your project root)"
|
|
37
|
+
},
|
|
38
|
+
"isScss": {
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"default": true,
|
|
41
|
+
"description": "Whether to generate output file in scss or CSS",
|
|
42
|
+
"x-prompt": "Do you want to generated file to be a scss file? This is the recommended way of setting up theming in your application. If not, a CSS file will be generated with all the system variables defined. (Leave blank to generate a scss file)"
|
|
37
43
|
}
|
|
38
44
|
}
|
|
39
45
|
}
|
package/timepicker/index.d.ts
CHANGED
|
@@ -178,8 +178,11 @@ export declare class MatTimepickerInput<D> implements ControlValueAccessor, Vali
|
|
|
178
178
|
readonly max: InputSignalWithTransform<D | null, unknown>;
|
|
179
179
|
/** Whether the input is disabled. */
|
|
180
180
|
readonly disabled: Signal<boolean>;
|
|
181
|
-
/**
|
|
182
|
-
|
|
181
|
+
/**
|
|
182
|
+
* Whether the input should be disabled through the template.
|
|
183
|
+
* @docs-private
|
|
184
|
+
*/
|
|
185
|
+
readonly disabledInput: InputSignalWithTransform<boolean, unknown>;
|
|
183
186
|
constructor();
|
|
184
187
|
/**
|
|
185
188
|
* Implemented as a part of `ControlValueAccessor`.
|