@cauca-911/material 21.2.0 → 21.2.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cauca-911/material",
3
- "version": "21.2.0",
3
+ "version": "21.2.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=21.2.0",
6
6
  "@angular/core": ">=21.2.0",
@@ -269,8 +269,9 @@ declare class BadgeComponent {
269
269
  icon: _angular_core.InputSignal<string>;
270
270
  label: _angular_core.InputSignal<string>;
271
271
  color: _angular_core.InputSignal<string>;
272
+ autoTranslate: _angular_core.InputSignal<boolean>;
272
273
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeComponent, never>;
273
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "cauca-badge", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
274
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "cauca-badge", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "autoTranslate": { "alias": "autoTranslate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
274
275
  }
275
276
 
276
277
  declare class IconComponent {
@@ -643,6 +644,17 @@ declare class SavingErrorBoxComponent {
643
644
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SavingErrorBoxComponent, "cauca-saving-error-box", never, { "show": { "alias": "show"; "required": false; "isSignal": true; }; "specificError": { "alias": "specificError"; "required": false; "isSignal": true; }; }, { "show": "showChange"; }, never, never, true, never>;
644
645
  }
645
646
 
647
+ type StatusMessageType = 'error' | 'noData' | 'custom';
648
+ declare class StatusMessageComponent {
649
+ type: _angular_core.InputSignal<StatusMessageType>;
650
+ textKey: _angular_core.InputSignal<string>;
651
+ icon: _angular_core.InputSignal<string>;
652
+ readonly resolvedTextKey: _angular_core.Signal<string>;
653
+ readonly resolvedIcon: _angular_core.Signal<string>;
654
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<StatusMessageComponent, never>;
655
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<StatusMessageComponent, "cauca-status-message", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "textKey": { "alias": "textKey"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
656
+ }
657
+
646
658
  declare class AutoTrimAndLowerDirective {
647
659
  private readonly el;
648
660
  constructor(el: ElementRef);
@@ -765,5 +777,5 @@ declare class CaucaSlideshowComponent implements OnInit {
765
777
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CaucaSlideshowComponent, "cauca-slideshow", never, { "height": { "alias": "height"; "required": false; }; "autoPlay": { "alias": "autoPlay"; "required": false; }; "images": { "alias": "images"; "required": false; }; }, {}, never, never, true, never>;
766
778
  }
767
779
 
768
- export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, BreadcrumbService, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelAccordionComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, Iso8601TimeSpanPipe, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent, provideCaucaMaterial };
769
- export type { ConfirmationOptions, DateRange, HasErrorContext, InputOptions, Option };
780
+ export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, BreadcrumbService, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelAccordionComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, Iso8601TimeSpanPipe, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StatusMessageComponent, StrokedButtonComponent, provideCaucaMaterial };
781
+ export type { ConfirmationOptions, DateRange, HasErrorContext, InputOptions, Option, StatusMessageType };