@anarchitects/auth-angular 1.0.1 → 2.1.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 +14 -12
- package/feature/README.md +2 -2
- package/fesm2022/anarchitects-auth-angular-feature.mjs +67 -286
- package/fesm2022/anarchitects-auth-angular-feature.mjs.map +1 -1
- package/fesm2022/anarchitects-auth-angular-state.mjs +6 -2
- package/fesm2022/anarchitects-auth-angular-state.mjs.map +1 -1
- package/fesm2022/anarchitects-auth-angular-ui.mjs +434 -0
- package/fesm2022/anarchitects-auth-angular-ui.mjs.map +1 -0
- package/fesm2022/anarchitects-auth-angular.mjs +1 -0
- package/fesm2022/anarchitects-auth-angular.mjs.map +1 -1
- package/package.json +13 -8
- package/state/README.md +3 -2
- package/types/anarchitects-auth-angular-feature.d.ts +58 -49
- package/types/anarchitects-auth-angular-state.d.ts +5 -2
- package/types/anarchitects-auth-angular-ui.d.ts +138 -0
- package/types/anarchitects-auth-angular.d.ts +1 -0
- package/ui/README.md +22 -0
- package/util/README.md +1 -1
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
import { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { input, output, signal, ChangeDetectionStrategy, Component, computed } from '@angular/core';
|
|
4
|
+
|
|
5
|
+
class AnarchitectsAuthUiLoginForm {
|
|
6
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
7
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
8
|
+
submitted = output();
|
|
9
|
+
formConfig = signal({
|
|
10
|
+
id: 'login',
|
|
11
|
+
version: 1,
|
|
12
|
+
fields: [
|
|
13
|
+
{
|
|
14
|
+
name: 'credential',
|
|
15
|
+
kind: 'string',
|
|
16
|
+
required: true,
|
|
17
|
+
minLength: 2,
|
|
18
|
+
maxLength: 100,
|
|
19
|
+
ui: { label: 'Email or Username' },
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'password',
|
|
23
|
+
kind: 'password',
|
|
24
|
+
required: true,
|
|
25
|
+
minLength: 6,
|
|
26
|
+
ui: { label: 'Password' },
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
30
|
+
onSubmitted(input) {
|
|
31
|
+
this.submitted.emit({
|
|
32
|
+
credential: input.payload['credential'],
|
|
33
|
+
password: input.payload['password'],
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiLoginForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
37
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiLoginForm, isStandalone: true, selector: "anarchitects-auth-ui-login-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-login-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-login-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
38
|
+
}
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiLoginForm, decorators: [{
|
|
40
|
+
type: Component,
|
|
41
|
+
args: [{ selector: 'anarchitects-auth-ui-login-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
42
|
+
class: 'anx-domain-component anx-auth-ui-login-form anx-stack',
|
|
43
|
+
'attr.data-anx-component': '"auth-ui-login-form"',
|
|
44
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
45
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
46
|
+
|
|
47
|
+
class AnarchitectsAuthUiRegisterForm {
|
|
48
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
49
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
50
|
+
submitted = output();
|
|
51
|
+
formConfig = signal({
|
|
52
|
+
id: 'register',
|
|
53
|
+
version: 1,
|
|
54
|
+
fields: [
|
|
55
|
+
{
|
|
56
|
+
name: 'userName',
|
|
57
|
+
kind: 'string',
|
|
58
|
+
ui: { label: 'Username' },
|
|
59
|
+
required: false,
|
|
60
|
+
},
|
|
61
|
+
{ name: 'email', kind: 'email', ui: { label: 'Email' }, required: true },
|
|
62
|
+
{
|
|
63
|
+
name: 'password',
|
|
64
|
+
kind: 'password',
|
|
65
|
+
ui: { label: 'Password' },
|
|
66
|
+
required: true,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'confirmPassword',
|
|
70
|
+
kind: 'password',
|
|
71
|
+
ui: { label: 'Confirm Password' },
|
|
72
|
+
required: true,
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
76
|
+
onSubmitted(input) {
|
|
77
|
+
this.submitted.emit({
|
|
78
|
+
userName: input.payload['userName'],
|
|
79
|
+
email: input.payload['email'],
|
|
80
|
+
password: input.payload['password'],
|
|
81
|
+
confirmPassword: input.payload['confirmPassword'],
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiRegisterForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
85
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiRegisterForm, isStandalone: true, selector: "anarchitects-auth-ui-register-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-register-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-register-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
86
|
+
}
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiRegisterForm, decorators: [{
|
|
88
|
+
type: Component,
|
|
89
|
+
args: [{ selector: 'anarchitects-auth-ui-register-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
90
|
+
class: 'anx-domain-component anx-auth-ui-register-form anx-stack',
|
|
91
|
+
'attr.data-anx-component': '"auth-ui-register-form"',
|
|
92
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
93
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
94
|
+
|
|
95
|
+
class AnarchitectsAuthUiActivateUserForm {
|
|
96
|
+
token = input(...(ngDevMode ? [undefined, { debugName: "token" }] : []));
|
|
97
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
98
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
99
|
+
submitted = output();
|
|
100
|
+
formConfig = computed(() => ({
|
|
101
|
+
id: 'activate-user',
|
|
102
|
+
version: 1,
|
|
103
|
+
fields: [
|
|
104
|
+
{
|
|
105
|
+
name: 'token',
|
|
106
|
+
kind: 'string',
|
|
107
|
+
required: !this.token(),
|
|
108
|
+
minLength: 1,
|
|
109
|
+
ui: { label: 'Activation Token' },
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
}), ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
113
|
+
onSubmitted(input) {
|
|
114
|
+
const token = input.payload['token'] || this.token();
|
|
115
|
+
if (!token) {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
this.submitted.emit({ token });
|
|
119
|
+
}
|
|
120
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiActivateUserForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiActivateUserForm, isStandalone: true, selector: "anarchitects-auth-ui-activate-user-form", inputs: { token: { classPropertyName: "token", publicName: "token", isSignal: true, isRequired: false, transformFunction: null }, layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-activate-user-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-activate-user-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
122
|
+
}
|
|
123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiActivateUserForm, decorators: [{
|
|
124
|
+
type: Component,
|
|
125
|
+
args: [{ selector: 'anarchitects-auth-ui-activate-user-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
126
|
+
class: 'anx-domain-component anx-auth-ui-activate-user-form anx-stack',
|
|
127
|
+
'attr.data-anx-component': '"auth-ui-activate-user-form"',
|
|
128
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
129
|
+
}], propDecorators: { token: [{ type: i0.Input, args: [{ isSignal: true, alias: "token", required: false }] }], layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
130
|
+
|
|
131
|
+
class AnarchitectsAuthUiForgotPasswordForm {
|
|
132
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
133
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
134
|
+
submitted = output();
|
|
135
|
+
formConfig = signal({
|
|
136
|
+
id: 'forgot-password',
|
|
137
|
+
version: 1,
|
|
138
|
+
fields: [
|
|
139
|
+
{
|
|
140
|
+
name: 'email',
|
|
141
|
+
kind: 'email',
|
|
142
|
+
required: true,
|
|
143
|
+
ui: { label: 'Email' },
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
147
|
+
onSubmitted(input) {
|
|
148
|
+
this.submitted.emit({
|
|
149
|
+
email: input.payload['email'],
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiForgotPasswordForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
153
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiForgotPasswordForm, isStandalone: true, selector: "anarchitects-auth-ui-forgot-password-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-forgot-password-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-forgot-password-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
154
|
+
}
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiForgotPasswordForm, decorators: [{
|
|
156
|
+
type: Component,
|
|
157
|
+
args: [{ selector: 'anarchitects-auth-ui-forgot-password-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
158
|
+
class: 'anx-domain-component anx-auth-ui-forgot-password-form anx-stack',
|
|
159
|
+
'attr.data-anx-component': '"auth-ui-forgot-password-form"',
|
|
160
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
161
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
162
|
+
|
|
163
|
+
class AnarchitectsAuthUiResetPasswordForm {
|
|
164
|
+
token = input(...(ngDevMode ? [undefined, { debugName: "token" }] : []));
|
|
165
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
166
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
167
|
+
submitted = output();
|
|
168
|
+
formConfig = computed(() => ({
|
|
169
|
+
id: 'reset-password',
|
|
170
|
+
version: 1,
|
|
171
|
+
fields: [
|
|
172
|
+
{
|
|
173
|
+
name: 'token',
|
|
174
|
+
kind: 'string',
|
|
175
|
+
required: !this.token(),
|
|
176
|
+
minLength: 1,
|
|
177
|
+
ui: { label: 'Reset Token' },
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
name: 'password',
|
|
181
|
+
kind: 'password',
|
|
182
|
+
required: true,
|
|
183
|
+
minLength: 6,
|
|
184
|
+
ui: { label: 'Password' },
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
name: 'confirmPassword',
|
|
188
|
+
kind: 'password',
|
|
189
|
+
required: true,
|
|
190
|
+
minLength: 6,
|
|
191
|
+
ui: { label: 'Confirm Password' },
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
}), ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
195
|
+
onSubmitted(input) {
|
|
196
|
+
const token = input.payload['token'] || this.token();
|
|
197
|
+
if (!token) {
|
|
198
|
+
return;
|
|
199
|
+
}
|
|
200
|
+
this.submitted.emit({
|
|
201
|
+
token,
|
|
202
|
+
password: input.payload['password'],
|
|
203
|
+
confirmPassword: input.payload['confirmPassword'],
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiResetPasswordForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
207
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiResetPasswordForm, isStandalone: true, selector: "anarchitects-auth-ui-reset-password-form", inputs: { token: { classPropertyName: "token", publicName: "token", isSignal: true, isRequired: false, transformFunction: null }, layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-reset-password-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-reset-password-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
208
|
+
}
|
|
209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiResetPasswordForm, decorators: [{
|
|
210
|
+
type: Component,
|
|
211
|
+
args: [{ selector: 'anarchitects-auth-ui-reset-password-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
212
|
+
class: 'anx-domain-component anx-auth-ui-reset-password-form anx-stack',
|
|
213
|
+
'attr.data-anx-component': '"auth-ui-reset-password-form"',
|
|
214
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
215
|
+
}], propDecorators: { token: [{ type: i0.Input, args: [{ isSignal: true, alias: "token", required: false }] }], layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
216
|
+
|
|
217
|
+
class AnarchitectsAuthUiVerifyEmailForm {
|
|
218
|
+
token = input(...(ngDevMode ? [undefined, { debugName: "token" }] : []));
|
|
219
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
220
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
221
|
+
submitted = output();
|
|
222
|
+
formConfig = computed(() => ({
|
|
223
|
+
id: 'verify-email',
|
|
224
|
+
version: 1,
|
|
225
|
+
fields: [
|
|
226
|
+
{
|
|
227
|
+
name: 'token',
|
|
228
|
+
kind: 'string',
|
|
229
|
+
required: !this.token(),
|
|
230
|
+
minLength: 1,
|
|
231
|
+
ui: { label: 'Verification Token' },
|
|
232
|
+
},
|
|
233
|
+
],
|
|
234
|
+
}), ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
235
|
+
onSubmitted(input) {
|
|
236
|
+
const token = input.payload['token'] || this.token();
|
|
237
|
+
if (!token) {
|
|
238
|
+
return;
|
|
239
|
+
}
|
|
240
|
+
this.submitted.emit({ token });
|
|
241
|
+
}
|
|
242
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiVerifyEmailForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
243
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiVerifyEmailForm, isStandalone: true, selector: "anarchitects-auth-ui-verify-email-form", inputs: { token: { classPropertyName: "token", publicName: "token", isSignal: true, isRequired: false, transformFunction: null }, layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-verify-email-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-verify-email-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
244
|
+
}
|
|
245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiVerifyEmailForm, decorators: [{
|
|
246
|
+
type: Component,
|
|
247
|
+
args: [{ selector: 'anarchitects-auth-ui-verify-email-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
248
|
+
class: 'anx-domain-component anx-auth-ui-verify-email-form anx-stack',
|
|
249
|
+
'attr.data-anx-component': '"auth-ui-verify-email-form"',
|
|
250
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
251
|
+
}], propDecorators: { token: [{ type: i0.Input, args: [{ isSignal: true, alias: "token", required: false }] }], layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
252
|
+
|
|
253
|
+
class AnarchitectsAuthUiChangePasswordForm {
|
|
254
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
255
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
256
|
+
submitted = output();
|
|
257
|
+
formConfig = signal({
|
|
258
|
+
id: 'change-password',
|
|
259
|
+
version: 1,
|
|
260
|
+
fields: [
|
|
261
|
+
{
|
|
262
|
+
name: 'currentPassword',
|
|
263
|
+
kind: 'password',
|
|
264
|
+
required: true,
|
|
265
|
+
minLength: 6,
|
|
266
|
+
ui: { label: 'Current Password' },
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
name: 'newPassword',
|
|
270
|
+
kind: 'password',
|
|
271
|
+
required: true,
|
|
272
|
+
minLength: 6,
|
|
273
|
+
ui: { label: 'New Password' },
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: 'confirmPassword',
|
|
277
|
+
kind: 'password',
|
|
278
|
+
required: true,
|
|
279
|
+
minLength: 6,
|
|
280
|
+
ui: { label: 'Confirm Password' },
|
|
281
|
+
},
|
|
282
|
+
],
|
|
283
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
284
|
+
onSubmitted(input) {
|
|
285
|
+
this.submitted.emit({
|
|
286
|
+
currentPassword: input.payload['currentPassword'],
|
|
287
|
+
newPassword: input.payload['newPassword'],
|
|
288
|
+
confirmPassword: input.payload['confirmPassword'],
|
|
289
|
+
});
|
|
290
|
+
}
|
|
291
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiChangePasswordForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
292
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiChangePasswordForm, isStandalone: true, selector: "anarchitects-auth-ui-change-password-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-change-password-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-change-password-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
293
|
+
}
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiChangePasswordForm, decorators: [{
|
|
295
|
+
type: Component,
|
|
296
|
+
args: [{ selector: 'anarchitects-auth-ui-change-password-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
297
|
+
class: 'anx-domain-component anx-auth-ui-change-password-form anx-stack',
|
|
298
|
+
'attr.data-anx-component': '"auth-ui-change-password-form"',
|
|
299
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
300
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
301
|
+
|
|
302
|
+
class AnarchitectsAuthUiUpdateEmailForm {
|
|
303
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
304
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
305
|
+
submitted = output();
|
|
306
|
+
formConfig = signal({
|
|
307
|
+
id: 'update-email',
|
|
308
|
+
version: 1,
|
|
309
|
+
fields: [
|
|
310
|
+
{
|
|
311
|
+
name: 'newEmail',
|
|
312
|
+
kind: 'email',
|
|
313
|
+
required: true,
|
|
314
|
+
ui: { label: 'New Email' },
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: 'password',
|
|
318
|
+
kind: 'password',
|
|
319
|
+
required: true,
|
|
320
|
+
minLength: 6,
|
|
321
|
+
ui: { label: 'Password' },
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
325
|
+
onSubmitted(input) {
|
|
326
|
+
this.submitted.emit({
|
|
327
|
+
newEmail: input.payload['newEmail'],
|
|
328
|
+
password: input.payload['password'],
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiUpdateEmailForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
332
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiUpdateEmailForm, isStandalone: true, selector: "anarchitects-auth-ui-update-email-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-update-email-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-update-email-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
333
|
+
}
|
|
334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiUpdateEmailForm, decorators: [{
|
|
335
|
+
type: Component,
|
|
336
|
+
args: [{ selector: 'anarchitects-auth-ui-update-email-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
337
|
+
class: 'anx-domain-component anx-auth-ui-update-email-form anx-stack',
|
|
338
|
+
'attr.data-anx-component': '"auth-ui-update-email-form"',
|
|
339
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
340
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
341
|
+
|
|
342
|
+
class AnarchitectsAuthUiLogoutForm {
|
|
343
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
344
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
345
|
+
submitted = output();
|
|
346
|
+
formConfig = signal({
|
|
347
|
+
id: 'logout',
|
|
348
|
+
version: 1,
|
|
349
|
+
fields: [
|
|
350
|
+
{
|
|
351
|
+
name: 'refreshToken',
|
|
352
|
+
kind: 'string',
|
|
353
|
+
required: false,
|
|
354
|
+
minLength: 1,
|
|
355
|
+
ui: { label: 'Refresh Token' },
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: 'accessToken',
|
|
359
|
+
kind: 'string',
|
|
360
|
+
required: false,
|
|
361
|
+
minLength: 1,
|
|
362
|
+
ui: { label: 'Access Token (optional)' },
|
|
363
|
+
},
|
|
364
|
+
],
|
|
365
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
366
|
+
onSubmitted(input) {
|
|
367
|
+
const refreshToken = input.payload['refreshToken'] ||
|
|
368
|
+
localStorage.getItem('refreshToken') ||
|
|
369
|
+
undefined;
|
|
370
|
+
const accessToken = input.payload['accessToken'] ||
|
|
371
|
+
localStorage.getItem('accessToken') ||
|
|
372
|
+
undefined;
|
|
373
|
+
if (!refreshToken) {
|
|
374
|
+
return;
|
|
375
|
+
}
|
|
376
|
+
this.submitted.emit({
|
|
377
|
+
refreshToken,
|
|
378
|
+
...(accessToken ? { accessToken } : {}),
|
|
379
|
+
});
|
|
380
|
+
}
|
|
381
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiLogoutForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
382
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiLogoutForm, isStandalone: true, selector: "anarchitects-auth-ui-logout-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-logout-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-logout-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
383
|
+
}
|
|
384
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiLogoutForm, decorators: [{
|
|
385
|
+
type: Component,
|
|
386
|
+
args: [{ selector: 'anarchitects-auth-ui-logout-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
387
|
+
class: 'anx-domain-component anx-auth-ui-logout-form anx-stack',
|
|
388
|
+
'attr.data-anx-component': '"auth-ui-logout-form"',
|
|
389
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
390
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
391
|
+
|
|
392
|
+
class AnarchitectsAuthUiRefreshTokensForm {
|
|
393
|
+
layout = input(null, ...(ngDevMode ? [{ debugName: "layout" }] : []));
|
|
394
|
+
layoutOptions = input({}, ...(ngDevMode ? [{ debugName: "layoutOptions" }] : []));
|
|
395
|
+
submitted = output();
|
|
396
|
+
formConfig = signal({
|
|
397
|
+
id: 'refresh-tokens',
|
|
398
|
+
version: 1,
|
|
399
|
+
fields: [
|
|
400
|
+
{
|
|
401
|
+
name: 'refreshToken',
|
|
402
|
+
kind: 'string',
|
|
403
|
+
required: false,
|
|
404
|
+
minLength: 1,
|
|
405
|
+
ui: { label: 'Refresh Token' },
|
|
406
|
+
},
|
|
407
|
+
],
|
|
408
|
+
}, ...(ngDevMode ? [{ debugName: "formConfig" }] : []));
|
|
409
|
+
onSubmitted(input) {
|
|
410
|
+
const refreshToken = input.payload['refreshToken'] ||
|
|
411
|
+
localStorage.getItem('refreshToken') ||
|
|
412
|
+
undefined;
|
|
413
|
+
if (!refreshToken) {
|
|
414
|
+
return;
|
|
415
|
+
}
|
|
416
|
+
this.submitted.emit({ refreshToken });
|
|
417
|
+
}
|
|
418
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiRefreshTokensForm, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
419
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.6", type: AnarchitectsAuthUiRefreshTokensForm, isStandalone: true, selector: "anarchitects-auth-ui-refresh-tokens-form", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, layoutOptions: { classPropertyName: "layoutOptions", publicName: "layoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { submitted: "submitted" }, host: { attributes: { "attr.data-anx-component": "\"auth-ui-refresh-tokens-form\"" }, classAttribute: "anx-domain-component anx-auth-ui-refresh-tokens-form anx-stack" }, ngImport: i0, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: AnarchitectsUiForm, selector: "anarchitects-forms-ui-form", inputs: ["config", "layout", "layoutOptions"], outputs: ["submitted"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
420
|
+
}
|
|
421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImport: i0, type: AnarchitectsAuthUiRefreshTokensForm, decorators: [{
|
|
422
|
+
type: Component,
|
|
423
|
+
args: [{ selector: 'anarchitects-auth-ui-refresh-tokens-form', imports: [AnarchitectsUiForm], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
424
|
+
class: 'anx-domain-component anx-auth-ui-refresh-tokens-form anx-stack',
|
|
425
|
+
'attr.data-anx-component': '"auth-ui-refresh-tokens-form"',
|
|
426
|
+
}, template: "<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n", styles: [":host{display:block}\n"] }]
|
|
427
|
+
}], propDecorators: { layout: [{ type: i0.Input, args: [{ isSignal: true, alias: "layout", required: false }] }], layoutOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "layoutOptions", required: false }] }], submitted: [{ type: i0.Output, args: ["submitted"] }] } });
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Generated bundle index. Do not edit.
|
|
431
|
+
*/
|
|
432
|
+
|
|
433
|
+
export { AnarchitectsAuthUiActivateUserForm, AnarchitectsAuthUiChangePasswordForm, AnarchitectsAuthUiForgotPasswordForm, AnarchitectsAuthUiLoginForm, AnarchitectsAuthUiLogoutForm, AnarchitectsAuthUiRefreshTokensForm, AnarchitectsAuthUiRegisterForm, AnarchitectsAuthUiResetPasswordForm, AnarchitectsAuthUiUpdateEmailForm, AnarchitectsAuthUiVerifyEmailForm };
|
|
434
|
+
//# sourceMappingURL=anarchitects-auth-angular-ui.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"anarchitects-auth-angular-ui.mjs","sources":["../../../../../libs/auth/angular/ui/src/components/login-form/login-form.ts","../../../../../libs/auth/angular/ui/src/components/login-form/login-form.html","../../../../../libs/auth/angular/ui/src/components/register-form/register-form.ts","../../../../../libs/auth/angular/ui/src/components/register-form/register-form.html","../../../../../libs/auth/angular/ui/src/components/activate-user-form/activate-user-form.ts","../../../../../libs/auth/angular/ui/src/components/activate-user-form/activate-user-form.html","../../../../../libs/auth/angular/ui/src/components/forgot-password-form/forgot-password-form.ts","../../../../../libs/auth/angular/ui/src/components/forgot-password-form/forgot-password-form.html","../../../../../libs/auth/angular/ui/src/components/reset-password-form/reset-password-form.ts","../../../../../libs/auth/angular/ui/src/components/reset-password-form/reset-password-form.html","../../../../../libs/auth/angular/ui/src/components/verify-email-form/verify-email-form.ts","../../../../../libs/auth/angular/ui/src/components/verify-email-form/verify-email-form.html","../../../../../libs/auth/angular/ui/src/components/change-password-form/change-password-form.ts","../../../../../libs/auth/angular/ui/src/components/change-password-form/change-password-form.html","../../../../../libs/auth/angular/ui/src/components/update-email-form/update-email-form.ts","../../../../../libs/auth/angular/ui/src/components/update-email-form/update-email-form.html","../../../../../libs/auth/angular/ui/src/components/logout-form/logout-form.ts","../../../../../libs/auth/angular/ui/src/components/logout-form/logout-form.html","../../../../../libs/auth/angular/ui/src/components/refresh-tokens-form/refresh-tokens-form.ts","../../../../../libs/auth/angular/ui/src/components/refresh-tokens-form/refresh-tokens-form.html","../../../../../libs/auth/angular/ui/src/anarchitects-auth-angular-ui.ts"],"sourcesContent":["import { LoginRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-login-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './login-form.html',\n styleUrl: './login-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-login-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-login-form\"',\n },\n})\nexport class AnarchitectsAuthUiLoginForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<LoginRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'login',\n version: 1,\n fields: [\n {\n name: 'credential',\n kind: 'string',\n required: true,\n minLength: 2,\n maxLength: 100,\n ui: { label: 'Email or Username' },\n },\n {\n name: 'password',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Password' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n this.submitted.emit({\n credential: input.payload['credential'] as string,\n password: input.payload['password'] as string,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { RegisterRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-register-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './register-form.html',\n styleUrl: './register-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-register-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-register-form\"',\n },\n})\nexport class AnarchitectsAuthUiRegisterForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<RegisterRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'register',\n version: 1,\n fields: [\n {\n name: 'userName',\n kind: 'string',\n ui: { label: 'Username' },\n required: false,\n },\n { name: 'email', kind: 'email', ui: { label: 'Email' }, required: true },\n {\n name: 'password',\n kind: 'password',\n ui: { label: 'Password' },\n required: true,\n },\n {\n name: 'confirmPassword',\n kind: 'password',\n ui: { label: 'Confirm Password' },\n required: true,\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n this.submitted.emit({\n userName: input.payload['userName'] as string | undefined,\n email: input.payload['email'] as string,\n password: input.payload['password'] as string,\n confirmPassword: input.payload['confirmPassword'] as string,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { ActivateUserRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n computed,\n input,\n output,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-activate-user-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './activate-user-form.html',\n styleUrl: './activate-user-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-activate-user-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-activate-user-form\"',\n },\n})\nexport class AnarchitectsAuthUiActivateUserForm {\n readonly token = input<string>();\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<ActivateUserRequestDTO>();\n\n readonly formConfig = computed<FormConfig>(() => ({\n id: 'activate-user',\n version: 1,\n fields: [\n {\n name: 'token',\n kind: 'string',\n required: !this.token(),\n minLength: 1,\n ui: { label: 'Activation Token' },\n },\n ],\n }));\n\n onSubmitted(input: SubmissionRequestDTO): void {\n const token =\n (input.payload['token'] as string | undefined) || this.token();\n if (!token) {\n return;\n }\n\n this.submitted.emit({ token });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { ForgotPasswordRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-forgot-password-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './forgot-password-form.html',\n styleUrl: './forgot-password-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-forgot-password-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-forgot-password-form\"',\n },\n})\nexport class AnarchitectsAuthUiForgotPasswordForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<ForgotPasswordRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'forgot-password',\n version: 1,\n fields: [\n {\n name: 'email',\n kind: 'email',\n required: true,\n ui: { label: 'Email' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n this.submitted.emit({\n email: input.payload['email'] as string,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { ResetPasswordRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n computed,\n input,\n output,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-reset-password-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './reset-password-form.html',\n styleUrl: './reset-password-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-reset-password-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-reset-password-form\"',\n },\n})\nexport class AnarchitectsAuthUiResetPasswordForm {\n readonly token = input<string>();\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<ResetPasswordRequestDTO>();\n\n readonly formConfig = computed<FormConfig>(() => ({\n id: 'reset-password',\n version: 1,\n fields: [\n {\n name: 'token',\n kind: 'string',\n required: !this.token(),\n minLength: 1,\n ui: { label: 'Reset Token' },\n },\n {\n name: 'password',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Password' },\n },\n {\n name: 'confirmPassword',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Confirm Password' },\n },\n ],\n }));\n\n onSubmitted(input: SubmissionRequestDTO): void {\n const token =\n (input.payload['token'] as string | undefined) || this.token();\n if (!token) {\n return;\n }\n\n this.submitted.emit({\n token,\n password: input.payload['password'] as string,\n confirmPassword: input.payload['confirmPassword'] as string,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { VerifyEmailRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n computed,\n input,\n output,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-verify-email-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './verify-email-form.html',\n styleUrl: './verify-email-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-verify-email-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-verify-email-form\"',\n },\n})\nexport class AnarchitectsAuthUiVerifyEmailForm {\n readonly token = input<string>();\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<VerifyEmailRequestDTO>();\n\n readonly formConfig = computed<FormConfig>(() => ({\n id: 'verify-email',\n version: 1,\n fields: [\n {\n name: 'token',\n kind: 'string',\n required: !this.token(),\n minLength: 1,\n ui: { label: 'Verification Token' },\n },\n ],\n }));\n\n onSubmitted(input: SubmissionRequestDTO): void {\n const token =\n (input.payload['token'] as string | undefined) || this.token();\n if (!token) {\n return;\n }\n\n this.submitted.emit({ token });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { ChangePasswordRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-change-password-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './change-password-form.html',\n styleUrl: './change-password-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-change-password-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-change-password-form\"',\n },\n})\nexport class AnarchitectsAuthUiChangePasswordForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<ChangePasswordRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'change-password',\n version: 1,\n fields: [\n {\n name: 'currentPassword',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Current Password' },\n },\n {\n name: 'newPassword',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'New Password' },\n },\n {\n name: 'confirmPassword',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Confirm Password' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n this.submitted.emit({\n currentPassword: input.payload['currentPassword'] as string,\n newPassword: input.payload['newPassword'] as string,\n confirmPassword: input.payload['confirmPassword'] as string,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { UpdateEmailRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-update-email-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './update-email-form.html',\n styleUrl: './update-email-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-update-email-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-update-email-form\"',\n },\n})\nexport class AnarchitectsAuthUiUpdateEmailForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<UpdateEmailRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'update-email',\n version: 1,\n fields: [\n {\n name: 'newEmail',\n kind: 'email',\n required: true,\n ui: { label: 'New Email' },\n },\n {\n name: 'password',\n kind: 'password',\n required: true,\n minLength: 6,\n ui: { label: 'Password' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n this.submitted.emit({\n newEmail: input.payload['newEmail'] as string,\n password: input.payload['password'] as string | undefined,\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { LogoutRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-logout-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './logout-form.html',\n styleUrl: './logout-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-logout-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-logout-form\"',\n },\n})\nexport class AnarchitectsAuthUiLogoutForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<LogoutRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'logout',\n version: 1,\n fields: [\n {\n name: 'refreshToken',\n kind: 'string',\n required: false,\n minLength: 1,\n ui: { label: 'Refresh Token' },\n },\n {\n name: 'accessToken',\n kind: 'string',\n required: false,\n minLength: 1,\n ui: { label: 'Access Token (optional)' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n const refreshToken =\n (input.payload['refreshToken'] as string | undefined) ||\n localStorage.getItem('refreshToken') ||\n undefined;\n const accessToken =\n (input.payload['accessToken'] as string | undefined) ||\n localStorage.getItem('accessToken') ||\n undefined;\n\n if (!refreshToken) {\n return;\n }\n\n this.submitted.emit({\n refreshToken,\n ...(accessToken ? { accessToken } : {}),\n });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","import { RefreshTokenRequestDTO } from '@anarchitects/auth-ts/dtos';\nimport { AnarchitectsUiForm } from '@anarchitects/forms-angular/ui';\nimport { SubmissionRequestDTO } from '@anarchitects/forms-ts/dtos';\nimport { FormConfig } from '@anarchitects/forms-ts/models';\nimport {\n ChangeDetectionStrategy,\n Component,\n input,\n output,\n signal,\n} from '@angular/core';\nimport type { AnxLayoutId } from '@anarchitects/common-angular-ui-layouts/contracts';\n\n@Component({\n selector: 'anarchitects-auth-ui-refresh-tokens-form',\n imports: [AnarchitectsUiForm],\n templateUrl: './refresh-tokens-form.html',\n styleUrl: './refresh-tokens-form.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'anx-domain-component anx-auth-ui-refresh-tokens-form anx-stack',\n 'attr.data-anx-component': '\"auth-ui-refresh-tokens-form\"',\n },\n})\nexport class AnarchitectsAuthUiRefreshTokensForm {\n readonly layout = input<AnxLayoutId | null>(null);\n readonly layoutOptions = input<Readonly<Record<string, unknown>>>({});\n readonly submitted = output<RefreshTokenRequestDTO>();\n\n readonly formConfig = signal<FormConfig>({\n id: 'refresh-tokens',\n version: 1,\n fields: [\n {\n name: 'refreshToken',\n kind: 'string',\n required: false,\n minLength: 1,\n ui: { label: 'Refresh Token' },\n },\n ],\n });\n\n onSubmitted(input: SubmissionRequestDTO): void {\n const refreshToken =\n (input.payload['refreshToken'] as string | undefined) ||\n localStorage.getItem('refreshToken') ||\n undefined;\n\n if (!refreshToken) {\n return;\n }\n\n this.submitted.emit({ refreshToken });\n }\n}\n","<anarchitects-forms-ui-form\n [config]=\"formConfig()\"\n [layout]=\"layout()\"\n [layoutOptions]=\"layoutOptions()\"\n (submitted)=\"onSubmitted($event)\"\n>\n <ng-content select=\"ng-template[anxTemplate]\"></ng-content>\n <ng-content select=\"[anxSlot]\"></ng-content>\n</anarchitects-forms-ui-form>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,7 @@ export * from '@anarchitects/auth-angular/config';
|
|
|
2
2
|
export * from '@anarchitects/auth-angular/data-access';
|
|
3
3
|
export * from '@anarchitects/auth-angular/feature';
|
|
4
4
|
export * from '@anarchitects/auth-angular/state';
|
|
5
|
+
export * from '@anarchitects/auth-angular/ui';
|
|
5
6
|
export * from '@anarchitects/auth-angular/util';
|
|
6
7
|
|
|
7
8
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anarchitects-auth-angular.mjs","sources":["../../../../../libs/auth/angular/src/anarchitects-auth-angular.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"anarchitects-auth-angular.mjs","sources":["../../../../../libs/auth/angular/src/anarchitects-auth-angular.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;AAAA;;AAEG"}
|