@pongrass/utils 1.1.5-v20 → 1.1.6-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/fesm2022/pongrass-utils.mjs +24 -12
- package/fesm2022/pongrass-utils.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -276,7 +276,8 @@ declare enum FormFieldType {
|
|
|
276
276
|
FormHeader = "form-header",
|
|
277
277
|
Password = "password",
|
|
278
278
|
Url = "url",
|
|
279
|
-
Tel = "tel"
|
|
279
|
+
Tel = "tel",
|
|
280
|
+
Timepicker = "time"
|
|
280
281
|
}
|
|
281
282
|
interface IFieldConfig {
|
|
282
283
|
/** Form label */
|
|
@@ -647,7 +648,7 @@ declare class MultiSelectStylerDirective implements OnInit, OnDestroy {
|
|
|
647
648
|
|
|
648
649
|
declare class MultiFormModule {
|
|
649
650
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiFormModule, never>;
|
|
650
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiFormModule, [typeof MultiFormComponent, typeof DateTimePickerComponent], [typeof CircularFocusDirective, typeof i2.CommonModule, typeof i5.ReactiveFormsModule, typeof i6.MultiSelectModule, typeof i6.FormModule, typeof i6$1.IconModule, typeof i6.InputGroupComponent, typeof i6.DatePickerModule, typeof DecimalInputDirective, typeof ShowTooltipIfTruncatedDirective, typeof i6.ModalModule, typeof i6.TooltipModule, typeof i6.ButtonModule, typeof i10.BsDatepickerModule, typeof i6.AutocompleteModule, typeof i6.FormCheckInputDirective, typeof EditionListGroupedComponent, typeof MultiSelectStylerDirective], [typeof MultiFormComponent, typeof DateTimePickerComponent]>;
|
|
651
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiFormModule, [typeof MultiFormComponent, typeof DateTimePickerComponent], [typeof CircularFocusDirective, typeof i2.CommonModule, typeof i5.ReactiveFormsModule, typeof i6.MultiSelectModule, typeof i6.FormModule, typeof i6$1.IconModule, typeof i6.InputGroupComponent, typeof i6.DatePickerModule, typeof DecimalInputDirective, typeof ShowTooltipIfTruncatedDirective, typeof i6.ModalModule, typeof i6.TooltipModule, typeof i6.ButtonModule, typeof i10.BsDatepickerModule, typeof i6.AutocompleteModule, typeof i6.FormCheckInputDirective, typeof EditionListGroupedComponent, typeof MultiSelectStylerDirective, typeof i6.TimePickerModule], [typeof MultiFormComponent, typeof DateTimePickerComponent]>;
|
|
651
652
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiFormModule>;
|
|
652
653
|
}
|
|
653
654
|
|
|
@@ -827,6 +828,7 @@ type TimeOption = {
|
|
|
827
828
|
label: string;
|
|
828
829
|
};
|
|
829
830
|
declare function generateTimeOptions(): TimeOption[];
|
|
831
|
+
declare function getTimeValueFromDateTime(isoString: string): string;
|
|
830
832
|
|
|
831
833
|
interface ILoginConfig {
|
|
832
834
|
/** Heading of Application (e.g., Maintainance Portal) */
|
|
@@ -886,5 +888,5 @@ declare class LoginModule {
|
|
|
886
888
|
static ɵinj: i0.ɵɵInjectorDeclaration<LoginModule>;
|
|
887
889
|
}
|
|
888
890
|
|
|
889
|
-
export { BackgroundImageDirective, CheckboxCellRendererComponent, CircularFocusDirective, ColorCellRendererComponent, CommentsButtonCellRendererComponent, ConfigurationServiceLib, CustomSelectFilterComponent, DateTimePickerComponent, DecimalInputDirective, EditionListGroupedComponent, ExcelType, ExportToExcelNames, FormFieldType, GenericFilterModelComponent, ILOGIN_ACTION, ITableGridConfiguration, ITableGridPagination, IndustryUpdateListboxCellRendererComponent, JsonrpcServiceLib, LoginComponent, LoginModule, MultiFormComponent, MultiFormModule, MultiSelectStylerDirective, PageStatusCellRendererComponent, ShowTooltipIfTruncatedDirective, StatusSelectCellRendererComponent, TableGridComponent, TableGridModule, UtilsService, convertDateShort, convertIsoToFormat, convertToISOnString, generateTimeOptions, regionalDateFormat };
|
|
891
|
+
export { BackgroundImageDirective, CheckboxCellRendererComponent, CircularFocusDirective, ColorCellRendererComponent, CommentsButtonCellRendererComponent, ConfigurationServiceLib, CustomSelectFilterComponent, DateTimePickerComponent, DecimalInputDirective, EditionListGroupedComponent, ExcelType, ExportToExcelNames, FormFieldType, GenericFilterModelComponent, ILOGIN_ACTION, ITableGridConfiguration, ITableGridPagination, IndustryUpdateListboxCellRendererComponent, JsonrpcServiceLib, LoginComponent, LoginModule, MultiFormComponent, MultiFormModule, MultiSelectStylerDirective, PageStatusCellRendererComponent, ShowTooltipIfTruncatedDirective, StatusSelectCellRendererComponent, TableGridComponent, TableGridModule, UtilsService, convertDateShort, convertIsoToFormat, convertToISOnString, generateTimeOptions, getTimeValueFromDateTime, regionalDateFormat };
|
|
890
892
|
export type { IAgPublicEventType, ICellValueChangedEvent, IColDef, IColumnStateEvent, IEmmitedResponse, IExcelHeaders, IExportCellConfig, IFieldConfig, IFilterChangeEvent, IFormConfig, IFormStyles, IFormSubmissionEmit, IFormValidations, IGridApi, IGridReadyEvent, ILoginConfig, IPaginationChangedEvent, IPrintHeaders, IRowSelectionOptions, ITableGridState, MaintAction, PongrassICellRendererAngularComp, PongrassICellRendererParams, TimeOption };
|