@progress-chef/platform-shared-components 0.0.20 → 0.0.21
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/atoms/checkbox/checkbox.component.mjs +6 -3
- package/esm2022/lib/atoms/radio-button/radio-button.component.mjs +7 -4
- package/esm2022/lib/atoms/typography/typography.component.mjs +5 -5
- package/fesm2022/progress-chef-platform-shared-components.mjs +56 -50
- package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
- package/lib/atoms/checkbox/checkbox.component.d.ts +3 -1
- package/lib/atoms/radio-button/radio-button.component.d.ts +3 -1
- package/lib/atoms/typography/typography.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
4
4
|
import { CheckBoxRounded, InputSize } from '@progress/kendo-angular-inputs';
|
|
5
|
+
import { TypographyType } from '../typography/TypographyType';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CheckboxComponent {
|
|
7
8
|
private themesService;
|
|
@@ -11,9 +12,10 @@ export declare class CheckboxComponent {
|
|
|
11
12
|
rounded: CheckBoxRounded;
|
|
12
13
|
label: string;
|
|
13
14
|
labelPosition: 'before' | 'after';
|
|
15
|
+
labelFont: TypographyType;
|
|
14
16
|
modelChange: EventEmitter<boolean>;
|
|
15
17
|
constructor(themesService: ThemesService);
|
|
16
18
|
emitValueChange(ev: boolean): void;
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lib-checkbox", never, { "control": { "alias": "control"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; }, { "modelChange": "modelChange"; }, never,
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lib-checkbox", never, { "control": { "alias": "control"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; }, { "modelChange": "modelChange"; }, never, ["*"], false, never>;
|
|
19
21
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
4
|
+
import { TypographyType } from '../typography/TypographyType';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class RadioButtonComponent {
|
|
6
7
|
private themesService;
|
|
@@ -10,11 +11,12 @@ export declare class RadioButtonComponent {
|
|
|
10
11
|
control: FormControl;
|
|
11
12
|
label: string;
|
|
12
13
|
labelPosition: "before" | "after";
|
|
14
|
+
labelFont: TypographyType;
|
|
13
15
|
id: string;
|
|
14
16
|
model: string;
|
|
15
17
|
modelChange: EventEmitter<string>;
|
|
16
18
|
constructor(themesService: ThemesService);
|
|
17
19
|
emitModelChange(ev: string): void;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "lib-radio-button", never, { "size": { "alias": "size"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "id": { "alias": "id"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "modelChange": "modelChange"; }, never,
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "lib-radio-button", never, { "size": { "alias": "size"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "id": { "alias": "id"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "modelChange": "modelChange"; }, never, ["*"], false, never>;
|
|
20
22
|
}
|
|
@@ -20,5 +20,5 @@ export declare class TypographyComponent implements AfterViewInit, AfterViewChec
|
|
|
20
20
|
checkForLabel(): void;
|
|
21
21
|
checkShowDefaultText(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypographyComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypographyComponent, "lib-typography", never, { "type": { "alias": "type"; "required": false; }; "defaultText": { "alias": "defaultText"; "required": false; }; "isLabel": { "alias": "isLabel"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; }, {}, never, ["*"
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypographyComponent, "lib-typography", never, { "type": { "alias": "type"; "required": false; }; "defaultText": { "alias": "defaultText"; "required": false; }; "isLabel": { "alias": "isLabel"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
24
24
|
}
|