imm-element-ui 1.5.1 → 1.5.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/esm2022/lib/form/form/form.component.mjs +2 -1
- package/esm2022/lib/form/form-field/form-field.mjs +95 -67
- package/esm2022/lib/form/form-field/form-type.mjs +2 -2
- package/esm2022/lib/form/form-field/index.mjs +4 -0
- package/esm2022/lib/form/form-type/codemirror.type.mjs +11 -7
- package/esm2022/lib/form/form-type/index.mjs +2 -0
- package/esm2022/lib/grid/cell-render/img-renderer.mjs +27 -27
- package/esm2022/lib/import/import.component.mjs +1 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/imm-element-ui.mjs +133 -101
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/crumb-action/crumb-action.component.d.ts +1 -1
- package/lib/form/form-field/index.d.ts +3 -0
- package/lib/form/form-type/codemirror.type.d.ts +2 -1
- package/lib/form/form-type/index.d.ts +1 -0
- package/lib/grid/grid/grid.component.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/lib/crumb-action/crumb-action.component.scss +60 -60
- package/src/lib/row-selector/row-selector.component.scss +1 -1
- package/src/lib/search/pop-date/pop-date.component.scss +67 -67
- package/src/lib/search/pop-list/pop-list.component.scss +23 -23
- package/src/lib/search/pop-panel/pop-panel.component.scss +32 -32
- package/src/lib/search/pop-self/pop-self.component.scss +80 -80
- package/src/lib/search/pop-sort/pop-sort.component.scss +49 -49
- package/src/lib/search/pop-tree/pop-tree.component.scss +37 -37
- package/src/lib/search/search/search.component.scss +70 -70
- package/src/lib/search/search-tip/search-tip.component.scss +50 -50
- package/src/lib/search/text-panel/text-panel.component.scss +24 -24
|
@@ -49,7 +49,7 @@ export declare class CrumbActionComponent extends AmComponent implements OnInit
|
|
|
49
49
|
listAct(item: any): void;
|
|
50
50
|
actEvent(item: any): void;
|
|
51
51
|
toggleAct(event: any): void;
|
|
52
|
-
setSaveClass(): "
|
|
52
|
+
setSaveClass(): "danger" | "secondary";
|
|
53
53
|
ngOnDestroy(): void;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrumbActionComponent, never>;
|
|
55
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "addVisible": { "alias": "addVisible"; "required": false; "isSignal": true; }; "importVisible": { "alias": "importVisible"; "required": false; "isSignal": true; }; "exportVisible": { "alias": "exportVisible"; "required": false; "isSignal": true; }; "newUrl": { "alias": "newUrl"; "required": false; "isSignal": true; }; "configNewPath": { "alias": "configNewPath"; "required": false; "isSignal": true; }; "onExport": { "alias": "onExport"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "isList": { "alias": "isList"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; "actionList": { "alias": "actionList"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "menus": { "alias": "menus"; "required": false; "isSignal": true; }; "saveBtnDisable": { "alias": "saveBtnDisable"; "required": false; "isSignal": true; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|
|
@@ -19,6 +19,7 @@ export declare class CodeMirrorComponent {
|
|
|
19
19
|
props: CodeMirrorProps;
|
|
20
20
|
editorView: EditorView;
|
|
21
21
|
templateIndex: number;
|
|
22
|
+
change: import("@angular/core").OutputEmitterRef<string>;
|
|
22
23
|
constructor(action: ActionService, renderer: Renderer2);
|
|
23
24
|
ngAfterViewInit(): void;
|
|
24
25
|
ngOnDestroy(): void;
|
|
@@ -28,5 +29,5 @@ export declare class CodeMirrorComponent {
|
|
|
28
29
|
minLines(min: number): import("@codemirror/state").Extension;
|
|
29
30
|
formatting(): import("@codemirror/state").Extension;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodeMirrorComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodeMirrorComponent, "form-codemirror", never, { "field": { "alias": "field"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodeMirrorComponent, "form-codemirror", never, { "field": { "alias": "field"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, never, true, never>;
|
|
32
33
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './codemirror.type';
|
|
@@ -256,10 +256,10 @@ export declare class GridComponent {
|
|
|
256
256
|
rawPrm?: Search;
|
|
257
257
|
deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
|
|
258
258
|
addEmit: import("@angular/core").OutputEmitterRef<void>;
|
|
259
|
-
addType: import("@angular/core").InputSignal<"
|
|
259
|
+
addType: import("@angular/core").InputSignal<"none" | "handle" | "select" | undefined>;
|
|
260
260
|
selectData: import("@angular/core").InputSignal<any[] | undefined>;
|
|
261
261
|
showAct: import("@angular/core").InputSignal<boolean>;
|
|
262
|
-
actPos: import("@angular/core").InputSignal<"
|
|
262
|
+
actPos: import("@angular/core").InputSignal<"bottom" | "top">;
|
|
263
263
|
authLevel: import("@angular/core").InputSignal<number>;
|
|
264
264
|
http: HttpClient;
|
|
265
265
|
renderer: Renderer2;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from './lib/am/am.component';
|
|
2
2
|
export * from './lib/form/form/form.component';
|
|
3
|
+
export * from './lib/form/form-field';
|
|
4
|
+
export * from './lib/form/form-type';
|
|
3
5
|
export * from './lib/page-form/page-form.interface';
|
|
4
6
|
export * from './lib/crumb-action/crumb-action.component';
|
|
5
7
|
export * from './lib/grid/pager/pager.component';
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
@import 'styles';
|
|
2
|
-
.crumb-title {
|
|
3
|
-
color: var(--p-primary-color);
|
|
4
|
-
}
|
|
5
|
-
.crumb-title + .crumb-title {
|
|
6
|
-
padding-left: .5rem;
|
|
7
|
-
&::before {
|
|
8
|
-
padding-right: .5rem;
|
|
9
|
-
// color: var(--breadcrumb-divider-color);
|
|
10
|
-
content: var(--breadcrumb-divider, "/");
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
:host::ng-deep {
|
|
14
|
-
.p-button-text.p-button-secondary {
|
|
15
|
-
color:var(--p-surface-700);
|
|
16
|
-
}
|
|
17
|
-
.title-action {
|
|
18
|
-
.p-button{
|
|
19
|
-
padding: 0;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
.new-action {
|
|
23
|
-
.p-button {
|
|
24
|
-
padding: 0;
|
|
25
|
-
button {
|
|
26
|
-
padding-top: 2px;
|
|
27
|
-
height: 100%;
|
|
28
|
-
align-items: center;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.select-crumb {
|
|
34
|
-
.p-button {
|
|
35
|
-
padding: 0;
|
|
36
|
-
background-color: #fff;
|
|
37
|
-
line-height: 1;
|
|
38
|
-
|
|
39
|
-
button {
|
|
40
|
-
padding: 0;
|
|
41
|
-
width: 17px;
|
|
42
|
-
height: 17px;
|
|
43
|
-
// width: 20px;
|
|
44
|
-
// height: 20px;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
.p-popover-content {
|
|
49
|
-
padding:.5rem
|
|
50
|
-
}
|
|
51
|
-
.left-btn {
|
|
52
|
-
.p-button {
|
|
53
|
-
height: 33px;
|
|
54
|
-
min-width: 51px;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
// .current-title {
|
|
59
|
-
// width: calc(100% - 105px);
|
|
60
|
-
// }
|
|
1
|
+
@import '../styles/styles.scss';
|
|
2
|
+
.crumb-title {
|
|
3
|
+
color: var(--p-primary-color);
|
|
4
|
+
}
|
|
5
|
+
.crumb-title + .crumb-title {
|
|
6
|
+
padding-left: .5rem;
|
|
7
|
+
&::before {
|
|
8
|
+
padding-right: .5rem;
|
|
9
|
+
// color: var(--breadcrumb-divider-color);
|
|
10
|
+
content: var(--breadcrumb-divider, "/");
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
:host::ng-deep {
|
|
14
|
+
.p-button-text.p-button-secondary {
|
|
15
|
+
color:var(--p-surface-700);
|
|
16
|
+
}
|
|
17
|
+
.title-action {
|
|
18
|
+
.p-button{
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.new-action {
|
|
23
|
+
.p-button {
|
|
24
|
+
padding: 0;
|
|
25
|
+
button {
|
|
26
|
+
padding-top: 2px;
|
|
27
|
+
height: 100%;
|
|
28
|
+
align-items: center;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.select-crumb {
|
|
34
|
+
.p-button {
|
|
35
|
+
padding: 0;
|
|
36
|
+
background-color: #fff;
|
|
37
|
+
line-height: 1;
|
|
38
|
+
|
|
39
|
+
button {
|
|
40
|
+
padding: 0;
|
|
41
|
+
width: 17px;
|
|
42
|
+
height: 17px;
|
|
43
|
+
// width: 20px;
|
|
44
|
+
// height: 20px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
.p-popover-content {
|
|
49
|
+
padding:.5rem
|
|
50
|
+
}
|
|
51
|
+
.left-btn {
|
|
52
|
+
.p-button {
|
|
53
|
+
height: 33px;
|
|
54
|
+
min-width: 51px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
// .current-title {
|
|
59
|
+
// width: calc(100% - 105px);
|
|
60
|
+
// }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@import 'styles';
|
|
1
|
+
@import '../styles/styles.scss';
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
@import 'styles';
|
|
2
|
-
::ng-deep {
|
|
3
|
-
.s-pop-date-container {
|
|
4
|
-
.p-inputtext {
|
|
5
|
-
font-size: 12px;
|
|
6
|
-
}
|
|
7
|
-
.p-select-sm .p-select-label {
|
|
8
|
-
font-size: 12px;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
.s-pop-date-select-panel {
|
|
12
|
-
.p-select-option {
|
|
13
|
-
font-size: 12px;
|
|
14
|
-
padding: 0.25rem 0.75rem;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
.s-pop-date-datepicker-panel {
|
|
18
|
-
.p-datepicker-calendar {
|
|
19
|
-
font-size: 12px;
|
|
20
|
-
.p-datepicker-day-view {
|
|
21
|
-
font-size: 12px;
|
|
22
|
-
.p-datepicker-day {
|
|
23
|
-
height: 1.5rem;
|
|
24
|
-
width: 1.5rem;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.s-pop-date-container {
|
|
31
|
-
padding: 5px 0;
|
|
32
|
-
border-bottom: solid 1px #d6d8db;
|
|
33
|
-
}
|
|
34
|
-
.s-pop-date-label {
|
|
35
|
-
padding: 2.5px 1.6rem;
|
|
36
|
-
display: flex;
|
|
37
|
-
justify-content: space-between;
|
|
38
|
-
align-items: center;
|
|
39
|
-
// font-size: 14px;
|
|
40
|
-
}
|
|
41
|
-
.s-pop-date-label-icon {
|
|
42
|
-
color: var(--p-form-field-icon-color);
|
|
43
|
-
font-size: 12px;
|
|
44
|
-
}
|
|
45
|
-
.s-pop-date-label:hover {
|
|
46
|
-
background-color: var(--p-list-option-focus-background);
|
|
47
|
-
cursor: pointer;
|
|
48
|
-
}
|
|
49
|
-
.s-pop-date-panel {
|
|
50
|
-
padding: 6px 0;
|
|
51
|
-
}
|
|
52
|
-
.s-pop-date-panel-show {
|
|
53
|
-
display: block;
|
|
54
|
-
}
|
|
55
|
-
.s-pop-date-panel-hide {
|
|
56
|
-
display: none;
|
|
57
|
-
}
|
|
58
|
-
.s-pop-date-range {
|
|
59
|
-
padding: 0.5rem 2rem;
|
|
60
|
-
height: 30px;
|
|
61
|
-
font-size: 12px;
|
|
62
|
-
}
|
|
63
|
-
.s-pop-date-picker {
|
|
64
|
-
padding: 0.5rem 2rem;
|
|
65
|
-
height: 30px;
|
|
66
|
-
font-size: 12px;
|
|
67
|
-
}
|
|
1
|
+
@import '../../styles/styles.scss';
|
|
2
|
+
::ng-deep {
|
|
3
|
+
.s-pop-date-container {
|
|
4
|
+
.p-inputtext {
|
|
5
|
+
font-size: 12px;
|
|
6
|
+
}
|
|
7
|
+
.p-select-sm .p-select-label {
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
.s-pop-date-select-panel {
|
|
12
|
+
.p-select-option {
|
|
13
|
+
font-size: 12px;
|
|
14
|
+
padding: 0.25rem 0.75rem;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.s-pop-date-datepicker-panel {
|
|
18
|
+
.p-datepicker-calendar {
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
.p-datepicker-day-view {
|
|
21
|
+
font-size: 12px;
|
|
22
|
+
.p-datepicker-day {
|
|
23
|
+
height: 1.5rem;
|
|
24
|
+
width: 1.5rem;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.s-pop-date-container {
|
|
31
|
+
padding: 5px 0;
|
|
32
|
+
border-bottom: solid 1px #d6d8db;
|
|
33
|
+
}
|
|
34
|
+
.s-pop-date-label {
|
|
35
|
+
padding: 2.5px 1.6rem;
|
|
36
|
+
display: flex;
|
|
37
|
+
justify-content: space-between;
|
|
38
|
+
align-items: center;
|
|
39
|
+
// font-size: 14px;
|
|
40
|
+
}
|
|
41
|
+
.s-pop-date-label-icon {
|
|
42
|
+
color: var(--p-form-field-icon-color);
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
}
|
|
45
|
+
.s-pop-date-label:hover {
|
|
46
|
+
background-color: var(--p-list-option-focus-background);
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
}
|
|
49
|
+
.s-pop-date-panel {
|
|
50
|
+
padding: 6px 0;
|
|
51
|
+
}
|
|
52
|
+
.s-pop-date-panel-show {
|
|
53
|
+
display: block;
|
|
54
|
+
}
|
|
55
|
+
.s-pop-date-panel-hide {
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
.s-pop-date-range {
|
|
59
|
+
padding: 0.5rem 2rem;
|
|
60
|
+
height: 30px;
|
|
61
|
+
font-size: 12px;
|
|
62
|
+
}
|
|
63
|
+
.s-pop-date-picker {
|
|
64
|
+
padding: 0.5rem 2rem;
|
|
65
|
+
height: 30px;
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
@import 'styles';
|
|
2
|
-
.s-check {
|
|
3
|
-
padding: 0 2.5px;
|
|
4
|
-
font-size: 1rem;
|
|
5
|
-
width: 1.5rem;
|
|
6
|
-
line-height: 1;
|
|
7
|
-
display: inline-block;
|
|
8
|
-
}
|
|
9
|
-
.s-pop-panel-item {
|
|
10
|
-
padding: 6px 0;
|
|
11
|
-
border-bottom: solid 1px #d6d8db;
|
|
12
|
-
}
|
|
13
|
-
.s-pop-panel-item-option {
|
|
14
|
-
// font-size: 14px;
|
|
15
|
-
padding: 2px 0;
|
|
16
|
-
}
|
|
17
|
-
.s-pop-panel-item-option:hover {
|
|
18
|
-
background-color: var(--p-list-option-focus-background);
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
.s-pop-panel-item-selected-option {
|
|
22
|
-
color: var(--p-form-field-focus-border-color)
|
|
23
|
-
}
|
|
1
|
+
@import '../../styles/styles.scss';
|
|
2
|
+
.s-check {
|
|
3
|
+
padding: 0 2.5px;
|
|
4
|
+
font-size: 1rem;
|
|
5
|
+
width: 1.5rem;
|
|
6
|
+
line-height: 1;
|
|
7
|
+
display: inline-block;
|
|
8
|
+
}
|
|
9
|
+
.s-pop-panel-item {
|
|
10
|
+
padding: 6px 0;
|
|
11
|
+
border-bottom: solid 1px #d6d8db;
|
|
12
|
+
}
|
|
13
|
+
.s-pop-panel-item-option {
|
|
14
|
+
// font-size: 14px;
|
|
15
|
+
padding: 2px 0;
|
|
16
|
+
}
|
|
17
|
+
.s-pop-panel-item-option:hover {
|
|
18
|
+
background-color: var(--p-list-option-focus-background);
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
.s-pop-panel-item-selected-option {
|
|
22
|
+
color: var(--p-form-field-focus-border-color)
|
|
23
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
@import 'styles';
|
|
2
|
-
|
|
3
|
-
// @media (min-width:768px) {
|
|
4
|
-
// .panel-box {
|
|
5
|
-
// width:535px
|
|
6
|
-
// }
|
|
7
|
-
// }
|
|
8
|
-
.s-pop-show {
|
|
9
|
-
display: block;
|
|
10
|
-
}
|
|
11
|
-
.s-pop-hide {
|
|
12
|
-
display: none;
|
|
13
|
-
}
|
|
14
|
-
.s-pop-panel-title {
|
|
15
|
-
// font-size: 14px;
|
|
16
|
-
display: flex;
|
|
17
|
-
align-items: center;
|
|
18
|
-
font-weight: 600;
|
|
19
|
-
margin-left: 1rem;
|
|
20
|
-
}
|
|
21
|
-
.s-pop-panel-title-icon {
|
|
22
|
-
padding: 0 5px;
|
|
23
|
-
// font-size: 14px;
|
|
24
|
-
color: var(--p-primary-color);
|
|
25
|
-
}
|
|
26
|
-
.s-check {
|
|
27
|
-
padding: 0 2.5px;
|
|
28
|
-
font-size: 1rem;
|
|
29
|
-
width: 1.5rem;
|
|
30
|
-
line-height: 1;
|
|
31
|
-
display: inline-block;
|
|
32
|
-
}
|
|
1
|
+
@import '../../styles/styles.scss';
|
|
2
|
+
|
|
3
|
+
// @media (min-width:768px) {
|
|
4
|
+
// .panel-box {
|
|
5
|
+
// width:535px
|
|
6
|
+
// }
|
|
7
|
+
// }
|
|
8
|
+
.s-pop-show {
|
|
9
|
+
display: block;
|
|
10
|
+
}
|
|
11
|
+
.s-pop-hide {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
.s-pop-panel-title {
|
|
15
|
+
// font-size: 14px;
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
margin-left: 1rem;
|
|
20
|
+
}
|
|
21
|
+
.s-pop-panel-title-icon {
|
|
22
|
+
padding: 0 5px;
|
|
23
|
+
// font-size: 14px;
|
|
24
|
+
color: var(--p-primary-color);
|
|
25
|
+
}
|
|
26
|
+
.s-check {
|
|
27
|
+
padding: 0 2.5px;
|
|
28
|
+
font-size: 1rem;
|
|
29
|
+
width: 1.5rem;
|
|
30
|
+
line-height: 1;
|
|
31
|
+
display: inline-block;
|
|
32
|
+
}
|
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
@import 'styles';
|
|
2
|
-
::ng-deep {
|
|
3
|
-
.s-pop-self-container {
|
|
4
|
-
.p-inputtext {
|
|
5
|
-
font-size: 12px;
|
|
6
|
-
}
|
|
7
|
-
.p-select-sm .p-select-label {
|
|
8
|
-
font-size: 12px;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
.s-pop-self-select-panel {
|
|
12
|
-
.p-select-option {
|
|
13
|
-
font-size: 12px;
|
|
14
|
-
padding: 0.25rem 0.75rem;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
.s-pop-self-datepicker-panel {
|
|
18
|
-
.p-datepicker-calendar {
|
|
19
|
-
font-size: 12px;
|
|
20
|
-
.p-datepicker-day-view {
|
|
21
|
-
font-size: 12px;
|
|
22
|
-
.p-datepicker-day {
|
|
23
|
-
height: 1.5rem;
|
|
24
|
-
width: 1.5rem;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.s-pop-self-container {
|
|
31
|
-
padding: 5px 0;
|
|
32
|
-
}
|
|
33
|
-
.s-pop-self-label {
|
|
34
|
-
padding: 2.5px 1.6rem;
|
|
35
|
-
display: flex;
|
|
36
|
-
justify-content: space-between;
|
|
37
|
-
align-items: center;
|
|
38
|
-
// font-size: 14px;
|
|
39
|
-
}
|
|
40
|
-
.s-pop-self-label-icon {
|
|
41
|
-
color: var(--p-form-field-icon-color);
|
|
42
|
-
font-size: 12px;
|
|
43
|
-
}
|
|
44
|
-
.s-pop-self-label:hover {
|
|
45
|
-
background-color: var(--p-list-option-focus-background);
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
}
|
|
48
|
-
.s-pop-self-panel {
|
|
49
|
-
padding: 6px 0;
|
|
50
|
-
}
|
|
51
|
-
.s-pop-self-panel-show {
|
|
52
|
-
display: block;
|
|
53
|
-
}
|
|
54
|
-
.s-pop-self-panel-hide {
|
|
55
|
-
display: none;
|
|
56
|
-
}
|
|
57
|
-
.s-pop-self-item {
|
|
58
|
-
padding: 0.5rem 2rem;
|
|
59
|
-
height: 30px;
|
|
60
|
-
font-size: 12px;
|
|
61
|
-
}
|
|
62
|
-
.s-pop-self-item-btn-container {
|
|
63
|
-
display: flex;
|
|
64
|
-
justify-content: space-between;
|
|
65
|
-
align-items: center;
|
|
66
|
-
font-size: 12px;
|
|
67
|
-
}
|
|
68
|
-
.s-pop-self-item-btn {
|
|
69
|
-
border-radius: 2px;
|
|
70
|
-
padding: 2px;
|
|
71
|
-
}
|
|
72
|
-
.s-pop-self-item-btn:hover {
|
|
73
|
-
color: var(--p-primary-color);
|
|
74
|
-
cursor: pointer;
|
|
75
|
-
}
|
|
76
|
-
.date-span {
|
|
77
|
-
background-color: #f8f8f8;
|
|
78
|
-
height: 21px;
|
|
79
|
-
color: #b6bbba;
|
|
80
|
-
}
|
|
1
|
+
@import '../../styles/styles.scss';
|
|
2
|
+
::ng-deep {
|
|
3
|
+
.s-pop-self-container {
|
|
4
|
+
.p-inputtext {
|
|
5
|
+
font-size: 12px;
|
|
6
|
+
}
|
|
7
|
+
.p-select-sm .p-select-label {
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
.s-pop-self-select-panel {
|
|
12
|
+
.p-select-option {
|
|
13
|
+
font-size: 12px;
|
|
14
|
+
padding: 0.25rem 0.75rem;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.s-pop-self-datepicker-panel {
|
|
18
|
+
.p-datepicker-calendar {
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
.p-datepicker-day-view {
|
|
21
|
+
font-size: 12px;
|
|
22
|
+
.p-datepicker-day {
|
|
23
|
+
height: 1.5rem;
|
|
24
|
+
width: 1.5rem;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.s-pop-self-container {
|
|
31
|
+
padding: 5px 0;
|
|
32
|
+
}
|
|
33
|
+
.s-pop-self-label {
|
|
34
|
+
padding: 2.5px 1.6rem;
|
|
35
|
+
display: flex;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
align-items: center;
|
|
38
|
+
// font-size: 14px;
|
|
39
|
+
}
|
|
40
|
+
.s-pop-self-label-icon {
|
|
41
|
+
color: var(--p-form-field-icon-color);
|
|
42
|
+
font-size: 12px;
|
|
43
|
+
}
|
|
44
|
+
.s-pop-self-label:hover {
|
|
45
|
+
background-color: var(--p-list-option-focus-background);
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
}
|
|
48
|
+
.s-pop-self-panel {
|
|
49
|
+
padding: 6px 0;
|
|
50
|
+
}
|
|
51
|
+
.s-pop-self-panel-show {
|
|
52
|
+
display: block;
|
|
53
|
+
}
|
|
54
|
+
.s-pop-self-panel-hide {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
.s-pop-self-item {
|
|
58
|
+
padding: 0.5rem 2rem;
|
|
59
|
+
height: 30px;
|
|
60
|
+
font-size: 12px;
|
|
61
|
+
}
|
|
62
|
+
.s-pop-self-item-btn-container {
|
|
63
|
+
display: flex;
|
|
64
|
+
justify-content: space-between;
|
|
65
|
+
align-items: center;
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
}
|
|
68
|
+
.s-pop-self-item-btn {
|
|
69
|
+
border-radius: 2px;
|
|
70
|
+
padding: 2px;
|
|
71
|
+
}
|
|
72
|
+
.s-pop-self-item-btn:hover {
|
|
73
|
+
color: var(--p-primary-color);
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
}
|
|
76
|
+
.date-span {
|
|
77
|
+
background-color: #f8f8f8;
|
|
78
|
+
height: 21px;
|
|
79
|
+
color: #b6bbba;
|
|
80
|
+
}
|