@aurigma/design-atoms-interfaces
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -1,5 +0,6 @@ | ||
import { AlignTargetType, AlignType } from "../../Types"; | ||
import { AlignTargetType, AlignType, IQueryOptions } from "../../Types"; | ||
export interface IAlignItemsCommandArgs<TPrintArea, TSafetyLine, TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
align: AlignType; | ||
@@ -6,0 +7,0 @@ target: AlignTargetType; |
@@ -0,5 +1,7 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IBringItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
position: string; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IChangeBarcodeFormatCommandArgs<TItem, TBarcodeFormat> { | ||
@@ -5,3 +6,4 @@ barcodeFormat: TBarcodeFormat; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
ignorePermissions?: boolean; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IChangeColumnCountCommandArgs<TItem> { | ||
@@ -5,2 +6,3 @@ value: number; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IChangeLayoutCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
sourceWidth: number; | ||
sourceHeight: number; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface ICloneItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IConvertGroupIntoLayoutArgs<TGroupItem> { | ||
items: TGroupItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IConvertLayoutIntoGroupArgs<TLayoutItem> { | ||
items: TLayoutItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IDeleteItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
force?: boolean; | ||
@@ -5,0 +7,0 @@ autoUngroup?: boolean; |
@@ -1,6 +0,7 @@ | ||
import { DistributeType } from "../../Types"; | ||
import { DistributeType, IQueryOptions } from "../../Types"; | ||
export interface IDistributeItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
distribute: DistributeType; | ||
} |
import { IApplyParams } from "./IApplyParams"; | ||
import { IItemData } from "../../Types"; | ||
import { IItemData, IQueryOptions } from "../../Types"; | ||
export interface IEditItemsCommandArgs<TItem> { | ||
@@ -7,2 +7,3 @@ itemData: IItemData; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
type?: { | ||
@@ -9,0 +10,0 @@ new (): TItem; |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IGroupItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
asLayoutItem?: boolean; | ||
name?: string; | ||
} |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface INewTranslateItemsCommandArgs<TItem, TPointF> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
delta: TPointF; | ||
finished?: boolean; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IPlaceholderContentResetCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -0,5 +1,7 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IPlaceholderContentRotateCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
clockwise?: boolean; | ||
} |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IPlaceholderContentScaleCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
scale: number; | ||
forceQualityChangeInfoBar?: boolean; | ||
} |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IPlaceItemsToAreaCommandArgs<TItem, TRectangleF> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
rect: TRectangleF; | ||
itemsRect?: TRectangleF; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IResizeItemsCommandArgs<TItem, TPointF> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
scaleX: number; | ||
@@ -5,0 +7,0 @@ scaleY: number; |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IRotateItemsCommandArgs<TItem, TPointF> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
angle: number; | ||
@@ -5,0 +7,0 @@ origin: TPointF; |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface ITransformItemsCommandArgs<TItem, TMatrix> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
matrix: TMatrix; | ||
@@ -5,0 +7,0 @@ finished?: boolean; |
@@ -0,6 +1,8 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface ITranslateItemCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
translateX: number | string; | ||
translateY: number | string; | ||
} |
@@ -0,5 +1,7 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IUngroupItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
keepNestedGroups?: boolean; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
import { MultiSelectMode } from "./MultiSelectMode"; | ||
@@ -5,3 +6,4 @@ export interface ISelectItemsCommandArgs<TItem> { | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
multiSelectMode?: MultiSelectMode; | ||
} |
@@ -0,4 +1,6 @@ | ||
import { IQueryOptions } from "../../Types"; | ||
export interface IZoomToItemsCommandArgs<TItem> { | ||
items?: TItem[]; | ||
query?: string; | ||
queryOptions?: IQueryOptions; | ||
} |
@@ -1,1 +0,1 @@ | ||
{"name":"@aurigma/design-atoms-interfaces","version":"1.0.1","description":"","main":"index.js","author":"Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)","license":"SEE LICENSE IN License.md","keywords":["customer's canvas","web-to-print","image manipulation","design","personalization","web-to-print editor","design editor"]} | ||
{"name":"@aurigma/design-atoms-interfaces","version":"1.0.2","description":"","main":"index.js","author":"Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)","license":"SEE LICENSE IN License.md","keywords":["customer's canvas","web-to-print","image manipulation","design","personalization","web-to-print editor","design editor"]} |
export interface IQueryOptions { | ||
useWholeProduct?: boolean; | ||
useActiveContainer?: boolean; | ||
includeMockups?: boolean; | ||
@@ -5,0 +3,0 @@ flatGroupItems?: boolean; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94326
2399