wacom 20.0.21 → 20.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 +2345 -2345
- package/fesm2022/wacom.mjs +131 -125
- package/fesm2022/wacom.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, OnInit,
|
|
2
|
+
import { InjectionToken, OnInit, WritableSignal, Signal, EventEmitter, ElementRef, PipeTransform, ComponentFactoryResolver, ApplicationRef, Injector, ComponentRef, ModuleWithProviders } from '@angular/core';
|
|
3
3
|
import { Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
4
4
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
5
5
|
import { Meta, Title, DomSanitizer } from '@angular/platform-browser';
|
|
@@ -310,7 +310,7 @@ declare abstract class CrudComponent<Service extends CrudServiceInterface<Docume
|
|
|
310
310
|
/** Service responsible for data fetching, creating, updating, deleting */
|
|
311
311
|
protected service: Service;
|
|
312
312
|
/** The array of documents currently loaded and shown */
|
|
313
|
-
protected documents: Document[]
|
|
313
|
+
protected documents: WritableSignal<Signal<Document>[]>;
|
|
314
314
|
/** The reactive form instance generated from the provided config */
|
|
315
315
|
protected form: any;
|
|
316
316
|
/** Current pagination page */
|
|
@@ -367,6 +367,7 @@ declare abstract class CrudComponent<Service extends CrudServiceInterface<Docume
|
|
|
367
367
|
*/
|
|
368
368
|
protected bulkManagement(create?: boolean): () => void;
|
|
369
369
|
protected configType: 'server' | 'local';
|
|
370
|
+
protected perPage: number;
|
|
370
371
|
/**
|
|
371
372
|
* Configuration object used by the UI for rendering table and handling actions.
|
|
372
373
|
*/
|