@worksafevictoria/wcl7.5 1.2.2 → 1.4.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.
- package/package.json +1 -1
- package/src/assets/icons/WSV-reversed.svg +20 -0
- package/src/assets/icons/contrast.svg +4 -0
- package/src/assets/icons/lang.svg +13 -0
- package/src/assets/icons/login.svg +4 -0
- package/src/components/Common/CardGrid/index.vue +2 -2
- package/src/components/Containers/Carousel/index.stories.js +30 -0
- package/src/components/Containers/Carousel/index.vue +165 -0
- package/src/components/Containers/HomepageHeaderNew/index.stories.js +75 -0
- package/src/components/Containers/HomepageHeaderNew/index.vue +198 -0
- package/src/components/Containers/Subheader/index.vue +8 -2
- package/src/components/Global/AppFooter/index.vue +30 -28
- package/src/components/Global/AppHeader/index.vue +9 -10
- package/src/components/Global/AppHeaderNew/ModalSearch/index.vue +71 -0
- package/src/components/Global/AppHeaderNew/ModalSearch/styles.scss +43 -0
- package/src/components/Global/AppHeaderNew/includes.scss +71 -0
- package/src/components/Global/AppHeaderNew/index.stories.js +74 -0
- package/src/components/Global/AppHeaderNew/index.vue +1105 -0
- package/src/components/Global/AppHeaderNew/mobile.scss +269 -0
- package/src/components/Global/AppHeaderNew/styles.scss +621 -0
- package/src/components/Global/HeroHeader/index.vue +12 -13
- package/src/components/Paragraphs/Accordion/AccordionItem/index.vue +21 -17
- package/src/components/Paragraphs/BrowseContent/index.vue +1 -5
- package/src/components/Paragraphs/ListGroup/index.vue +55 -46
- package/src/components/Paragraphs/Statistics/index.vue +1 -0
- package/src/components/Paragraphs/TabbedCards/index.vue +42 -38
- package/src/components/SubComponents/CardGroup/index.vue +33 -27
- package/src/components/SubComponents/CtaButton/index.vue +27 -25
- package/src/components/SubComponents/ResourceGroup/index.vue +13 -4
- package/src/includes/scss/mixins/src/grid.scss +4 -2
- package/src/mock/app-header-new.js +703 -0
- package/src/mock/carousel-items.js +57 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export const mockCarouselItems = [
|
|
2
|
+
{
|
|
3
|
+
content: 'This is the first slider',
|
|
4
|
+
image:
|
|
5
|
+
'https://picsum.photos/1024/480/?image=52',
|
|
6
|
+
link: 'www.google.com',
|
|
7
|
+
dateStart: '2024-01-12T09:45:00+11:00',
|
|
8
|
+
dateEnd: '2024-02-12T09:45:00+11:00',
|
|
9
|
+
favorite: 'Yes'
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
content: 'This is the second slider',
|
|
13
|
+
image:
|
|
14
|
+
'https://picsum.photos/1024/480/?image=54',
|
|
15
|
+
link: '/asbestos-removal-notification',
|
|
16
|
+
dateStart: '2024-12-01T09:45:00+11:00',
|
|
17
|
+
dateEnd: '2024-12-12T09:45:00+11:00',
|
|
18
|
+
favorite: ''
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
content: 'This is the third slider',
|
|
22
|
+
image:
|
|
23
|
+
'https://picsum.photos/1024/480/?image=56',
|
|
24
|
+
link: '/dangerous-goods-licences',
|
|
25
|
+
dateStart: '2024-01-12T09:45:00+11:00',
|
|
26
|
+
dateEnd: '2024-12-12T09:45:00+11:00',
|
|
27
|
+
favorite: ''
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
content: 'This is the fourth slider',
|
|
31
|
+
image:
|
|
32
|
+
'https://picsum.photos/1024/480/?image=58',
|
|
33
|
+
link: '/construction',
|
|
34
|
+
dateStart: '2025-10-30T09:45:00+11:00',
|
|
35
|
+
dateEnd: '2025-12-12T09:45:00+11:00',
|
|
36
|
+
favorite: ''
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
content: '',
|
|
40
|
+
image:
|
|
41
|
+
'https://picsum.photos/1024/480/?image=60',
|
|
42
|
+
link: '/construction',
|
|
43
|
+
dateStart: '2024-10-30T09:45:00+11:00',
|
|
44
|
+
dateEnd: '2025-12-12T09:45:00+11:00',
|
|
45
|
+
favorite: ''
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
content: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla consectetur ligula ex',
|
|
49
|
+
image:
|
|
50
|
+
'https://picsum.photos/1024/480/?image=62',
|
|
51
|
+
link: '/construction',
|
|
52
|
+
dateStart: '2024-10-30T09:45:00+11:00',
|
|
53
|
+
dateEnd: '2025-11-12T09:45:00+11:00',
|
|
54
|
+
favorite: ''
|
|
55
|
+
},
|
|
56
|
+
]
|
|
57
|
+
|