monkey-style-guide-v2 0.0.34 → 0.0.37

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.
@@ -0,0 +1,15 @@
1
+ import { AfterContentInit, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
2
+ import { MonkeyButtonComponent } from '../button';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MonkeyFilterBarComponent implements AfterContentInit, OnDestroy, OnChanges {
5
+ protected _elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>;
6
+ showPopOver: boolean;
7
+ elementTarget: HTMLElement | null;
8
+ closePopOver: () => void;
9
+ ngAfterContentInit(): void;
10
+ ngOnChanges(changes: SimpleChanges): void;
11
+ ngOnDestroy(): void;
12
+ onShowPopOver(el: MonkeyButtonComponent): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterBarComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterBarComponent, "monkey-filter-bar", never, {}, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1,6 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
6
+ export * from './filter-bar.component';
@@ -13,6 +13,7 @@ export * from './button';
13
13
  export * from './checkbox';
14
14
  export * from './date-range';
15
15
  export * from './divider';
16
+ export * from './filter-bar';
16
17
  export * from './form-field';
17
18
  export * from './icon';
18
19
  export * from './icon-button';
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-style-guide-v2",
3
- "version": "0.0.34",
3
+ "version": "0.0.37",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
package/utils/icon.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
- type IconName = 'clear' | 'calendar' | 'arrowDown' | 'arrowRight' | 'check' | 'minus' | 'loading' | 'searchFail' | 'search';
2
+ type IconName = 'clear' | 'calendar' | 'arrowDown' | 'arrowRight' | 'check' | 'minus' | 'loading' | 'searchFail' | 'search' | 'addPlus';
3
3
  export declare class UtilIconComponent {
4
4
  name: import("@angular/core").InputSignal<IconName>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<UtilIconComponent, never>;
Binary file