oasys-lib 1.83.0-rc.3 → 1.84.0-rc.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/esm2022/lib/components/form/errors/form-errors.component.mjs +5 -18
- package/esm2022/lib/components/form/text-input/text-input.component.mjs +42 -4
- package/esm2022/lib/components/form/text-input/text-input.mjs +1 -1
- package/fesm2022/oasys-lib.mjs +45 -20
- package/fesm2022/oasys-lib.mjs.map +1 -1
- package/lib/components/form/errors/form-errors.component.d.ts +3 -6
- package/lib/components/form/errors/form-errors.component.d.ts.map +1 -1
- package/lib/components/form/text-input/text-input.component.d.ts +6 -1
- package/lib/components/form/text-input/text-input.component.d.ts.map +1 -1
- package/lib/components/form/text-input/text-input.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/assets/bloomandwild/variables.css +1 -1
- package/src/assets/bloomon/variables.css +1 -1
- package/src/assets/global/scss-breakpoints.scss +1 -1
|
@@ -2,12 +2,9 @@ import { ValidationErrorTypes } from '../forms';
|
|
|
2
2
|
import { ValidationErrors } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FormErrorsComponent {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
private liveAnnouncer;
|
|
9
|
-
private ngZone;
|
|
10
|
-
constructor();
|
|
5
|
+
errors: import("@angular/core").InputSignal<ValidationErrors>;
|
|
6
|
+
error_messages: import("@angular/core").InputSignal<ValidationErrorTypes>;
|
|
7
|
+
errorMessage: import("@angular/core").Signal<string>;
|
|
11
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorsComponent, never>;
|
|
12
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormErrorsComponent, "ui-form-errors", never, { "errors": { "alias": "errors"; "required": false; "isSignal": true; }; "error_messages": { "alias": "error_messages"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
13
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-errors.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/errors/form-errors.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"form-errors.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/errors/form-errors.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;;AAGlD,qBAMa,mBAAmB;IAC9B,MAAM,wDAAoD;IAC1D,cAAc,4DAA+C;IAE7D,YAAY,yCAUT;yCAdQ,mBAAmB;2CAAnB,mBAAmB;CAe/B"}
|
|
@@ -16,11 +16,13 @@ export declare class TextInputComponent implements ControlValueAccessor, OnInit,
|
|
|
16
16
|
pattern: string;
|
|
17
17
|
autocorrect: boolean;
|
|
18
18
|
disabled: boolean;
|
|
19
|
+
aria_label: string | undefined;
|
|
19
20
|
show_password_string: string;
|
|
20
21
|
hide_password_string: string;
|
|
21
22
|
validation_messages: ValidationErrorTypes;
|
|
22
23
|
didChange: EventEmitter<string>;
|
|
23
24
|
textInput: ElementRef<HTMLElement>;
|
|
25
|
+
prefaceContent: ElementRef<HTMLElement>;
|
|
24
26
|
textValue: string;
|
|
25
27
|
showPassword: boolean;
|
|
26
28
|
inputDidChange: boolean;
|
|
@@ -39,7 +41,10 @@ export declare class TextInputComponent implements ControlValueAccessor, OnInit,
|
|
|
39
41
|
setupValidationListener(): void;
|
|
40
42
|
ngAfterViewInit(): void;
|
|
41
43
|
ngOnInit(): void;
|
|
44
|
+
accessibleAriaLabel(): string;
|
|
45
|
+
getInputMode(): string | undefined;
|
|
46
|
+
getAriaDescribedBy(): string;
|
|
42
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ui-text-input", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "show_password_string": { "alias": "show_password_string"; "required": false; }; "hide_password_string": { "alias": "hide_password_string"; "required": false; }; "validation_messages": { "alias": "validation_messages"; "required": false; }; }, { "didChange": "didChange"; }, never, ["[preface]", "ui-form-errors"], false, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ui-text-input", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "aria_label": { "alias": "aria_label"; "required": false; }; "show_password_string": { "alias": "show_password_string"; "required": false; }; "hide_password_string": { "alias": "hide_password_string"; "required": false; }; "validation_messages": { "alias": "validation_messages"; "required": false; }; }, { "didChange": "didChange"; }, never, ["[preface]", "ui-form-errors"], false, never>;
|
|
44
49
|
}
|
|
45
50
|
//# sourceMappingURL=text-input.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/text-input/text-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,YAAY,EAEZ,MAAM,EAGN,UAAU,EAEV,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AAEhD,qBAca,
|
|
1
|
+
{"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/text-input/text-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,YAAY,EAEZ,MAAM,EAGN,UAAU,EAEV,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AAEhD,qBAca,kBACb,YAAW,oBAAoB,EAAE,MAAM,EAAE,aAAa;IAoCtB,OAAO,CAAC,QAAQ;IAnCrC,KAAK,EAAG,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,OAAO,CAAQ;IACzB,IAAI,EAAE,aAAa,CAAU;IAC7B,YAAY,EAAE,gBAAgB,CAAQ;IACtC,SAAS,EAAE,OAAO,CAAS;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAO;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,OAAO,CAAwB;IAC5C,QAAQ,EAAE,OAAO,CAAS;IAC1B,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAE/B,oBAAoB,EAAE,MAAM,CAAU;IACtC,oBAAoB,EAAE,MAAM,CAAU;IAEtC,mBAAmB,EAAE,oBAAoB,CAAC;IAEzC,SAAS,uBAA8B;IAG/C,SAAS,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAGnC,cAAc,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE1C,SAAS,EAAE,MAAM,CAAM;IACvB,YAAY,EAAE,OAAO,CAAS;IAC9B,cAAc,EAAE,OAAO,CAAS;IAChC,aAAa,EAAE,aAAa,CAAU;IAEtC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;IAEpB,iBAAiB,EAAE,IAAI,GAAG,KAAK,CAAQ;gBAED,QAAQ,EAAE,QAAQ;IAExD,QAAQ,EAAE,GAAG,CAAkB;IAC/B,SAAS,EAAE,GAAG,CAAkB;IAEhC,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAInC,gBAAgB,CAAC,EAAE,EAAE,OAAO,GAAG,IAAI;IAInC,iBAAiB,CAAC,EAAE,EAAE,OAAO,GAAG,IAAI;IAIpC,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAOtC,kBAAkB,IAAI,IAAI;IAK1B,WAAW,IAAI,IAAI;IAOnB,uBAAuB,IAAI,IAAI;IAK/B,eAAe,IAAI,IAAI;IAIvB,QAAQ,IAAI,IAAI;IAMhB,mBAAmB,IAAI,MAAM;IAoB7B,YAAY,IAAI,MAAM,GAAG,SAAS;IASlC,kBAAkB,IAAI,MAAM;yCArHjB,kBAAkB;2CAAlB,kBAAkB;CAkI9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text-input.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/text-input/text-input.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"text-input.d.ts","sourceRoot":"","sources":["../../../../../../projects/oasys-lib/src/lib/components/form/text-input/text-input.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,KAAK,CAAC;AAElE,MAAM,MAAM,gBAAgB,GACxB,KAAK,GACL,IAAI,GACJ,MAAM,GACN,kBAAkB,GAClB,YAAY,GACZ,iBAAiB,GACjB,aAAa,GACb,kBAAkB,GAClB,UAAU,GACV,OAAO,GACP,UAAU,GACV,cAAc,GACd,kBAAkB,GAClB,eAAe,GACf,oBAAoB,GACpB,cAAc,GACd,gBAAgB,GAChB,eAAe,GACf,eAAe,GACf,eAAe,GACf,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,SAAS,GACT,cAAc,GACd,aAAa,GACb,SAAS,GACT,eAAe,GACf,oBAAoB,GACpB,gBAAgB,GAChB,WAAW,GACX,QAAQ,GACR,cAAc,GACd,aAAa,GACb,QAAQ,GACR,SAAS,GACT,sBAAsB,GACtB,oBAAoB,GACpB,UAAU,GACV,MAAM,GACN,UAAU,GACV,YAAY,GACZ,WAAW,GACX,KAAK,GACL,KAAK,GACL,KAAK,GACL,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,WAAW,GACX,eAAe,GACf,MAAM,CAAC"}
|
package/package.json
CHANGED