@wix/auto_sdk_blog_posts 1.0.35 → 1.0.37
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/build/cjs/index.d.ts +16 -9
- package/build/cjs/index.js +69 -18
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +188 -12
- package/build/cjs/index.typings.js +69 -18
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -8
- package/build/es/index.d.mts +16 -9
- package/build/es/index.mjs +62 -18
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +188 -12
- package/build/es/index.typings.mjs +62 -18
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -8
- package/build/internal/cjs/index.d.ts +16 -9
- package/build/internal/cjs/index.js +69 -18
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +188 -12
- package/build/internal/cjs/index.typings.js +69 -18
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -8
- package/build/internal/es/index.d.mts +16 -9
- package/build/internal/es/index.mjs +62 -18
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +188 -12
- package/build/internal/es/index.typings.mjs +62 -18
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -8
- package/package.json +2 -2
@@ -504,7 +504,7 @@ interface ButtonData {
|
|
504
504
|
/** Styling for the button's container. */
|
505
505
|
containerData?: PluginContainerData;
|
506
506
|
/** The button type. */
|
507
|
-
type?:
|
507
|
+
type?: ButtonDataTypeWithLiterals;
|
508
508
|
/** Styling for the button. */
|
509
509
|
styles?: Styles;
|
510
510
|
/** The text to display on the button. */
|
@@ -597,14 +597,14 @@ interface Height {
|
|
597
597
|
/** A custom height value in pixels. */
|
598
598
|
custom?: string | null;
|
599
599
|
}
|
600
|
-
declare enum
|
600
|
+
declare enum ButtonDataType {
|
601
601
|
/** Regular link button */
|
602
602
|
LINK = "LINK",
|
603
603
|
/** Triggers custom action that is defined in plugin configuration by the consumer */
|
604
604
|
ACTION = "ACTION"
|
605
605
|
}
|
606
606
|
/** @enumType */
|
607
|
-
type
|
607
|
+
type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
|
608
608
|
interface Styles {
|
609
609
|
/** Border attributes. */
|
610
610
|
border?: Border;
|
@@ -690,7 +690,7 @@ interface DividerData {
|
|
690
690
|
/** Divider width. */
|
691
691
|
width?: WidthWithLiterals;
|
692
692
|
/** Divider alignment. */
|
693
|
-
alignment?:
|
693
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
694
694
|
}
|
695
695
|
declare enum LineStyle {
|
696
696
|
/** Single Line */
|
@@ -714,7 +714,7 @@ declare enum Width {
|
|
714
714
|
}
|
715
715
|
/** @enumType */
|
716
716
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
717
|
-
declare enum
|
717
|
+
declare enum DividerDataAlignment {
|
718
718
|
/** Center alignment */
|
719
719
|
CENTER = "CENTER",
|
720
720
|
/** Left alignment */
|
@@ -723,7 +723,7 @@ declare enum Alignment {
|
|
723
723
|
RIGHT = "RIGHT"
|
724
724
|
}
|
725
725
|
/** @enumType */
|
726
|
-
type
|
726
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
727
727
|
interface FileData {
|
728
728
|
/** Styling for the file's container. */
|
729
729
|
containerData?: PluginContainerData;
|
@@ -848,7 +848,7 @@ interface ItemDataOneOf {
|
|
848
848
|
}
|
849
849
|
interface GalleryOptions {
|
850
850
|
/** Gallery layout. */
|
851
|
-
layout?:
|
851
|
+
layout?: GalleryOptionsLayout;
|
852
852
|
/** Styling for gallery items. */
|
853
853
|
item?: ItemStyle;
|
854
854
|
/** Styling for gallery thumbnail images. */
|
@@ -908,7 +908,7 @@ declare enum ThumbnailsAlignment {
|
|
908
908
|
}
|
909
909
|
/** @enumType */
|
910
910
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
911
|
-
interface
|
911
|
+
interface GalleryOptionsLayout {
|
912
912
|
/** Gallery layout type. */
|
913
913
|
type?: LayoutTypeWithLiterals;
|
914
914
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wix/auto_sdk_blog_posts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.37",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
6
6
|
"access": "public"
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"fqdn": "wix.blog.v3.post"
|
50
50
|
}
|
51
51
|
},
|
52
|
-
"falconPackageHash": "
|
52
|
+
"falconPackageHash": "b2d93d96b4d0b69d15c6fcd3f6cbf2a7c69a5ebe018b6804fbf6a9df"
|
53
53
|
}
|