monkey-style-guide 21.2.15 → 21.2.16
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -234,14 +234,14 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
234
234
|
noFooterSpace: boolean;
|
|
235
235
|
displayOnly: i0.InputSignal<boolean>;
|
|
236
236
|
onDisplayOnlyChange: i0.OutputEmitterRef<boolean>;
|
|
237
|
-
private _formFieldControl;
|
|
238
|
-
private _displayChild;
|
|
239
|
-
private _labelChildren;
|
|
240
|
-
private _helperChildren;
|
|
241
|
-
private _prefixChildren;
|
|
242
|
-
private _suffixChildren;
|
|
243
|
-
private _infoChildren;
|
|
244
|
-
private _errorChildren;
|
|
237
|
+
private readonly _formFieldControl;
|
|
238
|
+
private readonly _displayChild;
|
|
239
|
+
private readonly _labelChildren;
|
|
240
|
+
private readonly _helperChildren;
|
|
241
|
+
private readonly _prefixChildren;
|
|
242
|
+
private readonly _suffixChildren;
|
|
243
|
+
private readonly _infoChildren;
|
|
244
|
+
private readonly _errorChildren;
|
|
245
245
|
elementRef: ElementRef<any>;
|
|
246
246
|
private readonly _changeDetectorRef;
|
|
247
247
|
private readonly _idGenerator;
|
|
@@ -255,17 +255,17 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
255
255
|
private _valueChanges;
|
|
256
256
|
readonly currencySymbol: string | undefined;
|
|
257
257
|
readonly percentSymbol = "%";
|
|
258
|
-
hasLabel: boolean
|
|
259
|
-
hasHelper: boolean
|
|
260
|
-
hasPrefix: boolean
|
|
261
|
-
hasSuffix: boolean
|
|
262
|
-
hasInfo: boolean
|
|
263
|
-
hasError: boolean
|
|
258
|
+
readonly hasLabel: i0.Signal<boolean>;
|
|
259
|
+
readonly hasHelper: i0.Signal<boolean>;
|
|
260
|
+
readonly hasPrefix: i0.Signal<boolean>;
|
|
261
|
+
readonly hasSuffix: i0.Signal<boolean>;
|
|
262
|
+
readonly hasInfo: i0.Signal<boolean>;
|
|
263
|
+
readonly hasError: i0.Signal<boolean>;
|
|
264
|
+
readonly showHeader: i0.Signal<boolean>;
|
|
265
|
+
readonly showFooter: i0.Signal<boolean>;
|
|
264
266
|
get control(): MonkeyFormFieldControl;
|
|
265
267
|
get labelId(): string;
|
|
266
268
|
hideBorder: i0.Signal<boolean>;
|
|
267
|
-
get showHeader(): boolean;
|
|
268
|
-
get showFooter(): boolean;
|
|
269
269
|
get showInvalid(): boolean;
|
|
270
270
|
showClear: i0.Signal<boolean>;
|
|
271
271
|
get showCalendar(): boolean;
|
|
@@ -277,11 +277,6 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
277
277
|
constructor();
|
|
278
278
|
private updateFocusState;
|
|
279
279
|
private handleFormFieldControl;
|
|
280
|
-
private checkPrefixAndSuffix;
|
|
281
|
-
private initializePrefixAndSuffix;
|
|
282
|
-
private checkInfoError;
|
|
283
|
-
private initializeInfoError;
|
|
284
|
-
private initializeComponents;
|
|
285
280
|
private initializeControl;
|
|
286
281
|
private openDatePicker;
|
|
287
282
|
ngAfterContentInit(): void;
|
|
@@ -293,7 +288,7 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
293
288
|
onOpenCalendar(event: MouseEvent): void;
|
|
294
289
|
onCancelDisplayOnly(event: MouseEvent): void;
|
|
295
290
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormFieldComponent, never>;
|
|
296
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFormFieldComponent, "monkey-form-field", ["monkeyFormField"], { "id": { "alias": "id"; "required": false; }; "hideAction": { "alias": "hideAction"; "required": false; }; "enableClear": { "alias": "enableClear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "noFooterSpace": { "alias": "noFooterSpace"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; "isSignal": true; }; }, { "onDisplayOnlyChange": "onDisplayOnlyChange"; }, ["_formFieldControl"], ["monkey-display", "monkey-helper", "monkey-prefix", "*", "monkey-suffix", "monkey-error", "monkey-info", "monkey-label"], false, never>;
|
|
291
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFormFieldComponent, "monkey-form-field", ["monkeyFormField"], { "id": { "alias": "id"; "required": false; }; "hideAction": { "alias": "hideAction"; "required": false; }; "enableClear": { "alias": "enableClear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "noFooterSpace": { "alias": "noFooterSpace"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; "isSignal": true; }; }, { "onDisplayOnlyChange": "onDisplayOnlyChange"; }, ["_formFieldControl", "_displayChild", "_labelChildren", "_helperChildren", "_prefixChildren", "_suffixChildren", "_infoChildren", "_errorChildren"], ["monkey-display", "monkey-helper", "monkey-prefix", "*", "monkey-suffix", "monkey-error", "monkey-info", "monkey-label"], false, never>;
|
|
297
292
|
static ngAcceptInputType_hideAction: unknown;
|
|
298
293
|
static ngAcceptInputType_enableClear: unknown;
|
|
299
294
|
static ngAcceptInputType_noFooterSpace: unknown;
|
|
@@ -2238,7 +2233,7 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2238
2233
|
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2239
2234
|
readonly rowHeight: i0.InputSignal<number>;
|
|
2240
2235
|
readonly maxVisibleRows: i0.InputSignal<number | "none">;
|
|
2241
|
-
readonly virtualScroll: i0.InputSignal<"
|
|
2236
|
+
readonly virtualScroll: i0.InputSignal<"off" | "auto">;
|
|
2242
2237
|
readonly columnOrder: i0.ModelSignal<readonly string[]>;
|
|
2243
2238
|
readonly columnState: i0.InputSignal<readonly MonkeyTableColumnState[]>;
|
|
2244
2239
|
readonly striped: i0.InputSignalWithTransform<boolean, unknown>;
|
|
Binary file
|