@elderbyte/ngx-starter 19.14.0 → 19.14.1

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.
@@ -16,7 +16,7 @@ export declare class ElderChipLabelDirective {
16
16
  readonly levelColor: import("@angular/core").InputSignal<ElderLevelColor>;
17
17
  readonly namedColor: import("@angular/core").InputSignal<ElderNamedColor>;
18
18
  readonly themeColor: import("@angular/core").InputSignal<ThemePalette>;
19
- readonly chipSize: import("@angular/core").InputSignal<"medium" | "small">;
19
+ readonly chipSize: import("@angular/core").InputSignal<"small" | "medium">;
20
20
  readonly cssClasses: import("@angular/core").Signal<string>;
21
21
  readonly sizeClass: import("@angular/core").Signal<string>;
22
22
  /***************************************************************************
@@ -115,10 +115,6 @@ export declare class ElderTableComponent<T = any> extends ElderDataViewBaseCompo
115
115
  * Properties *
116
116
  * *
117
117
  **************************************************************************/
118
- /**
119
- * @deprecated
120
- */
121
- set toolbarTemplate(template: TemplateRef<any>);
122
118
  set data(data: Array<T> | IDataSource<T> | IDataContext<T>);
123
119
  protected onDataContextSet(data: IDataContext<T>): void;
124
120
  set displayedColumns(displayedColumns: string[]);
@@ -143,5 +139,5 @@ export declare class ElderTableComponent<T = any> extends ElderDataViewBaseCompo
143
139
  private setupSelectionLifeCycle;
144
140
  private getRowForItem;
145
141
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, { optional: true; skipSelf: true; }, null]>;
146
- static ɵcmp: i0.ɵɵComponentDeclaration<ElderTableComponent<any>, "elder-table", ["elderTable"], { "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "idField": { "alias": "idField"; "required": false; }; "removingField": { "alias": "removingField"; "required": false; }; "hiddenField": { "alias": "hiddenField"; "required": false; }; "keepSelection": { "alias": "keepSelection"; "required": false; "isSignal": true; }; "showFooterRow": { "alias": "showFooterRow"; "required": false; "isSignal": true; }; "denseHorizontal": { "alias": "denseHorizontal"; "required": false; "isSignal": true; }; "hideHeaderRow": { "alias": "hideHeaderRow"; "required": false; "isSignal": true; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "data": { "alias": "data"; "required": false; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "selectionVisible": { "alias": "selectionVisible"; "required": false; }; }, {}, ["navigationBar", "columnDefs", "elderColumns", "rowDefs", "toolbarRowTemplateQuery"], never, true, never>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElderTableComponent<any>, "elder-table", ["elderTable"], { "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "idField": { "alias": "idField"; "required": false; }; "removingField": { "alias": "removingField"; "required": false; }; "hiddenField": { "alias": "hiddenField"; "required": false; }; "keepSelection": { "alias": "keepSelection"; "required": false; "isSignal": true; }; "showFooterRow": { "alias": "showFooterRow"; "required": false; "isSignal": true; }; "denseHorizontal": { "alias": "denseHorizontal"; "required": false; "isSignal": true; }; "hideHeaderRow": { "alias": "hideHeaderRow"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "selectionVisible": { "alias": "selectionVisible"; "required": false; }; }, {}, ["navigationBar", "columnDefs", "elderColumns", "rowDefs", "toolbarRowTemplateQuery"], never, true, never>;
147
143
  }
@@ -18,7 +18,6 @@ export * from './connectivity/public_api';
18
18
  export * from './infinitescroll/elder-infinite-scroll.module';
19
19
  export * from './scrollbar/elder-scrollbar.module';
20
20
  export * from './forms/public_api';
21
- export * from './http-support/public_api';
22
21
  export * from './dialogs/elder-dialog.module';
23
22
  export * from './toasts/elder-toast.module';
24
23
  export * from './select/public_api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "19.14.0",
3
+ "version": "19.14.1",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "@angular/common": "^18.0.0 || ^19.0.0",
@@ -1,48 +0,0 @@
1
- import { Page, Pageable } from '../../common/data/page';
2
- import { Filter } from '../../common/data/filters/filter';
3
- import { HttpClient, HttpParams } from '@angular/common/http';
4
- import { Observable } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- /**
7
- * @deprecated Please switch to the RestClient*s (RestClientList, RestClientPaged etc)
8
- */
9
- export declare class ElderHttpClient {
10
- private http;
11
- /***************************************************************************
12
- * *
13
- * Fields *
14
- * *
15
- **************************************************************************/
16
- private readonly logger;
17
- /***************************************************************************
18
- * *
19
- * Constructor *
20
- * *
21
- **************************************************************************/
22
- /**
23
- * Creates a new ElderHttpClient service
24
- */
25
- constructor(http: HttpClient);
26
- /***************************************************************************
27
- * *
28
- * Public API *
29
- * *
30
- **************************************************************************/
31
- /**
32
- * Gets the requested data page as Page<T>
33
- * @param url The resource url
34
- * @param pageable The page request
35
- * @param filters The filtersSnapshot request
36
- * @param params Additional parameters
37
- */
38
- getPaged<T>(url: string, pageable: Pageable, filters?: Filter[], params?: HttpParams): Observable<Page<T>>;
39
- /**
40
- * Gets the requested data, supports dynamic filter options
41
- * @param url The request url
42
- * @param filters The filter options (will be translated to query params)
43
- * @param params Additional parameters
44
- */
45
- getFiltered<T>(url: string, filters: Filter[], params?: HttpParams): Observable<T>;
46
- static ɵfac: i0.ɵɵFactoryDeclaration<ElderHttpClient, never>;
47
- static ɵprov: i0.ɵɵInjectableDeclaration<ElderHttpClient>;
48
- }
@@ -1 +0,0 @@
1
- export * from './elder-http-client.service';