@biggive/components-angular 202308180855.0.0 → 202308181645.0.0
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.
|
@@ -173,6 +173,20 @@ export declare class BiggiveCookieBanner {
|
|
|
173
173
|
static ɵcmp: i0.ɵɵComponentDeclaration<BiggiveCookieBanner, "biggive-cookie-banner", never, { "blogUriPrefix": { "alias": "blogUriPrefix"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
174
174
|
}
|
|
175
175
|
export declare interface BiggiveCookieBanner extends Components.BiggiveCookieBanner {
|
|
176
|
+
/**
|
|
177
|
+
* Indicates that the user accepts cookies for any purpose, without discrimination.
|
|
178
|
+
*/
|
|
179
|
+
cookieBannerAcceptAllSelected: EventEmitter<CustomEvent<void>>;
|
|
180
|
+
/**
|
|
181
|
+
* Indicates that the user has made a selection of cookies purpose to accept.
|
|
182
|
+
|
|
183
|
+
Event data contains an array of the type of cookie purposes the user consents to. Currently,
|
|
184
|
+
it is only possible to consent to marketing cookies, so it will simply be ['marketing'] or [] but
|
|
185
|
+
in future other types may be possible.
|
|
186
|
+
*/
|
|
187
|
+
cookieBannerSavePreferencesSelected: EventEmitter<CustomEvent<{
|
|
188
|
+
marketing: Boolean;
|
|
189
|
+
}>>;
|
|
176
190
|
}
|
|
177
191
|
export declare class BiggiveFilteredCarousel {
|
|
178
192
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@biggive/components-angular",
|
|
3
3
|
"description": "Angular-packaged components for @biggive apps",
|
|
4
4
|
"_comment": "Version number below is automatically replaced during CircleCI build.",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "202308181645.0.0",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@angular/common": "^15.2.9||^16.1.0",
|
|
8
8
|
"@angular/core": "^15.2.9||^16.1.0",
|