monkey-style-guide-v2 0.0.34 → 0.0.35
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/assets/scss/theme.scss +1 -0
- package/assets/scss/util/_icon.scss +10 -0
- package/assets/scss/util/_index.scss +7 -0
- package/fesm2022/monkey-style-guide-v2.mjs +232 -91
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/filter-bar/filter-bar.component.d.ts +15 -0
- package/lib/components/filter-bar/index.d.ts +6 -0
- package/lib/components/index.d.ts +1 -0
- package/monkey-style-guide-v2-0.0.35.tgz +0 -0
- package/package.json +1 -1
- package/utils/icon.d.ts +1 -1
- package/monkey-style-guide-v2-0.0.34.tgz +0 -0
|
@@ -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
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
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
|