-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #346 from oneblink/ON-45509
ON-45509 # Added styles to FormsAppEnvironment
- Loading branch information
Showing
10 changed files
with
103 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
|
||
## Unreleased | ||
|
||
### Added | ||
|
||
- `styles` to `FormsAppEnvironment` | ||
|
||
## [10.0.0] - 2024-12-11 | ||
|
||
### Removed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace OneBlink.SDK.Model | ||
{ | ||
public class FormsAppEnvironmentStyles : FormsAppEnvironmentStylesBase | ||
{ | ||
public string logoUrl | ||
{ | ||
get; set; | ||
} | ||
public FormsListStylesButtons buttons | ||
{ | ||
get; set; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
namespace OneBlink.SDK.Model | ||
{ | ||
public class FormsAppEnvironmentStylesBase | ||
{ | ||
public string foregroundColour | ||
{ | ||
get; set; | ||
} | ||
public string highlightColour | ||
{ | ||
get; set; | ||
} | ||
public string contrastColour | ||
{ | ||
get; set; | ||
} | ||
public string customCss | ||
{ | ||
get; set; | ||
} | ||
} | ||
|
||
public class FormsAppStylesBase : FormsAppEnvironmentStylesBase | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace OneBlink.SDK.Model | ||
{ | ||
public class FormsAppEnvironmentStylesButton | ||
{ | ||
public string icon | ||
{ | ||
get; set; | ||
} | ||
public string label | ||
{ | ||
get; set; | ||
} | ||
} | ||
|
||
public class FormsListStylesButton : FormsAppEnvironmentStylesButton | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
namespace OneBlink.SDK.Model | ||
{ | ||
public class FormsAppEnvironmentStylesButtons | ||
{ | ||
public FormsListStylesButton submit | ||
{ | ||
get; set; | ||
} | ||
public FormsListStylesButton cancel | ||
{ | ||
get; set; | ||
} | ||
public FormsListStylesButton saveDraft | ||
{ | ||
get; set; | ||
} | ||
public FormsListStylesButton cancelPromptYes | ||
{ | ||
get; set; | ||
} | ||
public FormsListStylesButton cancelPromptNo | ||
{ | ||
get; set; | ||
} | ||
} | ||
|
||
public class FormsListStylesButtons : FormsAppEnvironmentStylesButtons | ||
{ | ||
} | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.