@epilot360/icons 1.13.2 → 1.13.3
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/Label/index.d.ts +4 -0
- package/react/Label/index.js +2 -0
- package/react/Label/index.js.map +1 -0
- package/react/LabelOff/index.d.ts +4 -0
- package/react/LabelOff/index.js +2 -0
- package/react/LabelOff/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/Label/icon-fill.svg +1 -0
- package/svg/Label/icon.svg +1 -0
- package/svg/Label/index.d.ts +3 -0
- package/svg/Label/index.js +2 -0
- package/svg/Label/index.js.map +1 -0
- package/svg/LabelOff/icon-fill.svg +1 -0
- package/svg/LabelOff/icon.svg +1 -0
- package/svg/LabelOff/index.d.ts +3 -0
- package/svg/LabelOff/index.js +2 -0
- package/svg/LabelOff/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.13.
|
|
3
|
+
"version": "1.13.3",
|
|
4
4
|
"author": "epilot GmbH",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@babel/preset-react": "^7.22.15",
|
|
44
44
|
"@babel/preset-typescript": "^7.23.2",
|
|
45
45
|
"@epilot/eslint-config": "^2.1.0",
|
|
46
|
-
"@epilot360/webpack-config-epilot360": "^3.
|
|
46
|
+
"@epilot360/webpack-config-epilot360": "^3.1.1",
|
|
47
47
|
"@material-symbols/svg-400": "^0.15.0",
|
|
48
48
|
"@material-symbols/svg-600": "^0.15.0",
|
|
49
49
|
"@storybook/addon-essentials": "^7.5.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@types/js-yaml": "^4.0.8",
|
|
61
61
|
"@types/react": "^18.3.3",
|
|
62
62
|
"common-tags": "^1.8.2",
|
|
63
|
-
"copy-webpack-plugin": "^
|
|
63
|
+
"copy-webpack-plugin": "^12.0.2",
|
|
64
64
|
"ejs": "^3.1.9",
|
|
65
65
|
"esbuild-plugin-svgr": "^2.1.0",
|
|
66
66
|
"eslint": "^8.51.0",
|
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -139,6 +139,8 @@ import { Condition } from './Condition';
|
|
|
139
139
|
import { NoteStack } from './NoteStack';
|
|
140
140
|
import { DoubleThumbsUp } from './DoubleThumbsUp';
|
|
141
141
|
import { AIStar } from './AIStar';
|
|
142
|
+
import { Label } from './Label';
|
|
143
|
+
import { LabelOff } from './LabelOff';
|
|
142
144
|
import type { IconPropsReact } from './types';
|
|
143
145
|
export declare const IconComponentsMap: {
|
|
144
146
|
epilot: typeof Epilot;
|
|
@@ -281,6 +283,8 @@ export declare const IconComponentsMap: {
|
|
|
281
283
|
note_stack: typeof NoteStack;
|
|
282
284
|
double_thumbs_up: typeof DoubleThumbsUp;
|
|
283
285
|
ai_star: typeof AIStar;
|
|
286
|
+
label: typeof Label;
|
|
287
|
+
label_off: typeof LabelOff;
|
|
284
288
|
};
|
|
285
289
|
export type IconName = keyof typeof IconComponentsMap;
|
|
286
290
|
type Props = IconPropsReact & {
|