@siemens/ix-angular 1.2.0-beta.0 → 1.2.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.
- package/components.d.ts +9 -0
- package/declare-components.d.ts +1 -1
- package/dropdown/trigger.directive.d.ts +10 -0
- package/esm2020/components.mjs +24 -1
- package/esm2020/declare-components.mjs +2 -1
- package/esm2020/dropdown/trigger.directive.mjs +29 -0
- package/esm2020/index.mjs +2 -1
- package/esm2020/modal/modal.service.mjs +1 -1
- package/esm2020/module.mjs +5 -4
- package/fesm2015/siemens-ix-angular.mjs +54 -4
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +54 -4
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/modal/modal.service.d.ts +1 -4
- package/module.d.ts +2 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import { closeModal, dismissModal, modal, toast } from '@siemens/ix';
|
|
|
2
2
|
export * from '@siemens/ix';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { Component, ChangeDetectionStrategy,
|
|
5
|
+
import { Component, ChangeDetectionStrategy, Directive, Input, Injectable, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
6
6
|
import { fromEvent } from 'rxjs';
|
|
7
7
|
import { DOCUMENT } from '@angular/common';
|
|
8
8
|
import { applyPolyfills, defineCustomElements } from '@siemens/ix/loader';
|
|
@@ -650,6 +650,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
650
650
|
inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
|
|
651
651
|
}]
|
|
652
652
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
653
|
+
let IxGroupContextMenu = class IxGroupContextMenu {
|
|
654
|
+
constructor(c, r, z) {
|
|
655
|
+
this.z = z;
|
|
656
|
+
c.detach();
|
|
657
|
+
this.el = r.nativeElement;
|
|
658
|
+
}
|
|
659
|
+
};
|
|
660
|
+
/** @nocollapse */ IxGroupContextMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
661
|
+
/** @nocollapse */ IxGroupContextMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxGroupContextMenu, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
662
|
+
IxGroupContextMenu = __decorate([
|
|
663
|
+
ProxyCmp({
|
|
664
|
+
defineCustomElementFn: undefined
|
|
665
|
+
})
|
|
666
|
+
], IxGroupContextMenu);
|
|
667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupContextMenu, decorators: [{
|
|
668
|
+
type: Component,
|
|
669
|
+
args: [{
|
|
670
|
+
selector: 'ix-group-context-menu',
|
|
671
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
672
|
+
template: '<ng-content></ng-content>'
|
|
673
|
+
}]
|
|
674
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
653
675
|
let IxGroupDropdownItem = class IxGroupDropdownItem {
|
|
654
676
|
constructor(c, r, z) {
|
|
655
677
|
this.z = z;
|
|
@@ -1610,6 +1632,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1610
1632
|
}]
|
|
1611
1633
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1612
1634
|
|
|
1635
|
+
/*
|
|
1636
|
+
* SPDX-FileCopyrightText: 2022 Siemens AG
|
|
1637
|
+
*
|
|
1638
|
+
* SPDX-License-Identifier: MIT
|
|
1639
|
+
*
|
|
1640
|
+
* This source code is licensed under the MIT license found in the
|
|
1641
|
+
* LICENSE file in the root directory of this source tree.
|
|
1642
|
+
*/
|
|
1643
|
+
class IxDropdownTriggerDirective {
|
|
1644
|
+
constructor(element) {
|
|
1645
|
+
this.element = element;
|
|
1646
|
+
}
|
|
1647
|
+
ngOnChanges() {
|
|
1648
|
+
this.element.nativeElement.trigger = this.ixDropdownTrigger.el;
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
/** @nocollapse */ IxDropdownTriggerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1652
|
+
/** @nocollapse */ IxDropdownTriggerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownTriggerDirective, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesOnChanges: true, ngImport: i0 });
|
|
1653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
|
|
1654
|
+
type: Directive,
|
|
1655
|
+
args: [{
|
|
1656
|
+
selector: '[ixDropdownTrigger]',
|
|
1657
|
+
}]
|
|
1658
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { ixDropdownTrigger: [{
|
|
1659
|
+
type: Input
|
|
1660
|
+
}] } });
|
|
1661
|
+
|
|
1613
1662
|
/*
|
|
1614
1663
|
* SPDX-FileCopyrightText: 2022 Siemens AG
|
|
1615
1664
|
*
|
|
@@ -1718,6 +1767,7 @@ const DIRECTIVES = [
|
|
|
1718
1767
|
IxFlipTile,
|
|
1719
1768
|
IxFlipTileContent,
|
|
1720
1769
|
IxGroup,
|
|
1770
|
+
IxGroupContextMenu,
|
|
1721
1771
|
IxGroupDropdownItem,
|
|
1722
1772
|
IxGroupItem,
|
|
1723
1773
|
IxIcon,
|
|
@@ -1896,7 +1946,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1896
1946
|
* This source code is licensed under the MIT license found in the
|
|
1897
1947
|
* LICENSE file in the root directory of this source tree.
|
|
1898
1948
|
*/
|
|
1899
|
-
const DECLARATIONS = [...DIRECTIVES, IxTree];
|
|
1949
|
+
const DECLARATIONS = [...DIRECTIVES, IxTree, IxDropdownTriggerDirective];
|
|
1900
1950
|
class IxModule {
|
|
1901
1951
|
static forRoot() {
|
|
1902
1952
|
return {
|
|
@@ -1915,7 +1965,7 @@ class IxModule {
|
|
|
1915
1965
|
}
|
|
1916
1966
|
}
|
|
1917
1967
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1918
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree], exports: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree] });
|
|
1968
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective], exports: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective] });
|
|
1919
1969
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
1920
1970
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
1921
1971
|
type: NgModule,
|
|
@@ -1938,5 +1988,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1938
1988
|
* Generated bundle index. Do not edit.
|
|
1939
1989
|
*/
|
|
1940
1990
|
|
|
1941
|
-
export { IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxModule, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTree, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ToastService };
|
|
1991
|
+
export { IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxDropdownTriggerDirective, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxModule, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTree, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ToastService };
|
|
1942
1992
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|