@epilot360/icons 1.17.12 → 1.17.14
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 +9 -1
- package/index.js +1793 -1503
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +596 -374
- package/react/EpilotIcon.js.map +1 -1
- package/react/Purpose/index.d.ts +4 -0
- package/react/Purpose/index.js +209 -0
- package/react/Purpose/index.js.map +1 -0
- package/react/Ticket/index.d.ts +4 -0
- package/react/Ticket/index.js +209 -0
- package/react/Ticket/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +979 -751
- package/react/index.js.map +1 -1
- package/svg/Purpose/icon-fill.svg +1 -0
- package/svg/Purpose/icon.svg +1 -0
- package/svg/Purpose/index.d.ts +3 -0
- package/svg/Purpose/index.js +159 -0
- package/svg/Purpose/index.js.map +1 -0
- package/svg/Ticket/icon-fill.svg +1 -0
- package/svg/Ticket/icon.svg +1 -0
- package/svg/Ticket/index.d.ts +3 -0
- package/svg/Ticket/index.js +159 -0
- package/svg/Ticket/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +913 -751
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +530 -374
- package/svg/svgIcon.js.map +1 -1
- package/__mocks__/icon-file-mock.d.ts +0 -2
- package/__mocks__/icon-file-mock.js +0 -3
- package/__mocks__/icon-file-mock.js.map +0 -1
package/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { Share } from './Share';
|
|
|
6
6
|
import { Delete } from './Delete';
|
|
7
7
|
import { Add } from './Add';
|
|
8
8
|
import { AddCircle } from './AddCircle';
|
|
9
|
+
import { Purpose } from './Purpose';
|
|
9
10
|
import { Check } from './Check';
|
|
10
11
|
import { CheckCircle } from './CheckCircle';
|
|
11
12
|
import { Warning } from './Warning';
|
|
@@ -193,6 +194,7 @@ import { Undo } from './Undo';
|
|
|
193
194
|
import { ChipExtraction } from './ChipExtraction';
|
|
194
195
|
import { Target } from './Target';
|
|
195
196
|
import { Campaign } from './Campaign';
|
|
197
|
+
import { Ticket } from './Ticket';
|
|
196
198
|
import type { IconPropsReact } from './types';
|
|
197
199
|
export declare const IconComponentsMap: {
|
|
198
200
|
epilot: typeof Epilot;
|
|
@@ -202,6 +204,7 @@ export declare const IconComponentsMap: {
|
|
|
202
204
|
delete: typeof Delete;
|
|
203
205
|
add: typeof Add;
|
|
204
206
|
add_circle: typeof AddCircle;
|
|
207
|
+
purpose: typeof Purpose;
|
|
205
208
|
check: typeof Check;
|
|
206
209
|
check_circle: typeof CheckCircle;
|
|
207
210
|
warning: typeof Warning;
|
|
@@ -389,6 +392,7 @@ export declare const IconComponentsMap: {
|
|
|
389
392
|
chip_extraction: typeof ChipExtraction;
|
|
390
393
|
target: typeof Target;
|
|
391
394
|
campaign: typeof Campaign;
|
|
395
|
+
ticket: typeof Ticket;
|
|
392
396
|
};
|
|
393
397
|
export type IconName = keyof typeof IconComponentsMap;
|
|
394
398
|
type Props = IconPropsReact & {
|