@biggive/components 0.0.1 → 0.0.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/biggive/biggive.esm.js +1 -0
- package/dist/biggive/index.esm.js +0 -0
- package/dist/biggive/p-7274e6de.entry.js +11 -0
- package/dist/biggive/p-d50699e8.js +2 -0
- package/dist/cjs/biggive-campaign-card_3.cjs.entry.js +426 -0
- package/dist/cjs/biggive.cjs.js +19 -0
- package/dist/cjs/index-c50e2a76.js +1149 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +14 -0
- package/dist/collection/components/biggive-campaign-card/biggive-campaign-card.css +199 -0
- package/dist/collection/components/biggive-campaign-card/biggive-campaign-card.js +385 -0
- package/dist/collection/components/biggive-grid/biggive-grid.css +14 -0
- package/dist/collection/components/biggive-grid/biggive-grid.js +15 -0
- package/dist/collection/components/demo-campaign-cards/demo-campaign-cards.css +3 -0
- package/dist/collection/components/demo-campaign-cards/demo-campaign-cards.js +14 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/util/campaign-groups.js +145 -0
- package/dist/components/biggive-campaign-card.d.ts +11 -0
- package/dist/components/biggive-campaign-card.js +6 -0
- package/dist/components/biggive-campaign-card2.js +424 -0
- package/dist/components/biggive-grid.d.ts +11 -0
- package/dist/components/biggive-grid.js +6 -0
- package/dist/components/biggive-grid2.js +30 -0
- package/dist/components/demo-campaign-cards.d.ts +11 -0
- package/dist/components/demo-campaign-cards.js +45 -0
- package/dist/components/index.d.ts +24 -0
- package/dist/components/index.js +4 -0
- package/dist/esm/biggive-campaign-card_3.entry.js +420 -0
- package/dist/esm/biggive.js +17 -0
- package/dist/esm/index-900201cf.js +1124 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/types/components/biggive-campaign-card/biggive-campaign-card.d.ts +60 -0
- package/dist/types/components/biggive-grid/biggive-grid.d.ts +3 -0
- package/dist/types/components/demo-campaign-cards/demo-campaign-cards.d.ts +3 -0
- package/dist/types/components.d.ts +159 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/util/campaign-groups.d.ts +13 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
export namespace Components {
|
|
9
|
+
interface BiggiveCampaignCard {
|
|
10
|
+
/**
|
|
11
|
+
* @param banner Full URL of a banner image.
|
|
12
|
+
*/
|
|
13
|
+
"banner": string;
|
|
14
|
+
/**
|
|
15
|
+
* @param beneficiaries Pipe (|) -separated list of full category labels.
|
|
16
|
+
*/
|
|
17
|
+
"beneficiaries": string;
|
|
18
|
+
/**
|
|
19
|
+
* @param callToActionLabel Text for the link to `callToActionUrl`.
|
|
20
|
+
*/
|
|
21
|
+
"callToActionLabel": string;
|
|
22
|
+
/**
|
|
23
|
+
* @param callToActionUrl Full URL of a call to action.
|
|
24
|
+
*/
|
|
25
|
+
"callToActionUrl": string;
|
|
26
|
+
/**
|
|
27
|
+
* @param organisationName Display name of the charity's specific time-bound fundraising campaign.
|
|
28
|
+
*/
|
|
29
|
+
"campaignTitle": string;
|
|
30
|
+
/**
|
|
31
|
+
* @param campaignType e.g. "Match Funded".
|
|
32
|
+
*/
|
|
33
|
+
"campaignType": string;
|
|
34
|
+
/**
|
|
35
|
+
* @param categories Pipe (|) -separated list of full category labels.
|
|
36
|
+
*/
|
|
37
|
+
"categories": string;
|
|
38
|
+
/**
|
|
39
|
+
* @param number (Ceiling of) whole number of days until campaign end.
|
|
40
|
+
*/
|
|
41
|
+
"daysRemaining": number;
|
|
42
|
+
/**
|
|
43
|
+
* @param totalFundsRaised Match funds not yet used or reserved, in major unit of currency e.g. pounds GBP.
|
|
44
|
+
*/
|
|
45
|
+
"matchFundsRemaining": number;
|
|
46
|
+
/**
|
|
47
|
+
* @param organisationName Display name of the charity or non-profit.
|
|
48
|
+
*/
|
|
49
|
+
"organisationName": string;
|
|
50
|
+
/**
|
|
51
|
+
* @param totalFundsRaised Target for the campaign including matching but excluding any tax relief, in major unit of currency e.g. pounds GBP.
|
|
52
|
+
*/
|
|
53
|
+
"target": number;
|
|
54
|
+
/**
|
|
55
|
+
* @param totalFundsRaised Total the campaign has raised so far including matching but excluding any tax relief, in major unit of currency e.g. pounds GBP.
|
|
56
|
+
*/
|
|
57
|
+
"totalFundsRaised": number;
|
|
58
|
+
}
|
|
59
|
+
interface BiggiveGrid {
|
|
60
|
+
}
|
|
61
|
+
interface DemoCampaignCards {
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
declare global {
|
|
65
|
+
interface HTMLBiggiveCampaignCardElement extends Components.BiggiveCampaignCard, HTMLStencilElement {
|
|
66
|
+
}
|
|
67
|
+
var HTMLBiggiveCampaignCardElement: {
|
|
68
|
+
prototype: HTMLBiggiveCampaignCardElement;
|
|
69
|
+
new (): HTMLBiggiveCampaignCardElement;
|
|
70
|
+
};
|
|
71
|
+
interface HTMLBiggiveGridElement extends Components.BiggiveGrid, HTMLStencilElement {
|
|
72
|
+
}
|
|
73
|
+
var HTMLBiggiveGridElement: {
|
|
74
|
+
prototype: HTMLBiggiveGridElement;
|
|
75
|
+
new (): HTMLBiggiveGridElement;
|
|
76
|
+
};
|
|
77
|
+
interface HTMLDemoCampaignCardsElement extends Components.DemoCampaignCards, HTMLStencilElement {
|
|
78
|
+
}
|
|
79
|
+
var HTMLDemoCampaignCardsElement: {
|
|
80
|
+
prototype: HTMLDemoCampaignCardsElement;
|
|
81
|
+
new (): HTMLDemoCampaignCardsElement;
|
|
82
|
+
};
|
|
83
|
+
interface HTMLElementTagNameMap {
|
|
84
|
+
"biggive-campaign-card": HTMLBiggiveCampaignCardElement;
|
|
85
|
+
"biggive-grid": HTMLBiggiveGridElement;
|
|
86
|
+
"demo-campaign-cards": HTMLDemoCampaignCardsElement;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
declare namespace LocalJSX {
|
|
90
|
+
interface BiggiveCampaignCard {
|
|
91
|
+
/**
|
|
92
|
+
* @param banner Full URL of a banner image.
|
|
93
|
+
*/
|
|
94
|
+
"banner"?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @param beneficiaries Pipe (|) -separated list of full category labels.
|
|
97
|
+
*/
|
|
98
|
+
"beneficiaries"?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @param callToActionLabel Text for the link to `callToActionUrl`.
|
|
101
|
+
*/
|
|
102
|
+
"callToActionLabel"?: string;
|
|
103
|
+
/**
|
|
104
|
+
* @param callToActionUrl Full URL of a call to action.
|
|
105
|
+
*/
|
|
106
|
+
"callToActionUrl"?: string;
|
|
107
|
+
/**
|
|
108
|
+
* @param organisationName Display name of the charity's specific time-bound fundraising campaign.
|
|
109
|
+
*/
|
|
110
|
+
"campaignTitle"?: string;
|
|
111
|
+
/**
|
|
112
|
+
* @param campaignType e.g. "Match Funded".
|
|
113
|
+
*/
|
|
114
|
+
"campaignType"?: string;
|
|
115
|
+
/**
|
|
116
|
+
* @param categories Pipe (|) -separated list of full category labels.
|
|
117
|
+
*/
|
|
118
|
+
"categories"?: string;
|
|
119
|
+
/**
|
|
120
|
+
* @param number (Ceiling of) whole number of days until campaign end.
|
|
121
|
+
*/
|
|
122
|
+
"daysRemaining"?: number;
|
|
123
|
+
/**
|
|
124
|
+
* @param totalFundsRaised Match funds not yet used or reserved, in major unit of currency e.g. pounds GBP.
|
|
125
|
+
*/
|
|
126
|
+
"matchFundsRemaining"?: number;
|
|
127
|
+
/**
|
|
128
|
+
* @param organisationName Display name of the charity or non-profit.
|
|
129
|
+
*/
|
|
130
|
+
"organisationName"?: string;
|
|
131
|
+
/**
|
|
132
|
+
* @param totalFundsRaised Target for the campaign including matching but excluding any tax relief, in major unit of currency e.g. pounds GBP.
|
|
133
|
+
*/
|
|
134
|
+
"target"?: number;
|
|
135
|
+
/**
|
|
136
|
+
* @param totalFundsRaised Total the campaign has raised so far including matching but excluding any tax relief, in major unit of currency e.g. pounds GBP.
|
|
137
|
+
*/
|
|
138
|
+
"totalFundsRaised"?: number;
|
|
139
|
+
}
|
|
140
|
+
interface BiggiveGrid {
|
|
141
|
+
}
|
|
142
|
+
interface DemoCampaignCards {
|
|
143
|
+
}
|
|
144
|
+
interface IntrinsicElements {
|
|
145
|
+
"biggive-campaign-card": BiggiveCampaignCard;
|
|
146
|
+
"biggive-grid": BiggiveGrid;
|
|
147
|
+
"demo-campaign-cards": DemoCampaignCards;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
export { LocalJSX as JSX };
|
|
151
|
+
declare module "@stencil/core" {
|
|
152
|
+
export namespace JSX {
|
|
153
|
+
interface IntrinsicElements {
|
|
154
|
+
"biggive-campaign-card": LocalJSX.BiggiveCampaignCard & JSXBase.HTMLAttributes<HTMLBiggiveCampaignCardElement>;
|
|
155
|
+
"biggive-grid": LocalJSX.BiggiveGrid & JSXBase.HTMLAttributes<HTMLBiggiveGridElement>;
|
|
156
|
+
"demo-campaign-cards": LocalJSX.DemoCampaignCards & JSXBase.HTMLAttributes<HTMLDemoCampaignCardsElement>;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Components, JSX } from './components';
|