@elementor/editor-props 4.1.0 → 4.2.0-839

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.ts CHANGED
@@ -101,7 +101,7 @@ type JsonSchema7 = {
101
101
  declare function jsonSchemaToPropType(schema: JsonSchema7, key?: string): PropType;
102
102
 
103
103
  declare function propTypeToJsonSchema(propType: PropType): JsonSchema7;
104
- declare function isPropKeyConfigurable(propKey: string): boolean;
104
+ declare function isPropKeyConfigurable(propKey: string, propType?: PropType): boolean;
105
105
  declare function configurableKeys(schema: PropsSchema): string[];
106
106
  declare function enrichWithIntention(jsonSchema: JsonSchema7, text?: string): JsonSchema7;
107
107
  declare function removeIntention(jsonSchema: JsonSchema7): JsonSchema7;
@@ -746,6 +746,7 @@ declare const imageSrcPropTypeUtil: {
746
746
  } | {
747
747
  id: null;
748
748
  url?: any;
749
+ alt?: any;
749
750
  } | null;
750
751
  isValid: (prop: unknown) => prop is TransformablePropValue$1<"image-src", {
751
752
  url: null;
@@ -753,6 +754,7 @@ declare const imageSrcPropTypeUtil: {
753
754
  } | {
754
755
  id: null;
755
756
  url?: any;
757
+ alt?: any;
756
758
  }>;
757
759
  create: {
758
760
  (value: {
@@ -761,12 +763,14 @@ declare const imageSrcPropTypeUtil: {
761
763
  } | {
762
764
  id: null;
763
765
  url?: any;
766
+ alt?: any;
764
767
  }): TransformablePropValue$1<"image-src", {
765
768
  url: null;
766
769
  id?: any;
767
770
  } | {
768
771
  id: null;
769
772
  url?: any;
773
+ alt?: any;
770
774
  }>;
771
775
  (value: {
772
776
  url: null;
@@ -774,12 +778,14 @@ declare const imageSrcPropTypeUtil: {
774
778
  } | {
775
779
  id: null;
776
780
  url?: any;
781
+ alt?: any;
777
782
  }, createOptions?: CreateOptions): TransformablePropValue$1<"image-src", {
778
783
  url: null;
779
784
  id?: any;
780
785
  } | {
781
786
  id: null;
782
787
  url?: any;
788
+ alt?: any;
783
789
  }>;
784
790
  (value: (prev?: {
785
791
  url: null;
@@ -787,18 +793,21 @@ declare const imageSrcPropTypeUtil: {
787
793
  } | {
788
794
  id: null;
789
795
  url?: any;
796
+ alt?: any;
790
797
  } | undefined) => {
791
798
  url: null;
792
799
  id?: any;
793
800
  } | {
794
801
  id: null;
795
802
  url?: any;
803
+ alt?: any;
796
804
  }, createOptions: CreateOptions): TransformablePropValue$1<"image-src", {
797
805
  url: null;
798
806
  id?: any;
799
807
  } | {
800
808
  id: null;
801
809
  url?: any;
810
+ alt?: any;
802
811
  }>;
803
812
  };
804
813
  schema: z.ZodObject<{
@@ -809,12 +818,14 @@ declare const imageSrcPropTypeUtil: {
809
818
  } | {
810
819
  id: null;
811
820
  url?: any;
821
+ alt?: any;
812
822
  }, z.ZodTypeDef, {
813
823
  url: null;
814
824
  id?: any;
815
825
  } | {
816
826
  id: null;
817
827
  url?: any;
828
+ alt?: any;
818
829
  }>;
819
830
  disabled: z.ZodOptional<z.ZodBoolean>;
820
831
  }, "strict", z.ZodTypeAny, {
@@ -825,6 +836,7 @@ declare const imageSrcPropTypeUtil: {
825
836
  } | {
826
837
  id: null;
827
838
  url?: any;
839
+ alt?: any;
828
840
  };
829
841
  disabled?: boolean | undefined;
830
842
  }, {
@@ -835,6 +847,7 @@ declare const imageSrcPropTypeUtil: {
835
847
  } | {
836
848
  id: null;
837
849
  url?: any;
850
+ alt?: any;
838
851
  };
839
852
  disabled?: boolean | undefined;
840
853
  }>;
@@ -1591,6 +1604,31 @@ declare const sizePropTypeUtil: {
1591
1604
  };
1592
1605
  type SizePropValue = z.infer<typeof sizePropTypeUtil.schema>;
1593
1606
 
1607
+ declare const spanPropTypeUtil: {
1608
+ extract: (prop: unknown) => number | null;
1609
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"span", number | null>;
1610
+ create: {
1611
+ (value: number | null): TransformablePropValue$1<"span", number | null>;
1612
+ (value: number | null, createOptions?: CreateOptions): TransformablePropValue$1<"span", number | null>;
1613
+ (value: (prev?: number | null | undefined) => number | null, createOptions: CreateOptions): TransformablePropValue$1<"span", number | null>;
1614
+ };
1615
+ schema: z.ZodObject<{
1616
+ $$type: z.ZodLiteral<"span">;
1617
+ value: z.ZodType<number | null, z.ZodTypeDef, number | null>;
1618
+ disabled: z.ZodOptional<z.ZodBoolean>;
1619
+ }, "strict", z.ZodTypeAny, {
1620
+ $$type: "span";
1621
+ value: number | null;
1622
+ disabled?: boolean | undefined;
1623
+ }, {
1624
+ $$type: "span";
1625
+ value: number | null;
1626
+ disabled?: boolean | undefined;
1627
+ }>;
1628
+ key: "span";
1629
+ };
1630
+ type SpanPropValue = z.infer<typeof spanPropTypeUtil.schema>;
1631
+
1594
1632
  declare const stringPropTypeUtil: {
1595
1633
  extract: (prop: unknown) => string | null;
1596
1634
  isValid: (prop: unknown) => prop is TransformablePropValue$1<"string", string | null>;
@@ -2988,6 +3026,70 @@ declare const keyValuePropTypeUtil: {
2988
3026
  };
2989
3027
  type KeyValuePropValue = z.infer<typeof keyValuePropTypeUtil.schema>;
2990
3028
 
3029
+ declare const numberRangePropTypeUtil: {
3030
+ extract: (prop: unknown) => {
3031
+ min?: any;
3032
+ max?: any;
3033
+ } | null;
3034
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"number-range", {
3035
+ min?: any;
3036
+ max?: any;
3037
+ }>;
3038
+ create: {
3039
+ (value: {
3040
+ min?: any;
3041
+ max?: any;
3042
+ }): TransformablePropValue$1<"number-range", {
3043
+ min?: any;
3044
+ max?: any;
3045
+ }>;
3046
+ (value: {
3047
+ min?: any;
3048
+ max?: any;
3049
+ }, createOptions?: CreateOptions): TransformablePropValue$1<"number-range", {
3050
+ min?: any;
3051
+ max?: any;
3052
+ }>;
3053
+ (value: (prev?: {
3054
+ min?: any;
3055
+ max?: any;
3056
+ } | undefined) => {
3057
+ min?: any;
3058
+ max?: any;
3059
+ }, createOptions: CreateOptions): TransformablePropValue$1<"number-range", {
3060
+ min?: any;
3061
+ max?: any;
3062
+ }>;
3063
+ };
3064
+ schema: z.ZodObject<{
3065
+ $$type: z.ZodLiteral<"number-range">;
3066
+ value: z.ZodType<{
3067
+ min?: any;
3068
+ max?: any;
3069
+ }, z.ZodTypeDef, {
3070
+ min?: any;
3071
+ max?: any;
3072
+ }>;
3073
+ disabled: z.ZodOptional<z.ZodBoolean>;
3074
+ }, "strict", z.ZodTypeAny, {
3075
+ $$type: "number-range";
3076
+ value: {
3077
+ min?: any;
3078
+ max?: any;
3079
+ };
3080
+ disabled?: boolean | undefined;
3081
+ }, {
3082
+ $$type: "number-range";
3083
+ value: {
3084
+ min?: any;
3085
+ max?: any;
3086
+ };
3087
+ disabled?: boolean | undefined;
3088
+ }>;
3089
+ key: "number-range";
3090
+ };
3091
+ type NumberRangePropValue = z.infer<typeof numberRangePropTypeUtil.schema>;
3092
+
2991
3093
  declare const DateTimePropTypeUtil: {
2992
3094
  extract: (prop: unknown) => {
2993
3095
  date?: any;
@@ -6886,10 +6988,196 @@ declare const hueRotateFilterPropTypeUtil: {
6886
6988
  key: "hue-rotate";
6887
6989
  };
6888
6990
 
6991
+ declare const dateRangePropTypeUtil: {
6992
+ extract: (prop: unknown) => {
6993
+ min?: any;
6994
+ max?: any;
6995
+ } | null;
6996
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"date-range", {
6997
+ min?: any;
6998
+ max?: any;
6999
+ }>;
7000
+ create: {
7001
+ (value: {
7002
+ min?: any;
7003
+ max?: any;
7004
+ }): TransformablePropValue$1<"date-range", {
7005
+ min?: any;
7006
+ max?: any;
7007
+ }>;
7008
+ (value: {
7009
+ min?: any;
7010
+ max?: any;
7011
+ }, createOptions?: CreateOptions): TransformablePropValue$1<"date-range", {
7012
+ min?: any;
7013
+ max?: any;
7014
+ }>;
7015
+ (value: (prev?: {
7016
+ min?: any;
7017
+ max?: any;
7018
+ } | undefined) => {
7019
+ min?: any;
7020
+ max?: any;
7021
+ }, createOptions: CreateOptions): TransformablePropValue$1<"date-range", {
7022
+ min?: any;
7023
+ max?: any;
7024
+ }>;
7025
+ };
7026
+ schema: z.ZodObject<{
7027
+ $$type: z.ZodLiteral<"date-range">;
7028
+ value: z.ZodType<{
7029
+ min?: any;
7030
+ max?: any;
7031
+ }, z.ZodTypeDef, {
7032
+ min?: any;
7033
+ max?: any;
7034
+ }>;
7035
+ disabled: z.ZodOptional<z.ZodBoolean>;
7036
+ }, "strict", z.ZodTypeAny, {
7037
+ $$type: "date-range";
7038
+ value: {
7039
+ min?: any;
7040
+ max?: any;
7041
+ };
7042
+ disabled?: boolean | undefined;
7043
+ }, {
7044
+ $$type: "date-range";
7045
+ value: {
7046
+ min?: any;
7047
+ max?: any;
7048
+ };
7049
+ disabled?: boolean | undefined;
7050
+ }>;
7051
+ key: "date-range";
7052
+ };
7053
+ type DateRangePropValue = z.infer<typeof dateRangePropTypeUtil.schema>;
7054
+
7055
+ declare const dateStringPropTypeUtil: {
7056
+ extract: (prop: unknown) => string | null;
7057
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"date-string", string>;
7058
+ create: {
7059
+ (value: string): TransformablePropValue$1<"date-string", string>;
7060
+ (value: string, createOptions?: CreateOptions): TransformablePropValue$1<"date-string", string>;
7061
+ (value: (prev?: string | undefined) => string, createOptions: CreateOptions): TransformablePropValue$1<"date-string", string>;
7062
+ };
7063
+ schema: z.ZodObject<{
7064
+ $$type: z.ZodLiteral<"date-string">;
7065
+ value: z.ZodType<string, z.ZodTypeDef, string>;
7066
+ disabled: z.ZodOptional<z.ZodBoolean>;
7067
+ }, "strict", z.ZodTypeAny, {
7068
+ $$type: "date-string";
7069
+ value: string;
7070
+ disabled?: boolean | undefined;
7071
+ }, {
7072
+ $$type: "date-string";
7073
+ value: string;
7074
+ disabled?: boolean | undefined;
7075
+ }>;
7076
+ key: "date-string";
7077
+ };
7078
+ type DateStringPropValue = z.infer<typeof dateStringPropTypeUtil.schema>;
7079
+
7080
+ declare const timeRangePropTypeUtil: {
7081
+ extract: (prop: unknown) => {
7082
+ min?: any;
7083
+ max?: any;
7084
+ } | null;
7085
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"time-range", {
7086
+ min?: any;
7087
+ max?: any;
7088
+ }>;
7089
+ create: {
7090
+ (value: {
7091
+ min?: any;
7092
+ max?: any;
7093
+ }): TransformablePropValue$1<"time-range", {
7094
+ min?: any;
7095
+ max?: any;
7096
+ }>;
7097
+ (value: {
7098
+ min?: any;
7099
+ max?: any;
7100
+ }, createOptions?: CreateOptions): TransformablePropValue$1<"time-range", {
7101
+ min?: any;
7102
+ max?: any;
7103
+ }>;
7104
+ (value: (prev?: {
7105
+ min?: any;
7106
+ max?: any;
7107
+ } | undefined) => {
7108
+ min?: any;
7109
+ max?: any;
7110
+ }, createOptions: CreateOptions): TransformablePropValue$1<"time-range", {
7111
+ min?: any;
7112
+ max?: any;
7113
+ }>;
7114
+ };
7115
+ schema: z.ZodObject<{
7116
+ $$type: z.ZodLiteral<"time-range">;
7117
+ value: z.ZodType<{
7118
+ min?: any;
7119
+ max?: any;
7120
+ }, z.ZodTypeDef, {
7121
+ min?: any;
7122
+ max?: any;
7123
+ }>;
7124
+ disabled: z.ZodOptional<z.ZodBoolean>;
7125
+ }, "strict", z.ZodTypeAny, {
7126
+ $$type: "time-range";
7127
+ value: {
7128
+ min?: any;
7129
+ max?: any;
7130
+ };
7131
+ disabled?: boolean | undefined;
7132
+ }, {
7133
+ $$type: "time-range";
7134
+ value: {
7135
+ min?: any;
7136
+ max?: any;
7137
+ };
7138
+ disabled?: boolean | undefined;
7139
+ }>;
7140
+ key: "time-range";
7141
+ };
7142
+ type TimeRangePropValue = z.infer<typeof timeRangePropTypeUtil.schema>;
7143
+
7144
+ declare const timeStringPropTypeUtil: {
7145
+ extract: (prop: unknown) => string | null;
7146
+ isValid: (prop: unknown) => prop is TransformablePropValue$1<"time-string", string>;
7147
+ create: {
7148
+ (value: string): TransformablePropValue$1<"time-string", string>;
7149
+ (value: string, createOptions?: CreateOptions): TransformablePropValue$1<"time-string", string>;
7150
+ (value: (prev?: string | undefined) => string, createOptions: CreateOptions): TransformablePropValue$1<"time-string", string>;
7151
+ };
7152
+ schema: z.ZodObject<{
7153
+ $$type: z.ZodLiteral<"time-string">;
7154
+ value: z.ZodType<string, z.ZodTypeDef, string>;
7155
+ disabled: z.ZodOptional<z.ZodBoolean>;
7156
+ }, "strict", z.ZodTypeAny, {
7157
+ $$type: "time-string";
7158
+ value: string;
7159
+ disabled?: boolean | undefined;
7160
+ }, {
7161
+ $$type: "time-string";
7162
+ value: string;
7163
+ disabled?: boolean | undefined;
7164
+ }>;
7165
+ key: "time-string";
7166
+ };
7167
+ type TimeStringPropValue = z.infer<typeof timeStringPropTypeUtil.schema>;
7168
+
6889
7169
  declare const filterEmptyValues: <TValue extends PropValue>(value: TValue) => TValue | null;
6890
7170
  type Nullish = null | undefined | '';
6891
7171
  declare const isEmpty: (value: PropValue) => value is Nullish;
6892
7172
 
7173
+ type OverridableInner = {
7174
+ override_key: string;
7175
+ origin_value: TransformablePropValue$1<string>;
7176
+ };
7177
+ type OverridableTransformable = TransformablePropValue$1<'overridable', OverridableInner>;
7178
+ declare function isOverridable(value: unknown): value is OverridableTransformable;
7179
+ declare function rewrapOverridableValue(existing: OverridableTransformable, newInner: TransformablePropValue$1<string>): OverridableTransformable;
7180
+
6893
7181
  declare const transformableSchema: z.ZodObject<{
6894
7182
  $$type: z.ZodString;
6895
7183
  value: z.ZodAny;
@@ -6915,7 +7203,10 @@ declare function isDependencyMet(dependency: Dependency | undefined, values: Pro
6915
7203
  failingDependencies: (DependencyTerm | Dependency)[];
6916
7204
  };
6917
7205
  declare function evaluateTerm(term: DependencyTerm, actualValue: unknown): boolean;
6918
- declare function extractValue(path: string[], elementValues: PropValue, nestedPath?: string[]): TransformablePropValue$1<PropKey> | null;
7206
+ type ExtractValueOptions = {
7207
+ unwrapOverridableLeaf?: boolean;
7208
+ };
7209
+ declare function extractValue(path: string[], elementValues: PropValue, nestedPath?: string[], options?: ExtractValueOptions): TransformablePropValue$1<string>;
6919
7210
  declare function isDependency(term: DependencyTerm | Dependency): term is Dependency;
6920
7211
 
6921
7212
  interface ParseResult {
@@ -6949,4 +7240,4 @@ declare const Schema: {
6949
7240
  removeIntention: typeof removeIntention;
6950
7241
  };
6951
7242
 
6952
- 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, DateTimePropTypeUtil, type DateTimePropValue, type Dependency, type DependencyOperator, type DependencyTerm, type DimensionsPropValue, type DropShadowFilterPropValue, type EmailPropValue, 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 ObjectPropType, type ObjectPropValue, 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 QueryPropValue, type RotateTransformPropValue, type ScaleTransformPropValue, Schema, type SelectionSizePropValue, type ShadowPropValue, type SizePropValue, type SkewTransformPropValue, type StringArrayPropValue, type StringPropValue, type StrokePropValue, type SvgSrcPropValue, 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, dimensionsPropTypeUtil, dropShadowFilterPropTypeUtil, emailPropTypeUtil, evaluateTerm, extractValue, filterEmptyValues, filterPropTypeUtil, flexPropTypeUtil, getPropSchemaFromCache, gradientColorStopPropTypeUtil, htmlPropTypeUtil, htmlV2PropTypeUtil, htmlV3PropTypeUtil, hueRotateFilterPropTypeUtil, imageAttachmentIdPropType, imagePropTypeUtil, imageSrcPropTypeUtil, intensityFilterPropTypeUtil, isDependency, isDependencyMet, isEmpty, isTransformable, keyValuePropTypeUtil, layoutDirectionPropTypeUtil, linkPropTypeUtil, mergeProps, moveTransformPropTypeUtil, numberPropTypeUtil, parseHtmlChildren, perspectiveOriginPropTypeUtil, positionPropTypeUtil, queryPropTypeUtil, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };
7243
+ 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 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 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, 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, queryPropTypeUtil, rewrapOverridableValue, rotateTransformPropTypeUtil, scaleTransformPropTypeUtil, selectionSizePropTypeUtil, shadowPropTypeUtil, sizePropTypeUtil, skewTransformPropTypeUtil, spanPropTypeUtil, stringArrayPropTypeUtil, stringPropTypeUtil, strokePropTypeUtil, svgSrcPropTypeUtil, timeRangePropTypeUtil, timeStringPropTypeUtil, transformFunctionsPropTypeUtil, transformOriginPropTypeUtil, transformPropTypeUtil, urlPropTypeUtil, videoAttachmentIdPropType, videoSrcPropTypeUtil };