@pongrass/utils 1.0.2-v20 → 1.0.3-v20
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 +30 -0
- package/fesm2022/pongrass-utils.mjs +59 -1
- package/fesm2022/pongrass-utils.mjs.map +1 -1
- package/index.d.ts +18 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -705,6 +705,23 @@ declare class TableGridModule {
|
|
|
705
705
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableGridModule>;
|
|
706
706
|
}
|
|
707
707
|
|
|
708
|
+
declare class BackgroundImageDirective implements OnInit {
|
|
709
|
+
private el;
|
|
710
|
+
/**
|
|
711
|
+
* Flag to enable random background selection
|
|
712
|
+
* Defaults to false
|
|
713
|
+
*/
|
|
714
|
+
random: boolean;
|
|
715
|
+
/**
|
|
716
|
+
* Path to the background image (string) or images (string[])
|
|
717
|
+
*/
|
|
718
|
+
backgroundImage: string | string[];
|
|
719
|
+
ngOnInit(): void;
|
|
720
|
+
private setBackgroundImage;
|
|
721
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundImageDirective, never>;
|
|
722
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundImageDirective, "[appBackgroundImage]", never, { "random": { "alias": "random"; "required": false; }; "backgroundImage": { "alias": "backgroundImage"; "required": false; }; }, {}, never, never, true, never>;
|
|
723
|
+
}
|
|
724
|
+
|
|
708
725
|
interface IExcelHeaders {
|
|
709
726
|
heading: string;
|
|
710
727
|
alignment?: 'center' | 'left' | 'right';
|
|
@@ -769,5 +786,5 @@ declare function regionalDateFormat(date: Date): string;
|
|
|
769
786
|
declare function convertIsoToFormat(date: string | Date, dateFormat?: string): string;
|
|
770
787
|
declare function convertDateShort(dateString: string): string;
|
|
771
788
|
|
|
772
|
-
export { CheckboxCellRendererComponent, CircularFocusDirective, ColorCellRendererComponent, CommentsButtonCellRendererComponent, ConfigurationServiceLib, CustomSelectFilterComponent, DecimalInputDirective, EditionListGroupedComponent, ExcelType, ExportToExcelNames, FormFieldType, GenericFilterModelComponent, ITableGridConfiguration, ITableGridPagination, IndustryUpdateListboxCellRendererComponent, MultiFormComponent, MultiFormModule, MultiSelectStylerDirective, PageStatusCellRendererComponent, ShowTooltipIfTruncatedDirective, StatusSelectCellRendererComponent, TableGridComponent, TableGridModule, UtilsService, convertDateShort, convertIsoToFormat, convertToISOnString, regionalDateFormat };
|
|
789
|
+
export { BackgroundImageDirective, CheckboxCellRendererComponent, CircularFocusDirective, ColorCellRendererComponent, CommentsButtonCellRendererComponent, ConfigurationServiceLib, CustomSelectFilterComponent, DecimalInputDirective, EditionListGroupedComponent, ExcelType, ExportToExcelNames, FormFieldType, GenericFilterModelComponent, ITableGridConfiguration, ITableGridPagination, IndustryUpdateListboxCellRendererComponent, MultiFormComponent, MultiFormModule, MultiSelectStylerDirective, PageStatusCellRendererComponent, ShowTooltipIfTruncatedDirective, StatusSelectCellRendererComponent, TableGridComponent, TableGridModule, UtilsService, convertDateShort, convertIsoToFormat, convertToISOnString, regionalDateFormat };
|
|
773
790
|
export type { IAgPublicEventType, ICellValueChangedEvent, IColDef, IColumnStateEvent, IEmmitedResponse, IExcelHeaders, IExportCellConfig, IFieldConfig, IFilterChangeEvent, IFormConfig, IFormStyles, IFormSubmissionEmit, IFormValidations, IGridApi, IGridReadyEvent, IPaginationChangedEvent, IPrintHeaders, IRowSelectionOptions, ITableGridState, MaintAction, PongrassICellRendererAngularComp, PongrassICellRendererParams };
|