novo-elements 7.13.1-next.2 → 7.13.1
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/elements/checkbox/CheckList.scss +14 -11
- package/elements/checkbox/Checkbox.scss +14 -11
- package/elements/form/Form.scss +6 -0
- package/elements/radio/Radio.scss +10 -4
- package/elements/switch/Switch.scss +1 -1
- package/elements/tiles/Tiles.scss +11 -23
- package/esm2020/src/elements/checkbox/CheckList.mjs +3 -3
- package/esm2020/src/elements/checkbox/Checkbox.mjs +6 -6
- package/esm2020/src/elements/form/ControlTemplates.mjs +42 -42
- package/esm2020/src/elements/popover/PopOver.mjs +13 -3
- package/esm2020/src/elements/query-builder/condition-definitions/boolean-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/date-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/date-time-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/number-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/picker-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/string-condition.definition.mjs +1 -1
- package/esm2020/src/elements/radio/Radio.mjs +26 -16
- package/fesm2015/novo-elements.mjs +90 -70
- package/fesm2015/novo-elements.mjs.map +1 -1
- package/fesm2020/novo-elements.mjs +90 -70
- package/fesm2020/novo-elements.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/checkbox/Checkbox.d.ts +4 -4
- package/src/elements/popover/PopOver.d.ts +2 -1
- package/src/elements/radio/Radio.d.ts +6 -4
package/package.json
CHANGED
|
@@ -24,7 +24,6 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
|
|
|
24
24
|
/** The 'aria-describedby' attribute is read after the element's label and field type. */
|
|
25
25
|
ariaDescribedby: string;
|
|
26
26
|
private _uniqueId;
|
|
27
|
-
boxIcon: boolean;
|
|
28
27
|
id: string;
|
|
29
28
|
name: string;
|
|
30
29
|
label: string;
|
|
@@ -39,14 +38,14 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
|
|
|
39
38
|
/** Whether the checkbox is required. */
|
|
40
39
|
get required(): boolean;
|
|
41
40
|
set required(value: boolean);
|
|
42
|
-
_required
|
|
41
|
+
private _required;
|
|
43
42
|
/** Whether the checkbox is checked. */
|
|
44
43
|
get checked(): boolean;
|
|
45
44
|
set checked(value: boolean);
|
|
46
|
-
_checked
|
|
45
|
+
private _checked;
|
|
47
46
|
get indeterminate(): boolean;
|
|
48
47
|
set indeterminate(value: boolean);
|
|
49
|
-
_indeterminate
|
|
48
|
+
private _indeterminate;
|
|
50
49
|
/** The native `<input type="checkbox">` element */
|
|
51
50
|
_inputElement: ElementRef<HTMLInputElement>;
|
|
52
51
|
/** Event emitted when the checkbox's `checked` value changes. */
|
|
@@ -54,6 +53,7 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
|
|
|
54
53
|
/** Event emitted when the checkbox's `indeterminate` value changes. */
|
|
55
54
|
readonly indeterminateChange: EventEmitter<boolean>;
|
|
56
55
|
onSelect: EventEmitter<any>;
|
|
56
|
+
boxIcon: boolean;
|
|
57
57
|
onModelChange: Function;
|
|
58
58
|
onModelTouched: Function;
|
|
59
59
|
constructor(_cdr: ChangeDetectorRef, _focusMonitor: FocusMonitor, tabIndex: string);
|
|
@@ -9,6 +9,7 @@ export declare class PopOverDirective implements OnChanges {
|
|
|
9
9
|
protected visible: boolean;
|
|
10
10
|
constructor(viewContainerRef: ViewContainerRef, resolver: ComponentFactoryResolver);
|
|
11
11
|
content: string | PopOverContent;
|
|
12
|
+
set novoPopover(content: string | PopOverContent);
|
|
12
13
|
popoverHtmlContent: string;
|
|
13
14
|
popoverDisabled: boolean;
|
|
14
15
|
popoverAlways: boolean;
|
|
@@ -30,5 +31,5 @@ export declare class PopOverDirective implements OnChanges {
|
|
|
30
31
|
hide(): void;
|
|
31
32
|
getElement(): any;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopOverDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopOverDirective, "[popover]", never, { "content": "popover"; "popoverHtmlContent": "popoverHtmlContent"; "popoverDisabled": "popoverDisabled"; "popoverAlways": "popoverAlways"; "popoverAnimation": "popoverAnimation"; "popoverPlacement": "popoverPlacement"; "popoverTitle": "popoverTitle"; "popoverOnHover": "popoverOnHover"; "popoverDismissTimeout": "popoverDismissTimeout"; }, { "onShown": "onShown"; "onHidden": "onHidden"; }, never>;
|
|
34
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopOverDirective, "[popover], [novoPopover]", never, { "content": "popover"; "novoPopover": "novoPopover"; "popoverHtmlContent": "popoverHtmlContent"; "popoverDisabled": "popoverDisabled"; "popoverAlways": "popoverAlways"; "popoverAnimation": "popoverAnimation"; "popoverPlacement": "popoverPlacement"; "popoverTitle": "popoverTitle"; "popoverOnHover": "popoverOnHover"; "popoverDismissTimeout": "popoverDismissTimeout"; }, { "onShown": "onShown"; "onHidden": "onHidden"; }, never>;
|
|
34
35
|
}
|
|
@@ -6,8 +6,6 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
|
|
|
6
6
|
radioGroup: RadioGroup;
|
|
7
7
|
private ref;
|
|
8
8
|
private _uniqueId;
|
|
9
|
-
private _value;
|
|
10
|
-
_checked: boolean;
|
|
11
9
|
id: string;
|
|
12
10
|
name: string;
|
|
13
11
|
tabindex: number;
|
|
@@ -18,14 +16,18 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
|
|
|
18
16
|
size: string;
|
|
19
17
|
icon: string;
|
|
20
18
|
color: string;
|
|
21
|
-
disabled: boolean;
|
|
22
19
|
change: EventEmitter<any>;
|
|
23
20
|
blur: EventEmitter<any>;
|
|
24
21
|
focus: EventEmitter<any>;
|
|
22
|
+
private _checked;
|
|
23
|
+
private _value;
|
|
24
|
+
private _disabled;
|
|
25
25
|
get checked(): boolean;
|
|
26
26
|
set checked(value: boolean);
|
|
27
27
|
get value(): boolean;
|
|
28
28
|
set value(value: boolean);
|
|
29
|
+
get disabled(): boolean;
|
|
30
|
+
set disabled(value: boolean);
|
|
29
31
|
constructor(radioGroup: RadioGroup, ref: ChangeDetectorRef);
|
|
30
32
|
ngOnInit(): void;
|
|
31
33
|
_onInputChange(event: Event): void;
|
|
@@ -36,5 +38,5 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
|
|
|
36
38
|
private onTouchedCallback;
|
|
37
39
|
setDisabledState(disabled: boolean): void;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoRadioElement, [{ optional: true; }, null]>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NovoRadioElement, "novo-radio", never, { "id": "id"; "name": "name"; "tabindex": "tabindex"; "vertical": "vertical"; "label": "label"; "button": "button"; "theme": "theme"; "size": "size"; "icon": "icon"; "color": "color"; "
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NovoRadioElement, "novo-radio", never, { "id": "id"; "name": "name"; "tabindex": "tabindex"; "vertical": "vertical"; "label": "label"; "button": "button"; "theme": "theme"; "size": "size"; "icon": "icon"; "color": "color"; "checked": "checked"; "value": "value"; "disabled": "disabled"; }, { "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"]>;
|
|
40
42
|
}
|