@ui5/webcomponents-ngx 0.5.9 → 0.5.10-rc.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.
Files changed (29) hide show
  1. package/ai/input/index.d.ts +2 -2
  2. package/fesm2022/ui5-webcomponents-ngx-ai-input.mjs.map +1 -1
  3. package/fesm2022/ui5-webcomponents-ngx-fiori-search-scope.mjs +5 -8
  4. package/fesm2022/ui5-webcomponents-ngx-fiori-search-scope.mjs.map +1 -1
  5. package/fesm2022/ui5-webcomponents-ngx-fiori-search.mjs +3 -1
  6. package/fesm2022/ui5-webcomponents-ngx-fiori-search.mjs.map +1 -1
  7. package/fesm2022/ui5-webcomponents-ngx-fiori-shell-bar-search.mjs +3 -1
  8. package/fesm2022/ui5-webcomponents-ngx-fiori-shell-bar-search.mjs.map +1 -1
  9. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.mjs +42 -0
  10. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.mjs.map +1 -0
  11. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.mjs +77 -0
  12. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.mjs.map +1 -0
  13. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view.mjs +48 -0
  14. package/fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view.mjs.map +1 -0
  15. package/fesm2022/ui5-webcomponents-ngx-fiori.mjs +12 -0
  16. package/fesm2022/ui5-webcomponents-ngx-fiori.mjs.map +1 -1
  17. package/fesm2022/ui5-webcomponents-ngx.mjs +3 -0
  18. package/fesm2022/ui5-webcomponents-ngx.mjs.map +1 -1
  19. package/fiori/index.d.ts +10 -7
  20. package/fiori/search/index.d.ts +10 -1
  21. package/fiori/search-scope/index.d.ts +4 -4
  22. package/fiori/shell-bar-search/index.d.ts +10 -1
  23. package/fiori/user-settings-appearance-view/index.d.ts +34 -0
  24. package/fiori/user-settings-appearance-view-group/index.d.ts +50 -0
  25. package/fiori/user-settings-appearance-view-item/index.d.ts +86 -0
  26. package/index.d.ts +3 -0
  27. package/package.json +62 -50
  28. package/ui5-webcomponents-ngx-0.5.10-rc.1.tgz +0 -0
  29. package/ui5-webcomponents-ngx-0.5.9.tgz +0 -0
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { EventEmitter } from '@angular/core';
3
- import Input, { InputVersionChangeEventDetail } from '@ui5/webcomponents-ai/dist/Input.js';
3
+ import Input, { InputItemClickEventDetail, InputVersionChangeEventDetail } from '@ui5/webcomponents-ai/dist/Input.js';
4
4
  import * as i1 from '@ui5/webcomponents-ngx/generic-cva';
5
5
  import { GenericControlValueAccessor } from '@ui5/webcomponents-ngx/generic-cva';
6
6
  import { InputSelectionChangeEventDetail } from '@ui5/webcomponents/dist/Input.js';
@@ -144,7 +144,7 @@ declare class InputComponent {
144
144
  /**
145
145
  Fired when an item from the AI actions menu is clicked.
146
146
  */
147
- ui5ItemClick: EventEmitter<void>;
147
+ ui5ItemClick: EventEmitter<InputItemClickEventDetail>;
148
148
  /**
149
149
  Fired when the user selects the "Stop" button to stop ongoing AI text generation.
150
150
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx-ai-input.mjs","sources":["../../../../libs/ui5-angular/ai/input/index.ts","../../../../libs/ui5-angular/ai/input/ui5-webcomponents-ngx-ai-input.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-ai/dist/Input.js';\nimport {\n default as Input,\n InputVersionChangeEventDetail,\n} from '@ui5/webcomponents-ai/dist/Input.js';\nimport { GenericControlValueAccessor } from '@ui5/webcomponents-ngx/generic-cva';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\nimport { InputSelectionChangeEventDetail } from '@ui5/webcomponents/dist/Input.js';\n@ProxyInputs([\n 'disabled',\n 'placeholder',\n 'readonly',\n 'required',\n 'noTypeahead',\n 'type',\n 'value',\n 'valueState',\n 'name',\n 'showSuggestions',\n 'maxlength',\n 'accessibleName',\n 'accessibleNameRef',\n 'accessibleDescription',\n 'accessibleDescriptionRef',\n 'showClearIcon',\n 'open',\n 'currentVersion',\n 'totalVersions',\n 'loading',\n])\n@ProxyOutputs([\n 'change: ui5Change',\n 'input: ui5Input',\n 'select: ui5Select',\n 'selection-change: ui5SelectionChange',\n 'open: ui5Open',\n 'close: ui5Close',\n 'button-click: ui5ButtonClick',\n 'item-click: ui5ItemClick',\n 'stop-generation: ui5StopGeneration',\n 'version-change: ui5VersionChange',\n])\n@Component({\n standalone: true,\n selector: 'ui5-ai-input',\n template: '<ng-content></ng-content>',\n inputs: [\n 'disabled',\n 'placeholder',\n 'readonly',\n 'required',\n 'noTypeahead',\n 'type',\n 'value',\n 'valueState',\n 'name',\n 'showSuggestions',\n 'maxlength',\n 'accessibleName',\n 'accessibleNameRef',\n 'accessibleDescription',\n 'accessibleDescriptionRef',\n 'showClearIcon',\n 'open',\n 'currentVersion',\n 'totalVersions',\n 'loading',\n ],\n outputs: [\n 'ui5Change',\n 'ui5Input',\n 'ui5Select',\n 'ui5SelectionChange',\n 'ui5Open',\n 'ui5Close',\n 'ui5ButtonClick',\n 'ui5ItemClick',\n 'ui5StopGeneration',\n 'ui5VersionChange',\n ],\n exportAs: 'ui5AiInput',\n hostDirectives: [GenericControlValueAccessor],\n host: {\n '(change)': '_cva?.onChange?.(cvaValue);',\n '(input)': '_cva?.onChange?.(cvaValue);',\n },\n})\nclass InputComponent {\n /**\n Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.\n */\n @InputDecorator({ transform: booleanAttribute })\n disabled!: boolean;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.\n */\n @InputDecorator({ transform: booleanAttribute })\n readonly!: boolean;\n /**\n Defines whether the component is required.\n */\n @InputDecorator({ transform: booleanAttribute })\n required!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n */\n type!: 'Text' | 'Email' | 'Number' | 'Password' | 'Tel' | 'URL' | 'Search';\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines the value state of the component.\n */\n valueState!: 'None' | 'Positive' | 'Critical' | 'Negative' | 'Information';\n /**\n Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n */\n name!: string | undefined;\n /**\n Defines whether the component should show suggestions, if such are present.\n */\n @InputDecorator({ transform: booleanAttribute })\n showSuggestions!: boolean;\n /**\n Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.\n */\n maxlength!: number | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Receives id(or many ids) of the elements that label the input.\n */\n accessibleNameRef!: string | undefined;\n /**\n Defines the accessible description of the component.\n */\n accessibleDescription!: string | undefined;\n /**\n Receives id(or many ids) of the elements that describe the input.\n */\n accessibleDescriptionRef!: string | undefined;\n /**\n Defines whether the clear icon of the input will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Indicates the index of the currently displayed version.\n */\n currentVersion!: number;\n /**\n Indicates the total number of result versions available.\n\nWhen not set or set to 0, the versioning will be hidden.\n */\n totalVersions!: number;\n /**\n Defines whether the AI Writing Assistant is currently loading.\n\nWhen `true`, indicates that an AI action is in progress.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n\n /**\n Fired when the input operation has finished by pressing Enter or on focusout.\n */\n ui5Change!: EventEmitter<void>;\n /**\n Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when some text has been selected.\n */\n ui5Select!: EventEmitter<void>;\n /**\n Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n */\n ui5SelectionChange!: EventEmitter<InputSelectionChangeEventDetail>;\n /**\n Fired when the suggestions picker is open.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the suggestions picker is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when the user selects the AI button.\n */\n ui5ButtonClick!: EventEmitter<void>;\n /**\n Fired when an item from the AI actions menu is clicked.\n */\n ui5ItemClick!: EventEmitter<void>;\n /**\n Fired when the user selects the \"Stop\" button to stop ongoing AI text generation.\n */\n ui5StopGeneration!: EventEmitter<void>;\n /**\n Fired when the user selects the version navigation buttons.\n */\n ui5VersionChange!: EventEmitter<InputVersionChangeEventDetail>;\n\n private elementRef: ElementRef<Input> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n protected _cva = inject(GenericControlValueAccessor);\n\n get element(): Input {\n return this.elementRef.nativeElement;\n }\n\n set cvaValue(val) {\n this.element.value = val;\n this.cdr.detectChanges();\n }\n get cvaValue() {\n return this.element.value;\n }\n\n constructor() {\n this.cdr.detach();\n this._cva.host = this;\n }\n}\nexport { InputComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":"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"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx-ai-input.mjs","sources":["../../../../libs/ui5-angular/ai/input/index.ts","../../../../libs/ui5-angular/ai/input/ui5-webcomponents-ngx-ai-input.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-ai/dist/Input.js';\nimport {\n default as Input,\n InputItemClickEventDetail,\n InputVersionChangeEventDetail,\n} from '@ui5/webcomponents-ai/dist/Input.js';\nimport { GenericControlValueAccessor } from '@ui5/webcomponents-ngx/generic-cva';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\nimport { InputSelectionChangeEventDetail } from '@ui5/webcomponents/dist/Input.js';\n@ProxyInputs([\n 'disabled',\n 'placeholder',\n 'readonly',\n 'required',\n 'noTypeahead',\n 'type',\n 'value',\n 'valueState',\n 'name',\n 'showSuggestions',\n 'maxlength',\n 'accessibleName',\n 'accessibleNameRef',\n 'accessibleDescription',\n 'accessibleDescriptionRef',\n 'showClearIcon',\n 'open',\n 'currentVersion',\n 'totalVersions',\n 'loading',\n])\n@ProxyOutputs([\n 'change: ui5Change',\n 'input: ui5Input',\n 'select: ui5Select',\n 'selection-change: ui5SelectionChange',\n 'open: ui5Open',\n 'close: ui5Close',\n 'button-click: ui5ButtonClick',\n 'item-click: ui5ItemClick',\n 'stop-generation: ui5StopGeneration',\n 'version-change: ui5VersionChange',\n])\n@Component({\n standalone: true,\n selector: 'ui5-ai-input',\n template: '<ng-content></ng-content>',\n inputs: [\n 'disabled',\n 'placeholder',\n 'readonly',\n 'required',\n 'noTypeahead',\n 'type',\n 'value',\n 'valueState',\n 'name',\n 'showSuggestions',\n 'maxlength',\n 'accessibleName',\n 'accessibleNameRef',\n 'accessibleDescription',\n 'accessibleDescriptionRef',\n 'showClearIcon',\n 'open',\n 'currentVersion',\n 'totalVersions',\n 'loading',\n ],\n outputs: [\n 'ui5Change',\n 'ui5Input',\n 'ui5Select',\n 'ui5SelectionChange',\n 'ui5Open',\n 'ui5Close',\n 'ui5ButtonClick',\n 'ui5ItemClick',\n 'ui5StopGeneration',\n 'ui5VersionChange',\n ],\n exportAs: 'ui5AiInput',\n hostDirectives: [GenericControlValueAccessor],\n host: {\n '(change)': '_cva?.onChange?.(cvaValue);',\n '(input)': '_cva?.onChange?.(cvaValue);',\n },\n})\nclass InputComponent {\n /**\n Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.\n */\n @InputDecorator({ transform: booleanAttribute })\n disabled!: boolean;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.\n */\n @InputDecorator({ transform: booleanAttribute })\n readonly!: boolean;\n /**\n Defines whether the component is required.\n */\n @InputDecorator({ transform: booleanAttribute })\n required!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n */\n type!: 'Text' | 'Email' | 'Number' | 'Password' | 'Tel' | 'URL' | 'Search';\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines the value state of the component.\n */\n valueState!: 'None' | 'Positive' | 'Critical' | 'Negative' | 'Information';\n /**\n Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n */\n name!: string | undefined;\n /**\n Defines whether the component should show suggestions, if such are present.\n */\n @InputDecorator({ transform: booleanAttribute })\n showSuggestions!: boolean;\n /**\n Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.\n */\n maxlength!: number | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Receives id(or many ids) of the elements that label the input.\n */\n accessibleNameRef!: string | undefined;\n /**\n Defines the accessible description of the component.\n */\n accessibleDescription!: string | undefined;\n /**\n Receives id(or many ids) of the elements that describe the input.\n */\n accessibleDescriptionRef!: string | undefined;\n /**\n Defines whether the clear icon of the input will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Indicates the index of the currently displayed version.\n */\n currentVersion!: number;\n /**\n Indicates the total number of result versions available.\n\nWhen not set or set to 0, the versioning will be hidden.\n */\n totalVersions!: number;\n /**\n Defines whether the AI Writing Assistant is currently loading.\n\nWhen `true`, indicates that an AI action is in progress.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n\n /**\n Fired when the input operation has finished by pressing Enter or on focusout.\n */\n ui5Change!: EventEmitter<void>;\n /**\n Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when some text has been selected.\n */\n ui5Select!: EventEmitter<void>;\n /**\n Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n */\n ui5SelectionChange!: EventEmitter<InputSelectionChangeEventDetail>;\n /**\n Fired when the suggestions picker is open.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the suggestions picker is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when the user selects the AI button.\n */\n ui5ButtonClick!: EventEmitter<void>;\n /**\n Fired when an item from the AI actions menu is clicked.\n */\n ui5ItemClick!: EventEmitter<InputItemClickEventDetail>;\n /**\n Fired when the user selects the \"Stop\" button to stop ongoing AI text generation.\n */\n ui5StopGeneration!: EventEmitter<void>;\n /**\n Fired when the user selects the version navigation buttons.\n */\n ui5VersionChange!: EventEmitter<InputVersionChangeEventDetail>;\n\n private elementRef: ElementRef<Input> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n protected _cva = inject(GenericControlValueAccessor);\n\n get element(): Input {\n return this.elementRef.nativeElement;\n }\n\n set cvaValue(val) {\n this.element.value = val;\n this.cdr.detectChanges();\n }\n get cvaValue() {\n return this.element.value;\n }\n\n constructor() {\n this.cdr.detach();\n this._cva.host = this;\n }\n}\nexport { InputComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import { __decorate, __metadata } from 'tslib';
2
2
  import * as i0 from '@angular/core';
3
- import { inject, ElementRef, NgZone, ChangeDetectorRef, booleanAttribute, Input, Component } from '@angular/core';
3
+ import { inject, ElementRef, NgZone, ChangeDetectorRef, Component } from '@angular/core';
4
4
  import '@ui5/webcomponents-fiori/dist/SearchScope.js';
5
5
  import { ProxyInputs } from '@ui5/webcomponents-ngx/utils';
6
6
 
@@ -15,10 +15,10 @@ let SearchScopeComponent = class SearchScopeComponent {
15
15
  this.cdr.detach();
16
16
  }
17
17
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: SearchScopeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: SearchScopeComponent, isStandalone: true, selector: "ui5-search-scope", inputs: { text: "text", selected: ["selected", "selected", booleanAttribute] }, exportAs: ["ui5SearchScope"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: SearchScopeComponent, isStandalone: true, selector: "ui5-search-scope", inputs: { text: "text", value: "value" }, exportAs: ["ui5SearchScope"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
19
  };
20
20
  SearchScopeComponent = __decorate([
21
- ProxyInputs(['text', 'selected']),
21
+ ProxyInputs(['text', 'value']),
22
22
  __metadata("design:paramtypes", [])
23
23
  ], SearchScopeComponent);
24
24
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: SearchScopeComponent, decorators: [{
@@ -27,13 +27,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
27
27
  standalone: true,
28
28
  selector: 'ui5-search-scope',
29
29
  template: '<ng-content></ng-content>',
30
- inputs: ['text', 'selected'],
30
+ inputs: ['text', 'value'],
31
31
  exportAs: 'ui5SearchScope',
32
32
  }]
33
- }], ctorParameters: () => [], propDecorators: { selected: [{
34
- type: Input,
35
- args: [{ transform: booleanAttribute }]
36
- }] } });
33
+ }], ctorParameters: () => [] });
37
34
 
