@colijnit/corecomponents_v12 260.1.10 → 260.1.12
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/README.md +24 -24
- package/bundles/colijnit-corecomponents_v12.umd.js +19 -4
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/base/base-input.component.js +3 -1
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +22 -22
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +16 -16
- package/esm2015/lib/components/filter-item/filter-item.component.js +162 -162
- package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +33 -33
- package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +1 -1
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +6 -2
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +2 -2
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +31 -31
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +189 -181
- package/esm2015/lib/core/enum/core-components-icon.enum.js +1 -1
- package/esm2015/lib/core/model/core-components-icon-svg.js +1 -1
- package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/colijnit-corecomponents_v12.js +455 -441
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -0
- package/lib/components/calendar/style/_material-definition.scss +46 -46
- package/lib/components/simple-grid/simple-grid.component.d.ts +2 -1
- package/lib/components/simple-grid/style/_layout.scss +7 -25
- package/package.json +1 -1
|
@@ -68,6 +68,7 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
|
|
|
68
68
|
readonly keyDown: EventEmitter<any>;
|
|
69
69
|
readonly keyUp: EventEmitter<any>;
|
|
70
70
|
readonly modelChange: EventEmitter<any>;
|
|
71
|
+
readonly selectedValueChange: EventEmitter<any>;
|
|
71
72
|
readonly userModelChange: EventEmitter<any>;
|
|
72
73
|
readonly hiddenChange: EventEmitter<boolean>;
|
|
73
74
|
readonly cancelClicked: EventEmitter<void>;
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
$cc-co-calendar-font-family: $cc-font-family !default;
|
|
2
|
-
$cc-co-calendar-width: auto !default;
|
|
3
|
-
$cc-co-calendar-padding: 0 !default;
|
|
4
|
-
$cc-co-calendar-background-color: white !default;
|
|
5
|
-
$cc-co-calendar-border-radius: 5px !default;
|
|
6
|
-
$cc-co-calendar-border: 1px solid #CCCCCC !default;
|
|
7
|
-
$cc-co-calendar-header-margin-bottom: 0 !default;
|
|
8
|
-
$cc-co-calendar-change-month-button-border-radius: 5px !default;
|
|
9
|
-
$cc-co-calendar-change-month-button-border: 0px solid #CCCCCC !default;
|
|
10
|
-
$cc-co-calendar-change-month-button-padding: 5px !default;
|
|
11
|
-
$cc-co-calendar-header-title-font-size: 14px !default;
|
|
12
|
-
$cc-co-calendar-day-height: 30px !default;
|
|
13
|
-
$cc-co-calendar-day-margin: 2px 0 !default;
|
|
14
|
-
$cc-co-calendar-day-hover-background-color: #f8f8fa !default;
|
|
15
|
-
$cc-co-calendar-day-hover-color: white !default;
|
|
16
|
-
$cc-co-calendar-day-selected-background-color: $cc-color-action !default;
|
|
17
|
-
$cc-co-calendar-day-selected-color: $cc-color-light !default;
|
|
18
|
-
$cc-co-calendar-week-number-height: 30px !default;
|
|
19
|
-
$cc-co-calendar-week-number-margin: 0 2px 0 0 !default;
|
|
20
|
-
$cc-co-calendar-week-number-font-size: 10px !default;
|
|
21
|
-
$cc-co-calendar-week-number-width: 30px !default;
|
|
22
|
-
$cc-co-calendar-week-number-background: #F8F8FA !default;
|
|
23
|
-
$cc-co-calendar-week-number-first-height: 30px !default;
|
|
24
|
-
$cc-co-calendar-week-number-first-margin: 0 !default;
|
|
25
|
-
$cc-co-calendar-week-number-first-color: #ccc !default;
|
|
26
|
-
$cc-co-calendar-month-or-year-padding: 5px !default;
|
|
27
|
-
$cc-co-calendar-month-or-year-hover-background-color: $cc-color-hover !default;
|
|
28
|
-
$cc-co-calendar-month-or-year-hover-padding: 5px !default;
|
|
29
|
-
$cc-co-calendar-weekday-font-size: 12px !default;
|
|
30
|
-
$cc-co-calendar-weekday-height: 30px !default;
|
|
31
|
-
$cc-co-calendar-weekday-width: 28px !default;
|
|
32
|
-
$cc-co-calendar-weekday-color: black !default;
|
|
33
|
-
$cc-co-calendar-weekday-background: transparent !default;
|
|
34
|
-
$cc-co-calendar-weekday-margin: 0 1px !default;
|
|
35
|
-
$cc-co-calendar-day-number-font-size: 12px !default;
|
|
36
|
-
$cc-co-calendar-day-number-font-weight: normal !default;
|
|
37
|
-
$cc-co-calendar-highlighted-day-background-color: #edf4fd !default;
|
|
38
|
-
$cc-co-calendar-highlighted-day-color: $cc-color-dark !default;
|
|
39
|
-
$cc-co-calendar-highlighted-day-font-weight: normal !default;
|
|
40
|
-
$cc-co-calendar-selected-day-background-color: $cc-color-action !default;
|
|
41
|
-
$cc-co-calendar-selected-day-color: $cc-color-light !default;
|
|
42
|
-
$cc-co-calendar-selected-day-start-border-radius: 100% !default;
|
|
43
|
-
$cc-co-calendar-selected-day-end-border-radius: 100% !default;
|
|
44
|
-
$cc-co-calendar-selection-grid-gap: 15px !default;
|
|
45
|
-
$cc-co-calendar-selection-grid-padding: 5px !default;
|
|
46
|
-
$cc-co-calendar-z-index: 9999 !default;
|
|
1
|
+
$cc-co-calendar-font-family: $cc-font-family !default;
|
|
2
|
+
$cc-co-calendar-width: auto !default;
|
|
3
|
+
$cc-co-calendar-padding: 0 !default;
|
|
4
|
+
$cc-co-calendar-background-color: white !default;
|
|
5
|
+
$cc-co-calendar-border-radius: 5px !default;
|
|
6
|
+
$cc-co-calendar-border: 1px solid #CCCCCC !default;
|
|
7
|
+
$cc-co-calendar-header-margin-bottom: 0 !default;
|
|
8
|
+
$cc-co-calendar-change-month-button-border-radius: 5px !default;
|
|
9
|
+
$cc-co-calendar-change-month-button-border: 0px solid #CCCCCC !default;
|
|
10
|
+
$cc-co-calendar-change-month-button-padding: 5px !default;
|
|
11
|
+
$cc-co-calendar-header-title-font-size: 14px !default;
|
|
12
|
+
$cc-co-calendar-day-height: 30px !default;
|
|
13
|
+
$cc-co-calendar-day-margin: 2px 0 !default;
|
|
14
|
+
$cc-co-calendar-day-hover-background-color: #f8f8fa !default;
|
|
15
|
+
$cc-co-calendar-day-hover-color: white !default;
|
|
16
|
+
$cc-co-calendar-day-selected-background-color: $cc-color-action !default;
|
|
17
|
+
$cc-co-calendar-day-selected-color: $cc-color-light !default;
|
|
18
|
+
$cc-co-calendar-week-number-height: 30px !default;
|
|
19
|
+
$cc-co-calendar-week-number-margin: 0 2px 0 0 !default;
|
|
20
|
+
$cc-co-calendar-week-number-font-size: 10px !default;
|
|
21
|
+
$cc-co-calendar-week-number-width: 30px !default;
|
|
22
|
+
$cc-co-calendar-week-number-background: #F8F8FA !default;
|
|
23
|
+
$cc-co-calendar-week-number-first-height: 30px !default;
|
|
24
|
+
$cc-co-calendar-week-number-first-margin: 0 !default;
|
|
25
|
+
$cc-co-calendar-week-number-first-color: #ccc !default;
|
|
26
|
+
$cc-co-calendar-month-or-year-padding: 5px !default;
|
|
27
|
+
$cc-co-calendar-month-or-year-hover-background-color: $cc-color-hover !default;
|
|
28
|
+
$cc-co-calendar-month-or-year-hover-padding: 5px !default;
|
|
29
|
+
$cc-co-calendar-weekday-font-size: 12px !default;
|
|
30
|
+
$cc-co-calendar-weekday-height: 30px !default;
|
|
31
|
+
$cc-co-calendar-weekday-width: 28px !default;
|
|
32
|
+
$cc-co-calendar-weekday-color: black !default;
|
|
33
|
+
$cc-co-calendar-weekday-background: transparent !default;
|
|
34
|
+
$cc-co-calendar-weekday-margin: 0 1px !default;
|
|
35
|
+
$cc-co-calendar-day-number-font-size: 12px !default;
|
|
36
|
+
$cc-co-calendar-day-number-font-weight: normal !default;
|
|
37
|
+
$cc-co-calendar-highlighted-day-background-color: #edf4fd !default;
|
|
38
|
+
$cc-co-calendar-highlighted-day-color: $cc-color-dark !default;
|
|
39
|
+
$cc-co-calendar-highlighted-day-font-weight: normal !default;
|
|
40
|
+
$cc-co-calendar-selected-day-background-color: $cc-color-action !default;
|
|
41
|
+
$cc-co-calendar-selected-day-color: $cc-color-light !default;
|
|
42
|
+
$cc-co-calendar-selected-day-start-border-radius: 100% !default;
|
|
43
|
+
$cc-co-calendar-selected-day-end-border-radius: 100% !default;
|
|
44
|
+
$cc-co-calendar-selection-grid-gap: 15px !default;
|
|
45
|
+
$cc-co-calendar-selection-grid-padding: 5px !default;
|
|
46
|
+
$cc-co-calendar-z-index: 9999 !default;
|
|
@@ -50,7 +50,8 @@ export declare class SimpleGridComponent extends BaseSimpleGridComponent {
|
|
|
50
50
|
addNewRow(): Promise<void>;
|
|
51
51
|
validateAndSave(stopediting?: boolean): boolean;
|
|
52
52
|
cancelEditRow(): void;
|
|
53
|
-
removeRow(): void;
|
|
53
|
+
removeRow(row: any): void;
|
|
54
|
+
removeSelectedRow(): void;
|
|
54
55
|
handleClickRow(event: MouseEvent, index: number): void;
|
|
55
56
|
selectTheRow(index: number, emit?: boolean): void;
|
|
56
57
|
handleDblClickRow(event: MouseEvent, index: number, row: any): Promise<void>;
|
|
@@ -27,36 +27,18 @@
|
|
|
27
27
|
width: 100%;
|
|
28
28
|
border-collapse: collapse;
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
&:last-child.icons-col {
|
|
33
|
-
min-width: 30px;
|
|
34
|
-
max-width: 100%;
|
|
35
|
-
|
|
36
|
-
&.col-width-row-buttons {
|
|
37
|
-
width: 140px;
|
|
38
|
-
max-width: 140px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&.col-width-delete {
|
|
42
|
-
width: 30px;
|
|
43
|
-
max-width: 30px;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
td {
|
|
51
|
-
&:last-child.icons-container {
|
|
52
|
-
width: auto;
|
|
53
|
-
padding: 0;
|
|
54
|
-
height: 100%;
|
|
30
|
+
td.icons-container {
|
|
31
|
+
padding: 4px;
|
|
55
32
|
display: flex;
|
|
56
33
|
justify-content: center;
|
|
57
34
|
align-items: center;
|
|
58
35
|
gap: 4px;
|
|
36
|
+
visibility: hidden;
|
|
37
|
+
|
|
38
|
+
&.show-content {
|
|
39
|
+
visibility: visible;
|
|
59
40
|
}
|
|
41
|
+
|
|
60
42
|
}
|
|
61
43
|
}
|
|
62
44
|
// styling outside of grid because of drag and drop functionality
|