nath-angular-ui 0.5.5 → 0.6.0
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
|
@@ -112,6 +112,7 @@ declare class BreadcrumbService {
|
|
|
112
112
|
*/
|
|
113
113
|
set(crumbs: Breadcrumb[]): void;
|
|
114
114
|
add(crumb: Breadcrumb): void;
|
|
115
|
+
update(index: number, crumb: Breadcrumb): void;
|
|
115
116
|
/**
|
|
116
117
|
* Clears the breadcrumbs when leaving a page.
|
|
117
118
|
*/
|
|
@@ -1081,6 +1082,18 @@ declare class NathTabs {
|
|
|
1081
1082
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NathTabs, "nath-tabs", never, { "activeTab": { "alias": "activeTab"; "required": true; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "tabClass": { "alias": "tabClass"; "required": false; "isSignal": true; }; "tabPanelClass": { "alias": "tabPanelClass"; "required": false; "isSignal": true; }; "slidingWindowClass": { "alias": "slidingWindowClass"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; }, ["tabs", "tabPanels"], never, true, never>;
|
|
1082
1083
|
}
|
|
1083
1084
|
|
|
1085
|
+
type NathTagVariant = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'help';
|
|
1086
|
+
type NathTagSize = 'small' | 'medium' | 'large';
|
|
1087
|
+
declare class NathTag {
|
|
1088
|
+
variant: _angular_core.InputSignal<NathTagVariant>;
|
|
1089
|
+
size: _angular_core.InputSignal<NathTagSize>;
|
|
1090
|
+
closable: _angular_core.InputSignal<boolean>;
|
|
1091
|
+
closed: _angular_core.OutputEmitterRef<void>;
|
|
1092
|
+
protected onClose(event: MouseEvent): void;
|
|
1093
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NathTag, never>;
|
|
1094
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NathTag, "nath-tag", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, ["*"], true, never>;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1084
1097
|
declare const DARK_THEME_CLASS = "dark";
|
|
1085
1098
|
interface ThemeConfig {
|
|
1086
1099
|
localStorageThemeKey: string;
|
|
@@ -1230,5 +1243,5 @@ declare const rangeNotMinMax: (range: number[] | undefined, min: number | undefi
|
|
|
1230
1243
|
|
|
1231
1244
|
declare function isSortOrderValid(order: string): boolean;
|
|
1232
1245
|
|
|
1233
|
-
export { BreadcrumbService, DARK_THEME_CLASS, DIALOG_DATA, NathAutocomplete, NathBooleanControl, NathBreadcrumbs, NathCodeViewer, NathConfirmationDialog, NathConfirmationService, NathDatepicker, NathDialogContainer, NathDialogRef, 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 };
|
|
1246
|
+
export { BreadcrumbService, DARK_THEME_CLASS, DIALOG_DATA, NathAutocomplete, NathBooleanControl, NathBreadcrumbs, NathCodeViewer, NathConfirmationDialog, NathConfirmationService, NathDatepicker, NathDialogContainer, NathDialogRef, 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, NathTag, NathThemeSwitch, NathToastContainer, NathToc, NathTooltipContainer, NathTooltipDirective, ORDER, RATING_MAP, THEME_CONFIG, TabDirective, TabPanelDirective, ThemeService, ToastService, getRatingColor, hasRequiredValidator, isRequired, isSortOrderValid, isTruthy, next, provideThemeConfig, rangeMinMax, rangeNotMinMax, validateAllFormFields };
|
|
1234
1247
|
export type { BooleanDisplayMode, Breadcrumb, CodeFile, MenuItem, NathConfirmationButton, NathConfirmationConfig, NathDialogConfig, NathMenuPositionX, NathMenuPositionY, NathToastPosition, NathToastType, NathTooltipPosition, PaginatorChangeEvent, RadioOption, SelectItem, SliderValue, ThemeConfig, Toast, TrackByFnOrKey, TristateValue };
|