@epilot360/icons 1.12.6 → 1.13.0
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/__mocks__/icon-file-mock.d.ts +2 -0
- package/__mocks__/icon-file-mock.js +3 -0
- package/__mocks__/icon-file-mock.js.map +1 -0
- package/icons.config.yaml +8 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/FilterAlt/index.d.ts +4 -0
- package/react/FilterAlt/index.js +2 -0
- package/react/FilterAlt/index.js.map +1 -0
- package/react/FilterAltOff/index.d.ts +4 -0
- package/react/FilterAltOff/index.js +2 -0
- package/react/FilterAltOff/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/FilterAlt/icon-fill.svg +1 -0
- package/svg/FilterAlt/icon.svg +1 -0
- package/svg/FilterAlt/index.d.ts +3 -0
- package/svg/FilterAlt/index.js +2 -0
- package/svg/FilterAlt/index.js.map +1 -0
- package/svg/FilterAltOff/icon-fill.svg +1 -0
- package/svg/FilterAltOff/icon.svg +1 -0
- package/svg/FilterAltOff/index.d.ts +3 -0
- package/svg/FilterAltOff/index.js +2 -0
- package/svg/FilterAltOff/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +1 -1
- package/svg/svgIcon.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot360/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"author": "epilot GmbH",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"ts-node": "^10.9.1",
|
|
76
76
|
"typescript": "^5.2.2"
|
|
77
77
|
},
|
|
78
|
-
"dependencies": {},
|
|
79
78
|
"peerDependencies": {
|
|
80
79
|
"react": ">=17.0.0"
|
|
81
|
-
}
|
|
80
|
+
},
|
|
81
|
+
"packageManager": "yarn@1.22.21"
|
|
82
82
|
}
|
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ import { Help } from './Help';
|
|
|
15
15
|
import { ContentCopy } from './ContentCopy';
|
|
16
16
|
import { FileCopy } from './FileCopy';
|
|
17
17
|
import { FileCopyOff } from './FileCopyOff';
|
|
18
|
+
import { FilterAlt } from './FilterAlt';
|
|
19
|
+
import { FilterAltOff } from './FilterAltOff';
|
|
18
20
|
import { DataObject } from './DataObject';
|
|
19
21
|
import { Notifications } from './Notifications';
|
|
20
22
|
import { Visibility } from './Visibility';
|
|
@@ -153,6 +155,8 @@ export declare const IconComponentsMap: {
|
|
|
153
155
|
content_copy: typeof ContentCopy;
|
|
154
156
|
file_copy: typeof FileCopy;
|
|
155
157
|
file_copy_off: typeof FileCopyOff;
|
|
158
|
+
filter_alt: typeof FilterAlt;
|
|
159
|
+
filter_alt_off: typeof FilterAltOff;
|
|
156
160
|
data_object: typeof DataObject;
|
|
157
161
|
notifications: typeof Notifications;
|
|
158
162
|
visibility: typeof Visibility;
|