Denis

Results 9 issues of Denis

How I can create database for testing without real database? Like: `database = SqliteDatabase(':memory:')`

https://github.com/h2qutc/angular-material-components/blob/f147c1c9645167fb170bbca4aa9d91f757c2bb5a/projects/datetime-picker/src/lib/core/date-adapter.ts#L37 Can you change this interface, to return `D` instead of `void`, because some libraries (like Luxon) work with immutable objects https://moment.github.io/luxon/docs/manual/tour.html#immutability

### Current Behavior On CI step, when too many changed files (approx 3k files), command `nx format:check --base=xxx` fails without any errors: ``` > cross-var nx format:check --base=$npm_config_base_branch ERROR: Job...

type: bug
scope: misc

The rule `@angular-eslint/prefer-output-readonly` stops working after updating to angular 16. ```JSON { "files": ["*.ts"], "extends": [ "plugin:@nx/typescript", "plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates" ], "rules": { //... "@angular-eslint/prefer-output-readonly": "error", //... } } ``` ```TS...

package: eslint-plugin
triage

### Feature Description Right now, icon for calendar year select is hardcoded in source code - https://github.com/angular/components/blob/fd47a0e60dd9ab50d9f923713ca60a7fd21ccc16/src/material/datepicker/calendar-header.html#L11 Please, add ability to override it (maybe via `icon registry`), because buttons below...

feature
P4
area: material/datepicker

### Which @angular/* package(s) are relevant/related to the feature request? forms ### Description There is no way to be notified when someone added/removed validator to formControl. ### Proposed solution I...

area: forms
forms: change detection

### Link to minimal reproducible example https://github.com/user-attachments/assets/a3b6289b-e4a1-44dc-b338-18ac0e71c7a0 ### Steps to Reproduce Deployed example: https://de-don.github.io/appkit-web-examples/ 1) Open https://de-don.github.io/appkit-web-examples/ (it's appkit-web-examples/javascript-ethers with our test projectId `fc4c8513fac816babe05f32eac827d08`, **it's important**) 2) Connect web3 wallet...

``` export const example = z.union([ z.string().min(10), z.string().min(5) ]); ``` will generate schema like this in `[email protected]` ``` "exampleField": { "anyOf":[ {"type":"string","minLength":10}, {"type":"string","minLength":5} ] } ``` but in zod v3...