@one-paragon/angular-utilities 2.0.14 → 2.0.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.
- package/fesm2022/one-paragon-angular-utilities.mjs +587 -517
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
- package/package.json +1 -1
- package/table-builder/classes/table-builder-general-settings.d.ts +25 -11
- package/table-builder/classes/table-builder.d.ts +14 -9
- package/table-builder/classes/table-store.d.ts +7 -5
- package/table-builder/components/column-builder/column-builder.component.d.ts +1 -1
- package/table-builder/components/generic-table/generic-table.component.d.ts +4 -1
- package/table-builder/components/initialization-component/initialization-component.d.ts +9 -9
- package/table-builder/components/link-column.component.d.ts +4 -4
- package/table-builder/components/reset-menu/reset-menu.component.d.ts +1 -1
- package/table-builder/components/scroll-strategy.d.ts +25 -10
- package/table-builder/components/table-container/table-container.d.ts +41 -22
- package/table-builder/components/table-container/table-container.helpers/data-state.helpers.d.ts +3 -2
- package/table-builder/components/table-container/table-container.helpers/groupBy.helpers.d.ts +10 -3
- package/table-builder/components/table-container/virtual-scroll-container.d.ts +5 -8
- package/table-builder/directives/table-wrapper.directive.d.ts +1 -1
- package/table-builder/directives/tb-filter.directive.d.ts +4 -1
- package/table-builder/functions/sort-data-function.d.ts +0 -1
- package/table-builder/interfaces/report-def.d.ts +3 -3
- package/table-builder/services/table-template-service.d.ts +5 -5
- package/table-builder/services/transform-creator.d.ts +4 -12
- package/table-builder/table-builder.module.d.ts +6 -13
- package/utilities/directives/styler.d.ts +4 -4
- package/utilities/pipes/phone.pipe.d.ts +1 -0
|
@@ -1,21 +1,14 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import { TableBuilderConfig } from './classes/TableBuilderConfig';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "
|
|
5
|
-
import * as i2 from "
|
|
6
|
-
import * as i3 from "
|
|
7
|
-
import * as i4 from "
|
|
8
|
-
import * as i5 from "
|
|
9
|
-
import * as i6 from "./components/generic-table/generic-table.component";
|
|
10
|
-
import * as i7 from "./directives/custom-cell-directive";
|
|
11
|
-
import * as i8 from "./components/filter/filter.component";
|
|
12
|
-
import * as i9 from "./directives/tb-filter.directive";
|
|
13
|
-
import * as i10 from "./directives/table-wrapper.directive";
|
|
14
|
-
import * as i11 from "./directives/resize-column.directive";
|
|
15
|
-
import * as i12 from "../utilities/module";
|
|
4
|
+
import * as i1 from "./components/table-container/table-container";
|
|
5
|
+
import * as i2 from "./directives/custom-cell-directive";
|
|
6
|
+
import * as i3 from "./directives/tb-filter.directive";
|
|
7
|
+
import * as i4 from "./directives/table-wrapper.directive";
|
|
8
|
+
import * as i5 from "../utilities/module";
|
|
16
9
|
export declare class TableBuilderModule {
|
|
17
10
|
static forRoot(config: TableBuilderConfig): ModuleWithProviders<TableBuilderModule>;
|
|
18
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilderModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableBuilderModule, never, [typeof i1.
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableBuilderModule, never, [typeof i1.TableContainerComponent, typeof i2.CustomCellDirective, typeof i3.TableFilterDirective, typeof i3.TableFilterStringContainsDirective, typeof i4.TableWrapperDirective], [typeof i1.TableContainerComponent, typeof i2.CustomCellDirective, typeof i3.TableFilterStringContainsDirective, typeof i4.TableWrapperDirective, typeof i5.UtilitiesModule]>;
|
|
20
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableBuilderModule>;
|
|
21
14
|
}
|
|
@@ -6,11 +6,11 @@ export declare class StylerDirective {
|
|
|
6
6
|
private renderer;
|
|
7
7
|
$stylesApplied: import("@angular/core").WritableSignal<Dictionary<string>>;
|
|
8
8
|
$element: import("@angular/core").InputSignal<any>;
|
|
9
|
-
$styler: import("@angular/core").InputSignal<StylerStyle
|
|
9
|
+
$styler: import("@angular/core").InputSignal<StylerStyle<any>>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<StylerDirective, never>;
|
|
11
11
|
static ɵdir: i0.ɵɵDirectiveDeclaration<StylerDirective, "[styler]", never, { "$element": { "alias": "element"; "required": true; "isSignal": true; }; "$styler": { "alias": "styler"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
12
|
}
|
|
13
|
-
export type StylerStyle = Dictionary<string | {
|
|
14
|
-
condition?: ((t:
|
|
15
|
-
value: ((t:
|
|
13
|
+
export type StylerStyle<T = any> = Dictionary<string | {
|
|
14
|
+
condition?: ((t: T) => boolean) | true;
|
|
15
|
+
value: ((t: T) => string) | string;
|
|
16
16
|
}>;
|