@mamindom/contracts 1.0.97 → 1.0.98

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.
@@ -263,6 +263,13 @@ export interface BannerSlideButton {
263
263
  };
264
264
  href: string;
265
265
  variant?: string | undefined;
266
+ backgroundColor?: string | undefined;
267
+ textColor?: string | undefined;
268
+ borderColor?: string | undefined;
269
+ borderRadius?: string | undefined;
270
+ fontSize?: string | undefined;
271
+ paddingX?: string | undefined;
272
+ paddingY?: string | undefined;
266
273
  }
267
274
  export interface BannerSlideButton_TextEntry {
268
275
  key: string;
@@ -247,6 +247,13 @@ message BannerSlideButton {
247
247
  map<string, string> text = 1;
248
248
  string href = 2;
249
249
  optional string variant = 3;
250
+ optional string background_color = 4;
251
+ optional string text_color = 5;
252
+ optional string border_color = 6;
253
+ optional string border_radius = 7;
254
+ optional string font_size = 8;
255
+ optional string padding_x = 9;
256
+ optional string padding_y = 10;
250
257
  }
251
258
 
252
259
  message BannerSlideLink {
package/gen/banner.ts CHANGED
@@ -280,6 +280,13 @@ export interface BannerSlideButton {
280
280
  text: { [key: string]: string };
281
281
  href: string;
282
282
  variant?: string | undefined;
283
+ backgroundColor?: string | undefined;
284
+ textColor?: string | undefined;
285
+ borderColor?: string | undefined;
286
+ borderRadius?: string | undefined;
287
+ fontSize?: string | undefined;
288
+ paddingX?: string | undefined;
289
+ paddingY?: string | undefined;
283
290
  }
284
291
 
285
292
  export interface BannerSlideButton_TextEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.97",
4
+ "version": "1.0.98",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -247,6 +247,13 @@ message BannerSlideButton {
247
247
  map<string, string> text = 1;
248
248
  string href = 2;
249
249
  optional string variant = 3;
250
+ optional string background_color = 4;
251
+ optional string text_color = 5;
252
+ optional string border_color = 6;
253
+ optional string border_radius = 7;
254
+ optional string font_size = 8;
255
+ optional string padding_x = 9;
256
+ optional string padding_y = 10;
250
257
  }
251
258
 
252
259
  message BannerSlideLink {