@dcodegroup-au/page-builder 0.2.8 → 0.3.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.
Files changed (69) hide show
  1. package/dist/page-builder.css +2 -2
  2. package/dist/page-builder.es.js +33363 -11858
  3. package/dist/page-builder.umd.js +59 -59
  4. package/example/src/App.vue +40 -679
  5. package/example/src/main.js +2 -1
  6. package/example/src/pages/BestLife.js +351 -0
  7. package/example/src/pages/Home.js +677 -0
  8. package/package.json +1 -1
  9. package/src/assets/icons.json +3569 -0
  10. package/src/components/ItemEdit.vue +147 -71
  11. package/src/components/LinkCardEdit.vue +139 -0
  12. package/src/components/PageBuilder.vue +43 -10
  13. package/src/components/PageRender.vue +12 -0
  14. package/src/components/builders/CollectionCarousel.vue +62 -0
  15. package/src/components/builders/Header.vue +82 -0
  16. package/src/components/builders/ImageBlock.vue +56 -0
  17. package/src/components/builders/Items.vue +112 -0
  18. package/src/components/builders/Links.vue +123 -0
  19. package/src/components/builders/Logos.vue +122 -0
  20. package/src/components/builders/NewsGrid.vue +59 -0
  21. package/src/components/builders/Paragraph.vue +93 -0
  22. package/src/components/builders/VideoGrid.vue +101 -0
  23. package/src/components/common/Button.vue +53 -0
  24. package/src/components/common/Card.vue +5 -1
  25. package/src/components/common/FileUpload.vue +1 -1
  26. package/src/components/common/Icon.vue +41 -0
  27. package/src/components/common/IconSelector.vue +106 -0
  28. package/src/components/common/LinkedTo.vue +9 -3
  29. package/src/components/helpers/bundleIcons.js +1189 -0
  30. package/src/components/index.js +2 -1
  31. package/src/components/presenters/components/{VCollectionGridPresenter.vue → CollectionGridPresenter.vue} +0 -5
  32. package/src/components/presenters/modules/CollectionCarousel.vue +2 -2
  33. package/src/components/presenters/modules/CollectionGrid.vue +2 -2
  34. package/src/components/presenters/modules/HeroHeader.vue +2 -2
  35. package/src/components/presenters/modules/LinkCard.vue +55 -0
  36. package/src/components/presenters/modules/LinkList.vue +51 -0
  37. package/src/components/presenters/modules/Paragraph.vue +26 -0
  38. package/src/components/presenters/modules/QuickLinks.vue +2 -2
  39. package/src/components/presenters/modules/StandardHeader.vue +32 -0
  40. package/src/components/presenters/modules/Timeline.vue +53 -0
  41. package/src/components/presenters/modules/TwoColumnsImageContent.vue +36 -0
  42. package/src/components/presenters/modules/VTabs.vue +2 -2
  43. package/src/utils/generateIconBundle.js +33 -0
  44. package/src/utils/generateIconJson.js +30 -0
  45. package/tailwind.config.js +5 -0
  46. package/src/components/builders/BaseModuleForm.vue +0 -86
  47. package/src/components/builders/LogoBuilder.vue +0 -167
  48. package/src/components/builders/PageBuilderCarousel.vue +0 -18
  49. package/src/components/builders/PageBuilderGrid.vue +0 -18
  50. package/src/components/builders/PageBuilderSectionHeader.vue +0 -30
  51. package/src/components/builders/PageModal.vue +0 -92
  52. package/src/components/builders/VCollectionCarousel.vue +0 -58
  53. package/src/components/builders/VHeader.vue +0 -55
  54. package/src/components/builders/VItems.vue +0 -110
  55. package/src/components/builders/VLinks.vue +0 -121
  56. package/src/components/builders/VLogos.vue +0 -120
  57. package/src/components/builders/VNewsGrid.vue +0 -55
  58. package/src/components/builders/VVideoGrid.vue +0 -99
  59. package/src/components/common/forms/LogosForm.vue +0 -39
  60. package/src/components/common/forms/PageBuilderLinksForm.vue +0 -39
  61. package/src/components/common/forms/SectionHeaderForm.vue +0 -45
  62. package/src/components/common/forms/TabForm.vue +0 -90
  63. /package/src/components/common/{VModal.vue → Modal.vue} +0 -0
  64. /package/src/components/common/{VToggle.vue → Toggle.vue} +0 -0
  65. /package/src/components/presenters/components/{VCarouselPresenter.vue → CarouselPresenter.vue} +0 -0
  66. /package/src/components/presenters/components/{VHeaderPresenter.vue → HeaderPresenter.vue} +0 -0
  67. /package/src/components/presenters/components/{VLinkPresenter.vue → LinkPresenter.vue} +0 -0
  68. /package/src/components/presenters/components/{VSliderPresenter.vue → SliderPresenter.vue} +0 -0
  69. /package/src/components/presenters/components/{VVerticalTabPresenter.vue → VerticalTabPresenter.vue} +0 -0
