@natec/mef-dev-ui-kit 1.1.6 → 1.1.8
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/markup-kit/card/card/card.component.mjs +1 -1
- package/esm2020/lib/markup-kit/modals/fill/fill.component.mjs +36 -1
- package/esm2020/lib/markup-kit/page-layouts/profile/profile.component.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.mjs +4 -1
- package/esm2020/lib/pg-components/switch/switch.component.mjs +7 -2
- package/fesm2015/natec-mef-dev-ui-kit.mjs +44 -1
- package/fesm2015/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/fesm2020/natec-mef-dev-ui-kit.mjs +44 -1
- package/fesm2020/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/lib/markup-kit/card/card/card.component.d.ts +35 -0
- package/lib/markup-kit/modals/fill/fill.component.d.ts +35 -0
- package/lib/pg-components/switch/switch.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -7,6 +7,41 @@ export declare class CardComponent implements OnInit {
|
|
|
7
7
|
card_footer: TemplateRef<void>;
|
|
8
8
|
card_type: string;
|
|
9
9
|
img: string;
|
|
10
|
+
/**
|
|
11
|
+
* Summary. (use period)
|
|
12
|
+
*
|
|
13
|
+
* Description. (use period)
|
|
14
|
+
*
|
|
15
|
+
* @since x.x.x
|
|
16
|
+
* @deprecated x.x.x Use new_function_name() instead.
|
|
17
|
+
* @access private
|
|
18
|
+
*
|
|
19
|
+
* @class
|
|
20
|
+
* @augments parent
|
|
21
|
+
* @mixes mixin
|
|
22
|
+
*
|
|
23
|
+
* @alias realName
|
|
24
|
+
* @memberof namespace
|
|
25
|
+
*
|
|
26
|
+
* @see Function/class relied on
|
|
27
|
+
* @link URL
|
|
28
|
+
* @global
|
|
29
|
+
*
|
|
30
|
+
* @fires eventName
|
|
31
|
+
* @fires className#eventName
|
|
32
|
+
* @listens event:eventName
|
|
33
|
+
* @listens className~event:eventName
|
|
34
|
+
*
|
|
35
|
+
* @param {type} var Description.
|
|
36
|
+
* @param {type} [var] Description of optional variable.
|
|
37
|
+
* @param {type} [var=default] Description of optional variable with default variable.
|
|
38
|
+
* @param {Object} objectVar Description.
|
|
39
|
+
* @param {type} objectVar.key Description of a key in the objectVar parameter.
|
|
40
|
+
*
|
|
41
|
+
* @yield {type} Yielded value description.
|
|
42
|
+
*
|
|
43
|
+
* @return {type} Return value description.
|
|
44
|
+
*/
|
|
10
45
|
imgUrl: string;
|
|
11
46
|
description: string;
|
|
12
47
|
constructor(router: Router);
|
|
@@ -10,6 +10,41 @@ export declare class FillComponent implements OnInit {
|
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
modalIsCloused(): void;
|
|
13
|
+
/**
|
|
14
|
+
* Summary. (use period)
|
|
15
|
+
*
|
|
16
|
+
* Description. (use period)
|
|
17
|
+
*
|
|
18
|
+
* @since x.x.x
|
|
19
|
+
* @deprecated x.x.x Use new_function_name() instead.
|
|
20
|
+
* @access private
|
|
21
|
+
*
|
|
22
|
+
* @class
|
|
23
|
+
* @augments parent
|
|
24
|
+
* @mixes mixin
|
|
25
|
+
*
|
|
26
|
+
* @alias realName
|
|
27
|
+
* @memberof namespace
|
|
28
|
+
*
|
|
29
|
+
* @see Function/class relied on
|
|
30
|
+
* @link URL
|
|
31
|
+
* @global
|
|
32
|
+
*
|
|
33
|
+
* @fires eventName
|
|
34
|
+
* @fires className#eventName
|
|
35
|
+
* @listens event:eventName
|
|
36
|
+
* @listens className~event:eventName
|
|
37
|
+
*
|
|
38
|
+
* @param {type} var Description.
|
|
39
|
+
* @param {type} [var] Description of optional variable.
|
|
40
|
+
* @param {type} [var=default] Description of optional variable with default variable.
|
|
41
|
+
* @param {Object} objectVar Description.
|
|
42
|
+
* @param {type} objectVar.key Description of a key in the objectVar parameter.
|
|
43
|
+
*
|
|
44
|
+
* @yield {type} Yielded value description.
|
|
45
|
+
*
|
|
46
|
+
* @return {type} Return value description.
|
|
47
|
+
*/
|
|
13
48
|
showModal(): void;
|
|
14
49
|
hideModal(): void;
|
|
15
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<FillComponent, never>;
|
|
@@ -11,6 +11,7 @@ export declare class MefDevSwitchComponent implements OnInit, ControlValueAccess
|
|
|
11
11
|
_checked: boolean;
|
|
12
12
|
onChange: (value: boolean) => void;
|
|
13
13
|
onTouched: () => void;
|
|
14
|
+
set Value(value: boolean);
|
|
14
15
|
set Size(value: string);
|
|
15
16
|
set Color(value: string);
|
|
16
17
|
get Size(): string;
|
|
@@ -25,5 +26,5 @@ export declare class MefDevSwitchComponent implements OnInit, ControlValueAccess
|
|
|
25
26
|
setDisabledState(isDisabled: boolean): void;
|
|
26
27
|
ngOnInit(): void;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevSwitchComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MefDevSwitchComponent, "mefdev-switch", never, { "Size": "Size"; "Color": "Color"; "Disabled": "Disabled"; }, { "onChange": "onChange"; }, never, ["[checked]", "[unchecked]"]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MefDevSwitchComponent, "mefdev-switch", never, { "Value": "Value"; "Size": "Size"; "Color": "Color"; "Disabled": "Disabled"; }, { "onChange": "onChange"; }, never, ["[checked]", "[unchecked]"]>;
|
|
29
30
|
}
|