@colijnit/corecomponents_v12 256.1.2 → 256.1.3
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/bundles/colijnit-corecomponents_v12.umd.js +34 -14
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12-255.1.14.tgz +0 -0
- package/colijnit-corecomponents_v12-255.1.15.tgz +0 -0
- package/colijnit-corecomponents_v12-255.1.16.tgz +0 -0
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/filter-item/filter-item.component.js +31 -7
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +8 -5
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +4 -4
- package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +1 -1
- package/fesm2015/colijnit-corecomponents_v12.js +38 -12
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/filter-item/filter-item.component.d.ts +14 -1
- package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +1 -1
- package/lib/interfaces/screen-config-adapter.component.interface.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3,7 +3,9 @@ import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
|
|
|
3
3
|
import { FilterItemViewmodel } from './filter-item-viewmodel';
|
|
4
4
|
import { IconCacheService } from '../icon/icon-cache.service';
|
|
5
5
|
import { FilterItemMode } from '../../core/enum/filterItem-mode.enum';
|
|
6
|
-
|
|
6
|
+
import { ScreenConfigAdapterComponent } from "../../interfaces/screen-config-adapter.component.interface";
|
|
7
|
+
import { ObjectConfiguration } from "@colijnit/ioneconnector/build/model/object-configuration";
|
|
8
|
+
export declare class FilterItemComponent implements OnInit, ScreenConfigAdapterComponent {
|
|
7
9
|
iconService: IconCacheService;
|
|
8
10
|
private _changeDetector;
|
|
9
11
|
icons: typeof CoreComponentsIcon;
|
|
@@ -29,6 +31,8 @@ export declare class FilterItemComponent implements OnInit {
|
|
|
29
31
|
fullRangeIsNull: boolean;
|
|
30
32
|
set model(newModel: any);
|
|
31
33
|
get model(): any;
|
|
34
|
+
set configObject(value: ObjectConfiguration);
|
|
35
|
+
get configObject(): ObjectConfiguration;
|
|
32
36
|
modelChange: EventEmitter<any>;
|
|
33
37
|
collectionChange: EventEmitter<FilterItemViewmodel[]>;
|
|
34
38
|
filterButtonClicked: EventEmitter<void>;
|
|
@@ -40,7 +44,16 @@ export declare class FilterItemComponent implements OnInit {
|
|
|
40
44
|
sliderMax: number;
|
|
41
45
|
dateRangeStart: Date;
|
|
42
46
|
dateRangeEnd: Date;
|
|
47
|
+
objectConfigName: string;
|
|
48
|
+
hidden: boolean;
|
|
49
|
+
required: boolean;
|
|
50
|
+
forceReadonly: boolean;
|
|
51
|
+
readonly: boolean;
|
|
52
|
+
maxLength: number;
|
|
53
|
+
decimals: number;
|
|
54
|
+
redErrorBackground: boolean;
|
|
43
55
|
checkBoxToTextModel: boolean;
|
|
56
|
+
private _configObject;
|
|
44
57
|
private _collection;
|
|
45
58
|
private _mode;
|
|
46
59
|
private _model;
|
|
@@ -8,9 +8,9 @@ export declare class ViewModeButtonsComponent implements OnInit {
|
|
|
8
8
|
readonly viewModes: typeof ContentViewMode;
|
|
9
9
|
showViewModes: ContentViewMode[];
|
|
10
10
|
viewModeChange: EventEmitter<ContentViewMode>;
|
|
11
|
-
showClass(): boolean;
|
|
12
11
|
set activeViewMode(value: ContentViewMode);
|
|
13
12
|
get activeViewMode(): ContentViewMode;
|
|
13
|
+
showClass(): boolean;
|
|
14
14
|
private _activeViewMode;
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
constructor(iconCacheService: IconCacheService);
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ObjectConfiguration } from "@colijnit/ioneconnector/build/model/object-configuration";
|
|
1
2
|
export interface ScreenConfigAdapterComponent {
|
|
2
3
|
objectConfigName: string;
|
|
3
4
|
hidden: boolean;
|
|
@@ -7,4 +8,5 @@ export interface ScreenConfigAdapterComponent {
|
|
|
7
8
|
maxLength: number;
|
|
8
9
|
decimals: number;
|
|
9
10
|
redErrorBackground: boolean;
|
|
11
|
+
configObject?: ObjectConfiguration;
|
|
10
12
|
}
|