@design.estate/dees-catalog 3.6.0 → 3.6.1

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '3.6.0',
6
+ version: '3.6.1',
7
7
  description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHNfd2ViLzAwX2NvbW1pdGluZm9fZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixJQUFJLEVBQUUsNkJBQTZCO0lBQ25DLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLFdBQVcsRUFBRSxzSkFBc0o7Q0FDcEssQ0FBQSJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-catalog",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "private": false,
5
5
  "description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
6
6
  "main": "dist_ts_web/index.js",
package/readme.md CHANGED
@@ -666,9 +666,26 @@ class MyApp extends DeesElement {
666
666
  - `navigateToView(viewId, params?)` - Navigate between views
667
667
  - `setAppBarMenus()`, `setBreadcrumbs()`, `setUser()` - Control the app bar
668
668
  - `setMainMenu()`, `setMainMenuSelection()`, `setMainMenuBadge()` - Control main navigation
669
- - `setSecondaryMenu()`, `setContentTabs()` - Control view-specific UI
669
+ - `setMainMenuCollapsed()`, `setMainMenuVisible()` - Control main menu visibility
670
+ - `setSecondaryMenu()`, `setSecondaryMenuCollapsed()`, `setSecondaryMenuVisible()` - Control secondary menu
671
+ - `setContentTabs()`, `setContentTabsVisible()` - Control view-specific UI
670
672
  - `activityLog.add()`, `activityLog.addMany()`, `activityLog.clear()` - Manage activity entries
671
673
 
674
+ **View Visibility Control:**
675
+ ```typescript
676
+ // In your view's onActivate hook
677
+ onActivate(context: IViewActivationContext) {
678
+ // Hide secondary menu for a fullscreen view
679
+ context.appui.setSecondaryMenuVisible(false);
680
+
681
+ // Hide content tabs
682
+ context.appui.setContentTabsVisible(false);
683
+
684
+ // Collapse main menu to give more space
685
+ context.appui.setMainMenuCollapsed(true);
686
+ }
687
+ ```
688
+
672
689
  #### `DeesAppuiMainmenu`
673
690
  Main navigation menu component for application-wide navigation.
674
691
 
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '3.6.0',
6
+ version: '3.6.1',
7
7
  description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
8
8
  }