@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.
Files changed (50) hide show
  1. package/dist/biggive/biggive.esm.js +1 -1
  2. package/dist/biggive/p-2330ffc8.entry.js +1 -0
  3. package/dist/biggive/p-42c41213.entry.js +1 -0
  4. package/dist/biggive/p-9978ef51.entry.js +1 -0
  5. package/dist/cjs/biggive-back-to-top_23.cjs.entry.js +73 -31
  6. package/dist/cjs/biggive-nav-group.cjs.entry.js +20 -0
  7. package/dist/cjs/biggive-nav-item.cjs.entry.js +22 -0
  8. package/dist/cjs/biggive.cjs.js +1 -1
  9. package/dist/cjs/loader.cjs.js +1 -1
  10. package/dist/collection/collection-manifest.json +2 -0
  11. package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.css +4 -4
  12. package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.js +267 -30
  13. package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.stories.js +10 -5
  14. package/dist/collection/components/biggive-campaign-highlights/biggive-campaign-highlights.css +2 -0
  15. package/dist/collection/components/biggive-form-field-select/biggive-form-field-select.js +41 -10
  16. package/dist/collection/components/biggive-header/biggive-header.stories.js +10 -1
  17. package/dist/collection/components/biggive-hero-image/biggive-hero-image.css +2 -2
  18. package/dist/collection/components/biggive-hero-image/biggive-hero-image.js +39 -1
  19. package/dist/collection/components/biggive-hero-image/biggive-hero-image.stories.js +15 -0
  20. package/dist/collection/components/biggive-nav-group/biggive-nav-group.css +517 -0
  21. package/dist/collection/components/biggive-nav-group/biggive-nav-group.js +43 -0
  22. package/dist/collection/components/biggive-nav-item/biggive-nav-item.css +522 -0
  23. package/dist/collection/components/biggive-nav-item/biggive-nav-item.js +81 -0
  24. package/dist/collection/components/biggive-social-icon/biggive-social-icon.js +1 -1
  25. package/dist/components/biggive-campaign-card-filter-grid.js +77 -29
  26. package/dist/components/biggive-campaign-highlights.js +1 -1
  27. package/dist/components/biggive-form-field-select2.js +5 -4
  28. package/dist/components/biggive-hero-image.js +6 -2
  29. package/dist/components/biggive-nav-group.d.ts +11 -0
  30. package/dist/components/biggive-nav-group.js +36 -0
  31. package/dist/components/biggive-nav-item.d.ts +11 -0
  32. package/dist/components/biggive-nav-item.js +40 -0
  33. package/dist/components/biggive-social-icon.js +1 -1
  34. package/dist/components/index.d.ts +2 -0
  35. package/dist/components/index.js +2 -0
  36. package/dist/esm/biggive-back-to-top_23.entry.js +74 -32
  37. package/dist/esm/biggive-nav-group.entry.js +16 -0
  38. package/dist/esm/biggive-nav-item.entry.js +18 -0
  39. package/dist/esm/biggive.js +1 -1
  40. package/dist/esm/loader.js +1 -1
  41. package/dist/types/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.d.ts +30 -0
  42. package/dist/types/components/biggive-form-field-select/biggive-form-field-select.d.ts +1 -1
  43. package/dist/types/components/biggive-hero-image/biggive-hero-image.d.ts +8 -0
  44. package/dist/types/components/biggive-hero-image/biggive-hero-image.stories.d.ts +9 -0
  45. package/dist/types/components/biggive-nav-group/biggive-nav-group.d.ts +7 -0
  46. package/dist/types/components/biggive-nav-item/biggive-nav-item.d.ts +15 -0
  47. package/dist/types/components.d.ts +131 -1
  48. package/hydrate/index.js +141 -36
  49. package/package.json +1 -1
  50. package/dist/biggive/p-da0a4725.entry.js +0 -1
