@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.
@@ -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
- border-radius: 5px;
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
- .customer-reply-wrapper {
129
- justify-content: flex-start;
118
+ &.customer-reply-wrapper {
119
+ max-width: 80%;
120
+ background-color: #f5f5fc;
121
+ }
130
122
  }
131
123
  }
132
124
  }
@@ -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: string;
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: number): void;
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;
@@ -53,5 +53,11 @@
53
53
  flex-shrink: 0;
54
54
  overflow: visible;
55
55
  }
56
+ .co-collapsible {
57
+ overflow: visible;
58
+ .collapsible-content {
59
+ overflow: visible;
60
+ }
61
+ }
56
62
  }
57
63
  }
@@ -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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "259.1.12",
3
+ "version": "259.1.13",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "chart.js": "4.3.0",