vibrant-tool 0.1.1
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/README.md +36 -0
- package/dist/App.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/config.d.ts +2 -0
- package/dist/lib/hooks/applyImagePreset.d.ts +3 -0
- package/dist/lib/hooks/fitimagetopage.d.ts +2 -0
- package/dist/lib/hooks/qrUtils.d.ts +2 -0
- package/dist/lib/hooks/useBlackEffect.d.ts +2 -0
- package/dist/lib/hooks/useBlurEffect.d.ts +2 -0
- package/dist/lib/hooks/useBorderEffect.d.ts +2 -0
- package/dist/lib/hooks/useBrightnessEffect.d.ts +2 -0
- package/dist/lib/hooks/useCanvasZoom.d.ts +16 -0
- package/dist/lib/hooks/useContrastEffect.d.ts +2 -0
- package/dist/lib/hooks/useCornerRadiusEffect.d.ts +2 -0
- package/dist/lib/hooks/useDraggable.d.ts +2 -0
- package/dist/lib/hooks/useFabricDrawing.d.ts +1 -0
- package/dist/lib/hooks/useFabricShadow.d.ts +2 -0
- package/dist/lib/hooks/useKeyboardEvents.d.ts +2 -0
- package/dist/lib/hooks/useSaturationEffect.d.ts +2 -0
- package/dist/lib/hooks/useShadowEffect.d.ts +2 -0
- package/dist/lib/hooks/useSocialAuth.d.ts +16 -0
- package/dist/lib/hooks/useTemperatureEffect.d.ts +2 -0
- package/dist/lib/hooks/useVibranceEffect.d.ts +2 -0
- package/dist/lib/hooks/useWhiteEffect.d.ts +2 -0
- package/dist/lib/services/api.d.ts +12 -0
- package/dist/lib/services/crop-image.service.d.ts +23 -0
- package/dist/lib/services/font.service.d.ts +4 -0
- package/dist/lib/services/shape.service.d.ts +9 -0
- package/dist/lib/types/barcode.types.d.ts +12 -0
- package/dist/lib/types/color.types.d.ts +11 -0
- package/dist/lib/types/fabric.types.d.ts +38 -0
- package/dist/lib/types/font.types.d.ts +28 -0
- package/dist/lib/types/shape.types.d.ts +36 -0
- package/dist/lib/utils/background-utils.d.ts +4 -0
- package/dist/lib/utils/barcode-utils.d.ts +6 -0
- package/dist/lib/utils/canvas-handler.d.ts +78 -0
- package/dist/lib/utils/canvas-setup.d.ts +29 -0
- package/dist/lib/utils/color-conversions.utils.d.ts +19 -0
- package/dist/lib/utils/custom-controls.d.ts +5 -0
- package/dist/lib/utils/design-storage-utils.d.ts +4 -0
- package/dist/lib/utils/downloadCanvas.d.ts +7 -0
- package/dist/lib/utils/driver-tour.d.ts +2 -0
- package/dist/lib/utils/event-handlers.d.ts +10 -0
- package/dist/lib/utils/fabric-helper.d.ts +2 -0
- package/dist/lib/utils/gradient-converter-utils.d.ts +8 -0
- package/dist/lib/utils/history-recorder.d.ts +1 -0
- package/dist/lib/utils/icon-effects-utils.d.ts +4 -0
- package/dist/lib/utils/image-utils.d.ts +3 -0
- package/dist/lib/utils/imagePresets.d.ts +2 -0
- package/dist/lib/utils/overlay-manager.d.ts +3 -0
- package/dist/lib/utils/page-manager.d.ts +3 -0
- package/dist/lib/utils/pan-mode.d.ts +10 -0
- package/dist/lib/utils/qr-utils.d.ts +4 -0
- package/dist/lib/utils/svg-utils.d.ts +8 -0
- package/dist/lib/utils/text-utils.d.ts +4 -0
- package/dist/modules/canvas/index.d.ts +1 -0
- package/dist/modules/components/all-elements/index.d.ts +8 -0
- package/dist/modules/components/alpha-slider/index.d.ts +12 -0
- package/dist/modules/components/cmyk-inputs/index.d.ts +12 -0
- package/dist/modules/components/color-picker/index.d.ts +1 -0
- package/dist/modules/components/color-preview-box/index.d.ts +6 -0
- package/dist/modules/components/crop-image-button/index.d.ts +1 -0
- package/dist/modules/components/duplicate-button/index.d.ts +1 -0
- package/dist/modules/components/effect-section/index.d.ts +13 -0
- package/dist/modules/components/flip-button/index.d.ts +1 -0
- package/dist/modules/components/global-loader/index.d.ts +1 -0
- package/dist/modules/components/gradient-selector/index.d.ts +10 -0
- package/dist/modules/components/group-button/index.d.ts +1 -0
- package/dist/modules/components/home/aiimage.d.ts +5 -0
- package/dist/modules/components/home/animate.d.ts +3 -0
- package/dist/modules/components/home/design.d.ts +10 -0
- package/dist/modules/components/home/iconeffect.d.ts +7 -0
- package/dist/modules/components/home/index copy.d.ts +1 -0
- package/dist/modules/components/home/layer.d.ts +16 -0
- package/dist/modules/components/home/quotes.d.ts +6 -0
- package/dist/modules/components/home/shapeeffect.d.ts +7 -0
- package/dist/modules/components/home/size.d.ts +6 -0
- package/dist/modules/components/home/texteffect/components/BackgroundControl/index.d.ts +4 -0
- package/dist/modules/components/home/texteffect/components/CurvedTextControl/index.d.ts +4 -0
- package/dist/modules/components/home/texteffect/components/ShadowControl/index.d.ts +4 -0
- package/dist/modules/components/home/texteffect/components/blurControl/index.d.ts +4 -0
- package/dist/modules/components/home/texteffect/components/strokeControl/index.d.ts +4 -0
- package/dist/modules/components/home/texteffect/effect.d.ts +6 -0
- package/dist/modules/components/home/video.d.ts +6 -0
- package/dist/modules/components/home/videotrim.d.ts +7 -0
- package/dist/modules/components/hue-slider/index.d.ts +9 -0
- package/dist/modules/components/lock-button/index.d.ts +1 -0
- package/dist/modules/components/opacity-picker/index.d.ts +1 -0
- package/dist/modules/components/position-picker/index.d.ts +1 -0
- package/dist/modules/components/remove-button/index.d.ts +1 -0
- package/dist/modules/components/rotate-button/index.d.ts +1 -0
- package/dist/modules/components/shadow-control/index.d.ts +10 -0
- package/dist/modules/components/tour-runner/index.d.ts +1 -0
- package/dist/modules/components/ungroup-button/index.d.ts +1 -0
- package/dist/modules/components/zoom-controls/index.d.ts +1 -0
- package/dist/modules/data/elements.d.ts +6 -0
- package/dist/modules/data/mask.d.ts +4 -0
- package/dist/modules/data/templates.d.ts +126 -0
- package/dist/modules/icons/aiicon/index.d.ts +4 -0
- package/dist/modules/icons/aligncentericon/aligncentericon.d.ts +1 -0
- package/dist/modules/icons/alignlefticon/alignlefticon.d.ts +1 -0
- package/dist/modules/icons/alignrighticon/alignrighticon.d.ts +1 -0
- package/dist/modules/icons/arrowbottomlefticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowbottomrighticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowdownicon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowicon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowlefticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowrighticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowtoplefticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowtoprighticon/inedx.d.ts +1 -0
- package/dist/modules/icons/arrowupicon/inedx.d.ts +1 -0
- package/dist/modules/icons/backgroundicon/index.d.ts +1 -0
- package/dist/modules/icons/colorpickericon/index.d.ts +1 -0
- package/dist/modules/icons/copyicon/index.d.ts +1 -0
- package/dist/modules/icons/cropicon/index.d.ts +1 -0
- package/dist/modules/icons/deleteicon/index.d.ts +1 -0
- package/dist/modules/icons/designicon/index.d.ts +1 -0
- package/dist/modules/icons/disableicon/index.d.ts +1 -0
- package/dist/modules/icons/downloadicon/index.d.ts +1 -0
- package/dist/modules/icons/drawicon/index.d.ts +4 -0
- package/dist/modules/icons/dropboxicon/index.d.ts +1 -0
- package/dist/modules/icons/effecticon/index.d.ts +1 -0
- package/dist/modules/icons/eyeicon/index.d.ts +1 -0
- package/dist/modules/icons/facebookicon/index.d.ts +1 -0
- package/dist/modules/icons/flickricon/index.d.ts +1 -0
- package/dist/modules/icons/fliphorizontalicon/index.d.ts +1 -0
- package/dist/modules/icons/flipicon/index.d.ts +1 -0
- package/dist/modules/icons/flipverticalicon/index.d.ts +1 -0
- package/dist/modules/icons/googledriveicon/index.d.ts +1 -0
- package/dist/modules/icons/googlephotosicon/index.d.ts +1 -0
- package/dist/modules/icons/groupicon/index.d.ts +1 -0
- package/dist/modules/icons/handicon/index.d.ts +1 -0
- package/dist/modules/icons/helpicon/index.d.ts +1 -0
- package/dist/modules/icons/iconsicon/index.d.ts +1 -0
- package/dist/modules/icons/instagramicon/index.d.ts +1 -0
- package/dist/modules/icons/layersicon/index.d.ts +1 -0
- package/dist/modules/icons/lockicon/index.d.ts +1 -0
- package/dist/modules/icons/menuicon/index.d.ts +1 -0
- package/dist/modules/icons/notfoundicon/index.d.ts +1 -0
- package/dist/modules/icons/opacityicon/index.d.ts +1 -0
- package/dist/modules/icons/pexelsicon/index.d.ts +1 -0
- package/dist/modules/icons/photosicon/index.d.ts +1 -0
- package/dist/modules/icons/pixabayicon/index.d.ts +1 -0
- package/dist/modules/icons/pointericon/index.d.ts +1 -0
- package/dist/modules/icons/qrcodeicon/index.d.ts +1 -0
- package/dist/modules/icons/quotesicon/index.d.ts +1 -0
- package/dist/modules/icons/redoicon/index.d.ts +1 -0
- package/dist/modules/icons/rotateicon/index.d.ts +1 -0
- package/dist/modules/icons/shapeicon/index.d.ts +1 -0
- package/dist/modules/icons/sizeicon/index.d.ts +1 -0
- package/dist/modules/icons/strikethroughicon/index.d.ts +1 -0
- package/dist/modules/icons/stylecopyicon/index.d.ts +1 -0
- package/dist/modules/icons/templateicon/index.d.ts +1 -0
- package/dist/modules/icons/texticon/index.d.ts +4 -0
- package/dist/modules/icons/undoicon/index.d.ts +1 -0
- package/dist/modules/icons/ungroupicon/index.d.ts +1 -0
- package/dist/modules/icons/unlockicon/index.d.ts +1 -0
- package/dist/modules/icons/uploadicon/index.d.ts +1 -0
- package/dist/modules/icons/usersicon/index.d.ts +1 -0
- package/dist/modules/icons/videoicon/index.d.ts +4 -0
- package/dist/modules/icons/zoomicon/index.d.ts +1 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/side-panel/background-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/bar-code-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/draw-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/effect-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/elements-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/font-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/index.d.ts +10 -0
- package/dist/modules/side-panel/mask-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/panel/index.d.ts +4 -0
- package/dist/modules/side-panel/photos-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/qr-code-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/quotes-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/templates-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/text-panel/index.d.ts +1 -0
- package/dist/modules/side-panel/upload-panel/index.d.ts +1 -0
- package/dist/modules/toolbar/barcode-toolbar/index.d.ts +1 -0
- package/dist/modules/toolbar/common-toolbar/index.d.ts +1 -0
- package/dist/modules/toolbar/index.d.ts +1 -0
- package/dist/modules/toolbar/picture-toolbar/index.d.ts +1 -0
- package/dist/modules/toolbar/qr-toolbar/index.d.ts +1 -0
- package/dist/modules/toolbar/text-toolbar/index.d.ts +11 -0
- package/dist/modules/topbar/download-popover.d.ts +3 -0
- package/dist/modules/topbar/index.d.ts +1 -0
- package/dist/vibrant-tool.css +3031 -0
- package/dist/vibrant-tool.es.js +123232 -0
- package/dist/vibrant-tool.umd.js +123234 -0
- package/dist/zustand/drawStore.d.ts +13 -0
- package/dist/zustand/editorStore.d.ts +15 -0
- package/dist/zustand/effectStore.d.ts +43 -0
- package/dist/zustand/historyStore.d.ts +20 -0
- package/dist/zustand/loaderStore.d.ts +8 -0
- package/dist/zustand/selectionStore.d.ts +10 -0
- package/dist/zustand/sidePanelStore.d.ts +8 -0
- package/dist/zustand/tourStore.d.ts +19 -0
- package/package.json +72 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function CMYKColorPicker(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function CropImageButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function DuplicateButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface EffectSectionProps {
|
|
2
|
+
label: string;
|
|
3
|
+
enabled: boolean;
|
|
4
|
+
value: number;
|
|
5
|
+
min: number;
|
|
6
|
+
max: number;
|
|
7
|
+
onCommit?: () => void;
|
|
8
|
+
onToggle: () => void;
|
|
9
|
+
onChange: (value: number) => void;
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export default function EffectSection({ label, enabled, value, min, max, onCommit, onToggle, onChange, children, }: EffectSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function FlipButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function GlobalLoader(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
import { HSVColor } from '../../../lib/types/color.types';
|
|
3
|
+
interface Props {
|
|
4
|
+
hsv: HSVColor;
|
|
5
|
+
hueColor: string;
|
|
6
|
+
refEl: RefObject<HTMLDivElement | null>;
|
|
7
|
+
onChange: (hsv: HSVColor) => void;
|
|
8
|
+
}
|
|
9
|
+
export default function GradientSelector({ hsv, hueColor, refEl, onChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function GroupButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SavedDesign } from '../../../lib/types/fabric.types';
|
|
2
|
+
interface DesignsPanelProps {
|
|
3
|
+
designs: SavedDesign[];
|
|
4
|
+
onCreate: () => void;
|
|
5
|
+
onOpen: (design: SavedDesign) => void;
|
|
6
|
+
onDelete: (id: string) => void;
|
|
7
|
+
onClose?: () => void;
|
|
8
|
+
}
|
|
9
|
+
export default function DesignsPanel({ designs, onCreate, onOpen, onDelete, onClose }: DesignsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Canvas } from 'fabric';
|
|
2
|
+
interface IconEffectsPanelProps {
|
|
3
|
+
fabricRef: React.MutableRefObject<Canvas | null>;
|
|
4
|
+
onClose?: () => void;
|
|
5
|
+
}
|
|
6
|
+
export default function IconEffectsPanel({ fabricRef, onClose }: IconEffectsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function Home(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type LayerItem = {
|
|
2
|
+
id: string;
|
|
3
|
+
type: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
visible?: boolean;
|
|
6
|
+
locked?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export default function LayersPanel({ layers, onClose, onSelectLayer, onToggleVisibility, onToggleLock, onDeleteLayer }: {
|
|
9
|
+
layers: LayerItem[];
|
|
10
|
+
onClose?: () => void;
|
|
11
|
+
onSelectLayer?: (id: string) => void;
|
|
12
|
+
onToggleVisibility?: (id: string) => void;
|
|
13
|
+
onToggleLock?: (id: string) => void;
|
|
14
|
+
onDeleteLayer?: (id: string) => void;
|
|
15
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Canvas } from 'fabric';
|
|
2
|
+
interface IconEffectsPanelProps {
|
|
3
|
+
fabricRef: React.MutableRefObject<Canvas | null>;
|
|
4
|
+
onClose?: () => void;
|
|
5
|
+
}
|
|
6
|
+
export default function ShapeEffectsPanel({ fabricRef, onClose, }: IconEffectsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Canvas } from 'fabric';
|
|
2
|
+
export interface EffectsPanelProps {
|
|
3
|
+
fabricRef: React.MutableRefObject<Canvas | null>;
|
|
4
|
+
onClose?: () => void;
|
|
5
|
+
}
|
|
6
|
+
export default function EffectsPanel({ fabricRef, onClose }: EffectsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { VideoFabricObject } from '../../../lib/types/fabric.types';
|
|
2
|
+
interface VideoTrimPanelProps {
|
|
3
|
+
video: VideoFabricObject;
|
|
4
|
+
onTrimChange: (start: number, end: number) => void;
|
|
5
|
+
}
|
|
6
|
+
export default function VideoTrimPanel({ video, onTrimChange }: VideoTrimPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
import { HSVColor } from '../../../lib/types/color.types';
|
|
3
|
+
interface Props {
|
|
4
|
+
hsv: HSVColor;
|
|
5
|
+
refEl: RefObject<HTMLDivElement | null>;
|
|
6
|
+
onChange: (hsv: HSVColor) => void;
|
|
7
|
+
}
|
|
8
|
+
export default function HueSlider({ hsv, refEl, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function LockButton(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function OpacityPicker(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function PositionPicker(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function RemoveButton(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function RotateButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ShadowControlProps {
|
|
2
|
+
label: string;
|
|
3
|
+
value: number;
|
|
4
|
+
min: number;
|
|
5
|
+
max: number;
|
|
6
|
+
onChange: (v: number) => void;
|
|
7
|
+
onCommit?: () => void;
|
|
8
|
+
}
|
|
9
|
+
export declare function ShadowControl({ label, value, min, max, onCommit, onChange, }: ShadowControlProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function StaticTour(): null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function UngroupButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function ZoomControls(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
export declare const editableTemplates: ({
|
|
2
|
+
preview: string;
|
|
3
|
+
json: {
|
|
4
|
+
version: string;
|
|
5
|
+
objects: ({
|
|
6
|
+
type: string;
|
|
7
|
+
left: number;
|
|
8
|
+
top: number;
|
|
9
|
+
width: number;
|
|
10
|
+
height: number;
|
|
11
|
+
fill: string;
|
|
12
|
+
text?: undefined;
|
|
13
|
+
fontSize?: undefined;
|
|
14
|
+
fontFamily?: undefined;
|
|
15
|
+
fontWeight?: undefined;
|
|
16
|
+
textAlign?: undefined;
|
|
17
|
+
src?: undefined;
|
|
18
|
+
scaleX?: undefined;
|
|
19
|
+
scaleY?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
type: string;
|
|
22
|
+
text: string;
|
|
23
|
+
left: number;
|
|
24
|
+
top: number;
|
|
25
|
+
fontSize: number;
|
|
26
|
+
fontFamily: string;
|
|
27
|
+
fontWeight: string;
|
|
28
|
+
fill: string;
|
|
29
|
+
width: number;
|
|
30
|
+
textAlign: string;
|
|
31
|
+
height?: undefined;
|
|
32
|
+
src?: undefined;
|
|
33
|
+
scaleX?: undefined;
|
|
34
|
+
scaleY?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
type: string;
|
|
37
|
+
src: string;
|
|
38
|
+
left: number;
|
|
39
|
+
top: number;
|
|
40
|
+
scaleX: number;
|
|
41
|
+
scaleY: number;
|
|
42
|
+
width?: undefined;
|
|
43
|
+
height?: undefined;
|
|
44
|
+
fill?: undefined;
|
|
45
|
+
text?: undefined;
|
|
46
|
+
fontSize?: undefined;
|
|
47
|
+
fontFamily?: undefined;
|
|
48
|
+
fontWeight?: undefined;
|
|
49
|
+
textAlign?: undefined;
|
|
50
|
+
})[];
|
|
51
|
+
};
|
|
52
|
+
} | {
|
|
53
|
+
preview: string;
|
|
54
|
+
json: {
|
|
55
|
+
version: string;
|
|
56
|
+
objects: ({
|
|
57
|
+
type: string;
|
|
58
|
+
left: number;
|
|
59
|
+
top: number;
|
|
60
|
+
width: number;
|
|
61
|
+
height: number;
|
|
62
|
+
fill: string;
|
|
63
|
+
selectable: boolean;
|
|
64
|
+
evented: boolean;
|
|
65
|
+
text?: undefined;
|
|
66
|
+
originX?: undefined;
|
|
67
|
+
textAlign?: undefined;
|
|
68
|
+
fontSize?: undefined;
|
|
69
|
+
fontFamily?: undefined;
|
|
70
|
+
editable?: undefined;
|
|
71
|
+
fontWeight?: undefined;
|
|
72
|
+
lineHeight?: undefined;
|
|
73
|
+
} | {
|
|
74
|
+
type: string;
|
|
75
|
+
text: string;
|
|
76
|
+
left: number;
|
|
77
|
+
top: number;
|
|
78
|
+
width: number;
|
|
79
|
+
originX: string;
|
|
80
|
+
textAlign: string;
|
|
81
|
+
fontSize: number;
|
|
82
|
+
fontFamily: string;
|
|
83
|
+
fill: string;
|
|
84
|
+
editable: boolean;
|
|
85
|
+
height?: undefined;
|
|
86
|
+
selectable?: undefined;
|
|
87
|
+
evented?: undefined;
|
|
88
|
+
fontWeight?: undefined;
|
|
89
|
+
lineHeight?: undefined;
|
|
90
|
+
} | {
|
|
91
|
+
type: string;
|
|
92
|
+
text: string;
|
|
93
|
+
left: number;
|
|
94
|
+
top: number;
|
|
95
|
+
width: number;
|
|
96
|
+
originX: string;
|
|
97
|
+
textAlign: string;
|
|
98
|
+
fontSize: number;
|
|
99
|
+
fontFamily: string;
|
|
100
|
+
fontWeight: string;
|
|
101
|
+
fill: string;
|
|
102
|
+
editable: boolean;
|
|
103
|
+
height?: undefined;
|
|
104
|
+
selectable?: undefined;
|
|
105
|
+
evented?: undefined;
|
|
106
|
+
lineHeight?: undefined;
|
|
107
|
+
} | {
|
|
108
|
+
type: string;
|
|
109
|
+
text: string;
|
|
110
|
+
left: number;
|
|
111
|
+
top: number;
|
|
112
|
+
width: number;
|
|
113
|
+
originX: string;
|
|
114
|
+
textAlign: string;
|
|
115
|
+
fontSize: number;
|
|
116
|
+
fontFamily: string;
|
|
117
|
+
fill: string;
|
|
118
|
+
lineHeight: number;
|
|
119
|
+
editable: boolean;
|
|
120
|
+
height?: undefined;
|
|
121
|
+
selectable?: undefined;
|
|
122
|
+
evented?: undefined;
|
|
123
|
+
fontWeight?: undefined;
|
|
124
|
+
})[];
|
|
125
|
+
};
|
|
126
|
+
})[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function AlignCenterIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function AlignLeftIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function AlignRightIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowBottomLeft(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowBottomRight(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowDown(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowLeft(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowRight(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowTopLeft(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowTopRight(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowUp(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BackgroundIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ColorPickerIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function CopyIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function CropIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function DeleteIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DesignsIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function DisableIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function DownloadIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function DropboxIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function EffectIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function EyeIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FacebookIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FlickrIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FlipHorizontalIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FlipIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FlipVerticalIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function GoogleDriveIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function GooglePhotoIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function GroupIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function HandIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function HelpIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IconsIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function InstagramIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LayersIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function LockIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function MenuIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function NotFoundIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function OpacityIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PexelsIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PhotosIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PixabayIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PointerIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const QRCodeIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const QuotesIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function RedoIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function RotateIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ShapesIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SizeIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function StrikethroughIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function StyleIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TemplatesIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function UndoIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function UngroupIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function UnlockIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const UploadIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function UsersIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ZoomIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function Home(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function BackgroundPanel(): import("react/jsx-runtime").JSX.Element;
|