@@ -0,0 +1,517 @@
1
+ body {
2
+ background-color: #D7D7D7;
3
+ }
4
+
5
+ h1, h3, h3, h4, h5, h6 {
6
+ margin-bottom: 0;
7
+ }
8
+
9
+ h1, .heading-1 {
10
+ font-size: 50px;
11
+ line-height: 60px;
12
+ font-weight: bold;
13
+ }
14
+
15
+ h2, .heading-2 {
16
+ font-size: 38px;
17
+ line-height: 45px;
18
+ font-weight: bold;
19
+ }
20
+
21
+ h3, .heading-3 {
22
+ font-size: 25px;
23
+ line-height: 32px;
24
+ font-weight: bold;
25
+ }
26
+
27
+ h4, .heading-4 {
28
+ font-size: 20px;
29
+ line-height: 24px;
30
+ font-weight: bold;
31
+ }
32
+
33
+ h5, .heading-5 {
34
+ font-size: 17px;
35
+ line-height: 24px;
36
+ font-weight: bold;
37
+ }
38
+
39
+ a {
40
+ color: inherit;
41
+ text-decoration: underline;
42
+ }
43
+ a:hover {
44
+ text-decoration: none;
45
+ }
46
+
47
+ .colour-primary {
48
+ color: #2C089B;
49
+ }
50
+
51
+ .colour-secondary {
52
+ color: #2AF135;
53
+ }
54
+
55
+ .colour-tertiary {
56
+ color: #FF7272;
57
+ }
58
+
59
+ .colour-white {
60
+ color: #FFFFFF;
61
+ }
62
+
63
+ .colour-black {
64
+ color: #000000;
65
+ }
66
+
67
+ .text-colour-hover-primary:hover,
68
+ .text-colour-primary {
69
+ color: #2C089B;
70
+ }
71
+
72
+ .text-colour-hover-secondary:hover,
73
+ .text-colour-secondary {
74
+ color: #2AF135;
75
+ }
76
+
77
+ .text-colour-hover-tertiary:hover,
78
+ .text-colour-tertiary {
79
+ color: #FF7272;
80
+ }
81
+
82
+ .text-colour-hover-white:hover,
83
+ .text-colour-white {
84
+ color: #FFFFFF;
85
+ }
86
+
87
+ .text-colour-hover-black:hover,
88
+ .text-colour-black {
89
+ color: #000000;
90
+ }
91
+
92
+ .fill-primary {
93
+ fill: #2C089B;
94
+ }
95
+
96
+ .fill-secondary {
97
+ fill: #2AF135;
98
+ }
99
+
100
+ .fill-tertiary {
101
+ fill: #FF7272;
102
+ }
103
+
104
+ .fill-white {
105
+ fill: #FFFFFF;
106
+ }
107
+
108
+ .fill-black {
109
+ fill: #000000;
110
+ }
111
+
112
+ .fill-red {
113
+ fill: red;
114
+ }
115
+
116
+ .background-colour-hover-primary:hover,
117
+ .background-colour-primary {
118
+ background-color: #2C089B;
119
+ }
120
+
121
+ .background-colour-hover-secondary:hover,
122
+ .background-colour-secondary {
123
+ background-color: #2AF135;
124
+ }
125
+
126
+ .background-colour-hover-tertiary:hover,
127
+ .background-colour-tertiary {
128
+ background-color: #FF7272;
129
+ }
130
+
131
+ .background-colour-hover-white:hover,
132
+ .background-colour-white {
133
+ background-color: #FFFFFF;
134
+ }
135
+
136
+ .background-colour-hover-black:hover,
137
+ .background-colour-black {
138
+ background-color: #000000;
139
+ }
140
+
141
+ .input-wrap {
142
+ display: flex;
143
+ justify-content: space-between;
144
+ }
145
+
146
+ .input-text {
147
+ font-family: "Euclid Triangle", sans-serif;
148
+ font-size: 17px;
149
+ line-height: 24px;
150
+ color: #000000;
151
+ padding: 5px 10px;
152
+ box-sizing: border-box;
153
+ width: 100%;
154
+ }
155
+ .input-text:focus {
156
+ outline: 0;
157
+ }
158
+ .input-text:placeholder {
159
+ color: #4A4A4A;
160
+ }
161
+
162
+ .button {
163
+ font-size: 17px;
164
+ line-height: 24px;
165
+ padding: 10px 30px;
166
+ border-radius: 5px;
167
+ border: 1px solid #000000;
168
+ background-color: #000000;
169
+ filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.22));
170
+ color: #FFFFFF;
171
+ display: inline-block;
172
+ text-decoration: none;
173
+ text-align: center;
174
+ transition: all ease-in-out 0.5s;
175
+ cursor: pointer;
176
+ }
177
+ .button:hover {
178
+ background-color: #FFFFFF;
179
+ color: #000000;
180
+ }
181
+ .button.size-small {
182
+ font-size: 13px;
183
+ line-height: 17px;
184
+ padding: 5px 15px;
185
+ }
186
+ .button.button.rounded-true {
187
+ border-radius: 27.5px;
188
+ }
189
+ .button.button.rounded-true.size-small {
190
+ border-radius: 20px;
191
+ }
192
+
193
+ .button-primary {
194
+ color: #FFFFFF;
195
+ background-color: #2C089B;
196
+ border-color: #2C089B;
197
+ }
198
+ .button-primary:hover {
199
+ color: #2C089B;
200
+ background-color: #FFFFFF;
201
+ }
202
+
203
+ .button-secondary {
204
+ color: #2C089B;
205
+ background-color: #2AF135;
206
+ border-color: #2AF135;
207
+ }
208
+ .button-secondary:hover {
209
+ background-color: #FFFFFF;
210
+ }
211
+
212
+ .button-tertiary {
213
+ color: #FFFFFF;
214
+ background-color: #FF7272;
215
+ border-color: #FF7272;
216
+ }
217
+ .button-tertiary:hover {
218
+ background-color: #FFFFFF;
219
+ }
220
+
221
+ .button-white {
222
+ color: #2C089B;
223
+ background-color: #FFFFFF;
224
+ border-color: #FFFFFF;
225
+ }
226
+ .button-white:hover {
227
+ color: #FFFFFF;
228
+ background-color: #2C089B;
229
+ }
230
+
231
+ .button-black {
232
+ color: #FFFFFF;
233
+ background-color: #000000;
234
+ border-color: #000000;
235
+ }
236
+ .button-black:hover {
237
+ color: #000000;
238
+ background-color: #FFFFFF;
239
+ }
240
+
241
+ .button-clear-primary {
242
+ color: #2C089B;
243
+ background-color: transparent;
244
+ text-decoration: underline;
245
+ box-shadow: none;
246
+ border: 0;
247
+ padding-left: 0;
248
+ padding-right: 0;
249
+ }
250
+ .button-clear-primary:hover {
251
+ text-decoration: none;
252
+ background-color: transparent;
253
+ }
254
+
255
+ .button-clear-secondary {
256
+ color: #2AF135;
257
+ background-color: transparent;
258
+ text-decoration: underline;
259
+ box-shadow: none;
260
+ border: 0;
261
+ padding-left: 0;
262
+ padding-right: 0;
263
+ }
264
+ .button-clear-secondary:hover {
265
+ text-decoration: none;
266
+ background-color: transparent;
267
+ }
268
+
269
+ .button-clear-tertiary {
270
+ color: #FF7272;
271
+ background-color: transparent;
272
+ text-decoration: underline;
273
+ box-shadow: none;
274
+ border: 0;
275
+ padding-left: 0;
276
+ padding-right: 0;
277
+ }
278
+ .button-clear-tertiary:hover {
279
+ text-decoration: none;
280
+ background-color: transparent;
281
+ }
282
+
283
+ .button-clear-white {
284
+ color: #FFFFFF;
285
+ background-color: transparent;
286
+ text-decoration: underline;
287
+ box-shadow: none;
288
+ border: 0;
289
+ padding-left: 0;
290
+ padding-right: 0;
291
+ }
292
+ .button-clear-white:hover {
293
+ color: #FFFFFF;
294
+ text-decoration: none;
295
+ background-color: transparent;
296
+ }
297
+
298
+ .button-rounded {
299
+ border-radius: 27.5px;
300
+ }
301
+ .button-rounded.size-small {
302
+ border-radius: 20px;
303
+ }
304
+
305
+ .progress-bar {
306
+ display: flex;
307
+ }
308
+ .progress-bar .slider {
309
+ margin: auto 15px auto 0;
310
+ position: relative;
311
+ flex-grow: 1;
312
+ }
313
+ .progress-bar .slider:before {
314
+ content: "";
315
+ position: absolute;
316
+ display: block;
317
+ top: 0;
318
+ left: 0;
319
+ bottom: 0;
320
+ right: 0;
321
+ background-color: #E8E8E8;
322
+ border-radius: 4px;
323
+ }
324
+ .progress-bar .slider .progress {
325
+ position: relative;
326
+ border-radius: 4px;
327
+ background-color: #000000;
328
+ height: 8px;
329
+ }
330
+ .progress-bar .counter {
331
+ font-weight: 700;
332
+ color: #000000;
333
+ font-size: 14px;
334
+ line-height: 18px;
335
+ }
336
+
337
+ .progress-bar-primary .slider .progress {
338
+ background-color: #2C089B;
339
+ }
340
+ .progress-bar-primary .counter {
341
+ color: #2C089B;
342
+ }
343
+
344
+ .progress-bar-secondary .slider .progress {
345
+ background-color: #2AF135;
346
+ }
347
+ .progress-bar-secondary .counter {
348
+ color: #2AF135;
349
+ }
350
+
351
+ .video-wrap {
352
+ position: relative;
353
+ padding-bottom: 56.25%;
354
+ }
355
+
356
+ .video-wrap iframe,
357
+ .video-wrap video {
358
+ position: absolute;
359
+ border: 0;
360
+ display: block;
361
+ left: 0;
362
+ right: 0;
363
+ top: 0;
364
+ bottom: 0;
365
+ width: 100%;
366
+ height: 100%;
367
+ }
368
+
369
+ .image-wrap img {
370
+ width: 100%;
371
+ height: auto;
372
+ }
373
+
374
+ .align-left {
375
+ text-align: left;
376
+ }
377
+
378
+ .align-right {
379
+ text-align: right;
380
+ }
381
+
382
+ .align-center {
383
+ text-align: center;
384
+ }
385
+
386
+ .align-justify {
387
+ text-align: justify;
388
+ }
389
+
390
+ .space-below-0 {
391
+ margin-bottom: 0;
392
+ }
393
+
394
+ .space-below-1 {
395
+ margin-bottom: 5px;
396
+ }
397
+
398
+ .space-below-2 {
399
+ margin-bottom: 10px;
400
+ }
401
+
402
+ .space-below-3 {
403
+ margin-bottom: 15px;
404
+ }
405
+
406
+ .space-below-4 {
407
+ margin-bottom: 30px;
408
+ }
409
+
410
+ .space-below-5 {
411
+ margin-bottom: 45px;
412
+ }
413
+
414
+ .space-below-6 {
415
+ margin-bottom: 60px;
416
+ }
417
+
418
+ .space-above-0 {
419
+ margin-top: 0;
420
+ }
421
+
422
+ .space-above-1 {
423
+ margin-top: 5px;
424
+ }
425
+
426
+ .space-above-2 {
427
+ margin-top: 10px;
428
+ }
429
+
430
+ .space-above-3 {
431
+ margin-top: 15px;
432
+ }
433
+
434
+ .space-above-4 {
435
+ margin-top: 30px;
436
+ }
437
+
438
+ .space-above-5 {
439
+ margin-top: 45px;
440
+ }
441
+
442
+ .space-above-6 {
443
+ margin-top: 60px;
444
+ }
445
+
446
+ .horizontal-padding-1 {
447
+ padding-left: 5px;
448
+ padding-right: 5px;
449
+ }
450
+
451
+ .horizontal-padding-2 {
452
+ padding-left: 10px;
453
+ padding-right: 10px;
454
+ }
455
+
456
+ .horizontal-padding-3 {
457
+ padding-left: 15px;
458
+ padding-right: 15px;
459
+ }
460
+
461
+ .horizontal-padding-4 {
462
+ padding-left: 30px;
463
+ padding-right: 30px;
464
+ }
465
+
466
+ .horizontal-padding-5 {
467
+ padding-left: 45px;
468
+ padding-right: 45px;
469
+ }
470
+
471
+ .horizontal-padding-6 {
472
+ padding-left: 60px;
473
+ padding-right: 60px;
474
+ }
475
+
476
+ .vertical-padding-1 {
477
+ padding-top: 5px;
478
+ padding-bottom: 5px;
479
+ }
480
+
481
+ .vertical-padding-2 {
482
+ padding-top: 10px;
483
+ padding-bottom: 10px;
484
+ }
485
+
486
+ .vertical-padding-3 {
487
+ padding-top: 15px;
488
+ padding-bottom: 15px;
489
+ }
490
+
491
+ .vertical-padding-4 {
492
+ padding-top: 30px;
493
+ padding-bottom: 30px;
494
+ }
495
+
496
+ .vertical-padding-5 {
497
+ padding-top: 45px;
498
+ padding-bottom: 45px;
499
+ }
500
+
501
+ .vertical-padding-6 {
502
+ padding-top: 60px;
503
+ padding-bottom: 60px;
504
+ }
505
+
506
+ :host {
507
+ display: contents;
508
+ }
509
+
510
+ ul {
511
+ font-family: "Euclid Triangle", sans-serif;
512
+ font-size: 17px;
513
+ line-height: 24px;
514
+ list-style-type: none;
515
+ padding: 0;
516
+ margin: 0;
517
+ }
@@ -0,0 +1,43 @@
1
+ import { h } from '@stencil/core';
2
+ export class BiggiveNavGroup {
3
+ constructor() {
4
+ this.inline = true;
5
+ }
6
+ render() {
7
+ return (h("ul", null, h("slot", null)));
8
+ }
9
+ static get is() { return "biggive-nav-group"; }
10
+ static get encapsulation() { return "shadow"; }
11
+ static get originalStyleUrls() {
12
+ return {
13
+ "$": ["biggive-nav-group.scss"]
14
+ };
15
+ }
16
+ static get styleUrls() {
17
+ return {
18
+ "$": ["biggive-nav-group.css"]
19
+ };
20
+ }
21
+ static get properties() {
22
+ return {
23
+ "inline": {
24
+ "type": "boolean",
25
+ "mutable": false,
26
+ "complexType": {
27
+ "original": "boolean",
28
+ "resolved": "boolean",
29
+ "references": {}
30
+ },
31
+ "required": false,
32
+ "optional": false,
33
+ "docs": {
34
+ "tags": [],
35
+ "text": "Inline"
36
+ },
37
+ "attribute": "inline",
38
+ "reflect": false,
39
+ "defaultValue": "true"
40
+ }
41
+ };
42
+ }
43
+ }