@almoamendev/ngx-md3 0.3.5 → 0.3.7

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.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "MD3-style Angular components & style library",
5
5
  "author": "Murtadha (Hussain) Almoamen",
6
6
  "license": "MIT",
@@ -719,6 +719,7 @@ interface ButtonContext {
719
719
  buttonContextWidth?: Signal<IconButtonWidth>;
720
720
  buttonContextSquared?: Signal<boolean>;
721
721
  buttonContextExtended?: Signal<boolean>;
722
+ buttonContextSelection?: Signal<ButtonGroupSelection>;
722
723
  }
723
724
 
724
725
  declare class SplitButton implements ButtonContext {
@@ -747,6 +748,7 @@ declare class ButtonGroup implements ButtonContext {
747
748
  private buttons;
748
749
  private iconButtons;
749
750
  buttonContextSize: Signal<ButtonSize>;
751
+ buttonContextSelection: Signal<ButtonGroupSelection>;
750
752
  constructor(el: ElementRef);
751
753
  get element(): HTMLElement;
752
754
  private findEventButton;