@elementor/editor-props 4.2.0-869 → 4.2.0-871
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 +169 -1
- package/dist/index.d.ts +169 -1
- package/dist/index.js +105 -85
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +104 -85
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/prop-types/emails.ts +22 -0
- package/src/prop-types/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -2142,6 +2142,174 @@ declare const emailPropTypeUtil: {
|
|
|
2142
2142
|
};
|
|
2143
2143
|
type EmailPropValue = z.infer<typeof emailPropTypeUtil.schema>;
|
|
2144
2144
|
|
|
2145
|
+
declare const emailsPropTypeUtil: {
|
|
2146
|
+
extract: (prop: unknown) => {
|
|
2147
|
+
message?: any;
|
|
2148
|
+
to?: any;
|
|
2149
|
+
subject?: any;
|
|
2150
|
+
from?: any;
|
|
2151
|
+
'meta-data'?: any;
|
|
2152
|
+
'send-as'?: any;
|
|
2153
|
+
'from-name'?: any;
|
|
2154
|
+
'reply-to'?: any;
|
|
2155
|
+
cc?: any;
|
|
2156
|
+
bcc?: any;
|
|
2157
|
+
} | null;
|
|
2158
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"emails", {
|
|
2159
|
+
message?: any;
|
|
2160
|
+
to?: any;
|
|
2161
|
+
subject?: any;
|
|
2162
|
+
from?: any;
|
|
2163
|
+
'meta-data'?: any;
|
|
2164
|
+
'send-as'?: any;
|
|
2165
|
+
'from-name'?: any;
|
|
2166
|
+
'reply-to'?: any;
|
|
2167
|
+
cc?: any;
|
|
2168
|
+
bcc?: any;
|
|
2169
|
+
}>;
|
|
2170
|
+
create: {
|
|
2171
|
+
(value: {
|
|
2172
|
+
message?: any;
|
|
2173
|
+
to?: any;
|
|
2174
|
+
subject?: any;
|
|
2175
|
+
from?: any;
|
|
2176
|
+
'meta-data'?: any;
|
|
2177
|
+
'send-as'?: any;
|
|
2178
|
+
'from-name'?: any;
|
|
2179
|
+
'reply-to'?: any;
|
|
2180
|
+
cc?: any;
|
|
2181
|
+
bcc?: any;
|
|
2182
|
+
}): TransformablePropValue$1<"emails", {
|
|
2183
|
+
message?: any;
|
|
2184
|
+
to?: any;
|
|
2185
|
+
subject?: any;
|
|
2186
|
+
from?: any;
|
|
2187
|
+
'meta-data'?: any;
|
|
2188
|
+
'send-as'?: any;
|
|
2189
|
+
'from-name'?: any;
|
|
2190
|
+
'reply-to'?: any;
|
|
2191
|
+
cc?: any;
|
|
2192
|
+
bcc?: any;
|
|
2193
|
+
}>;
|
|
2194
|
+
(value: {
|
|
2195
|
+
message?: any;
|
|
2196
|
+
to?: any;
|
|
2197
|
+
subject?: any;
|
|
2198
|
+
from?: any;
|
|
2199
|
+
'meta-data'?: any;
|
|
2200
|
+
'send-as'?: any;
|
|
2201
|
+
'from-name'?: any;
|
|
2202
|
+
'reply-to'?: any;
|
|
2203
|
+
cc?: any;
|
|
2204
|
+
bcc?: any;
|
|
2205
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"emails", {
|
|
2206
|
+
message?: any;
|
|
2207
|
+
to?: any;
|
|
2208
|
+
subject?: any;
|
|
2209
|
+
from?: any;
|
|
2210
|
+
'meta-data'?: any;
|
|
2211
|
+
'send-as'?: any;
|
|
2212
|
+
'from-name'?: any;
|
|
2213
|
+
'reply-to'?: any;
|
|
2214
|
+
cc?: any;
|
|
2215
|
+
bcc?: any;
|
|
2216
|
+
}>;
|
|
2217
|
+
(value: (prev?: {
|
|
2218
|
+
message?: any;
|
|
2219
|
+
to?: any;
|
|
2220
|
+
subject?: any;
|
|
2221
|
+
from?: any;
|
|
2222
|
+
'meta-data'?: any;
|
|
2223
|
+
'send-as'?: any;
|
|
2224
|
+
'from-name'?: any;
|
|
2225
|
+
'reply-to'?: any;
|
|
2226
|
+
cc?: any;
|
|
2227
|
+
bcc?: any;
|
|
2228
|
+
} | undefined) => {
|
|
2229
|
+
message?: any;
|
|
2230
|
+
to?: any;
|
|
2231
|
+
subject?: any;
|
|
2232
|
+
from?: any;
|
|
2233
|
+
'meta-data'?: any;
|
|
2234
|
+
'send-as'?: any;
|
|
2235
|
+
'from-name'?: any;
|
|
2236
|
+
'reply-to'?: any;
|
|
2237
|
+
cc?: any;
|
|
2238
|
+
bcc?: any;
|
|
2239
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"emails", {
|
|
2240
|
+
message?: any;
|
|
2241
|
+
to?: any;
|
|
2242
|
+
subject?: any;
|
|
2243
|
+
from?: any;
|
|
2244
|
+
'meta-data'?: any;
|
|
2245
|
+
'send-as'?: any;
|
|
2246
|
+
'from-name'?: any;
|
|
2247
|
+
'reply-to'?: any;
|
|
2248
|
+
cc?: any;
|
|
2249
|
+
bcc?: any;
|
|
2250
|
+
}>;
|
|
2251
|
+
};
|
|
2252
|
+
schema: z.ZodObject<{
|
|
2253
|
+
$$type: z.ZodLiteral<"emails">;
|
|
2254
|
+
value: z.ZodType<{
|
|
2255
|
+
message?: any;
|
|
2256
|
+
to?: any;
|
|
2257
|
+
subject?: any;
|
|
2258
|
+
from?: any;
|
|
2259
|
+
'meta-data'?: any;
|
|
2260
|
+
'send-as'?: any;
|
|
2261
|
+
'from-name'?: any;
|
|
2262
|
+
'reply-to'?: any;
|
|
2263
|
+
cc?: any;
|
|
2264
|
+
bcc?: any;
|
|
2265
|
+
}, z.ZodTypeDef, {
|
|
2266
|
+
message?: any;
|
|
2267
|
+
to?: any;
|
|
2268
|
+
subject?: any;
|
|
2269
|
+
from?: any;
|
|
2270
|
+
'meta-data'?: any;
|
|
2271
|
+
'send-as'?: any;
|
|
2272
|
+
'from-name'?: any;
|
|
2273
|
+
'reply-to'?: any;
|
|
2274
|
+
cc?: any;
|
|
2275
|
+
bcc?: any;
|
|
2276
|
+
}>;
|
|
2277
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2278
|
+
}, "strict", z.ZodTypeAny, {
|
|
2279
|
+
$$type: "emails";
|
|
2280
|
+
value: {
|
|
2281
|
+
message?: any;
|
|
2282
|
+
to?: any;
|
|
2283
|
+
subject?: any;
|
|
2284
|
+
from?: any;
|
|
2285
|
+
'meta-data'?: any;
|
|
2286
|
+
'send-as'?: any;
|
|
2287
|
+
'from-name'?: any;
|
|
2288
|
+
'reply-to'?: any;
|
|
2289
|
+
cc?: any;
|
|
2290
|
+
bcc?: any;
|
|
2291
|
+
};
|
|
2292
|
+
disabled?: boolean | undefined;
|
|
2293
|
+
}, {
|
|
2294
|
+
$$type: "emails";
|
|
2295
|
+
value: {
|
|
2296
|
+
message?: any;
|
|
2297
|
+
to?: any;
|
|
2298
|
+
subject?: any;
|
|
2299
|
+
from?: any;
|
|
2300
|
+
'meta-data'?: any;
|
|
2301
|
+
'send-as'?: any;
|
|
2302
|
+
'from-name'?: any;
|
|
2303
|
+
'reply-to'?: any;
|
|
2304
|
+
cc?: any;
|
|
2305
|
+
bcc?: any;
|
|
2306
|
+
};
|
|
2307
|
+
disabled?: boolean | undefined;
|
|
2308
|
+
}>;
|
|
2309
|
+
key: "emails";
|
|
2310
|
+
};
|
|
2311
|
+
type EmailsPropValue = z.infer<typeof emailsPropTypeUtil.schema>;
|
|
2312
|
+
|
|
2145
2313
|
declare const selectionSizePropTypeUtil: {
|
|
2146
2314
|
extract: (prop: unknown) => {
|
|
2147
2315
|
selection: {
|
|
@@ -7439,4 +7607,4 @@ declare const Schema: {
|
|
|
7439
7607
|
removeIntention: typeof removeIntention;
|
|
7440
7608
|
};
|
|
7441
7609
|
|
|
7442
|
-
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 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, 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 };
|
|
7610
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2142,6 +2142,174 @@ declare const emailPropTypeUtil: {
|
|
|
2142
2142
|
};
|
|
2143
2143
|
type EmailPropValue = z.infer<typeof emailPropTypeUtil.schema>;
|
|
2144
2144
|
|
|
2145
|
+
declare const emailsPropTypeUtil: {
|
|
2146
|
+
extract: (prop: unknown) => {
|
|
2147
|
+
message?: any;
|
|
2148
|
+
to?: any;
|
|
2149
|
+
subject?: any;
|
|
2150
|
+
from?: any;
|
|
2151
|
+
'meta-data'?: any;
|
|
2152
|
+
'send-as'?: any;
|
|
2153
|
+
'from-name'?: any;
|
|
2154
|
+
'reply-to'?: any;
|
|
2155
|
+
cc?: any;
|
|
2156
|
+
bcc?: any;
|
|
2157
|
+
} | null;
|
|
2158
|
+
isValid: (prop: unknown) => prop is TransformablePropValue$1<"emails", {
|
|
2159
|
+
message?: any;
|
|
2160
|
+
to?: any;
|
|
2161
|
+
subject?: any;
|
|
2162
|
+
from?: any;
|
|
2163
|
+
'meta-data'?: any;
|
|
2164
|
+
'send-as'?: any;
|
|
2165
|
+
'from-name'?: any;
|
|
2166
|
+
'reply-to'?: any;
|
|
2167
|
+
cc?: any;
|
|
2168
|
+
bcc?: any;
|
|
2169
|
+
}>;
|
|
2170
|
+
create: {
|
|
2171
|
+
(value: {
|
|
2172
|
+
message?: any;
|
|
2173
|
+
to?: any;
|
|
2174
|
+
subject?: any;
|
|
2175
|
+
from?: any;
|
|
2176
|
+
'meta-data'?: any;
|
|
2177
|
+
'send-as'?: any;
|
|
2178
|
+
'from-name'?: any;
|
|
2179
|
+
'reply-to'?: any;
|
|
2180
|
+
cc?: any;
|
|
2181
|
+
bcc?: any;
|
|
2182
|
+
}): TransformablePropValue$1<"emails", {
|
|
2183
|
+
message?: any;
|
|
2184
|
+
to?: any;
|
|
2185
|
+
subject?: any;
|
|
2186
|
+
from?: any;
|
|
2187
|
+
'meta-data'?: any;
|
|
2188
|
+
'send-as'?: any;
|
|
2189
|
+
'from-name'?: any;
|
|
2190
|
+
'reply-to'?: any;
|
|
2191
|
+
cc?: any;
|
|
2192
|
+
bcc?: any;
|
|
2193
|
+
}>;
|
|
2194
|
+
(value: {
|
|
2195
|
+
message?: any;
|
|
2196
|
+
to?: any;
|
|
2197
|
+
subject?: any;
|
|
2198
|
+
from?: any;
|
|
2199
|
+
'meta-data'?: any;
|
|
2200
|
+
'send-as'?: any;
|
|
2201
|
+
'from-name'?: any;
|
|
2202
|
+
'reply-to'?: any;
|
|
2203
|
+
cc?: any;
|
|
2204
|
+
bcc?: any;
|
|
2205
|
+
}, createOptions?: CreateOptions): TransformablePropValue$1<"emails", {
|
|
2206
|
+
message?: any;
|
|
2207
|
+
to?: any;
|
|
2208
|
+
subject?: any;
|
|
2209
|
+
from?: any;
|
|
2210
|
+
'meta-data'?: any;
|
|
2211
|
+
'send-as'?: any;
|
|
2212
|
+
'from-name'?: any;
|
|
2213
|
+
'reply-to'?: any;
|
|
2214
|
+
cc?: any;
|
|
2215
|
+
bcc?: any;
|
|
2216
|
+
}>;
|
|
2217
|
+
(value: (prev?: {
|
|
2218
|
+
message?: any;
|
|
2219
|
+
to?: any;
|
|
2220
|
+
subject?: any;
|
|
2221
|
+
from?: any;
|
|
2222
|
+
'meta-data'?: any;
|
|
2223
|
+
'send-as'?: any;
|
|
2224
|
+
'from-name'?: any;
|
|
2225
|
+
'reply-to'?: any;
|
|
2226
|
+
cc?: any;
|
|
2227
|
+
bcc?: any;
|
|
2228
|
+
} | undefined) => {
|
|
2229
|
+
message?: any;
|
|
2230
|
+
to?: any;
|
|
2231
|
+
subject?: any;
|
|
2232
|
+
from?: any;
|
|
2233
|
+
'meta-data'?: any;
|
|
2234
|
+
'send-as'?: any;
|
|
2235
|
+
'from-name'?: any;
|
|
2236
|
+
'reply-to'?: any;
|
|
2237
|
+
cc?: any;
|
|
2238
|
+
bcc?: any;
|
|
2239
|
+
}, createOptions: CreateOptions): TransformablePropValue$1<"emails", {
|
|
2240
|
+
message?: any;
|
|
2241
|
+
to?: any;
|
|
2242
|
+
subject?: any;
|
|
2243
|
+
from?: any;
|
|
2244
|
+
'meta-data'?: any;
|
|
2245
|
+
'send-as'?: any;
|
|
2246
|
+
'from-name'?: any;
|
|
2247
|
+
'reply-to'?: any;
|
|
2248
|
+
cc?: any;
|
|
2249
|
+
bcc?: any;
|
|
2250
|
+
}>;
|
|
2251
|
+
};
|
|
2252
|
+
schema: z.ZodObject<{
|
|
2253
|
+
$$type: z.ZodLiteral<"emails">;
|
|
2254
|
+
value: z.ZodType<{
|
|
2255
|
+
message?: any;
|
|
2256
|
+
to?: any;
|
|
2257
|
+
subject?: any;
|
|
2258
|
+
from?: any;
|
|
2259
|
+
'meta-data'?: any;
|
|
2260
|
+
'send-as'?: any;
|
|
2261
|
+
'from-name'?: any;
|
|
2262
|
+
'reply-to'?: any;
|
|
2263
|
+
cc?: any;
|
|
2264
|
+
bcc?: any;
|
|
2265
|
+
}, z.ZodTypeDef, {
|
|
2266
|
+
message?: any;
|
|
2267
|
+
to?: any;
|
|
2268
|
+
subject?: any;
|
|
2269
|
+
from?: any;
|
|
2270
|
+
'meta-data'?: any;
|
|
2271
|
+
'send-as'?: any;
|
|
2272
|
+
'from-name'?: any;
|
|
2273
|
+
'reply-to'?: any;
|
|
2274
|
+
cc?: any;
|
|
2275
|
+
bcc?: any;
|
|
2276
|
+
}>;
|
|
2277
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2278
|
+
}, "strict", z.ZodTypeAny, {
|
|
2279
|
+
$$type: "emails";
|
|
2280
|
+
value: {
|
|
2281
|
+
message?: any;
|
|
2282
|
+
to?: any;
|
|
2283
|
+
subject?: any;
|
|
2284
|
+
from?: any;
|
|
2285
|
+
'meta-data'?: any;
|
|
2286
|
+
'send-as'?: any;
|
|
2287
|
+
'from-name'?: any;
|
|
2288
|
+
'reply-to'?: any;
|
|
2289
|
+
cc?: any;
|
|
2290
|
+
bcc?: any;
|
|
2291
|
+
};
|
|
2292
|
+
disabled?: boolean | undefined;
|
|
2293
|
+
}, {
|
|
2294
|
+
$$type: "emails";
|
|
2295
|
+
value: {
|
|
2296
|
+
message?: any;
|
|
2297
|
+
to?: any;
|
|
2298
|
+
subject?: any;
|
|
2299
|
+
from?: any;
|
|
2300
|
+
'meta-data'?: any;
|
|
2301
|
+
'send-as'?: any;
|
|
2302
|
+
'from-name'?: any;
|
|
2303
|
+
'reply-to'?: any;
|
|
2304
|
+
cc?: any;
|
|
2305
|
+
bcc?: any;
|
|
2306
|
+
};
|
|
2307
|
+
disabled?: boolean | undefined;
|
|
2308
|
+
}>;
|
|
2309
|
+
key: "emails";
|
|
2310
|
+
};
|
|
2311
|
+
type EmailsPropValue = z.infer<typeof emailsPropTypeUtil.schema>;
|
|
2312
|
+
|
|
2145
2313
|
declare const selectionSizePropTypeUtil: {
|
|
2146
2314
|
extract: (prop: unknown) => {
|
|
2147
2315
|
selection: {
|
|
@@ -7439,4 +7607,4 @@ declare const Schema: {
|
|
|
7439
7607
|
removeIntention: typeof removeIntention;
|
|
7440
7608
|
};
|
|
7441
7609
|
|
|
7442
|
-
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 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, 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 };
|
|
7610
|
+
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 };
|