@acontplus/ng-components 1.0.9 → 1.0.11
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/acontplus-ng-components.mjs +167 -340
- package/fesm2022/acontplus-ng-components.mjs.map +1 -1
- package/index.d.ts +56 -77
- package/package.json +9 -9
- package/src/styles/index.scss +0 -8
package/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { Type, AfterViewInit, ViewContainerRef, ElementRef, OnChanges, OnDestroy,
|
|
2
|
+
import { Type, AfterViewInit, ViewContainerRef, ElementRef, OnChanges, OnDestroy, SimpleChanges, TemplateRef, AfterContentInit, OnInit, InjectionToken, PipeTransform } from '@angular/core';
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { ScrollStrategy } from '@angular/cdk/overlay';
|
|
5
5
|
import { MatChipInputEvent, MatChipEditedEvent } from '@angular/material/chips';
|
|
6
6
|
import { LiveAnnouncer } from '@angular/cdk/a11y';
|
|
7
7
|
import { ThemePalette } from '@angular/material/core';
|
|
8
|
-
import {
|
|
8
|
+
import { Tabulator } from 'tabulator-tables';
|
|
9
9
|
import * as _angular_material_paginator from '@angular/material/paginator';
|
|
10
10
|
import { PageEvent } from '@angular/material/paginator';
|
|
11
11
|
import { MatTableDataSource, MatHeaderRowDef, MatRowDef, MatFooterRowDef, MatColumnDef, MatNoDataRow, MatTable } from '@angular/material/table';
|
|
@@ -13,7 +13,6 @@ import { SelectionModel } from '@angular/cdk/collections';
|
|
|
13
13
|
import * as rxjs from 'rxjs';
|
|
14
14
|
import { Observable } from 'rxjs';
|
|
15
15
|
import { ControlValueAccessor } from '@angular/forms';
|
|
16
|
-
import { HttpContext, HttpRequest, HttpInterceptorFn } from '@angular/common/http';
|
|
17
16
|
import { SafeHtml } from '@angular/platform-browser';
|
|
18
17
|
import { ComponentType } from '@angular/cdk/portal';
|
|
19
18
|
|
|
@@ -461,12 +460,12 @@ declare class DialogWrapperComponent implements AfterViewInit {
|
|
|
461
460
|
* A template reference that acts as an anchor for dynamic content.
|
|
462
461
|
* This is where the component specified in the config will be rendered.
|
|
463
462
|
*/
|
|
464
|
-
contentHost: ViewContainerRef
|
|
463
|
+
readonly contentHost: _angular_core.Signal<ViewContainerRef>;
|
|
465
464
|
/**
|
|
466
465
|
* A reference to the header element for the z-index focus logic.
|
|
467
466
|
* Used to bring the dialog to the front when clicked.
|
|
468
467
|
*/
|
|
469
|
-
header
|
|
468
|
+
readonly header: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
470
469
|
/**
|
|
471
470
|
* Static counter to track the highest z-index for multiple dialogs.
|
|
472
471
|
* Ensures that the most recently clicked dialog appears on top.
|
|
@@ -641,25 +640,25 @@ interface TabulatorEventHandlers {
|
|
|
641
640
|
}
|
|
642
641
|
|
|
643
642
|
declare class CustomTabulatorComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
644
|
-
data: any[]
|
|
645
|
-
columns: any[]
|
|
646
|
-
height: string | number | false
|
|
647
|
-
layout:
|
|
648
|
-
dataTree: boolean
|
|
649
|
-
dataTreeChildField: string
|
|
650
|
-
dataTreeStartExpanded: boolean
|
|
651
|
-
dataTreeSelectPropagate: boolean
|
|
652
|
-
selectable: boolean
|
|
653
|
-
reactiveData: boolean
|
|
654
|
-
placeholder: string
|
|
655
|
-
autoResize: boolean
|
|
656
|
-
theme: TabulatorTheme
|
|
657
|
-
customClass: string
|
|
658
|
-
options: Record<string, any
|
|
659
|
-
cellEdited:
|
|
660
|
-
rowClick:
|
|
661
|
-
rowSelected:
|
|
662
|
-
tableReady:
|
|
643
|
+
readonly data: _angular_core.InputSignal<any[]>;
|
|
644
|
+
readonly columns: _angular_core.InputSignal<any[]>;
|
|
645
|
+
readonly height: _angular_core.InputSignal<string | number | false>;
|
|
646
|
+
readonly layout: _angular_core.InputSignal<"fitData" | "fitColumns" | "fitDataFill" | "fitDataStretch">;
|
|
647
|
+
readonly dataTree: _angular_core.InputSignal<boolean>;
|
|
648
|
+
readonly dataTreeChildField: _angular_core.InputSignal<string>;
|
|
649
|
+
readonly dataTreeStartExpanded: _angular_core.InputSignal<boolean>;
|
|
650
|
+
readonly dataTreeSelectPropagate: _angular_core.InputSignal<boolean>;
|
|
651
|
+
readonly selectable: _angular_core.InputSignal<boolean>;
|
|
652
|
+
readonly reactiveData: _angular_core.InputSignal<boolean>;
|
|
653
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
654
|
+
readonly autoResize: _angular_core.InputSignal<boolean>;
|
|
655
|
+
readonly theme: _angular_core.InputSignal<TabulatorTheme>;
|
|
656
|
+
readonly customClass: _angular_core.InputSignal<string>;
|
|
657
|
+
readonly options: _angular_core.InputSignal<Record<string, any>>;
|
|
658
|
+
readonly cellEdited: _angular_core.OutputEmitterRef<any>;
|
|
659
|
+
readonly rowClick: _angular_core.OutputEmitterRef<any>;
|
|
660
|
+
readonly rowSelected: _angular_core.OutputEmitterRef<any>;
|
|
661
|
+
readonly tableReady: _angular_core.OutputEmitterRef<Tabulator>;
|
|
663
662
|
private _tabulator;
|
|
664
663
|
containerId: string;
|
|
665
664
|
ngAfterViewInit(): void;
|
|
@@ -672,10 +671,10 @@ declare class CustomTabulatorComponent implements OnChanges, AfterViewInit, OnDe
|
|
|
672
671
|
private updateData;
|
|
673
672
|
private updateColumns;
|
|
674
673
|
private destroyTable;
|
|
675
|
-
getInstance():
|
|
674
|
+
getInstance(): Tabulator;
|
|
676
675
|
redraw(): void;
|
|
677
676
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CustomTabulatorComponent, never>;
|
|
678
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CustomTabulatorComponent, "acp-tabulator", never, { "data": { "alias": "data"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "height": { "alias": "height"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "dataTree": { "alias": "dataTree"; "required": false; }; "dataTreeChildField": { "alias": "dataTreeChildField"; "required": false; }; "dataTreeStartExpanded": { "alias": "dataTreeStartExpanded"; "required": false; }; "dataTreeSelectPropagate": { "alias": "dataTreeSelectPropagate"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "reactiveData": { "alias": "reactiveData"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "cellEdited": "cellEdited"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "tableReady": "tableReady"; }, never, never, true, never>;
|
|
677
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CustomTabulatorComponent, "acp-tabulator", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "dataTree": { "alias": "dataTree"; "required": false; "isSignal": true; }; "dataTreeChildField": { "alias": "dataTreeChildField"; "required": false; "isSignal": true; }; "dataTreeStartExpanded": { "alias": "dataTreeStartExpanded"; "required": false; "isSignal": true; }; "dataTreeSelectPropagate": { "alias": "dataTreeSelectPropagate"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "reactiveData": { "alias": "reactiveData"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "autoResize": { "alias": "autoResize"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "customClass": { "alias": "customClass"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, { "cellEdited": "cellEdited"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "tableReady": "tableReady"; }, never, never, true, never>;
|
|
679
678
|
}
|
|
680
679
|
|
|
681
680
|
interface DateRangeConfig<T = any> {
|
|
@@ -783,37 +782,37 @@ declare class MatDynamicTableComponent<T extends TableRow> implements AfterConte
|
|
|
783
782
|
private componentRefs;
|
|
784
783
|
private embeddedViews;
|
|
785
784
|
private cdr;
|
|
786
|
-
showExpand: boolean
|
|
787
|
-
showFooter: boolean
|
|
788
|
-
locale: string
|
|
789
|
-
highlightRowIndex: number
|
|
785
|
+
readonly showExpand: _angular_core.InputSignal<boolean>;
|
|
786
|
+
readonly showFooter: _angular_core.InputSignal<boolean>;
|
|
787
|
+
readonly locale: _angular_core.InputSignal<string>;
|
|
788
|
+
readonly highlightRowIndex: _angular_core.InputSignal<number>;
|
|
790
789
|
visibleColumns: string[];
|
|
791
790
|
columnDefinitions: ColumnDefinition<T>[];
|
|
792
|
-
showSelectBox: boolean
|
|
793
|
-
tableData: T[]
|
|
794
|
-
rowTemplate: TemplateRef<TableContext<T>> | null
|
|
791
|
+
readonly showSelectBox: _angular_core.InputSignal<boolean>;
|
|
792
|
+
readonly tableData: _angular_core.InputSignal<T[]>;
|
|
793
|
+
readonly rowTemplate: _angular_core.InputSignal<TemplateRef<TableContext<T>> | null>;
|
|
795
794
|
expandedDetail: TemplateRef<TableContext<T>> | null;
|
|
796
|
-
enablePagination: boolean
|
|
795
|
+
readonly enablePagination: _angular_core.InputSignal<boolean>;
|
|
797
796
|
paginationConfig: Pagination | null;
|
|
798
|
-
isLoadingData: boolean
|
|
799
|
-
rowSelected:
|
|
800
|
-
copyRow:
|
|
801
|
-
showExpanded:
|
|
802
|
-
hideExpanded:
|
|
803
|
-
pageEvent:
|
|
797
|
+
readonly isLoadingData: _angular_core.InputSignal<boolean>;
|
|
798
|
+
readonly rowSelected: _angular_core.OutputEmitterRef<T[]>;
|
|
799
|
+
readonly copyRow: _angular_core.OutputEmitterRef<T>;
|
|
800
|
+
readonly showExpanded: _angular_core.OutputEmitterRef<T>;
|
|
801
|
+
readonly hideExpanded: _angular_core.OutputEmitterRef<T>;
|
|
802
|
+
readonly pageEvent: _angular_core.OutputEmitterRef<PageEvent>;
|
|
804
803
|
isNormalRow: (_: number, row: T) => boolean;
|
|
805
804
|
isExpandedRow: (_: number, row: T) => boolean;
|
|
806
805
|
dataSource: MatTableDataSource<T, _angular_material_paginator.MatPaginator>;
|
|
807
806
|
selection: SelectionModel<T>;
|
|
808
807
|
expandedElement: T | null;
|
|
809
808
|
columnsToDisplayWithExpand: string[];
|
|
810
|
-
headerRowDefs:
|
|
811
|
-
rowDefs:
|
|
812
|
-
footerRowDefs:
|
|
813
|
-
columnDefs:
|
|
814
|
-
noDataRow: MatNoDataRow
|
|
815
|
-
table: MatTable<
|
|
816
|
-
rows:
|
|
809
|
+
readonly headerRowDefs: _angular_core.Signal<readonly MatHeaderRowDef[]>;
|
|
810
|
+
readonly rowDefs: _angular_core.Signal<readonly MatRowDef<unknown>[]>;
|
|
811
|
+
readonly footerRowDefs: _angular_core.Signal<readonly MatFooterRowDef[]>;
|
|
812
|
+
readonly columnDefs: _angular_core.Signal<readonly MatColumnDef[]>;
|
|
813
|
+
readonly noDataRow: _angular_core.Signal<MatNoDataRow>;
|
|
814
|
+
readonly table: _angular_core.Signal<MatTable<any>>;
|
|
815
|
+
readonly rows: _angular_core.Signal<readonly ViewContainerRef[]>;
|
|
817
816
|
ngOnInit(): void;
|
|
818
817
|
ngOnChanges(changes: SimpleChanges): void;
|
|
819
818
|
ngAfterContentInit(): void;
|
|
@@ -832,7 +831,7 @@ declare class MatDynamicTableComponent<T extends TableRow> implements AfterConte
|
|
|
832
831
|
getRowColor(element: T): Record<string, string>;
|
|
833
832
|
handlePageEvent(e: PageEvent): void;
|
|
834
833
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MatDynamicTableComponent<any>, never>;
|
|
835
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MatDynamicTableComponent<any>, "acp-mat-dynamic-table", never, { "showExpand": { "alias": "showExpand"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "highlightRowIndex": { "alias": "highlightRowIndex"; "required": false; }; "visibleColumns": { "alias": "visibleColumns"; "required": false; }; "columnDefinitions": { "alias": "columnDefinitions"; "required": false; }; "showSelectBox": { "alias": "showSelectBox"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "rowTemplate": { "alias": "rowTemplate"; "required": false; }; "expandedDetail": { "alias": "expandedDetail"; "required": false; }; "enablePagination": { "alias": "enablePagination"; "required": false; }; "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "isLoadingData": { "alias": "isLoadingData"; "required": false; }; }, { "rowSelected": "rowSelected"; "copyRow": "copyRow"; "showExpanded": "showExpanded"; "hideExpanded": "hideExpanded"; "pageEvent": "pageEvent"; }, ["
|
|
834
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MatDynamicTableComponent<any>, "acp-mat-dynamic-table", never, { "showExpand": { "alias": "showExpand"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "highlightRowIndex": { "alias": "highlightRowIndex"; "required": false; "isSignal": true; }; "visibleColumns": { "alias": "visibleColumns"; "required": false; }; "columnDefinitions": { "alias": "columnDefinitions"; "required": false; }; "showSelectBox": { "alias": "showSelectBox"; "required": false; "isSignal": true; }; "tableData": { "alias": "tableData"; "required": false; "isSignal": true; }; "rowTemplate": { "alias": "rowTemplate"; "required": false; "isSignal": true; }; "expandedDetail": { "alias": "expandedDetail"; "required": false; }; "enablePagination": { "alias": "enablePagination"; "required": false; "isSignal": true; }; "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "isLoadingData": { "alias": "isLoadingData"; "required": false; "isSignal": true; }; }, { "rowSelected": "rowSelected"; "copyRow": "copyRow"; "showExpanded": "showExpanded"; "hideExpanded": "hideExpanded"; "pageEvent": "pageEvent"; }, ["headerRowDefs", "rowDefs", "footerRowDefs", "columnDefs", "noDataRow", "rows"], never, true, never>;
|
|
836
835
|
}
|
|
837
836
|
|
|
838
837
|
declare class ThemeToggleComponent {
|
|
@@ -846,11 +845,11 @@ declare class ThemeToggleComponent {
|
|
|
846
845
|
}
|
|
847
846
|
|
|
848
847
|
declare class ReusableAutocompleteComponent implements OnInit, OnDestroy {
|
|
849
|
-
dataSource: AutocompleteWrapperItem[]
|
|
848
|
+
readonly dataSource: _angular_core.InputSignal<AutocompleteWrapperItem[]>;
|
|
850
849
|
config: AutocompleteWrapperConfig;
|
|
851
|
-
itemTemplate
|
|
852
|
-
searchFunction
|
|
853
|
-
notFoundTemplate
|
|
850
|
+
readonly itemTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
851
|
+
readonly searchFunction: _angular_core.InputSignal<AutocompleteWrapperSearchFunction | undefined>;
|
|
852
|
+
readonly notFoundTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
854
853
|
overlayWidth: _angular_core.InputSignal<string>;
|
|
855
854
|
overlayMaxHeight: _angular_core.InputSignal<string>;
|
|
856
855
|
itemSelected: _angular_core.OutputEmitterRef<AutocompleteWrapperItem>;
|
|
@@ -865,9 +864,9 @@ declare class ReusableAutocompleteComponent implements OnInit, OnDestroy {
|
|
|
865
864
|
advancedSearchClicked: _angular_core.OutputEmitterRef<void>;
|
|
866
865
|
allResultsClicked: _angular_core.OutputEmitterRef<string>;
|
|
867
866
|
createClicked: _angular_core.OutputEmitterRef<string>;
|
|
868
|
-
searchInput: ElementRef<HTMLInputElement
|
|
869
|
-
historyListElement
|
|
870
|
-
resultsListElement
|
|
867
|
+
readonly searchInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
868
|
+
readonly historyListElement: _angular_core.Signal<ElementRef<HTMLUListElement> | undefined>;
|
|
869
|
+
readonly resultsListElement: _angular_core.Signal<ElementRef<HTMLUListElement> | undefined>;
|
|
871
870
|
query: string;
|
|
872
871
|
isLoading: _angular_core.WritableSignal<boolean>;
|
|
873
872
|
overlayOpen: _angular_core.WritableSignal<boolean>;
|
|
@@ -921,7 +920,7 @@ declare class ReusableAutocompleteComponent implements OnInit, OnDestroy {
|
|
|
921
920
|
setQuery(query: string): void;
|
|
922
921
|
focus(): void;
|
|
923
922
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReusableAutocompleteComponent, never>;
|
|
924
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReusableAutocompleteComponent, "acp-autocomplete-wrapper", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "config": { "alias": "config"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "searchFunction": { "alias": "searchFunction"; "required": false; }; "notFoundTemplate": { "alias": "notFoundTemplate"; "required": false; }; "overlayWidth": { "alias": "overlayWidth"; "required": false; "isSignal": true; }; "overlayMaxHeight": { "alias": "overlayMaxHeight"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; "searchChanged": "searchChanged"; "searchRequested": "searchRequested"; "pageChanged": "pageChanged"; "filterChanged": "filterChanged"; "advancedSearchClicked": "advancedSearchClicked"; "allResultsClicked": "allResultsClicked"; "createClicked": "createClicked"; }, never, never, true, never>;
|
|
923
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReusableAutocompleteComponent, "acp-autocomplete-wrapper", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; "searchFunction": { "alias": "searchFunction"; "required": false; "isSignal": true; }; "notFoundTemplate": { "alias": "notFoundTemplate"; "required": false; "isSignal": true; }; "overlayWidth": { "alias": "overlayWidth"; "required": false; "isSignal": true; }; "overlayMaxHeight": { "alias": "overlayMaxHeight"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; "searchChanged": "searchChanged"; "searchRequested": "searchRequested"; "pageChanged": "pageChanged"; "filterChanged": "filterChanged"; "advancedSearchClicked": "advancedSearchClicked"; "allResultsClicked": "allResultsClicked"; "createClicked": "createClicked"; }, never, never, true, never>;
|
|
925
924
|
}
|
|
926
925
|
|
|
927
926
|
declare class ToUpperCaseDirective implements ControlValueAccessor {
|
|
@@ -939,26 +938,6 @@ declare class ToUpperCaseDirective implements ControlValueAccessor {
|
|
|
939
938
|
|
|
940
939
|
declare const DYNAMIC_INPUT: InjectionToken<unknown>;
|
|
941
940
|
|
|
942
|
-
/**
|
|
943
|
-
* Helper function to disable spinner for specific requests
|
|
944
|
-
* @returns HttpContext with spinner disabled
|
|
945
|
-
*/
|
|
946
|
-
declare function withoutSpinner(): HttpContext;
|
|
947
|
-
/**
|
|
948
|
-
* Service to track active HTTP requests
|
|
949
|
-
*/
|
|
950
|
-
declare class ActiveRequestsTracker {
|
|
951
|
-
get count(): number;
|
|
952
|
-
add(request: HttpRequest<any>): void;
|
|
953
|
-
remove(request: HttpRequest<any>): void;
|
|
954
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ActiveRequestsTracker, never>;
|
|
955
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ActiveRequestsTracker>;
|
|
956
|
-
}
|
|
957
|
-
/**
|
|
958
|
-
* Interceptor that shows/hides a loading spinner based on active HTTP requests
|
|
959
|
-
*/
|
|
960
|
-
declare const spinnerInterceptor: HttpInterceptorFn;
|
|
961
|
-
|
|
962
941
|
declare class GetTotalPipe implements PipeTransform {
|
|
963
942
|
transform(colName: string, dataSource: any[]): any;
|
|
964
943
|
/**
|
|
@@ -989,5 +968,5 @@ declare class StatusDisplayPipe implements PipeTransform {
|
|
|
989
968
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<StatusDisplayPipe, "statusDisplay", true>;
|
|
990
969
|
}
|
|
991
970
|
|
|
992
|
-
export { AUTOCOMPLETE_WRAPPER_CUSTOMER_CONFIG, AUTOCOMPLETE_WRAPPER_DEFAULT_CONFIG, AUTOCOMPLETE_WRAPPER_LOCAL_CONFIG, AUTOCOMPLETE_WRAPPER_PAGINATED_CONFIG, AUTOCOMPLETE_WRAPPER_PRODUCT_CONFIG, AUTOCOMPLETE_WRAPPER_SIMPLE_CONFIG,
|
|
971
|
+
export { AUTOCOMPLETE_WRAPPER_CUSTOMER_CONFIG, AUTOCOMPLETE_WRAPPER_DEFAULT_CONFIG, AUTOCOMPLETE_WRAPPER_LOCAL_CONFIG, AUTOCOMPLETE_WRAPPER_PAGINATED_CONFIG, AUTOCOMPLETE_WRAPPER_PRODUCT_CONFIG, AUTOCOMPLETE_WRAPPER_SIMPLE_CONFIG, AdvancedDialogService, AutocompleteWrapperService, ColumnDefinition, CustomTabulatorComponent, DYNAMIC_INPUT, DialogWrapperComponent, FieldDefinition, GetTotalPipe, IconUserComponent, MatDynamicCardComponent, MatDynamicTableComponent, MatInputChipComponent, MatThemeButtonComponent, OverlayService, Pagination, ReusableAutocompleteComponent, SpinnerComponent, StatusDisplayPipe, SvgIconComponent, TableCellIndex, ThemeService, ThemeToggleComponent, ToUpperCaseDirective, createAutocompleteWrapperConfig };
|
|
993
972
|
export type { AutocompleteWrapperActions, AutocompleteWrapperConfig, AutocompleteWrapperEventHandler, AutocompleteWrapperEvents, AutocompleteWrapperFilters, AutocompleteWrapperItem, AutocompleteWrapperItemProperty, AutocompleteWrapperPaginationInfo, AutocompleteWrapperSearchField, AutocompleteWrapperSearchFunction, AutocompleteWrapperSearchMode, AutocompleteWrapperSearchResult, AutocompleteWrapperState, AutocompleteWrapperStockOption, ButtonType, ButtonVariant, ColumnType, ControlType, DateRangeConfig, DialogSize, DialogWrapperConfig, FieldType, MatCustomDialogConfig, MaterialButtonStyle, OptionSearchConfig, ReusableAutocompleteWrapperComponent, TableContext, TableRow, TabulatorColumn, TabulatorConfig, TabulatorEventHandlers, TabulatorTheme };
|
package/package.json
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acontplus/ng-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Angular Material UI component library with dynamic tables, theming support, dialog wrappers, and comprehensive styling utilities",
|
|
5
|
-
"dependencies": {
|
|
6
|
-
"tabulator-tables": "^6.3.1",
|
|
7
|
-
"tslib": "^2.3.0"
|
|
8
|
-
},
|
|
9
5
|
"peerDependencies": {
|
|
10
|
-
"@angular/cdk": "^20.2.
|
|
11
|
-
"@angular/common": "^20.3.
|
|
12
|
-
"@angular/core": "^20.3.
|
|
13
|
-
"@angular/material": "^20.2.
|
|
6
|
+
"@angular/cdk": "^20.2.5",
|
|
7
|
+
"@angular/common": "^20.3.2",
|
|
8
|
+
"@angular/core": "^20.3.2",
|
|
9
|
+
"@angular/material": "^20.2.5",
|
|
10
|
+
"tabulator-tables": "^6.3.1"
|
|
14
11
|
},
|
|
15
12
|
"sideEffects": true,
|
|
16
13
|
"main": "fesm2022/acontplus-ng-components.mjs",
|
|
@@ -82,5 +79,8 @@
|
|
|
82
79
|
"types": "./index.d.ts",
|
|
83
80
|
"default": "./fesm2022/acontplus-ng-components.mjs"
|
|
84
81
|
}
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"tslib": "^2.3.0"
|
|
85
85
|
}
|
|
86
86
|
}
|
package/src/styles/index.scss
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
// Import Tabulator table styles
|
|
2
|
-
@import 'tabulator-tables/dist/css/tabulator.min.css';
|
|
3
|
-
@import 'tabulator-tables/dist/css/tabulator_modern.min.css';
|
|
4
|
-
@import 'tabulator-tables/dist/css/tabulator_midnight.min.css';
|
|
5
|
-
@import 'tabulator-tables/dist/css/tabulator_simple.min.css';
|
|
6
|
-
@import 'tabulator-tables/dist/css/tabulator_site.min.css';
|
|
7
|
-
@import 'tabulator-tables/dist/css/tabulator_site_dark.min.css';
|
|
8
|
-
|
|
9
1
|
// Import variables and mixins first
|
|
10
2
|
@forward 'variables';
|
|
11
3
|
@forward 'mixins';
|