@hellobetterdigitalnz/selwynui 0.0.1-2 → 0.0.1-22

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 (98) hide show
  1. package/dist/Components/DataDisplay/Accordion/Accordion.d.ts +3 -0
  2. package/dist/Components/DataDisplay/Accordion/AccordionContext.d.ts +3 -0
  3. package/dist/Components/DataDisplay/Accordion/AccordionContextInterface.d.ts +7 -0
  4. package/dist/Components/DataDisplay/Accordion/AccordionItem.d.ts +3 -0
  5. package/dist/Components/DataDisplay/Accordion/AccordionItemProps.d.ts +18 -0
  6. package/dist/Components/DataDisplay/Accordion/AccordionProps.d.ts +11 -0
  7. package/dist/Components/DataDisplay/Accordion/AccordionProvider.d.ts +3 -0
  8. package/dist/Components/DataDisplay/Accordion/AccordionProviderInterface.d.ts +7 -0
  9. package/dist/Components/DataDisplay/Accordion/accordion-bg-design.d.ts +2 -0
  10. package/dist/Components/DataDisplay/DetailsCard/DetailsCardProps.d.ts +7 -1
  11. package/dist/Components/DataDisplay/ImageContent/ImageContentProps.d.ts +4 -4
  12. package/dist/Components/DataDisplay/Pathway/PathwayProps.d.ts +13 -4
  13. package/dist/Components/DataDisplay/PathwayBlock/PathwayBlock.d.ts +3 -0
  14. package/dist/Components/DataDisplay/PathwayBlock/PathwayBlockProps.d.ts +11 -0
  15. package/dist/Components/DataDisplay/PromoBannerBlock/PromoBannerBlockProps.d.ts +9 -9
  16. package/dist/Components/DataDisplay/PromoBannerBlock/brand-piller.d.ts +3 -0
  17. package/dist/Components/DataDisplay/TestimonyCard/TestimonyCard.d.ts +3 -0
  18. package/dist/Components/DataDisplay/TestimonyCard/TestimonyCardProps.d.ts +10 -0
  19. package/dist/Components/DataDisplay/index.d.ts +2 -0
  20. package/dist/Components/Form/Button/Button.d.ts +3 -0
  21. package/dist/Components/Form/Button/ButtonProps.d.ts +16 -5
  22. package/dist/Components/Layout/Header/HeaderProps.d.ts +1 -0
  23. package/dist/Components/Layout/Header/MegaMenu/MegaMenu.d.ts +2 -1
  24. package/dist/Components/Layout/Header/MegaMenu/MegaMenuProps.d.ts +28 -1
  25. package/dist/Components/Layout/Header/MobileNavigation/MobileNavigation.d.ts +3 -0
  26. package/dist/Components/Layout/Header/MobileNavigation/MobileNavigationItem.d.ts +3 -0
  27. package/dist/Components/Layout/Header/MobileNavigation/MobileNavigationItemProps.d.ts +4 -0
  28. package/dist/Components/Layout/Header/MobileNavigation/MobileNavigationProps.d.ts +7 -0
  29. package/dist/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation.d.ts +3 -0
  30. package/dist/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem.d.ts +3 -0
  31. package/dist/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItemProps.d.ts +4 -0
  32. package/dist/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationProps.d.ts +7 -0
  33. package/dist/Components/Layout/Header/MobileNavigation/MobileWhatuOverlay.d.ts +2 -0
  34. package/dist/Components/Layout/HeroBanner/HeroBannerProps.d.ts +1 -1
  35. package/dist/Components/Layout/index.d.ts +7 -1
  36. package/dist/Components/Shared/Hook/useScrollFadeIn/useScrollFadeIn.d.ts +6 -0
  37. package/dist/Components/Shared/PillarIcon/PillarIcon.d.ts +3 -0
  38. package/dist/Components/Shared/PillarIcon/PillarIconsProps.d.ts +4 -0
  39. package/dist/Components/Shared/PillarLogo/PillarLogo.d.ts +6 -0
  40. package/dist/Components/Shared/ScrollFadeIn/ScrollFadeIn.d.ts +12 -0
  41. package/dist/Components/index.d.ts +5 -0
  42. package/dist/img/accordion-image.svg +9 -0
  43. package/dist/index.cjs.js +10 -10
  44. package/dist/index.cjs.js.map +1 -1
  45. package/dist/index.d.ts +1 -5
  46. package/dist/index.es.js +1452 -676
  47. package/dist/index.es.js.map +1 -1
  48. package/dist/selwynui.css +1 -1
  49. package/package.json +2 -1
  50. package/src/Components/DataDisplay/Accordion/Accordion.tsx +15 -17
  51. package/src/Components/DataDisplay/DetailsCard/DetailsCard.stories.tsx +7 -3
  52. package/src/Components/DataDisplay/DetailsCard/DetailsCard.tsx +11 -39
  53. package/src/Components/DataDisplay/DetailsCard/DetailsCardProps.tsx +7 -1
  54. package/src/Components/DataDisplay/DetailsCard/detailsCard.module.scss +10 -10
  55. package/src/Components/DataDisplay/ImageContent/ImageContent.stories.tsx +50 -12
  56. package/src/Components/DataDisplay/ImageContent/ImageContent.tsx +68 -21
  57. package/src/Components/DataDisplay/ImageContent/ImageContentProps.tsx +2 -1
  58. package/src/Components/DataDisplay/ImageContent/imageContent.module.scss +144 -46
  59. package/src/Components/DataDisplay/Pathway/Pathway.stories.tsx +50 -13
  60. package/src/Components/DataDisplay/Pathway/Pathway.tsx +15 -4
  61. package/src/Components/DataDisplay/Pathway/PathwayProps.tsx +13 -4
  62. package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.tsx +0 -2
  63. package/src/Components/DataDisplay/PromoBannerBlock/PromoBanner.stories.tsx +1 -2
  64. package/src/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.tsx +1 -5
  65. package/src/Components/DataDisplay/PromoBannerBlock/promoBanner.module.scss +3 -2
  66. package/src/Components/DataDisplay/index.ts +5 -1
  67. package/src/Components/DataDisplay/slider.scss +2 -0
  68. package/src/Components/Form/Button/ButtonProps.tsx +1 -1
  69. package/src/Components/Form/Button/button.module.scss +0 -1
  70. package/src/Components/Layout/Footer/Footer.stories.tsx +1 -1
  71. package/src/Components/Layout/Header/Header.stories.tsx +34 -7
  72. package/src/Components/Layout/Header/Header.tsx +2 -2
  73. package/src/Components/Layout/Header/HeaderProps.tsx +1 -0
  74. package/src/Components/Layout/Header/HeaderRightItem.tsx +2 -2
  75. package/src/Components/Layout/Header/MegaMenu/MegaMenu.tsx +156 -83
  76. package/src/Components/Layout/Header/MegaMenu/MegaMenuProps.tsx +22 -9
  77. package/src/Components/Layout/Header/MegaMenu/megaMenu.module.scss +4 -2
  78. package/src/Components/Layout/Header/MobileNavigation/MobileNavigation.tsx +26 -0
  79. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItem.tsx +17 -0
  80. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItemProps.tsx +5 -0
  81. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationProps.tsx +9 -0
  82. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation.tsx +21 -0
  83. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem.tsx +17 -0
  84. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItemProps.tsx +5 -0
  85. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationProps.tsx +9 -0
  86. package/src/Components/Layout/Header/MobileNavigation/MobileWhatuOverlay.tsx +18 -0
  87. package/src/Components/Layout/Header/MobileNavigation/mobileNavigation.module.scss +62 -0
  88. package/src/Components/Layout/Header/header.module.scss +22 -3
  89. package/src/Components/Layout/Header/header.scss +15 -0
  90. package/src/Components/Layout/HeroBanner/HeroBanner.tsx +13 -3
  91. package/src/Components/Layout/HeroBanner/HeroBannerProps.tsx +1 -1
  92. package/src/Components/Layout/HeroBanner/heroBanner.module.scss +132 -24
  93. package/src/Components/Layout/index.ts +11 -3
  94. package/src/Components/Shared/Container/container.module.scss +3 -3
  95. package/src/Components/Shared/PillarIcon/PillarIcon.tsx +4 -4
  96. package/src/Components/index.ts +5 -0
  97. package/dist/index.es.d.ts +0 -2
  98. package/dist/tsconfig.app.tsbuildinfo +0 -1
