@fundamental-ngx/ui5-webcomponents-fiori 0.58.0-rc.65 → 0.58.0-rc.66
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/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ import _UserMenu from '@ui5/webcomponents-fiori/dist/UserMenu.js';
|
|
|
68
68
|
import _UserMenuAccount from '@ui5/webcomponents-fiori/dist/UserMenuAccount.js';
|
|
69
69
|
import _UserMenuItem from '@ui5/webcomponents-fiori/dist/UserMenuItem.js';
|
|
70
70
|
import _UserMenuItemGroup from '@ui5/webcomponents-fiori/dist/UserMenuItemGroup.js';
|
|
71
|
+
import _UserSettingsAccountView from '@ui5/webcomponents-fiori/dist/UserSettingsAccountView.js';
|
|
71
72
|
import _UserSettingsDialog from '@ui5/webcomponents-fiori/dist/UserSettingsDialog.js';
|
|
72
73
|
import _UserSettingsItem from '@ui5/webcomponents-fiori/dist/UserSettingsItem.js';
|
|
73
74
|
import _UserSettingsView from '@ui5/webcomponents-fiori/dist/UserSettingsView.js';
|
|
@@ -1394,8 +1395,8 @@ declare class SearchItemGroup implements AfterViewInit {
|
|
|
1394
1395
|
declare class SearchItemShowMore implements AfterViewInit {
|
|
1395
1396
|
/**
|
|
1396
1397
|
* Specifies the number of additional items available to show.
|
|
1397
|
-
|
|
1398
|
-
If
|
|
1398
|
+
If no value is defined, the control shows "Show more" (without any counter).
|
|
1399
|
+
If a number is provided, it displays "Show more (N)", where N is that number.
|
|
1399
1400
|
*/
|
|
1400
1401
|
itemsToShowCount: _angular_core.InputSignal<number | undefined>;
|
|
1401
1402
|
/**
|
|
@@ -2767,6 +2768,64 @@ declare class UserMenuItemGroup implements AfterViewInit {
|
|
|
2767
2768
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserMenuItemGroup, "ui5-user-menu-item-group, [ui5-user-menu-item-group]", ["ui5UserMenuItemGroup"], {}, {}, never, ["*"], true, never>;
|
|
2768
2769
|
}
|
|
2769
2770
|
|
|
2771
|
+
declare class UserSettingsAccountView implements AfterViewInit {
|
|
2772
|
+
/**
|
|
2773
|
+
* Defines if the User Menu shows the `Manage Account` option.
|
|
2774
|
+
*/
|
|
2775
|
+
showManageAccount: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2776
|
+
/**
|
|
2777
|
+
* Defines the title text of the user settings view.
|
|
2778
|
+
*/
|
|
2779
|
+
text: _angular_core.InputSignal<string | undefined>;
|
|
2780
|
+
/**
|
|
2781
|
+
* Defines whether the view is selected. There can be just one selected view at a time.
|
|
2782
|
+
*/
|
|
2783
|
+
selected: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2784
|
+
/**
|
|
2785
|
+
* Indicates whether the view is secondary. It is relevant only if the view is used in `pages` slot of `ui5-user-settings-item`
|
|
2786
|
+
and controls the visibility of the back button.
|
|
2787
|
+
*/
|
|
2788
|
+
secondary: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2789
|
+
/**
|
|
2790
|
+
* Fired when the `Edit Accounts` button is selected.
|
|
2791
|
+
*/
|
|
2792
|
+
ui5EditAccountsClick: _angular_core.OutputEmitterRef<UI5CustomEvent<_UserSettingsAccountView, "edit-accounts-click">>;
|
|
2793
|
+
/**
|
|
2794
|
+
* Fired when the `Manage Account` button is selected.
|
|
2795
|
+
*/
|
|
2796
|
+
ui5ManageAccountClick: _angular_core.OutputEmitterRef<UI5CustomEvent<_UserSettingsAccountView, "manage-account-click">>;
|
|
2797
|
+
/**
|
|
2798
|
+
* Available slots for content projection in this component.
|
|
2799
|
+
*
|
|
2800
|
+
* Slots allow you to insert custom content into predefined areas of the web component.
|
|
2801
|
+
* Use the `slot` attribute on child elements to target specific slots.
|
|
2802
|
+
*
|
|
2803
|
+
* - **account**: Defines the user account.
|
|
2804
|
+
* - **(default)**: Defines the content of the view.
|
|
2805
|
+
*
|
|
2806
|
+
* @example
|
|
2807
|
+
* ```html
|
|
2808
|
+
* <ui5-user-settings-account-view>
|
|
2809
|
+
* <div slot="header">Custom header content</div>
|
|
2810
|
+
* <p>Default slot content</p>
|
|
2811
|
+
* </ui5-user-settings-account-view>
|
|
2812
|
+
* ```
|
|
2813
|
+
*
|
|
2814
|
+
* @readonly
|
|
2815
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
|
|
2816
|
+
*/
|
|
2817
|
+
readonly slots: {
|
|
2818
|
+
name: string;
|
|
2819
|
+
description: string;
|
|
2820
|
+
}[];
|
|
2821
|
+
elementRef: ElementRef<_UserSettingsAccountView>;
|
|
2822
|
+
injector: Injector;
|
|
2823
|
+
get element(): _UserSettingsAccountView;
|
|
2824
|
+
ngAfterViewInit(): void;
|
|
2825
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserSettingsAccountView, never>;
|
|
2826
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserSettingsAccountView, "ui5-user-settings-account-view, [ui5-user-settings-account-view]", ["ui5UserSettingsAccountView"], { "showManageAccount": { "alias": "showManageAccount"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "secondary": { "alias": "secondary"; "required": false; "isSignal": true; }; }, { "ui5EditAccountsClick": "ui5EditAccountsClick"; "ui5ManageAccountClick": "ui5ManageAccountClick"; }, never, ["*"], true, never>;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2770
2829
|
declare class UserSettingsDialog implements AfterViewInit {
|
|
2771
2830
|
/**
|
|
2772
2831
|
* Defines, if the User Settings Dialog is opened.
|
|
@@ -3157,4 +3216,4 @@ declare class Ui5WebcomponentsFioriThemingService extends WebcomponentsThemingPr
|
|
|
3157
3216
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<Ui5WebcomponentsFioriThemingService>;
|
|
3158
3217
|
}
|
|
3159
3218
|
|
|
3160
|
-
export { BarcodeScannerDialog, DynamicPage, DynamicPageHeader, DynamicPageTitle, DynamicSideContent, FilterItem, FilterItemOption, FlexibleColumnLayout, GenericControlValueAccessor, GroupItem, IllustratedMessage, MediaGallery, MediaGalleryItem, NavigationLayout, NotificationList, NotificationListGroupItem, NotificationListItem, Page, ProductSwitch, ProductSwitchItem, Search, SearchItem, SearchItemGroup, SearchItemShowMore, SearchMessageArea, SearchScope, ShellBar, ShellBarBranding, ShellBarItem, ShellBarSearch, ShellBarSpacer, SideNavigation, SideNavigationGroup, SideNavigationItem, SideNavigationSubItem, SortItem, Timeline, TimelineGroupItem, TimelineItem, Ui5WebcomponentsFioriThemingService, UploadCollection, UploadCollectionItem, UserMenu, UserMenuAccount, UserMenuItem, UserMenuItemGroup, UserSettingsDialog, UserSettingsItem, UserSettingsView, ViewSettingsDialog, Wizard, WizardStep };
|
|
3219
|
+
export { BarcodeScannerDialog, DynamicPage, DynamicPageHeader, DynamicPageTitle, DynamicSideContent, FilterItem, FilterItemOption, FlexibleColumnLayout, GenericControlValueAccessor, GroupItem, IllustratedMessage, MediaGallery, MediaGalleryItem, NavigationLayout, NotificationList, NotificationListGroupItem, NotificationListItem, Page, ProductSwitch, ProductSwitchItem, Search, SearchItem, SearchItemGroup, SearchItemShowMore, SearchMessageArea, SearchScope, ShellBar, ShellBarBranding, ShellBarItem, ShellBarSearch, ShellBarSpacer, SideNavigation, SideNavigationGroup, SideNavigationItem, SideNavigationSubItem, SortItem, Timeline, TimelineGroupItem, TimelineItem, Ui5WebcomponentsFioriThemingService, UploadCollection, UploadCollectionItem, UserMenu, UserMenuAccount, UserMenuItem, UserMenuItemGroup, UserSettingsAccountView, UserSettingsDialog, UserSettingsItem, UserSettingsView, ViewSettingsDialog, Wizard, WizardStep };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/ui5-webcomponents-fiori",
|
|
3
|
-
"version": "0.58.0-rc.
|
|
3
|
+
"version": "0.58.0-rc.66",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"description": "Fundamental Library for Angular - UI5 Webcomponents Fiori",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@angular/forms": "^20.0.0",
|
|
21
21
|
"@angular/platform-browser": "^20.0.0",
|
|
22
22
|
"@angular/router": "^20.0.0",
|
|
23
|
-
"@fundamental-ngx/ui5-webcomponents": "0.58.0-rc.
|
|
23
|
+
"@fundamental-ngx/ui5-webcomponents": "0.58.0-rc.66",
|
|
24
24
|
"fundamental-styles": "0.40.1",
|
|
25
25
|
"rxjs": "^7.8.0"
|
|
26
26
|
},
|