38
35
  /**
39
36
  * Generated bundle index. Do not edit.
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx-fiori-search-scope.mjs","sources":["../../../../libs/ui5-angular/fiori/search-scope/index.ts","../../../../libs/ui5-angular/fiori/search-scope/ui5-webcomponents-ngx-fiori-search-scope.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/SearchScope.js';\nimport SearchScope from '@ui5/webcomponents-fiori/dist/SearchScope.js';\nimport { ProxyInputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs(['text', 'selected'])\n@Component({\n standalone: true,\n selector: 'ui5-search-scope',\n template: '<ng-content></ng-content>',\n inputs: ['text', 'selected'],\n exportAs: 'ui5SearchScope',\n})\nclass SearchScopeComponent {\n /**\n Defines the text of the component.\n */\n text!: string;\n /**\n Indicates whether the item is selected\n */\n @InputDecorator({ transform: booleanAttribute })\n selected!: boolean;\n\n private elementRef: ElementRef<SearchScope> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): SearchScope {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { SearchScopeComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":";;;;;;AAYA,IAQM,oBAAoB,GAR1B,MAQM,oBAAoB,CAAA;AAexB,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AARQ,QAAA,IAAA,CAAA,UAAU,GAA4B,MAAM,CAAC,UAAU,CAAC;AACxD,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GApBf,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAApB,oBAAoB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,QAAA,EAAA,CAAA,UAAA,EAAA,UAAA,EAQK,gBAAgB,CAAA,EAAA,EAAA,QAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAZnC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAIjC,oBAAoB,GAAA,UAAA,CAAA;AARzB,IAAA,WAAW,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;;AAQ5B,CAAA,EAAA,oBAAoB,CAsBzB;2FAtBK,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAPzB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,kBAAkB;AAC5B,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,CAAC;AAC5B,oBAAA,QAAQ,EAAE,gBAAgB;AAC3B,iBAAA;;sBASEA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;;AC5BjD;;AAEG;;;;"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-search-scope.mjs","sources":["../../../../libs/ui5-angular/fiori/search-scope/index.ts","../../../../libs/ui5-angular/fiori/search-scope/ui5-webcomponents-ngx-fiori-search-scope.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n NgZone,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/SearchScope.js';\nimport SearchScope from '@ui5/webcomponents-fiori/dist/SearchScope.js';\nimport { ProxyInputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs(['text', 'value'])\n@Component({\n standalone: true,\n selector: 'ui5-search-scope',\n template: '<ng-content></ng-content>',\n inputs: ['text', 'value'],\n exportAs: 'ui5SearchScope',\n})\nclass SearchScopeComponent {\n /**\n Defines the text of the component.\n */\n text!: string;\n /**\n Defines the value of the `ui5-search-scope`.\nUsed for selection in Search scopes.\n */\n value!: string | undefined;\n\n private elementRef: ElementRef<SearchScope> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): SearchScope {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { SearchScopeComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAUA,IAQM,oBAAoB,GAR1B,MAQM,oBAAoB,CAAA;AAexB,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AARQ,QAAA,IAAA,CAAA,UAAU,GAA4B,MAAM,CAAC,UAAU,CAAC;AACxD,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GApBf,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,oJAJd,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAIjC,oBAAoB,GAAA,UAAA,CAAA;AARzB,IAAA,WAAW,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;AAQzB,CAAA,EAAA,oBAAoB,CAsBzB;2FAtBK,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAPzB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,kBAAkB;AAC5B,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,OAAO,CAAC;AACzB,oBAAA,QAAQ,EAAE,gBAAgB;AAC3B,iBAAA;;;ACjBD;;AAEG;;;;"}
@@ -15,7 +15,7 @@ let SearchComponent = class SearchComponent {
15
15
  this.cdr.detach();
16
16
  }
17
17
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: SearchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: SearchComponent, isStandalone: true, selector: "ui5-search", inputs: { loading: ["loading", "loading", booleanAttribute], noTypeahead: ["noTypeahead", "noTypeahead", booleanAttribute], open: ["open", "open", booleanAttribute], showClearIcon: ["showClearIcon", "showClearIcon", booleanAttribute], value: "value", placeholder: "placeholder", accessibleName: "accessibleName", accessibleDescription: "accessibleDescription" }, outputs: { ui5Open: "ui5Open", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5ScopeChange: "ui5ScopeChange", ui5Search: "ui5Search" }, exportAs: ["ui5Search"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: SearchComponent, isStandalone: true, selector: "ui5-search", inputs: { loading: ["loading", "loading", booleanAttribute], noTypeahead: ["noTypeahead", "noTypeahead", booleanAttribute], open: ["open", "open", booleanAttribute], showClearIcon: ["showClearIcon", "showClearIcon", booleanAttribute], value: "value", placeholder: "placeholder", accessibleName: "accessibleName", accessibleDescription: "accessibleDescription", scopeValue: "scopeValue" }, outputs: { ui5Open: "ui5Open", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5ScopeChange: "ui5ScopeChange", ui5Search: "ui5Search" }, exportAs: ["ui5Search"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
19
  };
20
20
  SearchComponent = __decorate([
21
21
  ProxyInputs([
@@ -27,6 +27,7 @@ SearchComponent = __decorate([
27
27
  'placeholder',
28
28
  'accessibleName',
29
29
  'accessibleDescription',
30
+ 'scopeValue',
30
31
  ]),
31
32
  ProxyOutputs([
32
33
  'open: ui5Open',
@@ -52,6 +53,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
52
53
  'placeholder',
53
54
  'accessibleName',
54
55
  'accessibleDescription',
56
+ 'scopeValue',
55
57
  ],
56
58
  outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],
57
59
  exportAs: 'ui5Search',
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx-fiori-search.mjs","sources":["../../../../libs/ui5-angular/fiori/search/index.ts","../../../../libs/ui5-angular/fiori/search/ui5-webcomponents-ngx-fiori-search.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/Search.js';\nimport Search from '@ui5/webcomponents-fiori/dist/Search.js';\nimport { SearchFieldScopeSelectionChangeDetails } from '@ui5/webcomponents-fiori/dist/SearchField.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs([\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n])\n@ProxyOutputs([\n 'open: ui5Open',\n 'close: ui5Close',\n 'input: ui5Input',\n 'scope-change: ui5ScopeChange',\n 'search: ui5Search',\n])\n@Component({\n standalone: true,\n selector: 'ui5-search',\n template: '<ng-content></ng-content>',\n inputs: [\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n ],\n outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],\n exportAs: 'ui5Search',\n})\nclass SearchComponent {\n /**\n Indicates whether a loading indicator should be shown in the popup.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item.\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Indicates whether the items picker is open.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Defines whether the clear icon of the search will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Defines the accessible ARIA description of the field.\n */\n accessibleDescription!: string | undefined;\n\n /**\n Fired when the popup is opened.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the popup is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when typing in input or clear icon is pressed.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when the scope has changed.\n */\n ui5ScopeChange!: EventEmitter<SearchFieldScopeSelectionChangeDetails>;\n /**\n Fired when the user has triggered search with Enter key or Search Button press.\n */\n ui5Search!: EventEmitter<void>;\n\n private elementRef: ElementRef<Search> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): Search {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { SearchComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":";;;;;;AAcA,IAkCM,eAAe,GAlCrB,MAkCM,eAAe,CAAA;AAkEnB,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AARQ,QAAA,IAAA,CAAA,UAAU,GAAuB,MAAM,CAAC,UAAU,CAAC;AACnD,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GAvEf,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAf,eAAe,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,EAAA,OAAA,EAAA,CAAA,SAAA,EAAA,SAAA,EAIU,gBAAgB,CAAA,EAAA,WAAA,EAAA,CAAA,aAAA,EAAA,aAAA,EAKhB,gBAAgB,0BAKhB,gBAAgB,CAAA,EAAA,aAAA,EAAA,CAAA,eAAA,EAAA,eAAA,EAKhB,gBAAgB,CAAA,EAAA,KAAA,EAAA,OAAA,EAAA,WAAA,EAAA,aAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,qBAAA,EAAA,uBAAA,EAAA,EAAA,OAAA,EAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,UAAA,EAAA,QAAA,EAAA,UAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,SAAA,EAAA,WAAA,EAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAjCnC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAcjC,eAAe,GAAA,UAAA,CAAA;AAlCpB,IAAA,WAAW,CAAC;QACX,SAAS;QACT,aAAa;QACb,MAAM;QACN,eAAe;QACf,OAAO;QACP,aAAa;QACb,gBAAgB;QAChB,uBAAuB;KACxB,CAAC;AACD,IAAA,YAAY,CAAC;QACZ,eAAe;QACf,iBAAiB;QACjB,iBAAiB;QACjB,8BAA8B;QAC9B,mBAAmB;KACpB,CAAC;;AAkBI,CAAA,EAAA,eAAe,CAyEpB;2FAzEK,eAAe,EAAA,UAAA,EAAA,CAAA;kBAjBpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE;wBACN,SAAS;wBACT,aAAa;wBACb,MAAM;wBACN,eAAe;wBACf,OAAO;wBACP,aAAa;wBACb,gBAAgB;wBAChB,uBAAuB;AACxB,qBAAA;oBACD,OAAO,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,gBAAgB,EAAE,WAAW,CAAC;AAC3E,oBAAA,QAAQ,EAAE,WAAW;AACtB,iBAAA;;sBAKEA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;;ACnEjD;;AAEG;;;;"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-search.mjs","sources":["../../../../libs/ui5-angular/fiori/search/index.ts","../../../../libs/ui5-angular/fiori/search/ui5-webcomponents-ngx-fiori-search.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/Search.js';\nimport Search from '@ui5/webcomponents-fiori/dist/Search.js';\nimport { SearchFieldScopeSelectionChangeDetails } from '@ui5/webcomponents-fiori/dist/SearchField.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs([\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'scopeValue',\n])\n@ProxyOutputs([\n 'open: ui5Open',\n 'close: ui5Close',\n 'input: ui5Input',\n 'scope-change: ui5ScopeChange',\n 'search: ui5Search',\n])\n@Component({\n standalone: true,\n selector: 'ui5-search',\n template: '<ng-content></ng-content>',\n inputs: [\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'scopeValue',\n ],\n outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],\n exportAs: 'ui5Search',\n})\nclass SearchComponent {\n /**\n Indicates whether a loading indicator should be shown in the popup.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item.\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Indicates whether the items picker is open.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Defines whether the clear icon of the search will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Defines the accessible ARIA description of the field.\n */\n accessibleDescription!: string | undefined;\n /**\n Defines the value of the component:\n\nApplications are responsible for setting the correct scope value.\n\n**Note:** If the given value does not match any existing scopes,\nno scope will be selected and the SearchField scope component will be displayed as empty.\n */\n scopeValue!: string | undefined;\n\n /**\n Fired when the popup is opened.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the popup is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when typing in input or clear icon is pressed.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when the scope has changed.\n */\n ui5ScopeChange!: EventEmitter<SearchFieldScopeSelectionChangeDetails>;\n /**\n Fired when the user has triggered search with Enter key or Search Button press.\n */\n ui5Search!: EventEmitter<void>;\n\n private elementRef: ElementRef<Search> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): Search {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { SearchComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":";;;;;;AAcA,IAoCM,eAAe,GApCrB,MAoCM,eAAe,CAAA;AA2EnB,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AARQ,QAAA,IAAA,CAAA,UAAU,GAAuB,MAAM,CAAC,UAAU,CAAC;AACnD,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GAhFf,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAf,eAAe,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,EAAA,OAAA,EAAA,CAAA,SAAA,EAAA,SAAA,EAIU,gBAAgB,CAAA,EAAA,WAAA,EAAA,CAAA,aAAA,EAAA,aAAA,EAKhB,gBAAgB,0BAKhB,gBAAgB,CAAA,EAAA,aAAA,EAAA,CAAA,eAAA,EAAA,eAAA,EAKhB,gBAAgB,CAAA,EAAA,KAAA,EAAA,OAAA,EAAA,WAAA,EAAA,aAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,qBAAA,EAAA,uBAAA,EAAA,UAAA,EAAA,YAAA,EAAA,EAAA,OAAA,EAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,UAAA,EAAA,QAAA,EAAA,UAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,SAAA,EAAA,WAAA,EAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAlCnC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAejC,eAAe,GAAA,UAAA,CAAA;AApCpB,IAAA,WAAW,CAAC;QACX,SAAS;QACT,aAAa;QACb,MAAM;QACN,eAAe;QACf,OAAO;QACP,aAAa;QACb,gBAAgB;QAChB,uBAAuB;QACvB,YAAY;KACb,CAAC;AACD,IAAA,YAAY,CAAC;QACZ,eAAe;QACf,iBAAiB;QACjB,iBAAiB;QACjB,8BAA8B;QAC9B,mBAAmB;KACpB,CAAC;;AAmBI,CAAA,EAAA,eAAe,CAkFpB;2FAlFK,eAAe,EAAA,UAAA,EAAA,CAAA;kBAlBpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE;wBACN,SAAS;wBACT,aAAa;wBACb,MAAM;wBACN,eAAe;wBACf,OAAO;wBACP,aAAa;wBACb,gBAAgB;wBAChB,uBAAuB;wBACvB,YAAY;AACb,qBAAA;oBACD,OAAO,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,gBAAgB,EAAE,WAAW,CAAC;AAC3E,oBAAA,QAAQ,EAAE,WAAW;AACtB,iBAAA;;sBAKEA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;;ACrEjD;;AAEG;;;;"}
@@ -15,7 +15,7 @@ let ShellBarSearchComponent = class ShellBarSearchComponent {
15
15
  this.cdr.detach();
16
16
  }
17
17
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: ShellBarSearchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: ShellBarSearchComponent, isStandalone: true, selector: "ui5-shellbar-search", inputs: { loading: ["loading", "loading", booleanAttribute], noTypeahead: ["noTypeahead", "noTypeahead", booleanAttribute], open: ["open", "open", booleanAttribute], showClearIcon: ["showClearIcon", "showClearIcon", booleanAttribute], value: "value", placeholder: "placeholder", accessibleName: "accessibleName", accessibleDescription: "accessibleDescription", autoOpen: ["autoOpen", "autoOpen", booleanAttribute] }, outputs: { ui5Open: "ui5Open", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5ScopeChange: "ui5ScopeChange", ui5Search: "ui5Search" }, exportAs: ["ui5ShellbarSearch"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: ShellBarSearchComponent, isStandalone: true, selector: "ui5-shellbar-search", inputs: { loading: ["loading", "loading", booleanAttribute], noTypeahead: ["noTypeahead", "noTypeahead", booleanAttribute], open: ["open", "open", booleanAttribute], showClearIcon: ["showClearIcon", "showClearIcon", booleanAttribute], value: "value", placeholder: "placeholder", accessibleName: "accessibleName", accessibleDescription: "accessibleDescription", scopeValue: "scopeValue", autoOpen: ["autoOpen", "autoOpen", booleanAttribute] }, outputs: { ui5Open: "ui5Open", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5ScopeChange: "ui5ScopeChange", ui5Search: "ui5Search" }, exportAs: ["ui5ShellbarSearch"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
19
  };
20
20
  ShellBarSearchComponent = __decorate([
21
21
  ProxyInputs([
@@ -27,6 +27,7 @@ ShellBarSearchComponent = __decorate([
27
27
  'placeholder',
28
28
  'accessibleName',
29
29
  'accessibleDescription',
30
+ 'scopeValue',
30
31
  'autoOpen',
31
32
  ]),
32
33
  ProxyOutputs([
@@ -53,6 +54,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
53
54
  'placeholder',
54
55
  'accessibleName',
55
56
  'accessibleDescription',
57
+ 'scopeValue',
56
58
  'autoOpen',
57
59
  ],
58
60
  outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx-fiori-shell-bar-search.mjs","sources":["../../../../libs/ui5-angular/fiori/shell-bar-search/index.ts","../../../../libs/ui5-angular/fiori/shell-bar-search/ui5-webcomponents-ngx-fiori-shell-bar-search.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport { SearchFieldScopeSelectionChangeDetails } from '@ui5/webcomponents-fiori/dist/SearchField.js';\nimport '@ui5/webcomponents-fiori/dist/ShellBarSearch.js';\nimport ShellBarSearch from '@ui5/webcomponents-fiori/dist/ShellBarSearch.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs([\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'autoOpen',\n])\n@ProxyOutputs([\n 'open: ui5Open',\n 'close: ui5Close',\n 'input: ui5Input',\n 'scope-change: ui5ScopeChange',\n 'search: ui5Search',\n])\n@Component({\n standalone: true,\n selector: 'ui5-shellbar-search',\n template: '<ng-content></ng-content>',\n inputs: [\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'autoOpen',\n ],\n outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],\n exportAs: 'ui5ShellbarSearch',\n})\nclass ShellBarSearchComponent {\n /**\n Indicates whether a loading indicator should be shown in the popup.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item.\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Indicates whether the items picker is open.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Defines whether the clear icon of the search will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Defines the accessible ARIA description of the field.\n */\n accessibleDescription!: string | undefined;\n /**\n Indicates whether the suggestions popover should be opened on focus.\n */\n @InputDecorator({ transform: booleanAttribute })\n autoOpen!: boolean;\n\n /**\n Fired when the popup is opened.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the popup is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when typing in input or clear icon is pressed.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when the scope has changed.\n */\n ui5ScopeChange!: EventEmitter<SearchFieldScopeSelectionChangeDetails>;\n /**\n Fired when the user has triggered search with Enter key or Search Button press.\n */\n ui5Search!: EventEmitter<void>;\n\n private elementRef: ElementRef<ShellBarSearch> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): ShellBarSearch {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { ShellBarSearchComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":"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"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-shell-bar-search.mjs","sources":["../../../../libs/ui5-angular/fiori/shell-bar-search/index.ts","../../../../libs/ui5-angular/fiori/shell-bar-search/ui5-webcomponents-ngx-fiori-shell-bar-search.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport { SearchFieldScopeSelectionChangeDetails } from '@ui5/webcomponents-fiori/dist/SearchField.js';\nimport '@ui5/webcomponents-fiori/dist/ShellBarSearch.js';\nimport ShellBarSearch from '@ui5/webcomponents-fiori/dist/ShellBarSearch.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs([\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'scopeValue',\n 'autoOpen',\n])\n@ProxyOutputs([\n 'open: ui5Open',\n 'close: ui5Close',\n 'input: ui5Input',\n 'scope-change: ui5ScopeChange',\n 'search: ui5Search',\n])\n@Component({\n standalone: true,\n selector: 'ui5-shellbar-search',\n template: '<ng-content></ng-content>',\n inputs: [\n 'loading',\n 'noTypeahead',\n 'open',\n 'showClearIcon',\n 'value',\n 'placeholder',\n 'accessibleName',\n 'accessibleDescription',\n 'scopeValue',\n 'autoOpen',\n ],\n outputs: ['ui5Open', 'ui5Close', 'ui5Input', 'ui5ScopeChange', 'ui5Search'],\n exportAs: 'ui5ShellbarSearch',\n})\nclass ShellBarSearchComponent {\n /**\n Indicates whether a loading indicator should be shown in the popup.\n */\n @InputDecorator({ transform: booleanAttribute })\n loading!: boolean;\n /**\n Defines whether the value will be autcompleted to match an item.\n */\n @InputDecorator({ transform: booleanAttribute })\n noTypeahead!: boolean;\n /**\n Indicates whether the items picker is open.\n */\n @InputDecorator({ transform: booleanAttribute })\n open!: boolean;\n /**\n Defines whether the clear icon of the search will be shown.\n */\n @InputDecorator({ transform: booleanAttribute })\n showClearIcon!: boolean;\n /**\n Defines the value of the component.\n\n**Note:** The property is updated upon typing.\n */\n value!: string;\n /**\n Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.\n */\n placeholder!: string | undefined;\n /**\n Defines the accessible ARIA name of the component.\n */\n accessibleName!: string | undefined;\n /**\n Defines the accessible ARIA description of the field.\n */\n accessibleDescription!: string | undefined;\n /**\n Defines the value of the component:\n\nApplications are responsible for setting the correct scope value.\n\n**Note:** If the given value does not match any existing scopes,\nno scope will be selected and the SearchField scope component will be displayed as empty.\n */\n scopeValue!: string | undefined;\n /**\n Indicates whether the suggestions popover should be opened on focus.\n */\n @InputDecorator({ transform: booleanAttribute })\n autoOpen!: boolean;\n\n /**\n Fired when the popup is opened.\n */\n ui5Open!: EventEmitter<void>;\n /**\n Fired when the popup is closed.\n */\n ui5Close!: EventEmitter<void>;\n /**\n Fired when typing in input or clear icon is pressed.\n */\n ui5Input!: EventEmitter<void>;\n /**\n Fired when the scope has changed.\n */\n ui5ScopeChange!: EventEmitter<SearchFieldScopeSelectionChangeDetails>;\n /**\n Fired when the user has triggered search with Enter key or Search Button press.\n */\n ui5Search!: EventEmitter<void>;\n\n private elementRef: ElementRef<ShellBarSearch> = inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): ShellBarSearch {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { ShellBarSearchComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":"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"}
@@ -0,0 +1,42 @@
1
+ import { __decorate, __metadata } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { inject, ElementRef, NgZone, ChangeDetectorRef, Component } from '@angular/core';
4
+ import '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewGroup.js';
5
+ import { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';
6
+
7
+ let UserSettingsAppearanceViewGroupComponent = class UserSettingsAppearanceViewGroupComponent {
8
+ get element() {
9
+ return this.elementRef.nativeElement;
10
+ }
11
+ constructor() {
12
+ this.elementRef = inject(ElementRef);
13
+ this.zone = inject(NgZone);
14
+ this.cdr = inject(ChangeDetectorRef);
15
+ this.cdr.detach();
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: UserSettingsAppearanceViewGroupComponent, isStandalone: true, selector: "ui5-user-settings-appearance-view-group", inputs: { headerText: "headerText", headerAccessibleName: "headerAccessibleName", wrappingType: "wrappingType" }, outputs: { ui5MoveOver: "ui5MoveOver", ui5Move: "ui5Move" }, exportAs: ["ui5UserSettingsAppearanceViewGroup"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
+ };
20
+ UserSettingsAppearanceViewGroupComponent = __decorate([
21
+ ProxyInputs(['headerText', 'headerAccessibleName', 'wrappingType']),
22
+ ProxyOutputs(['move-over: ui5MoveOver', 'move: ui5Move']),
23
+ __metadata("design:paramtypes", [])
24
+ ], UserSettingsAppearanceViewGroupComponent);
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewGroupComponent, decorators: [{
26
+ type: Component,
27
+ args: [{
28
+ standalone: true,
29
+ selector: 'ui5-user-settings-appearance-view-group',
30
+ template: '<ng-content></ng-content>',
31
+ inputs: ['headerText', 'headerAccessibleName', 'wrappingType'],
32
+ outputs: ['ui5MoveOver', 'ui5Move'],
33
+ exportAs: 'ui5UserSettingsAppearanceViewGroup',
34
+ }]
35
+ }], ctorParameters: () => [] });
36
+
37
+ /**
38
+ * Generated bundle index. Do not edit.
39
+ */
40
+
41
+ export { UserSettingsAppearanceViewGroupComponent };
42
+ //# sourceMappingURL=ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.mjs","sources":["../../../../libs/ui5-angular/fiori/user-settings-appearance-view-group/index.ts","../../../../libs/ui5-angular/fiori/user-settings-appearance-view-group/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n NgZone,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewGroup.js';\nimport UserSettingsAppearanceViewGroup from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewGroup.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\nimport { ListItemGroupMoveEventDetail } from '@ui5/webcomponents/dist/ListItemGroup.js';\n@ProxyInputs(['headerText', 'headerAccessibleName', 'wrappingType'])\n@ProxyOutputs(['move-over: ui5MoveOver', 'move: ui5Move'])\n@Component({\n standalone: true,\n selector: 'ui5-user-settings-appearance-view-group',\n template: '<ng-content></ng-content>',\n inputs: ['headerText', 'headerAccessibleName', 'wrappingType'],\n outputs: ['ui5MoveOver', 'ui5Move'],\n exportAs: 'ui5UserSettingsAppearanceViewGroup',\n})\nclass UserSettingsAppearanceViewGroupComponent {\n /**\n Defines the header text of the <code>ui5-li-group</code>.\n */\n headerText!: string | undefined;\n /**\n Defines the accessible name of the header.\n */\n headerAccessibleName!: string | undefined;\n /**\n Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).\n */\n wrappingType!: 'None' | 'Normal';\n\n /**\n Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n */\n ui5MoveOver!: EventEmitter<ListItemGroupMoveEventDetail>;\n /**\n Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n */\n ui5Move!: EventEmitter<ListItemGroupMoveEventDetail>;\n\n private elementRef: ElementRef<UserSettingsAppearanceViewGroup> =\n inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): UserSettingsAppearanceViewGroup {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { UserSettingsAppearanceViewGroupComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAYA,IAUM,wCAAwC,GAV9C,MAUM,wCAAwC,CAAA;AA0C5C,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AATQ,QAAA,IAAA,CAAA,UAAU,GAChB,MAAM,CAAC,UAAU,CAAC;AACZ,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GA/Cf,wCAAwC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAxC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wCAAwC,oUALlC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAKjC,wCAAwC,GAAA,UAAA,CAAA;IAV7C,WAAW,CAAC,CAAC,YAAY,EAAE,sBAAsB,EAAE,cAAc,CAAC,CAAC;AACnE,IAAA,YAAY,CAAC,CAAC,wBAAwB,EAAE,eAAe,CAAC,CAAC;;AASpD,CAAA,EAAA,wCAAwC,CAiD7C;2FAjDK,wCAAwC,EAAA,UAAA,EAAA,CAAA;kBAR7C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,yCAAyC;AACnD,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE,CAAC,YAAY,EAAE,sBAAsB,EAAE,cAAc,CAAC;AAC9D,oBAAA,OAAO,EAAE,CAAC,aAAa,EAAE,SAAS,CAAC;AACnC,oBAAA,QAAQ,EAAE,oCAAoC;AAC/C,iBAAA;;;ACrBD;;AAEG;;;;"}
@@ -0,0 +1,77 @@
1
+ import { __decorate, __metadata } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { inject, ElementRef, NgZone, ChangeDetectorRef, booleanAttribute, Input, Component } from '@angular/core';
4
+ import '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewItem.js';
5
+ import { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';
6
+
7
+ let UserSettingsAppearanceViewItemComponent = class UserSettingsAppearanceViewItemComponent {
8
+ get element() {
9
+ return this.elementRef.nativeElement;
10
+ }
11
+ constructor() {
12
+ this.elementRef = inject(ElementRef);
13
+ this.zone = inject(NgZone);
14
+ this.cdr = inject(ChangeDetectorRef);
15
+ this.cdr.detach();
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: UserSettingsAppearanceViewItemComponent, isStandalone: true, selector: "ui5-user-settings-appearance-view-item", inputs: { type: "type", accessibilityAttributes: "accessibilityAttributes", navigated: ["navigated", "navigated", booleanAttribute], tooltip: "tooltip", highlight: "highlight", selected: ["selected", "selected", booleanAttribute], movable: ["movable", "movable", booleanAttribute], accessibleName: "accessibleName", itemKey: "itemKey", text: "text", icon: "icon", colorScheme: "colorScheme" }, outputs: { ui5DetailClick: "ui5DetailClick" }, exportAs: ["ui5UserSettingsAppearanceViewItem"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
+ };
20
+ UserSettingsAppearanceViewItemComponent = __decorate([
21
+ ProxyInputs([
22
+ 'type',
23
+ 'accessibilityAttributes',
24
+ 'navigated',
25
+ 'tooltip',
26
+ 'highlight',
27
+ 'selected',
28
+ 'movable',
29
+ 'accessibleName',
30
+ 'itemKey',
31
+ 'text',
32
+ 'icon',
33
+ 'colorScheme',
34
+ ]),
35
+ ProxyOutputs(['detail-click: ui5DetailClick']),
36
+ __metadata("design:paramtypes", [])
37
+ ], UserSettingsAppearanceViewItemComponent);
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewItemComponent, decorators: [{
39
+ type: Component,
40
+ args: [{
41
+ standalone: true,
42
+ selector: 'ui5-user-settings-appearance-view-item',
43
+ template: '<ng-content></ng-content>',
44
+ inputs: [
45
+ 'type',
46
+ 'accessibilityAttributes',
47
+ 'navigated',
48
+ 'tooltip',
49
+ 'highlight',
50
+ 'selected',
51
+ 'movable',
52
+ 'accessibleName',
53
+ 'itemKey',
54
+ 'text',
55
+ 'icon',
56
+ 'colorScheme',
57
+ ],
58
+ outputs: ['ui5DetailClick'],
59
+ exportAs: 'ui5UserSettingsAppearanceViewItem',
60
+ }]
61
+ }], ctorParameters: () => [], propDecorators: { navigated: [{
62
+ type: Input,
63
+ args: [{ transform: booleanAttribute }]
64
+ }], selected: [{
65
+ type: Input,
66
+ args: [{ transform: booleanAttribute }]
67
+ }], movable: [{
68
+ type: Input,
69
+ args: [{ transform: booleanAttribute }]
70
+ }] } });
71
+
72
+ /**
73
+ * Generated bundle index. Do not edit.
74
+ */
75
+
76
+ export { UserSettingsAppearanceViewItemComponent };
77
+ //# sourceMappingURL=ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.mjs","sources":["../../../../libs/ui5-angular/fiori/user-settings-appearance-view-item/index.ts","../../../../libs/ui5-angular/fiori/user-settings-appearance-view-item/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewItem.js';\nimport UserSettingsAppearanceViewItem from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewItem.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\nimport { ListItemAccessibilityAttributes } from '@ui5/webcomponents/dist/ListItem.js';\n@ProxyInputs([\n 'type',\n 'accessibilityAttributes',\n 'navigated',\n 'tooltip',\n 'highlight',\n 'selected',\n 'movable',\n 'accessibleName',\n 'itemKey',\n 'text',\n 'icon',\n 'colorScheme',\n])\n@ProxyOutputs(['detail-click: ui5DetailClick'])\n@Component({\n standalone: true,\n selector: 'ui5-user-settings-appearance-view-item',\n template: '<ng-content></ng-content>',\n inputs: [\n 'type',\n 'accessibilityAttributes',\n 'navigated',\n 'tooltip',\n 'highlight',\n 'selected',\n 'movable',\n 'accessibleName',\n 'itemKey',\n 'text',\n 'icon',\n 'colorScheme',\n ],\n outputs: ['ui5DetailClick'],\n exportAs: 'ui5UserSettingsAppearanceViewItem',\n})\nclass UserSettingsAppearanceViewItemComponent {\n /**\n Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.\n */\n type!: 'Inactive' | 'Active' | 'Detail' | 'Navigation';\n /**\n Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.\n */\n accessibilityAttributes!: ListItemAccessibilityAttributes;\n /**\n The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.\n */\n @InputDecorator({ transform: booleanAttribute })\n navigated!: boolean;\n /**\n Defines the text of the tooltip that would be displayed for the list item.\n */\n tooltip!: string | undefined;\n /**\n Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.\n */\n highlight!: 'None' | 'Positive' | 'Critical' | 'Negative' | 'Information';\n /**\n Defines the selected state of the component.\n */\n @InputDecorator({ transform: booleanAttribute })\n selected!: boolean;\n /**\n Defines whether the item is movable.\n */\n @InputDecorator({ transform: booleanAttribute })\n movable!: boolean;\n /**\n Defines the text alternative of the component.\n\n**Note**: If not provided a default text alternative will be set, if present.\n */\n accessibleName!: string | undefined;\n /**\n Defines the unique identifier of the item.\n */\n itemKey!: string;\n /**\n Defines the text label displayed for the appearance item.\n */\n text!: string;\n /**\n Defines the icon of the appearance item.\n */\n icon!: string;\n /**\n Defines the color scheme of the avatar.\n */\n colorScheme!: string;\n\n /**\n Fired when the user clicks on the detail button when type is `Detail`.\n */\n ui5DetailClick!: EventEmitter<void>;\n\n private elementRef: ElementRef<UserSettingsAppearanceViewItem> =\n inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): UserSettingsAppearanceViewItem {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { UserSettingsAppearanceViewItemComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":";;;;;;AAcA,IAoCM,uCAAuC,GApC7C,MAoCM,uCAAuC,CAAA;AA8E3C,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AATQ,QAAA,IAAA,CAAA,UAAU,GAChB,MAAM,CAAC,UAAU,CAAC;AACZ,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GAnFf,uCAAuC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uCAAuC,4LAwBd,gBAAgB,CAAA,EAAA,OAAA,EAAA,SAAA,EAAA,SAAA,EAAA,WAAA,EAAA,QAAA,EAAA,CAAA,UAAA,EAAA,UAAA,EAchB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CAAA,SAAA,EAAA,SAAA,EAKhB,gBAAgB,2OA7DnC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAkBjC,uCAAuC,GAAA,UAAA,CAAA;AApC5C,IAAA,WAAW,CAAC;QACX,MAAM;QACN,yBAAyB;QACzB,WAAW;QACX,SAAS;QACT,WAAW;QACX,UAAU;QACV,SAAS;QACT,gBAAgB;QAChB,SAAS;QACT,MAAM;QACN,MAAM;QACN,aAAa;KACd,CAAC;AACD,IAAA,YAAY,CAAC,CAAC,8BAA8B,CAAC,CAAC;;AAsBzC,CAAA,EAAA,uCAAuC,CAqF5C;2FArFK,uCAAuC,EAAA,UAAA,EAAA,CAAA;kBArB5C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,wCAAwC;AAClD,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE;wBACN,MAAM;wBACN,yBAAyB;wBACzB,WAAW;wBACX,SAAS;wBACT,WAAW;wBACX,UAAU;wBACV,SAAS;wBACT,gBAAgB;wBAChB,SAAS;wBACT,MAAM;wBACN,MAAM;wBACN,aAAa;AACd,qBAAA;oBACD,OAAO,EAAE,CAAC,gBAAgB,CAAC;AAC3B,oBAAA,QAAQ,EAAE,mCAAmC;AAC9C,iBAAA;;sBAyBEA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAc9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAK9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;;AC7FjD;;AAEG;;;;"}
@@ -0,0 +1,48 @@
1
+ import { __decorate, __metadata } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { inject, ElementRef, NgZone, ChangeDetectorRef, booleanAttribute, Input, Component } from '@angular/core';
4
+ import '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceView.js';
5
+ import { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';
6
+
7
+ let UserSettingsAppearanceViewComponent = class UserSettingsAppearanceViewComponent {
8
+ get element() {
9
+ return this.elementRef.nativeElement;
10
+ }
11
+ constructor() {
12
+ this.elementRef = inject(ElementRef);
13
+ this.zone = inject(NgZone);
14
+ this.cdr = inject(ChangeDetectorRef);
15
+ this.cdr.detach();
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "20.3.9", type: UserSettingsAppearanceViewComponent, isStandalone: true, selector: "ui5-user-settings-appearance-view", inputs: { text: "text", selected: ["selected", "selected", booleanAttribute], secondary: ["secondary", "secondary", booleanAttribute] }, outputs: { ui5SelectionChange: "ui5SelectionChange" }, exportAs: ["ui5UserSettingsAppearanceView"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
19
+ };
20
+ UserSettingsAppearanceViewComponent = __decorate([
21
+ ProxyInputs(['text', 'selected', 'secondary']),
22
+ ProxyOutputs(['selection-change: ui5SelectionChange']),
23
+ __metadata("design:paramtypes", [])
24
+ ], UserSettingsAppearanceViewComponent);
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: UserSettingsAppearanceViewComponent, decorators: [{
26
+ type: Component,
27
+ args: [{
28
+ standalone: true,
29
+ selector: 'ui5-user-settings-appearance-view',
30
+ template: '<ng-content></ng-content>',
31
+ inputs: ['text', 'selected', 'secondary'],
32
+ outputs: ['ui5SelectionChange'],
33
+ exportAs: 'ui5UserSettingsAppearanceView',
34
+ }]
35
+ }], ctorParameters: () => [], propDecorators: { selected: [{
36
+ type: Input,
37
+ args: [{ transform: booleanAttribute }]
38
+ }], secondary: [{
39
+ type: Input,
40
+ args: [{ transform: booleanAttribute }]
41
+ }] } });
42
+
43
+ /**
44
+ * Generated bundle index. Do not edit.
45
+ */
46
+
47
+ export { UserSettingsAppearanceViewComponent };
48
+ //# sourceMappingURL=ui5-webcomponents-ngx-fiori-user-settings-appearance-view.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori-user-settings-appearance-view.mjs","sources":["../../../../libs/ui5-angular/fiori/user-settings-appearance-view/index.ts","../../../../libs/ui5-angular/fiori/user-settings-appearance-view/ui5-webcomponents-ngx-fiori-user-settings-appearance-view.ts"],"sourcesContent":["import {\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n Input as InputDecorator,\n NgZone,\n booleanAttribute,\n inject,\n} from '@angular/core';\nimport '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceView.js';\nimport {\n default as UserSettingsAppearanceView,\n UserSettingsAppearanceViewItemSelectEventDetail,\n} from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceView.js';\nimport { ProxyInputs, ProxyOutputs } from '@ui5/webcomponents-ngx/utils';\n@ProxyInputs(['text', 'selected', 'secondary'])\n@ProxyOutputs(['selection-change: ui5SelectionChange'])\n@Component({\n standalone: true,\n selector: 'ui5-user-settings-appearance-view',\n template: '<ng-content></ng-content>',\n inputs: ['text', 'selected', 'secondary'],\n outputs: ['ui5SelectionChange'],\n exportAs: 'ui5UserSettingsAppearanceView',\n})\nclass UserSettingsAppearanceViewComponent {\n /**\n Defines the title text of the user settings view.\n */\n text!: string | undefined;\n /**\n Defines whether the view is selected. There can be just one selected view at a time.\n */\n @InputDecorator({ transform: booleanAttribute })\n selected!: boolean;\n /**\n Indicates whether the view is secondary. It is relevant only if the view is used in `pages` slot of `ui5-user-settings-item`\nand controls the visibility of the back button.\n */\n @InputDecorator({ transform: booleanAttribute })\n secondary!: boolean;\n\n /**\n Fired when an item is selected.\n */\n ui5SelectionChange!: EventEmitter<UserSettingsAppearanceViewItemSelectEventDetail>;\n\n private elementRef: ElementRef<UserSettingsAppearanceView> =\n inject(ElementRef);\n private zone = inject(NgZone);\n private cdr = inject(ChangeDetectorRef);\n\n get element(): UserSettingsAppearanceView {\n return this.elementRef.nativeElement;\n }\n\n constructor() {\n this.cdr.detach();\n }\n}\nexport { UserSettingsAppearanceViewComponent };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["InputDecorator"],"mappings":";;;;;;AAgBA,IAUM,mCAAmC,GAVzC,MAUM,mCAAmC,CAAA;AA2BvC,IAAA,IAAI,OAAO,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa;;AAGtC,IAAA,WAAA,GAAA;AATQ,QAAA,IAAA,CAAA,UAAU,GAChB,MAAM,CAAC,UAAU,CAAC;AACZ,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;AACrB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,iBAAiB,CAAC;AAOrC,QAAA,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;;8GAhCf,mCAAmC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mCAAmC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,QAAA,EAAA,CAAA,UAAA,EAAA,UAAA,EAQV,gBAAgB,CAAA,EAAA,SAAA,EAAA,CAAA,WAAA,EAAA,WAAA,EAMhB,gBAAgB,iIAnBnC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;AAKjC,mCAAmC,GAAA,UAAA,CAAA;IAVxC,WAAW,CAAC,CAAC,MAAM,EAAE,UAAU,EAAE,WAAW,CAAC,CAAC;AAC9C,IAAA,YAAY,CAAC,CAAC,sCAAsC,CAAC,CAAC;;AASjD,CAAA,EAAA,mCAAmC,CAkCxC;2FAlCK,mCAAmC,EAAA,UAAA,EAAA,CAAA;kBARxC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,mCAAmC;AAC7C,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,EAAE,WAAW,CAAC;oBACzC,OAAO,EAAE,CAAC,oBAAoB,CAAC;AAC/B,oBAAA,QAAQ,EAAE,+BAA+B;AAC1C,iBAAA;;sBASEA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAM9CA,KAAc;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;;ACxCjD;;AAEG;;;;"}
@@ -47,6 +47,9 @@ import { UserMenuAccountComponent } from '@ui5/webcomponents-ngx/fiori/user-menu
47
47
  import { UserMenuItemComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item';
48
48
  import { UserMenuItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item-group';
49
49
  import { UserSettingsAccountViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-account-view';
50
+ import { UserSettingsAppearanceViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view';
51
+ import { UserSettingsAppearanceViewGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-group';
52
+ import { UserSettingsAppearanceViewItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-item';
50
53
  import { UserSettingsDialogComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
51
54
  import { UserSettingsItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-item';
52
55
  import { UserSettingsViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-view';
@@ -100,6 +103,9 @@ const imports = [
100
103
  UserMenuItemComponent,
101
104
  UserMenuItemGroupComponent,
102
105
  UserSettingsAccountViewComponent,
106
+ UserSettingsAppearanceViewComponent,
107
+ UserSettingsAppearanceViewGroupComponent,
108
+ UserSettingsAppearanceViewItemComponent,
103
109
  UserSettingsDialogComponent,
104
110
  UserSettingsItemComponent,
105
111
  UserSettingsViewComponent,
@@ -156,6 +162,9 @@ class Ui5FioriModule {
156
162
  UserMenuItemComponent,
157
163
  UserMenuItemGroupComponent,
158
164
  UserSettingsAccountViewComponent,
165
+ UserSettingsAppearanceViewComponent,
166
+ UserSettingsAppearanceViewGroupComponent,
167
+ UserSettingsAppearanceViewItemComponent,
159
168
  UserSettingsDialogComponent,
160
169
  UserSettingsItemComponent,
161
170
  UserSettingsViewComponent,
@@ -206,6 +215,9 @@ class Ui5FioriModule {
206
215
  UserMenuItemComponent,
207
216
  UserMenuItemGroupComponent,
208
217
  UserSettingsAccountViewComponent,
218
+ UserSettingsAppearanceViewComponent,
219
+ UserSettingsAppearanceViewGroupComponent,
220
+ UserSettingsAppearanceViewItemComponent,
209
221
  UserSettingsDialogComponent,
210
222
  UserSettingsItemComponent,
211
223
  UserSettingsViewComponent,
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx-fiori.mjs","sources":["../../../../libs/ui5-angular/fiori/ui5-fiori.module.ts","../../../../libs/ui5-angular/fiori/ui5-webcomponents-ngx-fiori.ts"],"sourcesContent":["import { NgModule } from \"@angular/core\";\nimport { Ui5WebcomponentsFioriThemingService } from \"@ui5/webcomponents-ngx/fiori/theming\";\nimport \"@ui5/webcomponents-fiori/dist/Assets.js\";\nimport { BarcodeScannerDialogComponent } from \"@ui5/webcomponents-ngx/fiori/barcode-scanner-dialog\";\nimport { DynamicPageComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page\";\nimport { DynamicPageHeaderComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page-header\";\nimport { DynamicPageTitleComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page-title\";\nimport { DynamicSideContentComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-side-content\";\nimport { FilterItemComponent } from \"@ui5/webcomponents-ngx/fiori/filter-item\";\nimport { FilterItemOptionComponent } from \"@ui5/webcomponents-ngx/fiori/filter-item-option\";\nimport { FlexibleColumnLayoutComponent } from \"@ui5/webcomponents-ngx/fiori/flexible-column-layout\";\nimport { GroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/group-item\";\nimport { IllustratedMessageComponent } from \"@ui5/webcomponents-ngx/fiori/illustrated-message\";\nimport { MediaGalleryComponent } from \"@ui5/webcomponents-ngx/fiori/media-gallery\";\nimport { MediaGalleryItemComponent } from \"@ui5/webcomponents-ngx/fiori/media-gallery-item\";\nimport { NavigationLayoutComponent } from \"@ui5/webcomponents-ngx/fiori/navigation-layout\";\nimport { NotificationListComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list\";\nimport { NotificationListGroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list-group-item\";\nimport { NotificationListItemComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list-item\";\nimport { PageComponent } from \"@ui5/webcomponents-ngx/fiori/page\";\nimport { ProductSwitchComponent } from \"@ui5/webcomponents-ngx/fiori/product-switch\";\nimport { ProductSwitchItemComponent } from \"@ui5/webcomponents-ngx/fiori/product-switch-item\";\nimport { SearchComponent } from \"@ui5/webcomponents-ngx/fiori/search\";\nimport { SearchItemComponent } from \"@ui5/webcomponents-ngx/fiori/search-item\";\nimport { SearchItemGroupComponent } from \"@ui5/webcomponents-ngx/fiori/search-item-group\";\nimport { SearchItemShowMoreComponent } from \"@ui5/webcomponents-ngx/fiori/search-item-show-more\";\nimport { SearchMessageAreaComponent } from \"@ui5/webcomponents-ngx/fiori/search-message-area\";\nimport { SearchScopeComponent } from \"@ui5/webcomponents-ngx/fiori/search-scope\";\nimport { ShellBarComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar\";\nimport { ShellBarBrandingComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-branding\";\nimport { ShellBarItemComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-item\";\nimport { ShellBarSearchComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-search\";\nimport { ShellBarSpacerComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-spacer\";\nimport { SideNavigationComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation\";\nimport { SideNavigationGroupComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-group\";\nimport { SideNavigationItemComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-item\";\nimport { SideNavigationSubItemComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-sub-item\";\nimport { SortItemComponent } from \"@ui5/webcomponents-ngx/fiori/sort-item\";\nimport { TimelineComponent } from \"@ui5/webcomponents-ngx/fiori/timeline\";\nimport { TimelineGroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/timeline-group-item\";\nimport { TimelineItemComponent } from \"@ui5/webcomponents-ngx/fiori/timeline-item\";\nimport { UploadCollectionComponent } from \"@ui5/webcomponents-ngx/fiori/upload-collection\";\nimport { UploadCollectionItemComponent } from \"@ui5/webcomponents-ngx/fiori/upload-collection-item\";\nimport { UserMenuComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu\";\nimport { UserMenuAccountComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-account\";\nimport { UserMenuItemComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-item\";\nimport { UserMenuItemGroupComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-item-group\";\nimport { UserSettingsAccountViewComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-account-view\";\nimport { UserSettingsDialogComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-dialog\";\nimport { UserSettingsItemComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-item\";\nimport { UserSettingsViewComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-view\";\nimport { ViewSettingsDialogComponent } from \"@ui5/webcomponents-ngx/fiori/view-settings-dialog\";\nimport { WizardComponent } from \"@ui5/webcomponents-ngx/fiori/wizard\";\nimport { WizardStepComponent } from \"@ui5/webcomponents-ngx/fiori/wizard-step\";\n\nconst imports = [\n BarcodeScannerDialogComponent,\n DynamicPageComponent,\n DynamicPageHeaderComponent,\n DynamicPageTitleComponent,\n DynamicSideContentComponent,\n FilterItemComponent,\n FilterItemOptionComponent,\n FlexibleColumnLayoutComponent,\n GroupItemComponent,\n IllustratedMessageComponent,\n MediaGalleryComponent,\n MediaGalleryItemComponent,\n NavigationLayoutComponent,\n NotificationListComponent,\n NotificationListGroupItemComponent,\n NotificationListItemComponent,\n PageComponent,\n ProductSwitchComponent,\n ProductSwitchItemComponent,\n SearchComponent,\n SearchItemComponent,\n SearchItemGroupComponent,\n SearchItemShowMoreComponent,\n SearchMessageAreaComponent,\n SearchScopeComponent,\n ShellBarComponent,\n ShellBarBrandingComponent,\n ShellBarItemComponent,\n ShellBarSearchComponent,\n ShellBarSpacerComponent,\n SideNavigationComponent,\n SideNavigationGroupComponent,\n SideNavigationItemComponent,\n SideNavigationSubItemComponent,\n SortItemComponent,\n TimelineComponent,\n TimelineGroupItemComponent,\n TimelineItemComponent,\n UploadCollectionComponent,\n UploadCollectionItemComponent,\n UserMenuComponent,\n UserMenuAccountComponent,\n UserMenuItemComponent,\n UserMenuItemGroupComponent,\n UserSettingsAccountViewComponent,\n UserSettingsDialogComponent,\n UserSettingsItemComponent,\n UserSettingsViewComponent,\n ViewSettingsDialogComponent,\n WizardComponent,\n WizardStepComponent,\n];\nconst exports = [...imports];\n\n@NgModule({\n imports: [...imports],\n exports: [...exports],\n})\nclass Ui5FioriModule {\n constructor(\n ui5WebcomponentsFioriThemingService: Ui5WebcomponentsFioriThemingService,\n ) {}\n}\nexport { Ui5FioriModule };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx-fiori.mjs","sources":["../../../../libs/ui5-angular/fiori/ui5-fiori.module.ts","../../../../libs/ui5-angular/fiori/ui5-webcomponents-ngx-fiori.ts"],"sourcesContent":["import { NgModule } from \"@angular/core\";\nimport { Ui5WebcomponentsFioriThemingService } from \"@ui5/webcomponents-ngx/fiori/theming\";\nimport \"@ui5/webcomponents-fiori/dist/Assets.js\";\nimport { BarcodeScannerDialogComponent } from \"@ui5/webcomponents-ngx/fiori/barcode-scanner-dialog\";\nimport { DynamicPageComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page\";\nimport { DynamicPageHeaderComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page-header\";\nimport { DynamicPageTitleComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-page-title\";\nimport { DynamicSideContentComponent } from \"@ui5/webcomponents-ngx/fiori/dynamic-side-content\";\nimport { FilterItemComponent } from \"@ui5/webcomponents-ngx/fiori/filter-item\";\nimport { FilterItemOptionComponent } from \"@ui5/webcomponents-ngx/fiori/filter-item-option\";\nimport { FlexibleColumnLayoutComponent } from \"@ui5/webcomponents-ngx/fiori/flexible-column-layout\";\nimport { GroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/group-item\";\nimport { IllustratedMessageComponent } from \"@ui5/webcomponents-ngx/fiori/illustrated-message\";\nimport { MediaGalleryComponent } from \"@ui5/webcomponents-ngx/fiori/media-gallery\";\nimport { MediaGalleryItemComponent } from \"@ui5/webcomponents-ngx/fiori/media-gallery-item\";\nimport { NavigationLayoutComponent } from \"@ui5/webcomponents-ngx/fiori/navigation-layout\";\nimport { NotificationListComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list\";\nimport { NotificationListGroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list-group-item\";\nimport { NotificationListItemComponent } from \"@ui5/webcomponents-ngx/fiori/notification-list-item\";\nimport { PageComponent } from \"@ui5/webcomponents-ngx/fiori/page\";\nimport { ProductSwitchComponent } from \"@ui5/webcomponents-ngx/fiori/product-switch\";\nimport { ProductSwitchItemComponent } from \"@ui5/webcomponents-ngx/fiori/product-switch-item\";\nimport { SearchComponent } from \"@ui5/webcomponents-ngx/fiori/search\";\nimport { SearchItemComponent } from \"@ui5/webcomponents-ngx/fiori/search-item\";\nimport { SearchItemGroupComponent } from \"@ui5/webcomponents-ngx/fiori/search-item-group\";\nimport { SearchItemShowMoreComponent } from \"@ui5/webcomponents-ngx/fiori/search-item-show-more\";\nimport { SearchMessageAreaComponent } from \"@ui5/webcomponents-ngx/fiori/search-message-area\";\nimport { SearchScopeComponent } from \"@ui5/webcomponents-ngx/fiori/search-scope\";\nimport { ShellBarComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar\";\nimport { ShellBarBrandingComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-branding\";\nimport { ShellBarItemComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-item\";\nimport { ShellBarSearchComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-search\";\nimport { ShellBarSpacerComponent } from \"@ui5/webcomponents-ngx/fiori/shell-bar-spacer\";\nimport { SideNavigationComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation\";\nimport { SideNavigationGroupComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-group\";\nimport { SideNavigationItemComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-item\";\nimport { SideNavigationSubItemComponent } from \"@ui5/webcomponents-ngx/fiori/side-navigation-sub-item\";\nimport { SortItemComponent } from \"@ui5/webcomponents-ngx/fiori/sort-item\";\nimport { TimelineComponent } from \"@ui5/webcomponents-ngx/fiori/timeline\";\nimport { TimelineGroupItemComponent } from \"@ui5/webcomponents-ngx/fiori/timeline-group-item\";\nimport { TimelineItemComponent } from \"@ui5/webcomponents-ngx/fiori/timeline-item\";\nimport { UploadCollectionComponent } from \"@ui5/webcomponents-ngx/fiori/upload-collection\";\nimport { UploadCollectionItemComponent } from \"@ui5/webcomponents-ngx/fiori/upload-collection-item\";\nimport { UserMenuComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu\";\nimport { UserMenuAccountComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-account\";\nimport { UserMenuItemComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-item\";\nimport { UserMenuItemGroupComponent } from \"@ui5/webcomponents-ngx/fiori/user-menu-item-group\";\nimport { UserSettingsAccountViewComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-account-view\";\nimport { UserSettingsAppearanceViewComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-appearance-view\";\nimport { UserSettingsAppearanceViewGroupComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-group\";\nimport { UserSettingsAppearanceViewItemComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-item\";\nimport { UserSettingsDialogComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-dialog\";\nimport { UserSettingsItemComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-item\";\nimport { UserSettingsViewComponent } from \"@ui5/webcomponents-ngx/fiori/user-settings-view\";\nimport { ViewSettingsDialogComponent } from \"@ui5/webcomponents-ngx/fiori/view-settings-dialog\";\nimport { WizardComponent } from \"@ui5/webcomponents-ngx/fiori/wizard\";\nimport { WizardStepComponent } from \"@ui5/webcomponents-ngx/fiori/wizard-step\";\n\nconst imports = [\n BarcodeScannerDialogComponent,\n DynamicPageComponent,\n DynamicPageHeaderComponent,\n DynamicPageTitleComponent,\n DynamicSideContentComponent,\n FilterItemComponent,\n FilterItemOptionComponent,\n FlexibleColumnLayoutComponent,\n GroupItemComponent,\n IllustratedMessageComponent,\n MediaGalleryComponent,\n MediaGalleryItemComponent,\n NavigationLayoutComponent,\n NotificationListComponent,\n NotificationListGroupItemComponent,\n NotificationListItemComponent,\n PageComponent,\n ProductSwitchComponent,\n ProductSwitchItemComponent,\n SearchComponent,\n SearchItemComponent,\n SearchItemGroupComponent,\n SearchItemShowMoreComponent,\n SearchMessageAreaComponent,\n SearchScopeComponent,\n ShellBarComponent,\n ShellBarBrandingComponent,\n ShellBarItemComponent,\n ShellBarSearchComponent,\n ShellBarSpacerComponent,\n SideNavigationComponent,\n SideNavigationGroupComponent,\n SideNavigationItemComponent,\n SideNavigationSubItemComponent,\n SortItemComponent,\n TimelineComponent,\n TimelineGroupItemComponent,\n TimelineItemComponent,\n UploadCollectionComponent,\n UploadCollectionItemComponent,\n UserMenuComponent,\n UserMenuAccountComponent,\n UserMenuItemComponent,\n UserMenuItemGroupComponent,\n UserSettingsAccountViewComponent,\n UserSettingsAppearanceViewComponent,\n UserSettingsAppearanceViewGroupComponent,\n UserSettingsAppearanceViewItemComponent,\n UserSettingsDialogComponent,\n UserSettingsItemComponent,\n UserSettingsViewComponent,\n ViewSettingsDialogComponent,\n WizardComponent,\n WizardStepComponent,\n];\nconst exports = [...imports];\n\n@NgModule({\n imports: [...imports],\n exports: [...exports],\n})\nclass Ui5FioriModule {\n constructor(\n ui5WebcomponentsFioriThemingService: Ui5WebcomponentsFioriThemingService,\n ) {}\n}\nexport { Ui5FioriModule };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -43,6 +43,9 @@ export { UserMenuAccountComponent } from '@ui5/webcomponents-ngx/fiori/user-menu
43
43
  export { UserMenuItemComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item';
44
44
  export { UserMenuItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item-group';
45
45
  export { UserSettingsAccountViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-account-view';
46
+ export { UserSettingsAppearanceViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view';
47
+ export { UserSettingsAppearanceViewGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-group';
48
+ export { UserSettingsAppearanceViewItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-item';
46
49
  export { UserSettingsDialogComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
47
50
  export { UserSettingsItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-item';
48
51
  export { UserSettingsViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-view';
@@ -1 +1 @@
1
- {"version":3,"file":"ui5-webcomponents-ngx.mjs","sources":["../../../../libs/ui5-angular/ui5-webcomponents.module.ts","../../../../libs/ui5-angular/ui5-webcomponents-ngx.ts"],"sourcesContent":["import { NgModule } from \"@angular/core\";\nimport { Ui5FioriModule } from \"@ui5/webcomponents-ngx/fiori\";\nimport { Ui5MainModule } from \"@ui5/webcomponents-ngx/main\";\nimport { Ui5AiModule } from \"@ui5/webcomponents-ngx/ai\";\n\nconst imports = [Ui5FioriModule, Ui5MainModule, Ui5AiModule];\nconst exports = [...imports];\n\n@NgModule({\n imports: [...imports],\n exports: [...exports],\n})\nclass Ui5WebcomponentsModule {}\nexport { Ui5WebcomponentsModule };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,MAAM,OAAO,GAAG,CAAC,cAAc,EAAE,aAAa,EAAE,WAAW,CAAC;AAC5D,MAAM,OAAO,GAAG,CAAC,GAAG,OAAO,CAAC;AAE5B,MAIM,sBAAsB,CAAA;8GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAtB,sBAAsB,EAAA,OAAA,EAAA,CAPX,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,OAAA,EAAA,CAA1C,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,CAAA,CAAA;AAOrD,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,YAHb,OAAO,EAJL,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,CAAA,CAAA;;2FAOrD,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJ3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;AACrB,oBAAA,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;AACtB,iBAAA;;;ACXD;;AAEG;;;;"}
1
+ {"version":3,"file":"ui5-webcomponents-ngx.mjs","sources":["../../../../libs/ui5-angular/ui5-webcomponents.module.ts","../../../../libs/ui5-angular/ui5-webcomponents-ngx.ts"],"sourcesContent":["import { NgModule } from \"@angular/core\";\nimport { Ui5FioriModule } from \"@ui5/webcomponents-ngx/fiori\";\nimport { Ui5MainModule } from \"@ui5/webcomponents-ngx/main\";\nimport { Ui5AiModule } from \"@ui5/webcomponents-ngx/ai\";\n\nconst imports = [Ui5FioriModule, Ui5MainModule, Ui5AiModule];\nconst exports = [...imports];\n\n@NgModule({\n imports: [...imports],\n exports: [...exports],\n})\nclass Ui5WebcomponentsModule {}\nexport { Ui5WebcomponentsModule };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,MAAM,OAAO,GAAG,CAAC,cAAc,EAAE,aAAa,EAAE,WAAW,CAAC;AAC5D,MAAM,OAAO,GAAG,CAAC,GAAG,OAAO,CAAC;AAE5B,MAIM,sBAAsB,CAAA;8GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAtB,sBAAsB,EAAA,OAAA,EAAA,CAPX,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,OAAA,EAAA,CAA1C,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,CAAA,CAAA;AAOrD,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,YAHb,OAAO,EAJL,cAAc,EAAE,aAAa,EAAE,WAAW,CAAA,EAAA,CAAA,CAAA;;2FAOrD,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJ3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;AACrB,oBAAA,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;AACtB,iBAAA;;;ACXD;;AAEG;;;;"}
package/fiori/index.d.ts CHANGED
@@ -45,17 +45,20 @@ import * as i42 from '@ui5/webcomponents-ngx/fiori/user-menu-account';
45
45
  import * as i43 from '@ui5/webcomponents-ngx/fiori/user-menu-item';
46
46
  import * as i44 from '@ui5/webcomponents-ngx/fiori/user-menu-item-group';
47
47
  import * as i45 from '@ui5/webcomponents-ngx/fiori/user-settings-account-view';
48
- import * as i46 from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
49
- import * as i47 from '@ui5/webcomponents-ngx/fiori/user-settings-item';
50
- import * as i48 from '@ui5/webcomponents-ngx/fiori/user-settings-view';
51
- import * as i49 from '@ui5/webcomponents-ngx/fiori/view-settings-dialog';
52
- import * as i50 from '@ui5/webcomponents-ngx/fiori/wizard';
53
- import * as i51 from '@ui5/webcomponents-ngx/fiori/wizard-step';
48
+ import * as i46 from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view';
49
+ import * as i47 from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-group';
50
+ import * as i48 from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-item';
51
+ import * as i49 from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
52
+ import * as i50 from '@ui5/webcomponents-ngx/fiori/user-settings-item';
53
+ import * as i51 from '@ui5/webcomponents-ngx/fiori/user-settings-view';
54
+ import * as i52 from '@ui5/webcomponents-ngx/fiori/view-settings-dialog';
55
+ import * as i53 from '@ui5/webcomponents-ngx/fiori/wizard';
56
+ import * as i54 from '@ui5/webcomponents-ngx/fiori/wizard-step';
54
57
 
55
58
  declare class Ui5FioriModule {
56
59
  constructor(ui5WebcomponentsFioriThemingService: Ui5WebcomponentsFioriThemingService);
57
60
  static ɵfac: i0.ɵɵFactoryDeclaration<Ui5FioriModule, never>;
58
- static ɵmod: i0.ɵɵNgModuleDeclaration<Ui5FioriModule, never, [typeof i1.BarcodeScannerDialogComponent, typeof i2.DynamicPageComponent, typeof i3.DynamicPageHeaderComponent, typeof i4.DynamicPageTitleComponent, typeof i5.DynamicSideContentComponent, typeof i6.FilterItemComponent, typeof i7.FilterItemOptionComponent, typeof i8.FlexibleColumnLayoutComponent, typeof i9.GroupItemComponent, typeof i10.IllustratedMessageComponent, typeof i11.MediaGalleryComponent, typeof i12.MediaGalleryItemComponent, typeof i13.NavigationLayoutComponent, typeof i14.NotificationListComponent, typeof i15.NotificationListGroupItemComponent, typeof i16.NotificationListItemComponent, typeof i17.PageComponent, typeof i18.ProductSwitchComponent, typeof i19.ProductSwitchItemComponent, typeof i20.SearchComponent, typeof i21.SearchItemComponent, typeof i22.SearchItemGroupComponent, typeof i23.SearchItemShowMoreComponent, typeof i24.SearchMessageAreaComponent, typeof i25.SearchScopeComponent, typeof i26.ShellBarComponent, typeof i27.ShellBarBrandingComponent, typeof i28.ShellBarItemComponent, typeof i29.ShellBarSearchComponent, typeof i30.ShellBarSpacerComponent, typeof i31.SideNavigationComponent, typeof i32.SideNavigationGroupComponent, typeof i33.SideNavigationItemComponent, typeof i34.SideNavigationSubItemComponent, typeof i35.SortItemComponent, typeof i36.TimelineComponent, typeof i37.TimelineGroupItemComponent, typeof i38.TimelineItemComponent, typeof i39.UploadCollectionComponent, typeof i40.UploadCollectionItemComponent, typeof i41.UserMenuComponent, typeof i42.UserMenuAccountComponent, typeof i43.UserMenuItemComponent, typeof i44.UserMenuItemGroupComponent, typeof i45.UserSettingsAccountViewComponent, typeof i46.UserSettingsDialogComponent, typeof i47.UserSettingsItemComponent, typeof i48.UserSettingsViewComponent, typeof i49.ViewSettingsDialogComponent, typeof i50.WizardComponent, typeof i51.WizardStepComponent], [typeof i1.BarcodeScannerDialogComponent, typeof i2.DynamicPageComponent, typeof i3.DynamicPageHeaderComponent, typeof i4.DynamicPageTitleComponent, typeof i5.DynamicSideContentComponent, typeof i6.FilterItemComponent, typeof i7.FilterItemOptionComponent, typeof i8.FlexibleColumnLayoutComponent, typeof i9.GroupItemComponent, typeof i10.IllustratedMessageComponent, typeof i11.MediaGalleryComponent, typeof i12.MediaGalleryItemComponent, typeof i13.NavigationLayoutComponent, typeof i14.NotificationListComponent, typeof i15.NotificationListGroupItemComponent, typeof i16.NotificationListItemComponent, typeof i17.PageComponent, typeof i18.ProductSwitchComponent, typeof i19.ProductSwitchItemComponent, typeof i20.SearchComponent, typeof i21.SearchItemComponent, typeof i22.SearchItemGroupComponent, typeof i23.SearchItemShowMoreComponent, typeof i24.SearchMessageAreaComponent, typeof i25.SearchScopeComponent, typeof i26.ShellBarComponent, typeof i27.ShellBarBrandingComponent, typeof i28.ShellBarItemComponent, typeof i29.ShellBarSearchComponent, typeof i30.ShellBarSpacerComponent, typeof i31.SideNavigationComponent, typeof i32.SideNavigationGroupComponent, typeof i33.SideNavigationItemComponent, typeof i34.SideNavigationSubItemComponent, typeof i35.SortItemComponent, typeof i36.TimelineComponent, typeof i37.TimelineGroupItemComponent, typeof i38.TimelineItemComponent, typeof i39.UploadCollectionComponent, typeof i40.UploadCollectionItemComponent, typeof i41.UserMenuComponent, typeof i42.UserMenuAccountComponent, typeof i43.UserMenuItemComponent, typeof i44.UserMenuItemGroupComponent, typeof i45.UserSettingsAccountViewComponent, typeof i46.UserSettingsDialogComponent, typeof i47.UserSettingsItemComponent, typeof i48.UserSettingsViewComponent, typeof i49.ViewSettingsDialogComponent, typeof i50.WizardComponent, typeof i51.WizardStepComponent]>;
61
+ static ɵmod: i0.ɵɵNgModuleDeclaration<Ui5FioriModule, never, [typeof i1.BarcodeScannerDialogComponent, typeof i2.DynamicPageComponent, typeof i3.DynamicPageHeaderComponent, typeof i4.DynamicPageTitleComponent, typeof i5.DynamicSideContentComponent, typeof i6.FilterItemComponent, typeof i7.FilterItemOptionComponent, typeof i8.FlexibleColumnLayoutComponent, typeof i9.GroupItemComponent, typeof i10.IllustratedMessageComponent, typeof i11.MediaGalleryComponent, typeof i12.MediaGalleryItemComponent, typeof i13.NavigationLayoutComponent, typeof i14.NotificationListComponent, typeof i15.NotificationListGroupItemComponent, typeof i16.NotificationListItemComponent, typeof i17.PageComponent, typeof i18.ProductSwitchComponent, typeof i19.ProductSwitchItemComponent, typeof i20.SearchComponent, typeof i21.SearchItemComponent, typeof i22.SearchItemGroupComponent, typeof i23.SearchItemShowMoreComponent, typeof i24.SearchMessageAreaComponent, typeof i25.SearchScopeComponent, typeof i26.ShellBarComponent, typeof i27.ShellBarBrandingComponent, typeof i28.ShellBarItemComponent, typeof i29.ShellBarSearchComponent, typeof i30.ShellBarSpacerComponent, typeof i31.SideNavigationComponent, typeof i32.SideNavigationGroupComponent, typeof i33.SideNavigationItemComponent, typeof i34.SideNavigationSubItemComponent, typeof i35.SortItemComponent, typeof i36.TimelineComponent, typeof i37.TimelineGroupItemComponent, typeof i38.TimelineItemComponent, typeof i39.UploadCollectionComponent, typeof i40.UploadCollectionItemComponent, typeof i41.UserMenuComponent, typeof i42.UserMenuAccountComponent, typeof i43.UserMenuItemComponent, typeof i44.UserMenuItemGroupComponent, typeof i45.UserSettingsAccountViewComponent, typeof i46.UserSettingsAppearanceViewComponent, typeof i47.UserSettingsAppearanceViewGroupComponent, typeof i48.UserSettingsAppearanceViewItemComponent, typeof i49.UserSettingsDialogComponent, typeof i50.UserSettingsItemComponent, typeof i51.UserSettingsViewComponent, typeof i52.ViewSettingsDialogComponent, typeof i53.WizardComponent, typeof i54.WizardStepComponent], [typeof i1.BarcodeScannerDialogComponent, typeof i2.DynamicPageComponent, typeof i3.DynamicPageHeaderComponent, typeof i4.DynamicPageTitleComponent, typeof i5.DynamicSideContentComponent, typeof i6.FilterItemComponent, typeof i7.FilterItemOptionComponent, typeof i8.FlexibleColumnLayoutComponent, typeof i9.GroupItemComponent, typeof i10.IllustratedMessageComponent, typeof i11.MediaGalleryComponent, typeof i12.MediaGalleryItemComponent, typeof i13.NavigationLayoutComponent, typeof i14.NotificationListComponent, typeof i15.NotificationListGroupItemComponent, typeof i16.NotificationListItemComponent, typeof i17.PageComponent, typeof i18.ProductSwitchComponent, typeof i19.ProductSwitchItemComponent, typeof i20.SearchComponent, typeof i21.SearchItemComponent, typeof i22.SearchItemGroupComponent, typeof i23.SearchItemShowMoreComponent, typeof i24.SearchMessageAreaComponent, typeof i25.SearchScopeComponent, typeof i26.ShellBarComponent, typeof i27.ShellBarBrandingComponent, typeof i28.ShellBarItemComponent, typeof i29.ShellBarSearchComponent, typeof i30.ShellBarSpacerComponent, typeof i31.SideNavigationComponent, typeof i32.SideNavigationGroupComponent, typeof i33.SideNavigationItemComponent, typeof i34.SideNavigationSubItemComponent, typeof i35.SortItemComponent, typeof i36.TimelineComponent, typeof i37.TimelineGroupItemComponent, typeof i38.TimelineItemComponent, typeof i39.UploadCollectionComponent, typeof i40.UploadCollectionItemComponent, typeof i41.UserMenuComponent, typeof i42.UserMenuAccountComponent, typeof i43.UserMenuItemComponent, typeof i44.UserMenuItemGroupComponent, typeof i45.UserSettingsAccountViewComponent, typeof i46.UserSettingsAppearanceViewComponent, typeof i47.UserSettingsAppearanceViewGroupComponent, typeof i48.UserSettingsAppearanceViewItemComponent, typeof i49.UserSettingsDialogComponent, typeof i50.UserSettingsItemComponent, typeof i51.UserSettingsViewComponent, typeof i52.ViewSettingsDialogComponent, typeof i53.WizardComponent, typeof i54.WizardStepComponent]>;
59
62
  static ɵinj: i0.ɵɵInjectorDeclaration<Ui5FioriModule>;
60
63
  }
61
64
 
@@ -39,6 +39,15 @@ declare class SearchComponent {
39
39
  Defines the accessible ARIA description of the field.
40
40
  */
41
41
  accessibleDescription: string | undefined;
42
+ /**
43
+ Defines the value of the component:
44
+
45
+ Applications are responsible for setting the correct scope value.
46
+
47
+ **Note:** If the given value does not match any existing scopes,
48
+ no scope will be selected and the SearchField scope component will be displayed as empty.
49
+ */
50
+ scopeValue: string | undefined;
42
51
  /**
43
52
  Fired when the popup is opened.
44
53
  */
@@ -65,7 +74,7 @@ declare class SearchComponent {
65
74
  get element(): Search;
66
75
  constructor();
67
76
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchComponent, never>;
68
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchComponent, "ui5-search", ["ui5Search"], { "loading": { "alias": "loading"; "required": false; }; "noTypeahead": { "alias": "noTypeahead"; "required": false; }; "open": { "alias": "open"; "required": false; }; "showClearIcon": { "alias": "showClearIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; }, { "ui5Open": "ui5Open"; "ui5Close": "ui5Close"; "ui5Input": "ui5Input"; "ui5ScopeChange": "ui5ScopeChange"; "ui5Search": "ui5Search"; }, never, ["*"], true, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchComponent, "ui5-search", ["ui5Search"], { "loading": { "alias": "loading"; "required": false; }; "noTypeahead": { "alias": "noTypeahead"; "required": false; }; "open": { "alias": "open"; "required": false; }; "showClearIcon": { "alias": "showClearIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "scopeValue": { "alias": "scopeValue"; "required": false; }; }, { "ui5Open": "ui5Open"; "ui5Close": "ui5Close"; "ui5Input": "ui5Input"; "ui5ScopeChange": "ui5ScopeChange"; "ui5Search": "ui5Search"; }, never, ["*"], true, never>;
69
78
  static ngAcceptInputType_loading: unknown;
70
79
  static ngAcceptInputType_noTypeahead: unknown;
71
80
  static ngAcceptInputType_open: unknown;
@@ -7,17 +7,17 @@ declare class SearchScopeComponent {
7
7
  */
8
8
  text: string;
9
9
  /**
10
- Indicates whether the item is selected
10
+ Defines the value of the `ui5-search-scope`.
11
+ Used for selection in Search scopes.
11
12
  */
12
- selected: boolean;
13
+ value: string | undefined;
13
14
  private elementRef;
14
15
  private zone;
15
16
  private cdr;
16
17
  get element(): SearchScope;
17
18
  constructor();
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchScopeComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchScopeComponent, "ui5-search-scope", ["ui5SearchScope"], { "text": { "alias": "text"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], true, never>;
20
- static ngAcceptInputType_selected: unknown;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchScopeComponent, "ui5-search-scope", ["ui5SearchScope"], { "text": { "alias": "text"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
21
21
  }
22
22
 
23
23
  export { SearchScopeComponent };
@@ -39,6 +39,15 @@ declare class ShellBarSearchComponent {
39
39
  Defines the accessible ARIA description of the field.
40
40
  */
41
41
  accessibleDescription: string | undefined;
42
+ /**
43
+ Defines the value of the component:
44
+
45
+ Applications are responsible for setting the correct scope value.
46
+
47
+ **Note:** If the given value does not match any existing scopes,
48
+ no scope will be selected and the SearchField scope component will be displayed as empty.
49
+ */
50
+ scopeValue: string | undefined;
42
51
  /**
43
52
  Indicates whether the suggestions popover should be opened on focus.
44
53
  */
@@ -69,7 +78,7 @@ declare class ShellBarSearchComponent {
69
78
  get element(): ShellBarSearch;
70
79
  constructor();
71
80
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellBarSearchComponent, never>;
72
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellBarSearchComponent, "ui5-shellbar-search", ["ui5ShellbarSearch"], { "loading": { "alias": "loading"; "required": false; }; "noTypeahead": { "alias": "noTypeahead"; "required": false; }; "open": { "alias": "open"; "required": false; }; "showClearIcon": { "alias": "showClearIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "autoOpen": { "alias": "autoOpen"; "required": false; }; }, { "ui5Open": "ui5Open"; "ui5Close": "ui5Close"; "ui5Input": "ui5Input"; "ui5ScopeChange": "ui5ScopeChange"; "ui5Search": "ui5Search"; }, never, ["*"], true, never>;
81
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellBarSearchComponent, "ui5-shellbar-search", ["ui5ShellbarSearch"], { "loading": { "alias": "loading"; "required": false; }; "noTypeahead": { "alias": "noTypeahead"; "required": false; }; "open": { "alias": "open"; "required": false; }; "showClearIcon": { "alias": "showClearIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "scopeValue": { "alias": "scopeValue"; "required": false; }; "autoOpen": { "alias": "autoOpen"; "required": false; }; }, { "ui5Open": "ui5Open"; "ui5Close": "ui5Close"; "ui5Input": "ui5Input"; "ui5ScopeChange": "ui5ScopeChange"; "ui5Search": "ui5Search"; }, never, ["*"], true, never>;
73
82
  static ngAcceptInputType_loading: unknown;
74
83
  static ngAcceptInputType_noTypeahead: unknown;
75
84
  static ngAcceptInputType_open: unknown;
@@ -0,0 +1,34 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter } from '@angular/core';
3
+ import UserSettingsAppearanceView, { UserSettingsAppearanceViewItemSelectEventDetail } from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceView.js';
4
+
5
+ declare class UserSettingsAppearanceViewComponent {
6
+ /**
7
+ Defines the title text of the user settings view.
8
+ */
9
+ text: string | undefined;
10
+ /**
11
+ Defines whether the view is selected. There can be just one selected view at a time.
12
+ */
13
+ selected: boolean;
14
+ /**
15
+ Indicates whether the view is secondary. It is relevant only if the view is used in `pages` slot of `ui5-user-settings-item`
16
+ and controls the visibility of the back button.
17
+ */
18
+ secondary: boolean;
19
+ /**
20
+ Fired when an item is selected.
21
+ */
22
+ ui5SelectionChange: EventEmitter<UserSettingsAppearanceViewItemSelectEventDetail>;
23
+ private elementRef;
24
+ private zone;
25
+ private cdr;
26
+ get element(): UserSettingsAppearanceView;
27
+ constructor();
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsAppearanceViewComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserSettingsAppearanceViewComponent, "ui5-user-settings-appearance-view", ["ui5UserSettingsAppearanceView"], { "text": { "alias": "text"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "secondary": { "alias": "secondary"; "required": false; }; }, { "ui5SelectionChange": "ui5SelectionChange"; }, never, ["*"], true, never>;
30
+ static ngAcceptInputType_selected: unknown;
31
+ static ngAcceptInputType_secondary: unknown;
32
+ }
33
+
34
+ export { UserSettingsAppearanceViewComponent };
@@ -0,0 +1,50 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter } from '@angular/core';
3
+ import UserSettingsAppearanceViewGroup from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewGroup.js';
4
+ import { ListItemGroupMoveEventDetail } from '@ui5/webcomponents/dist/ListItemGroup.js';
5
+
6
+ declare class UserSettingsAppearanceViewGroupComponent {
7
+ /**
8
+ Defines the header text of the <code>ui5-li-group</code>.
9
+ */
10
+ headerText: string | undefined;
11
+ /**
12
+ Defines the accessible name of the header.
13
+ */
14
+ headerAccessibleName: string | undefined;
15
+ /**
16
+ Defines if the text of the component should wrap when it's too long.
17
+ When set to "Normal", the content (title, description) will be wrapped
18
+ using the `ui5-expandable-text` component.<br/>
19
+
20
+ The text can wrap up to 100 characters on small screens (size S) and
21
+ up to 300 characters on larger screens (size M and above). When text exceeds
22
+ these limits, it truncates with an ellipsis followed by a text expansion trigger.
23
+
24
+ Available options are:
25
+ - `None` (default) - The text will truncate with an ellipsis.
26
+ - `Normal` - The text will wrap (without truncation).
27
+ */
28
+ wrappingType: 'None' | 'Normal';
29
+ /**
30
+ Fired when a movable list item is moved over a potential drop target during a dragging operation.
31
+
32
+ If the new position is valid, prevent the default action of the event using `preventDefault()`.
33
+ */
34
+ ui5MoveOver: EventEmitter<ListItemGroupMoveEventDetail>;
35
+ /**
36
+ Fired when a movable list item is dropped onto a drop target.
37
+
38
+ **Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.
39
+ */
40
+ ui5Move: EventEmitter<ListItemGroupMoveEventDetail>;
41
+ private elementRef;
42
+ private zone;
43
+ private cdr;
44
+ get element(): UserSettingsAppearanceViewGroup;
45
+ constructor();
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsAppearanceViewGroupComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserSettingsAppearanceViewGroupComponent, "ui5-user-settings-appearance-view-group", ["ui5UserSettingsAppearanceViewGroup"], { "headerText": { "alias": "headerText"; "required": false; }; "headerAccessibleName": { "alias": "headerAccessibleName"; "required": false; }; "wrappingType": { "alias": "wrappingType"; "required": false; }; }, { "ui5MoveOver": "ui5MoveOver"; "ui5Move": "ui5Move"; }, never, ["*"], true, never>;
48
+ }
49
+
50
+ export { UserSettingsAppearanceViewGroupComponent };
@@ -0,0 +1,86 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter } from '@angular/core';
3
+ import UserSettingsAppearanceViewItem from '@ui5/webcomponents-fiori/dist/UserSettingsAppearanceViewItem.js';
4
+ import { ListItemAccessibilityAttributes } from '@ui5/webcomponents/dist/ListItem.js';
5
+
6
+ declare class UserSettingsAppearanceViewItemComponent {
7
+ /**
8
+ Defines the visual indication and behavior of the list items.
9
+ Available options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.
10
+
11
+ **Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,
12
+ while with type `Inactive` and `Detail` - will not.
13
+ */
14
+ type: 'Inactive' | 'Active' | 'Detail' | 'Navigation';
15
+ /**
16
+ Defines the additional accessibility attributes that will be applied to the component.
17
+ The following fields are supported:
18
+
19
+ - **ariaSetsize**: Defines the number of items in the current set when not all items in the set are present in the DOM.
20
+ **Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.
21
+
22
+ - **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.
23
+ **Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.
24
+ */
25
+ accessibilityAttributes: ListItemAccessibilityAttributes;
26
+ /**
27
+ The navigated state of the list item.
28
+ If set to `true`, a navigation indicator is displayed at the end of the list item.
29
+ */
30
+ navigated: boolean;
31
+ /**
32
+ Defines the text of the tooltip that would be displayed for the list item.
33
+ */
34
+ tooltip: string | undefined;
35
+ /**
36
+ Defines the highlight state of the list items.
37
+ Available options are: `"None"` (by default), `"Positive"`, `"Critical"`, `"Information"` and `"Negative"`.
38
+ */
39
+ highlight: 'None' | 'Positive' | 'Critical' | 'Negative' | 'Information';
40
+ /**
41
+ Defines the selected state of the component.
42
+ */
43
+ selected: boolean;
44
+ /**
45
+ Defines whether the item is movable.
46
+ */
47
+ movable: boolean;
48
+ /**
49
+ Defines the text alternative of the component.
50
+
51
+ **Note**: If not provided a default text alternative will be set, if present.
52
+ */
53
+ accessibleName: string | undefined;
54
+ /**
55
+ Defines the unique identifier of the item.
56
+ */
57
+ itemKey: string;
58
+ /**
59
+ Defines the text label displayed for the appearance item.
60
+ */
61
+ text: string;
62
+ /**
63
+ Defines the icon of the appearance item.
64
+ */
65
+ icon: string;
66
+ /**
67
+ Defines the color scheme of the avatar.
68
+ */
69
+ colorScheme: string;
70
+ /**
71
+ Fired when the user clicks on the detail button when type is `Detail`.
72
+ */
73
+ ui5DetailClick: EventEmitter<void>;
74
+ private elementRef;
75
+ private zone;
76
+ private cdr;
77
+ get element(): UserSettingsAppearanceViewItem;
78
+ constructor();
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsAppearanceViewItemComponent, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserSettingsAppearanceViewItemComponent, "ui5-user-settings-appearance-view-item", ["ui5UserSettingsAppearanceViewItem"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "navigated": { "alias": "navigated"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "movable": { "alias": "movable"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "itemKey": { "alias": "itemKey"; "required": false; }; "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "colorScheme": { "alias": "colorScheme"; "required": false; }; }, { "ui5DetailClick": "ui5DetailClick"; }, never, ["*"], true, never>;
81
+ static ngAcceptInputType_navigated: unknown;
82
+ static ngAcceptInputType_selected: unknown;
83
+ static ngAcceptInputType_movable: unknown;
84
+ }
85
+
86
+ export { UserSettingsAppearanceViewItemComponent };
package/index.d.ts CHANGED
@@ -43,6 +43,9 @@ export { UserMenuAccountComponent } from '@ui5/webcomponents-ngx/fiori/user-menu
43
43
  export { UserMenuItemComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item';
44
44
  export { UserMenuItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item-group';
45
45
  export { UserSettingsAccountViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-account-view';
46
+ export { UserSettingsAppearanceViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view';
47
+ export { UserSettingsAppearanceViewGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-group';
48
+ export { UserSettingsAppearanceViewItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-appearance-view-item';
46
49
  export { UserSettingsDialogComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
47
50
  export { UserSettingsItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-item';
48
51
  export { UserSettingsViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-view';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-ngx",
3
- "version": "0.5.9",
3
+ "version": "0.5.10-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "keywords": [
@@ -19,19 +19,19 @@
19
19
  "@angular/common": "^20.0.0",
20
20
  "@angular/core": "^20.0.0",
21
21
  "@angular/forms": "^20.0.0",
22
- "@ui5/webcomponents": "2.17.0",
23
- "@ui5/webcomponents-ai": "2.17.0",
24
- "@ui5/webcomponents-base": "2.17.0",
25
- "@ui5/webcomponents-fiori": "2.17.0",
26
- "@ui5/webcomponents-icons": "2.17.0",
27
- "@ui5/webcomponents-icons-business-suite": "2.17.0",
28
- "@ui5/webcomponents-icons-tnt": "2.17.0",
29
- "@ui5/webcomponents-theming": "2.17.0",
22
+ "@ui5/webcomponents": "2.18.1",
23
+ "@ui5/webcomponents-ai": "2.18.1",
24
+ "@ui5/webcomponents-base": "2.18.1",
25
+ "@ui5/webcomponents-fiori": "2.18.1",
26
+ "@ui5/webcomponents-icons": "2.18.1",
27
+ "@ui5/webcomponents-icons-business-suite": "2.18.1",
28
+ "@ui5/webcomponents-icons-tnt": "2.18.1",
29
+ "@ui5/webcomponents-theming": "2.18.1",
30
30
  "fast-deep-equal": "^3.1.3",
31
31
  "rxjs": "^6.5.3 || ^7.4.0"
32
32
  },
33
33
  "dependencies": {
34
- "@ui5/theming-ngx": "^0.5.9",
34
+ "@ui5/theming-ngx": "^0.5.10-rc.1",
35
35
  "tslib": "^2.4.1"
36
36
  },
37
37
  "schematics": "./schematics/collection.json",
@@ -76,14 +76,14 @@
76
76
  "types": "./icons/index.d.ts",
77
77
  "default": "./fesm2022/ui5-webcomponents-ngx-icons.mjs"
78
78
  },
79
- "./theming": {
80
- "types": "./theming/index.d.ts",
81
- "default": "./fesm2022/ui5-webcomponents-ngx-theming.mjs"
82
- },
83
79
  "./main": {
84
80
  "types": "./main/index.d.ts",
85
81
  "default": "./fesm2022/ui5-webcomponents-ngx-main.mjs"
86
82
  },
83
+ "./theming": {
84
+ "types": "./theming/index.d.ts",
85
+ "default": "./fesm2022/ui5-webcomponents-ngx-theming.mjs"
86
+ },
87
87
  "./utils": {
88
88
  "types": "./utils/index.d.ts",
89
89
  "default": "./fesm2022/ui5-webcomponents-ngx-utils.mjs"
@@ -152,14 +152,14 @@
152
152
  "types": "./fiori/illustrated-message/index.d.ts",
153
153
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-illustrated-message.mjs"
154
154
  },
155
- "./fiori/media-gallery-item": {
156
- "types": "./fiori/media-gallery-item/index.d.ts",
157
- "default": "./fesm2022/ui5-webcomponents-ngx-fiori-media-gallery-item.mjs"
158
- },
159
155
  "./fiori/media-gallery": {
160
156
  "types": "./fiori/media-gallery/index.d.ts",
161
157
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-media-gallery.mjs"
162
158
  },
159
+ "./fiori/media-gallery-item": {
160
+ "types": "./fiori/media-gallery-item/index.d.ts",
161
+ "default": "./fesm2022/ui5-webcomponents-ngx-fiori-media-gallery-item.mjs"
162
+ },
163
163
  "./fiori/navigation-layout": {
164
164
  "types": "./fiori/navigation-layout/index.d.ts",
165
165
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-navigation-layout.mjs"
@@ -240,6 +240,10 @@
240
240
  "types": "./fiori/side-navigation-group/index.d.ts",
241
241
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-group.mjs"
242
242
  },
243
+ "./fiori/side-navigation-item": {
244
+ "types": "./fiori/side-navigation-item/index.d.ts",
245
+ "default": "./fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-item.mjs"
246
+ },
243
247
  "./fiori/side-navigation-sub-item": {
244
248
  "types": "./fiori/side-navigation-sub-item/index.d.ts",
245
249
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-sub-item.mjs"
@@ -252,10 +256,6 @@
252
256
  "types": "./fiori/theming/index.d.ts",
253
257
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-theming.mjs"
254
258
  },
255
- "./fiori/side-navigation-item": {
256
- "types": "./fiori/side-navigation-item/index.d.ts",
257
- "default": "./fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-item.mjs"
258
- },
259
259
  "./fiori/timeline": {
260
260
  "types": "./fiori/timeline/index.d.ts",
261
261
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-timeline.mjs"
@@ -296,6 +296,18 @@
296
296
  "types": "./fiori/user-settings-account-view/index.d.ts",
297
297
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-user-settings-account-view.mjs"
298
298
  },
299
+ "./fiori/user-settings-appearance-view": {
300
+ "types": "./fiori/user-settings-appearance-view/index.d.ts",
301
+ "default": "./fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view.mjs"
302
+ },
303
+ "./fiori/user-settings-appearance-view-group": {
304
+ "types": "./fiori/user-settings-appearance-view-group/index.d.ts",
305
+ "default": "./fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-group.mjs"
306
+ },
307
+ "./fiori/user-settings-appearance-view-item": {
308
+ "types": "./fiori/user-settings-appearance-view-item/index.d.ts",
309
+ "default": "./fesm2022/ui5-webcomponents-ngx-fiori-user-settings-appearance-view-item.mjs"
310
+ },
299
311
  "./fiori/user-settings-dialog": {
300
312
  "types": "./fiori/user-settings-dialog/index.d.ts",
301
313
  "default": "./fesm2022/ui5-webcomponents-ngx-fiori-user-settings-dialog.mjs"
@@ -332,14 +344,14 @@
332
344
  "types": "./main/bar/index.d.ts",
333
345
  "default": "./fesm2022/ui5-webcomponents-ngx-main-bar.mjs"
334
346
  },
335
- "./main/breadcrumbs-item": {
336
- "types": "./main/breadcrumbs-item/index.d.ts",
337
- "default": "./fesm2022/ui5-webcomponents-ngx-main-breadcrumbs-item.mjs"
338
- },
339
347
  "./main/breadcrumbs": {
340
348
  "types": "./main/breadcrumbs/index.d.ts",
341
349
  "default": "./fesm2022/ui5-webcomponents-ngx-main-breadcrumbs.mjs"
342
350
  },
351
+ "./main/breadcrumbs-item": {
352
+ "types": "./main/breadcrumbs-item/index.d.ts",
353
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-breadcrumbs-item.mjs"
354
+ },
343
355
  "./main/busy-indicator": {
344
356
  "types": "./main/busy-indicator/index.d.ts",
345
357
  "default": "./fesm2022/ui5-webcomponents-ngx-main-busy-indicator.mjs"
@@ -420,14 +432,14 @@
420
432
  "types": "./main/date-picker/index.d.ts",
421
433
  "default": "./fesm2022/ui5-webcomponents-ngx-main-date-picker.mjs"
422
434
  },
423
- "./main/date-time-picker": {
424
- "types": "./main/date-time-picker/index.d.ts",
425
- "default": "./fesm2022/ui5-webcomponents-ngx-main-date-time-picker.mjs"
426
- },
427
435
  "./main/date-range-picker": {
428
436
  "types": "./main/date-range-picker/index.d.ts",
429
437
  "default": "./fesm2022/ui5-webcomponents-ngx-main-date-range-picker.mjs"
430
438
  },
439
+ "./main/date-time-picker": {
440
+ "types": "./main/date-time-picker/index.d.ts",
441
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-date-time-picker.mjs"
442
+ },
431
443
  "./main/dialog": {
432
444
  "types": "./main/dialog/index.d.ts",
433
445
  "default": "./fesm2022/ui5-webcomponents-ngx-main-dialog.mjs"
@@ -436,6 +448,10 @@
436
448
  "types": "./main/dynamic-date-range/index.d.ts",
437
449
  "default": "./fesm2022/ui5-webcomponents-ngx-main-dynamic-date-range.mjs"
438
450
  },
451
+ "./main/expandable-text": {
452
+ "types": "./main/expandable-text/index.d.ts",
453
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-expandable-text.mjs"
454
+ },
439
455
  "./main/file-uploader": {
440
456
  "types": "./main/file-uploader/index.d.ts",
441
457
  "default": "./fesm2022/ui5-webcomponents-ngx-main-file-uploader.mjs"
@@ -448,10 +464,6 @@
448
464
  "types": "./main/form-group/index.d.ts",
449
465
  "default": "./fesm2022/ui5-webcomponents-ngx-main-form-group.mjs"
450
466
  },
451
- "./main/expandable-text": {
452
- "types": "./main/expandable-text/index.d.ts",
453
- "default": "./fesm2022/ui5-webcomponents-ngx-main-expandable-text.mjs"
454
- },
455
467
  "./main/form-item": {
456
468
  "types": "./main/form-item/index.d.ts",
457
469
  "default": "./fesm2022/ui5-webcomponents-ngx-main-form-item.mjs"
@@ -476,6 +488,10 @@
476
488
  "types": "./main/list/index.d.ts",
477
489
  "default": "./fesm2022/ui5-webcomponents-ngx-main-list.mjs"
478
490
  },
491
+ "./main/list-item-custom": {
492
+ "types": "./main/list-item-custom/index.d.ts",
493
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-list-item-custom.mjs"
494
+ },
479
495
  "./main/list-item-group": {
480
496
  "types": "./main/list-item-group/index.d.ts",
481
497
  "default": "./fesm2022/ui5-webcomponents-ngx-main-list-item-group.mjs"
@@ -488,10 +504,6 @@
488
504
  "types": "./main/menu/index.d.ts",
489
505
  "default": "./fesm2022/ui5-webcomponents-ngx-main-menu.mjs"
490
506
  },
491
- "./main/list-item-custom": {
492
- "types": "./main/list-item-custom/index.d.ts",
493
- "default": "./fesm2022/ui5-webcomponents-ngx-main-list-item-custom.mjs"
494
- },
495
507
  "./main/menu-item": {
496
508
  "types": "./main/menu-item/index.d.ts",
497
509
  "default": "./fesm2022/ui5-webcomponents-ngx-main-menu-item.mjs"
@@ -512,14 +524,14 @@
512
524
  "types": "./main/multi-combo-box/index.d.ts",
513
525
  "default": "./fesm2022/ui5-webcomponents-ngx-main-multi-combo-box.mjs"
514
526
  },
515
- "./main/multi-combo-box-item-group": {
516
- "types": "./main/multi-combo-box-item-group/index.d.ts",
517
- "default": "./fesm2022/ui5-webcomponents-ngx-main-multi-combo-box-item-group.mjs"
518
- },
519
527
  "./main/multi-combo-box-item": {
520
528
  "types": "./main/multi-combo-box-item/index.d.ts",
521
529
  "default": "./fesm2022/ui5-webcomponents-ngx-main-multi-combo-box-item.mjs"
522
530
  },
531
+ "./main/multi-combo-box-item-group": {
532
+ "types": "./main/multi-combo-box-item-group/index.d.ts",
533
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-multi-combo-box-item-group.mjs"
534
+ },
523
535
  "./main/multi-input": {
524
536
  "types": "./main/multi-input/index.d.ts",
525
537
  "default": "./fesm2022/ui5-webcomponents-ngx-main-multi-input.mjs"
@@ -576,14 +588,14 @@
576
588
  "types": "./main/slider/index.d.ts",
577
589
  "default": "./fesm2022/ui5-webcomponents-ngx-main-slider.mjs"
578
590
  },
579
- "./main/split-button": {
580
- "types": "./main/split-button/index.d.ts",
581
- "default": "./fesm2022/ui5-webcomponents-ngx-main-split-button.mjs"
582
- },
583
591
  "./main/special-calendar-date": {
584
592
  "types": "./main/special-calendar-date/index.d.ts",
585
593
  "default": "./fesm2022/ui5-webcomponents-ngx-main-special-calendar-date.mjs"
586
594
  },
595
+ "./main/split-button": {
596
+ "types": "./main/split-button/index.d.ts",
597
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-split-button.mjs"
598
+ },
587
599
  "./main/step-input": {
588
600
  "types": "./main/step-input/index.d.ts",
589
601
  "default": "./fesm2022/ui5-webcomponents-ngx-main-step-input.mjs"
@@ -700,14 +712,14 @@
700
712
  "types": "./main/toggle-button/index.d.ts",
701
713
  "default": "./fesm2022/ui5-webcomponents-ngx-main-toggle-button.mjs"
702
714
  },
703
- "./main/tokenizer": {
704
- "types": "./main/tokenizer/index.d.ts",
705
- "default": "./fesm2022/ui5-webcomponents-ngx-main-tokenizer.mjs"
706
- },
707
715
  "./main/token": {
708
716
  "types": "./main/token/index.d.ts",
709
717
  "default": "./fesm2022/ui5-webcomponents-ngx-main-token.mjs"
710
718
  },
719
+ "./main/tokenizer": {
720
+ "types": "./main/tokenizer/index.d.ts",
721
+ "default": "./fesm2022/ui5-webcomponents-ngx-main-tokenizer.mjs"
722
+ },
711
723
  "./main/toolbar": {
712
724
  "types": "./main/toolbar/index.d.ts",
713
725
  "default": "./fesm2022/ui5-webcomponents-ngx-main-toolbar.mjs"
Binary file