@fundamental-ngx/ui5-webcomponents 0.63.1-rc.11 → 0.63.1-rc.13

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.
@@ -99,6 +99,7 @@ import '@ui5/webcomponents/dist/ColorPalettePopover.js';
99
99
  import '@ui5/webcomponents/dist/ColorPicker.js';
100
100
  import '@ui5/webcomponents/dist/ComboBox.js';
101
101
  import '@ui5/webcomponents/dist/ComboBoxItem.js';
102
+ import '@ui5/webcomponents/dist/ComboBoxItemCustom.js';
102
103
  import '@ui5/webcomponents/dist/ComboBoxItemGroup.js';
103
104
  import '@ui5/webcomponents/dist/DatePicker.js';
104
105
  import '@ui5/webcomponents/dist/DateRangePicker.js';
@@ -130,6 +131,7 @@ import '@ui5/webcomponents/dist/MessageStrip.js';
130
131
  import '@ui5/webcomponents/dist/MonthPicker.js';
131
132
  import '@ui5/webcomponents/dist/MultiComboBox.js';
132
133
  import '@ui5/webcomponents/dist/MultiComboBoxItem.js';
134
+ import '@ui5/webcomponents/dist/MultiComboBoxItemCustom.js';
133
135
  import '@ui5/webcomponents/dist/MultiComboBoxItemGroup.js';
134
136
  import '@ui5/webcomponents/dist/MultiInput.js';
135
137
  import '@ui5/webcomponents/dist/Option.js';
