@ngrdt/gov 0.0.86 → 0.0.89
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/ngrdt-gov.mjs +29 -28
- package/fesm2022/ngrdt-gov.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -12,10 +12,10 @@ import { Injector, ElementRef, Type, WritableSignal, InjectionToken, OnDestroy }
|
|
|
12
12
|
import { MatDatepickerIntl, MatDatepickerInputEvent } from '@angular/material/datepicker';
|
|
13
13
|
import { RdtBooleanResult } from '@ngrdt/core';
|
|
14
14
|
import { Nullable } from '@ngrdt/utils';
|
|
15
|
+
import { GovFormCheckbox, GovFormInput } from '@gov-design-system-ce/angular';
|
|
15
16
|
import * as date_fns from 'date-fns';
|
|
16
17
|
import { Observable } from 'rxjs';
|
|
17
18
|
import { Nullable as Nullable$1 } from '@gov-design-system-ce/components';
|
|
18
|
-
import { GovFormInput } from '@gov-design-system-ce/angular';
|
|
19
19
|
|
|
20
20
|
type GovSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
21
21
|
type GovColor = 'primary' | 'secondary' | 'neutral' | 'success' | 'warning' | 'error';
|
|
@@ -53,12 +53,12 @@ declare class RdtGovButtonComponent extends RdtButtonBase<RdtIcon> {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
declare class RdtGovCheckboxComponent extends RdtCheckboxComponent {
|
|
56
|
+
protected readonly govCheckbox: _angular_core.Signal<GovFormCheckbox | undefined>;
|
|
56
57
|
readonly labelPosition: _angular_core.WritableSignal<GovLabelPosition>;
|
|
57
58
|
readonly labelPositionInput: _angular_core.InputSignal<GovLabelPosition>;
|
|
58
59
|
readonly size: _angular_core.WritableSignal<"xs" | "s" | "m" | "l" | "xl">;
|
|
59
60
|
readonly sizeInput: _angular_core.InputSignal<"xs" | "s" | "m" | "l" | "xl">;
|
|
60
|
-
|
|
61
|
-
focus(): void;
|
|
61
|
+
focus(): Promise<void>;
|
|
62
62
|
canFocus(): RdtBooleanResult;
|
|
63
63
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovCheckboxComponent, never>;
|
|
64
64
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovCheckboxComponent, "rdt-gov-checkbox", never, { "labelPositionInput": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -95,7 +95,7 @@ declare class RdtGovSpinnerComponent extends RdtSpinnerComponent {
|
|
|
95
95
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovSpinnerComponent, "rdt-gov-spinner", never, { "messageInput": { "alias": "message"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; "modeInput": { "alias": "mode"; "required": false; "isSignal": true; }; "messagePositionInput": { "alias": "messagePosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
declare function provideNgrdtGov(options?: {}): (_angular_core.
|
|
98
|
+
declare function provideNgrdtGov(options?: {}): (_angular_core.EnvironmentProviders | _angular_core.Provider[] | {
|
|
99
99
|
provide: _angular_core.InjectionToken<_angular_core.Type<_ngrdt_icon.RdtIconBaseInt>>;
|
|
100
100
|
useValue: typeof RdtGovIconComponent;
|
|
101
101
|
useClass?: undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/gov",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.89",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": ">=20.0.0",
|
|
6
6
|
"@angular/forms": ">=20.0.0",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"@gov-design-system-ce/angular": ">=1.3.1",
|
|
10
10
|
"@gov-design-system-ce/components": ">=4.2.0",
|
|
11
11
|
"rxjs": "~7.8.0",
|
|
12
|
-
"@ngrdt/core": "^0.0.
|
|
13
|
-
"@ngrdt/forms": "^0.0.
|
|
14
|
-
"@ngrdt/icon": "^0.0.
|
|
15
|
-
"@ngrdt/utils": "^0.0.
|
|
12
|
+
"@ngrdt/core": "^0.0.89",
|
|
13
|
+
"@ngrdt/forms": "^0.0.89",
|
|
14
|
+
"@ngrdt/icon": "^0.0.89",
|
|
15
|
+
"@ngrdt/utils": "^0.0.89",
|
|
16
16
|
"@angular/cdk": ">=20.0.0",
|
|
17
|
-
"@ngrdt/button": "^0.0.
|
|
18
|
-
"@ngrdt/loading": "^0.0.
|
|
17
|
+
"@ngrdt/button": "^0.0.89",
|
|
18
|
+
"@ngrdt/loading": "^0.0.89",
|
|
19
19
|
"@angular/material-date-fns-adapter": ">=20.0.0",
|
|
20
20
|
"date-fns": ">=4.1.0",
|
|
21
21
|
"@angular/material": ">=20.0.0"
|