@beinformed/ui 1.45.3-beta.0 → 1.45.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [1.45.3](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.45.3-beta.0...v1.45.3) (2024-03-28)
6
+
5
7
  ## [1.45.3-beta.0](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.45.2...v1.45.3-beta.0) (2024-03-28)
6
8
 
7
9
  ## [1.45.2](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.45.0...v1.45.2) (2024-03-28)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beinformed/ui",
3
- "version": "1.45.3-beta.0",
3
+ "version": "1.45.3",
4
4
  "description": "Toolbox for be informed javascript layouts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "bugs": "http://support.beinformed.com",
@@ -218,8 +218,6 @@ export namespace LayoutHintConfiguration {
218
218
  export { EN_15 as EN };
219
219
  }
220
220
  export { description_15 as description };
221
- let link_10: string;
222
- export { link_10 as link };
223
221
  let component_15: string[];
224
222
  export { component_15 as component };
225
223
  }
@@ -233,8 +231,6 @@ export namespace LayoutHintConfiguration {
233
231
  export { EN_16 as EN };
234
232
  }
235
233
  export { description_16 as description };
236
- let link_11: string;
237
- export { link_11 as link };
238
234
  let component_16: string[];
239
235
  export { component_16 as component };
240
236
  }
@@ -248,8 +244,8 @@ export namespace LayoutHintConfiguration {
248
244
  export { EN_17 as EN };
249
245
  }
250
246
  export { description_17 as description };
251
- let link_12: string;
252
- export { link_12 as link };
247
+ let link_10: string;
248
+ export { link_10 as link };
253
249
  let component_17: string[];
254
250
  export { component_17 as component };
255
251
  }
@@ -263,8 +259,8 @@ export namespace LayoutHintConfiguration {
263
259
  export { EN_18 as EN };
264
260
  }
265
261
  export { description_18 as description };
266
- let link_13: string;
267
- export { link_13 as link };
262
+ let link_11: string;
263
+ export { link_11 as link };
268
264
  let component_18: string[];
269
265
  export { component_18 as component };
270
266
  }
@@ -166,9 +166,11 @@ export default class FormObjectModel extends BaseModel {
166
166
  elements: Array<{
167
167
  elementid: string;
168
168
  }>;
169
+ objectid?: string;
169
170
  } | {
170
171
  anchor: {
171
172
  elementid: string;
173
+ objectid?: string;
172
174
  };
173
175
  }>;
174
176
  }): void;
@@ -121,6 +121,10 @@ export default class ListModel extends ResourceModel {
121
121
  * Retrieve all actions by type
122
122
  */
123
123
  getActionsByType(actionType: string): ActionCollection;
124
+ /**
125
+ * Retrieves the label of the first additional detail link by resource type
126
+ */
127
+ getAdditionalDetailLabel(resourceType: string): string | null;
124
128
  }
125
129
  import ResourceModel from "../base/ResourceModel";
126
130
  import ListDetailModel from "../list/ListDetailModel";
@@ -5,6 +5,9 @@ declare class LookupOptionCollection extends ResourceCollection<ChoiceAttributeO
5
5
  /**
6
6
  */
7
7
  static create(data: Object, contributions: Object): LookupOptionCollection;
8
+ /**
9
+ */
10
+ static getOptionType(option: Object, contributions: Object): string;
8
11
  constructor(initCollection?: ChoiceAttributeOptionModel[]);
9
12
  }
10
13
  import ChoiceAttributeOptionModel from "../attributes/ChoiceAttributeOptionModel";