@@ -850,9 +852,11 @@ class Bar {
850
852
 
851
853
  **Note:**
852
854
 
853
- - Set accessibleRole to "toolbar" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.
855
+ - By default, accessibleRole is set to "Toolbar", which renders the ARIA role "toolbar".
854
856
 
855
- - If there is only one or no active element, it is recommended to avoid using the "toolbar" role, as it implies a grouping of multiple interactive controls.
857
+ - Use the default accessibleRole value "Toolbar" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.
858
+
859
+ - If there is only one or no active element, set accessibleRole to "None" to avoid rendering the ARIA role "toolbar", as that role implies a grouping of multiple interactive controls.
856
860
  */
857
861
  this.accessibleRole = input("Toolbar", ...(ngDevMode ? [{ debugName: "accessibleRole" }] : []));
858
862
  /**
@@ -958,6 +962,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
958
962
 
959
963
  class Breadcrumbs {
960
964
  constructor() {
965
+ /**
966
+ * Defines the accessible name of the component.
967
+ */
968
+ this.accessibleName = input(...(ngDevMode ? [undefined, { debugName: "accessibleName" }] : []));
961
969
  /**
962
970
  * Defines the visual appearance of the last BreadcrumbsItem.
963
971
 
@@ -1018,6 +1026,7 @@ class Breadcrumbs {
1018
1026
  ngAfterViewInit() {
1019
1027
  const wcElement = this.element;
1020
1028
  const inputsToSync = [
1029
+ 'accessibleName',
1021
1030
  'design',
1022
1031
  'separators',
1023
1032
  ];
@@ -1056,7 +1065,7 @@ class Breadcrumbs {
1056
1065
  }
1057
1066
  }
1058
1067
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: Breadcrumbs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1059
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: Breadcrumbs, isStandalone: true, selector: "ui5-breadcrumbs, [ui5-breadcrumbs]", inputs: { design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, separators: { classPropertyName: "separators", publicName: "separators", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5ItemClick: "ui5ItemClick" }, providers: [
1068
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: Breadcrumbs, isStandalone: true, selector: "ui5-breadcrumbs, [ui5-breadcrumbs]", inputs: { accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, separators: { classPropertyName: "separators", publicName: "separators", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5ItemClick: "ui5ItemClick" }, providers: [
1060
1069
  contentDensityObserverProviders({
1061
1070
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
1062
1071
  })
@@ -1076,7 +1085,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
1076
1085
  ],
1077
1086
  changeDetection: ChangeDetectionStrategy.OnPush,
1078
1087
  }]
1079
- }], propDecorators: { design: [{ type: i0.Input, args: [{ isSignal: true, alias: "design", required: false }] }], separators: [{ type: i0.Input, args: [{ isSignal: true, alias: "separators", required: false }] }], ui5ItemClick: [{ type: i0.Output, args: ["ui5ItemClick"] }] } });
1088
+ }], propDecorators: { accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], design: [{ type: i0.Input, args: [{ isSignal: true, alias: "design", required: false }] }], separators: [{ type: i0.Input, args: [{ isSignal: true, alias: "separators", required: false }] }], ui5ItemClick: [{ type: i0.Output, args: ["ui5ItemClick"] }] } });
1080
1089
 
1081
1090
  class BreadcrumbsItem {
1082
1091
  constructor() {
@@ -3624,6 +3633,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
3624
3633
  }]
3625
3634
  }], propDecorators: { additionalText: [{ type: i0.Input, args: [{ isSignal: true, alias: "additionalText", required: false }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
3626
3635
 
3636
+ class ComboBoxItemCustom {
3637
+ constructor() {
3638
+ /**
3639
+ * Defines the text of the component.
3640
+ Used for filtering, autocomplete, and mobile rendering.
3641
+ */
3642
+ this.text = input(...(ngDevMode ? [undefined, { debugName: "text" }] : []));
3643
+ /**
3644
+ * Defines the value of the component.
3645
+ Used for programmatic selection via the `selectedValue` property.
3646
+ */
3647
+ this.value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : [])); // className is now passed
3648
+ /**
3649
+ * Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
3650
+
3651
+ **Note:** The event will not be fired if the `disabled` property is set to `true`.
3652
+ */
3653
+ this.ui5Click = output();
3654
+ /**
3655
+ * Available slots for content projection in this component.
3656
+ *
3657
+ * Slots allow you to insert custom content into predefined areas of the web component.
3658
+ * Use the `slot` attribute on child elements to target specific slots.
3659
+ *
3660
+ * - **(default)**: Defines the content of the component.
3661
+ *
3662
+ * @example
3663
+ * ```html
3664
+ * <ui5-cb-item-custom>
3665
+ * <div slot="header">Custom header content</div>
3666
+ * <p>Default slot content</p>
3667
+ * </ui5-cb-item-custom>
3668
+ * ```
3669
+ *
3670
+ * @readonly
3671
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
3672
+ */
3673
+ this.slots = [
3674
+ {
3675
+ "name": "default",
3676
+ "description": "Defines the content of the component."
3677
+ }
3678
+ ];
3679
+ this.elementRef = inject(ElementRef);
3680
+ this.injector = inject(Injector);
3681
+ /**
3682
+ * Content density observer is injected to activate automatic CSS class and
3683
+ * UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
3684
+ * @private
3685
+ */
3686
+ this._contentDensityObserver = inject(ContentDensityObserver);
3687
+ }
3688
+ get element() {
3689
+ return this.elementRef.nativeElement;
3690
+ }
3691
+ ngAfterViewInit() {
3692
+ const wcElement = this.element;
3693
+ const inputsToSync = [
3694
+ 'text',
3695
+ 'value',
3696
+ ];
3697
+ // Synchronize inputs (properties)
3698
+ for (const inputName of inputsToSync) {
3699
+ // Find the corresponding camelCase signal property on the Angular component
3700
+ const signalName = inputName.replace(/-./g, (x) => x[1].toUpperCase());
3701
+ // Use the Injector to run the effect in the correct context
3702
+ if (this[signalName] && typeof this[signalName] === 'function') {
3703
+ runInInjectionContext(this.injector, () => {
3704
+ effect(() => {
3705
+ // Read the signal value
3706
+ const value = this[signalName]();
3707
+ if (wcElement) {
3708
+ // Write the value to the Web Component's property
3709
+ wcElement[inputName] = value;
3710
+ }
3711
+ });
3712
+ });
3713
+ }
3714
+ }
3715
+ const outputsToSync = [
3716
+ 'ui5Click',
3717
+ ];
3718
+ // Synchronize outputs (events)
3719
+ for (const outputName of outputsToSync) {
3720
+ // Map Angular output name to UI5 web component event name
3721
+ const eventName = outputName.replace('ui5', '').replace(/([A-Z])/g, '-$1').toLowerCase().substring(1);
3722
+ // Ensure the output property exists and has an emit function before adding listener
3723
+ if (this[outputName] && typeof this[outputName].emit === 'function' && wcElement.addEventListener) {
3724
+ // Cast the listener to the correct type to satisfy TypeScript
3725
+ wcElement.addEventListener(eventName, (e) => {
3726
+ this[outputName].emit(e);
3727
+ });
3728
+ }
3729
+ }
3730
+ }
3731
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ComboBoxItemCustom, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3732
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: ComboBoxItemCustom, isStandalone: true, selector: "ui5-cb-item-custom, [ui5-cb-item-custom]", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, providers: [
3733
+ contentDensityObserverProviders({
3734
+ supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
3735
+ })
3736
+ ], exportAs: ["ui5ComboBoxItemCustom"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3737
+ }
3738
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ComboBoxItemCustom, decorators: [{
3739
+ type: Component,
3740
+ args: [{
3741
+ standalone: true,
3742
+ selector: 'ui5-cb-item-custom, [ui5-cb-item-custom]',
3743
+ template: '<ng-content></ng-content>',
3744
+ exportAs: 'ui5ComboBoxItemCustom',
3745
+ providers: [
3746
+ contentDensityObserverProviders({
3747
+ supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
3748
+ })
3749
+ ],
3750
+ changeDetection: ChangeDetectionStrategy.OnPush,
3751
+ }]
3752
+ }], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
3753
+
3627
3754
  class ComboBoxItemGroup {
3628
3755
  constructor() {
3629
3756
  /**
@@ -9221,6 +9348,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
9221
9348
  }]
9222
9349
  }], propDecorators: { additionalText: [{ type: i0.Input, args: [{ isSignal: true, alias: "additionalText", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
9223
9350
 
9351
+ class MultiComboBoxItemCustom {
9352
+ constructor() {
9353
+ /**
9354
+ * Defines the text of the component.
9355
+ Used for filtering and token display.
9356
+ */
9357
+ this.text = input(...(ngDevMode ? [undefined, { debugName: "text" }] : []));
9358
+ /**
9359
+ * Defines the value of the component.
9360
+ Used for programmatic selection via selectedValues property.
9361
+ */
9362
+ this.value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : [])); // className is now passed
9363
+ /**
9364
+ * Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
9365
+
9366
+ **Note:** The event will not be fired if the `disabled` property is set to `true`.
9367
+ */
9368
+ this.ui5Click = output();
9369
+ /**
9370
+ * Available slots for content projection in this component.
9371
+ *
9372
+ * Slots allow you to insert custom content into predefined areas of the web component.
9373
+ * Use the `slot` attribute on child elements to target specific slots.
9374
+ *
9375
+ * - **(default)**: Defines the content of the component.
9376
+ *
9377
+ * @example
9378
+ * ```html
9379
+ * <ui5-mcb-item-custom>
9380
+ * <div slot="header">Custom header content</div>
9381
+ * <p>Default slot content</p>
9382
+ * </ui5-mcb-item-custom>
9383
+ * ```
9384
+ *
9385
+ * @readonly
9386
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
9387
+ */
9388
+ this.slots = [
9389
+ {
9390
+ "name": "default",
9391
+ "description": "Defines the content of the component."
9392
+ }
9393
+ ];
9394
+ this.elementRef = inject(ElementRef);
9395
+ this.injector = inject(Injector);
9396
+ /**
9397
+ * Content density observer is injected to activate automatic CSS class and
9398
+ * UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
9399
+ * @private
9400
+ */
9401
+ this._contentDensityObserver = inject(ContentDensityObserver);
9402
+ }
9403
+ get element() {
9404
+ return this.elementRef.nativeElement;
9405
+ }
9406
+ ngAfterViewInit() {
9407
+ const wcElement = this.element;
9408
+ const inputsToSync = [
9409
+ 'text',
9410
+ 'value',
9411
+ ];
9412
+ // Synchronize inputs (properties)
9413
+ for (const inputName of inputsToSync) {
9414
+ // Find the corresponding camelCase signal property on the Angular component
9415
+ const signalName = inputName.replace(/-./g, (x) => x[1].toUpperCase());
9416
+ // Use the Injector to run the effect in the correct context
9417
+ if (this[signalName] && typeof this[signalName] === 'function') {
9418
+ runInInjectionContext(this.injector, () => {
9419
+ effect(() => {
9420
+ // Read the signal value
9421
+ const value = this[signalName]();
9422
+ if (wcElement) {
9423
+ // Write the value to the Web Component's property
9424
+ wcElement[inputName] = value;
9425
+ }
9426
+ });
9427
+ });
9428
+ }
9429
+ }
9430
+ const outputsToSync = [
9431
+ 'ui5Click',
9432
+ ];
9433
+ // Synchronize outputs (events)
9434
+ for (const outputName of outputsToSync) {
9435
+ // Map Angular output name to UI5 web component event name
9436
+ const eventName = outputName.replace('ui5', '').replace(/([A-Z])/g, '-$1').toLowerCase().substring(1);
9437
+ // Ensure the output property exists and has an emit function before adding listener
9438
+ if (this[outputName] && typeof this[outputName].emit === 'function' && wcElement.addEventListener) {
9439
+ // Cast the listener to the correct type to satisfy TypeScript
9440
+ wcElement.addEventListener(eventName, (e) => {
9441
+ this[outputName].emit(e);
9442
+ });
9443
+ }
9444
+ }
9445
+ }
9446
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: MultiComboBoxItemCustom, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9447
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: MultiComboBoxItemCustom, isStandalone: true, selector: "ui5-mcb-item-custom, [ui5-mcb-item-custom]", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, providers: [
9448
+ contentDensityObserverProviders({
9449
+ supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
9450
+ })
9451
+ ], exportAs: ["ui5MultiComboBoxItemCustom"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9452
+ }
9453
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: MultiComboBoxItemCustom, decorators: [{
9454
+ type: Component,
9455
+ args: [{
9456
+ standalone: true,
9457
+ selector: 'ui5-mcb-item-custom, [ui5-mcb-item-custom]',
9458
+ template: '<ng-content></ng-content>',
9459
+ exportAs: 'ui5MultiComboBoxItemCustom',
9460
+ providers: [
9461
+ contentDensityObserverProviders({
9462
+ supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
9463
+ })
9464
+ ],
9465
+ changeDetection: ChangeDetectionStrategy.OnPush,
9466
+ }]
9467
+ }], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
9468
+
9224
9469
  class MultiComboBoxItemGroup {
9225
9470
  constructor() {
9226
9471
  /**
@@ -18775,5 +19020,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
18775
19020
  * Generated bundle index. Do not edit.
18776
19021
  */
18777
19022
 
18778
- export { Avatar, AvatarBadge, AvatarGroup, Bar, Breadcrumbs, BreadcrumbsItem, BusyIndicator, Button, ButtonBadge, CVA_CONFIG, Calendar, CalendarDate, CalendarDateRange, CalendarLegend, CalendarLegendItem, Card, CardHeader, Carousel, CheckBox, ColorPalette, ColorPaletteItem, ColorPalettePopover, ColorPicker, ComboBox, ComboBoxItem, ComboBoxItemGroup, DatePicker, DateRangePicker, DateTimeInput, DateTimePicker, DayPicker, Dialog, DropIndicator, DynamicDateRange, ExpandableText, FileUploader, Form, FormGroup, FormItem, GenericControlValueAccessor, Icon, Input, Label, Link, List, ListItemCustom, ListItemGroup, ListItemGroupHeader, ListItemStandard, Menu, MenuItem, MenuItemGroup, MenuSeparator, MessageStrip, MonthPicker, MultiComboBox, MultiComboBoxItem, MultiComboBoxItemGroup, MultiInput, Option, OptionCustom, Panel, Popover, ProgressIndicator, RadioButton, RangeSlider, RatingIndicator, ResponsivePopover, SegmentedButton, SegmentedButtonItem, Select, Slider, SliderHandle, SliderTooltip, SpecialCalendarDate, SplitButton, StepInput, SuggestionItem, SuggestionItemCustom, SuggestionItemGroup, SuggestionListItem, Switch, Tab, TabContainer, TabSeparator, Table, TableCell, TableGroupRow, TableGrowing, TableHeaderCell, TableHeaderCellActionAI, TableHeaderRow, TableRow, TableRowAction, TableRowActionNavigation, TableSelection, TableSelectionMulti, TableSelectionSingle, TableVirtualizer, Tag, Text, TextArea, TimePicker, TimePickerClock, TimeSelectionClocks, TimeSelectionInputs, Title, Toast, ToggleButton, ToggleSpinButton, Token, Tokenizer, Toolbar, ToolbarButton, ToolbarItem, ToolbarSelect, ToolbarSelectOption, ToolbarSeparator, ToolbarSpacer, Tree, TreeItem, TreeItemCustom, Ui5WebcomponentsMainThemingService, YearPicker, YearRangePicker };
19023
+ export { Avatar, AvatarBadge, AvatarGroup, Bar, Breadcrumbs, BreadcrumbsItem, BusyIndicator, Button, ButtonBadge, CVA_CONFIG, Calendar, CalendarDate, CalendarDateRange, CalendarLegend, CalendarLegendItem, Card, CardHeader, Carousel, CheckBox, ColorPalette, ColorPaletteItem, ColorPalettePopover, ColorPicker, ComboBox, ComboBoxItem, ComboBoxItemCustom, ComboBoxItemGroup, DatePicker, DateRangePicker, DateTimeInput, DateTimePicker, DayPicker, Dialog, DropIndicator, DynamicDateRange, ExpandableText, FileUploader, Form, FormGroup, FormItem, GenericControlValueAccessor, Icon, Input, Label, Link, List, ListItemCustom, ListItemGroup, ListItemGroupHeader, ListItemStandard, Menu, MenuItem, MenuItemGroup, MenuSeparator, MessageStrip, MonthPicker, MultiComboBox, MultiComboBoxItem, MultiComboBoxItemCustom, MultiComboBoxItemGroup, MultiInput, Option, OptionCustom, Panel, Popover, ProgressIndicator, RadioButton, RangeSlider, RatingIndicator, ResponsivePopover, SegmentedButton, SegmentedButtonItem, Select, Slider, SliderHandle, SliderTooltip, SpecialCalendarDate, SplitButton, StepInput, SuggestionItem, SuggestionItemCustom, SuggestionItemGroup, SuggestionListItem, Switch, Tab, TabContainer, TabSeparator, Table, TableCell, TableGroupRow, TableGrowing, TableHeaderCell, TableHeaderCellActionAI, TableHeaderRow, TableRow, TableRowAction, TableRowActionNavigation, TableSelection, TableSelectionMulti, TableSelectionSingle, TableVirtualizer, Tag, Text, TextArea, TimePicker, TimePickerClock, TimeSelectionClocks, TimeSelectionInputs, Title, Toast, ToggleButton, ToggleSpinButton, Token, Tokenizer, Toolbar, ToolbarButton, ToolbarItem, ToolbarSelect, ToolbarSelectOption, ToolbarSeparator, ToolbarSpacer, Tree, TreeItem, TreeItemCustom, Ui5WebcomponentsMainThemingService, YearPicker, YearRangePicker };
18779
19024
  //# sourceMappingURL=fundamental-ngx-ui5-webcomponents.mjs.map