@siemens/ix-icons 1.2.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -31
- package/dist/cjs/icon-a15a0683.js +1487 -0
- package/dist/cjs/icon-a15a0683.js.map +1 -0
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/ix-icon.cjs.entry.js +1 -1
- package/dist/collection/components/icon/icon.css +17 -2780
- package/dist/collection/components/icon/icon.js +10 -21
- package/dist/collection/components/icon/icon.js.map +1 -1
- package/dist/collection/components/icon/icons.js +679 -0
- package/dist/collection/components/icon/icons.js.map +1 -0
- package/dist/collection/components/icon/resolveIcon.js +27 -3
- package/dist/collection/components/icon/resolveIcon.js.map +1 -1
- package/dist/components/icon.js +1387 -25
- package/dist/components/icon.js.map +1 -1
- package/dist/css/ix-icons.css +13 -719
- package/dist/esm/icon-95eef87f.js +1485 -0
- package/dist/esm/icon-95eef87f.js.map +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/ix-icon.entry.js +1 -1
- package/dist/ix-icons/index.esm.js +1 -1
- package/dist/ix-icons/ix-icons.esm.js +1 -1
- package/dist/ix-icons/p-58a6be66.js +2 -0
- package/dist/ix-icons/p-58a6be66.js.map +1 -0
- package/dist/ix-icons/p-e0e04303.entry.js +2 -0
- package/dist/sample.json +676 -1351
- package/dist/svg/missing-symbol.svg +1 -0
- package/dist/types/components/icon/icon.d.ts +2 -1
- package/dist/types/components/icon/icons.d.ts +677 -0
- package/dist/types/components.d.ts +4 -2
- package/icons/index.d.ts +678 -676
- package/icons/index.js +678 -676
- package/icons/index.mjs +678 -676
- package/icons/package.json +1 -1
- package/package.json +2 -5
- package/dist/cjs/icon-f93d1754.js +0 -125
- package/dist/cjs/icon-f93d1754.js.map +0 -1
- package/dist/collection/components/icon/question.js +0 -5
- package/dist/collection/components/icon/question.js.map +0 -1
- package/dist/esm/icon-6a9c5e3a.js +0 -123
- package/dist/esm/icon-6a9c5e3a.js.map +0 -1
- package/dist/fonts/ix-icons.eot +0 -0
- package/dist/fonts/ix-icons.svg +0 -2037
- package/dist/fonts/ix-icons.ttf +0 -0
- package/dist/fonts/ix-icons.woff +0 -0
- package/dist/fonts/ix-icons.woff2 +0 -0
- package/dist/ix-icons/p-3f1bfdd7.js +0 -2
- package/dist/ix-icons/p-3f1bfdd7.js.map +0 -1
- package/dist/ix-icons/p-56e47578.entry.js +0 -2
- package/dist/sample.html +0 -11645
- package/dist/types/components/icon/question.d.ts +0 -1
- /package/dist/ix-icons/{p-56e47578.entry.js.map → p-e0e04303.entry.js.map} +0 -0
@@ -5,6 +5,8 @@
|
|
5
5
|
* It contains typing information for all components that exist in this project.
|
6
6
|
*/
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
8
|
+
import { IxIcons } from "./components/icon/icons";
|
9
|
+
export { IxIcons } from "./components/icon/icons";
|
8
10
|
export namespace Components {
|
9
11
|
interface IxIcon {
|
10
12
|
/**
|
@@ -14,7 +16,7 @@ export namespace Components {
|
|
14
16
|
/**
|
15
17
|
* Use one of our defined icon names e.g. `copy` https://ix.siemens.io/docs/icon-library/icons or the import variant ``` import { rocket } from '@siemens/ix-icons/icons'; <ix-icon name={rocket}></ix-icon> ```
|
16
18
|
*/
|
17
|
-
"name":
|
19
|
+
"name": IxIcons;
|
18
20
|
/**
|
19
21
|
* Size of the icon
|
20
22
|
*/
|
@@ -41,7 +43,7 @@ declare namespace LocalJSX {
|
|
41
43
|
/**
|
42
44
|
* Use one of our defined icon names e.g. `copy` https://ix.siemens.io/docs/icon-library/icons or the import variant ``` import { rocket } from '@siemens/ix-icons/icons'; <ix-icon name={rocket}></ix-icon> ```
|
43
45
|
*/
|
44
|
-
"name"?:
|
46
|
+
"name"?: IxIcons;
|
45
47
|
/**
|
46
48
|
* Size of the icon
|
47
49
|
*/
|