@epilot360/icons 1.12.2 → 1.12.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/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/build/react/EpilotIcon.d.ts +2 -0
- package/build/react/EpilotIcon.js +1 -1
- package/build/react/EpilotIcon.js.map +1 -1
- package/build/react/Pending/index.d.ts +4 -0
- package/build/react/Pending/index.js +2 -0
- package/build/react/Pending/index.js.map +1 -0
- package/build/react/index.d.ts +1 -0
- package/build/react/index.js +1 -1
- package/build/react/index.js.map +1 -1
- package/build/svg/Pending/icon-fill.svg +1 -0
- package/build/svg/Pending/icon.svg +1 -0
- package/build/svg/Pending/index.d.ts +3 -0
- package/build/svg/Pending/index.js +2 -0
- package/build/svg/Pending/index.js.map +1 -0
- package/build/svg/index.d.ts +1 -0
- package/build/svg/index.js +1 -1
- package/build/svg/index.js.map +1 -1
- package/build/svg/svgIcon.d.ts +1 -0
- package/build/svg/svgIcon.js +1 -1
- package/build/svg/svgIcon.js.map +1 -1
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +1 -1
- package/icons.config.yaml +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +2 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Pending/index.d.ts +4 -0
- package/react/Pending/index.js +2 -0
- package/react/Pending/index.js.map +1 -0
- package/react/index.d.ts +1 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/src/react/EpilotIcon.tsx +2 -0
- package/src/react/Pending/index.tsx +22 -0
- package/src/react/Pending/story.stories.tsx +13 -0
- package/src/react/index.ts +1 -0
- package/src/svg/Pending/icon-fill.svg +1 -0
- package/src/svg/Pending/icon.svg +1 -0
- package/src/svg/Pending/index.ts +12 -0
- package/src/svg/index.ts +1 -0
- package/src/svg/svgIcon.ts +2 -0
- package/svg/Pending/icon-fill.svg +1 -0
- package/svg/Pending/icon.svg +1 -0
- package/svg/Pending/index.d.ts +3 -0
- package/svg/Pending/index.js +2 -0
- package/svg/Pending/index.js.map +1 -0
- package/svg/index.d.ts +1 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +1 -0
- package/svg/svgIcon.js +1 -1
- package/svg/svgIcon.js.map +1 -1
package/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ import { Diagram } from './Diagram';
|
|
|
129
129
|
import { Repeat } from './Repeat';
|
|
130
130
|
import { MoveDown } from './MoveDown';
|
|
131
131
|
import { StepOver } from './StepOver';
|
|
132
|
+
import { Pending } from './Pending';
|
|
132
133
|
import type { IconPropsReact } from './types';
|
|
133
134
|
export declare const IconComponentsMap: {
|
|
134
135
|
epilot: typeof Epilot;
|
|
@@ -261,6 +262,7 @@ export declare const IconComponentsMap: {
|
|
|
261
262
|
repeat: typeof Repeat;
|
|
262
263
|
move_down: typeof MoveDown;
|
|
263
264
|
step_over: typeof StepOver;
|
|
265
|
+
pending_actions: typeof Pending;
|
|
264
266
|
};
|
|
265
267
|
export type IconName = keyof typeof IconComponentsMap;
|
|
266
268
|
type Props = IconPropsReact & {
|