@yuuvis/client-framework 3.10.0 → 3.11.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuuvis/client-framework",
3
- "version": "3.10.0",
3
+ "version": "3.11.0",
4
4
  "author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -8,16 +8,16 @@
8
8
  "@angular/common": "^21.2.9",
9
9
  "@angular/core": "^21.2.9",
10
10
  "angular-gridster2": "^21.0.1",
11
- "@yuuvis/client-core": "^3.10.0",
12
- "@yuuvis/client-shell-core": "^3.10.0",
13
- "@yuuvis/client-components": "^3.10.0",
11
+ "@yuuvis/client-core": "^3.11.0",
12
+ "@yuuvis/client-shell-core": "^3.11.0",
13
+ "@yuuvis/client-components": "^3.11.0",
14
14
  "ng-dynamic-component": "^10.8.2",
15
15
  "modern-normalize": "^3.0.1"
16
16
  },
17
17
  "dependencies": {
18
18
  "@angular/material": "^21.2.7",
19
19
  "@ngrx/signals": "^21.1.0",
20
- "@yuuvis/material": "^3.10.0",
20
+ "@yuuvis/material": "^3.11.0",
21
21
  "@yuuvis/media-viewer": "^3.0.6",
22
22
  "angular-split": "^20.0.0",
23
23
  "vis-network": "^10.0.2",
@@ -183,7 +183,23 @@ declare class ObjectMetadataSectionComponent {
183
183
  expandedInput: _angular_core.InputSignal<boolean>;
184
184
  elementExtensions: _angular_core.InputSignal<IObjectFormElementExtension[]>;
185
185
  readonly: _angular_core.InputSignal<boolean | undefined>;
186
+ /**
187
+ * When `true`, the section's expand/collapse feature is removed: the content is
188
+ * always visible, cannot be collapsed, and the accordion toggle (arrow) is hidden.
189
+ */
190
+ skipExpand: _angular_core.InputSignal<boolean | undefined>;
191
+ /**
192
+ * When `true`, the section header (title, icon and toggle) is not rendered while the
193
+ * content region is still shown. Typically combined with {@link skipExpand} to display
194
+ * a title-less, always-open section.
195
+ */
196
+ skipTitle: _angular_core.InputSignal<boolean | undefined>;
186
197
  expanded: _angular_core.WritableSignal<boolean>;
198
+ /**
199
+ * Effective expanded state. When `skipExpand` is set the section is always visible
200
+ * and cannot be collapsed, so it is treated as permanently expanded.
201
+ */
202
+ isExpanded: _angular_core.Signal<boolean>;
187
203
  busy: _angular_core.WritableSignal<boolean>;
188
204
  formOptions: _angular_core.WritableSignal<ObjectFormOptions | undefined>;
189
205
  statusChanged: _angular_core.OutputEmitterRef<FormStatusChangedEvent>;
@@ -199,10 +215,11 @@ declare class ObjectMetadataSectionComponent {
199
215
  customStatus: _angular_core.WritableSignal<FormStatusChangedEvent | undefined>;
200
216
  renderCustom: _angular_core.Signal<boolean>;
201
217
  sotContext: _angular_core.Signal<SotRendererContext>;
218
+ toggle(): void;
202
219
  resetForm(): void;
203
220
  setFormPristine(): void;
204
221
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ObjectMetadataSectionComponent, never>;
205
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ObjectMetadataSectionComponent, "yuv-object-metadata-section", never, { "section": { "alias": "section"; "required": true; "isSignal": true; }; "expandedInput": { "alias": "expanded"; "required": false; "isSignal": true; }; "elementExtensions": { "alias": "elementExtensions"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "statusChanged": "statusChanged"; }, never, never, true, never>;
222
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ObjectMetadataSectionComponent, "yuv-object-metadata-section", never, { "section": { "alias": "section"; "required": true; "isSignal": true; }; "expandedInput": { "alias": "expanded"; "required": false; "isSignal": true; }; "elementExtensions": { "alias": "elementExtensions"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "skipExpand": { "alias": "skipExpand"; "required": false; "isSignal": true; }; "skipTitle": { "alias": "skipTitle"; "required": false; "isSignal": true; }; }, { "statusChanged": "statusChanged"; }, never, never, true, never>;
206
223
  }
207
224
 
208
225
  declare class ObjectMetadataComponent implements OnDestroy {