@cntrl-site/sdk 1.24.5-2 → 1.24.5-3

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.
@@ -191,6 +191,16 @@ export declare const ControlImageRevealSliderComponent: {
191
191
  };
192
192
  required: string[];
193
193
  };
194
+ link: {
195
+ type: string;
196
+ display: {
197
+ type: string;
198
+ placeholder: string;
199
+ minWidth: number;
200
+ defaultWidth: number;
201
+ maxWidth: number;
202
+ };
203
+ };
194
204
  };
195
205
  required: string[];
196
206
  };
package/dist/index.js CHANGED
@@ -2661,6 +2661,16 @@ const ControlImageRevealSliderComponent = {
2661
2661
  }
2662
2662
  },
2663
2663
  required: ["url", "name"]
2664
+ },
2665
+ link: {
2666
+ type: "string",
2667
+ display: {
2668
+ type: "text-input",
2669
+ placeholder: "Enter link...",
2670
+ minWidth: 100,
2671
+ defaultWidth: 300,
2672
+ maxWidth: 500
2673
+ }
2664
2674
  }
2665
2675
  },
2666
2676
  required: ["image"]
package/dist/index.mjs CHANGED
@@ -2642,6 +2642,16 @@ const ControlImageRevealSliderComponent = {
2642
2642
  }
2643
2643
  },
2644
2644
  required: ["url", "name"]
2645
+ },
2646
+ link: {
2647
+ type: "string",
2648
+ display: {
2649
+ type: "text-input",
2650
+ placeholder: "Enter link...",
2651
+ minWidth: 100,
2652
+ defaultWidth: 300,
2653
+ maxWidth: 500
2654
+ }
2645
2655
  }
2646
2656
  },
2647
2657
  required: ["image"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/sdk",
3
- "version": "1.24.5-2",
3
+ "version": "1.24.5-3",
4
4
  "description": "Generic SDK for use in public websites.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",