ca-components 0.0.82 → 0.0.83
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/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +10 -4
- package/esm2022/lib/components/ca-input/directives/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/directives/min-max-value.directive.mjs +49 -0
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +2 -3
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.mjs +2 -2
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +6 -3
- package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +3 -3
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +2 -2
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +3 -3
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +6 -3
- package/esm2022/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.mjs +1 -1
- package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +2 -2
- package/fesm2022/ca-components.mjs +79 -23
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input/directives/index.d.ts +1 -0
- package/lib/components/ca-input/directives/min-max-value.directive.d.ts +12 -0
- package/lib/components/ca-main-table/ca-main-table.component.d.ts +2 -1
- package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './min-max-value.directive';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MinMaxValueDirective {
|
|
4
|
+
private el;
|
|
5
|
+
minValue: number;
|
|
6
|
+
maxValue: number;
|
|
7
|
+
constructor(el: ElementRef);
|
|
8
|
+
onKeyPress(event: KeyboardEvent): void;
|
|
9
|
+
onPaste(event: ClipboardEvent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MinMaxValueDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MinMaxValueDirective, "[appMinMaxValue]", never, { "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -15,6 +15,7 @@ export declare class CaMainTableComponent implements OnInit {
|
|
|
15
15
|
sortPredicate: (index: number, item: CdkDrag<number>) => boolean;
|
|
16
16
|
hideFieldsToHide: boolean;
|
|
17
17
|
reorderItems: boolean;
|
|
18
|
+
disableReorderRow: boolean;
|
|
18
19
|
columns: ColumnConfig[];
|
|
19
20
|
data$: Observable<any[]>;
|
|
20
21
|
constructor(injector: Injector, cdRef: ChangeDetectorRef);
|
|
@@ -29,5 +30,5 @@ export declare class CaMainTableComponent implements OnInit {
|
|
|
29
30
|
dropHeader(event: CdkDragDrop<string[]>): void;
|
|
30
31
|
drop(event: CdkDragDrop<any[] | null, any, any>): void;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaMainTableComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaMainTableComponent, "app-ca-main-table", never, { "reorderTemplate": { "alias": "reorderTemplate"; "required": false; }; "reorderTemplatePreview": { "alias": "reorderTemplatePreview"; "required": false; }; "transparentTable": { "alias": "transparentTable"; "required": false; }; "sortPredicate": { "alias": "sortPredicate"; "required": false; }; "hideFieldsToHide": { "alias": "hideFieldsToHide"; "required": false; }; "reorderItems": { "alias": "reorderItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, { "onPressEvent": "onPressEvent"; "onReorder": "onReorder"; }, never, never, true, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaMainTableComponent, "app-ca-main-table", never, { "reorderTemplate": { "alias": "reorderTemplate"; "required": false; }; "reorderTemplatePreview": { "alias": "reorderTemplatePreview"; "required": false; }; "transparentTable": { "alias": "transparentTable"; "required": false; }; "sortPredicate": { "alias": "sortPredicate"; "required": false; }; "hideFieldsToHide": { "alias": "hideFieldsToHide"; "required": false; }; "reorderItems": { "alias": "reorderItems"; "required": false; }; "disableReorderRow": { "alias": "disableReorderRow"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, { "onPressEvent": "onPressEvent"; "onReorder": "onReorder"; }, never, never, true, never>;
|
|
33
34
|
}
|
|
@@ -13,11 +13,12 @@ export declare class CaProfileImageComponent implements OnChanges {
|
|
|
13
13
|
name: string | number;
|
|
14
14
|
isRound: boolean;
|
|
15
15
|
size: string | number;
|
|
16
|
+
height: string | number;
|
|
16
17
|
fontSize: string | number;
|
|
17
18
|
isHoverEffect: boolean;
|
|
18
19
|
constructor();
|
|
19
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
21
|
getProfileImageColors(): void;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaProfileImageComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaProfileImageComponent, "app-ca-profile-image", never, { "indx": { "alias": "indx"; "required": false; }; "avatarImg": { "alias": "avatarImg"; "required": false; }; "avatarColor": { "alias": "avatarColor"; "required": false; }; "textShortName": { "alias": "textShortName"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isRound": { "alias": "isRound"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "isHoverEffect": { "alias": "isHoverEffect"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaProfileImageComponent, "app-ca-profile-image", never, { "indx": { "alias": "indx"; "required": false; }; "avatarImg": { "alias": "avatarImg"; "required": false; }; "avatarColor": { "alias": "avatarColor"; "required": false; }; "textShortName": { "alias": "textShortName"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isRound": { "alias": "isRound"; "required": false; }; "size": { "alias": "size"; "required": false; }; "height": { "alias": "height"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "isHoverEffect": { "alias": "isHoverEffect"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
24
|
}
|