-
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.
Web-to-App Banners 1.8.1 Release (#39)
* Web-to-App banners: Cache config (#38) * Cache DDL config to mimimise api requests * Bump version * Update bundles * Make feature dependency checks stronger typed * Update bundles Co-authored-by: Rob Dick <r.dick@kumulos.com> * Web-to-App banners: support device safe areas (#37) * Add css support for notches * Apply notch support css based on prompt pos * Renaming to maintain kumulos scoping and class semantic * Remove redundant classes * Renaming * Create and apply sass variable for banner padding * Update dist bundle * Apply left/right inset padding * Bump version * Update bundles * Change access modifiers Co-authored-by: Rob Dick <r.dick@kumulos.com> Co-authored-by: cgwyllie <c.wyllie@kumulos.com> * Update bundles Co-authored-by: robdick <robdick101@gmail.com> Co-authored-by: Rob Dick <r.dick@kumulos.com>
- Loading branch information
1 parent
abd64f7
commit 5ea6ef3
Showing
16 changed files
with
116 additions
and
52 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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
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
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
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 @@ | ||
@supports(padding: unquote('max(0px)')) { | ||
.kumulos-safe-area-inset-pad-left { | ||
padding-left: unquote('max(' + $defaultBannerPadding + ', env(safe-area-inset-left))'); | ||
} | ||
.kumulos-safe-area-inset-pad-right { | ||
padding-right: unquote('max(' + $defaultBannerPadding + ', env(safe-area-inset-right))'); | ||
} | ||
.kumulos-safe-area-inset-pad-top { | ||
padding-top: unquote('max(' + $defaultBannerPadding + ', env(safe-area-inset-top))'); | ||
} | ||
.kumulos-safe-area-inset-pad-bottom { | ||
padding-bottom: unquote('max(' + $defaultBannerPadding + ', env(safe-area-inset-bottom))'); | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import { Context, PlatformConfig, DdlPromptConfig } from '.'; | ||
export declare function loadPlatformConfig(ctx: Context): Promise<PlatformConfig>; | ||
export declare function loadDdlConfig(ctx: Context): Promise<DdlPromptConfig[] | undefined>; | ||
export declare function deleteDdlBannerConfigFromCache(bannerUuid: string): Promise<void>; |
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