Skip to content

Commit

Permalink
fix(react|vue): define internal components (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielleroux committed Feb 21, 2024
1 parent 214012f commit 984bb3c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/react/src/internal-components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { defineCustomElement as defineIxApplicationSidebar } from '@siemens/ix/components/ix-application-sidebar.js';
import { defineCustomElement as defineIxApplicationSwitchModal } from '@siemens/ix/components/ix-application-switch-modal.js';
import { defineCustomElement as defineIxBurgerMenu } from '@siemens/ix/components/ix-burger-menu.js';
import { defineCustomElement as defineIxDateTimeCard } from '@siemens/ix/components/ix-date-time-card.js';
import { defineCustomElement as defineIxModalLoading } from '@siemens/ix/components/ix-modal-loading.js';

defineIxApplicationSwitchModal();
defineIxApplicationSidebar();
defineIxDateTimeCard();
defineIxBurgerMenu();
defineIxModalLoading();
8 changes: 8 additions & 0 deletions packages/vue/src/internal-components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { defineCustomElement as defineIxApplicationSidebar } from '@siemens/ix/components/ix-application-sidebar.js';
import { defineCustomElement as defineIxApplicationSwitchModal } from '@siemens/ix/components/ix-application-switch-modal.js';
import { defineCustomElement as defineIxBurgerMenu } from '@siemens/ix/components/ix-burger-menu.js';
import { defineCustomElement as defineIxDateTimeCard } from '@siemens/ix/components/ix-date-time-card.js';
import { defineCustomElement as defineIxModalLoading } from '@siemens/ix/components/ix-modal-loading.js';

defineIxApplicationSwitchModal();
defineIxApplicationSidebar();
defineIxDateTimeCard();
defineIxBurgerMenu();
defineIxModalLoading();

0 comments on commit 984bb3c

Please sign in to comment.