ui-core-abv 0.1.13 → 0.1.14
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/fesm2022/ui-core-abv.mjs +13 -44
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/base-value-accessot.d.ts +0 -2
- package/lib/components/inputs/checkbox/checkbox.component.d.ts +1 -4
- package/lib/components/inputs/date-picker/date-picker.component.d.ts +2 -5
- package/lib/components/inputs/select/select.component.d.ts +2 -5
- package/lib/components/inputs/ui-slider/ui-slider.component.d.ts +1 -4
- package/package.json +1 -1
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
export declare function createValueAccessor<T>(): abstract new () => {
|
|
3
3
|
value: T;
|
|
4
|
-
_disabled: boolean;
|
|
5
4
|
valueChange: EventEmitter<T>;
|
|
6
|
-
disabled: boolean;
|
|
7
5
|
onChange: (value: T) => void;
|
|
8
6
|
onTouched: () => void;
|
|
9
7
|
writeValue(obj: T): void;
|
|
@@ -2,9 +2,7 @@ import { ButtonColor } from '../../button/button.component';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
declare const base: abstract new () => {
|
|
4
4
|
value: boolean;
|
|
5
|
-
_disabled: boolean;
|
|
6
5
|
valueChange: import("@angular/core").EventEmitter<boolean>;
|
|
7
|
-
disabled: boolean;
|
|
8
6
|
onChange: (value: boolean) => void;
|
|
9
7
|
onTouched: () => void;
|
|
10
8
|
writeValue(obj: boolean): void;
|
|
@@ -21,8 +19,7 @@ export declare class UicCheckboxComponent extends base {
|
|
|
21
19
|
type: 'check' | 'switch';
|
|
22
20
|
placeholder: string;
|
|
23
21
|
loading: boolean;
|
|
24
|
-
|
|
25
|
-
set disabled(value: boolean);
|
|
22
|
+
disabled: boolean;
|
|
26
23
|
toggle(): void;
|
|
27
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicCheckboxComponent, never>;
|
|
28
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<UicCheckboxComponent, "ui-checkbox", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -5,9 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
type CalendarView = 'days' | 'months' | 'years';
|
|
6
6
|
declare const base: abstract new () => {
|
|
7
7
|
value: string;
|
|
8
|
-
_disabled: boolean;
|
|
9
8
|
valueChange: import("@angular/core").EventEmitter<string>;
|
|
10
|
-
disabled: boolean;
|
|
11
9
|
onChange: (value: string) => void;
|
|
12
10
|
onTouched: () => void;
|
|
13
11
|
writeValue(obj: string): void;
|
|
@@ -20,13 +18,12 @@ export declare class UicDatePickerComponent extends base {
|
|
|
20
18
|
icon: string;
|
|
21
19
|
iconColor: ButtonColor;
|
|
22
20
|
internalIcon: string;
|
|
21
|
+
disabled: boolean;
|
|
23
22
|
label: string;
|
|
24
23
|
error: string;
|
|
25
24
|
tip: string;
|
|
26
25
|
max: string;
|
|
27
26
|
min: string;
|
|
28
|
-
get disabled(): boolean;
|
|
29
|
-
set disabled(value: boolean);
|
|
30
27
|
calendarTemplate: TemplateRef<any>;
|
|
31
28
|
private overlayRef;
|
|
32
29
|
months: string[];
|
|
@@ -64,6 +61,6 @@ export declare class UicDatePickerComponent extends base {
|
|
|
64
61
|
cleanInput(): void;
|
|
65
62
|
pickToday(): void;
|
|
66
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicDatePickerComponent, never>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; }, {}, never, never, true, never>;
|
|
68
65
|
}
|
|
69
66
|
export {};
|
|
@@ -4,9 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
type selectId = number | string | null;
|
|
5
5
|
declare const base: abstract new () => {
|
|
6
6
|
value: selectId;
|
|
7
|
-
_disabled: boolean;
|
|
8
7
|
valueChange: import("@angular/core").EventEmitter<selectId>;
|
|
9
|
-
disabled: boolean;
|
|
10
8
|
onChange: (value: selectId) => void;
|
|
11
9
|
onTouched: () => void;
|
|
12
10
|
writeValue(obj: selectId): void;
|
|
@@ -24,11 +22,10 @@ export declare class UicSelectComponent extends base {
|
|
|
24
22
|
error: string;
|
|
25
23
|
tip: string;
|
|
26
24
|
showSubtitle: boolean;
|
|
25
|
+
disabled: boolean;
|
|
27
26
|
emptyText: string;
|
|
28
27
|
nullable: boolean;
|
|
29
28
|
options: AppSelectOption[];
|
|
30
|
-
get disabled(): boolean;
|
|
31
|
-
set disabled(value: boolean);
|
|
32
29
|
dropdownTemplate: TemplateRef<any>;
|
|
33
30
|
private overlayRef;
|
|
34
31
|
overlayPositions: ConnectedPosition[];
|
|
@@ -43,7 +40,7 @@ export declare class UicSelectComponent extends base {
|
|
|
43
40
|
closeList(): void;
|
|
44
41
|
writeValue(value: string | number | null): void;
|
|
45
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicSelectComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
44
|
}
|
|
48
45
|
export interface AppSelectOption {
|
|
49
46
|
id?: string | number | null;
|
|
@@ -2,9 +2,7 @@ import { ButtonColor } from '../../button/button.component';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
declare const base: abstract new () => {
|
|
4
4
|
value: number;
|
|
5
|
-
_disabled: boolean;
|
|
6
5
|
valueChange: import("@angular/core").EventEmitter<number>;
|
|
7
|
-
disabled: boolean;
|
|
8
6
|
onChange: (value: number) => void;
|
|
9
7
|
onTouched: () => void;
|
|
10
8
|
writeValue(obj: number): void;
|
|
@@ -24,8 +22,7 @@ export declare class UicSliderComponent extends base {
|
|
|
24
22
|
step: number;
|
|
25
23
|
markerCount: number;
|
|
26
24
|
markers: number[];
|
|
27
|
-
|
|
28
|
-
set disabled(value: boolean);
|
|
25
|
+
disabled: boolean;
|
|
29
26
|
loading: boolean;
|
|
30
27
|
ngOnInit(): void;
|
|
31
28
|
get percent(): number;
|