ngx-sfc-common 0.0.32 → 0.0.34
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/esm2020/lib/components/tag/tag.component.mjs +12 -8
- package/esm2020/lib/components/tag/tag.model.mjs +1 -1
- package/esm2020/lib/utils/common.utils.mjs +6 -1
- package/fesm2015/ngx-sfc-common.mjs +14 -6
- package/fesm2015/ngx-sfc-common.mjs.map +1 -1
- package/fesm2020/ngx-sfc-common.mjs +14 -6
- package/fesm2020/ngx-sfc-common.mjs.map +1 -1
- package/lib/components/tag/tag.component.d.ts +2 -2
- package/lib/components/tag/tag.model.d.ts +1 -1
- package/lib/utils/common.utils.d.ts +5 -0
- package/package.json +1 -1
- package/styles/_colors.scss +1 -1
|
@@ -2,11 +2,11 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { ITagModel } from './tag.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TagComponent {
|
|
5
|
-
remove: boolean;
|
|
6
5
|
model: ITagModel;
|
|
7
6
|
removeAction: EventEmitter<ITagModel>;
|
|
7
|
+
disabled: boolean;
|
|
8
8
|
private _onClick;
|
|
9
9
|
onRemove(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "sfc-tag", never, { "
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "sfc-tag", never, { "model": "model"; "disabled": "disabled"; }, { "removeAction": "remove"; }, never, never, false, never>;
|
|
12
12
|
}
|
|
@@ -118,4 +118,9 @@ export declare function findChangedPropertyPath(previous: any, current: any, par
|
|
|
118
118
|
* @returns Key of property that was changed
|
|
119
119
|
*/
|
|
120
120
|
export declare function findChangedPropertyKey(previous: any, current: any): string | empty;
|
|
121
|
+
/**
|
|
122
|
+
* Clone object without any reference
|
|
123
|
+
* @param value Object to clone
|
|
124
|
+
* @returns Cloned object
|
|
125
|
+
*/
|
|
121
126
|
export declare function deepClone(value: any): any;
|
package/package.json
CHANGED
package/styles/_colors.scss
CHANGED