@@ -3,7 +3,8 @@
3
3
 
4
4
  &Large{
5
5
  position: relative;
6
- min-height: 90vh;
6
+ min-height: 494px;
7
+ overflow-x: hidden;
7
8
 
8
9
  .heroImg{
9
10
  position: absolute;
@@ -11,7 +12,7 @@
11
12
  right: 0;
12
13
  top: 0;
13
14
  bottom: 0;
14
- border-radius: 0 0 366px 0;
15
+ border-radius: 0 0 76.25px 0;
15
16
  overflow: hidden;
16
17
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 41.35%), linear-gradient(0deg, rgba(124, 132, 123, 0.05) 0%, rgba(124, 132, 123, 0.05) 100%), #000;
17
18
 
@@ -29,15 +30,15 @@
29
30
  z-index: 10;
30
31
  width: 100%;
31
32
  height: 100%;
32
- padding-top: 112px;
33
+ padding-top: 104px;
33
34
  color: var(--color-text);
34
35
 
35
36
  h1{
36
37
  max-width: 898px;
37
- font-size: var(--font-size-h1);
38
+ font-size: 44px;
38
39
  line-height: 1;
39
40
  font-weight: 400;
40
- letter-spacing: -7.68px;
41
+ letter-spacing: -1.76px;
41
42
 
42
43
  span{
43
44
  font-weight: 700;
@@ -52,13 +53,14 @@
52
53
  z-index: 5;
53
54
  left: 0;
54
55
  bottom: 0;
55
- height: 340px;
56
+ height: 165px;
56
57
  }
57
58
 
58
59
  }
59
60
 
60
61
  &Medium{
61
62
  position: relative;
63
+ overflow-x: hidden;
62
64
 
63
65
  .heroWrapper{
64
66
  display: flex;
@@ -69,8 +71,8 @@
69
71
  display: flex;
70
72
  flex-direction: column;
71
73
  justify-content: center;
72
- width: 50%;
73
- padding:120px 0;
74
+ width: 100%;
75
+ padding: 20px 0 20px 0;
74
76
  color: var(--color-text);
75
77
 
76
78
  h1{
@@ -89,31 +91,47 @@
89
91
  font-size: 24px;
90
92
  line-height: 1.3;
91
93
  font-weight: 400;
92
- margin-top: 90px;
94
+ margin-top: 72px;
93
95
  max-width: 604px;
94
96
  }
95
97
 
96
98
  }
97
99
 
98
- .heroImg{
99
- position: absolute;
100
- right: 0;
101
- width: 50%;
102
- height: 100%;
103
- border-radius: 500px 0 0 0;
100
+ .heroImg {
104
101
  overflow: hidden;
102
+ width: calc(100% + 32px);
103
+ margin-left: -16px;
104
+ margin-right: -16px;
105
+ position: relative;
105
106
 
106
- img{
107
- width: 100%;
107
+ img {
108
108
  height: 100%;
109
+ width: 100%;
109
110
  object-fit: cover;
110
111
  object-position: center;
112
+ min-height: 360px;
113
+ display: block;
111
114
  }
112
115
 
116
+ .clipPath {
117
+ position: absolute;
118
+ top: 0;
119
+ left: 0;
120
+ bottom: 0;
121
+ //width: 100%;
122
+ height: 100%;
123
+ color: var(--color-block-bg);
124
+ pointer-events: none;
113
125
 
126
+ svg{
127
+ height: 100%;
128
+ }
129
+
130
+ }
114
131
  }
115
132
 
116
133
 
134
+
117
135
  }
118
136
  }
119
137
 
@@ -122,14 +140,14 @@
122
140
 
123
141
  .heroWrapper{
124
142
  display: flex;
125
- min-height: 50vh;
143
+ min-height: 600px;
126
144
  flex-wrap: wrap;
127
145
 
128
146
  .content{
129
147
  display: flex;
130
148
  flex-direction: column;
131
149
  justify-content: center;
132
- width: 50%;
150
+ width: 100%;
133
151
  color: var(--color-text);
134
152
  padding: 100px 0;
135
153
 
@@ -156,12 +174,11 @@
156
174
  }
157
175
 
158
176
  .heroImg{
159
- position: absolute;
160
- right: 0;
161
- width: 50%;
162
- height: 100%;
163
- border-radius: 500px 0 0 0;
164
177
  overflow: hidden;
178
+ width: calc(100% + 32px);
179
+ margin-left: -16px;
180
+ margin-right: -16px;
181
+ position: relative;
165
182
 
166
183
  img{
167
184
  width: 100%;
@@ -170,9 +187,100 @@
170
187
  object-position: center;
171
188
  }
172
189
 
190
+ .clipPath {
191
+ position: absolute;
192
+ top: 0;
193
+ left: 0;
194
+ bottom: 0;
195
+ width: 100%;
196
+ //height: 100%;
197
+ color: var(--color-block-bg);
198
+ pointer-events: none;
199
+
200
+ svg{
201
+ height: 100%;
202
+ }
203
+
204
+ }
205
+
206
+
207
+ }
208
+
209
+ }
210
+ }
211
+
212
+ @media screen and (min-width: 992px) {
213
+
214
+ &Large{
215
+ min-height: 100vh;
216
+
217
+ .heroImg{
218
+ border-radius: 0 0 366px 0;
219
+ }
220
+
221
+ .heroWrapper{
222
+ h1{
223
+ font-size: var(--font-size-h1);
224
+ letter-spacing: -1.68px;
225
+ }
226
+
227
+ padding-top: 207px;
228
+ }
229
+
230
+ .heroSvg{
231
+ height: 340px;
232
+ }
233
+
234
+ }
235
+
236
+ &Medium{
237
+ .heroWrapper{
238
+
239
+ .content {
240
+ width: 50%;
241
+ padding: 60px 0;
242
+
243
+ p{
244
+ margin-top: 90px;
245
+ }
246
+
247
+ }
248
+
249
+ .heroImg{
250
+ margin-right: calc((100vw - 100%) / -1);
251
+ width: 50vw;
252
+ margin-left: 0;
253
+ }
173
254
 
174
255
  }
256
+ }
257
+
258
+ &Small{
259
+ .heroWrapper {
260
+
261
+ .content{
262
+ width: 50%;
263
+ padding: 10px 0;
264
+ }
175
265
 
266
+ .heroImg {
267
+ margin-right: calc((100vw - 100%) / -1);
268
+ width: 50vw;
269
+ margin-left: 0;
270
+ }
271
+ }
272
+ }
273
+
274
+ }
275
+
276
+ @media screen and (min-width: 1400px) {
277
+ &Large{
278
+ .heroWrapper{
279
+ h1{
280
+ letter-spacing: -7.68px;
281
+ }
282
+
283
+ }
176
284
  }
177
285
  }
178
286
 
@@ -9,7 +9,7 @@ export { default as FooterBottom } from './Footer/FooterBottom';
9
9
  export type { default as FooterBottomProps } from './Footer/FooterBottomProps';
10
10
  export { default as FooterBottomLeft } from './Footer/FooterBottomLeft';
11
11
  export type { default as FooterBottomLeftProps } from './Footer/FooterBottomLeftProps';
12
- export { default as FooerBottomRight } from './Footer/FooterBottomRight';
12
+ export { default as FooterBottomRight } from './Footer/FooterBottomRight';
13
13
  export type { default as FooterBottomRightProps } from './Footer/FooterBottomRightProps';
14
14
  export { default as FooterItem } from './Footer/FooterItem';
15
15
  export type {default as FooterItemProps } from './Footer/FooterItemProps';
@@ -27,6 +27,14 @@ export { default as HeroBanner } from './HeroBanner/HeroBanner';
27
27
  export type { default as HeroBannerProps } from './HeroBanner/HeroBannerProps';
28
28
 
29
29
  // Megamenu
30
+ export { default as MegaMenu} from './Header/MegaMenu/MegaMenu'
31
+ export type { default as MegaMenuProps } from './Header/MegaMenu/MegaMenuProps'
30
32
 
31
- export { default as MegaMenu} from './Header/MegaMenu/MegaMenu.tsx'
32
- export type { default as MegaMenuProps } from './Header/MegaMenu/MegaMenuProps.tsx'
33
+ //MobileNavigation
34
+ export { default as MobileNavigation } from './Header/MobileNavigation/MobileNavigation'
35
+ export { default as MobileNavigationItem} from './Header/MobileNavigation/MobileNavigationItem'
36
+
37
+
38
+ //MobileNavigation
39
+ export { default as MobileSubNavigation } from './Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation'
40
+ export { default as MobileSubNavigationItem } from './Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem'
@@ -1,13 +1,13 @@
1
1
  .container {
2
- padding: 0px 14px 0 14px;
2
+ padding: 0px 16px 0 16px;
3
3
  margin: 0px auto;
4
4
 
5
5
  &.default{
6
- max-width: 1428px;
6
+ max-width: 1432px;
7
7
  }
8
8
 
9
9
  @media screen and (min-width: 1748px) {
10
- padding: 0px 14px 0 14px;
10
+ padding: 0px 16px 0 16px;
11
11
  }
12
12
 
13
13
  }
@@ -4,7 +4,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
4
4
 
5
5
  if (pillar === 'visit') {
6
6
  return (
7
- <svg xmlns="http://www.w3.org/2000/svg" width="935" height="930" viewBox="0 0 935 930" fill="none">
7
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 935 930" fill="none">
8
8
  <g opacity="0.03">
9
9
  <path d="M454.02 0C203.235 0 0 202.405 0 452.165H454.02V0Z" fill="currentColor"/>
10
10
  <path d="M454.02 477.687C203.235 477.687 2.51136e-06 680.092 2.51136e-06 929.852H454.02V477.687Z" fill="currentColor"/>
@@ -16,7 +16,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
16
16
  }
17
17
  if (pillar === 'live') {
18
18
  return (
19
- <svg xmlns="http://www.w3.org/2000/svg" width="935" height="935" viewBox="0 0 935 935" fill="none">
19
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 935 935" fill="none">
20
20
  <g opacity="0.03">
21
21
  <path d="M481.047 480.4C481.047 731.423 684.334 935 935 935V480.4H481.047Z" fill="currentColor"/>
22
22
  <path d="M935 454.749C935 203.725 731.713 0.148275 481.047 0.148275V454.749H935Z" fill="currentColor"/>
@@ -28,7 +28,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
28
28
  }
29
29
  if (pillar === 'business') {
30
30
  return (
31
- <svg xmlns="http://www.w3.org/2000/svg" width="938" height="935" viewBox="0 0 938 935" fill="none">
31
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 938 935" fill="none">
32
32
  <g opacity="0.04">
33
33
  <path d="M938 480.48C686.479 480.48 482.528 684.005 482.528 935H938V480.48Z" fill="currentColor"/>
34
34
  <path d="M938 0.296748C686.479 0.296748 482.528 203.822 482.528 454.817H938V0.296748Z" fill="currentColor"/>
@@ -40,7 +40,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
40
40
  }
41
41
  if (pillar === 'participate') {
42
42
  return (
43
- <svg xmlns="http://www.w3.org/2000/svg" width="937" height="934" viewBox="0 0 937 934" fill="none">
43
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 937 934" fill="none">
44
44
  <g opacity="0.08">
45
45
  <path d="M4.35945e-07 454.114C251.202 454.114 454.924 250.755 454.924 0H4.35945e-07V454.114Z" fill="currentColor"/>
46
46
  <path d="M454.924 933.852C454.924 683.097 251.202 479.738 0 479.738V933.852H454.924Z" fill="currentColor"/>
@@ -0,0 +1,5 @@
1
+ export * from './DataDisplay'
2
+ export * from './Form'
3
+ export * from './Icons'
4
+ export * from './Layout'
5
+ export * from './Shared'
@@ -1,2 +0,0 @@
1
- export * from './index'
2
- export {}
@@ -1 +0,0 @@
1
- {"root":["../src/app.tsx","../src/globals.d.ts","../src/index.ts","../src/main.tsx","../src/scss.d.ts","../src/components/datadisplay/index.ts","../src/components/datadisplay/accordion/accordion.tsx","../src/components/datadisplay/accordion/accordioncontext.tsx","../src/components/datadisplay/accordion/accordioncontextinterface.tsx","../src/components/datadisplay/accordion/accordionitem.tsx","../src/components/datadisplay/accordion/accordionitemprops.tsx","../src/components/datadisplay/accordion/accordionprops.tsx","../src/components/datadisplay/accordion/accordionprovider.tsx","../src/components/datadisplay/accordion/accordionproviderinterface.tsx","../src/components/datadisplay/accordion/accordion-bg-design.tsx","../src/components/datadisplay/detailscard/detailscard.tsx","../src/components/datadisplay/detailscard/detailscardprops.tsx","../src/components/datadisplay/imagecontent/imagecontent.tsx","../src/components/datadisplay/imagecontent/imagecontentmaskingimages.tsx","../src/components/datadisplay/imagecontent/imagecontentprops.tsx","../src/components/datadisplay/introblock/introblock.tsx","../src/components/datadisplay/introblock/introblockprops.tsx","../src/components/datadisplay/kpiblock/kpiblock.tsx","../src/components/datadisplay/kpiblock/kpiblockprops.tsx","../src/components/datadisplay/pathway/pathway.tsx","../src/components/datadisplay/pathway/pathwayprops.tsx","../src/components/datadisplay/pathwayblock/pathwayblock.tsx","../src/components/datadisplay/pathwayblock/pathwayblockprops.tsx","../src/components/datadisplay/promobannerblock/promobannerblock.tsx","../src/components/datadisplay/promobannerblock/promobannerblockprops.tsx","../src/components/datadisplay/promobannerblock/brand-piller.tsx","../src/components/datadisplay/promobannerblock/promo-banner-bg-design.tsx","../src/components/datadisplay/testimonycard/testimonycard.tsx","../src/components/datadisplay/testimonycard/testimonycardprops.tsx","../src/components/form/index.ts","../src/components/form/button/button.tsx","../src/components/form/button/buttonprops.tsx","../src/components/icons/iconprops.tsx","../src/components/icons/index.ts","../src/components/icons/arrows/arrowleft/arrowleft.tsx","../src/components/icons/arrows/arrowright/arrowright.tsx","../src/components/icons/arrows/arrowsquareout/arrowsquareout.tsx","../src/components/icons/arrows/arrowsdownup/arrowsdownup.tsx","../src/components/icons/arrows/arrowsoutcardinal/arrowsoutcardinal.tsx","../src/components/icons/arrows/caretcircleright/caretcircleright.tsx","../src/components/icons/arrows/caretdown/caretdown.tsx","../src/components/icons/arrows/caretleft/caretleft.tsx","../src/components/icons/arrows/caretright/caretright.tsx","../src/components/icons/arrows/caretup/caretup.tsx","../src/components/icons/arrows/caretupdown/caretupdown.tsx","../src/components/icons/brands/facebooklogo/facebooklogo.tsx","../src/components/icons/brands/instagramlogo/instagramlogo.tsx","../src/components/icons/brands/linkedinlogo/linkedinlogo.tsx","../src/components/icons/brands/windowslogo/windowslogo.tsx","../src/components/icons/commerce/backpack/backpack.tsx","../src/components/icons/commerce/bowlsteam/bowlsteam.tsx","../src/components/icons/commerce/bread/bread.tsx","../src/components/icons/commerce/cheers/cheers.tsx","../src/components/icons/commerce/chefhat/chefhat.tsx","../src/components/icons/commerce/coffee/coffee.tsx","../src/components/icons/commerce/creditcard/creditcard.tsx","../src/components/icons/commerce/currencydollarsimple/currencydollarsimple.tsx","../src/components/icons/commerce/grains/grains.tsx","../src/components/icons/commerce/scale/scale.tsx","../src/components/icons/commerce/storefront/storefront.tsx","../src/components/icons/communication/addressbook/addressbook.stories.ts","../src/components/icons/communication/addressbook/addressbook.tsx","../src/components/icons/communication/astericksimple/asterisksimple.stories.ts","../src/components/icons/communication/astericksimple/asterisksimple.tsx","../src/components/icons/communication/asterisk/asterisk.stories.ts","../src/components/icons/communication/asterisk/asterisk.tsx","../src/components/icons/communication/at/at.stories.ts","../src/components/icons/communication/at/at.tsx","../src/components/icons/communication/broadcast/broadcast.stories.ts","../src/components/icons/communication/broadcast/broadcast.tsx","../src/components/icons/communication/chat/chat.stories.ts","../src/components/icons/communication/chat/chat.tsx","../src/components/icons/communication/chatcircletext/chatcircletext.tsx","../src/components/icons/communication/envelopesimple/envelopesimple.tsx","../src/components/icons/communication/export/export.tsx","../src/components/icons/communication/phone/phone.tsx","../src/components/icons/communication/thumbsup/thumbsup.tsx","../src/components/icons/communication/translate/translate.tsx","../src/components/icons/design/drophalfbottom/drophalfbottom.tsx","../src/components/icons/design/eye/eye.tsx","../src/components/icons/design/eyeslash/eyeslash.tsx","../src/components/icons/design/gearfine/gearfine.tsx","../src/components/icons/design/pencilline/pencilline.tsx","../src/components/icons/design/pencilsimple/pencilsimple.tsx","../src/components/icons/design/ruler/ruler.tsx","../src/components/icons/design/squaresfour/squaresfour.tsx","../src/components/icons/education/bookopentext/bookopentext.tsx","../src/components/icons/education/bookmarksimple/bookmarksimple.tsx","../src/components/icons/education/certificate/certificate.tsx","../src/components/icons/education/graduationcap/graduationcap.tsx","../src/components/icons/games/cricket/cricket.tsx","../src/components/icons/games/football/football.tsx","../src/components/icons/games/golf/golf.tsx","../src/components/icons/healthandwellness/barbell/barbell.tsx","../src/components/icons/mapandtravel/barn/barn.tsx","../src/components/icons/mapandtravel/bicycle/bicycle.tsx","../src/components/icons/mapandtravel/bus/bus.tsx","../src/components/icons/mapandtravel/car/car.tsx","../src/components/icons/mapandtravel/chargingstation/chargingstation.tsx","../src/components/icons/mapandtravel/farm/farm.tsx","../src/components/icons/mapandtravel/globe/globe.tsx","../src/components/icons/mapandtravel/goggles/goggles.tsx","../src/components/icons/mapandtravel/house/house.tsx","../src/components/icons/mapandtravel/housesimple/housesimple.tsx","../src/components/icons/mapandtravel/mappin/mappin.tsx","../src/components/icons/mapandtravel/maptrifold/maptrifold.tsx","../src/components/icons/mapandtravel/path/path.tsx","../src/components/icons/mapandtravel/roadhorizon/roadhorizon.tsx","../src/components/icons/mapandtravel/steeringwheel/steeringwheel.tsx","../src/components/icons/mapandtravel/swimmingpool/swimmingpool.tsx","../src/components/icons/mapandtravel/tram/tram.tsx","../src/components/icons/mapandtravel/van/van.tsx","../src/components/icons/mathsandfinance/calculator/calculator.tsx","../src/components/icons/mathsandfinance/chartbar/chartbar.tsx","../src/components/icons/mathsandfinance/chartbarhorizontal/chartbarhorizontal.tsx","../src/components/icons/mathsandfinance/chartline/chartline.tsx","../src/components/icons/mathsandfinance/chartlineup/chartlineup.tsx","../src/components/icons/mathsandfinance/chartpie/chartpie.tsx","../src/components/icons/mathsandfinance/minus/minus.tsx","../src/components/icons/mathsandfinance/minuscircle/minuscircle.tsx","../src/components/icons/mathsandfinance/numbersquarethree/numbersquarethree.tsx","../src/components/icons/mathsandfinance/plus/plus.tsx","../src/components/icons/mathsandfinance/pluscircle/pluscircle.tsx","../src/components/icons/mathsandfinance/xicon/xicon.tsx","../src/components/icons/media/camera/camera.tsx","../src/components/icons/media/discoball/discoball.tsx","../src/components/icons/media/filmstrip/filmstrip.tsx","../src/components/icons/media/microphone/microphone.tsx","../src/components/icons/media/musicnotes/musicnotes.tsx","../src/components/icons/media/playcircle/playcircle.tsx","../src/components/icons/media/slidershorizontal/slidershorizontal.tsx","../src/components/icons/media/stopcircle/stopcircle.tsx","../src/components/icons/media/videocamera/videocamera.tsx","../src/components/icons/officeandediting/buildinfoffice/buildingoffice.tsx","../src/components/icons/officeandediting/copy/copy.tsx","../src/components/icons/officeandediting/filetext/filetext.tsx","../src/components/icons/officeandediting/files/files.tsx","../src/components/icons/officeandediting/floppydisk/floppydisk.tsx","../src/components/icons/officeandediting/folder/folder.tsx","../src/components/icons/officeandediting/foldersimpleplus/foldersimpleplus.tsx","../src/components/icons/officeandediting/folders/folders.tsx","../src/components/icons/officeandediting/list/list.tsx","../src/components/icons/officeandediting/listbullets/listbullets.tsx","../src/components/icons/officeandediting/listdashes/listdashes.tsx","../src/components/icons/officeandediting/printer/printer.tsx","../src/components/icons/officeandediting/textaa/textaa.tsx","../src/components/icons/officeandediting/textcolumns/textcolumns.tsx","../src/components/icons/officeandediting/trash/trash.tsx","../src/components/icons/officeandediting/trashsimple/trashsimple.tsx","../src/components/icons/people/person/person.tsx","../src/components/icons/people/personarmsspread/personarmsspread.tsx","../src/components/icons/people/personsimplebike/personsimplebike.tsx","../src/components/icons/people/personsimpleski/personsimpleski.tsx","../src/components/icons/people/personsimplewalk/personsimplewalk.tsx","../src/components/icons/people/user/user.tsx","../src/components/icons/people/usercircle/usercircle.tsx","../src/components/icons/people/userswitch/userswitch.tsx","../src/components/icons/people/users/users.tsx","../src/components/icons/securityandwarnings/info/info.tsx","../src/components/icons/securityandwarnings/key/key.tsx","../src/components/icons/securityandwarnings/lockkeyopen/lockkeyopen.tsx","../src/components/icons/securityandwarnings/locksimple/locksimple.tsx","../src/components/icons/securityandwarnings/question/question.tsx","../src/components/icons/securityandwarnings/shieldcheck/shieldcheck.tsx","../src/components/icons/securityandwarnings/warningcircle/warningcircle.tsx","../src/components/icons/systemanddevice/bell/bell.tsx","../src/components/icons/systemanddevice/check/check.tsx","../src/components/icons/systemanddevice/checksquare/checksquare.tsx","../src/components/icons/systemanddevice/cloudcheck/cloudcheck.tsx","../src/components/icons/systemanddevice/desktop/desktop.tsx","../src/components/icons/systemanddevice/devicemobile/devicemobile.tsx","../src/components/icons/systemanddevice/dotsixvertical/dotsixvertical.tsx","../src/components/icons/systemanddevice/dotssix/dotssix.tsx","../src/components/icons/systemanddevice/dotsthree/dotsthree.tsx","../src/components/icons/systemanddevice/dotsthreevertical/dotsthreevertical.tsx","../src/components/icons/systemanddevice/downloadsimple/downloadsimple.tsx","../src/components/icons/systemanddevice/gear/gear.tsx","../src/components/icons/systemanddevice/link/link.tsx","../src/components/icons/systemanddevice/magnifyingglass/magnifyingglass.tsx","../src/components/icons/systemanddevice/radiobuttonicon/radiobuttonicon.tsx","../src/components/icons/systemanddevice/signin/signin.tsx","../src/components/icons/systemanddevice/signout/signout.tsx","../src/components/icons/systemanddevice/toggleleft/toggleleft.tsx","../src/components/icons/systemanddevice/toggleright/toggleright.tsx","../src/components/icons/time/calendar/calendar.tsx","../src/components/icons/time/calendarbank/calendarbank.tsx","../src/components/icons/time/calendarcheck/calendarcheck.tsx","../src/components/icons/time/calendardots/calendardots.tsx","../src/components/icons/time/clock/clock.tsx","../src/components/icons/time/clockcounterclockwise/clockcounterclockwise.tsx","../src/components/icons/weatherandnature/bird/bird.tsx","../src/components/icons/weatherandnature/campfire/campfire.tsx","../src/components/icons/weatherandnature/cloudsun/cloudsun.tsx","../src/components/icons/weatherandnature/cow/cow.tsx","../src/components/icons/weatherandnature/dog/dog.tsx","../src/components/icons/weatherandnature/fishsimple/fishsimple.tsx","../src/components/icons/weatherandnature/flower/flower.tsx","../src/components/icons/weatherandnature/moon/moon.tsx","../src/components/icons/weatherandnature/mountains/mountains.tsx","../src/components/icons/weatherandnature/plant/plant.tsx","../src/components/icons/weatherandnature/snowflake/snowflake.tsx","../src/components/icons/weatherandnature/sparkle/sparkle.tsx","../src/components/icons/weatherandnature/sun/sun.tsx","../src/components/icons/weatherandnature/tree/tree.tsx","../src/components/layout/index.ts","../src/components/layout/footer/footer.tsx","../src/components/layout/footer/footerbottom.tsx","../src/components/layout/footer/footerbottomleft.tsx","../src/components/layout/footer/footerbottomleftprops.tsx","../src/components/layout/footer/footerbottomprops.tsx","../src/components/layout/footer/footerbottomright.tsx","../src/components/layout/footer/footerbottomrightprops.tsx","../src/components/layout/footer/footeritem.tsx","../src/components/layout/footer/footeritemprops.tsx","../src/components/layout/footer/footermiddle.tsx","../src/components/layout/footer/footermiddleprops.tsx","../src/components/layout/footer/footerprops.tsx","../src/components/layout/footer/footertop.tsx","../src/components/layout/footer/footertopprops.tsx","../src/components/layout/footer/footer-bg-design.tsx","../src/components/layout/header/header.tsx","../src/components/layout/header/headerprops.tsx","../src/components/layout/header/headerright.tsx","../src/components/layout/header/headerrightitem.tsx","../src/components/layout/header/headerrightitemprops.tsx","../src/components/layout/header/headerrightprops.tsx","../src/components/layout/header/magnifyingglass/magnifyingglass.tsx","../src/components/layout/header/megamenu/megamenu.tsx","../src/components/layout/header/megamenu/megamenuprops.tsx","../src/components/layout/herobanner/herobanner.tsx","../src/components/layout/herobanner/herobannerprops.tsx","../src/components/layout/herobanner/largeheroicon.tsx","../src/components/shared/index.ts","../src/components/shared/container/container.tsx","../src/components/shared/container/containerprops.tsx","../src/components/shared/elementholder/elementholder.tsx","../src/components/shared/elementholder/elementholderprops.tsx","../src/components/shared/hook/usescrollfadein/usescrollfadein.tsx","../src/components/shared/pillaricon/pillaricon.tsx","../src/components/shared/pillaricon/pillariconsprops.tsx","../src/components/shared/pillarlogo/pillarlogo.tsx","../src/components/shared/scrollfadein/scrollfadein.tsx"],"errors":true,"version":"5.9.3"}