@mamindom/contracts 1.0.96 → 1.0.97

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.
@@ -283,6 +283,13 @@ export interface PublicBannerSlideButton {
283
283
  text: string;
284
284
  href: string;
285
285
  variant?: string | undefined;
286
+ backgroundColor?: string | undefined;
287
+ textColor?: string | undefined;
288
+ borderColor?: string | undefined;
289
+ borderRadius?: string | undefined;
290
+ fontSize?: string | undefined;
291
+ paddingX?: string | undefined;
292
+ paddingY?: string | undefined;
286
293
  }
287
294
  export interface PublicBannerSlideLink {
288
295
  text: string;
@@ -259,6 +259,13 @@ message PublicBannerSlideButton {
259
259
  string text = 1;
260
260
  string href = 2;
261
261
  optional string variant = 3;
262
+ optional string background_color = 4;
263
+ optional string text_color = 5;
264
+ optional string border_color = 6;
265
+ optional string border_radius = 7;
266
+ optional string font_size = 8;
267
+ optional string padding_x = 9;
268
+ optional string padding_y = 10;
262
269
  }
263
270
 
264
271
  message PublicBannerSlideLink {
package/gen/banner.ts CHANGED
@@ -302,6 +302,13 @@ export interface PublicBannerSlideButton {
302
302
  text: string;
303
303
  href: string;
304
304
  variant?: string | undefined;
305
+ backgroundColor?: string | undefined;
306
+ textColor?: string | undefined;
307
+ borderColor?: string | undefined;
308
+ borderRadius?: string | undefined;
309
+ fontSize?: string | undefined;
310
+ paddingX?: string | undefined;
311
+ paddingY?: string | undefined;
305
312
  }
306
313
 
307
314
  export interface PublicBannerSlideLink {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.96",
4
+ "version": "1.0.97",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -259,6 +259,13 @@ message PublicBannerSlideButton {
259
259
  string text = 1;
260
260
  string href = 2;
261
261
  optional string variant = 3;
262
+ optional string background_color = 4;
263
+ optional string text_color = 5;
264
+ optional string border_color = 6;
265
+ optional string border_radius = 7;
266
+ optional string font_size = 8;
267
+ optional string padding_x = 9;
268
+ optional string padding_y = 10;
262
269
  }
263
270
 
264
271
  message PublicBannerSlideLink {