@temple-wallet/extension-ads 19.0.0-beta.0 → 19.0.0-beta.2
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.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +24 -24
- package/package.json +1 -1
- package/src/ads-actions/crypto-keywords.json +1 -464
- package/src/ads-actions/helpers.ts +3 -1
- package/src/ads-actions/process-youtube-home-ads.ts +2 -1
- package/src/ads-actions/process-youtube-search-ads.ts +3 -2
- package/src/ads-actions/process-youtube-watch-ads.ts +28 -26
- package/src/execute-ads-actions/ads-views/make-ads-tw-view.ts +1 -0
- package/src/execute-ads-actions/process-insert-ad-action.ts +3 -2
- package/src/execute-ads-actions/theming-params.ts +8 -3
- package/src/render-ads-stack.ts +4 -2
- package/src/types/ad-theme-params.ts +1 -0
- package/src/types/ads-actions.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ interface InsertAdActionProps extends Pick<RawPermanentAdPlacesRule, 'wrapperSty
|
|
|
166
166
|
adCategories: string[];
|
|
167
167
|
supportsTheming?: boolean;
|
|
168
168
|
fontSampleSelector?: string;
|
|
169
|
+
backgroundColor?: string;
|
|
169
170
|
showAdBeforeLoaded?: boolean;
|
|
170
171
|
}
|
|
171
172
|
interface ReplaceAllChildrenWithAdAction extends AdActionBase, InsertAdActionProps {
|
|
@@ -220,6 +221,7 @@ type AdsProviderName = keyof typeof AdsProviderTitle;
|
|
|
220
221
|
|
|
221
222
|
interface AdThemeParams {
|
|
222
223
|
themeColor?: string;
|
|
224
|
+
backgroundColor?: string;
|
|
223
225
|
fontSize?: number;
|
|
224
226
|
lineHeight?: number;
|
|
225
227
|
}
|