@cntrl-site/sdk 1.24.4 → 1.24.5-1

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.
@@ -335,6 +335,9 @@ export declare const ControlSliderComponent: {
335
335
  type: string;
336
336
  display: {
337
337
  type: string;
338
+ minWidth: number;
339
+ defaultWidth: number;
340
+ maxWidth: number;
338
341
  };
339
342
  properties: {
340
343
  url: {
@@ -354,6 +357,9 @@ export declare const ControlSliderComponent: {
354
357
  display: {
355
358
  type: string;
356
359
  placeholder: string;
360
+ minWidth: number;
361
+ defaultWidth: number;
362
+ maxWidth: number;
357
363
  };
358
364
  };
359
365
  link: {
@@ -170,6 +170,9 @@ export declare const ControlImageRevealSliderComponent: {
170
170
  display: {
171
171
  type: string;
172
172
  isObjectFitEditable: boolean;
173
+ minWidth: number;
174
+ defaultWidth: number;
175
+ maxWidth: number;
173
176
  };
174
177
  properties: {
175
178
  url: {
@@ -190,6 +193,9 @@ export declare const ControlImageRevealSliderComponent: {
190
193
  display: {
191
194
  type: string;
192
195
  placeholder: string;
196
+ minWidth: number;
197
+ defaultWidth: number;
198
+ maxWidth: number;
193
199
  };
194
200
  };
195
201
  };
package/dist/index.js CHANGED
@@ -2063,7 +2063,10 @@ const ControlSliderComponent = {
2063
2063
  image: {
2064
2064
  type: "object",
2065
2065
  display: {
2066
- type: "media-input"
2066
+ type: "media-input",
2067
+ minWidth: 48,
2068
+ defaultWidth: 108,
2069
+ maxWidth: 108
2067
2070
  },
2068
2071
  properties: {
2069
2072
  url: {
@@ -2082,7 +2085,10 @@ const ControlSliderComponent = {
2082
2085
  imageCaption: {
2083
2086
  display: {
2084
2087
  type: "rich-text",
2085
- placeholder: "Add Caption..."
2088
+ placeholder: "Add Caption...",
2089
+ minWidth: 100,
2090
+ defaultWidth: 300,
2091
+ maxWidth: 500
2086
2092
  }
2087
2093
  },
2088
2094
  link: {
@@ -2643,7 +2649,10 @@ const ControlImageRevealSliderComponent = {
2643
2649
  type: "object",
2644
2650
  display: {
2645
2651
  type: "media-input",
2646
- isObjectFitEditable: false
2652
+ isObjectFitEditable: false,
2653
+ minWidth: 48,
2654
+ defaultWidth: 108,
2655
+ maxWidth: 108
2647
2656
  },
2648
2657
  properties: {
2649
2658
  url: {
@@ -2663,7 +2672,10 @@ const ControlImageRevealSliderComponent = {
2663
2672
  type: "string",
2664
2673
  display: {
2665
2674
  type: "text-input",
2666
- placeholder: "Enter link..."
2675
+ placeholder: "Enter link...",
2676
+ minWidth: 100,
2677
+ defaultWidth: 300,
2678
+ maxWidth: 500
2667
2679
  }
2668
2680
  }
2669
2681
  },
package/dist/index.mjs CHANGED
@@ -2044,7 +2044,10 @@ const ControlSliderComponent = {
2044
2044
  image: {
2045
2045
  type: "object",
2046
2046
  display: {
2047
- type: "media-input"
2047
+ type: "media-input",
2048
+ minWidth: 48,
2049
+ defaultWidth: 108,
2050
+ maxWidth: 108
2048
2051
  },
2049
2052
  properties: {
2050
2053
  url: {
@@ -2063,7 +2066,10 @@ const ControlSliderComponent = {
2063
2066
  imageCaption: {
2064
2067
  display: {
2065
2068
  type: "rich-text",
2066
- placeholder: "Add Caption..."
2069
+ placeholder: "Add Caption...",
2070
+ minWidth: 100,
2071
+ defaultWidth: 300,
2072
+ maxWidth: 500
2067
2073
  }
2068
2074
  },
2069
2075
  link: {
@@ -2624,7 +2630,10 @@ const ControlImageRevealSliderComponent = {
2624
2630
  type: "object",
2625
2631
  display: {
2626
2632
  type: "media-input",
2627
- isObjectFitEditable: false
2633
+ isObjectFitEditable: false,
2634
+ minWidth: 48,
2635
+ defaultWidth: 108,
2636
+ maxWidth: 108
2628
2637
  },
2629
2638
  properties: {
2630
2639
  url: {
@@ -2644,7 +2653,10 @@ const ControlImageRevealSliderComponent = {
2644
2653
  type: "string",
2645
2654
  display: {
2646
2655
  type: "text-input",
2647
- placeholder: "Enter link..."
2656
+ placeholder: "Enter link...",
2657
+ minWidth: 100,
2658
+ defaultWidth: 300,
2659
+ maxWidth: 500
2648
2660
  }
2649
2661
  }
2650
2662
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/sdk",
3
- "version": "1.24.4",
3
+ "version": "1.24.5-1",
4
4
  "description": "Generic SDK for use in public websites.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",