@colijnit/sharedcomponents 256.1.4 → 256.1.6
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-sharedcomponents.umd.js +670 -284
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +126 -121
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +127 -122
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +182 -0
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +26 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.js +52 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.js +23 -0
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +27 -5
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +6 -2
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +18 -5
- package/esm2015/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.js +35 -20
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +26 -25
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +7 -4
- package/esm2015/lib/components/stock/components/stock-tab/stock-tab.component.js +3 -2
- package/esm2015/lib/components/stock/service/stock-module-screen-config.service.js +27 -0
- package/esm2015/lib/components/stock/stock-information/stock-information.component.js +30 -2
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +5 -5
- package/esm2015/lib/components/stock/stock.component.js +20 -7
- package/esm2015/lib/components/stock/stock.module.js +3 -1
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/esm2015/lib/service/shared-connector.service.js +2 -2
- package/esm2015/lib/service/shared-event.service.js +15 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/colijnit-sharedcomponents.js +502 -111
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +34 -0
- package/lib/components/custom-pdf/custom-pdf-dialog.module.d.ts +2 -0
- package/lib/components/custom-pdf/style/_layout.scss +22 -0
- package/lib/components/custom-pdf/style/_material-definition.scss +0 -0
- package/lib/components/custom-pdf/style/_theme.scss +5 -0
- package/lib/components/custom-pdf/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.d.ts +18 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.d.ts +2 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss +29 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_material-definition.scss +8 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_theme.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +11 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +13 -0
- package/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.d.ts +4 -1
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +3 -1
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +2 -1
- package/lib/components/stock/service/stock-module-screen-config.service.d.ts +9 -0
- package/lib/components/stock/stock-information/stock-information.component.d.ts +8 -1
- package/lib/components/stock/stock.component.d.ts +5 -2
- package/lib/components/stock/style/_layout.scss +27 -4
- package/lib/components/stock/style/_material-definition.scss +3 -3
- package/lib/components/tab-bar/style/_layout.scss +6 -3
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +51 -0
- package/lib/service/shared-event.service.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { IconCacheService } from '../../service/icon-cache.service';
|
|
3
|
+
import { DomSanitizer } from "@angular/platform-browser";
|
|
4
|
+
import SignaturePad from "signature_pad";
|
|
5
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
6
|
+
import { Icon } from '../../enum/icon.enum';
|
|
7
|
+
export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
|
|
8
|
+
iconCacheService: IconCacheService;
|
|
9
|
+
private _sanitizer;
|
|
10
|
+
readonly icons: typeof Icon;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
pdfBody: ElementRef;
|
|
13
|
+
additionalFileContents: any;
|
|
14
|
+
additionalFileName: string;
|
|
15
|
+
closePDFDialog: EventEmitter<any>;
|
|
16
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
17
|
+
canvas: HTMLCanvasElement;
|
|
18
|
+
context: CanvasRenderingContext2D;
|
|
19
|
+
signature: SignaturePad;
|
|
20
|
+
signatureCanvas: ElementRef;
|
|
21
|
+
fileBody: any;
|
|
22
|
+
fileStyle: string;
|
|
23
|
+
constructor(iconCacheService: IconCacheService, _sanitizer: DomSanitizer);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngAfterViewInit(): void;
|
|
26
|
+
extractStyleParts(html: string): string[];
|
|
27
|
+
removeStyleAndScriptTags(html: string): string;
|
|
28
|
+
extractBodyContents(html: string): string[];
|
|
29
|
+
handleSaveClicked(): Promise<void>;
|
|
30
|
+
dataURItoBlob(dataURI: any): File;
|
|
31
|
+
handleClear(event?: MouseEvent): void;
|
|
32
|
+
private _initCanvas;
|
|
33
|
+
private _resizeSignatureCanvas;
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
@include export-module('co-custom-pdf-dialog-layout') {
|
|
2
|
+
.co-custom-pdf-dialog {
|
|
3
|
+
background: #fff;
|
|
4
|
+
/* Do not change these values, the 'view' of the pdf needs to be this size or else it will not work */
|
|
5
|
+
#pdfBody {
|
|
6
|
+
background: #fff;
|
|
7
|
+
min-width: 1080px;
|
|
8
|
+
overflow-x: scroll;
|
|
9
|
+
}
|
|
10
|
+
.co-dialog {
|
|
11
|
+
.co-dialog-wrapper {
|
|
12
|
+
max-height: 95vh;
|
|
13
|
+
max-width: 1125px;
|
|
14
|
+
width: 100% !important;
|
|
15
|
+
padding: 10px;
|
|
16
|
+
background-color: #f8f8fa;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
3
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
4
|
+
import { ReportingDocumentEmailSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request";
|
|
5
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
6
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
7
|
+
export declare class AdditionalFileButtonComponent {
|
|
8
|
+
iconCacheService: IconCacheService;
|
|
9
|
+
readonly icons: typeof Icon;
|
|
10
|
+
request: ReportingDocumentEmailSignDocBaseRequest | ReportingDocumentPrintSignDocBaseRequest;
|
|
11
|
+
additionalFileContents: any;
|
|
12
|
+
additionalFileName: string;
|
|
13
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
14
|
+
showClass(): boolean;
|
|
15
|
+
show: boolean;
|
|
16
|
+
constructor(iconCacheService: IconCacheService);
|
|
17
|
+
handleToggleDialog(): void;
|
|
18
|
+
}
|
package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@include export-module('cc-additional-file-button-layout') {
|
|
2
|
+
.co-additional-file-button {
|
|
3
|
+
.additional-file-button-wrapper {
|
|
4
|
+
height: $sc-co-signature-button-height;
|
|
5
|
+
width: $sc-co-signature-button-width;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
background-color: $sc-co-signature-button-background-color;
|
|
10
|
+
border-radius: $sc-co-signature-button-border-radius;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
.co-icon {
|
|
13
|
+
width: $sc-co-signature-button-icon-width;
|
|
14
|
+
height: $sc-co-signature-button-icon-height;
|
|
15
|
+
}
|
|
16
|
+
&.selected {
|
|
17
|
+
background-color: $sc-co-signature-button-selected-background-color;
|
|
18
|
+
.co-icon {
|
|
19
|
+
svg { // for fontawesome icons
|
|
20
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
21
|
+
}
|
|
22
|
+
& [fill] { // for own icons
|
|
23
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$sc-co-signature-button-height: 40px !default;
|
|
2
|
+
$sc-co-signature-button-width: 40px !default;
|
|
3
|
+
$sc-co-signature-button-background-color: #f5f5fc !default;
|
|
4
|
+
$sc-co-signature-button-selected-background-color: #1A73E8 !default;
|
|
5
|
+
$sc-co-signature-button-border-radius: 5px !default;
|
|
6
|
+
$sc-co-signature-button-icon-height: 30px !default;
|
|
7
|
+
$sc-co-signature-button-icon-width: 30px !default;
|
|
8
|
+
$sc-co-signature-button-icon-selected-color: white !default;
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { SendMethodService } from '../../service/send-method.service';
|
|
2
3
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
3
4
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
5
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
6
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
7
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
4
8
|
export declare class SendMethodPrinterComponent {
|
|
5
9
|
sendMethodService: SendMethodService;
|
|
10
|
+
iconCacheService: IconCacheService;
|
|
6
11
|
printerList: Printer[];
|
|
7
12
|
layouts: ReportLayoutSelectionPrint[];
|
|
8
13
|
isPrinterLayoutsEnabled: boolean;
|
|
14
|
+
isAdditionalDocEnabled: boolean;
|
|
9
15
|
showClass(): boolean;
|
|
10
|
-
|
|
16
|
+
additionalFileContents: any;
|
|
17
|
+
additionalFileName: string;
|
|
18
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
19
|
+
constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService);
|
|
11
20
|
handleDefaultPrinterUserChange(checked: boolean): void;
|
|
12
21
|
handleDefaultPrinterAllUsersChange(checked: boolean): void;
|
|
22
|
+
protected readonly icons: typeof Icon;
|
|
13
23
|
}
|
|
@@ -11,6 +11,7 @@ import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.en
|
|
|
11
11
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
12
12
|
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
13
13
|
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
14
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
14
15
|
export declare const sendMethodsWithIcon: SendMethod[];
|
|
15
16
|
export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
16
17
|
iconCacheService: IconCacheService;
|
|
@@ -40,12 +41,16 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
40
41
|
isDocSignEnabled: boolean;
|
|
41
42
|
docSign: boolean;
|
|
42
43
|
isPrinterLayoutsEnabled: boolean;
|
|
44
|
+
isAdditionalDocEnabled: boolean;
|
|
45
|
+
additionalFileName: string;
|
|
46
|
+
additionalFileContents: any;
|
|
43
47
|
reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
|
|
44
48
|
reportingDocumentEmailRequestChange: EventEmitter<ReportingDocumentEmailSignDocBaseRequest>;
|
|
45
49
|
reportingDocumentPdfRequestChange: EventEmitter<ReportingDocumentPdfBaseRequest>;
|
|
46
50
|
startSignatureClicked: EventEmitter<any>;
|
|
47
51
|
closeClick: EventEmitter<MouseEvent>;
|
|
48
52
|
okClick: EventEmitter<string>;
|
|
53
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
49
54
|
showClass(): boolean;
|
|
50
55
|
sendMethods: SendMethod[];
|
|
51
56
|
activeSendMethod: SendMethod;
|
|
@@ -68,4 +73,12 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
68
73
|
private _initDefaultSendMethod;
|
|
69
74
|
private _selectDefaultSendMethod;
|
|
70
75
|
private _prepareVisibleMethods;
|
|
76
|
+
protected readonly Event: {
|
|
77
|
+
new (type: string, eventInitDict?: EventInit): Event;
|
|
78
|
+
prototype: Event;
|
|
79
|
+
readonly AT_TARGET: number;
|
|
80
|
+
readonly BUBBLING_PHASE: number;
|
|
81
|
+
readonly CAPTURING_PHASE: number;
|
|
82
|
+
readonly NONE: number;
|
|
83
|
+
};
|
|
71
84
|
}
|
|
@@ -2,10 +2,13 @@ import { StockHistoryBo } from '@colijnit/articleapi/build/model/stock-history.b
|
|
|
2
2
|
import { Icon } from '../../../../enum/icon.enum';
|
|
3
3
|
import { BaseStockComponent } from '../../base/base-stock.component';
|
|
4
4
|
import { StockService } from '../../../../service/stock.service';
|
|
5
|
+
import { SharedEventService } from "../../../../service/shared-event.service";
|
|
5
6
|
export declare class AllocationStockHistoryComponent extends BaseStockComponent {
|
|
6
7
|
private _stockService;
|
|
8
|
+
sharedEventService: SharedEventService;
|
|
7
9
|
readonly icons: typeof Icon;
|
|
8
10
|
data: StockHistoryBo[];
|
|
9
|
-
constructor(_stockService: StockService);
|
|
11
|
+
constructor(_stockService: StockService, sharedEventService: SharedEventService);
|
|
10
12
|
protected getData(): Promise<void>;
|
|
13
|
+
handleTransactionNavigation(docNr: string): void;
|
|
11
14
|
}
|
|
@@ -13,6 +13,7 @@ export declare class StockLocationPopupComponent {
|
|
|
13
13
|
private _stockService;
|
|
14
14
|
private _changeDetector;
|
|
15
15
|
readonly icons: typeof Icon;
|
|
16
|
+
editingRow: boolean;
|
|
16
17
|
showConfirmationDialog: boolean;
|
|
17
18
|
newStockLine: boolean;
|
|
18
19
|
selectedArticleDetailsData: ArticleDetailsBo;
|
|
@@ -21,7 +22,8 @@ export declare class StockLocationPopupComponent {
|
|
|
21
22
|
selectedWarehouse: StockManagementWarehouses;
|
|
22
23
|
selectedLocationNo: string;
|
|
23
24
|
articleStockInfo: ArticleDetailsBo[];
|
|
24
|
-
togglePopupEvent: EventEmitter<
|
|
25
|
+
togglePopupEvent: EventEmitter<void>;
|
|
26
|
+
saveEvent: EventEmitter<boolean>;
|
|
25
27
|
updateGridData: EventEmitter<ArticleDetailsBo[]>;
|
|
26
28
|
stockLocations: StockLocation[];
|
|
27
29
|
stockStatus: StockStatus[];
|
|
@@ -61,5 +61,6 @@ export declare class StockLocationComponent extends BaseStockComponent implement
|
|
|
61
61
|
locationForDescription(locationNo: string): string;
|
|
62
62
|
protected getData(): Promise<void>;
|
|
63
63
|
private _getWarehouseLocations;
|
|
64
|
-
handleTogglePopup(
|
|
64
|
+
handleTogglePopup(): void;
|
|
65
|
+
handlePopupSave(saved: boolean): void;
|
|
65
66
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseModuleScreenConfigService } from "@colijnit/corecomponents_v12";
|
|
2
|
+
import { ObjectConfiguration } from "@colijnit/ioneconnector/build/model/object-configuration";
|
|
3
|
+
import { SharedConnectorService } from "../../../service/shared-connector.service";
|
|
4
|
+
export declare class StockModuleScreenConfigService extends BaseModuleScreenConfigService {
|
|
5
|
+
private _sharedConnectorService;
|
|
6
|
+
screenModuleName: string;
|
|
7
|
+
constructor(_sharedConnectorService: SharedConnectorService);
|
|
8
|
+
protected loadConfigForModule(params: string[], insertRights?: boolean): Promise<ObjectConfiguration[]>;
|
|
9
|
+
}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extended.bo";
|
|
2
|
+
import { SharedConnectorService } from "../../../service/shared-connector.service";
|
|
2
3
|
export declare class StockInformationComponent {
|
|
4
|
+
private _connectorService;
|
|
3
5
|
image: string;
|
|
4
|
-
article: ArticleExtended;
|
|
6
|
+
set article(value: ArticleExtended);
|
|
7
|
+
get article(): ArticleExtended;
|
|
5
8
|
articleStockState: number;
|
|
6
9
|
allAvailableStockInformation: number;
|
|
7
10
|
allTechnicalStockInformation: number;
|
|
8
11
|
economicalStock: number;
|
|
12
|
+
perceptibleStorage: number;
|
|
13
|
+
private _article;
|
|
14
|
+
constructor(_connectorService: SharedConnectorService);
|
|
15
|
+
private _prepareImage;
|
|
9
16
|
}
|
|
@@ -12,13 +12,15 @@ import { Icon } from '../../enum/icon.enum';
|
|
|
12
12
|
import { IconCacheService } from '../../service/icon-cache.service';
|
|
13
13
|
import { ArticleStockManagement } from '@colijnit/articleapi/build/model/article-stock-management';
|
|
14
14
|
import { SharedComponentsDictionaryService } from '../../translation/shared-components-dictionary.service';
|
|
15
|
+
import { StockModuleScreenConfigService } from "./service/stock-module-screen-config.service";
|
|
15
16
|
export declare class StockComponent implements OnDestroy, OnInit {
|
|
17
|
+
iconCacheService: IconCacheService;
|
|
16
18
|
private _stockService;
|
|
17
19
|
private _optionsService;
|
|
18
20
|
private _dictionary;
|
|
19
21
|
private _changeDetector;
|
|
20
22
|
private _connector;
|
|
21
|
-
|
|
23
|
+
private _screenConfigService;
|
|
22
24
|
readonly icons: typeof Icon;
|
|
23
25
|
handleStickerClicked: EventEmitter<any>;
|
|
24
26
|
set article(articleOrGoodId: ArticleExtended | number);
|
|
@@ -42,12 +44,13 @@ export declare class StockComponent implements OnDestroy, OnInit {
|
|
|
42
44
|
allAvailableStock: number;
|
|
43
45
|
allTechnicalStock: number;
|
|
44
46
|
economicalStock: number;
|
|
47
|
+
perceptibleStorage: number;
|
|
45
48
|
showSendMethodDialog: boolean;
|
|
46
49
|
articleStockState: number;
|
|
47
50
|
warehouses: StockManagementWarehouses[];
|
|
48
51
|
private _subscriptions;
|
|
49
52
|
private _goodId;
|
|
50
|
-
constructor(_stockService: StockService, _optionsService: OptionsService, _dictionary: SharedComponentsDictionaryService, _changeDetector: ChangeDetectorRef, _connector: SharedConnectorService,
|
|
53
|
+
constructor(iconCacheService: IconCacheService, _stockService: StockService, _optionsService: OptionsService, _dictionary: SharedComponentsDictionaryService, _changeDetector: ChangeDetectorRef, _connector: SharedConnectorService, _screenConfigService: StockModuleScreenConfigService);
|
|
51
54
|
ngOnDestroy(): void;
|
|
52
55
|
ngOnInit(): void;
|
|
53
56
|
handleStockTransferClick(event: any): void;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
.stock-grid {
|
|
4
4
|
co-dialog {
|
|
5
5
|
.co-dialog-wrapper {
|
|
6
|
-
width:
|
|
6
|
+
width: 600px;
|
|
7
7
|
display: flex;
|
|
8
8
|
}
|
|
9
9
|
.stock-dialog-header {
|
|
@@ -19,21 +19,26 @@
|
|
|
19
19
|
}
|
|
20
20
|
.dialog-wrapper {
|
|
21
21
|
display: flex;
|
|
22
|
-
gap:
|
|
22
|
+
gap: 10px;
|
|
23
23
|
padding: 10px;
|
|
24
24
|
flex-direction: column;
|
|
25
25
|
}
|
|
26
26
|
.stock-dialog-row {
|
|
27
27
|
display: flex;
|
|
28
28
|
align-items: center;
|
|
29
|
-
gap:
|
|
29
|
+
gap: 20px;
|
|
30
30
|
> * {
|
|
31
31
|
flex: 1;
|
|
32
32
|
}
|
|
33
33
|
.stock-dialog-row-row {
|
|
34
34
|
display: flex;
|
|
35
35
|
align-items: center;
|
|
36
|
-
gap:
|
|
36
|
+
gap:10px;
|
|
37
|
+
}
|
|
38
|
+
co-input-text, co-list-of-values, co-input-number-picker {
|
|
39
|
+
&:before {
|
|
40
|
+
box-shadow: none;
|
|
41
|
+
}
|
|
37
42
|
}
|
|
38
43
|
}
|
|
39
44
|
}
|
|
@@ -420,6 +425,10 @@
|
|
|
420
425
|
.simple-grid {
|
|
421
426
|
height: $sc-stock-grid-height;
|
|
422
427
|
overflow: auto;
|
|
428
|
+
thead {
|
|
429
|
+
position: sticky;
|
|
430
|
+
top: 0;
|
|
431
|
+
}
|
|
423
432
|
.co-grid-toolbar {
|
|
424
433
|
.co-icon {
|
|
425
434
|
border-color: #1A73E8;
|
|
@@ -520,6 +529,20 @@
|
|
|
520
529
|
font-size: 10px;
|
|
521
530
|
&:nth-child(odd) {
|
|
522
531
|
background: #f8f8fa;
|
|
532
|
+
&:hover {
|
|
533
|
+
background: #d2e3f9;
|
|
534
|
+
}
|
|
535
|
+
&.selected {
|
|
536
|
+
background: #d2e3f9;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
&:nth-child(even) {
|
|
540
|
+
&:hover {
|
|
541
|
+
background: #d2e3f9;
|
|
542
|
+
}
|
|
543
|
+
&.selected {
|
|
544
|
+
background: #d2e3f9;
|
|
545
|
+
}
|
|
523
546
|
}
|
|
524
547
|
}
|
|
525
548
|
.simple-grid-column-cell-field {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
$sc-stock-info-margin:
|
|
1
|
+
$sc-stock-info-margin: 4px 0 20px 0 !default;
|
|
2
2
|
$sc-stock-info-padding: 15px 10px !default;
|
|
3
|
-
$sc-stock-info-border-width:
|
|
4
|
-
$sc-stock-info-border-color: #
|
|
3
|
+
$sc-stock-info-border-width: 4px 0 !default;
|
|
4
|
+
$sc-stock-info-border-color: #F4F4F9 !default;
|
|
5
5
|
$sc-stock-gap: 10px !default;
|
|
6
6
|
$sc-stock-border-left: none !default;
|
|
7
7
|
$sc-stock-line-margin: 10px 0 20px 0 !default;
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export declare enum Icon {
|
|
|
57
57
|
Print = "print",
|
|
58
58
|
PrintRegular = "print_regular",
|
|
59
59
|
PrintSolid = "print_solid",
|
|
60
|
+
RegularFileSignatureCirclePlus = "regular_file_signature_circle_plus",
|
|
60
61
|
SignatureField = "signature_field",
|
|
61
62
|
SquarePlusRegular = "square_plus_regular",
|
|
62
63
|
TagRegular = "tag_regular",
|