@colijnit/sharedcomponents 259.1.12 → 259.1.13
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 +41 -10
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.js +23 -11
- package/esm2015/lib/components/send-method-dialog/components/pdf-preview/pdf-preview.component.js +10 -10
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/esm2015/lib/service/shared-connector.service.js +17 -1
- package/fesm2015/colijnit-sharedcomponents.js +48 -20
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/activity-list/style/_layout.scss +9 -17
- package/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.d.ts +3 -3
- package/lib/components/open-activity-list/style/_layout.scss +6 -0
- package/lib/res/dictionary/dictionaries.d.ts +2 -0
- package/lib/service/shared-connector.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,7 +7,10 @@
|
|
|
7
7
|
.activity-wrapper {
|
|
8
8
|
display: flex;
|
|
9
9
|
justify-content: flex-end;
|
|
10
|
-
|
|
10
|
+
border-radius: 5px;
|
|
11
|
+
padding: 15px;
|
|
12
|
+
box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.1);
|
|
13
|
+
background-color: $sc-color-light;
|
|
11
14
|
.activity-display {
|
|
12
15
|
display: flex;
|
|
13
16
|
flex-direction: column;
|
|
@@ -34,9 +37,7 @@
|
|
|
34
37
|
.activity-display-content {
|
|
35
38
|
display: flex;
|
|
36
39
|
flex-direction: column;
|
|
37
|
-
|
|
38
|
-
background-color: $sc-color-light;
|
|
39
|
-
padding: 10px 5px;
|
|
40
|
+
padding: 0;
|
|
40
41
|
color: #000;
|
|
41
42
|
.co-icon {
|
|
42
43
|
svg {
|
|
@@ -113,20 +114,11 @@
|
|
|
113
114
|
height: 30px;
|
|
114
115
|
}
|
|
115
116
|
}
|
|
116
|
-
|
|
117
|
-
.customer-reply-content {
|
|
118
|
-
background-color: $sc-color-light-accent;
|
|
119
|
-
color: #171721;
|
|
120
|
-
.co-icon {
|
|
121
|
-
svg {
|
|
122
|
-
fill: #FFFFFF;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
117
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
118
|
+
&.customer-reply-wrapper {
|
|
119
|
+
max-width: 80%;
|
|
120
|
+
background-color: #f5f5fc;
|
|
121
|
+
}
|
|
130
122
|
}
|
|
131
123
|
}
|
|
132
124
|
}
|
package/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.d.ts
CHANGED
|
@@ -32,14 +32,14 @@ export declare class FormBuilderUserFormComponent implements OnDestroy {
|
|
|
32
32
|
set form(form: Form);
|
|
33
33
|
get form(): Form;
|
|
34
34
|
userForm: FormResponse;
|
|
35
|
-
table:
|
|
35
|
+
table: TableName;
|
|
36
36
|
key: string;
|
|
37
37
|
readonly: boolean;
|
|
38
38
|
enableQuestions: boolean;
|
|
39
39
|
readonly cancelForm: EventEmitter<void>;
|
|
40
40
|
readonly saveForm: EventEmitter<FormResponse>;
|
|
41
|
+
readonly definitiveChange: EventEmitter<boolean>;
|
|
41
42
|
readonly createNewFormResponse: EventEmitter<FormResponse>;
|
|
42
|
-
loadDocuments: any;
|
|
43
43
|
cloneForm: Form;
|
|
44
44
|
formResponse: FormResponse;
|
|
45
45
|
activeQuestion: FormQuestion;
|
|
@@ -51,7 +51,7 @@ export declare class FormBuilderUserFormComponent implements OnDestroy {
|
|
|
51
51
|
onValid(): void;
|
|
52
52
|
handleCancelForm(): void;
|
|
53
53
|
changeMultipleOption(id: string, formResponse: FormQuestionResponse, add: boolean): void;
|
|
54
|
-
changeLovOption(formResponse: FormQuestionResponse, value:
|
|
54
|
+
changeLovOption(formResponse: FormQuestionResponse, value: FormQuestionAnswer): void;
|
|
55
55
|
changeTime(formResponse: FormQuestionResponse, time: Date): void;
|
|
56
56
|
handleDocumentDeleted(doc: CoDocument): void;
|
|
57
57
|
handleDocumentChanged(doc: CoDocument): void;
|
|
@@ -30198,6 +30198,7 @@ export declare class Dictionaries {
|
|
|
30198
30198
|
SALES_AND_PURCHASE: string;
|
|
30199
30199
|
SALES_BOOK: string;
|
|
30200
30200
|
SALES_CHANNELS: string;
|
|
30201
|
+
SALES_CONVERSION: string;
|
|
30201
30202
|
SALES_DESCRIPTION: string;
|
|
30202
30203
|
SALES_INFO: string;
|
|
30203
30204
|
SALES_INVOICES: string;
|
|
@@ -30618,6 +30619,7 @@ export declare class Dictionaries {
|
|
|
30618
30619
|
SET: string;
|
|
30619
30620
|
SET_AS_DEFAULT_SETTING: string;
|
|
30620
30621
|
SET_COLOR: string;
|
|
30622
|
+
SET_SALES_ORDER_VALUES: string;
|
|
30621
30623
|
SET_TO_DROP_SHIPMENT_LIKE_OTHER_DIRECT_SELL_LINES: string;
|
|
30622
30624
|
SET_VAT_FOR_OTHER_COUNTRY: string;
|
|
30623
30625
|
SHAPE: string;
|
|
@@ -105,6 +105,7 @@ export declare class SharedConnectorService {
|
|
|
105
105
|
getHistoricActivities(table: TableName, key: string): Promise<Activity[]>;
|
|
106
106
|
getComponentActivities(table: TableName, key: string): Promise<Activity[]>;
|
|
107
107
|
getFormById(formId: number): Promise<Form>;
|
|
108
|
+
getAllFormResponsesForTableAndKey(table: TableName, key: string): Promise<FormResponse[]>;
|
|
108
109
|
getFormResponse(formResponseId: number): Promise<FormResponse>;
|
|
109
110
|
insertFormResponse(formResponse: FormResponse): Promise<FormResponse>;
|
|
110
111
|
updateFormResponse(formResponse: FormResponse): Promise<FormResponse>;
|