@biggive/components 1.0.97 → 1.0.98
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/biggive/biggive.esm.js +1 -1
- package/dist/biggive/p-2330ffc8.entry.js +1 -0
- package/dist/biggive/p-42c41213.entry.js +1 -0
- package/dist/biggive/p-9978ef51.entry.js +1 -0
- package/dist/cjs/biggive-back-to-top_23.cjs.entry.js +73 -31
- package/dist/cjs/biggive-nav-group.cjs.entry.js +20 -0
- package/dist/cjs/biggive-nav-item.cjs.entry.js +22 -0
- package/dist/cjs/biggive.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -0
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.css +4 -4
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.js +267 -30
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.stories.js +10 -5
- package/dist/collection/components/biggive-campaign-highlights/biggive-campaign-highlights.css +2 -0
- package/dist/collection/components/biggive-form-field-select/biggive-form-field-select.js +41 -10
- package/dist/collection/components/biggive-header/biggive-header.stories.js +10 -1
- package/dist/collection/components/biggive-hero-image/biggive-hero-image.css +2 -2
- package/dist/collection/components/biggive-hero-image/biggive-hero-image.js +39 -1
- package/dist/collection/components/biggive-hero-image/biggive-hero-image.stories.js +15 -0
- package/dist/collection/components/biggive-nav-group/biggive-nav-group.css +517 -0
- package/dist/collection/components/biggive-nav-group/biggive-nav-group.js +43 -0
- package/dist/collection/components/biggive-nav-item/biggive-nav-item.css +522 -0
- package/dist/collection/components/biggive-nav-item/biggive-nav-item.js +81 -0
- package/dist/collection/components/biggive-social-icon/biggive-social-icon.js +1 -1
- package/dist/components/biggive-campaign-card-filter-grid.js +77 -29
- package/dist/components/biggive-campaign-highlights.js +1 -1
- package/dist/components/biggive-form-field-select2.js +5 -4
- package/dist/components/biggive-hero-image.js +6 -2
- package/dist/components/biggive-nav-group.d.ts +11 -0
- package/dist/components/biggive-nav-group.js +36 -0
- package/dist/components/biggive-nav-item.d.ts +11 -0
- package/dist/components/biggive-nav-item.js +40 -0
- package/dist/components/biggive-social-icon.js +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +2 -0
- package/dist/esm/biggive-back-to-top_23.entry.js +74 -32
- package/dist/esm/biggive-nav-group.entry.js +16 -0
- package/dist/esm/biggive-nav-item.entry.js +18 -0
- package/dist/esm/biggive.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.d.ts +30 -0
- package/dist/types/components/biggive-form-field-select/biggive-form-field-select.d.ts +1 -1
- package/dist/types/components/biggive-hero-image/biggive-hero-image.d.ts +8 -0
- package/dist/types/components/biggive-hero-image/biggive-hero-image.stories.d.ts +9 -0
- package/dist/types/components/biggive-nav-group/biggive-nav-group.d.ts +7 -0
- package/dist/types/components/biggive-nav-item/biggive-nav-item.d.ts +15 -0
- package/dist/types/components.d.ts +131 -1
- package/hydrate/index.js +141 -36
- package/package.json +1 -1
- package/dist/biggive/p-da0a4725.entry.js +0 -1
|
@@ -345,18 +345,40 @@ export namespace Components {
|
|
|
345
345
|
"spaceBelow": number;
|
|
346
346
|
}
|
|
347
347
|
interface BiggiveCampaignCardFilterGrid {
|
|
348
|
+
/**
|
|
349
|
+
* JSON array of beneficary key/values
|
|
350
|
+
*/
|
|
351
|
+
"beneficaryOptions": string;
|
|
348
352
|
/**
|
|
349
353
|
* Defines the text on the search button
|
|
350
354
|
*/
|
|
351
355
|
"buttonText": string;
|
|
356
|
+
/**
|
|
357
|
+
* JSON array of category key/values
|
|
358
|
+
*/
|
|
359
|
+
"categoryOptions": string;
|
|
360
|
+
"filterBeneficary": string;
|
|
361
|
+
"filterCategory": string;
|
|
362
|
+
"filterFunding": string;
|
|
363
|
+
"filterLocation": string;
|
|
364
|
+
/**
|
|
365
|
+
* JSON array of funding key/values
|
|
366
|
+
*/
|
|
367
|
+
"fundingOptions": string;
|
|
352
368
|
/**
|
|
353
369
|
* Intro
|
|
354
370
|
*/
|
|
355
371
|
"intro": string;
|
|
372
|
+
/**
|
|
373
|
+
* JSON array of location key/values
|
|
374
|
+
*/
|
|
375
|
+
"locationOptions": string;
|
|
356
376
|
/**
|
|
357
377
|
* Defines the text displayed as the placeholder in the input field before the user types anything
|
|
358
378
|
*/
|
|
359
379
|
"placeholderText": string;
|
|
380
|
+
"searchText": string;
|
|
381
|
+
"sortBy": string;
|
|
360
382
|
/**
|
|
361
383
|
* Space below component
|
|
362
384
|
*/
|
|
@@ -447,6 +469,8 @@ export namespace Components {
|
|
|
447
469
|
* Placeholder
|
|
448
470
|
*/
|
|
449
471
|
"placeholder": string;
|
|
472
|
+
"selectedLabel": string;
|
|
473
|
+
"selectedValue": string;
|
|
450
474
|
/**
|
|
451
475
|
* Space below component
|
|
452
476
|
*/
|
|
@@ -551,6 +575,14 @@ export namespace Components {
|
|
|
551
575
|
* Full URL of a main hero image.
|
|
552
576
|
*/
|
|
553
577
|
"mainImage": string;
|
|
578
|
+
/**
|
|
579
|
+
* Horizontal alignment of image
|
|
580
|
+
*/
|
|
581
|
+
"mainImageAlignHorizontal": string;
|
|
582
|
+
/**
|
|
583
|
+
* Vertical alignment of image
|
|
584
|
+
*/
|
|
585
|
+
"mainImageAlignVertical": string;
|
|
554
586
|
/**
|
|
555
587
|
* Hero image title, typically the page.
|
|
556
588
|
*/
|
|
@@ -684,6 +716,26 @@ export namespace Components {
|
|
|
684
716
|
*/
|
|
685
717
|
"url": string;
|
|
686
718
|
}
|
|
719
|
+
interface BiggiveNavGroup {
|
|
720
|
+
/**
|
|
721
|
+
* Inline
|
|
722
|
+
*/
|
|
723
|
+
"inline": boolean;
|
|
724
|
+
}
|
|
725
|
+
interface BiggiveNavItem {
|
|
726
|
+
/**
|
|
727
|
+
* URL
|
|
728
|
+
*/
|
|
729
|
+
"iconColour": string;
|
|
730
|
+
/**
|
|
731
|
+
* Label
|
|
732
|
+
*/
|
|
733
|
+
"label": string;
|
|
734
|
+
/**
|
|
735
|
+
* URL
|
|
736
|
+
*/
|
|
737
|
+
"url": string;
|
|
738
|
+
}
|
|
687
739
|
interface BiggivePageColumn {
|
|
688
740
|
}
|
|
689
741
|
interface BiggivePageColumns {
|
|
@@ -898,6 +950,10 @@ export namespace Components {
|
|
|
898
950
|
"videoUrl": string;
|
|
899
951
|
}
|
|
900
952
|
}
|
|
953
|
+
export interface BiggiveCampaignCardFilterGridCustomEvent<T> extends CustomEvent<T> {
|
|
954
|
+
detail: T;
|
|
955
|
+
target: HTMLBiggiveCampaignCardFilterGridElement;
|
|
956
|
+
}
|
|
901
957
|
export interface BiggiveFormFieldSelectCustomEvent<T> extends CustomEvent<T> {
|
|
902
958
|
detail: T;
|
|
903
959
|
target: HTMLBiggiveFormFieldSelectElement;
|
|
@@ -1061,6 +1117,18 @@ declare global {
|
|
|
1061
1117
|
prototype: HTMLBiggiveMiscIconElement;
|
|
1062
1118
|
new (): HTMLBiggiveMiscIconElement;
|
|
1063
1119
|
};
|
|
1120
|
+
interface HTMLBiggiveNavGroupElement extends Components.BiggiveNavGroup, HTMLStencilElement {
|
|
1121
|
+
}
|
|
1122
|
+
var HTMLBiggiveNavGroupElement: {
|
|
1123
|
+
prototype: HTMLBiggiveNavGroupElement;
|
|
1124
|
+
new (): HTMLBiggiveNavGroupElement;
|
|
1125
|
+
};
|
|
1126
|
+
interface HTMLBiggiveNavItemElement extends Components.BiggiveNavItem, HTMLStencilElement {
|
|
1127
|
+
}
|
|
1128
|
+
var HTMLBiggiveNavItemElement: {
|
|
1129
|
+
prototype: HTMLBiggiveNavItemElement;
|
|
1130
|
+
new (): HTMLBiggiveNavItemElement;
|
|
1131
|
+
};
|
|
1064
1132
|
interface HTMLBiggivePageColumnElement extends Components.BiggivePageColumn, HTMLStencilElement {
|
|
1065
1133
|
}
|
|
1066
1134
|
var HTMLBiggivePageColumnElement: {
|
|
@@ -1171,6 +1239,8 @@ declare global {
|
|
|
1171
1239
|
"biggive-image": HTMLBiggiveImageElement;
|
|
1172
1240
|
"biggive-image-feature": HTMLBiggiveImageFeatureElement;
|
|
1173
1241
|
"biggive-misc-icon": HTMLBiggiveMiscIconElement;
|
|
1242
|
+
"biggive-nav-group": HTMLBiggiveNavGroupElement;
|
|
1243
|
+
"biggive-nav-item": HTMLBiggiveNavItemElement;
|
|
1174
1244
|
"biggive-page-column": HTMLBiggivePageColumnElement;
|
|
1175
1245
|
"biggive-page-columns": HTMLBiggivePageColumnsElement;
|
|
1176
1246
|
"biggive-page-section": HTMLBiggivePageSectionElement;
|
|
@@ -1527,18 +1597,44 @@ declare namespace LocalJSX {
|
|
|
1527
1597
|
"spaceBelow"?: number;
|
|
1528
1598
|
}
|
|
1529
1599
|
interface BiggiveCampaignCardFilterGrid {
|
|
1600
|
+
/**
|
|
1601
|
+
* JSON array of beneficary key/values
|
|
1602
|
+
*/
|
|
1603
|
+
"beneficaryOptions"?: string;
|
|
1530
1604
|
/**
|
|
1531
1605
|
* Defines the text on the search button
|
|
1532
1606
|
*/
|
|
1533
1607
|
"buttonText"?: string;
|
|
1608
|
+
/**
|
|
1609
|
+
* JSON array of category key/values
|
|
1610
|
+
*/
|
|
1611
|
+
"categoryOptions"?: string;
|
|
1612
|
+
"filterBeneficary"?: string;
|
|
1613
|
+
"filterCategory"?: string;
|
|
1614
|
+
"filterFunding"?: string;
|
|
1615
|
+
"filterLocation"?: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* JSON array of funding key/values
|
|
1618
|
+
*/
|
|
1619
|
+
"fundingOptions"?: string;
|
|
1534
1620
|
/**
|
|
1535
1621
|
* Intro
|
|
1536
1622
|
*/
|
|
1537
1623
|
"intro"?: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* JSON array of location key/values
|
|
1626
|
+
*/
|
|
1627
|
+
"locationOptions"?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* This event `doChange` event is emitted and propogates to the parent component which handles it
|
|
1630
|
+
*/
|
|
1631
|
+
"onDoSearchAndFilterUpdate"?: (event: BiggiveCampaignCardFilterGridCustomEvent<object>) => void;
|
|
1538
1632
|
/**
|
|
1539
1633
|
* Defines the text displayed as the placeholder in the input field before the user types anything
|
|
1540
1634
|
*/
|
|
1541
1635
|
"placeholderText"?: string;
|
|
1636
|
+
"searchText"?: string;
|
|
1637
|
+
"sortBy"?: string;
|
|
1542
1638
|
/**
|
|
1543
1639
|
* Space below component
|
|
1544
1640
|
*/
|
|
@@ -1628,11 +1724,13 @@ declare namespace LocalJSX {
|
|
|
1628
1724
|
/**
|
|
1629
1725
|
* This event `doChange` event is emitted and propogates to the parent component which handles it
|
|
1630
1726
|
*/
|
|
1631
|
-
"
|
|
1727
|
+
"onDoSelectChange"?: (event: BiggiveFormFieldSelectCustomEvent<object>) => void;
|
|
1632
1728
|
/**
|
|
1633
1729
|
* Placeholder
|
|
1634
1730
|
*/
|
|
1635
1731
|
"placeholder"?: string;
|
|
1732
|
+
"selectedLabel"?: string;
|
|
1733
|
+
"selectedValue"?: string;
|
|
1636
1734
|
/**
|
|
1637
1735
|
* Space below component
|
|
1638
1736
|
*/
|
|
@@ -1741,6 +1839,14 @@ declare namespace LocalJSX {
|
|
|
1741
1839
|
* Full URL of a main hero image.
|
|
1742
1840
|
*/
|
|
1743
1841
|
"mainImage"?: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* Horizontal alignment of image
|
|
1844
|
+
*/
|
|
1845
|
+
"mainImageAlignHorizontal"?: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* Vertical alignment of image
|
|
1848
|
+
*/
|
|
1849
|
+
"mainImageAlignVertical"?: string;
|
|
1744
1850
|
/**
|
|
1745
1851
|
* Hero image title, typically the page.
|
|
1746
1852
|
*/
|
|
@@ -1874,6 +1980,26 @@ declare namespace LocalJSX {
|
|
|
1874
1980
|
*/
|
|
1875
1981
|
"url"?: string;
|
|
1876
1982
|
}
|
|
1983
|
+
interface BiggiveNavGroup {
|
|
1984
|
+
/**
|
|
1985
|
+
* Inline
|
|
1986
|
+
*/
|
|
1987
|
+
"inline"?: boolean;
|
|
1988
|
+
}
|
|
1989
|
+
interface BiggiveNavItem {
|
|
1990
|
+
/**
|
|
1991
|
+
* URL
|
|
1992
|
+
*/
|
|
1993
|
+
"iconColour"?: string;
|
|
1994
|
+
/**
|
|
1995
|
+
* Label
|
|
1996
|
+
*/
|
|
1997
|
+
"label"?: string;
|
|
1998
|
+
/**
|
|
1999
|
+
* URL
|
|
2000
|
+
*/
|
|
2001
|
+
"url"?: string;
|
|
2002
|
+
}
|
|
1877
2003
|
interface BiggivePageColumn {
|
|
1878
2004
|
}
|
|
1879
2005
|
interface BiggivePageColumns {
|
|
@@ -2116,6 +2242,8 @@ declare namespace LocalJSX {
|
|
|
2116
2242
|
"biggive-image": BiggiveImage;
|
|
2117
2243
|
"biggive-image-feature": BiggiveImageFeature;
|
|
2118
2244
|
"biggive-misc-icon": BiggiveMiscIcon;
|
|
2245
|
+
"biggive-nav-group": BiggiveNavGroup;
|
|
2246
|
+
"biggive-nav-item": BiggiveNavItem;
|
|
2119
2247
|
"biggive-page-column": BiggivePageColumn;
|
|
2120
2248
|
"biggive-page-columns": BiggivePageColumns;
|
|
2121
2249
|
"biggive-page-section": BiggivePageSection;
|
|
@@ -2161,6 +2289,8 @@ declare module "@stencil/core" {
|
|
|
2161
2289
|
"biggive-image": LocalJSX.BiggiveImage & JSXBase.HTMLAttributes<HTMLBiggiveImageElement>;
|
|
2162
2290
|
"biggive-image-feature": LocalJSX.BiggiveImageFeature & JSXBase.HTMLAttributes<HTMLBiggiveImageFeatureElement>;
|
|
2163
2291
|
"biggive-misc-icon": LocalJSX.BiggiveMiscIcon & JSXBase.HTMLAttributes<HTMLBiggiveMiscIconElement>;
|
|
2292
|
+
"biggive-nav-group": LocalJSX.BiggiveNavGroup & JSXBase.HTMLAttributes<HTMLBiggiveNavGroupElement>;
|
|
2293
|
+
"biggive-nav-item": LocalJSX.BiggiveNavItem & JSXBase.HTMLAttributes<HTMLBiggiveNavItemElement>;
|
|
2164
2294
|
"biggive-page-column": LocalJSX.BiggivePageColumn & JSXBase.HTMLAttributes<HTMLBiggivePageColumnElement>;
|
|
2165
2295
|
"biggive-page-columns": LocalJSX.BiggivePageColumns & JSXBase.HTMLAttributes<HTMLBiggivePageColumnsElement>;
|
|
2166
2296
|
"biggive-page-section": LocalJSX.BiggivePageSection & JSXBase.HTMLAttributes<HTMLBiggivePageSectionElement>;
|