@epilot360/icons 1.13.4 → 1.13.5
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 +3 -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/FileManager/index.d.ts +4 -0
- package/react/FileManager/index.js +2 -0
- package/react/FileManager/index.js.map +1 -0
- package/react/Upload/index.js +1 -1
- package/react/Upload/index.js.map +1 -1
- package/react/index.d.ts +1 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/FileManager/icon-fill.svg +1 -0
- package/svg/FileManager/icon.svg +1 -0
- package/svg/FileManager/index.d.ts +3 -0
- package/svg/FileManager/index.js +2 -0
- package/svg/FileManager/index.js.map +1 -0
- package/svg/Upload/icon-fill.svg +1 -1
- package/svg/Upload/icon.svg +1 -1
- package/svg/Upload/index.js +1 -1
- package/svg/Upload/index.js.map +1 -1
- 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
|
@@ -142,6 +142,7 @@ import { AIStar } from './AIStar';
|
|
|
142
142
|
import { Label } from './Label';
|
|
143
143
|
import { LabelOff } from './LabelOff';
|
|
144
144
|
import { Remove } from './Remove';
|
|
145
|
+
import { FileManager } from './FileManager';
|
|
145
146
|
import type { IconPropsReact } from './types';
|
|
146
147
|
export declare const IconComponentsMap: {
|
|
147
148
|
epilot: typeof Epilot;
|
|
@@ -287,6 +288,7 @@ export declare const IconComponentsMap: {
|
|
|
287
288
|
label: typeof Label;
|
|
288
289
|
label_off: typeof LabelOff;
|
|
289
290
|
remove: typeof Remove;
|
|
291
|
+
file_manager: typeof FileManager;
|
|
290
292
|
};
|
|
291
293
|
export type IconName = keyof typeof IconComponentsMap;
|
|
292
294
|
type Props = IconPropsReact & {
|