nath-angular-ui 0.3.0 → 0.4.1
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/package.json
CHANGED
|
@@ -215,7 +215,7 @@ declare class NathConfirmationDialog {
|
|
|
215
215
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NathConfirmationDialog, "ng-component", never, {}, {}, never, never, true, never>;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
-
declare class
|
|
218
|
+
declare class NathDialogService {
|
|
219
219
|
private readonly injector;
|
|
220
220
|
private readonly environmentInjector;
|
|
221
221
|
private readonly appRef;
|
|
@@ -228,8 +228,8 @@ declare class DialogService {
|
|
|
228
228
|
*/
|
|
229
229
|
closeAll(): void;
|
|
230
230
|
private destroyDialog;
|
|
231
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
232
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<
|
|
231
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NathDialogService, never>;
|
|
232
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NathDialogService>;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
declare class NathDialogContainer extends BasePortalOutlet {
|
|
@@ -943,6 +943,19 @@ declare class NathSlider implements FormValueControl<number | number[] | null> {
|
|
|
943
943
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NathSlider, "nath-slider", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "minValue": { "alias": "minValue"; "required": false; "isSignal": true; }; "maxValue": { "alias": "maxValue"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "rangeBackground": { "alias": "rangeBackground"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
+
declare class NathShowErrors {
|
|
947
|
+
private static readonly errorMessages;
|
|
948
|
+
readonly signalField: _angular_core.InputSignal<FieldState<any, any> | undefined>;
|
|
949
|
+
readonly control: _angular_core.InputSignal<AbstractControl<any, any, any> | undefined>;
|
|
950
|
+
controlValue: _angular_core.Signal<any>;
|
|
951
|
+
controlErrors: _angular_core.Signal<any[]>;
|
|
952
|
+
static getMessage(type: string, params: any): string;
|
|
953
|
+
shouldShowErrors(): boolean;
|
|
954
|
+
listOfErrors(): any[];
|
|
955
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NathShowErrors, never>;
|
|
956
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NathShowErrors, "nath-show-errors", never, { "signalField": { "alias": "signalField"; "required": false; "isSignal": true; }; "control": { "alias": "control"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
957
|
+
}
|
|
958
|
+
|
|
946
959
|
declare enum ORDER {
|
|
947
960
|
ASC = "asc",
|
|
948
961
|
DESC = "desc"
|
|
@@ -1149,5 +1162,5 @@ declare const rangeNotMinMax: (range: number[] | undefined, min: number | undefi
|
|
|
1149
1162
|
|
|
1150
1163
|
declare function isSortOrderValid(order: string): boolean;
|
|
1151
1164
|
|
|
1152
|
-
export { BreadcrumbService, ConfirmationService, DARK_THEME_CLASS, DIALOG_DATA, DialogRef,
|
|
1165
|
+
export { BreadcrumbService, ConfirmationService, DARK_THEME_CLASS, DIALOG_DATA, DialogRef, NathAutocomplete, NathBooleanControl, NathBreadcrumbs, NathCodeViewer, NathConfirmationDialog, NathDatepicker, NathDialogContainer, NathDialogService, NathDrawer, NathFileUpload, NathFloatingLabel, NathFormField, NathImagePreview, NathMenu, NathMenuList, NathMultiselect, NathPaginatedView, NathPaginator, NathPanel, NathPickList, NathProgressBar, NathProgressCircle, NathRadioButtonGroup, NathRatingHeart, NathRatingInput, NathSelect, NathShowErrors, NathSkeleton, NathSlider, NathSortIcon, NathSplitButton, NathTabs, NathThemeSwitch, NathToastContainer, NathToc, NathTooltipContainer, NathTooltipDirective, ORDER, RATING_MAP, THEME_CONFIG, TabDirective, TabPanelDirective, ThemeService, ToastService, getRatingColor, hasRequiredValidator, isRequired, isSortOrderValid, isTruthy, next, provideThemeConfig, rangeMinMax, rangeNotMinMax, validateAllFormFields };
|
|
1153
1166
|
export type { BooleanDisplayMode, Breadcrumb, CodeFile, ConfirmationButton, ConfirmationConfig, DialogConfig, MenuItem, NathMenuPositionX, NathMenuPositionY, NathToastPosition, NathToastType, NathTooltipPosition, PaginatorChangeEvent, RadioOption, SelectItem, SliderValue, ThemeConfig, Toast, TrackByFnOrKey, TristateValue };
|