@acontplus/ng-components 1.0.12 → 1.0.13
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 +17 -0
- package/fesm2022/acontplus-ng-components.mjs +25 -23
- package/fesm2022/acontplus-ng-components.mjs.map +1 -1
- package/index.d.ts +4 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ declare class MatDynamicCardComponent {
|
|
|
91
91
|
* Alignment of the action buttons.
|
|
92
92
|
* @default 'end'
|
|
93
93
|
*/
|
|
94
|
-
buttonsPosition: _angular_core.InputSignal<"
|
|
94
|
+
buttonsPosition: _angular_core.InputSignal<"end" | "start">;
|
|
95
95
|
/**
|
|
96
96
|
* Event emitted when the primary button is clicked.
|
|
97
97
|
*/
|
|
@@ -742,7 +742,7 @@ declare class ColumnDefinition<T = any> extends FieldDefinition<T> {
|
|
|
742
742
|
constructor(options?: Partial<ColumnDefinition<T>>);
|
|
743
743
|
}
|
|
744
744
|
|
|
745
|
-
interface OptionSearchConfig
|
|
745
|
+
interface OptionSearchConfig {
|
|
746
746
|
displayedColumns?: string[];
|
|
747
747
|
displayColumnDefs?: ColumnDefinition[];
|
|
748
748
|
close?: boolean;
|
|
@@ -848,8 +848,7 @@ declare class MatDynamicTableComponent<T extends TableRow> implements AfterConte
|
|
|
848
848
|
declare class ThemeToggleComponent {
|
|
849
849
|
private themeService;
|
|
850
850
|
darkMode$: Observable<boolean>;
|
|
851
|
-
|
|
852
|
-
constructor(...args: unknown[]);
|
|
851
|
+
constructor();
|
|
853
852
|
toggleDarkMode(): void;
|
|
854
853
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeToggleComponent, never>;
|
|
855
854
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThemeToggleComponent, "acp-theme-toggle", never, {}, {}, never, never, true, never>;
|
|
@@ -921,7 +920,7 @@ declare class ReusableAutocompleteComponent implements OnInit, OnDestroy {
|
|
|
921
920
|
goToPreviousPage(): void;
|
|
922
921
|
goToNextPage(): void;
|
|
923
922
|
goToLastPage(): void;
|
|
924
|
-
onCreateNew($event: MouseEvent): void;
|
|
923
|
+
onCreateNew(_$event: MouseEvent): void;
|
|
925
924
|
onAdvancedSearch(): void;
|
|
926
925
|
onShowAllResults(): void;
|
|
927
926
|
getItemDisplayText(item: AutocompleteWrapperItem): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acontplus/ng-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "Angular Material UI component library with dynamic tables, theming support, dialog wrappers, and comprehensive styling utilities",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "^20.2.5",
|