@threedddplus/logoeditor 0.0.113 → 0.0.114-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/dist/components/Rightmenu/Layers.d.ts +7 -0
- package/dist/components/Rightmenu/Properties.d.ts +12 -0
- package/dist/components/Rightmenu/Rightmenu1.d.ts +4 -0
- package/dist/components/Rightmenu/TextProperties.d.ts +22 -0
- package/dist/components/Rightmenu/constants.d.ts +16 -0
- package/dist/components/Rightmenu/icons.d.ts +8 -0
- package/dist/components/Rightmenu/index.d.ts +1 -1
- package/dist/components/icon/UpIcon.d.ts +2 -0
- package/dist/logoeditor.cjs.development.js +1655 -1726
- package/dist/logoeditor.cjs.development.js.map +1 -1
- package/dist/logoeditor.cjs.production.min.js +1 -1
- package/dist/logoeditor.cjs.production.min.js.map +1 -1
- package/dist/logoeditor.esm.js +1655 -1727
- package/dist/logoeditor.esm.js.map +1 -1
- package/dist/store/fabric/index.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export declare const Properties: ({ textSelected, activeTab, canvas, setIsNextClicked, onSave, conflictColors, isNextClicked, setDisplayPallet, setPosition, }: {
|
3
|
+
textSelected: any;
|
4
|
+
activeTab: any;
|
5
|
+
canvas: any;
|
6
|
+
setIsNextClicked: any;
|
7
|
+
onSave: any;
|
8
|
+
conflictColors: any;
|
9
|
+
isNextClicked: any;
|
10
|
+
setDisplayPallet: any;
|
11
|
+
setPosition: any;
|
12
|
+
}) => React.JSX.Element;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export declare const TextProperties: ({ textInfo, onTextChange, textSelected, fontChange, textStyle, activeSelection, setDisplayPallet, setPosition, textColorChange, fontStyle, textAlignDisplay, activeButton, textAlignHandler, textOutlineHandler, strokeColorChange, textSpacingHandler, textShapeChange, shapeSizeVal, textShapeSizeHandler, }: {
|
3
|
+
textInfo: any;
|
4
|
+
onTextChange: any;
|
5
|
+
textSelected: any;
|
6
|
+
fontChange: any;
|
7
|
+
textStyle: any;
|
8
|
+
activeSelection: any;
|
9
|
+
setDisplayPallet: any;
|
10
|
+
setPosition: any;
|
11
|
+
textColorChange: any;
|
12
|
+
fontStyle: any;
|
13
|
+
textAlignDisplay: any;
|
14
|
+
activeButton: any;
|
15
|
+
textAlignHandler: any;
|
16
|
+
textOutlineHandler: any;
|
17
|
+
strokeColorChange: any;
|
18
|
+
textSpacingHandler: any;
|
19
|
+
textShapeChange: any;
|
20
|
+
shapeSizeVal: any;
|
21
|
+
textShapeSizeHandler: any;
|
22
|
+
}) => React.JSX.Element;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export declare const fontFamilies: {
|
2
|
+
name: string;
|
3
|
+
src: string;
|
4
|
+
}[];
|
5
|
+
export declare const textShapes: {
|
6
|
+
name: string;
|
7
|
+
src: string;
|
8
|
+
}[];
|
9
|
+
export declare const tabs: {
|
10
|
+
id: number;
|
11
|
+
label: string;
|
12
|
+
}[];
|
13
|
+
export declare const warpTypes: {
|
14
|
+
[key: string]: string;
|
15
|
+
};
|
16
|
+
export declare const textProperties: string[];
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export declare const UpIcon: ({ disabled }: {
|
3
|
+
disabled: any;
|
4
|
+
}) => React.JSX.Element;
|
5
|
+
export declare const DownIcon: ({ disabled }: {
|
6
|
+
disabled: any;
|
7
|
+
}) => React.JSX.Element;
|
8
|
+
export declare const DeleteIcon: () => React.JSX.Element;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from './
|
1
|
+
export * from './Rightmenu1';
|
2
2
|
export * from './imageEdit';
|