@epilot360/icons 1.13.2 → 1.13.4
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/icons.config.yaml +12 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/react/EpilotIcon.d.ts +6 -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/Remove/index.d.ts +4 -0
- package/react/Remove/index.js +2 -0
- package/react/Remove/index.js.map +1 -0
- package/react/index.d.ts +3 -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/Remove/icon-fill.svg +1 -0
- package/svg/Remove/icon.svg +1 -0
- package/svg/Remove/index.d.ts +3 -0
- package/svg/Remove/index.js +2 -0
- package/svg/Remove/index.js.map +1 -0
- package/svg/index.d.ts +3 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +3 -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.4",
|
|
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,9 @@ 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';
|
|
144
|
+
import { Remove } from './Remove';
|
|
142
145
|
import type { IconPropsReact } from './types';
|
|
143
146
|
export declare const IconComponentsMap: {
|
|
144
147
|
epilot: typeof Epilot;
|
|
@@ -281,6 +284,9 @@ export declare const IconComponentsMap: {
|
|
|
281
284
|
note_stack: typeof NoteStack;
|
|
282
285
|
double_thumbs_up: typeof DoubleThumbsUp;
|
|
283
286
|
ai_star: typeof AIStar;
|
|
287
|
+
label: typeof Label;
|
|
288
|
+
label_off: typeof LabelOff;
|
|
289
|
+
remove: typeof Remove;
|
|
284
290
|
};
|
|
285
291
|
export type IconName = keyof typeof IconComponentsMap;
|
|
286
292
|
type Props = IconPropsReact & {
|