@elementor/editor-props 4.2.0-877 → 4.2.0-879
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/index.d.mts +104 -1
- package/dist/index.d.ts +104 -1
- package/dist/index.js +120 -103
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +119 -103
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/prop-types/grid-track-size.ts +20 -0
- package/src/prop-types/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1617,6 +1617,109 @@ declare const sizePropTypeUtil: {
|
|
|
1617
1617
|
};
|
|
1618
1618
|
type SizePropValue = z.infer<typeof sizePropTypeUtil.schema>;
|
|
1619
1619
|
|
|
1620
|
+
declare const gridTrackSizePropTypeUtil: {
|
|
1621
|
+
extract: (prop: unknown) => {
|
|
1622
|
+
size: number | "";
|
|
1623
|
+
unit: "fr";
|
|
1624
|
+
} | {
|
|
1625
|
+
size: string;
|
|
1626
|
+
unit: "custom";
|
|
1627
|
+
} | null;
|
|
1628
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"grid-track-size", {
|
|
1629
|
+
size: number | "";
|
|
1630
|
+
unit: "fr";
|
|
1631
|
+
} | {
|
|
1632
|
+
size: string;
|
|
1633
|
+
unit: "custom";
|
|
1634
|
+
}>;
|
|
1635
|
+
create: {
|
|
1636
|
+
(value: {
|
|
1637
|
+
size: number | "";
|
|
1638
|
+
unit: "fr";
|
|
1639
|
+
} | {
|
|
1640
|
+
size: string;
|
|
1641
|
+
unit: "custom";
|
|
1642
|
+
}): TransformablePropValue$1<"grid-track-size", {
|
|
1643
|
+
size: number | "";
|
|
1644
|
+
unit: "fr";
|
|
1645
|
+
} | {
|
|
1646
|
+
size: string;
|
|
1647
|
+
unit: "custom";
|
|
1648
|
+
}>;
|
|
1649
|
+
(value: {
|
|
1650
|
+
size: number | "";
|
|
1651
|
+
unit: "fr";
|
|
1652
|
+
} | {
|
|
1653
|
+
size: string;
|
|
1654
|
+
unit: "custom";
|
|
1655
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"grid-track-size", {
|
|
1656
|
+
size: number | "";
|
|
1657
|
+
unit: "fr";
|
|
1658
|
+
} | {
|
|
1659
|
+
size: string;
|
|
1660
|
+
unit: "custom";
|
|
1661
|
+
}>;
|
|
1662
|
+
(value: (prev?: {
|
|
1663
|
+
size: number | "";
|
|
1664
|
+
unit: "fr";
|
|
1665
|
+
} | {
|
|
1666
|
+
size: string;
|
|
1667
|
+
unit: "custom";
|
|
1668
|
+
} | undefined) => {
|
|
1669
|
+
size: number | "";
|
|
1670
|
+
unit: "fr";
|
|
1671
|
+
} | {
|
|
1672
|
+
size: string;
|
|
1673
|
+
unit: "custom";
|
|
1674
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"grid-track-size", {
|
|
1675
|
+
size: number | "";
|
|
1676
|
+
unit: "fr";
|
|
1677
|
+
} | {
|
|
1678
|
+
size: string;
|
|
1679
|
+
unit: "custom";
|
|
1680
|
+
}>;
|
|
1681
|
+
};
|
|
1682
|
+
schema: z.ZodObject<{
|
|
1683
|
+
$$type: z.ZodLiteral<"grid-track-size">;
|
|
1684
|
+
value: z.ZodType<{
|
|
1685
|
+
size: number | "";
|
|
1686
|
+
unit: "fr";
|
|
1687
|
+
} | {
|
|
1688
|
+
size: string;
|
|
1689
|
+
unit: "custom";
|
|
1690
|
+
}, z.ZodTypeDef, {
|
|
1691
|
+
size: number | "";
|
|
1692
|
+
unit: "fr";
|
|
1693
|
+
} | {
|
|
1694
|
+
size: string;
|
|
1695
|
+
unit: "custom";
|
|
1696
|
+
}>;
|
|
1697
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
+
}, "strict", z.ZodTypeAny, {
|
|
1699
|
+
$$type: "grid-track-size";
|
|
1700
|
+
value: {
|
|
1701
|
+
size: number | "";
|
|
1702
|
+
unit: "fr";
|
|
1703
|
+
} | {
|
|
1704
|
+
size: string;
|
|
1705
|
+
unit: "custom";
|
|
1706
|
+
};
|
|
1707
|
+
disabled?: boolean | undefined;
|
|
1708
|
+
}, {
|
|
1709
|
+
$$type: "grid-track-size";
|
|
1710
|
+
value: {
|
|
1711
|
+
size: number | "";
|
|
1712
|
+
unit: "fr";
|
|
1713
|
+
} | {
|
|
1714
|
+
size: string;
|
|
1715
|
+
unit: "custom";
|
|
1716
|
+
};
|
|
1717
|
+
disabled?: boolean | undefined;
|
|
1718
|
+
}>;
|
|
1719
|
+
key: "grid-track-size";
|
|
1720
|
+
};
|
|
1721
|
+
type GridTrackSizePropValue = z.infer<typeof gridTrackSizePropTypeUtil.schema>;
|
|
1722
|
+
|
|
1620
1723
|
declare const spanPropTypeUtil: {
|
|
1621
1724
|
extract: (prop: unknown) => string | null;
|
|
1622
1725
|
isValid: (prop: unknown) => prop is TransformablePropValue$1<"span", string | null>;
|
|
@@ -7642,4 +7745,4 @@ declare const Schema: {
|
|
|
7642
7745
|
removeIntention: typeof removeIntention;
|
|
7643
7746
|
};
|
|
7644
7747
|
|
|
7645
|
-
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ChildElement, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, type DateRangePropValue, type DateStringPropValue, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, type EmailsPropValue, type ExtractValueOptions, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type HtmlPropValue, type HtmlV2PropValue, type HtmlV2Value, type HtmlV3PropValue, type HtmlV3Value, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type NumberRangePropValue, type ObjectPropType, type ObjectPropValue, type OverridableTransformable, type ParseResult, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryFilterKeyConfig, type QueryFilterPropValue, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type SpanPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type SvgSrcPropValue, type TimeRangePropValue, type TimeStringPropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, type VideoAttachmentIdPropValue, type VideoSrcPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dateRangePropTypeUtil, dateStringPropTypeUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, emailsPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, htmlV3PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isOverridable, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, numberRangePropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryFilterArrayPropTypeUtil, queryFilterPropTypeUtil, queryPropTypeUtil, rewrapOverridableValue, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, spanPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, timeRangePropTypeUtil, timeStringPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };
|
|
7748
|
+
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ChildElement, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, type DateRangePropValue, type DateStringPropValue, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, type EmailsPropValue, type ExtractValueOptions, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type GridTrackSizePropValue, type HtmlPropValue, type HtmlV2PropValue, type HtmlV2Value, type HtmlV3PropValue, type HtmlV3Value, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type NumberRangePropValue, type ObjectPropType, type ObjectPropValue, type OverridableTransformable, type ParseResult, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryFilterKeyConfig, type QueryFilterPropValue, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type SpanPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type SvgSrcPropValue, type TimeRangePropValue, type TimeStringPropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, type VideoAttachmentIdPropValue, type VideoSrcPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dateRangePropTypeUtil, dateStringPropTypeUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, emailsPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, gridTrackSizePropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, htmlV3PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isOverridable, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, numberRangePropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryFilterArrayPropTypeUtil, queryFilterPropTypeUtil, queryPropTypeUtil, rewrapOverridableValue, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, spanPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, timeRangePropTypeUtil, timeStringPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };
|
package/dist/index.d.ts
CHANGED
|
@@ -1617,6 +1617,109 @@ declare const sizePropTypeUtil: {
|
|
|
1617
1617
|
};
|
|
1618
1618
|
type SizePropValue = z.infer<typeof sizePropTypeUtil.schema>;
|
|
1619
1619
|
|
|
1620
|
+
declare const gridTrackSizePropTypeUtil: {
|
|
1621
|
+
extract: (prop: unknown) => {
|
|
1622
|
+
size: number | "";
|
|
1623
|
+
unit: "fr";
|
|
1624
|
+
} | {
|
|
1625
|
+
size: string;
|
|
1626
|
+
unit: "custom";
|
|
1627
|
+
} | null;
|
|
1628
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"grid-track-size", {
|
|
1629
|
+
size: number | "";
|
|
1630
|
+
unit: "fr";
|
|
1631
|
+
} | {
|
|
1632
|
+
size: string;
|
|
1633
|
+
unit: "custom";
|
|
1634
|
+
}>;
|
|
1635
|
+
create: {
|
|
1636
|
+
(value: {
|
|
1637
|
+
size: number | "";
|
|
1638
|
+
unit: "fr";
|
|
1639
|
+
} | {
|
|
1640
|
+
size: string;
|
|
1641
|
+
unit: "custom";
|
|
1642
|
+
}): TransformablePropValue$1<"grid-track-size", {
|
|
1643
|
+
size: number | "";
|
|
1644
|
+
unit: "fr";
|
|
1645
|
+
} | {
|
|
1646
|
+
size: string;
|
|
1647
|
+
unit: "custom";
|
|
1648
|
+
}>;
|
|
1649
|
+
(value: {
|
|
1650
|
+
size: number | "";
|
|
1651
|
+
unit: "fr";
|
|
1652
|
+
} | {
|
|
1653
|
+
size: string;
|
|
1654
|
+
unit: "custom";
|
|
1655
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"grid-track-size", {
|
|
1656
|
+
size: number | "";
|
|
1657
|
+
unit: "fr";
|
|
1658
|
+
} | {
|
|
1659
|
+
size: string;
|
|
1660
|
+
unit: "custom";
|
|
1661
|
+
}>;
|
|
1662
|
+
(value: (prev?: {
|
|
1663
|
+
size: number | "";
|
|
1664
|
+
unit: "fr";
|
|
1665
|
+
} | {
|
|
1666
|
+
size: string;
|
|
1667
|
+
unit: "custom";
|
|
1668
|
+
} | undefined) => {
|
|
1669
|
+
size: number | "";
|
|
1670
|
+
unit: "fr";
|
|
1671
|
+
} | {
|
|
1672
|
+
size: string;
|
|
1673
|
+
unit: "custom";
|
|
1674
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"grid-track-size", {
|
|
1675
|
+
size: number | "";
|
|
1676
|
+
unit: "fr";
|
|
1677
|
+
} | {
|
|
1678
|
+
size: string;
|
|
1679
|
+
unit: "custom";
|
|
1680
|
+
}>;
|
|
1681
|
+
};
|
|
1682
|
+
schema: z.ZodObject<{
|
|
1683
|
+
$$type: z.ZodLiteral<"grid-track-size">;
|
|
1684
|
+
value: z.ZodType<{
|
|
1685
|
+
size: number | "";
|
|
1686
|
+
unit: "fr";
|
|
1687
|
+
} | {
|
|
1688
|
+
size: string;
|
|
1689
|
+
unit: "custom";
|
|
1690
|
+
}, z.ZodTypeDef, {
|
|
1691
|
+
size: number | "";
|
|
1692
|
+
unit: "fr";
|
|
1693
|
+
} | {
|
|
1694
|
+
size: string;
|
|
1695
|
+
unit: "custom";
|
|
1696
|
+
}>;
|
|
1697
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
+
}, "strict", z.ZodTypeAny, {
|
|
1699
|
+
$$type: "grid-track-size";
|
|
1700
|
+
value: {
|
|
1701
|
+
size: number | "";
|
|
1702
|
+
unit: "fr";
|
|
1703
|
+
} | {
|
|
1704
|
+
size: string;
|
|
1705
|
+
unit: "custom";
|
|
1706
|
+
};
|
|
1707
|
+
disabled?: boolean | undefined;
|
|
1708
|
+
}, {
|
|
1709
|
+
$$type: "grid-track-size";
|
|
1710
|
+
value: {
|
|
1711
|
+
size: number | "";
|
|
1712
|
+
unit: "fr";
|
|
1713
|
+
} | {
|
|
1714
|
+
size: string;
|
|
1715
|
+
unit: "custom";
|
|
1716
|
+
};
|
|
1717
|
+
disabled?: boolean | undefined;
|
|
1718
|
+
}>;
|
|
1719
|
+
key: "grid-track-size";
|
|
1720
|
+
};
|
|
1721
|
+
type GridTrackSizePropValue = z.infer<typeof gridTrackSizePropTypeUtil.schema>;
|
|
1722
|
+
|
|
1620
1723
|
declare const spanPropTypeUtil: {
|
|
1621
1724
|
extract: (prop: unknown) => string | null;
|
|
1622
1725
|
isValid: (prop: unknown) => prop is TransformablePropValue$1<"span", string | null>;
|
|
@@ -7642,4 +7745,4 @@ declare const Schema: {
|
|
|
7642
7745
|
removeIntention: typeof removeIntention;
|
|
7643
7746
|
};
|
|
7644
7747
|
|
|
7645
|
-
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ChildElement, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, type DateRangePropValue, type DateStringPropValue, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, type EmailsPropValue, type ExtractValueOptions, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type HtmlPropValue, type HtmlV2PropValue, type HtmlV2Value, type HtmlV3PropValue, type HtmlV3Value, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type NumberRangePropValue, type ObjectPropType, type ObjectPropValue, type OverridableTransformable, type ParseResult, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryFilterKeyConfig, type QueryFilterPropValue, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type SpanPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type SvgSrcPropValue, type TimeRangePropValue, type TimeStringPropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, type VideoAttachmentIdPropValue, type VideoSrcPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dateRangePropTypeUtil, dateStringPropTypeUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, emailsPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, htmlV3PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isOverridable, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, numberRangePropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryFilterArrayPropTypeUtil, queryFilterPropTypeUtil, queryPropTypeUtil, rewrapOverridableValue, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, spanPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, timeRangePropTypeUtil, timeStringPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };
|
|
7748
|
+
export { type AnyTransformable, type ArrayPropType, type ArrayPropValue, type BackdropFilterItemPropValue, type BackdropFilterPropValue, type BackgroundColorOverlayPropValue, type BackgroundGradientOverlayPropValue, type BackgroundImageOverlayPropValue, type BackgroundImagePositionOffsetPropValue, type BackgroundImageSizeScalePropValue, type BackgroundOverlayImagePropType, type BackgroundOverlayItemPropValue, type BackgroundOverlayPropType, type BackgroundOverlayPropValue, type BackgroundPropValue, type BooleanPropValue, type BorderRadiusPropValue, type BorderWidthPropValue, type BoxShadowPropValue, CLASSES_PROP_KEY, type ChildElement, type ClassesPropValue, type ColorPropValue, type ColorStopPropValue, type CreateOptions, type DateRangePropValue, type DateStringPropValue, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, type EmailsPropValue, type ExtractValueOptions, type FilterItemPropValue, type FilterPropValue, type FlexPropValue, type GradientColorStopPropValue, type GridTrackSizePropValue, type HtmlPropValue, type HtmlV2PropValue, type HtmlV2Value, type HtmlV3PropValue, type HtmlV3Value, type ImageAttachmentIdPropValue, type ImagePropValue, type ImageSrcPropValue, type JsonSchema7, type KeyValuePropValue, type LayoutDirectionPropValue, type LinkPropValue, type MoveTransformPropValue, type NumberPropValue, type NumberRangePropValue, type ObjectPropType, type ObjectPropValue, type OverridableTransformable, type ParseResult, type PerspectiveOriginPropValue, type PlainPropType, type PlainPropValue, type PositionPropTypeValue, type PropKey, type PropType, type PropTypeKey, type PropTypeUtil, type PropValue, type Props, type PropsSchema, type QueryFilterKeyConfig, type QueryFilterPropValue, type QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type SpanPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type SvgSrcPropValue, type TimeRangePropValue, type TimeStringPropValue, type TransformFunctionsItemPropValue, type TransformFunctionsPropValue, type TransformOriginPropValue, type TransformPropValue, type TransformablePropType, type TransformablePropValue$1 as TransformablePropValue, type UnionPropType, type UrlPropValue, type VideoAttachmentIdPropValue, type VideoSrcPropValue, backdropFilterPropTypeUtil, backgroundColorOverlayPropTypeUtil, backgroundGradientOverlayPropTypeUtil, backgroundImageOverlayPropTypeUtil, backgroundImagePositionOffsetPropTypeUtil, backgroundImageSizeScalePropTypeUtil, backgroundOverlayItem, backgroundOverlayPropTypeUtil, backgroundPropTypeUtil, blurFilterPropTypeUtil, booleanPropTypeUtil, borderRadiusPropTypeUtil, borderWidthPropTypeUtil, boxShadowPropTypeUtil, classesPropTypeUtil, colorPropTypeUtil, colorStopPropTypeUtil, colorToneFilterPropTypeUtil, createArrayPropUtils, createPropUtils, cssFilterFunctionPropUtil, dateRangePropTypeUtil, dateStringPropTypeUtil, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, emailsPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, gridTrackSizePropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, htmlV3PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isOverridable, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, numberRangePropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryFilterArrayPropTypeUtil, queryFilterPropTypeUtil, queryPropTypeUtil, rewrapOverridableValue, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, spanPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, timeRangePropTypeUtil, timeStringPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };
|