Skip to content

Commit

Permalink
Added Card Grid Options in Branding
Browse files Browse the repository at this point in the history
  • Loading branch information
maganuk committed Nov 27, 2023
1 parent d4fb7e9 commit f53f560
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@monocloud/admin-js",
"version": "0.8.0",
"version": "0.8.1",
"description": "MonoCloud Admin JavaScript SDK",
"keywords": [
"monocloud",
Expand Down
12 changes: 12 additions & 0 deletions src/models/branding-page-layout-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ export interface BrandingPageLayoutOptions {
* @memberof BrandingPageLayoutOptions
*/
card_position: string;
/**
* Specifies the column in which the card will be positioned on the grid
* @type {number}
* @memberof BrandingPageLayoutOptions
*/
card_grid_column: number;
/**
* Specifies how many columns the card will occupy on the grid
* @type {number}
* @memberof BrandingPageLayoutOptions
*/
card_grid_span: number;
/**
* Specifies the offset (in Pixels) used to position the card horizontally on the page
* @type {number}
Expand Down
12 changes: 12 additions & 0 deletions src/models/patch-branding-page-layout-options-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ export interface PatchBrandingPageLayoutOptionsRequest {
* @memberof PatchBrandingPageLayoutOptionsRequest
*/
card_position?: string;
/**
* Specifies the column in which the card will be positioned on the grid
* @type {number}
* @memberof PatchBrandingPageLayoutOptionsRequest
*/
card_grid_column?: number;
/**
* Specifies how many columns the card will occupy on the grid
* @type {number}
* @memberof PatchBrandingPageLayoutOptionsRequest
*/
card_grid_span?: number;
/**
* Specifies the offset (in Pixels) used to position the card horizontally on the page
* @type {number}
Expand Down

0 comments on commit f53f560

Please sign in to comment.