bpm-core 0.0.152 → 0.0.153
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.
|
@@ -6,6 +6,10 @@ export declare class TextareaComponent<Type> extends ControlValueAccessorDirecti
|
|
|
6
6
|
className: string;
|
|
7
7
|
preventSpecailChar: boolean;
|
|
8
8
|
maxLength: number | string;
|
|
9
|
+
isResizable: boolean;
|
|
10
|
+
isArText: boolean;
|
|
11
|
+
isEnText: boolean;
|
|
12
|
+
get textDir(): 'rtl' | 'ltr';
|
|
9
13
|
/**
|
|
10
14
|
* A mapping function that modifies the input value during typing, pasting, or dropping text.
|
|
11
15
|
* You can use it to modify the full input value **before it appears** (e.g., for auto-capitalization,
|
|
@@ -83,5 +87,7 @@ export declare class TextareaComponent<Type> extends ControlValueAccessorDirecti
|
|
|
83
87
|
destroyRef: DestroyRef;
|
|
84
88
|
ngOnInit(): void;
|
|
85
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent<any>, never>;
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent<any>, "app-textarea", never, { "className": { "alias": "className"; "required": false; }; "preventSpecailChar": { "alias": "preventSpecailChar"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "mapFn": { "alias": "mapFn"; "required": false; }; "filterFn": { "alias": "filterFn"; "required": false; }; }, {}, never, never, true, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent<any>, "app-textarea", never, { "className": { "alias": "className"; "required": false; }; "preventSpecailChar": { "alias": "preventSpecailChar"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "isResizable": { "alias": "isResizable"; "required": false; }; "isArText": { "alias": "isArText"; "required": false; }; "isEnText": { "alias": "isEnText"; "required": false; }; "mapFn": { "alias": "mapFn"; "required": false; }; "filterFn": { "alias": "filterFn"; "required": false; }; }, {}, never, never, true, never>;
|
|
91
|
+
static ngAcceptInputType_isArText: unknown;
|
|
92
|
+
static ngAcceptInputType_isEnText: unknown;
|
|
87
93
|
}
|
package/package.json
CHANGED
|
@@ -103,6 +103,16 @@ html mat-form-field.mat-mdc-form-field {
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
app-textarea {
|
|
106
|
+
textarea {
|
|
107
|
+
direction: ltr;
|
|
108
|
+
text-align: left;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
textarea[dir="rtl"] {
|
|
112
|
+
direction: rtl !important;
|
|
113
|
+
text-align: right !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
106
116
|
mat-form-field.mat-mdc-form-field.custom-textarea,
|
|
107
117
|
mat-form-field.mat-mdc-form-field {
|
|
108
118
|
--input-height: 80px;
|