@almoamendev/ngx-md3 0.5.0 → 0.5.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": "@almoamendev/ngx-md3",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "MD3-style Angular components & style library",
5
5
  "author": "Murtadha (Hussain) Almoamen",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@ type SplitButtonType = 'elevated' | 'filled' | 'tonal' | 'outlined';
26
26
 
27
27
  type ButtonGroupType = 'standard' | 'connected';
28
28
 
29
- type ButtonGroupSelection = 'none' | 'single' | 'multiple';
29
+ type ButtonGroupSelection = 'none' | 'single' | 'multiple' | 'manual';
30
30
 
31
31
  type FabSize = 'small' | 'medium' | 'large';
32
32
 
@@ -750,7 +750,7 @@ declare class Button {
750
750
  effectiveSquared: _angular_core.Signal<boolean>;
751
751
  constructor(el: ElementRef);
752
752
  get element(): HTMLElement;
753
- enableSelection(): void;
753
+ enableSelection(): boolean;
754
754
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<Button, never>;
755
755
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<Button, "button[md3-button], a[md3-button]", never, { "buttonSize": { "alias": "button-size"; "required": false; "isSignal": true; }; "buttonType": { "alias": "button-type"; "required": false; "isSignal": true; }; "isSquared": { "alias": "button-squared"; "required": false; "isSignal": true; }; "isSelected": { "alias": "selected"; "required": false; "isSignal": true; }; }, { "isSelected": "selectedChange"; }, never, ["[md3-icon-element=leading]", "*", "[md3-icon-element=trailing]"], true, [{ directive: typeof StateComponent; inputs: {}; outputs: {}; }]>;
756
756
  }
@@ -784,7 +784,7 @@ declare class IconButton {
784
784
  effectiveSquared: _angular_core.Signal<boolean>;
785
785
  constructor(el: ElementRef);
786
786
  get element(): HTMLElement;
787
- enableSelection(): void;
787
+ enableSelection(): boolean;
788
788
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconButton, never>;
789
789
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconButton, "button[md3-icon-button], a[md3-icon-button]", never, { "buttonSize": { "alias": "button-size"; "required": false; "isSignal": true; }; "buttonType": { "alias": "button-type"; "required": false; "isSignal": true; }; "buttonWidth": { "alias": "button-width"; "required": false; "isSignal": true; }; "isSquared": { "alias": "button-squared"; "required": false; "isSignal": true; }; "isSelected": { "alias": "selected"; "required": false; "isSignal": true; }; }, { "isSelected": "selectedChange"; }, never, ["[md3-icon-element]", "*"], true, [{ directive: typeof StateComponent; inputs: {}; outputs: {}; }]>;
790
790
  }
@@ -823,6 +823,7 @@ declare class ButtonGroup implements ButtonContext {
823
823
  groupSelection: InputSignal<ButtonGroupSelection>;
824
824
  private buttons;
825
825
  private iconButtons;
826
+ private managedButtons;
826
827
  buttonContextSize: Signal<ButtonSize>;
827
828
  buttonContextSelection: Signal<ButtonGroupSelection>;
828
829
  constructor(el: ElementRef);