@biggive/components-angular 1.0.115 → 1.0.117
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/esm2020/lib/components.module.mjs +2 -2
- package/esm2020/lib/stencil-generated/components.mjs +30 -4
- package/esm2020/lib/stencil-generated/index.mjs +2 -1
- package/fesm2015/biggive-components-angular.mjs +35 -9
- package/fesm2015/biggive-components-angular.mjs.map +1 -1
- package/fesm2020/biggive-components-angular.mjs +35 -9
- package/fesm2020/biggive-components-angular.mjs.map +1 -1
- package/lib/components.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +10 -1
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -377,7 +377,16 @@ export declare class BiggiveTotalizer {
|
|
|
377
377
|
protected el: HTMLElement;
|
|
378
378
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
379
379
|
static ɵfac: i0.ɵɵFactoryDeclaration<BiggiveTotalizer, never>;
|
|
380
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BiggiveTotalizer, "biggive-totalizer", never, { "
|
|
380
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BiggiveTotalizer, "biggive-totalizer", never, { "mainMessage": "mainMessage"; "primaryColour": "primaryColour"; "primaryTextColour": "primaryTextColour"; "secondaryColour": "secondaryColour"; "secondaryTextColour": "secondaryTextColour"; "spaceBelow": "spaceBelow"; "tickerItems": "tickerItems"; }, {}, never, ["*"], false>;
|
|
381
|
+
}
|
|
382
|
+
export declare interface BiggiveTotalizerTickerItem extends Components.BiggiveTotalizerTickerItem {
|
|
383
|
+
}
|
|
384
|
+
export declare class BiggiveTotalizerTickerItem {
|
|
385
|
+
protected z: NgZone;
|
|
386
|
+
protected el: HTMLElement;
|
|
387
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
388
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BiggiveTotalizerTickerItem, never>;
|
|
389
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BiggiveTotalizerTickerItem, "biggive-totalizer-ticker-item", never, { "figure": "figure"; "label": "label"; }, {}, never, ["*"], false>;
|
|
381
390
|
}
|
|
382
391
|
export declare interface BiggiveVideo extends Components.BiggiveVideo {
|
|
383
392
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.BiggiveArticleCard | typeof d.BiggiveBackToTop | typeof d.BiggiveBasicCard | typeof d.BiggiveBeneficiaryIcon | typeof d.BiggiveBoxedContent | typeof d.BiggiveBrandedImage | typeof d.BiggiveButton | typeof d.BiggiveCallToAction | typeof d.BiggiveCampaignCard | typeof d.BiggiveCampaignCardFilterGrid | typeof d.BiggiveCampaignHighlights | typeof d.BiggiveCategoryIcon | typeof d.BiggiveFooter | typeof d.BiggiveForm | typeof d.BiggiveFormFieldSelect | typeof d.BiggiveFormFieldSelectOption | typeof d.BiggiveFormattedText | typeof d.BiggiveGrid | typeof d.BiggiveHeader | typeof d.BiggiveHeading | typeof d.BiggiveHeroImage | typeof d.BiggiveIconGroup | typeof d.BiggiveImage | typeof d.BiggiveImageFeature | typeof d.BiggiveMiscIcon | typeof d.BiggiveNavGroup | typeof d.BiggiveNavItem | typeof d.BiggivePageColumn | typeof d.BiggivePageColumns | typeof d.BiggivePageSection | typeof d.BiggivePopup | typeof d.BiggiveProgressBar | typeof d.BiggiveQuote | typeof d.BiggiveSearch | typeof d.BiggiveSocialIcon | typeof d.BiggiveTab | typeof d.BiggiveTabbedContent | typeof d.BiggiveTextInput | typeof d.BiggiveTotalizer | typeof d.BiggiveVideo | typeof d.BiggiveVideoFeature)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.BiggiveArticleCard | typeof d.BiggiveBackToTop | typeof d.BiggiveBasicCard | typeof d.BiggiveBeneficiaryIcon | typeof d.BiggiveBoxedContent | typeof d.BiggiveBrandedImage | typeof d.BiggiveButton | typeof d.BiggiveCallToAction | typeof d.BiggiveCampaignCard | typeof d.BiggiveCampaignCardFilterGrid | typeof d.BiggiveCampaignHighlights | typeof d.BiggiveCategoryIcon | typeof d.BiggiveFooter | typeof d.BiggiveForm | typeof d.BiggiveFormFieldSelect | typeof d.BiggiveFormFieldSelectOption | typeof d.BiggiveFormattedText | typeof d.BiggiveGrid | typeof d.BiggiveHeader | typeof d.BiggiveHeading | typeof d.BiggiveHeroImage | typeof d.BiggiveIconGroup | typeof d.BiggiveImage | typeof d.BiggiveImageFeature | typeof d.BiggiveMiscIcon | typeof d.BiggiveNavGroup | typeof d.BiggiveNavItem | typeof d.BiggivePageColumn | typeof d.BiggivePageColumns | typeof d.BiggivePageSection | typeof d.BiggivePopup | typeof d.BiggiveProgressBar | typeof d.BiggiveQuote | typeof d.BiggiveSearch | typeof d.BiggiveSocialIcon | typeof d.BiggiveTab | typeof d.BiggiveTabbedContent | typeof d.BiggiveTextInput | typeof d.BiggiveTotalizer | typeof d.BiggiveTotalizerTickerItem | typeof d.BiggiveVideo | typeof d.BiggiveVideoFeature)[];
|
package/package.json
CHANGED