@@ -0,0 +1,677 @@
1
+ export const Home = {
2
+ id: 1,
3
+ title: "Homepage",
4
+ sections: [
5
+ {
6
+ title: "Hero header",
7
+ type: "header",
8
+ components: [
9
+ {
10
+ name: "Sliders",
11
+ type: "sliders",
12
+ supportive_text: "Manage the slides in the slider.",
13
+ max_items: 5,
14
+ public: true,
15
+ data: [
16
+ {
17
+ title: "About ELAA",
18
+ description: "ELAA is a non-profit peak body championing excellence in Early Childhood Education and Care. They work collaboratively with members, partners, and all levels of government to develop solutions ensuring equity and excellence in our sector.",
19
+ public: true,
20
+ featured_image: 'https://www.gstatic.com/webp/gallery/1.jpg',
21
+ primary_button: {
22
+ show: true,
23
+ label: 'Join ELAA',
24
+ url: 'google.com', // external could be an url
25
+ type: 'site-content',
26
+ is_new_tab: true,
27
+ },
28
+ secondary_button: {
29
+ show: true,
30
+ label: 'Learn about ELAA',
31
+ url: 'facebook.com', // external could be an url
32
+ type: 'site-content',
33
+ open_in_new_tab: true,
34
+ },
35
+ },
36
+ {
37
+ title: "Best Life Evening Leadership Series",
38
+ description: "ELAA a live keynote address from Professor Joce Nuttall, who has over 40 years of experience as a leader, educator and researcher in early childhood settings ",
39
+ public: true,
40
+ featured_image: 'https://www.gstatic.com/webp/gallery/2.jpg',
41
+ primary_button: {
42
+ show: false,
43
+ label: 'Apply now ELAA',
44
+ url: 'facebook.com', // external could be an url
45
+ type: 'site-content',
46
+ is_new_tab: true,
47
+ },
48
+ secondary_button: {
49
+ show: true,
50
+ label: 'Construct ELAA',
51
+ url: 'facebook.com', // external could be an url
52
+ type: 'site-content',
53
+ open_in_new_tab: true,
54
+ },
55
+ },
56
+ {
57
+ title: "Early Childhood Education",
58
+ description: "In light of the recent investigations into the Early Childhood Education and Care (ECEC) sector, we want to acknowledge the emotional toll this coverage may have had on members of our community. ",
59
+ public: true,
60
+ featured_image: 'https://www.gstatic.com/webp/gallery/4.jpg',
61
+ primary_button: {
62
+ show: true,
63
+ label: 'Apply To Dcodegroup',
64
+ url: 'facebook.com', // external could be an url
65
+ type: 'site-content',
66
+ is_new_tab: true,
67
+ },
68
+ secondary_button: {
69
+ show: true,
70
+ label: 'Construct Dcodegroup',
71
+ url: 'admin', // external could be an url
72
+ type: 'site-content',
73
+ open_in_new_tab: true,
74
+ },
75
+ },
76
+ {
77
+ title: "Image Credits",
78
+ description: "The images on this page come from a number of different sources. We have selected some delightful and rich pictures to showcase qualities of WebP.",
79
+ public: true,
80
+ featured_image: 'https://www.gstatic.com/webp/gallery/5.webp',
81
+ primary_button: {
82
+ show: true,
83
+ label: 'Apply To Image Credits',
84
+ url: '/admin', // external could be an url
85
+ type: 'site-content',
86
+ is_new_tab: true,
87
+ },
88
+ secondary_button: {
89
+ show: true,
90
+ label: 'Construct Image Credits',
91
+ url: '/admin', // external could be an url
92
+ type: 'site-content',
93
+ open_in_new_tab: true,
94
+ },
95
+ },
96
+ ]
97
+ },
98
+ {
99
+ name: "Links",
100
+ type: "links",
101
+ supportive_text: "Manage the links.",
102
+ max_items: 7,
103
+ data: [
104
+ {
105
+ title: "Privacy Policy",
106
+ url: '/admin', // external could be an url
107
+ type: 'site-content',
108
+ open_in_new_tab: true,
109
+ },
110
+ {
111
+ title: "Google",
112
+ url: 'https://google.com', // external could be an url
113
+ type: 'external-page',
114
+ open_in_new_tab: true,
115
+ }
116
+ ]
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ title: "Logo cloud",
122
+ type: "logo",
123
+ display: "horizontal",
124
+ components: [
125
+ {
126
+ name: "Section header",
127
+ type: "header",
128
+ supporting_text: "ELAA is proudly supporting",
129
+ },
130
+ {
131
+ id: 2,
132
+ name: "Logos",
133
+ type: "logos",
134
+ max_items: 7,
135
+ height: 'medium',
136
+ data: [
137
+ {
138
+ url: "https://childroadsafety.org.au/",
139
+ logo: "https://beta-frontend.elaa.org.au/img/logos/starting_out_safely.png",
140
+ },
141
+ {
142
+ url: "https://carseatssavelives.com.au/",
143
+ logo: "https://beta-frontend.elaa.org.au/img/logos/car_seats_save_lives.jpg",
144
+ }
145
+ ]
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ title: "Vertical tabs module",
151
+ type: "tabs",
152
+ components: [
153
+ {
154
+ name: "Section header",
155
+ type: "header",
156
+ title: 'Rich with resources',
157
+ center: true,
158
+ dark: true,
159
+ supporting_text: 'Comprehensive free and paid resources covering every aspect of early childhood education.',
160
+ },
161
+ {
162
+ name: "Vertical tabs",
163
+ type: "vertical_tabs",
164
+ supportive_text: "Manage the tabs",
165
+ max_items: 5,
166
+ public: true,
167
+ data: [
168
+ {
169
+ title: "Free Downloadable Resources",
170
+ description: "Explore a variety of no-cost tools and information available to everyone.",
171
+ public: true,
172
+ featured_image: 'https://beta-frontend.elaa.org.au/img/homepage/asset_free_resources.png',
173
+ primary_button: {
174
+ show: true,
175
+ name: 'Linked to',
176
+ label: 'View all',
177
+ url: 'google.com', // external could be an url
178
+ type: 'external-page',
179
+ is_new_tab: true,
180
+ },
181
+ },
182
+ {
183
+ title: "Paid Resources & Subscriptions",
184
+ description: "Access premium content and exclusive materials with our subscription services.",
185
+ public: true,
186
+ featured_image: 'https://beta-frontend.elaa.org.au/img/homepage/asset_paid_resources.png',
187
+ primary_button: {
188
+ show: true,
189
+ name: 'Linked to',
190
+ label: 'View all',
191
+ url: 'http://google.com', // external could be an url
192
+ type: 'external-page',
193
+ is_new_tab: true,
194
+ },
195
+ },
196
+ {
197
+ title: "Video Library",
198
+ description: "Watch quick, informative videos (10-15 mins each) available for free.",
199
+ public: true,
200
+ featured_image: 'https://beta-frontend.elaa.org.au/img/homepage/asset_video.png',
201
+ primary_button: {
202
+ show: true,
203
+ name: 'Linked to',
204
+ label: 'View all',
205
+ url: 'google.com', // external could be an url
206
+ type: 'external-page',
207
+ is_new_tab: true,
208
+ },
209
+ },
210
+ {
211
+ title: "Self-paced Modules",
212
+ description: "Engage with our flexible, on-demand training modules at your own pace.",
213
+ public: true,
214
+ featured_image: 'https://beta-frontend.elaa.org.au/img/homepage/asset_self_paced.png',
215
+ primary_button: {
216
+ show: true,
217
+ name: 'Linked to',
218
+ label: 'View all',
219
+ url: 'google.com', // external could be an url
220
+ type: 'external-page',
221
+ is_new_tab: true,
222
+ },
223
+ },
224
+ ]
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ title: "Logo cloud",
230
+ type: "logo",
231
+ display: "vertical",
232
+ components: [
233
+ {
234
+ name: "Section header",
235
+ type: "header",
236
+ supporting_text: "ELAA’s preferred partners offer special benefits to ELAA members and support ELAA’s activities",
237
+ },
238
+ {
239
+ id: 2,
240
+ name: "Logos",
241
+ type: "logos",
242
+ max_items: 7,
243
+ height: 'small',
244
+ data: [
245
+ {
246
+ url: "/",
247
+ logo: "https://beta-frontend.elaa.org.au/img/logos/anzuk.png",
248
+ },
249
+ {
250
+ url: "/",
251
+ logo: "https://beta-frontend.elaa.org.au/img/logos/bunnings.png",
252
+ },
253
+ {
254
+ url: "/",
255
+ logo: "https://beta-frontend.elaa.org.au/img/logos/hesta.png",
256
+ }, {
257
+ url: "/",
258
+ logo: "",
259
+ }
260
+ ]
261
+ }
262
+ ]
263
+ },
264
+ {
265
+ title: "Collection grid",
266
+ type: "collection_grid",
267
+ components: [
268
+ {
269
+ name: "Section header",
270
+ type: "header",
271
+ title: 'News',
272
+ dark: true,
273
+ center: true,
274
+ supporting_text: 'Stay Informed with the Latest Developments in Early Education',
275
+ },
276
+ {
277
+ name: "Grid",
278
+ type: "news_grid",
279
+ button: {
280
+ title: 'View all news',
281
+ url: 'google.com', // external could be an url
282
+ type: 'external-page',
283
+ is_new_tab: true,
284
+ show: true,
285
+ },
286
+ content: {
287
+ label: 'Content',
288
+ supportive_text: 'This grid will be automatically populated with the latest three news items.',
289
+ items: [
290
+ {
291
+ image: "https://beta-frontend.elaa.org.au/img/news/news_1.jpg",
292
+ categories: [{
293
+ name: 'Wages, IR and Governance',
294
+ style: 'navy',
295
+ }],
296
+ link: "https://example.com",
297
+ title: "Fair Work Laws changes for casual employment",
298
+ dateTime: "10 Sep 2024",
299
+ },
300
+ {
301
+ image: "https://beta-frontend.elaa.org.au/img/news/news_2.jpg",
302
+ categories: [{
303
+ name: 'Member Benefits',
304
+ style: 'brand',
305
+ }],
306
+ link: "https://example.com",
307
+ title: "ELAA renews its partnership with Bunnings for another year: make the most of your Bunnings PowerPass membership benefits",
308
+ dateTime: "09 Sep 2024",
309
+ },
310
+ {
311
+ image: "https://beta-frontend.elaa.org.au/img/news/news_3.jpg",
312
+ categories: [{
313
+ name: 'Advocacy',
314
+ style: 'orange',
315
+ }],
316
+ link: "https://example.com",
317
+ title: "Meet our Best Start Best Life (BSBL) Reform and Engagement Advisor Leanne Rodriguez",
318
+ dateTime: "08 Sep 2024",
319
+ },
320
+ ]
321
+ }
322
+ },
323
+ {
324
+ name: "Grid",
325
+ type: "video_grid",
326
+ max_items: 3,
327
+ data: [
328
+ {
329
+ video: "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4",
330
+ },
331
+ {
332
+ video: "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4",
333
+ },
334
+ {
335
+ video: "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerEscapes.mp4",
336
+ }
337
+ ]
338
+ }
339
+ ]
340
+ },
341
+ {
342
+ title: "Collection carousel",
343
+ type: "collection_carousel",
344
+ has_background: true,
345
+ components: [
346
+ {
347
+ name: "Section header",
348
+ type: "header",
349
+ title: 'Upcoming Events',
350
+ dark: true,
351
+ supporting_text: 'Don\'t Miss Our Upcoming Activities and Gatherings in Early Education.',
352
+ },
353
+ {
354
+ name: "Carousel",
355
+ type: "carousel",
356
+ button: {
357
+ title: 'View all events',
358
+ url: 'google.com', // external could be an url
359
+ type: 'external-page',
360
+ is_new_tab: true,
361
+ },
362
+ content: {
363
+ label: 'Content',
364
+ supportive_text: 'This carousel will be automatically populated with all upcoming events. This section will be hidden if there’s no upcoming events.',
365
+ items: [
366
+ {
367
+ type: 'event',
368
+ title: 'Change Management – Drop in session',
369
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services.',
370
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_1.jpg',
371
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
372
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
373
+ line_2: 'Free',
374
+ primary_button: {
375
+ icon: 'plus',
376
+ title: 'Register',
377
+ url: 'google.com'
378
+ },
379
+ secondary_button: {
380
+ title: 'Learn more',
381
+ url: 'google.com'
382
+ },
383
+ },
384
+ {
385
+ type: 'event',
386
+ title: 'Let’s start making sense of OHS: Safety – not child’s play',
387
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
388
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_2.jpg',
389
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
390
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
391
+ line_2: '$395 <span style="font-weight: lighter;">(Members)</span> <br> $495 <span style="font-weight: lighter;">(Non-Members)</span>',
392
+ primary_button: {
393
+ icon: 'plus',
394
+ title: 'Register',
395
+ url: 'google.com'
396
+ },
397
+ secondary_button: {
398
+ title: 'Learn more',
399
+ url: 'google.com'
400
+ },
401
+ },
402
+ {
403
+ type: 'event',
404
+ title: 'DE Regional Governance Training Session',
405
+ description: 'Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
406
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_3.jpg',
407
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
408
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
409
+ line_2: 'Free',
410
+ button_title: 'Free',
411
+ primary_button: {
412
+ icon: 'plus',
413
+ title: 'Register',
414
+ url: 'google.com'
415
+ },
416
+ secondary_button: {
417
+ title: 'Learn more',
418
+ url: 'google.com'
419
+ },
420
+ },
421
+ {
422
+ type: 'event',
423
+ title: 'Change Management – Drop in session 2',
424
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services.',
425
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_1.jpg',
426
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
427
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
428
+ line_2: 'Free',
429
+ primary_button: {
430
+ icon: 'plus',
431
+ title: 'Register',
432
+ url: 'google.com'
433
+ },
434
+ secondary_button: {
435
+ title: 'Learn more',
436
+ url: 'google.com'
437
+ },
438
+ },
439
+ {
440
+ type: 'event',
441
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 2',
442
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
443
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_2.jpg',
444
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
445
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
446
+ line_2: '$395 <span style="font-weight: lighter;">(Members)</span> <br> $495 <span style="font-weight: lighter;">(Non-Members)</span>',
447
+ primary_button: {
448
+ icon: 'plus',
449
+ title: 'Register',
450
+ url: 'google.com'
451
+ },
452
+ secondary_button: {
453
+ title: 'Learn more',
454
+ url: 'google.com'
455
+ },
456
+ },
457
+ {
458
+ type: 'event',
459
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 3',
460
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
461
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_2.jpg',
462
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
463
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
464
+ line_2: '$395 <span style="font-weight: lighter;">(Members)</span> <br> $495 <span style="font-weight: lighter;">(Non-Members)</span>',
465
+ primary_button: {
466
+ icon: 'plus',
467
+ title: 'Register',
468
+ url: 'google.com'
469
+ },
470
+ secondary_button: {
471
+ title: 'Learn more',
472
+ url: 'google.com'
473
+ },
474
+ },
475
+ {
476
+ type: 'event',
477
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 4',
478
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
479
+ image: 'https://beta-frontend.elaa.org.au/img/events/event_2.jpg',
480
+ tags: ['Governance', 'CEO&Leadership', 'Zoom webinar'],
481
+ line_1: 'June 20 @ 12:30 pm - 1:15 pm AEST',
482
+ line_2: '$395 <span style="font-weight: lighter;">(Members)</span> <br> $495 <span style="font-weight: lighter;">(Non-Members)</span>',
483
+ primary_button: {
484
+ icon: 'plus',
485
+ title: 'Register',
486
+ url: 'google.com'
487
+ },
488
+ secondary_button: {
489
+ title: 'Learn more',
490
+ url: 'google.com'
491
+ },
492
+ },
493
+ ]
494
+ }
495
+ },
496
+ ]
497
+ },
498
+ {
499
+ title: "Collection carousel",
500
+ type: "collection_carousel",
501
+ has_background: false,
502
+ components: [
503
+ {
504
+ name: "Section header",
505
+ type: "header",
506
+ title: 'Our Submission',
507
+ dark: true,
508
+ supporting_text: null,
509
+ },
510
+ {
511
+ name: "Carousel",
512
+ type: "carousel",
513
+ button: {
514
+ title: 'View all submissions',
515
+ url: 'google.com', // external could be an url
516
+ type: 'external-page',
517
+ is_new_tab: true,
518
+ },
519
+ content: {
520
+ label: 'Content',
521
+ supportive_text: 'This carousel will be automatically populated with all upcoming events. This section will be hidden if there’s no upcoming events.',
522
+ items: [
523
+ {
524
+ type: 'submission',
525
+ title: 'Change Management – Drop in session',
526
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector. This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
527
+ primary_button: {
528
+ icon: 'plus',
529
+ title: 'Read submmission',
530
+ url: 'google.com'
531
+ },
532
+ secondary_button: {
533
+ title: 'Learn more',
534
+ url: 'google.com'
535
+ },
536
+ },
537
+ {
538
+ type: 'submission',
539
+ title: 'Let’s start making sense of OHS: Safety – not child’s play',
540
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
541
+ primary_button: {
542
+ icon: 'plus',
543
+ title: 'Read submmission',
544
+ url: 'google.com'
545
+ },
546
+ secondary_button: {
547
+ title: 'Learn more',
548
+ url: 'google.com'
549
+ },
550
+ },
551
+ {
552
+ type: 'submission',
553
+ title: 'DE Regional Governance Training Session',
554
+ description: 'Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
555
+ button_title: 'Free',
556
+ primary_button: {
557
+ icon: 'plus',
558
+ title: 'Read submmission',
559
+ url: 'google.com'
560
+ },
561
+ secondary_button: {
562
+ title: 'Learn more',
563
+ url: 'google.com'
564
+ },
565
+ },
566
+ {
567
+ type: 'submission',
568
+ title: 'Change Management – Drop in session 2',
569
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services.',
570
+ primary_button: {
571
+ icon: 'plus',
572
+ title: 'Read submmission',
573
+ url: 'google.com'
574
+ },
575
+ secondary_button: {
576
+ title: 'Learn more',
577
+ url: 'google.com'
578
+ },
579
+ },
580
+ {
581
+ type: 'submission',
582
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 2',
583
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
584
+ primary_button: {
585
+ icon: 'plus',
586
+ title: 'Read submmission',
587
+ url: 'google.com'
588
+ },
589
+ secondary_button: {
590
+ title: 'Learn more',
591
+ url: 'google.com'
592
+ },
593
+ },
594
+ {
595
+ type: 'submission',
596
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 3',
597
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
598
+ primary_button: {
599
+ icon: 'plus',
600
+ title: 'Read submmission',
601
+ url: 'google.com'
602
+ },
603
+ secondary_button: {
604
+ title: 'Learn more',
605
+ url: 'google.com'
606
+ },
607
+ },
608
+ {
609
+ type: 'submission',
610
+ title: 'Let’s start making sense of OHS: Safety – not child’s play 4',
611
+ description: 'This face to face event is specifically designed for those responsible for the management of OHS in early childhood services. Guidance on how to manage risks by addressing the most common hazards faced by the early childhood sector.',
612
+ primary_button: {
613
+ icon: 'plus',
614
+ title: 'Read submmission',
615
+ url: 'google.com'
616
+ },
617
+ secondary_button: {
618
+ title: 'Learn more',
619
+ url: 'google.com'
620
+ },
621
+ },
622
+ ]
623
+ }
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ title: "Quick links",
629
+ type: "quick_links",
630
+ components: [
631
+ {
632
+ type: "header",
633
+ title: 'Services',
634
+ supporting_text: 'Our knowledge and expertise of the early childhood sector enables ELAA to provide expert professional advice and support.',
635
+ },
636
+ {
637
+ name: "Link grid",
638
+ type: "link_grid",
639
+ supportive_text: "This section can contain up to 10 links.",
640
+ max_items: 10,
641
+ data: [
642
+ {
643
+ title: "Advisory Services",
644
+ url: '/admin', // external could be an url
645
+ type: 'site-content',
646
+ open_in_new_tab: true,
647
+ },
648
+ {
649
+ title: "Capability Assessment Support Service",
650
+ url: 'https://google.com', // external could be an url
651
+ type: 'external-page',
652
+ open_in_new_tab: true,
653
+ },
654
+ {
655
+ title: "Consultancy Services",
656
+ url: 'https://google.com', // external could be an url
657
+ type: 'external-page',
658
+ open_in_new_tab: true,
659
+ },
660
+ {
661
+ title: "Payroll Calculations",
662
+ url: 'https://google.com', // external could be an url
663
+ type: 'external-page',
664
+ open_in_new_tab: true,
665
+ },
666
+ {
667
+ title: "VECTEA 2024",
668
+ url: 'https://google.com', // external could be an url
669
+ type: 'external-page',
670
+ open_in_new_tab: true,
671
+ }
672
+ ]
673
+ }
674
+ ]
675
+ },
676
+ ]
677
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcodegroup-au/page-builder",
3
- "version": "0.2.8",
3
+ "version": "0.3.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./dist/page-builder.es.js"