Skip to content

Commit

Permalink
fix ix icon load issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yagizhanNY committed Nov 30, 2023
1 parent 917a618 commit 9d01e3d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
9 changes: 7 additions & 2 deletions SiemensIXBlazor/SiemensIXBlazor_NpmJS/src/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
import { defineCustomElements } from '@siemens/ix/loader/index'
import { defineCustomElements, applyPolyfills } from '@siemens/ix/loader/index'
import { toast } from "@siemens/ix"
import '@siemens/ix-echarts';
import { registerTheme } from '@siemens/ix-echarts';
import * as echarts from 'echarts';
import { themeSwitcher } from '@siemens/ix';
import { Grid } from 'ag-grid-community';
import '@siemens/ix-aggrid/dist/index.js'
import { defineCustomElements as ixIconsDefineCustomElements } from '@siemens/ix-icons/loader';

defineCustomElements();
(async () => {
await applyPolyfills();
await ixIconsDefineCustomElements();
await defineCustomElements();
})();

// toast
window.showMessage = (config) => {
Expand Down
2 changes: 1 addition & 1 deletion SiemensIXBlazor/wwwroot/js/siemens-ix/2214.index.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion SiemensIXBlazor/wwwroot/js/siemens-ix/6748.index.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions SiemensIXBlazor/wwwroot/js/siemens-ix/8513.index.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion SiemensIXBlazor/wwwroot/js/siemens-ix/index.bundle.js

Large diffs are not rendered by default.

0 comments on commit 9d01e3d

Please sign in to comment.