@colijnit/corecomponents_v12 12.0.88 → 12.0.89
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 +8 -32
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/icon/icon.component.js +5 -13
- package/esm2015/lib/components/input-search/input-search.component.js +3 -13
- package/esm2015/lib/components/input-text/input-text.component.js +6 -12
- package/fesm2015/colijnit-corecomponents_v12.js +10 -34
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/icon/icon.component.d.ts +1 -2
- package/lib/components/input-search/input-search.component.d.ts +0 -5
- package/lib/components/input-text/input-text.component.d.ts +1 -6
- package/lib/style/_variables.scss +12 -0
- package/lib/style/corecomponents-globals.scss +41 -0
- package/package.json +1 -1
|
@@ -4,9 +4,8 @@ import { IconCacheService } from './icon-cache.service';
|
|
|
4
4
|
export declare class IconComponent {
|
|
5
5
|
private _iconCache;
|
|
6
6
|
set icon(value: CoreComponentsIcon);
|
|
7
|
-
|
|
7
|
+
iconData: SafeHtml | undefined;
|
|
8
8
|
showClass: boolean;
|
|
9
|
-
innerIconData: SafeHtml;
|
|
10
9
|
constructor(_iconCache: IconCacheService);
|
|
11
10
|
private _setIconFromEnum;
|
|
12
11
|
}
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
|
|
3
3
|
import { BaseInputComponent } from '../base/base-input.component';
|
|
4
|
-
import { SafeHtml } from '@angular/platform-browser';
|
|
5
4
|
export declare class InputSearchComponent extends BaseInputComponent<string> implements OnDestroy {
|
|
6
5
|
readonly searchIcon: CoreComponentsIcon;
|
|
7
6
|
placeholder: string;
|
|
8
7
|
search: EventEmitter<string>;
|
|
9
8
|
useLeftIcon: boolean;
|
|
10
9
|
useRightIcon: boolean;
|
|
11
|
-
leftIconData: SafeHtml | undefined;
|
|
12
|
-
rightIconData: SafeHtml | undefined;
|
|
13
10
|
centerLabel: boolean;
|
|
14
|
-
leftIconClick: EventEmitter<MouseEvent>;
|
|
15
|
-
rightIconClick: EventEmitter<MouseEvent>;
|
|
16
11
|
showClass(): boolean;
|
|
17
12
|
handleKeyDown(event: KeyboardEvent): void;
|
|
18
13
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, ElementRef
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, ElementRef } from "@angular/core";
|
|
2
2
|
import { BaseInputComponent } from "../base/base-input.component";
|
|
3
3
|
import { CoreComponentsIcon } from "../../core/enum/core-components-icon.enum";
|
|
4
4
|
import { KeyboardCode } from "../../core/enum/keyboard-code.enum";
|
|
5
5
|
import { FormInputUserModelChangeListenerService } from "../../core/service/form-input-user-change-listener.service";
|
|
6
6
|
import { NgZoneWrapperService } from "../../core/service/ng-zone-wrapper.service";
|
|
7
7
|
import { FormComponent } from "../form/form.component";
|
|
8
|
-
import { SafeHtml } from '@angular/platform-browser';
|
|
9
8
|
export declare class InputTextComponent extends BaseInputComponent<any> implements AfterViewInit {
|
|
10
9
|
formComponent: FormComponent;
|
|
11
10
|
protected changeDetector: ChangeDetectorRef;
|
|
@@ -23,12 +22,8 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
|
|
|
23
22
|
keyDownWhiteList: KeyboardCode[];
|
|
24
23
|
showPlaceholderOnFocus: boolean;
|
|
25
24
|
leftIcon: CoreComponentsIcon;
|
|
26
|
-
leftIconData: SafeHtml | undefined;
|
|
27
25
|
rightIcon: CoreComponentsIcon;
|
|
28
|
-
rightIconData: SafeHtml | undefined;
|
|
29
26
|
noStyle: boolean;
|
|
30
|
-
leftIconClick: EventEmitter<MouseEvent>;
|
|
31
|
-
rightIconClick: EventEmitter<MouseEvent>;
|
|
32
27
|
set model(value: any);
|
|
33
28
|
get model(): any;
|
|
34
29
|
showClass(): boolean;
|
|
@@ -12,6 +12,10 @@ $cc-icon-size: 40px !default;
|
|
|
12
12
|
$cc-icon-size-small: 30px !default;
|
|
13
13
|
$cc-default-border-radius: 3px !default;
|
|
14
14
|
|
|
15
|
+
$cc-scrollbar-thumbColor: #484f60 !default;
|
|
16
|
+
$cc-scrollbar-trackColor: #e8eceb !default;
|
|
17
|
+
$cc-scrollbar-stopPoint: 10% !default;
|
|
18
|
+
|
|
15
19
|
$cc-color-action: #2b60a7 !default;
|
|
16
20
|
$accent: $cc-color-action !default;
|
|
17
21
|
$cc-color-input-background-color: white !default;
|
|
@@ -129,6 +133,14 @@ $cc-checkbox-check-hover-color: $cc-checkbox-check-color !default;
|
|
|
129
133
|
$cc-radiobutton-color-action: #5FDCB3 !default;
|
|
130
134
|
/***************/
|
|
131
135
|
|
|
136
|
+
/* dialog */
|
|
137
|
+
$cc-dialog-header-title-font-size: 14px !default;
|
|
138
|
+
$cc-dialog-header-title-margin: 0 0 20px 0 !default;
|
|
139
|
+
$cc-dialog-header-title-font-weight: bold !default;
|
|
140
|
+
$cc-dialog-footer-justify-content: center !default;
|
|
141
|
+
$cc-dialog-footer-column-gap: 10px !default;
|
|
142
|
+
/**********/
|
|
143
|
+
|
|
132
144
|
/* syncfusion overrides */
|
|
133
145
|
$input-header-font-color: $cc-color-label;
|
|
134
146
|
$input-placeholder: $cc-color-label;
|
|
@@ -71,3 +71,44 @@ label.e-float-text,
|
|
|
71
71
|
|
|
72
72
|
@import "./variables";
|
|
73
73
|
@import '~@syncfusion/ej2-inputs/styles/input/material.scss';
|
|
74
|
+
.co-small-scrollbar {
|
|
75
|
+
overflow: auto;
|
|
76
|
+
&::-webkit-scrollbar {
|
|
77
|
+
-webkit-appearance: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&::-webkit-scrollbar:vertical {
|
|
81
|
+
width: 15px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&::-webkit-scrollbar:horizontal {
|
|
85
|
+
height: 15px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&::-webkit-scrollbar-thumb:vertical {
|
|
89
|
+
background: linear-gradient(to left, $cc-scrollbar-thumbColor, $cc-scrollbar-thumbColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
|
|
90
|
+
}
|
|
91
|
+
&::-webkit-scrollbar-track:vertical {
|
|
92
|
+
background: linear-gradient(to left, $cc-scrollbar-trackColor, $cc-scrollbar-trackColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
|
|
93
|
+
}
|
|
94
|
+
&::-webkit-scrollbar-thumb:horizontal {
|
|
95
|
+
background: linear-gradient(to top, $cc-scrollbar-thumbColor, $cc-scrollbar-thumbColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
|
|
96
|
+
}
|
|
97
|
+
&::-webkit-scrollbar-track:horizontal {
|
|
98
|
+
background: linear-gradient(to top, $cc-scrollbar-trackColor, $cc-scrollbar-trackColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// global for dialog \\
|
|
103
|
+
.co-dialog-header-title {
|
|
104
|
+
font-size: $cc-dialog-header-title-font-size;
|
|
105
|
+
margin: $cc-dialog-header-title-margin;
|
|
106
|
+
font-weight: $cc-dialog-header-title-font-weight;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.co-dialog-footer-button-wrapper {
|
|
110
|
+
display: flex;
|
|
111
|
+
justify-content: $cc-dialog-footer-justify-content;
|
|
112
|
+
column-gap: $cc-dialog-footer-column-gap;
|
|
113
|
+
}
|
|
114
|
+
///////////////////////
|