@linzjs/lui 10.2.2 → 10.3.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.
Files changed (97) hide show
  1. package/CHANGELOG.md +289 -767
  2. package/README.md +16 -11
  3. package/dist/assets/icons/account_circle.svg +1 -0
  4. package/dist/assets/icons/add_circle.svg +1 -0
  5. package/dist/assets/icons/add_circle_outline.svg +1 -0
  6. package/dist/assets/icons/arrow_back.svg +1 -0
  7. package/dist/assets/icons/arrow_back_ios.svg +1 -0
  8. package/dist/assets/icons/arrow_drop_down.svg +1 -0
  9. package/dist/assets/icons/arrow_drop_up.svg +1 -0
  10. package/dist/assets/icons/arrow_forward_ios.svg +1 -0
  11. package/dist/assets/icons/attachment.svg +1 -0
  12. package/dist/assets/icons/border_color.svg +1 -0
  13. package/dist/assets/icons/check.svg +1 -0
  14. package/dist/assets/icons/check_circle.svg +1 -0
  15. package/dist/assets/icons/check_circle_outline.svg +1 -0
  16. package/dist/assets/icons/clear.svg +1 -0
  17. package/dist/assets/icons/corporate_fare.svg +1 -0
  18. package/dist/assets/icons/create.svg +1 -0
  19. package/dist/assets/icons/error.svg +1 -0
  20. package/dist/assets/icons/error_outline.svg +1 -0
  21. package/dist/assets/icons/expand_less.svg +1 -0
  22. package/dist/assets/icons/expand_more.svg +1 -0
  23. package/dist/assets/icons/filter_list.svg +1 -0
  24. package/dist/assets/icons/flag.svg +1 -0
  25. package/dist/assets/icons/forward.svg +1 -0
  26. package/dist/assets/icons/insert_invitation.svg +1 -0
  27. package/dist/assets/icons/insert_photo.svg +1 -0
  28. package/dist/assets/icons/keyboard_arrow_down.svg +1 -0
  29. package/dist/assets/icons/keyboard_arrow_left.svg +1 -0
  30. package/dist/assets/icons/keyboard_arrow_right.svg +1 -0
  31. package/dist/assets/icons/keyboard_arrow_up.svg +1 -0
  32. package/dist/assets/icons/navigate_before.svg +1 -0
  33. package/dist/assets/icons/navigate_next.svg +1 -0
  34. package/dist/assets/icons/people_outline.svg +1 -0
  35. package/dist/assets/icons/person.svg +1 -0
  36. package/dist/assets/icons/person_add.svg +1 -0
  37. package/dist/assets/icons/remove_circle.svg +1 -0
  38. package/dist/assets/icons/remove_circle_outline.svg +1 -0
  39. package/dist/assets/icons/send.svg +1 -0
  40. package/dist/assets/icons/view_week.svg +1 -0
  41. package/dist/assets/icons/warning.svg +1 -0
  42. package/dist/assets/svg-content.d.ts +39 -1
  43. package/dist/assets/svg-content.tsx +231 -7
  44. package/dist/components/LuiMenu/LuiMenu.d.ts +3 -0
  45. package/dist/components/common/Icons.d.ts +53 -3
  46. package/dist/govNZ-DS/FlexColumn.scss +1 -1
  47. package/dist/govNZ-DS/FlexContainer.scss +1 -1
  48. package/dist/govNZ-DS/FlexRow.scss +1 -1
  49. package/dist/govNZ-DS/FooterStandard.scss +1 -1
  50. package/dist/govNZ-DS/FooterWrapper.scss +1 -1
  51. package/dist/govNZ-DS/_index.scss +1 -1
  52. package/dist/lui.cjs.development.js +16 -19
  53. package/dist/lui.cjs.development.js.map +1 -1
  54. package/dist/lui.cjs.production.min.js +1 -1
  55. package/dist/lui.cjs.production.min.js.map +1 -1
  56. package/dist/lui.css +357 -376
  57. package/dist/lui.css.map +1 -1
  58. package/dist/lui.esm.js +16 -19
  59. package/dist/lui.esm.js.map +1 -1
  60. package/dist/scss/Components/ContextMenu/context-menu.scss +1 -1
  61. package/dist/scss/Components/ExpandingSection/expanding-section.scss +0 -1
  62. package/dist/scss/Components/Footer/footer.scss +6 -6
  63. package/dist/scss/Components/Header/header.scss +7 -5
  64. package/dist/scss/Components/HelpSection/help-section.scss +2 -2
  65. package/dist/scss/Components/LOLCommonMenu/LOLAuthorisedLink.scss +0 -1
  66. package/dist/scss/Components/LOLCommonMenu/LOLFirmSwitcherMenu.scss +1 -1
  67. package/dist/scss/Components/LuiFilterContainer/LuiFilterContainer.scss +5 -0
  68. package/dist/scss/Components/Menu/menu.scss +8 -0
  69. package/dist/scss/Components/Messaging/messaging.scss +8 -8
  70. package/dist/scss/Components/Modal/modal.scss +6 -6
  71. package/dist/scss/Components/Notifications/notifications.scss +5 -5
  72. package/dist/scss/Elements/Buttons/buttons.scss +16 -17
  73. package/dist/scss/Elements/Forms/FormComponents/FormSpacing.scss +7 -7
  74. package/dist/scss/Elements/Forms/FormComponents/Inputs.scss +0 -5
  75. package/dist/scss/Elements/Forms/FormComponents/RadiosCheckboxes.scss +92 -103
  76. package/dist/scss/Elements/Forms/forms.scss +14 -32
  77. package/dist/scss/Elements/Tables/tables.scss +1 -1
  78. package/dist/scss/Foundation/Utilities/AspectRatio.scss +1 -1
  79. package/dist/scss/Foundation/Utilities/Borders.scss +1 -1
  80. package/dist/scss/Foundation/Utilities/Breakpoint.scss +19 -7
  81. package/dist/scss/Foundation/Utilities/DLColumns.scss +21 -6
  82. package/dist/scss/Foundation/Utilities/Ease.scss +1 -8
  83. package/dist/scss/Foundation/Utilities/FitMedia.scss +2 -1
  84. package/dist/scss/Foundation/Utilities/FluidType.scss +28 -6
  85. package/dist/scss/Foundation/Utilities/Placeholder.scss +12 -5
  86. package/dist/scss/Foundation/Variables/FontVars.scss +7 -7
  87. package/dist/scss/Foundation/Variables/FormVars.scss +8 -8
  88. package/dist/scss/Foundation/Variables/SpacingVars.scss +17 -10
  89. package/dist/scss/Global/GenericElements/Lists.scss +2 -2
  90. package/dist/scss/Global/GenericElements/Typography.scss +5 -5
  91. package/dist/scss/Global/_index.scss +1 -1
  92. package/dist/scss/Vendor/_index.scss +1 -1
  93. package/dist/scss/Vendor/naturalize.scss +32 -39
  94. package/dist/scss/{Global → Vendor}/print.scss +0 -0
  95. package/dist/scss/base.scss +2 -1
  96. package/package.json +4 -1
  97. package/dist/assets/icons/icon-cart.svg +0 -1
package/CHANGELOG.md CHANGED
@@ -1,100 +1,109 @@
1
- ## [10.2.2](https://github.com/linz/lui/compare/v10.2.1...v10.2.2) (2021-08-04)
1
+ ## [10.3.2](https://github.com/linz/lui/compare/v10.3.1...v10.3.2) (2021-09-17)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * apply consistent top margin to sticky header's sibling element ([c0a284a](https://github.com/linz/lui/commit/c0a284adb3dca613445ca06feffb9ae31b4c9d55))
7
- * restore color of icons in transparent header and used header height vars for positioning of drawer ([3ab3249](https://github.com/linz/lui/commit/3ab32496825336e0dcfa4301fb2ed78d6b69bc91))
8
- * used same header height for calculating drawer height ([ec9ecce](https://github.com/linz/lui/commit/ec9eccec20ab6814b25867dcf0a741eb0b6b0df5))
6
+ * CS-327 clear global client ref when user logs out or leaves the page. ([#411](https://github.com/linz/lui/issues/411)) ([43c8828](https://github.com/linz/lui/commit/43c88282ee86378fb86a52922b0ed159e4b776a8))
9
7
 
10
- ## [10.2.1](https://github.com/linz/lui/compare/v10.2.0...v10.2.1) (2021-08-03)
8
+ ## [10.3.1](https://github.com/linz/lui/compare/v10.3.0...v10.3.1) (2021-09-17)
11
9
 
12
10
 
13
11
  ### Bug Fixes
14
12
 
15
- * allow sticky header to work with a main tag as sibling ([563dee6](https://github.com/linz/lui/commit/563dee60d307d5e12e0575e15f4e75817884c7cc))
13
+ * Refactor LuiFilterContainer ([#410](https://github.com/linz/lui/issues/410)) ([f8b14e4](https://github.com/linz/lui/commit/f8b14e409763f9e7f2f91e9543ccc33c6173ac66))
16
14
 
17
- # [10.2.0](https://github.com/linz/lui/compare/v10.1.0...v10.2.0) (2021-07-29)
15
+ # [10.3.0](https://github.com/linz/lui/compare/v10.2.3...v10.3.0) (2021-09-13)
16
+
17
+
18
+ ### Features
19
+
20
+ * Add support for href in LuiMenuItem ([#408](https://github.com/linz/lui/issues/408)) ([ac6be69](https://github.com/linz/lui/commit/ac6be69996cbf3e9093675dfbb10412bf81d958c))
21
+
22
+ ## [10.2.3](https://github.com/linz/lui/compare/v10.2.2...v10.2.3) (2021-09-07)
18
23
 
24
+ ## [10.2.2](https://github.com/linz/lui/compare/v10.2.1...v10.2.2) (2021-08-04)
25
+
26
+ ### Bug Fixes
27
+
28
+ - apply consistent top margin to sticky header's sibling element ([c0a284a](https://github.com/linz/lui/commit/c0a284adb3dca613445ca06feffb9ae31b4c9d55))
29
+ - restore color of icons in transparent header and used header height vars for positioning of drawer ([3ab3249](https://github.com/linz/lui/commit/3ab32496825336e0dcfa4301fb2ed78d6b69bc91))
30
+ - used same header height for calculating drawer height ([ec9ecce](https://github.com/linz/lui/commit/ec9eccec20ab6814b25867dcf0a741eb0b6b0df5))
31
+
32
+ ## [10.2.1](https://github.com/linz/lui/compare/v10.2.0...v10.2.1) (2021-08-03)
19
33
 
20
34
  ### Bug Fixes
21
35
 
22
- * Update case of labels in LOLCommonDrawerMenu ([6c2f9ba](https://github.com/linz/lui/commit/6c2f9bae110a6160caeb35a15160104def8bfd75))
36
+ - allow sticky header to work with a main tag as sibling ([563dee6](https://github.com/linz/lui/commit/563dee60d307d5e12e0575e15f4e75817884c7cc))
37
+
38
+ # [10.2.0](https://github.com/linz/lui/compare/v10.1.0...v10.2.0) (2021-07-29)
39
+
40
+ ### Bug Fixes
23
41
 
42
+ - Update case of labels in LOLCommonDrawerMenu ([6c2f9ba](https://github.com/linz/lui/commit/6c2f9bae110a6160caeb35a15160104def8bfd75))
24
43
 
25
44
  ### Features
26
45
 
27
- * Allow homeLink to be a function in LuiHeader ([674517f](https://github.com/linz/lui/commit/674517ff1a1b6d35a8f6fe9e29f0879911096a0c))
46
+ - Allow homeLink to be a function in LuiHeader ([674517f](https://github.com/linz/lui/commit/674517ff1a1b6d35a8f6fe9e29f0879911096a0c))
28
47
 
29
48
  # [10.1.0](https://github.com/linz/lui/compare/v10.0.0...v10.1.0) (2021-07-28)
30
49
 
31
-
32
50
  ### Features
33
51
 
34
- * Adds LuiModalContext and hook for creating Modals with Hooks ([#392](https://github.com/linz/lui/issues/392)) ([2c0c139](https://github.com/linz/lui/commit/2c0c139769518560796082c5f6d5e8a4eb52b5a8))
52
+ - Adds LuiModalContext and hook for creating Modals with Hooks ([#392](https://github.com/linz/lui/issues/392)) ([2c0c139](https://github.com/linz/lui/commit/2c0c139769518560796082c5f6d5e8a4eb52b5a8))
35
53
 
36
54
  # [10.0.0](https://github.com/linz/lui/compare/v9.0.0...v10.0.0) (2021-07-27)
37
55
 
38
-
39
56
  ### Bug Fixes
40
57
 
41
- * Fixes LuiDrawerMenu so that it supports non-sticky headers. ([#393](https://github.com/linz/lui/issues/393)) ([8a41cbd](https://github.com/linz/lui/commit/8a41cbdb4310a94cdbf98e06edb82799c68616d7))
42
-
58
+ - Fixes LuiDrawerMenu so that it supports non-sticky headers. ([#393](https://github.com/linz/lui/issues/393)) ([8a41cbd](https://github.com/linz/lui/commit/8a41cbdb4310a94cdbf98e06edb82799c68616d7))
43
59
 
44
60
  ### BREAKING CHANGES
45
61
 
46
- * The LuiHeader is now sticky by default, as per UX design.
62
+ - The LuiHeader is now sticky by default, as per UX design.
47
63
 
48
- * Update stories so that correct styling is applied.
64
+ - Update stories so that correct styling is applied.
49
65
 
50
66
  # [9.0.0](https://github.com/linz/lui/compare/v8.1.0...v9.0.0) (2021-07-22)
51
67
 
52
-
53
68
  ### Features
54
69
 
55
- * Update LOLCommonDrawerMenu to use LuiDrawerMenuOption. ([#389](https://github.com/linz/lui/issues/389)) ([9b02da1](https://github.com/linz/lui/commit/9b02da11559bd95560bb7ca77f8cb9a01b140365))
56
-
70
+ - Update LOLCommonDrawerMenu to use LuiDrawerMenuOption. ([#389](https://github.com/linz/lui/issues/389)) ([9b02da1](https://github.com/linz/lui/commit/9b02da11559bd95560bb7ca77f8cb9a01b140365))
57
71
 
58
72
  ### BREAKING CHANGES
59
73
 
60
- * This deprecates LOLDrawerMenuLink and renames LOLDrawerMenuLinkDivider to LuiDrawerMenuDivider.
74
+ - This deprecates LOLDrawerMenuLink and renames LOLDrawerMenuLinkDivider to LuiDrawerMenuDivider.
61
75
 
62
76
  # [8.1.0](https://github.com/linz/lui/compare/v8.0.2...v8.1.0) (2021-07-22)
63
77
 
64
-
65
78
  ### Features
66
79
 
67
- * Add tooltips for HTML and React. ([#387](https://github.com/linz/lui/issues/387)) ([6fd4300](https://github.com/linz/lui/commit/6fd4300cfadfde965172ea2965baf430f2bb8673))
80
+ - Add tooltips for HTML and React. ([#387](https://github.com/linz/lui/issues/387)) ([6fd4300](https://github.com/linz/lui/commit/6fd4300cfadfde965172ea2965baf430f2bb8673))
68
81
 
69
82
  ## [8.0.2](https://github.com/linz/lui/compare/v8.0.1...v8.0.2) (2021-07-20)
70
83
 
71
-
72
84
  ### Bug Fixes
73
85
 
74
- * Actually use the client ref in LOLFirmSwitcher if enabled. ([#386](https://github.com/linz/lui/issues/386)) ([b627c48](https://github.com/linz/lui/commit/b627c48dc4e0cfbce0f131f611b8de13f437eded))
86
+ - Actually use the client ref in LOLFirmSwitcher if enabled. ([#386](https://github.com/linz/lui/issues/386)) ([b627c48](https://github.com/linz/lui/commit/b627c48dc4e0cfbce0f131f611b8de13f437eded))
75
87
 
76
88
  ## [8.0.1](https://github.com/linz/lui/compare/v8.0.0...v8.0.1) (2021-07-20)
77
89
 
78
-
79
90
  ### Bug Fixes
80
91
 
81
- * Handle unlikely case where selectedFirm may be undefined. Add test coverage. ([#385](https://github.com/linz/lui/issues/385)) ([b4af2ab](https://github.com/linz/lui/commit/b4af2ab1ca85335bd731c2890d9857fdc8cc1868))
92
+ - Handle unlikely case where selectedFirm may be undefined. Add test coverage. ([#385](https://github.com/linz/lui/issues/385)) ([b4af2ab](https://github.com/linz/lui/commit/b4af2ab1ca85335bd731c2890d9857fdc8cc1868))
82
93
 
83
94
  # [8.0.0](https://github.com/linz/lui/compare/v7.1.0...v8.0.0) (2021-07-20)
84
95
 
85
-
86
- * Feature/cs 51 new common menu (#382) ([7b02477](https://github.com/linz/lui/commit/7b02477ae7b46f8ef4b1db3726bae0f86ba691f7)), closes [#382](https://github.com/linz/lui/issues/382)
87
-
96
+ - Feature/cs 51 new common menu (#382) ([7b02477](https://github.com/linz/lui/commit/7b02477ae7b46f8ef4b1db3726bae0f86ba691f7)), closes [#382](https://github.com/linz/lui/issues/382)
88
97
 
89
98
  ### BREAKING CHANGES
90
99
 
91
- * LuiDrawerMenu will ignore any custom icon previously set.
100
+ - LuiDrawerMenu will ignore any custom icon previously set.
92
101
 
93
- * CS-51: Refactor of CSS for LUIDrawerMenuOption(s) and LOLDrawerMenu.
102
+ - CS-51: Refactor of CSS for LUIDrawerMenuOption(s) and LOLDrawerMenu.
94
103
 
95
104
  BREAKING-CHANGE: Styling of LUIDrawerMenu has changed and may impact applications that have overridden default styling.
96
105
 
97
- * CS-51: Refactor LOLCommonDrawerMenu to allow apps to customize menu.
106
+ - CS-51: Refactor LOLCommonDrawerMenu to allow apps to customize menu.
98
107
 
99
108
  Co-authored-by: schinniah <schinniah@linz.govt.nz>
100
109
  Co-authored-by: Kai Hackemesser <khackemesser@linz.govt.nz>
@@ -102,288 +111,256 @@ Co-authored-by: Kai <kai.hackemesser@gmail.com>
102
111
 
103
112
  # [7.1.0](https://github.com/linz/lui/compare/v7.0.0...v7.1.0) (2021-07-16)
104
113
 
105
-
106
114
  ### Features
107
115
 
108
- * Shadow banner and icons/images tidy up ([#381](https://github.com/linz/lui/issues/381)) ([5ba7ac9](https://github.com/linz/lui/commit/5ba7ac9c50dbed00ddad4bcd572a8b02d4fbfbfe))
116
+ - Shadow banner and icons/images tidy up ([#381](https://github.com/linz/lui/issues/381)) ([5ba7ac9](https://github.com/linz/lui/commit/5ba7ac9c50dbed00ddad4bcd572a8b02d4fbfbfe))
109
117
 
110
118
  # [7.0.0](https://github.com/linz/lui/compare/v6.2.0...v7.0.0) (2021-07-15)
111
119
 
112
-
113
120
  ### Bug Fixes
114
121
 
115
- * added radio buttons styled as button groups. So now we have the … ([#376](https://github.com/linz/lui/issues/376)) ([fc4c433](https://github.com/linz/lui/commit/fc4c4337d414d57ba95f6c54c53e71ffea738d3c)), closes [#374](https://github.com/linz/lui/issues/374) [#377](https://github.com/linz/lui/issues/377) [#377](https://github.com/linz/lui/issues/377)
116
-
122
+ - added radio buttons styled as button groups. So now we have the … ([#376](https://github.com/linz/lui/issues/376)) ([fc4c433](https://github.com/linz/lui/commit/fc4c4337d414d57ba95f6c54c53e71ffea738d3c)), closes [#374](https://github.com/linz/lui/issues/374) [#377](https://github.com/linz/lui/issues/377) [#377](https://github.com/linz/lui/issues/377)
117
123
 
118
124
  ### Features
119
125
 
120
- * global client reference context provider ([#380](https://github.com/linz/lui/issues/380)) ([d226851](https://github.com/linz/lui/commit/d226851fa902d6d8b1ad40816bb05b27c1766d01))
121
-
126
+ - global client reference context provider ([#380](https://github.com/linz/lui/issues/380)) ([d226851](https://github.com/linz/lui/commit/d226851fa902d6d8b1ad40816bb05b27c1766d01))
122
127
 
123
128
  ### BREAKING CHANGES
124
129
 
125
- * tests that mock IUserContext will need to mock new property: clientRef and function changeClientRef
130
+ - tests that mock IUserContext will need to mock new property: clientRef and function changeClientRef
126
131
 
127
132
  Co-authored-by: Kai <kai.hackemesser@gmail.com>
128
133
 
129
- * CS-223: Fix 17-LOLComponents.stories.tsx
134
+ - CS-223: Fix 17-LOLComponents.stories.tsx
130
135
 
131
- * feat: Add global client reference context provider for apps that need a global client ref.
136
+ - feat: Add global client reference context provider for apps that need a global client ref.
132
137
 
133
138
  Co-authored-by: Kai <kai.hackemesser@gmail.com>
134
139
  Co-authored-by: Saravan <schinniah@linz.govt.nz>
135
140
 
136
- * CS-223: Fix test name
141
+ - CS-223: Fix test name
137
142
 
138
143
  Co-authored-by: Kai <kai.hackemesser@gmail.com>
139
144
  Co-authored-by: Saravan <schinniah@linz.govt.nz>
140
145
 
141
146
  # [6.2.0](https://github.com/linz/lui/compare/v6.1.0...v6.2.0) (2021-07-12)
142
147
 
143
-
144
148
  ### Features
145
149
 
146
- * Icon generator npm script and component ([#375](https://github.com/linz/lui/issues/375)) ([1517a32](https://github.com/linz/lui/commit/1517a326835cf586c3f34441f09d46e26c2c83d1))
150
+ - Icon generator npm script and component ([#375](https://github.com/linz/lui/issues/375)) ([1517a32](https://github.com/linz/lui/commit/1517a326835cf586c3f34441f09d46e26c2c83d1))
147
151
 
148
152
  # [6.1.0](https://github.com/linz/lui/compare/v6.0.0...v6.1.0) (2021-07-08)
149
153
 
150
-
151
154
  ### Features
152
155
 
153
- * bring LuiRadioButton back ([#377](https://github.com/linz/lui/issues/377)) ([551ccc2](https://github.com/linz/lui/commit/551ccc2516efd50d82faa75f2c0f10c46e46b4b3))
156
+ - bring LuiRadioButton back ([#377](https://github.com/linz/lui/issues/377)) ([551ccc2](https://github.com/linz/lui/commit/551ccc2516efd50d82faa75f2c0f10c46e46b4b3))
154
157
 
155
158
  # [6.0.0](https://github.com/linz/lui/compare/v5.3.2...v6.0.0) (2021-07-01)
156
159
 
157
-
158
160
  ### Features
159
161
 
160
- * Add helper methods to LOLUserContext ([#368](https://github.com/linz/lui/issues/368)) ([95c0dcd](https://github.com/linz/lui/commit/95c0dcd5ee493016ac084ad8a60624a57ac23097))
161
-
162
+ - Add helper methods to LOLUserContext ([#368](https://github.com/linz/lui/issues/368)) ([95c0dcd](https://github.com/linz/lui/commit/95c0dcd5ee493016ac084ad8a60624a57ac23097))
162
163
 
163
164
  ### BREAKING CHANGES
164
165
 
165
- * LOLUserContext has additional methods added. Unit tests mocking LOLUserContext will need to be updated.
166
+ - LOLUserContext has additional methods added. Unit tests mocking LOLUserContext will need to be updated.
166
167
 
167
- * Fix story using mocked LOLUserContext.
168
+ - Fix story using mocked LOLUserContext.
168
169
 
169
- * Remove unnecessary dependency from useCallback in LOLUserContext
170
+ - Remove unnecessary dependency from useCallback in LOLUserContext
170
171
 
171
172
  ## [5.3.2](https://github.com/linz/lui/compare/v5.3.1...v5.3.2) (2021-07-01)
172
173
 
173
-
174
174
  ### Bug Fixes
175
175
 
176
- * Forcing sass update ([#371](https://github.com/linz/lui/issues/371)) ([497fa86](https://github.com/linz/lui/commit/497fa868c040dbd0736211793e7efee49a8dbee2))
176
+ - Forcing sass update ([#371](https://github.com/linz/lui/issues/371)) ([497fa86](https://github.com/linz/lui/commit/497fa868c040dbd0736211793e7efee49a8dbee2))
177
177
 
178
178
  ## [5.3.1](https://github.com/linz/lui/compare/v5.3.0...v5.3.1) (2021-07-01)
179
179
 
180
-
181
180
  ### Bug Fixes
182
181
 
183
- * updates story book, sass, and initial resolve to sass deprecation of division symbol ([#370](https://github.com/linz/lui/issues/370)) ([9259fba](https://github.com/linz/lui/commit/9259fba7abb9b530938288c2eae984de9bcf7393))
182
+ - updates story book, sass, and initial resolve to sass deprecation of division symbol ([#370](https://github.com/linz/lui/issues/370)) ([9259fba](https://github.com/linz/lui/commit/9259fba7abb9b530938288c2eae984de9bcf7393))
184
183
 
185
184
  # [5.3.0](https://github.com/linz/lui/compare/v5.2.0...v5.3.0) (2021-06-29)
186
185
 
187
-
188
186
  ### Features
189
187
 
190
- * Allow LuiTextInput to support multiline text ([#361](https://github.com/linz/lui/issues/361)) ([ba50f2b](https://github.com/linz/lui/commit/ba50f2b71ee452d4e0e9e6489aae9c9182f76dc4))
188
+ - Allow LuiTextInput to support multiline text ([#361](https://github.com/linz/lui/issues/361)) ([ba50f2b](https://github.com/linz/lui/commit/ba50f2b71ee452d4e0e9e6489aae9c9182f76dc4))
191
189
 
192
190
  # [5.2.0](https://github.com/linz/lui/compare/v5.1.2...v5.2.0) (2021-06-29)
193
191
 
194
-
195
192
  ### Features
196
193
 
197
- * Updated header and footer to use the Toitū Te Whenua logo ([#362](https://github.com/linz/lui/issues/362)) ([203d738](https://github.com/linz/lui/commit/203d738bb6aa7b2ba9414e87b1e3a103779e13c5))
194
+ - Updated header and footer to use the Toitū Te Whenua logo ([#362](https://github.com/linz/lui/issues/362)) ([203d738](https://github.com/linz/lui/commit/203d738bb6aa7b2ba9414e87b1e3a103779e13c5))
198
195
 
199
196
  ## [5.1.2](https://github.com/linz/lui/compare/v5.1.1...v5.1.2) (2021-06-24)
200
197
 
201
-
202
198
  ### Bug Fixes
203
199
 
204
- * Adjusting spacing to apply to wrapper, not label ([#360](https://github.com/linz/lui/issues/360)) ([29bcb44](https://github.com/linz/lui/commit/29bcb4450f53c01f29d5bd06c46bc4f787736282))
200
+ - Adjusting spacing to apply to wrapper, not label ([#360](https://github.com/linz/lui/issues/360)) ([29bcb44](https://github.com/linz/lui/commit/29bcb4450f53c01f29d5bd06c46bc4f787736282))
205
201
 
206
202
  ## [5.1.1](https://github.com/linz/lui/compare/v5.1.0...v5.1.1) (2021-06-23)
207
203
 
208
-
209
204
  ### Bug Fixes
210
205
 
211
- * Textinput - adding extra classNames as hooks, changing lineheights from 50px to 48px ([#359](https://github.com/linz/lui/issues/359)) ([7234d4a](https://github.com/linz/lui/commit/7234d4a794649260582254f19ffc66a975f4565d))
206
+ - Textinput - adding extra classNames as hooks, changing lineheights from 50px to 48px ([#359](https://github.com/linz/lui/issues/359)) ([7234d4a](https://github.com/linz/lui/commit/7234d4a794649260582254f19ffc66a975f4565d))
212
207
 
213
208
  # [5.1.0](https://github.com/linz/lui/compare/v5.0.2...v5.1.0) (2021-06-21)
214
209
 
215
-
216
210
  ### Features
217
211
 
218
- * optionally validate formik on LuiTextInput value change ([#357](https://github.com/linz/lui/issues/357)) ([9485d18](https://github.com/linz/lui/commit/9485d182cc562db64da560beee13bd5927c952a7))
212
+ - optionally validate formik on LuiTextInput value change ([#357](https://github.com/linz/lui/issues/357)) ([9485d18](https://github.com/linz/lui/commit/9485d182cc562db64da560beee13bd5927c952a7))
219
213
 
220
214
  ## [5.0.2](https://github.com/linz/lui/compare/v5.0.1...v5.0.2) (2021-06-17)
221
215
 
222
-
223
216
  ### Bug Fixes
224
217
 
225
- * add query parameters and hash to auth redirect ([#356](https://github.com/linz/lui/issues/356)) ([14ee0c0](https://github.com/linz/lui/commit/14ee0c0b9b7979f7c3b35a7a488163b348044611))
218
+ - add query parameters and hash to auth redirect ([#356](https://github.com/linz/lui/issues/356)) ([14ee0c0](https://github.com/linz/lui/commit/14ee0c0b9b7979f7c3b35a7a488163b348044611))
226
219
 
227
220
  ## [5.0.1](https://github.com/linz/lui/compare/v5.0.0...v5.0.1) (2021-06-08)
228
221
 
229
-
230
222
  ### Bug Fixes
231
223
 
232
- * added colours back into headings ([#352](https://github.com/linz/lui/issues/352)) ([24af7c0](https://github.com/linz/lui/commit/24af7c0f1a552fdca1b31e97ce7886b409dbf35c))
224
+ - added colours back into headings ([#352](https://github.com/linz/lui/issues/352)) ([24af7c0](https://github.com/linz/lui/commit/24af7c0f1a552fdca1b31e97ce7886b409dbf35c))
233
225
 
234
226
  # [5.0.0](https://github.com/linz/lui/compare/v4.3.1...v5.0.0) (2021-06-07)
235
227
 
236
-
237
228
  ### FIX
238
229
 
239
- * P tag being picketfenced by ul, li ([#351](https://github.com/linz/lui/issues/351)) ([a52de7d](https://github.com/linz/lui/commit/a52de7d335fa1fb00dd2c641210a7202999fbb3c))
240
-
230
+ - P tag being picketfenced by ul, li ([#351](https://github.com/linz/lui/issues/351)) ([a52de7d](https://github.com/linz/lui/commit/a52de7d335fa1fb00dd2c641210a7202999fbb3c))
241
231
 
242
232
  ### BREAKING CHANGES
243
233
 
244
- * This will no longer dictate that p tags in a ul will have no margin top - will require manual removal
234
+ - This will no longer dictate that p tags in a ul will have no margin top - will require manual removal
245
235
 
246
236
  Co-authored-by: Darrell White <knockerdesign@gmail.com>
247
237
 
248
238
  ## [4.3.1](https://github.com/linz/lui/compare/v4.3.0...v4.3.1) (2021-06-01)
249
239
 
250
-
251
240
  ### Bug Fixes
252
241
 
253
- * fix form error icon alignment ([#350](https://github.com/linz/lui/issues/350)) ([134df7f](https://github.com/linz/lui/commit/134df7f3eb3d809059e4d927a1b1a916ca79754a))
242
+ - fix form error icon alignment ([#350](https://github.com/linz/lui/issues/350)) ([134df7f](https://github.com/linz/lui/commit/134df7f3eb3d809059e4d927a1b1a916ca79754a))
254
243
 
255
244
  # [4.3.0](https://github.com/linz/lui/compare/v4.2.0...v4.3.0) (2021-05-28)
256
245
 
257
-
258
246
  ### Features
259
247
 
260
- * adds privileges to the type for IFirm ([#349](https://github.com/linz/lui/issues/349)) ([7a5065d](https://github.com/linz/lui/commit/7a5065dbeb7db06d045848e18820526f007c069b))
248
+ - adds privileges to the type for IFirm ([#349](https://github.com/linz/lui/issues/349)) ([7a5065d](https://github.com/linz/lui/commit/7a5065dbeb7db06d045848e18820526f007c069b))
261
249
 
262
250
  # [4.2.0](https://github.com/linz/lui/compare/v4.1.0...v4.2.0) (2021-05-26)
263
251
 
264
-
265
252
  ### Features
266
253
 
267
- * applies smooth scrolling to html elements ([#348](https://github.com/linz/lui/issues/348)) ([1815d0a](https://github.com/linz/lui/commit/1815d0a1101879ecd98a10c0ad534b068850ea07))
254
+ - applies smooth scrolling to html elements ([#348](https://github.com/linz/lui/issues/348)) ([1815d0a](https://github.com/linz/lui/commit/1815d0a1101879ecd98a10c0ad534b068850ea07))
268
255
 
269
256
  # [4.1.0](https://github.com/linz/lui/compare/v4.0.2...v4.1.0) (2021-05-26)
270
257
 
271
-
272
258
  ### Features
273
259
 
274
- * Add useClickedOutsideElement hook to Lui ([#343](https://github.com/linz/lui/issues/343)) ([99235dd](https://github.com/linz/lui/commit/99235ddbd1a874d494a5091f4c76abd5435328a5))
260
+ - Add useClickedOutsideElement hook to Lui ([#343](https://github.com/linz/lui/issues/343)) ([99235dd](https://github.com/linz/lui/commit/99235ddbd1a874d494a5091f4c76abd5435328a5))
275
261
 
276
262
  ## [4.0.2](https://github.com/linz/lui/compare/v4.0.1...v4.0.2) (2021-05-26)
277
263
 
278
-
279
264
  ### Bug Fixes
280
265
 
281
- * removed unused color file so theres no confusion ([#347](https://github.com/linz/lui/issues/347)) ([47783eb](https://github.com/linz/lui/commit/47783eba2944134133bd8e5c44a07e484de147a1))
266
+ - removed unused color file so theres no confusion ([#347](https://github.com/linz/lui/issues/347)) ([47783eb](https://github.com/linz/lui/commit/47783eba2944134133bd8e5c44a07e484de147a1))
282
267
 
283
268
  ## [4.0.1](https://github.com/linz/lui/compare/v4.0.0...v4.0.1) (2021-05-25)
284
269
 
285
-
286
270
  ### Bug Fixes
287
271
 
288
- * Radio and Checkbox now have a white background. It used to be transparent ([#346](https://github.com/linz/lui/issues/346)) ([db7adba](https://github.com/linz/lui/commit/db7adba26edef00aa72ad7f91d5d8cbdd7be14aa))
272
+ - Radio and Checkbox now have a white background. It used to be transparent ([#346](https://github.com/linz/lui/issues/346)) ([db7adba](https://github.com/linz/lui/commit/db7adba26edef00aa72ad7f91d5d8cbdd7be14aa))
289
273
 
290
274
  # [4.0.0](https://github.com/linz/lui/compare/v3.0.4...v4.0.0) (2021-05-21)
291
275
 
292
-
293
276
  ### Features
294
277
 
295
- * Updating A tags and fieldset ([#342](https://github.com/linz/lui/issues/342)) ([24fff96](https://github.com/linz/lui/commit/24fff965bf78f09a97e91b8e845934119ae63122))
296
-
278
+ - Updating A tags and fieldset ([#342](https://github.com/linz/lui/issues/342)) ([24fff96](https://github.com/linz/lui/commit/24fff965bf78f09a97e91b8e845934119ae63122))
297
279
 
298
280
  ### BREAKING CHANGES
299
281
 
300
- * adds underline to all a tags, removes font-sizing from fieldset level to be applied at tag level
282
+ - adds underline to all a tags, removes font-sizing from fieldset level to be applied at tag level
301
283
 
302
284
  ## [3.0.4](https://github.com/linz/lui/compare/v3.0.3...v3.0.4) (2021-05-19)
303
285
 
304
-
305
286
  ### Bug Fixes
306
287
 
307
- * added type options for LuiToastMessage to prevent default formik… ([#344](https://github.com/linz/lui/issues/344)) ([b9129c0](https://github.com/linz/lui/commit/b9129c009232cb7fb34b00b88b4bf0e90ba6d3ed))
288
+ - added type options for LuiToastMessage to prevent default formik… ([#344](https://github.com/linz/lui/issues/344)) ([b9129c0](https://github.com/linz/lui/commit/b9129c009232cb7fb34b00b88b4bf0e90ba6d3ed))
308
289
 
309
290
  ## [3.0.3](https://github.com/linz/lui/compare/v3.0.2...v3.0.3) (2021-05-18)
310
291
 
311
-
312
292
  ### Bug Fixes
313
293
 
314
- * Revert 3.0.2 ([#341](https://github.com/linz/lui/issues/341)) ([28e8e2e](https://github.com/linz/lui/commit/28e8e2e45552c8b7ac1c9f215b2348dcc2f2182f)), closes [#339](https://github.com/linz/lui/issues/339) [#338](https://github.com/linz/lui/issues/338)
294
+ - Revert 3.0.2 ([#341](https://github.com/linz/lui/issues/341)) ([28e8e2e](https://github.com/linz/lui/commit/28e8e2e45552c8b7ac1c9f215b2348dcc2f2182f)), closes [#339](https://github.com/linz/lui/issues/339) [#338](https://github.com/linz/lui/issues/338)
315
295
 
316
296
  ## [3.0.2](https://github.com/linz/lui/compare/v3.0.1...v3.0.2) (2021-05-17)
317
297
 
318
-
319
298
  ### Bug Fixes
320
299
 
321
- * Removing fieldset opinionated fontsize and weight ([#339](https://github.com/linz/lui/issues/339)) ([1144067](https://github.com/linz/lui/commit/11440674e47cb36099a4f2a07115e6c9598fa1f6))
300
+ - Removing fieldset opinionated fontsize and weight ([#339](https://github.com/linz/lui/issues/339)) ([1144067](https://github.com/linz/lui/commit/11440674e47cb36099a4f2a07115e6c9598fa1f6))
322
301
 
323
302
  ## [3.0.1](https://github.com/linz/lui/compare/v3.0.0...v3.0.1) (2021-05-17)
324
303
 
325
-
326
304
  ### Bug Fixes
327
305
 
328
- * <a> tags no longer have before, but underline is spaced better. … ([#338](https://github.com/linz/lui/issues/338)) ([4832f8c](https://github.com/linz/lui/commit/4832f8cff4087b9700290b4d0443fbfb78b04b29))
306
+ - <a> tags no longer have before, but underline is spaced better. … ([#338](https://github.com/linz/lui/issues/338)) ([4832f8c](https://github.com/linz/lui/commit/4832f8cff4087b9700290b4d0443fbfb78b04b29))
329
307
 
330
308
  # [3.0.0](https://github.com/linz/lui/compare/v2.13.6...v3.0.0) (2021-05-11)
331
309
 
332
-
333
310
  ### Features
334
311
 
335
- * Updates to V3 ([#337](https://github.com/linz/lui/issues/337)) ([343620d](https://github.com/linz/lui/commit/343620d4efd2b7502b3267021fc80f3263f9ac70)), closes [#318](https://github.com/linz/lui/issues/318) [#323](https://github.com/linz/lui/issues/323) [#323](https://github.com/linz/lui/issues/323) [#322](https://github.com/linz/lui/issues/322) [#310](https://github.com/linz/lui/issues/310) [#327](https://github.com/linz/lui/issues/327) [#330](https://github.com/linz/lui/issues/330) [#333](https://github.com/linz/lui/issues/333) [#331](https://github.com/linz/lui/issues/331) [#332](https://github.com/linz/lui/issues/332) [#335](https://github.com/linz/lui/issues/335)
336
-
312
+ - Updates to V3 ([#337](https://github.com/linz/lui/issues/337)) ([343620d](https://github.com/linz/lui/commit/343620d4efd2b7502b3267021fc80f3263f9ac70)), closes [#318](https://github.com/linz/lui/issues/318) [#323](https://github.com/linz/lui/issues/323) [#323](https://github.com/linz/lui/issues/323) [#322](https://github.com/linz/lui/issues/322) [#310](https://github.com/linz/lui/issues/310) [#327](https://github.com/linz/lui/issues/327) [#330](https://github.com/linz/lui/issues/330) [#333](https://github.com/linz/lui/issues/333) [#331](https://github.com/linz/lui/issues/331) [#332](https://github.com/linz/lui/issues/332) [#335](https://github.com/linz/lui/issues/335)
337
313
 
338
314
  ### BREAKING CHANGES
339
315
 
340
- * this removes all search styles
316
+ - this removes all search styles
341
317
 
342
- * build: update version of project
318
+ - build: update version of project
343
319
 
344
- * build: fix invalid semver version
320
+ - build: fix invalid semver version
345
321
 
346
- * 3.0.0-remove-search-specific-styles.1
322
+ - 3.0.0-remove-search-specific-styles.1
347
323
 
348
- * fix: removed search components from stories
324
+ - fix: removed search components from stories
349
325
 
350
- * 3.0.0-remove-search-specific-styles.2
326
+ - 3.0.0-remove-search-specific-styles.2
351
327
 
352
328
  Co-authored-by: Ian Bondoc <ibondoc@linz.govt.nz>
353
329
  Co-authored-by: STEP Enablement Service <STEPEnablementService@linz.govt.nz>
354
- * removes .lui-text-content-area wrapping class from around typography elements
355
330
 
356
- * fix: Enabling Link stylin'
331
+ - removes .lui-text-content-area wrapping class from around typography elements
332
+
333
+ - fix: Enabling Link stylin'
357
334
 
358
- * fix: adding .lui-bulletList class
335
+ - fix: adding .lui-bulletList class
359
336
 
360
- * fix: removing html references to lui-text-content-area
337
+ - fix: removing html references to lui-text-content-area
361
338
 
362
- * fix: Removing lui-heading styles
339
+ - fix: Removing lui-heading styles
363
340
 
364
- * breaking: Redefines typo and removes lui-disclamer lui-small-txt
341
+ - breaking: Redefines typo and removes lui-disclamer lui-small-txt
365
342
 
366
- * breaking: rename small to lui-small
343
+ - breaking: rename small to lui-small
367
344
 
368
- * Breaking: Changes bullet list and removes lui-header to h
345
+ - Breaking: Changes bullet list and removes lui-header to h
369
346
 
370
- * breaking: reduce margin on li
347
+ - breaking: reduce margin on li
371
348
 
372
- * breaking: removes lui-tabular-list as we are redoing it in Dealers to be brought in
349
+ - breaking: removes lui-tabular-list as we are redoing it in Dealers to be brought in
373
350
 
374
- * button-gorup no longer wraps example
351
+ - button-gorup no longer wraps example
375
352
 
376
- * update splash modal to look fly
353
+ - update splash modal to look fly
377
354
 
378
- * version bump
355
+ - version bump
379
356
 
380
- * 3.0.0-text-content-area-1.0
357
+ - 3.0.0-text-content-area-1.0
381
358
 
382
- * fix: version bump
359
+ - fix: version bump
383
360
 
384
- * 3.0.0-text-content-area-2.0
361
+ - 3.0.0-text-content-area-2.0
385
362
 
386
- * 3.0.0-text-content-area-2.1
363
+ - 3.0.0-text-content-area-2.1
387
364
 
388
365
  Co-authored-by: Phil Alsford <palsford@linz.govt.nz>
389
366
  Co-authored-by: Phil Alsford <philals@users.noreply.github.com>
@@ -391,1343 +368,888 @@ Co-authored-by: STEP Enablement Service <STEPEnablementService@linz.govt.nz>
391
368
 
392
369
  ## [2.13.6](https://github.com/linz/lui/compare/v2.13.5...v2.13.6) (2021-05-06)
393
370
 
394
-
395
371
  ### Bug Fixes
396
372
 
397
- * correct chromatic again ([9470a86](https://github.com/linz/lui/commit/9470a860f7d23f39c5ef3d4b26bce9a10bda1b51))
373
+ - correct chromatic again ([9470a86](https://github.com/linz/lui/commit/9470a860f7d23f39c5ef3d4b26bce9a10bda1b51))
398
374
 
399
375
  ## [2.13.5](https://github.com/linz/lui/compare/v2.13.4...v2.13.5) (2021-05-05)
400
376
 
401
-
402
377
  ### Bug Fixes
403
378
 
404
- * More chromatic updates ([52651f7](https://github.com/linz/lui/commit/52651f7e7b20fad4d1b6fc7d7a6b0c0054f7f4e3))
379
+ - More chromatic updates ([52651f7](https://github.com/linz/lui/commit/52651f7e7b20fad4d1b6fc7d7a6b0c0054f7f4e3))
405
380
 
406
381
  ## [2.13.4](https://github.com/linz/lui/compare/v2.13.3...v2.13.4) (2021-05-05)
407
382
 
408
-
409
383
  ### Bug Fixes
410
384
 
411
- * renamed main to master. Auto accept on master ([8d01034](https://github.com/linz/lui/commit/8d010347d024322a479bb96379dcae7adc692563))
385
+ - renamed main to master. Auto accept on master ([8d01034](https://github.com/linz/lui/commit/8d010347d024322a479bb96379dcae7adc692563))
412
386
 
413
387
  ## [2.13.3](https://github.com/linz/lui/compare/v2.13.2...v2.13.3) (2021-05-05)
414
388
 
415
-
416
389
  ### Bug Fixes
417
390
 
418
- * do not auto accept when not master ([db10258](https://github.com/linz/lui/commit/db102583ff14c283459a6a61903cac24f17d9f40))
391
+ - do not auto accept when not master ([db10258](https://github.com/linz/lui/commit/db102583ff14c283459a6a61903cac24f17d9f40))
419
392
 
420
393
  ## [2.13.2](https://github.com/linz/lui/compare/v2.13.1...v2.13.2) (2021-05-05)
421
394
 
422
-
423
395
  ### Bug Fixes
424
396
 
425
- * makes chromatic work as it was desgined. Master will always be accepted ([#325](https://github.com/linz/lui/issues/325)) ([49742a2](https://github.com/linz/lui/commit/49742a26fceec081dce29bae50af2a81516fe399))
397
+ - makes chromatic work as it was desgined. Master will always be accepted ([#325](https://github.com/linz/lui/issues/325)) ([49742a2](https://github.com/linz/lui/commit/49742a26fceec081dce29bae50af2a81516fe399))
426
398
 
427
399
  ## [2.13.1](https://github.com/linz/lui/compare/v2.13.0...v2.13.1) (2021-05-03)
428
400
 
429
-
430
401
  ### Bug Fixes
431
402
 
432
- * exports these things from root ([#323](https://github.com/linz/lui/issues/323)) ([2889ac5](https://github.com/linz/lui/commit/2889ac55a7614d7d5856be31a1f269f02223fe87))
403
+ - exports these things from root ([#323](https://github.com/linz/lui/issues/323)) ([2889ac5](https://github.com/linz/lui/commit/2889ac55a7614d7d5856be31a1f269f02223fe87))
433
404
 
434
405
  # [2.13.0](https://github.com/linz/lui/compare/v2.12.12...v2.13.0) (2021-04-28)
435
406
 
436
-
437
407
  ### Features
438
408
 
439
- * support publishing feature branches prefixed with v3/ ([#315](https://github.com/linz/lui/issues/315)) ([11b6ce1](https://github.com/linz/lui/commit/11b6ce1a292b9e1f167d2b55c661a97e05bf6ff7))
409
+ - support publishing feature branches prefixed with v3/ ([#315](https://github.com/linz/lui/issues/315)) ([11b6ce1](https://github.com/linz/lui/commit/11b6ce1a292b9e1f167d2b55c661a97e05bf6ff7))
440
410
 
441
411
  ## [2.12.12](https://github.com/linz/lui/compare/v2.12.11...v2.12.12) (2021-04-28)
442
412
 
443
-
444
413
  ### Bug Fixes
445
414
 
446
- * exports LuiBanner as well ([#314](https://github.com/linz/lui/issues/314)) ([6f27b1e](https://github.com/linz/lui/commit/6f27b1ee074e468e689658acb2985b35b2e3c1c5))
415
+ - exports LuiBanner as well ([#314](https://github.com/linz/lui/issues/314)) ([6f27b1e](https://github.com/linz/lui/commit/6f27b1ee074e468e689658acb2985b35b2e3c1c5))
447
416
 
448
417
  ## [2.12.11](https://github.com/linz/lui/compare/v2.12.10...v2.12.11) (2021-04-28)
449
418
 
450
-
451
419
  ### Bug Fixes
452
420
 
453
- * **style:** remove paragraph tag from radio menu legend to bring inline with HTML examples ([#311](https://github.com/linz/lui/issues/311)) ([2d392e7](https://github.com/linz/lui/commit/2d392e7d7b47a2ef3af42e395e0ccf458f88c0e2))
421
+ - **style:** remove paragraph tag from radio menu legend to bring inline with HTML examples ([#311](https://github.com/linz/lui/issues/311)) ([2d392e7](https://github.com/linz/lui/commit/2d392e7d7b47a2ef3af42e395e0ccf458f88c0e2))
454
422
 
455
423
  ## [2.12.10](https://github.com/linz/lui/compare/v2.12.9...v2.12.10) (2021-04-28)
456
424
 
457
-
458
425
  ### Bug Fixes
459
426
 
460
- * Moves React files to new dir structure ([#307](https://github.com/linz/lui/issues/307)) ([2013369](https://github.com/linz/lui/commit/20133693c40680f25861420ce1f05c7e684b0cc5))
427
+ - Moves React files to new dir structure ([#307](https://github.com/linz/lui/issues/307)) ([2013369](https://github.com/linz/lui/commit/20133693c40680f25861420ce1f05c7e684b0cc5))
461
428
 
462
429
  ## [2.12.9](https://github.com/linz/lui/compare/v2.12.8...v2.12.9) (2021-04-16)
463
430
 
464
-
465
431
  ### Bug Fixes
466
432
 
467
- * Move LuiTabs.scss back to the scss directory ([#297](https://github.com/linz/lui/issues/297)) ([d998f11](https://github.com/linz/lui/commit/d998f11fc6df58b7f770e68a3cd6b74923f2646f))
433
+ - Move LuiTabs.scss back to the scss directory ([#297](https://github.com/linz/lui/issues/297)) ([d998f11](https://github.com/linz/lui/commit/d998f11fc6df58b7f770e68a3cd6b74923f2646f))
468
434
 
469
435
  ## [2.12.8](https://github.com/linz/lui/compare/v2.12.7...v2.12.8) (2021-04-09)
470
436
 
471
-
472
437
  ### Bug Fixes
473
438
 
474
- * classes missing off the error message for the select menu ([#288](https://github.com/linz/lui/issues/288)) ([cefe726](https://github.com/linz/lui/commit/cefe726a4d3e058f903273eb76d16369988bfb1b))
475
- * Places LuiTabs files in a folder together (not actual fix (its a refactor) - just wanna test automation) ([#286](https://github.com/linz/lui/issues/286)) ([06ba54a](https://github.com/linz/lui/commit/06ba54ae534dcda023febe845c23599bf3a26bf4))
476
- * use STEP_ENABLEMENT_SERVICE_PAT to push changes to package.json and CHANGELOG.md ([b11f1c5](https://github.com/linz/lui/commit/b11f1c5a394c1af416881244293ccf40ff0b08f6))
439
+ - classes missing off the error message for the select menu ([#288](https://github.com/linz/lui/issues/288)) ([cefe726](https://github.com/linz/lui/commit/cefe726a4d3e058f903273eb76d16369988bfb1b))
440
+ - Places LuiTabs files in a folder together (not actual fix (its a refactor) - just wanna test automation) ([#286](https://github.com/linz/lui/issues/286)) ([06ba54a](https://github.com/linz/lui/commit/06ba54ae534dcda023febe845c23599bf3a26bf4))
441
+ - use STEP_ENABLEMENT_SERVICE_PAT to push changes to package.json and CHANGELOG.md ([b11f1c5](https://github.com/linz/lui/commit/b11f1c5a394c1af416881244293ccf40ff0b08f6))
477
442
 
478
443
  ## [2.12.7](https://github.com/linz/lui/compare/v2.12.6...v2.12.7) (2021-04-06)
479
444
 
480
-
481
-
482
445
  ## [2.12.6](https://github.com/linz/lui/compare/v2.12.4...v2.12.6) (2021-03-31)
483
446
 
484
-
485
-
486
447
  ## [2.12.5](https://github.com/linz/lui/compare/v2.12.4...v2.12.5) (2021-03-31)
487
448
 
488
-
489
-
490
449
  ## [2.12.4](https://github.com/linz/lui/compare/v2.12.3...v2.12.4) (2021-03-30)
491
450
 
492
-
493
-
494
451
  ## [2.12.3](https://github.com/linz/lui/compare/v2.12.2...v2.12.3) (2021-03-30)
495
452
 
496
-
497
-
498
453
  ## [2.12.2](https://github.com/linz/lui/compare/v2.12.0...v2.12.2) (2021-03-29)
499
454
 
500
-
501
-
502
455
  ## [2.12.1](https://github.com/linz/lui/compare/v2.12.0...v2.12.1) (2021-03-29)
503
456
 
504
-
505
-
506
457
  # [2.12.0](https://github.com/linz/lui/compare/v2.11.14...v2.12.0) (2021-03-29)
507
458
 
508
-
509
-
510
459
  ## [2.11.14](https://github.com/linz/lui/compare/v2.11.13...v2.11.14) (2021-03-24)
511
460
 
512
-
513
-
514
461
  ## [2.11.13](https://github.com/linz/lui/compare/v2.11.12...v2.11.13) (2021-03-24)
515
462
 
516
-
517
463
  ### Features
518
464
 
519
- * support LuiMenu#boundingBoxRef and LuiMenu#anchorRef ([4396278](https://github.com/linz/lui/commit/4396278238f03c34552e842db1c142ec0256a926))
520
-
521
-
465
+ - support LuiMenu#boundingBoxRef and LuiMenu#anchorRef ([4396278](https://github.com/linz/lui/commit/4396278238f03c34552e842db1c142ec0256a926))
522
466
 
523
467
  ## [2.11.12](https://github.com/linz/lui/compare/v2.11.11...v2.11.12) (2021-03-24)
524
468
 
525
-
526
-
527
469
  ## [2.11.11](https://github.com/linz/lui/compare/v2.11.1...v2.11.11) (2021-03-24)
528
470
 
529
-
530
-
531
471
  ## [2.11.10](https://github.com/linz/lui/compare/v2.11.9...v2.11.10) (2021-03-24)
532
472
 
533
-
534
-
535
473
  ## [2.11.9](https://github.com/linz/lui/compare/v2.11.8...v2.11.9) (2021-03-24)
536
474
 
537
-
538
-
539
475
  ## [2.11.8](https://github.com/linz/lui/compare/v2.11.7...v2.11.8) (2021-03-24)
540
476
 
541
-
542
-
543
477
  ## [2.11.7](https://github.com/linz/lui/compare/v2.11.6...v2.11.7) (2021-03-24)
544
478
 
545
-
546
-
547
479
  ## [2.11.6](https://github.com/linz/lui/compare/v2.11.5...v2.11.6) (2021-03-24)
548
480
 
549
-
550
-
551
481
  ## [2.11.5](https://github.com/linz/lui/compare/v2.11.4...v2.11.5) (2021-03-24)
552
482
 
553
-
554
-
555
483
  ## [2.11.4](https://github.com/linz/lui/compare/v2.11.3...v2.11.4) (2021-03-24)
556
484
 
557
-
558
-
559
485
  ## [2.11.3](https://github.com/linz/lui/compare/v2.11.2...v2.11.3) (2021-03-24)
560
486
 
561
-
562
-
563
487
  ## [2.11.2](https://github.com/linz/lui/compare/v2.11.1...v2.11.2) (2021-03-24)
564
488
 
565
-
566
-
567
489
  ## [2.11.1](https://github.com/linz/lui/compare/v2.11.0...v2.11.1) (2021-03-21)
568
490
 
569
-
570
491
  ### Bug Fixes
571
492
 
572
- * LOLUserLastLogin not being exported ([d8b5913](https://github.com/linz/lui/commit/d8b5913bc7f091137cfe65b49b132cb2bbc7d3e5))
573
-
574
-
493
+ - LOLUserLastLogin not being exported ([d8b5913](https://github.com/linz/lui/commit/d8b5913bc7f091137cfe65b49b132cb2bbc7d3e5))
575
494
 
576
495
  # [2.11.0](https://github.com/linz/lui/compare/v2.10.8...v2.11.0) (2021-03-21)
577
496
 
578
-
579
497
  ### Bug Fixes
580
498
 
581
- * Add unit test and force locale to en-NZ for date formatting ([c3d11df](https://github.com/linz/lui/commit/c3d11df795e42c92c741d14c6cfe836a65fc4eae))
582
- * Change test name to represent proper test ([318b5e9](https://github.com/linz/lui/commit/318b5e91029376a046ab42c8386eb50ee84a8e33))
583
- * fix styling issue ([be1a2d7](https://github.com/linz/lui/commit/be1a2d751f982f54e2e1803f267312be82c82a8e))
584
- * revert interface change ([563c4c5](https://github.com/linz/lui/commit/563c4c5d3082396f9e76c77b9ce67eb0bd00881d))
585
-
499
+ - Add unit test and force locale to en-NZ for date formatting ([c3d11df](https://github.com/linz/lui/commit/c3d11df795e42c92c741d14c6cfe836a65fc4eae))
500
+ - Change test name to represent proper test ([318b5e9](https://github.com/linz/lui/commit/318b5e91029376a046ab42c8386eb50ee84a8e33))
501
+ - fix styling issue ([be1a2d7](https://github.com/linz/lui/commit/be1a2d751f982f54e2e1803f267312be82c82a8e))
502
+ - revert interface change ([563c4c5](https://github.com/linz/lui/commit/563c4c5d3082396f9e76c77b9ce67eb0bd00881d))
586
503
 
587
504
  ### Features
588
505
 
589
- * moves user last login component to it's own component, and adds to storybook ([1808a24](https://github.com/linz/lui/commit/1808a24c6c9f4ff03e39fbd61a812fed22ef24d5))
590
-
591
-
506
+ - moves user last login component to it's own component, and adds to storybook ([1808a24](https://github.com/linz/lui/commit/1808a24c6c9f4ff03e39fbd61a812fed22ef24d5))
592
507
 
593
508
  ## [2.10.9](https://github.com/linz/lui/compare/v2.10.8...v2.10.9) (2021-03-18)
594
509
 
595
-
596
-
597
510
  ## [2.10.8](https://github.com/linz/lui/compare/v2.10.7...v2.10.8) (2021-03-11)
598
511
 
599
-
600
-
601
512
  ## [2.10.7](https://github.com/linz/lui/compare/v2.10.6...v2.10.7) (2021-03-10)
602
513
 
603
-
604
-
605
514
  ## [2.10.6](https://github.com/linz/lui/compare/v2.10.5...v2.10.6) (2021-03-10)
606
515
 
607
-
608
-
609
516
  ## [2.10.5](https://github.com/linz/lui/compare/v2.10.4...v2.10.5) (2021-03-04)
610
517
 
611
-
612
-
613
518
  ## [2.10.4](https://github.com/linz/lui/compare/v2.10.3...v2.10.4) (2021-03-02)
614
519
 
615
-
616
-
617
520
  ## [2.10.3](https://github.com/linz/lui/compare/v2.10.0...v2.10.3) (2021-03-01)
618
521
 
619
-
620
-
621
522
  ## [2.10.2](https://github.com/linz/lui/compare/v2.10.0...v2.10.2) (2021-03-01)
622
523
 
623
-
624
-
625
524
  ## [2.10.1](https://github.com/linz/lui/compare/v2.10.0...v2.10.1) (2021-03-01)
626
525
 
627
-
628
-
629
526
  # [2.10.0](https://github.com/linz/lui/compare/v2.9.0...v2.10.0) (2021-03-01)
630
527
 
631
-
632
-
633
528
  # [2.9.0](https://github.com/linz/lui/compare/v2.8.18...v2.9.0) (2021-02-26)
634
529
 
635
-
636
-
637
530
  ## [2.8.18](https://github.com/linz/lui/compare/v2.6.14...v2.8.18) (2021-02-25)
638
531
 
639
-
640
532
  ### Bug Fixes
641
533
 
642
- * Allow falsey menu items w/RP ([b6b26c4](https://github.com/linz/lui/commit/b6b26c41f539bc8fe6c6d732d20f2b5fdf9ce87e))
643
- * button design system using header style ([dc947e6](https://github.com/linz/lui/commit/dc947e669024d33e6470695158986fa9d8787b1b))
644
- * design system unintentional change ([d3aaa15](https://github.com/linz/lui/commit/d3aaa15bc62cbb270cd958211f842e76e1fc93be))
645
- * exports LuiMenuDivider and LuiMenuHeader ([e16d2eb](https://github.com/linz/lui/commit/e16d2eb9de4d847439a1dfa328cf3ad605b88411))
646
- * fixes the binding issue with the context menu and the button ([496e819](https://github.com/linz/lui/commit/496e819c9fda70a385a78841245f67fb5cb5b867))
647
- * reflect footer in design system and fix unintentional change ([ce0eae5](https://github.com/linz/lui/commit/ce0eae551369f175282970768c2440921afa1c87))
648
- * remove g-flex from header, footer, and modal header, fixed footer images and added some header stories ([66ae42a](https://github.com/linz/lui/commit/66ae42a45511a35092828ba15f7be2c491e781b4))
649
- * removes plain text button hover ([59bbd90](https://github.com/linz/lui/commit/59bbd90c4083f82fa630eddd0305e7dd9022e2fd))
650
- * Set sticky header to always be on top and adjusted the adjacent div to have a margin equal to header height ([58fd27e](https://github.com/linz/lui/commit/58fd27e2f9f22e4f70fd4fa66a2b118d2e5eb099))
651
- * tidy up tests ([dd03e6e](https://github.com/linz/lui/commit/dd03e6ec4369050ca847b85745f3562c726fe9dc))
652
- * tidy up tests ([fd50b31](https://github.com/linz/lui/commit/fd50b31a7f9e23756543131915157258f4efa82e))
653
- * update header z-index so it won't cover the toast message and exposed toast message level type ([0ca70d2](https://github.com/linz/lui/commit/0ca70d233161de66852736fde37ef0ce4011579c))
654
- * wrong z-index for menu w/IF ([7482603](https://github.com/linz/lui/commit/7482603775c2afc068178e4c6739d2c159e8a016))
655
-
534
+ - Allow falsey menu items w/RP ([b6b26c4](https://github.com/linz/lui/commit/b6b26c41f539bc8fe6c6d732d20f2b5fdf9ce87e))
535
+ - button design system using header style ([dc947e6](https://github.com/linz/lui/commit/dc947e669024d33e6470695158986fa9d8787b1b))
536
+ - design system unintentional change ([d3aaa15](https://github.com/linz/lui/commit/d3aaa15bc62cbb270cd958211f842e76e1fc93be))
537
+ - exports LuiMenuDivider and LuiMenuHeader ([e16d2eb](https://github.com/linz/lui/commit/e16d2eb9de4d847439a1dfa328cf3ad605b88411))
538
+ - fixes the binding issue with the context menu and the button ([496e819](https://github.com/linz/lui/commit/496e819c9fda70a385a78841245f67fb5cb5b867))
539
+ - reflect footer in design system and fix unintentional change ([ce0eae5](https://github.com/linz/lui/commit/ce0eae551369f175282970768c2440921afa1c87))
540
+ - remove g-flex from header, footer, and modal header, fixed footer images and added some header stories ([66ae42a](https://github.com/linz/lui/commit/66ae42a45511a35092828ba15f7be2c491e781b4))
541
+ - removes plain text button hover ([59bbd90](https://github.com/linz/lui/commit/59bbd90c4083f82fa630eddd0305e7dd9022e2fd))
542
+ - Set sticky header to always be on top and adjusted the adjacent div to have a margin equal to header height ([58fd27e](https://github.com/linz/lui/commit/58fd27e2f9f22e4f70fd4fa66a2b118d2e5eb099))
543
+ - tidy up tests ([dd03e6e](https://github.com/linz/lui/commit/dd03e6ec4369050ca847b85745f3562c726fe9dc))
544
+ - tidy up tests ([fd50b31](https://github.com/linz/lui/commit/fd50b31a7f9e23756543131915157258f4efa82e))
545
+ - update header z-index so it won't cover the toast message and exposed toast message level type ([0ca70d2](https://github.com/linz/lui/commit/0ca70d233161de66852736fde37ef0ce4011579c))
546
+ - wrong z-index for menu w/IF ([7482603](https://github.com/linz/lui/commit/7482603775c2afc068178e4c6739d2c159e8a016))
656
547
 
657
548
  ### Features
658
549
 
659
- * Add a `style` property to LuiTabGroup ([5afae00](https://github.com/linz/lui/commit/5afae00a5c1ed43fe24be3fb733b0ecd3d533969))
660
- * Add more flexibilty to LuiCheckbox and minor version bump ([cf5841d](https://github.com/linz/lui/commit/cf5841d58447b25c4c5491180a666d15465b3ec2))
661
- * Add portal option to LuiMenu w/RP ([91069c6](https://github.com/linz/lui/commit/91069c670e61be5e75ee6ee879b07ab87c100762))
662
- * adds Div and Head to the LuiMenu ([0f4348b](https://github.com/linz/lui/commit/0f4348b93aa9a85e003618cd62528f715e8d23dc))
663
- * label prob to LuiCheckbox can be ReactNode ([7cabceb](https://github.com/linz/lui/commit/7cabceb9454052e6c050c5e55f4d9ccca0170362))
664
- * provide for overriding of banner styles ([38616c8](https://github.com/linz/lui/commit/38616c8116d37aa0eade913823104501146428c2))
665
-
550
+ - Add a `style` property to LuiTabGroup ([5afae00](https://github.com/linz/lui/commit/5afae00a5c1ed43fe24be3fb733b0ecd3d533969))
551
+ - Add more flexibilty to LuiCheckbox and minor version bump ([cf5841d](https://github.com/linz/lui/commit/cf5841d58447b25c4c5491180a666d15465b3ec2))
552
+ - Add portal option to LuiMenu w/RP ([91069c6](https://github.com/linz/lui/commit/91069c670e61be5e75ee6ee879b07ab87c100762))
553
+ - adds Div and Head to the LuiMenu ([0f4348b](https://github.com/linz/lui/commit/0f4348b93aa9a85e003618cd62528f715e8d23dc))
554
+ - label prob to LuiCheckbox can be ReactNode ([7cabceb](https://github.com/linz/lui/commit/7cabceb9454052e6c050c5e55f4d9ccca0170362))
555
+ - provide for overriding of banner styles ([38616c8](https://github.com/linz/lui/commit/38616c8116d37aa0eade913823104501146428c2))
666
556
 
667
557
  ### Reverts
668
558
 
669
- * Revert "2.7.6" ([610c27b](https://github.com/linz/lui/commit/610c27b002171b00cf3931d39a1d67abc43414b8))
670
-
559
+ - Revert "2.7.6" ([610c27b](https://github.com/linz/lui/commit/610c27b002171b00cf3931d39a1d67abc43414b8))
671
560
 
672
561
  ### BREAKING CHANGES
673
562
 
674
- * menu button prop is now a function
675
-
676
-
563
+ - menu button prop is now a function
677
564
 
678
565
  ## [2.8.17](https://github.com/linz/lui/compare/v2.8.16...v2.8.17) (2021-02-25)
679
566
 
680
-
681
567
  ### Bug Fixes
682
568
 
683
- * exports LuiMenuDivider and LuiMenuHeader ([e16d2eb](https://github.com/linz/lui/commit/e16d2eb9de4d847439a1dfa328cf3ad605b88411))
684
-
685
-
569
+ - exports LuiMenuDivider and LuiMenuHeader ([e16d2eb](https://github.com/linz/lui/commit/e16d2eb9de4d847439a1dfa328cf3ad605b88411))
686
570
 
687
571
  ## [2.8.16](https://github.com/linz/lui/compare/v2.8.15...v2.8.16) (2021-02-25)
688
572
 
689
-
690
573
  ### Features
691
574
 
692
- * adds Div and Head to the LuiMenu ([0f4348b](https://github.com/linz/lui/commit/0f4348b93aa9a85e003618cd62528f715e8d23dc))
693
-
694
-
575
+ - adds Div and Head to the LuiMenu ([0f4348b](https://github.com/linz/lui/commit/0f4348b93aa9a85e003618cd62528f715e8d23dc))
695
576
 
696
577
  ## [2.8.15](https://github.com/linz/lui/compare/v2.8.14...v2.8.15) (2021-02-23)
697
578
 
698
-
699
579
  ### Bug Fixes
700
580
 
701
- * wrong z-index for menu w/IF ([7482603](https://github.com/linz/lui/commit/7482603775c2afc068178e4c6739d2c159e8a016))
702
-
703
-
581
+ - wrong z-index for menu w/IF ([7482603](https://github.com/linz/lui/commit/7482603775c2afc068178e4c6739d2c159e8a016))
704
582
 
705
583
  ## [2.8.14](https://github.com/linz/lui/compare/v2.8.13...v2.8.14) (2021-02-22)
706
584
 
707
-
708
-
709
585
  ## [2.8.13](https://github.com/linz/lui/compare/v2.8.12...v2.8.13) (2021-02-22)
710
586
 
711
-
712
587
  ### Features
713
588
 
714
- * provide for overriding of banner styles ([38616c8](https://github.com/linz/lui/commit/38616c8116d37aa0eade913823104501146428c2))
715
-
716
-
589
+ - provide for overriding of banner styles ([38616c8](https://github.com/linz/lui/commit/38616c8116d37aa0eade913823104501146428c2))
717
590
 
718
591
  ## [2.8.12](https://github.com/linz/lui/compare/v2.8.11...v2.8.12) (2021-02-19)
719
592
 
720
-
721
593
  ### Bug Fixes
722
594
 
723
- * removes plain text button hover ([59bbd90](https://github.com/linz/lui/commit/59bbd90c4083f82fa630eddd0305e7dd9022e2fd))
724
-
595
+ - removes plain text button hover ([59bbd90](https://github.com/linz/lui/commit/59bbd90c4083f82fa630eddd0305e7dd9022e2fd))
725
596
 
726
597
  ### Reverts
727
598
 
728
- * Revert "2.7.6" ([610c27b](https://github.com/linz/lui/commit/610c27b002171b00cf3931d39a1d67abc43414b8))
729
-
730
-
599
+ - Revert "2.7.6" ([610c27b](https://github.com/linz/lui/commit/610c27b002171b00cf3931d39a1d67abc43414b8))
731
600
 
732
601
  ## [2.8.11](https://github.com/linz/lui/compare/v2.8.10...v2.8.11) (2021-02-18)
733
602
 
734
-
735
603
  ### Bug Fixes
736
604
 
737
- * Allow falsey menu items w/RP ([b6b26c4](https://github.com/linz/lui/commit/b6b26c41f539bc8fe6c6d732d20f2b5fdf9ce87e))
738
-
739
-
605
+ - Allow falsey menu items w/RP ([b6b26c4](https://github.com/linz/lui/commit/b6b26c41f539bc8fe6c6d732d20f2b5fdf9ce87e))
740
606
 
741
607
  ## [2.8.10](https://github.com/linz/lui/compare/v2.8.9...v2.8.10) (2021-02-17)
742
608
 
743
-
744
609
  ### Features
745
610
 
746
- * Add portal option to LuiMenu w/RP ([91069c6](https://github.com/linz/lui/commit/91069c670e61be5e75ee6ee879b07ab87c100762))
747
-
748
-
611
+ - Add portal option to LuiMenu w/RP ([91069c6](https://github.com/linz/lui/commit/91069c670e61be5e75ee6ee879b07ab87c100762))
749
612
 
750
613
  ## [2.8.6](https://github.com/linz/lui/compare/v2.8.5...v2.8.6) (2021-02-16)
751
614
 
752
-
753
-
754
615
  ## [2.8.4](https://github.com/linz/lui/compare/v2.8.3...v2.8.4) (2021-02-15)
755
616
 
756
-
757
-
758
617
  ## [2.8.3](https://github.com/linz/lui/compare/v2.8.2...v2.8.3) (2021-02-15)
759
618
 
760
-
761
-
762
619
  ## [2.8.2](https://github.com/linz/lui/compare/v2.8.1...v2.8.2) (2021-02-15)
763
620
 
764
-
765
-
766
621
  ## [2.8.1](https://github.com/linz/lui/compare/v2.7.4...v2.8.1) (2021-02-11)
767
622
 
768
-
769
-
770
623
  # [2.8.0](https://github.com/linz/lui/compare/v2.7.4...v2.8.0) (2021-02-11)
771
624
 
772
-
773
-
774
625
  ## [2.7.5](https://github.com/linz/lui/compare/v2.7.4...v2.7.5) (2021-02-04)
775
626
 
776
-
777
-
778
627
  ## [2.7.4](https://github.com/linz/lui/compare/v2.7.3...v2.7.4) (2021-02-03)
779
628
 
780
-
781
-
782
629
  ## [2.7.3](https://github.com/linz/lui/compare/v2.7.2...v2.7.3) (2021-02-02)
783
630
 
784
-
785
631
  ### Bug Fixes
786
632
 
787
- * button design system using header style ([dc947e6](https://github.com/linz/lui/commit/dc947e669024d33e6470695158986fa9d8787b1b))
788
- * design system unintentional change ([d3aaa15](https://github.com/linz/lui/commit/d3aaa15bc62cbb270cd958211f842e76e1fc93be))
789
- * reflect footer in design system and fix unintentional change ([ce0eae5](https://github.com/linz/lui/commit/ce0eae551369f175282970768c2440921afa1c87))
790
- * remove g-flex from header, footer, and modal header, fixed footer images and added some header stories ([66ae42a](https://github.com/linz/lui/commit/66ae42a45511a35092828ba15f7be2c491e781b4))
791
-
792
-
633
+ - button design system using header style ([dc947e6](https://github.com/linz/lui/commit/dc947e669024d33e6470695158986fa9d8787b1b))
634
+ - design system unintentional change ([d3aaa15](https://github.com/linz/lui/commit/d3aaa15bc62cbb270cd958211f842e76e1fc93be))
635
+ - reflect footer in design system and fix unintentional change ([ce0eae5](https://github.com/linz/lui/commit/ce0eae551369f175282970768c2440921afa1c87))
636
+ - remove g-flex from header, footer, and modal header, fixed footer images and added some header stories ([66ae42a](https://github.com/linz/lui/commit/66ae42a45511a35092828ba15f7be2c491e781b4))
793
637
 
794
638
  ## [2.7.2](https://github.com/linz/lui/compare/v2.7.1...v2.7.2) (2021-02-01)
795
639
 
796
-
797
-
798
640
  ## [2.7.1](https://github.com/linz/lui/compare/v2.7.0...v2.7.1) (2021-02-01)
799
641
 
800
-
801
-
802
642
  # [2.7.0](https://github.com/linz/lui/compare/v2.6.18...v2.7.0) (2021-01-28)
803
643
 
804
-
805
644
  ### Bug Fixes
806
645
 
807
- * tidy up tests ([dd03e6e](https://github.com/linz/lui/commit/dd03e6ec4369050ca847b85745f3562c726fe9dc))
808
- * tidy up tests ([fd50b31](https://github.com/linz/lui/commit/fd50b31a7f9e23756543131915157258f4efa82e))
809
-
646
+ - tidy up tests ([dd03e6e](https://github.com/linz/lui/commit/dd03e6ec4369050ca847b85745f3562c726fe9dc))
647
+ - tidy up tests ([fd50b31](https://github.com/linz/lui/commit/fd50b31a7f9e23756543131915157258f4efa82e))
810
648
 
811
649
  ### Features
812
650
 
813
- * label prob to LuiCheckbox can be ReactNode ([7cabceb](https://github.com/linz/lui/commit/7cabceb9454052e6c050c5e55f4d9ccca0170362))
814
-
815
-
651
+ - label prob to LuiCheckbox can be ReactNode ([7cabceb](https://github.com/linz/lui/commit/7cabceb9454052e6c050c5e55f4d9ccca0170362))
816
652
 
817
653
  ## [2.6.19](https://github.com/linz/lui/compare/v2.6.18...v2.6.19) (2021-01-27)
818
654
 
819
-
820
-
821
655
  ## [2.6.18](https://github.com/linz/lui/compare/v2.6.17...v2.6.18) (2021-01-26)
822
656
 
823
-
824
657
  ### Bug Fixes
825
658
 
826
- * fixes the binding issue with the context menu and the button ([496e819](https://github.com/linz/lui/commit/496e819c9fda70a385a78841245f67fb5cb5b867))
827
-
659
+ - fixes the binding issue with the context menu and the button ([496e819](https://github.com/linz/lui/commit/496e819c9fda70a385a78841245f67fb5cb5b867))
828
660
 
829
661
  ### BREAKING CHANGES
830
662
 
831
- * menu button prop is now a function
832
-
833
-
663
+ - menu button prop is now a function
834
664
 
835
665
  ## [2.6.17](https://github.com/linz/lui/compare/v2.6.16...v2.6.17) (2021-01-26)
836
666
 
837
-
838
667
  ### Bug Fixes
839
668
 
840
- * update header z-index so it won't cover the toast message and exposed toast message level type ([0ca70d2](https://github.com/linz/lui/commit/0ca70d233161de66852736fde37ef0ce4011579c))
841
-
842
-
669
+ - update header z-index so it won't cover the toast message and exposed toast message level type ([0ca70d2](https://github.com/linz/lui/commit/0ca70d233161de66852736fde37ef0ce4011579c))
843
670
 
844
671
  ## [2.6.16](https://github.com/linz/lui/compare/v2.6.15...v2.6.16) (2021-01-19)
845
672
 
846
-
847
673
  ### Bug Fixes
848
674
 
849
- * Set sticky header to always be on top and adjusted the adjacent div to have a margin equal to header height ([58fd27e](https://github.com/linz/lui/commit/58fd27e2f9f22e4f70fd4fa66a2b118d2e5eb099))
850
-
851
-
675
+ - Set sticky header to always be on top and adjusted the adjacent div to have a margin equal to header height ([58fd27e](https://github.com/linz/lui/commit/58fd27e2f9f22e4f70fd4fa66a2b118d2e5eb099))
852
676
 
853
677
  ## [2.6.15](https://github.com/linz/lui/compare/v2.6.14...v2.6.15) (2021-01-19)
854
678
 
855
-
856
-
857
679
  ## [2.6.14](https://github.com/linz/lui/compare/v2.6.13...v2.6.14) (2021-01-19)
858
680
 
859
-
860
-
861
681
  ## [2.6.13](https://github.com/linz/lui/compare/v2.6.12...v2.6.13) (2021-01-18)
862
682
 
863
-
864
-
865
683
  ## [2.6.12](https://github.com/linz/lui/compare/v2.6.11...v2.6.12) (2021-01-15)
866
684
 
867
-
868
685
  ### Features
869
686
 
870
- * removed comments ([f36adbc](https://github.com/linz/lui/commit/f36adbc1dd0c9f4730a70ce66c3c9a279e851555))
871
- * vertically align and float right button in modal header ([66639ec](https://github.com/linz/lui/commit/66639ec4e65cc79e40d892c43a518b47845a8862))
872
-
873
-
687
+ - removed comments ([f36adbc](https://github.com/linz/lui/commit/f36adbc1dd0c9f4730a70ce66c3c9a279e851555))
688
+ - vertically align and float right button in modal header ([66639ec](https://github.com/linz/lui/commit/66639ec4e65cc79e40d892c43a518b47845a8862))
874
689
 
875
690
  ## [2.6.11](https://github.com/linz/lui/compare/v2.6.10...v2.6.11) (2021-01-14)
876
691
 
877
-
878
692
  ### Bug Fixes
879
693
 
880
- * changes filter menu to toggle on mouse down rather than on click (to also register right click) ([eef9a19](https://github.com/linz/lui/commit/eef9a19e93c9378c17bd3d901e237397dfb8bfb7))
881
- * filter menu div and header unique key error ([248e39d](https://github.com/linz/lui/commit/248e39d63fe3e81d03150cd458884579308f8cb4))
882
- * fixes error regarding openMenu ([a395dec](https://github.com/linz/lui/commit/a395decd9303ba8ac1b7cde74d0883c909f3fdda))
883
- * fixes filterMenu test ([377a9de](https://github.com/linz/lui/commit/377a9decc6cb9e04ca1f188470ecfdf297603df8))
884
-
694
+ - changes filter menu to toggle on mouse down rather than on click (to also register right click) ([eef9a19](https://github.com/linz/lui/commit/eef9a19e93c9378c17bd3d901e237397dfb8bfb7))
695
+ - filter menu div and header unique key error ([248e39d](https://github.com/linz/lui/commit/248e39d63fe3e81d03150cd458884579308f8cb4))
696
+ - fixes error regarding openMenu ([a395dec](https://github.com/linz/lui/commit/a395decd9303ba8ac1b7cde74d0883c909f3fdda))
697
+ - fixes filterMenu test ([377a9de](https://github.com/linz/lui/commit/377a9decc6cb9e04ca1f188470ecfdf297603df8))
885
698
 
886
699
  ### Features
887
700
 
888
- * filterMenu closes when focus is lost ([b470b97](https://github.com/linz/lui/commit/b470b9728413ed9927e2469d3a0d5f16273830fc))
889
- * style fixes to outline of button ([7077441](https://github.com/linz/lui/commit/7077441a1e861cfe4a4f31d9cfb7af6311efe84d))
890
-
891
-
701
+ - filterMenu closes when focus is lost ([b470b97](https://github.com/linz/lui/commit/b470b9728413ed9927e2469d3a0d5f16273830fc))
702
+ - style fixes to outline of button ([7077441](https://github.com/linz/lui/commit/7077441a1e861cfe4a4f31d9cfb7af6311efe84d))
892
703
 
893
704
  ## [2.6.10](https://github.com/linz/lui/compare/v2.6.9...v2.6.10) (2021-01-13)
894
705
 
895
-
896
706
  ### Features
897
707
 
898
- * made the LuiExpandableBanner height dynamic to allow including other collapsable elements ([3c0f39e](https://github.com/linz/lui/commit/3c0f39ee951ef21e2a4e93673f56b4ad77aa6785))
899
-
900
-
708
+ - made the LuiExpandableBanner height dynamic to allow including other collapsable elements ([3c0f39e](https://github.com/linz/lui/commit/3c0f39ee951ef21e2a4e93673f56b4ad77aa6785))
901
709
 
902
710
  ## [2.6.9](https://github.com/linz/lui/compare/v2.6.8...v2.6.9) (2021-01-12)
903
711
 
904
-
905
712
  ### Features
906
713
 
907
- * adds toggle to filter menu ([67301e4](https://github.com/linz/lui/commit/67301e40b7da8158cb00c7467084670a0b8c8c48))
908
- * fixes plain text button style ([98824f1](https://github.com/linz/lui/commit/98824f1938309c97bf4bac834f5d90355ba7a08a))
909
-
910
-
714
+ - adds toggle to filter menu ([67301e4](https://github.com/linz/lui/commit/67301e40b7da8158cb00c7467084670a0b8c8c48))
715
+ - fixes plain text button style ([98824f1](https://github.com/linz/lui/commit/98824f1938309c97bf4bac834f5d90355ba7a08a))
911
716
 
912
717
  ## [2.6.8](https://github.com/linz/lui/compare/v2.6.7...v2.6.8) (2021-01-10)
913
718
 
914
-
915
719
  ### Features
916
720
 
917
- * adds ability to specify the amount of content to display in the filter menu ([e51fb34](https://github.com/linz/lui/commit/e51fb34bb49bef9dba76c73471a70a35a35a55c4))
918
-
919
-
721
+ - adds ability to specify the amount of content to display in the filter menu ([e51fb34](https://github.com/linz/lui/commit/e51fb34bb49bef9dba76c73471a70a35a35a55c4))
920
722
 
921
723
  ## [2.6.7](https://github.com/linz/lui/compare/v2.6.6...v2.6.7) (2021-01-07)
922
724
 
923
-
924
725
  ### Features
925
726
 
926
- * custom styles can be applied to filter menu ([02dbfe5](https://github.com/linz/lui/commit/02dbfe5f078818ca973107e5d6949b199ddd8512))
927
-
928
-
727
+ - custom styles can be applied to filter menu ([02dbfe5](https://github.com/linz/lui/commit/02dbfe5f078818ca973107e5d6949b199ddd8512))
929
728
 
930
729
  ## [2.6.6](https://github.com/linz/lui/compare/v2.6.5...v2.6.6) (2021-01-07)
931
730
 
932
-
933
731
  ### Features
934
732
 
935
- * code style ([c05d4a8](https://github.com/linz/lui/commit/c05d4a85de21a035c7adb9c6fea81e1bcb55f6b4))
936
- * filter menu now scrolls ([926e047](https://github.com/linz/lui/commit/926e04746d42ee40329f3ad45431faaead9a302e))
937
-
938
-
733
+ - code style ([c05d4a8](https://github.com/linz/lui/commit/c05d4a85de21a035c7adb9c6fea81e1bcb55f6b4))
734
+ - filter menu now scrolls ([926e047](https://github.com/linz/lui/commit/926e04746d42ee40329f3ad45431faaead9a302e))
939
735
 
940
736
  ## [2.6.5](https://github.com/linz/lui/compare/v2.6.4...v2.6.5) (2021-01-07)
941
737
 
942
-
943
738
  ### Bug Fixes
944
739
 
945
- * input and placeholder text are now the correct font, however we need to add the Open Sans Italic font to LUI to finish this off ([6a36342](https://github.com/linz/lui/commit/6a363424751cd62993a677473adc810b59f0245b))
946
-
740
+ - input and placeholder text are now the correct font, however we need to add the Open Sans Italic font to LUI to finish this off ([6a36342](https://github.com/linz/lui/commit/6a363424751cd62993a677473adc810b59f0245b))
947
741
 
948
742
  ### Features
949
743
 
950
- * adds plain-text button to LuiButtons ([59a3f1a](https://github.com/linz/lui/commit/59a3f1a267f06a2210c8d945d1731e987fad8b83))
951
-
952
-
744
+ - adds plain-text button to LuiButtons ([59a3f1a](https://github.com/linz/lui/commit/59a3f1a267f06a2210c8d945d1731e987fad8b83))
953
745
 
954
746
  ## [2.6.4](https://github.com/linz/lui/compare/v2.6.3...v2.6.4) (2021-01-05)
955
747
 
956
-
957
748
  ### Bug Fixes
958
749
 
959
- * adds LuiFilterMenu to index ([a77481c](https://github.com/linz/lui/commit/a77481cad139ccd59473f3303dd5d7e84b9442f0))
960
-
961
-
750
+ - adds LuiFilterMenu to index ([a77481c](https://github.com/linz/lui/commit/a77481cad139ccd59473f3303dd5d7e84b9442f0))
962
751
 
963
752
  ## [2.6.3](https://github.com/linz/lui/compare/v2.6.2...v2.6.3) (2021-01-05)
964
753
 
965
-
966
754
  ### Features
967
755
 
968
- * add LuiFilterMenu ([cb4c5b5](https://github.com/linz/lui/commit/cb4c5b5e49516fc68aba227da22739bfb2d00637))
969
-
970
-
756
+ - add LuiFilterMenu ([cb4c5b5](https://github.com/linz/lui/commit/cb4c5b5e49516fc68aba227da22739bfb2d00637))
971
757
 
972
758
  ## [2.6.2](https://github.com/linz/lui/compare/v2.6.1...v2.6.2) (2020-12-17)
973
759
 
974
-
975
-
976
760
  ## [2.6.1](https://github.com/linz/lui/compare/v2.6.0...v2.6.1) (2020-12-15)
977
761
 
978
-
979
762
  ### Bug Fixes
980
763
 
981
- * underlines appearing on links styled as buttons, so added declaration to remove them ([da6078c](https://github.com/linz/lui/commit/da6078c07cb07741010cd0fe8f39bec124f96981))
982
-
983
-
764
+ - underlines appearing on links styled as buttons, so added declaration to remove them ([da6078c](https://github.com/linz/lui/commit/da6078c07cb07741010cd0fe8f39bec124f96981))
984
765
 
985
766
  # [2.6.0](https://github.com/linz/lui/compare/v2.5.14...v2.6.0) (2020-12-14)
986
767
 
987
-
988
-
989
768
  ## [2.5.14](https://github.com/linz/lui/compare/v2.5.13...v2.5.14) (2020-12-13)
990
769
 
991
-
992
-
993
770
  ## [2.5.13](https://github.com/linz/lui/compare/v2.5.12...v2.5.13) (2020-12-13)
994
771
 
995
-
996
-
997
772
  ## [2.5.12](https://github.com/linz/lui/compare/v2.5.11...v2.5.12) (2020-12-11)
998
773
 
999
-
1000
-
1001
774
  ## [2.5.11](https://github.com/linz/lui/compare/v2.5.10...v2.5.11) (2020-12-10)
1002
775
 
1003
-
1004
-
1005
776
  ## [2.5.10](https://github.com/linz/lui/compare/v2.5.9...v2.5.10) (2020-12-10)
1006
777
 
1007
-
1008
778
  ### Bug Fixes
1009
779
 
1010
- * disabled checked state for radio buttons ([bdd16d1](https://github.com/linz/lui/commit/bdd16d1418e8f8eff31060621e94414a5bc40478))
1011
-
1012
-
780
+ - disabled checked state for radio buttons ([bdd16d1](https://github.com/linz/lui/commit/bdd16d1418e8f8eff31060621e94414a5bc40478))
1013
781
 
1014
782
  ## [2.5.9](https://github.com/linz/lui/compare/v2.5.8...v2.5.9) (2020-12-10)
1015
783
 
1016
-
1017
-
1018
784
  ## [2.5.8](https://github.com/linz/lui/compare/v2.5.7...v2.5.8) (2020-12-09)
1019
785
 
1020
-
1021
-
1022
786
  ## [2.5.7](https://github.com/linz/lui/compare/v2.5.6...v2.5.7) (2020-12-08)
1023
787
 
1024
-
1025
788
  ### Bug Fixes
1026
789
 
1027
- * material icon name change, so updated messaging icons ([5f0a8eb](https://github.com/linz/lui/commit/5f0a8eb84101b159a5fc0c4861195463c2013ec5))
1028
-
1029
-
790
+ - material icon name change, so updated messaging icons ([5f0a8eb](https://github.com/linz/lui/commit/5f0a8eb84101b159a5fc0c4861195463c2013ec5))
1030
791
 
1031
792
  ## [2.5.6](https://github.com/linz/lui/compare/v2.5.5...v2.5.6) (2020-12-08)
1032
793
 
1033
-
1034
-
1035
794
  ## [2.5.5](https://github.com/linz/lui/compare/v2.5.4...v2.5.5) (2020-12-06)
1036
795
 
1037
-
1038
-
1039
796
  ## [2.5.4](https://github.com/linz/lui/compare/v2.5.2...v2.5.4) (2020-12-06)
1040
797
 
1041
-
1042
-
1043
798
  ## [2.5.3](https://github.com/linz/lui/compare/v2.5.2...v2.5.3) (2020-12-06)
1044
799
 
1045
-
1046
-
1047
800
  ## [2.5.2](https://github.com/linz/lui/compare/v2.5.1...v2.5.2) (2020-12-03)
1048
801
 
1049
-
1050
-
1051
802
  ## [2.5.1](https://github.com/linz/lui/compare/v2.5.0...v2.5.1) (2020-12-02)
1052
803
 
1053
-
1054
-
1055
804
  # [2.5.0](https://github.com/linz/lui/compare/v2.3.11...v2.5.0) (2020-12-02)
1056
805
 
1057
-
1058
-
1059
806
  # [2.4.0](https://github.com/linz/lui/compare/v2.3.11...v2.4.0) (2020-12-02)
1060
807
 
1061
-
1062
-
1063
808
  ## [2.3.11](https://github.com/linz/lui/compare/v2.3.10...v2.3.11) (2020-11-29)
1064
809
 
1065
-
1066
810
  ### Features
1067
811
 
1068
- * BREAKER for tabular-list the classes now need to be applied on the ul tag. This is to limit their scope. Also changes removal of comments from icons and added docs around zebras and where they live :) ([f314b80](https://github.com/linz/lui/commit/f314b801d38262dc09e2d457bf84c48d87d1b26b))
1069
-
1070
-
812
+ - BREAKER for tabular-list the classes now need to be applied on the ul tag. This is to limit their scope. Also changes removal of comments from icons and added docs around zebras and where they live :) ([f314b80](https://github.com/linz/lui/commit/f314b801d38262dc09e2d457bf84c48d87d1b26b))
1071
813
 
1072
814
  ## [2.3.10](https://github.com/linz/lui/compare/v2.3.9...v2.3.10) (2020-11-25)
1073
815
 
1074
-
1075
-
1076
816
  ## [2.3.9](https://github.com/linz/lui/compare/v2.3.8...v2.3.9) (2020-11-25)
1077
817
 
1078
-
1079
-
1080
818
  ## [2.3.8](https://github.com/linz/lui/compare/v2.3.3...v2.3.8) (2020-11-25)
1081
819
 
1082
-
1083
820
  ### Bug Fixes
1084
821
 
1085
- * layout values missing for lui scrim low contrast ([b3c6168](https://github.com/linz/lui/commit/b3c61686424ac5df75031f6ce5a517abc7336d39))
1086
-
1087
-
822
+ - layout values missing for lui scrim low contrast ([b3c6168](https://github.com/linz/lui/commit/b3c61686424ac5df75031f6ce5a517abc7336d39))
1088
823
 
1089
824
  ## [2.3.7](https://github.com/linz/lui/compare/v2.3.6...v2.3.7) (2020-11-25)
1090
825
 
1091
-
1092
-
1093
826
  ## [2.3.6](https://github.com/linz/lui/compare/v2.3.3...v2.3.6) (2020-11-25)
1094
827
 
1095
-
1096
828
  ### Bug Fixes
1097
829
 
1098
- * layout values missing for lui scrim low contrast ([b3c6168](https://github.com/linz/lui/commit/b3c61686424ac5df75031f6ce5a517abc7336d39))
1099
-
1100
-
830
+ - layout values missing for lui scrim low contrast ([b3c6168](https://github.com/linz/lui/commit/b3c61686424ac5df75031f6ce5a517abc7336d39))
1101
831
 
1102
832
  ## [2.3.5](https://github.com/linz/lui/compare/v2.3.4...v2.3.5) (2020-11-25)
1103
833
 
1104
-
1105
-
1106
834
  ## [2.3.4](https://github.com/linz/lui/compare/v2.3.3...v2.3.4) (2020-11-25)
1107
835
 
1108
-
1109
-
1110
836
  ## [2.3.3](https://github.com/linz/lui/compare/v2.3.1...v2.3.3) (2020-11-24)
1111
837
 
1112
-
1113
838
  ### Bug Fixes
1114
839
 
1115
- * button group error styling, move and colour error messages for form inputs, update docs, removing unnecessary info, helpers added for button width sizing ([6426218](https://github.com/linz/lui/commit/64262182ee7c6a76005a7752b364104293f1232e))
1116
- * changed colour and font weight of error messages ([9ab64ba](https://github.com/linz/lui/commit/9ab64ba8eb4c6aae5d3172995c23fd6797273a79))
1117
-
1118
-
840
+ - button group error styling, move and colour error messages for form inputs, update docs, removing unnecessary info, helpers added for button width sizing ([6426218](https://github.com/linz/lui/commit/64262182ee7c6a76005a7752b364104293f1232e))
841
+ - changed colour and font weight of error messages ([9ab64ba](https://github.com/linz/lui/commit/9ab64ba8eb4c6aae5d3172995c23fd6797273a79))
1119
842
 
1120
843
  ## [2.3.2](https://github.com/linz/lui/compare/v2.3.1...v2.3.2) (2020-11-24)
1121
844
 
1122
-
1123
845
  ### Bug Fixes
1124
846
 
1125
- * button group error styling, move and colour error messages for form inputs, update docs, removing unnecessary info, helpers added for button width sizing ([6426218](https://github.com/linz/lui/commit/64262182ee7c6a76005a7752b364104293f1232e))
1126
- * changed colour and font weight of error messages ([9ab64ba](https://github.com/linz/lui/commit/9ab64ba8eb4c6aae5d3172995c23fd6797273a79))
1127
-
1128
-
847
+ - button group error styling, move and colour error messages for form inputs, update docs, removing unnecessary info, helpers added for button width sizing ([6426218](https://github.com/linz/lui/commit/64262182ee7c6a76005a7752b364104293f1232e))
848
+ - changed colour and font weight of error messages ([9ab64ba](https://github.com/linz/lui/commit/9ab64ba8eb4c6aae5d3172995c23fd6797273a79))
1129
849
 
1130
850
  ## [2.3.1](https://github.com/linz/lui/compare/v2.3.0...v2.3.1) (2020-11-19)
1131
851
 
1132
-
1133
852
  ### Bug Fixes
1134
853
 
1135
- * fixed css for expandable banner, ran prettier fix ([5240d50](https://github.com/linz/lui/commit/5240d50c4d078f8fa032350e916761476b74b32f))
1136
-
1137
-
854
+ - fixed css for expandable banner, ran prettier fix ([5240d50](https://github.com/linz/lui/commit/5240d50c4d078f8fa032350e916761476b74b32f))
1138
855
 
1139
856
  # [2.3.0](https://github.com/linz/lui/compare/v2.1.4...v2.3.0) (2020-11-19)
1140
857
 
1141
-
1142
-
1143
858
  # [2.2.0](https://github.com/linz/lui/compare/v2.1.4...v2.2.0) (2020-11-19)
1144
859
 
1145
-
1146
-
1147
860
  ## [2.1.4](https://github.com/linz/lui/compare/v2.1.3...v2.1.4) (2020-11-18)
1148
861
 
1149
-
1150
-
1151
862
  ## [2.1.3](https://github.com/linz/lui/compare/v2.1.1...v2.1.3) (2020-11-18)
1152
863
 
1153
-
1154
864
  ### Bug Fixes
1155
865
 
1156
- * making expanding headers and icons inline, ran prettier fix ([4cbd7a4](https://github.com/linz/lui/commit/4cbd7a40e5ca61102301201f6c9ad92bb5eec9c3))
1157
- * ran prettier fix ([41de394](https://github.com/linz/lui/commit/41de39450a61e5d980a87b45e91079904de2bd0f))
1158
- * ran prettier fix ([ecf848e](https://github.com/linz/lui/commit/ecf848e913cf3cd6ab30c39c3474e8951b02b5ad))
1159
-
1160
-
866
+ - making expanding headers and icons inline, ran prettier fix ([4cbd7a4](https://github.com/linz/lui/commit/4cbd7a40e5ca61102301201f6c9ad92bb5eec9c3))
867
+ - ran prettier fix ([41de394](https://github.com/linz/lui/commit/41de39450a61e5d980a87b45e91079904de2bd0f))
868
+ - ran prettier fix ([ecf848e](https://github.com/linz/lui/commit/ecf848e913cf3cd6ab30c39c3474e8951b02b5ad))
1161
869
 
1162
870
  ## [2.1.2](https://github.com/linz/lui/compare/v2.1.1...v2.1.2) (2020-11-18)
1163
871
 
1164
-
1165
872
  ### Bug Fixes
1166
873
 
1167
- * making expanding headers and icons inline, ran prettier fix ([4cbd7a4](https://github.com/linz/lui/commit/4cbd7a40e5ca61102301201f6c9ad92bb5eec9c3))
1168
-
1169
-
874
+ - making expanding headers and icons inline, ran prettier fix ([4cbd7a4](https://github.com/linz/lui/commit/4cbd7a40e5ca61102301201f6c9ad92bb5eec9c3))
1170
875
 
1171
876
  ## [2.1.1](https://github.com/linz/lui/compare/v2.2.0...v2.1.1) (2020-11-16)
1172
877
 
1173
-
1174
878
  ### Bug Fixes
1175
879
 
1176
- * alignment of checkboxes in tables ([cc3fbc9](https://github.com/linz/lui/commit/cc3fbc9b36d7ab2a8cd4ebdb99fc1e0b644b7daf))
1177
- * fixed cropped checkboxes, button groups now span 100% of the container ([56f79ce](https://github.com/linz/lui/commit/56f79ceffb1367c3f8a16495d3398c0b14e16d5c))
1178
- * increase column size so button text didn't wrap on desktop ([2f10740](https://github.com/linz/lui/commit/2f10740a394e1995365b3cccd7abb8413305d8ec))
1179
- * move option parameter in spacing.scss to end of parameter list w/DW,JH ([d4153d2](https://github.com/linz/lui/commit/d4153d2abd9acb972f2b3cbf3238fc261753e53b))
1180
- * removed padding from fluid button group buttons ([323c121](https://github.com/linz/lui/commit/323c12119673e81ce0bfb0c641703bff999b8db6))
1181
- * tweaked the illustration ([54c4bc3](https://github.com/linz/lui/commit/54c4bc30a99fed05703f1c38052f871632cfeb95))
1182
-
880
+ - alignment of checkboxes in tables ([cc3fbc9](https://github.com/linz/lui/commit/cc3fbc9b36d7ab2a8cd4ebdb99fc1e0b644b7daf))
881
+ - fixed cropped checkboxes, button groups now span 100% of the container ([56f79ce](https://github.com/linz/lui/commit/56f79ceffb1367c3f8a16495d3398c0b14e16d5c))
882
+ - increase column size so button text didn't wrap on desktop ([2f10740](https://github.com/linz/lui/commit/2f10740a394e1995365b3cccd7abb8413305d8ec))
883
+ - move option parameter in spacing.scss to end of parameter list w/DW,JH ([d4153d2](https://github.com/linz/lui/commit/d4153d2abd9acb972f2b3cbf3238fc261753e53b))
884
+ - removed padding from fluid button group buttons ([323c121](https://github.com/linz/lui/commit/323c12119673e81ce0bfb0c641703bff999b8db6))
885
+ - tweaked the illustration ([54c4bc3](https://github.com/linz/lui/commit/54c4bc30a99fed05703f1c38052f871632cfeb95))
1183
886
 
1184
887
  ### Features
1185
888
 
1186
- * Form styling has been broken into modules. lui-standard-form remains unchanged. Compressed from has been removed and replaced with a spacing modifier. There is also a new option for no top margins in your form ([16e04f9](https://github.com/linz/lui/commit/16e04f9bf690cf1ba8dc5a1b53de3e22481293d3))
1187
-
889
+ - Form styling has been broken into modules. lui-standard-form remains unchanged. Compressed from has been removed and replaced with a spacing modifier. There is also a new option for no top margins in your form ([16e04f9](https://github.com/linz/lui/commit/16e04f9bf690cf1ba8dc5a1b53de3e22481293d3))
1188
890
 
1189
891
  ### Reverts
1190
892
 
1191
- * Revert "2.2.0" ([ad6a233](https://github.com/linz/lui/commit/ad6a233d28f733a4d812e770c074cf8c26b14b0b))
1192
-
1193
-
893
+ - Revert "2.2.0" ([ad6a233](https://github.com/linz/lui/commit/ad6a233d28f733a4d812e770c074cf8c26b14b0b))
1194
894
 
1195
895
  # [2.1.0](https://github.com/linz/lui/compare/v2.0.3...v2.1.0) (2020-11-15)
1196
896
 
1197
-
1198
897
  ### Bug Fixes
1199
898
 
1200
- * changed varialbe name ([35bb697](https://github.com/linz/lui/commit/35bb69795ac215a362ca1b6e7167412a0e14fd0e))
1201
- * fixed bug in the Expandable Banner ([ff00720](https://github.com/linz/lui/commit/ff00720a26f4c9372c1a6f801c379f7460ae9a5e))
1202
- * fixed bug in the Expandable Banner that can crash the app ([e2c4cd9](https://github.com/linz/lui/commit/e2c4cd9c2c4065757a0738bd72108c56022d8c37))
1203
-
1204
-
899
+ - changed varialbe name ([35bb697](https://github.com/linz/lui/commit/35bb69795ac215a362ca1b6e7167412a0e14fd0e))
900
+ - fixed bug in the Expandable Banner ([ff00720](https://github.com/linz/lui/commit/ff00720a26f4c9372c1a6f801c379f7460ae9a5e))
901
+ - fixed bug in the Expandable Banner that can crash the app ([e2c4cd9](https://github.com/linz/lui/commit/e2c4cd9c2c4065757a0738bd72108c56022d8c37))
1205
902
 
1206
903
  ## [2.0.3](https://github.com/linz/lui/compare/v2.0.2...v2.0.3) (2020-11-12)
1207
904
 
1208
-
1209
905
  ### Bug Fixes
1210
906
 
1211
- * correct the minute and second symbols in bearing input w/DM ([e6b39bd](https://github.com/linz/lui/commit/e6b39bd6f33e20b43dc774708f0fc47e0bf19ec4))
1212
-
1213
-
907
+ - correct the minute and second symbols in bearing input w/DM ([e6b39bd](https://github.com/linz/lui/commit/e6b39bd6f33e20b43dc774708f0fc47e0bf19ec4))
1214
908
 
1215
909
  ## [2.0.2](https://github.com/linz/lui/compare/v2.0.1...v2.0.2) (2020-11-05)
1216
910
 
1217
-
1218
911
  ### Bug Fixes
1219
912
 
1220
- * Remove unwanted padding from select boxes w/PA,DM ([36a988f](https://github.com/linz/lui/commit/36a988fab71b18aa92f5c51781e03415b4ed71ff))
1221
-
1222
-
913
+ - Remove unwanted padding from select boxes w/PA,DM ([36a988f](https://github.com/linz/lui/commit/36a988fab71b18aa92f5c51781e03415b4ed71ff))
1223
914
 
1224
915
  ## [2.0.1](https://github.com/linz/lui/compare/v2.0.0...v2.0.1) (2020-11-04)
1225
916
 
1226
-
1227
-
1228
917
  # [2.0.0](https://github.com/linz/lui/compare/v1.1.33...v2.0.0) (2020-11-04)
1229
918
 
1230
-
1231
-
1232
919
  ## [1.1.33](https://github.com/linz/lui/compare/v1.1.31...v1.1.33) (2020-11-04)
1233
920
 
1234
-
1235
921
  ### Features
1236
922
 
1237
- * Add close button and a swish to modal with header w/ IF ([f48081c](https://github.com/linz/lui/commit/f48081c5371c2f3fbd59a40224d2feefb0b47c95))
1238
-
1239
-
923
+ - Add close button and a swish to modal with header w/ IF ([f48081c](https://github.com/linz/lui/commit/f48081c5371c2f3fbd59a40224d2feefb0b47c95))
1240
924
 
1241
925
  ## [1.1.32](https://github.com/linz/lui/compare/v1.1.31...v1.1.32) (2020-11-03)
1242
926
 
1243
-
1244
927
  ### Features
1245
928
 
1246
- * Add close button and a swish to modal with header w/ IF ([f48081c](https://github.com/linz/lui/commit/f48081c5371c2f3fbd59a40224d2feefb0b47c95))
1247
-
1248
-
929
+ - Add close button and a swish to modal with header w/ IF ([f48081c](https://github.com/linz/lui/commit/f48081c5371c2f3fbd59a40224d2feefb0b47c95))
1249
930
 
1250
931
  ## [1.1.31](https://github.com/linz/lui/compare/v1.1.30...v1.1.31) (2020-11-03)
1251
932
 
1252
-
1253
933
  ### Bug Fixes
1254
934
 
1255
- * added outline styling for inputs in an error state and a colour variable for that ([be8ef9c](https://github.com/linz/lui/commit/be8ef9ca4c86c836b9350fadc7b311155ea11e38))
1256
-
1257
-
935
+ - added outline styling for inputs in an error state and a colour variable for that ([be8ef9c](https://github.com/linz/lui/commit/be8ef9ca4c86c836b9350fadc7b311155ea11e38))
1258
936
 
1259
937
  ## [1.1.30](https://github.com/linz/lui/compare/v1.1.29...v1.1.30) (2020-11-03)
1260
938
 
1261
-
1262
-
1263
939
  ## [1.1.29](https://github.com/linz/lui/compare/v1.1.28...v1.1.29) (2020-11-02)
1264
940
 
1265
-
1266
941
  ### Features
1267
942
 
1268
- * added data-testid to BearingInput field ([0f18a0f](https://github.com/linz/lui/commit/0f18a0f32827e368d5b436ea7424c750973a075e))
1269
-
1270
-
943
+ - added data-testid to BearingInput field ([0f18a0f](https://github.com/linz/lui/commit/0f18a0f32827e368d5b436ea7424c750973a075e))
1271
944
 
1272
945
  ## [1.1.28](https://github.com/linz/lui/compare/v1.1.27...v1.1.28) (2020-10-30)
1273
946
 
1274
-
1275
-
1276
947
  ## [1.1.27](https://github.com/linz/lui/compare/v1.1.25...v1.1.27) (2020-10-29)
1277
948
 
1278
-
1279
-
1280
949
  ## [1.1.26](https://github.com/linz/lui/compare/v1.1.25...v1.1.26) (2020-10-29)
1281
950
 
1282
-
1283
-
1284
951
  ## [1.1.25](https://github.com/linz/lui/compare/v1.1.24...v1.1.25) (2020-10-28)
1285
952
 
1286
-
1287
953
  ### Bug Fixes
1288
954
 
1289
- * added hover cursor change to buttons, hid std button styled tabs ([8f7b926](https://github.com/linz/lui/commit/8f7b9260162d6f844fa131d58c80898013e4db1d))
1290
- * set base font colour as a variable ([36e816c](https://github.com/linz/lui/commit/36e816c8d5a025b06673352a4318ad7816db3807))
1291
-
1292
-
955
+ - added hover cursor change to buttons, hid std button styled tabs ([8f7b926](https://github.com/linz/lui/commit/8f7b9260162d6f844fa131d58c80898013e4db1d))
956
+ - set base font colour as a variable ([36e816c](https://github.com/linz/lui/commit/36e816c8d5a025b06673352a4318ad7816db3807))
1293
957
 
1294
958
  ## [1.1.24](https://github.com/linz/lui/compare/v1.1.23...v1.1.24) (2020-10-23)
1295
959
 
1296
-
1297
-
1298
960
  ## [1.1.23](https://github.com/linz/lui/compare/v1.1.22...v1.1.23) (2020-10-21)
1299
961
 
1300
-
1301
962
  ### Features
1302
963
 
1303
- * fixed failing test ([197867f](https://github.com/linz/lui/commit/197867f4c0462f62d56a108420b4e4315016b596))
1304
-
1305
-
964
+ - fixed failing test ([197867f](https://github.com/linz/lui/commit/197867f4c0462f62d56a108420b4e4315016b596))
1306
965
 
1307
966
  ## [1.1.22](https://github.com/linz/lui/compare/v1.1.21...v1.1.22) (2020-10-21)
1308
967
 
1309
-
1310
-
1311
968
  ## [1.1.21](https://github.com/linz/lui/compare/v1.1.17...v1.1.21) (2020-10-21)
1312
969
 
1313
-
1314
-
1315
970
  ## [1.1.20](https://github.com/linz/lui/compare/v1.1.19...v1.1.20) (2020-10-19)
1316
971
 
1317
-
1318
-
1319
972
  ## [1.1.19](https://github.com/linz/lui/compare/v1.1.18...v1.1.19) (2020-10-19)
1320
973
 
1321
-
1322
974
  ### Bug Fixes
1323
975
 
1324
- * Change component export type ([3f6581e](https://github.com/linz/lui/commit/3f6581e584c70418f8b6a8a37f9e22de0e95d92e))
1325
-
1326
-
976
+ - Change component export type ([3f6581e](https://github.com/linz/lui/commit/3f6581e584c70418f8b6a8a37f9e22de0e95d92e))
1327
977
 
1328
978
  ## [1.1.18](https://github.com/linz/lui/compare/v1.1.16...v1.1.18) (2020-10-19)
1329
979
 
1330
-
1331
980
  ### Bug Fixes
1332
981
 
1333
- * heading styling for design system and inline and stack examples of icon only buttons ([05c41ef](https://github.com/linz/lui/commit/05c41ef8ccda17b3cf88ccdecc267b5ae66b9111))
1334
- * removed unnecessary classes on buttons and added some text ([4b432d6](https://github.com/linz/lui/commit/4b432d689834a92a19d6faba00e8cd2ca200344e))
1335
- * Switch Lottie from react-lottie to lottie-react ([dd5ac60](https://github.com/linz/lui/commit/dd5ac60aeda672b61e4e0fb64da0513ea8f561d8))
1336
-
982
+ - heading styling for design system and inline and stack examples of icon only buttons ([05c41ef](https://github.com/linz/lui/commit/05c41ef8ccda17b3cf88ccdecc267b5ae66b9111))
983
+ - removed unnecessary classes on buttons and added some text ([4b432d6](https://github.com/linz/lui/commit/4b432d689834a92a19d6faba00e8cd2ca200344e))
984
+ - Switch Lottie from react-lottie to lottie-react ([dd5ac60](https://github.com/linz/lui/commit/dd5ac60aeda672b61e4e0fb64da0513ea8f561d8))
1337
985
 
1338
986
  ### Features
1339
987
 
1340
- * added another icon only button colour ([84a7a02](https://github.com/linz/lui/commit/84a7a02844f51a6b515ce49ec7c5fd1a1a86d04e))
1341
- * Added new Layout page, which is a WIP, but shows the two containers we have. Also added styling for icon only buttons ([ac31195](https://github.com/linz/lui/commit/ac311950344f2e524799bce576c253ad5218fe09))
1342
- * Connect bearing input to Formik w/ GD ([a22eb1f](https://github.com/linz/lui/commit/a22eb1fbb92ffe3bfc4a7602c6770c4833ffa12c))
1343
- * further design work to the Layout containers page ([82d7a5c](https://github.com/linz/lui/commit/82d7a5c781baf01f3ca6cc2cf51a06c5cca0acb0))
1344
-
1345
-
988
+ - added another icon only button colour ([84a7a02](https://github.com/linz/lui/commit/84a7a02844f51a6b515ce49ec7c5fd1a1a86d04e))
989
+ - Added new Layout page, which is a WIP, but shows the two containers we have. Also added styling for icon only buttons ([ac31195](https://github.com/linz/lui/commit/ac311950344f2e524799bce576c253ad5218fe09))
990
+ - Connect bearing input to Formik w/ GD ([a22eb1f](https://github.com/linz/lui/commit/a22eb1fbb92ffe3bfc4a7602c6770c4833ffa12c))
991
+ - further design work to the Layout containers page ([82d7a5c](https://github.com/linz/lui/commit/82d7a5c781baf01f3ca6cc2cf51a06c5cca0acb0))
1346
992
 
1347
993
  ## [1.1.20](https://github.com/linz/lui/compare/v1.1.19...v1.1.20) (2020-10-19)
1348
994
 
1349
-
1350
-
1351
995
  ## [1.1.19](https://github.com/linz/lui/compare/v1.1.18...v1.1.19) (2020-10-19)
1352
996
 
1353
-
1354
997
  ### Bug Fixes
1355
998
 
1356
- * Change component export type ([3f6581e](https://github.com/linz/lui/commit/3f6581e584c70418f8b6a8a37f9e22de0e95d92e))
1357
-
1358
-
999
+ - Change component export type ([3f6581e](https://github.com/linz/lui/commit/3f6581e584c70418f8b6a8a37f9e22de0e95d92e))
1359
1000
 
1360
1001
  ## [1.1.18](https://github.com/linz/lui/compare/v1.1.17...v1.1.18) (2020-10-19)
1361
1002
 
1362
-
1363
1003
  ### Bug Fixes
1364
1004
 
1365
- * heading styling for design system and inline and stack examples of icon only buttons ([05c41ef](https://github.com/linz/lui/commit/05c41ef8ccda17b3cf88ccdecc267b5ae66b9111))
1366
- * removed unnecessary classes on buttons and added some text ([4b432d6](https://github.com/linz/lui/commit/4b432d689834a92a19d6faba00e8cd2ca200344e))
1367
-
1005
+ - heading styling for design system and inline and stack examples of icon only buttons ([05c41ef](https://github.com/linz/lui/commit/05c41ef8ccda17b3cf88ccdecc267b5ae66b9111))
1006
+ - removed unnecessary classes on buttons and added some text ([4b432d6](https://github.com/linz/lui/commit/4b432d689834a92a19d6faba00e8cd2ca200344e))
1368
1007
 
1369
1008
  ### Features
1370
1009
 
1371
- * added another icon only button colour ([84a7a02](https://github.com/linz/lui/commit/84a7a02844f51a6b515ce49ec7c5fd1a1a86d04e))
1372
- * Added new Layout page, which is a WIP, but shows the two containers we have. Also added styling for icon only buttons ([ac31195](https://github.com/linz/lui/commit/ac311950344f2e524799bce576c253ad5218fe09))
1373
- * Connect bearing input to Formik w/ GD ([a22eb1f](https://github.com/linz/lui/commit/a22eb1fbb92ffe3bfc4a7602c6770c4833ffa12c))
1374
- * further design work to the Layout containers page ([82d7a5c](https://github.com/linz/lui/commit/82d7a5c781baf01f3ca6cc2cf51a06c5cca0acb0))
1375
-
1376
-
1010
+ - added another icon only button colour ([84a7a02](https://github.com/linz/lui/commit/84a7a02844f51a6b515ce49ec7c5fd1a1a86d04e))
1011
+ - Added new Layout page, which is a WIP, but shows the two containers we have. Also added styling for icon only buttons ([ac31195](https://github.com/linz/lui/commit/ac311950344f2e524799bce576c253ad5218fe09))
1012
+ - Connect bearing input to Formik w/ GD ([a22eb1f](https://github.com/linz/lui/commit/a22eb1fbb92ffe3bfc4a7602c6770c4833ffa12c))
1013
+ - further design work to the Layout containers page ([82d7a5c](https://github.com/linz/lui/commit/82d7a5c781baf01f3ca6cc2cf51a06c5cca0acb0))
1377
1014
 
1378
1015
  ## [1.1.17](https://github.com/linz/lui/compare/v1.1.16...v1.1.17) (2020-10-15)
1379
1016
 
1380
-
1381
1017
  ### Bug Fixes
1382
1018
 
1383
- * Switch Lottie from react-lottie to lottie-react ([dd5ac60](https://github.com/linz/lui/commit/dd5ac60aeda672b61e4e0fb64da0513ea8f561d8))
1384
-
1385
-
1019
+ - Switch Lottie from react-lottie to lottie-react ([dd5ac60](https://github.com/linz/lui/commit/dd5ac60aeda672b61e4e0fb64da0513ea8f561d8))
1386
1020
 
1387
1021
  ## [1.1.16](https://github.com/linz/lui/compare/v1.1.15...v1.1.16) (2020-10-14)
1388
1022
 
1389
-
1390
-
1391
1023
  ## [1.1.15](https://github.com/linz/lui/compare/v1.1.14...v1.1.15) (2020-10-14)
1392
1024
 
1393
-
1394
1025
  ### Bug Fixes
1395
1026
 
1396
- * change of footer colour to new Teal version ([780ab50](https://github.com/linz/lui/commit/780ab5024e5586b7896506dabd12696a299c8d3b))
1397
- * fixed text colour ([a67a523](https://github.com/linz/lui/commit/a67a523d0ac8d219187e7939616bc367b8fc043a))
1398
- * minor tweaks to select input, but major HTML changes for the example page, including inline example. ([a3f3266](https://github.com/linz/lui/commit/a3f32664f7e3ade9895e8a9a67ece22b253029bd))
1399
- * suppress warnings about appElement not being set in tests w/DM ([d4b4578](https://github.com/linz/lui/commit/d4b45785cc94bf56333018e844fde62994f6df55))
1400
-
1401
-
1027
+ - change of footer colour to new Teal version ([780ab50](https://github.com/linz/lui/commit/780ab5024e5586b7896506dabd12696a299c8d3b))
1028
+ - fixed text colour ([a67a523](https://github.com/linz/lui/commit/a67a523d0ac8d219187e7939616bc367b8fc043a))
1029
+ - minor tweaks to select input, but major HTML changes for the example page, including inline example. ([a3f3266](https://github.com/linz/lui/commit/a3f32664f7e3ade9895e8a9a67ece22b253029bd))
1030
+ - suppress warnings about appElement not being set in tests w/DM ([d4b4578](https://github.com/linz/lui/commit/d4b45785cc94bf56333018e844fde62994f6df55))
1402
1031
 
1403
1032
  ## [1.1.14](https://github.com/linz/lui/compare/v1.1.13...v1.1.14) (2020-10-13)
1404
1033
 
1405
-
1406
-
1407
1034
  ## [1.1.13](https://github.com/linz/lui/compare/v1.1.12...v1.1.13) (2020-10-12)
1408
1035
 
1409
-
1410
-
1411
1036
  ## [1.1.12](https://github.com/linz/lui/compare/v1.1.11...v1.1.12) (2020-10-08)
1412
1037
 
1413
-
1414
-
1415
1038
  ## [1.1.11](https://github.com/linz/lui/compare/v1.1.10...v1.1.11) (2020-10-07)
1416
1039
 
1417
-
1418
1040
  ### Bug Fixes
1419
1041
 
1420
- * fixed border bottom on text button ([7da53e1](https://github.com/linz/lui/commit/7da53e10e83abfedac9b5d68b2b99f3f0f4b2201))
1421
-
1422
-
1042
+ - fixed border bottom on text button ([7da53e1](https://github.com/linz/lui/commit/7da53e10e83abfedac9b5d68b2b99f3f0f4b2201))
1423
1043
 
1424
1044
  ## [1.1.10](https://github.com/linz/lui/compare/v1.1.9...v1.1.10) (2020-10-07)
1425
1045
 
1426
-
1427
1046
  ### Bug Fixes
1428
1047
 
1429
- * Tweaked the vertical pos of radio buttons in the small layout. Also added info around the use ([8b47836](https://github.com/linz/lui/commit/8b47836fedb5df9face471a04916caac192fde71))
1430
-
1048
+ - Tweaked the vertical pos of radio buttons in the small layout. Also added info around the use ([8b47836](https://github.com/linz/lui/commit/8b47836fedb5df9face471a04916caac192fde71))
1431
1049
 
1432
1050
  ### Features
1433
1051
 
1434
- * cleaned up text like buttons ([3168d85](https://github.com/linz/lui/commit/3168d85db6b14b21d4abac79c3d12d287c259398))
1435
- * wrapped the forms SCSS in a mixin and can now create variants of the layout. So we now have standard forms and compressed forms ([fb38eb6](https://github.com/linz/lui/commit/fb38eb6d70b7b35ff53f03ac54886e2b8a6458a1))
1436
-
1437
-
1052
+ - cleaned up text like buttons ([3168d85](https://github.com/linz/lui/commit/3168d85db6b14b21d4abac79c3d12d287c259398))
1053
+ - wrapped the forms SCSS in a mixin and can now create variants of the layout. So we now have standard forms and compressed forms ([fb38eb6](https://github.com/linz/lui/commit/fb38eb6d70b7b35ff53f03ac54886e2b8a6458a1))
1438
1054
 
1439
1055
  ## [1.1.9](https://github.com/linz/lui/compare/v1.1.8...v1.1.9) (2020-09-18)
1440
1056
 
1441
-
1442
1057
  ### Features
1443
1058
 
1444
- * Completed Expandable component ([1377f98](https://github.com/linz/lui/commit/1377f983b51cc1d7dd8695aaccf4ea34808aea35))
1445
-
1446
-
1059
+ - Completed Expandable component ([1377f98](https://github.com/linz/lui/commit/1377f983b51cc1d7dd8695aaccf4ea34808aea35))
1447
1060
 
1448
1061
  ## [1.1.8](https://github.com/linz/lui/compare/v1.1.7...v1.1.8) (2020-09-18)
1449
1062
 
1450
-
1451
-
1452
1063
  ## [1.1.7](https://github.com/linz/lui/compare/v1.1.6...v1.1.7) (2020-09-17)
1453
1064
 
1454
-
1455
1065
  ### Features
1456
1066
 
1457
- * Add modal with max-width 100% and modal with header ([7e82be2](https://github.com/linz/lui/commit/7e82be2904a40c3bfc88a0d1a2a1fbeee19e21a7))
1458
-
1459
-
1067
+ - Add modal with max-width 100% and modal with header ([7e82be2](https://github.com/linz/lui/commit/7e82be2904a40c3bfc88a0d1a2a1fbeee19e21a7))
1460
1068
 
1461
1069
  ## [1.1.6](https://github.com/linz/lui/compare/v1.1.5...v1.1.6) (2020-09-16)
1462
1070
 
1463
-
1464
-
1465
1071
  ## [1.1.5](https://github.com/linz/lui/compare/v1.1.4...v1.1.5) (2020-09-16)
1466
1072
 
1467
-
1468
-
1469
1073
  ## [1.1.4](https://github.com/linz/lui/compare/v1.1.3...v1.1.4) (2020-09-14)
1470
1074
 
1471
-
1472
-
1473
1075
  ## [1.1.3](https://github.com/linz/lui/compare/v1.1.2...v1.1.3) (2020-09-13)
1474
1076
 
1475
-
1476
-
1477
1077
  ## [1.1.2](https://github.com/linz/lui/compare/v1.1.1...v1.1.2) (2020-09-13)
1478
1078
 
1479
-
1480
-
1481
1079
  ## [1.1.1](https://github.com/linz/lui/compare/v1.0.10...v1.1.1) (2020-09-08)
1482
1080
 
1483
-
1484
1081
  ### Features
1485
1082
 
1486
- * Make id optional on Modal and rename it to key (breaking change) ([2247bc1](https://github.com/linz/lui/commit/2247bc1c0a380fe97fe21e805699f83a0105a713))
1487
-
1083
+ - Make id optional on Modal and rename it to key (breaking change) ([2247bc1](https://github.com/linz/lui/commit/2247bc1c0a380fe97fe21e805699f83a0105a713))
1488
1084
 
1489
1085
  ### BREAKING CHANGES
1490
1086
 
1491
- * If you require a key for your modal, use key instead of
1492
- id. If you do not (most cases), you can delete the id attribute w/KK
1493
-
1494
-
1087
+ - If you require a key for your modal, use key instead of
1088
+ id. If you do not (most cases), you can delete the id attribute w/KK
1495
1089
 
1496
1090
  # [1.1.0](https://github.com/linz/lui/compare/v1.0.10...v1.1.0) (2020-09-08)
1497
1091
 
1498
-
1499
1092
  ### Features
1500
1093
 
1501
- * Make id optional on Modal and rename it to key (breaking change) ([2247bc1](https://github.com/linz/lui/commit/2247bc1c0a380fe97fe21e805699f83a0105a713))
1502
-
1094
+ - Make id optional on Modal and rename it to key (breaking change) ([2247bc1](https://github.com/linz/lui/commit/2247bc1c0a380fe97fe21e805699f83a0105a713))
1503
1095
 
1504
1096
  ### BREAKING CHANGES
1505
1097
 
1506
- * If you require a key for your modal, use key instead of
1507
- id. If you do not (most cases), you can delete the id attribute w/KK
1508
-
1509
-
1098
+ - If you require a key for your modal, use key instead of
1099
+ id. If you do not (most cases), you can delete the id attribute w/KK
1510
1100
 
1511
1101
  ## [1.0.10](https://github.com/linz/lui/compare/v1.0.9...v1.0.10) (2020-09-07)
1512
1102
 
1513
-
1514
-
1515
1103
  ## [1.0.9](https://github.com/linz/lui/compare/v1.0.8...v1.0.9) (2020-09-07)
1516
1104
 
1517
-
1518
-
1519
1105
  ## [1.0.8](https://github.com/linz/lui/compare/v1.0.7...v1.0.8) (2020-09-04)
1520
1106
 
1521
-
1522
-
1523
1107
  ## [1.0.7](https://github.com/linz/lui/compare/v1.0.6...v1.0.7) (2020-09-04)
1524
1108
 
1525
-
1526
1109
  ### Features
1527
1110
 
1528
- * Adds a LuiLoadingSpinner ([5a5d5c2](https://github.com/linz/lui/commit/5a5d5c2642990785be2ccef5559910ba881caa84))
1529
-
1530
-
1111
+ - Adds a LuiLoadingSpinner ([5a5d5c2](https://github.com/linz/lui/commit/5a5d5c2642990785be2ccef5559910ba881caa84))
1531
1112
 
1532
1113
  ## [1.0.6](https://github.com/linz/lui/compare/v1.0.5...v1.0.6) (2020-08-27)
1533
1114
 
1534
-
1535
1115
  ### Features
1536
1116
 
1537
- * removed redundant layout ([173d0d8](https://github.com/linz/lui/commit/173d0d80bf6f392abc8c3864d8a7399c7b21d3a2))
1538
-
1539
-
1117
+ - removed redundant layout ([173d0d8](https://github.com/linz/lui/commit/173d0d80bf6f392abc8c3864d8a7399c7b21d3a2))
1540
1118
 
1541
1119
  ## [1.0.5](https://github.com/linz/lui/compare/v1.0.4...v1.0.5) (2020-08-25)
1542
1120
 
1543
-
1544
1121
  ### Bug Fixes
1545
1122
 
1546
- * Added styling for printing pages.Won't break anything, but navigation will now be automatically hideen when printing ([6ecc5ef](https://github.com/linz/lui/commit/6ecc5ef87c5718488f6b61195968bd9f1ee65e38))
1547
- * set font family on selects, line heights on headings ([33b0b28](https://github.com/linz/lui/commit/33b0b28dc121772e60d005c8274faf3f624dce84))
1548
-
1123
+ - Added styling for printing pages.Won't break anything, but navigation will now be automatically hideen when printing ([6ecc5ef](https://github.com/linz/lui/commit/6ecc5ef87c5718488f6b61195968bd9f1ee65e38))
1124
+ - set font family on selects, line heights on headings ([33b0b28](https://github.com/linz/lui/commit/33b0b28dc121772e60d005c8274faf3f624dce84))
1549
1125
 
1550
1126
  ### Features
1551
1127
 
1552
- * added lui namespacing to heading class names - should not break anything as they don't appear to be used in anger ([59ed9e1](https://github.com/linz/lui/commit/59ed9e13433d066e7acb0474f1617b48b2367bb9))
1553
- * moves a test extend setupTest.ts ([dbb12cf](https://github.com/linz/lui/commit/dbb12cf3b4022566b5b8a6ee0608179df1ed674c))
1554
- * npm install ([2a175fe](https://github.com/linz/lui/commit/2a175fec243f15449c5d6111f8522d22c97a620d))
1555
-
1556
-
1128
+ - added lui namespacing to heading class names - should not break anything as they don't appear to be used in anger ([59ed9e1](https://github.com/linz/lui/commit/59ed9e13433d066e7acb0474f1617b48b2367bb9))
1129
+ - moves a test extend setupTest.ts ([dbb12cf](https://github.com/linz/lui/commit/dbb12cf3b4022566b5b8a6ee0608179df1ed674c))
1130
+ - npm install ([2a175fe](https://github.com/linz/lui/commit/2a175fec243f15449c5d6111f8522d22c97a620d))
1557
1131
 
1558
1132
  ## [1.0.4](https://github.com/linz/lui/compare/v1.0.3...v1.0.4) (2020-08-13)
1559
1133
 
1560
-
1561
1134
  ### Features
1562
1135
 
1563
- * Removes React Router from Lui ([c5be132](https://github.com/linz/lui/commit/c5be132ae7834f006175e2474731e85aedf688f0))
1564
-
1136
+ - Removes React Router from Lui ([c5be132](https://github.com/linz/lui/commit/c5be132ae7834f006175e2474731e85aedf688f0))
1565
1137
 
1566
1138
  ### BREAKING CHANGES
1567
1139
 
1568
- * This means any LuiButton that were using the "to" prop will now achieve the same thing by following the readme changes
1569
-
1570
-
1140
+ - This means any LuiButton that were using the "to" prop will now achieve the same thing by following the readme changes
1571
1141
 
1572
1142
  ## [1.0.3](https://github.com/linz/lui/compare/v1.0.2...v1.0.3) (2020-08-13)
1573
1143
 
1574
-
1575
1144
  ### Features
1576
1145
 
1577
- * a button now passes styles down ([3c91b0d](https://github.com/linz/lui/commit/3c91b0d07181a2c23883c5f78af87e1667fc38d8))
1578
-
1579
-
1146
+ - a button now passes styles down ([3c91b0d](https://github.com/linz/lui/commit/3c91b0d07181a2c23883c5f78af87e1667fc38d8))
1580
1147
 
1581
1148
  ## [1.0.2](https://github.com/linz/lui/compare/v1.0.1...v1.0.2) (2020-08-13)
1582
1149
 
1583
-
1584
1150
  ### Features
1585
1151
 
1586
- * Adds sass compile to prepare as it was being missed ([e3ffde8](https://github.com/linz/lui/commit/e3ffde8334b2396847d535cff8ce978784237c00))
1587
-
1588
-
1152
+ - Adds sass compile to prepare as it was being missed ([e3ffde8](https://github.com/linz/lui/commit/e3ffde8334b2396847d535cff8ce978784237c00))
1589
1153
 
1590
1154
  ## [1.0.1](https://github.com/linz/lui/compare/v1.0.0...v1.0.1) (2020-08-12)
1591
1155
 
1592
-
1593
1156
  ### Features
1594
1157
 
1595
- * Consumes breaking change on margin class ([36aa4b8](https://github.com/linz/lui/commit/36aa4b8fc17516f0f54e7c8f6013fecbe0fb84cb))
1596
- * consumes more of the margin change ([d2f5352](https://github.com/linz/lui/commit/d2f5352b7f6dc3999fca9038be260523ab60ae65))
1597
- * named spaced all the helper classes with lui ([56e776a](https://github.com/linz/lui/commit/56e776a10ff6adc561ce455ed66e31d105fc4821))
1598
-
1599
-
1158
+ - Consumes breaking change on margin class ([36aa4b8](https://github.com/linz/lui/commit/36aa4b8fc17516f0f54e7c8f6013fecbe0fb84cb))
1159
+ - consumes more of the margin change ([d2f5352](https://github.com/linz/lui/commit/d2f5352b7f6dc3999fca9038be260523ab60ae65))
1160
+ - named spaced all the helper classes with lui ([56e776a](https://github.com/linz/lui/commit/56e776a10ff6adc561ce455ed66e31d105fc4821))
1600
1161
 
1601
1162
  # [1.0.0](https://github.com/linz/lui/compare/v0.0.93...v1.0.0) (2020-08-12)
1602
1163
 
1603
-
1604
1164
  ### Features
1605
1165
 
1606
- * adds more release commands ([e99b58e](https://github.com/linz/lui/commit/e99b58e1ffbdefe5c51b9cbdbfb570790034da2c))
1607
- * exporrts wireframe mode ([a388534](https://github.com/linz/lui/commit/a388534e83dba96ab94da76c3ae226997470050a))
1608
-
1609
-
1610
- * feat!: Removed the CSS build for basemaps ([d289a12](https://github.com/linz/lui/commit/d289a12038ec9b31c944fb55f1b3ece52e31f10c))
1611
- * [feat!] React components no longer import sass ([632f0e9](https://github.com/linz/lui/commit/632f0e921dd00bfa90f9a4d5e4361d62b917c758))
1166
+ - adds more release commands ([e99b58e](https://github.com/linz/lui/commit/e99b58e1ffbdefe5c51b9cbdbfb570790034da2c))
1167
+ - exporrts wireframe mode ([a388534](https://github.com/linz/lui/commit/a388534e83dba96ab94da76c3ae226997470050a))
1612
1168
 
1169
+ - feat!: Removed the CSS build for basemaps ([d289a12](https://github.com/linz/lui/commit/d289a12038ec9b31c944fb55f1b3ece52e31f10c))
1170
+ - [feat!] React components no longer import sass ([632f0e9](https://github.com/linz/lui/commit/632f0e921dd00bfa90f9a4d5e4361d62b917c758))
1613
1171
 
1614
1172
  ### Bug Fixes
1615
1173
 
1616
- * added a wireframe colour variables file for use in wireframing ([bbe5735](https://github.com/linz/lui/commit/bbe57359312fb4a8f7abbc8ab0d8901df3ec7f9d))
1617
- * moved icon colours into color variables for default and wireframe ([0fa0a9a](https://github.com/linz/lui/commit/0fa0a9ab5208b3e710caa13294b2930463e8ce52))
1618
-
1174
+ - added a wireframe colour variables file for use in wireframing ([bbe5735](https://github.com/linz/lui/commit/bbe57359312fb4a8f7abbc8ab0d8901df3ec7f9d))
1175
+ - moved icon colours into color variables for default and wireframe ([0fa0a9a](https://github.com/linz/lui/commit/0fa0a9ab5208b3e710caa13294b2930463e8ce52))
1619
1176
 
1620
1177
  ### BREAKING CHANGES
1621
1178
 
1622
- * For anyone importing CSS you will now have to import as documented
1623
- * There is now a separate build process for CSS this has an extra build in it to not break BaseMaps
1624
-
1625
-
1179
+ - For anyone importing CSS you will now have to import as documented
1180
+ - There is now a separate build process for CSS this has an extra build in it to not break BaseMaps
1626
1181
 
1627
1182
  ## [0.0.93](https://github.com/linz/lui/compare/v0.0.92...v0.0.93) (2020-08-06)
1628
1183
 
1629
-
1630
1184
  ### Bug Fixes
1631
1185
 
1632
- * Added proposed new reduced size header and buttons with transparent backgrounds in the lead up to cleaning up the header structures in the future ([0789cdf](https://github.com/linz/lui/commit/0789cdf36f289870a7f3956cf670df01d4ccea96))
1633
- * added vertical align middle ([5a0c6b9](https://github.com/linz/lui/commit/5a0c6b9cd3d6717aaadb28fbfa318f712291a45e))
1634
- * cleaned up vertical alignment and added helper classes for that reason ([be63cdc](https://github.com/linz/lui/commit/be63cdcc4ac13de3d70f59f21e61024e73bb4f91))
1635
- * fixed issues with a tags inside disclaimer text being indented ([342c151](https://github.com/linz/lui/commit/342c151d7b7ad4ede7747789df8b3ca8bf8774de))
1636
- * I've done further work for the reversed out buttons for the headers and code clean up. ([630fee2](https://github.com/linz/lui/commit/630fee2a67466f95756a3f307965b4f9dbe503d9))
1637
-
1638
-
1186
+ - Added proposed new reduced size header and buttons with transparent backgrounds in the lead up to cleaning up the header structures in the future ([0789cdf](https://github.com/linz/lui/commit/0789cdf36f289870a7f3956cf670df01d4ccea96))
1187
+ - added vertical align middle ([5a0c6b9](https://github.com/linz/lui/commit/5a0c6b9cd3d6717aaadb28fbfa318f712291a45e))
1188
+ - cleaned up vertical alignment and added helper classes for that reason ([be63cdc](https://github.com/linz/lui/commit/be63cdcc4ac13de3d70f59f21e61024e73bb4f91))
1189
+ - fixed issues with a tags inside disclaimer text being indented ([342c151](https://github.com/linz/lui/commit/342c151d7b7ad4ede7747789df8b3ca8bf8774de))
1190
+ - I've done further work for the reversed out buttons for the headers and code clean up. ([630fee2](https://github.com/linz/lui/commit/630fee2a67466f95756a3f307965b4f9dbe503d9))
1639
1191
 
1640
1192
  ## [0.0.92](https://github.com/linz/lui/compare/v0.0.91...v0.0.92) (2020-07-27)
1641
1193
 
1642
-
1643
1194
  ### Bug Fixes
1644
1195
 
1645
- * slight tweak to modal SCSS, no real change ([bcd69ef](https://github.com/linz/lui/commit/bcd69efdbf219867e956c9635926f2ca6fd66803))
1646
-
1196
+ - slight tweak to modal SCSS, no real change ([bcd69ef](https://github.com/linz/lui/commit/bcd69efdbf219867e956c9635926f2ca6fd66803))
1647
1197
 
1648
1198
  ### Features
1649
1199
 
1650
- * move to "@linzjs/lui" ([ef2808f](https://github.com/linz/lui/commit/ef2808fa27893f3c67734fbdda77e04b2d9d2589))
1651
-
1652
-
1200
+ - move to "@linzjs/lui" ([ef2808f](https://github.com/linz/lui/commit/ef2808fa27893f3c67734fbdda77e04b2d9d2589))
1653
1201
 
1654
1202
  ## [0.0.91](https://github.com/linz/lui/compare/0.0.90...0.0.91) (2020-07-27)
1655
1203
 
1656
-
1657
-
1658
1204
  ## [0.0.89](https://github.com/linz/lui/compare/v0.0.88...v0.0.89) (2020-07-17)
1659
1205
 
1660
-
1661
1206
  ### Features
1662
1207
 
1663
- * refactor icon button ([8634ab4](https://github.com/linz/lui/commit/8634ab4fc9d8eaaeaf022192f1d43ca7f4ddf7ed))
1664
-
1665
-
1208
+ - refactor icon button ([8634ab4](https://github.com/linz/lui/commit/8634ab4fc9d8eaaeaf022192f1d43ca7f4ddf7ed))
1666
1209
 
1667
1210
  ## [0.0.88](https://github.com/linz/lui/compare/v0.0.87...v0.0.88) (2020-07-16)
1668
1211
 
1669
-
1670
-
1671
1212
  ## [0.0.87](https://github.com/linz/lui/compare/v0.0.86...v0.0.87) (2020-07-16)
1672
1213
 
1673
-
1674
1214
  ### Bug Fixes
1675
1215
 
1676
- * removed active styling for buttons appearing on disabled icons ([bc3d10a](https://github.com/linz/lui/commit/bc3d10abcdabf449f2433587f5f16fb54ee1c42b))
1677
-
1216
+ - removed active styling for buttons appearing on disabled icons ([bc3d10a](https://github.com/linz/lui/commit/bc3d10abcdabf449f2433587f5f16fb54ee1c42b))
1678
1217
 
1679
1218
  ### Features
1680
1219
 
1681
- * we now have centered full width button links ([986a09f](https://github.com/linz/lui/commit/986a09fcb08be401e9423ff7b674e4a5cf81d67b))
1682
-
1683
-
1220
+ - we now have centered full width button links ([986a09f](https://github.com/linz/lui/commit/986a09fcb08be401e9423ff7b674e4a5cf81d67b))
1684
1221
 
1685
1222
  ## [0.0.86](https://github.com/linz/lui/compare/v0.0.85...v0.0.86) (2020-07-16)
1686
1223
 
1687
-
1688
1224
  ### Bug Fixes
1689
1225
 
1690
- * structural changes to footers for clearer guidance. Updated docs around footer and remove content from introduction page as it was duplicated ([fca7bc2](https://github.com/linz/lui/commit/fca7bc2f9c5507486e7108cc56c106c3d3793eb9))
1691
-
1692
-
1226
+ - structural changes to footers for clearer guidance. Updated docs around footer and remove content from introduction page as it was duplicated ([fca7bc2](https://github.com/linz/lui/commit/fca7bc2f9c5507486e7108cc56c106c3d3793eb9))
1693
1227
 
1694
1228
  ## [0.0.85](https://github.com/linz/Lui/compare/v0.0.84...v0.0.85) (2020-07-14)
1695
1229
 
1696
-
1697
1230
  ### Bug Fixes
1698
1231
 
1699
- * LuiToastMessage was not wainting when displayTimeout was 0 to call onClose ([15d5e82](https://github.com/linz/Lui/commit/15d5e826174224389fd87a86a6137491be4e35fd))
1700
-
1701
-
1232
+ - LuiToastMessage was not wainting when displayTimeout was 0 to call onClose ([15d5e82](https://github.com/linz/Lui/commit/15d5e826174224389fd87a86a6137491be4e35fd))
1702
1233
 
1703
1234
  ## [0.0.84](https://github.com/linz/Lui/compare/v0.0.83...v0.0.84) (2020-07-14)
1704
1235
 
1705
-
1706
-
1707
1236
  ## [0.0.83](https://github.com/linz/Lui/compare/v0.0.82...v0.0.83) (2020-07-14)
1708
1237
 
1709
-
1710
1238
  ### Bug Fixes
1711
1239
 
1712
- * added classes for message animation calls via JS and tweaks to Mui drawer width ([de8fe90](https://github.com/linz/Lui/commit/de8fe909159b5873a87f854604a3f5fca54c2ee8))
1713
- * tweaked padding on buttons with icons ([fde16aa](https://github.com/linz/Lui/commit/fde16aa8ac6342783601627334ef0328fdcc5b75))
1714
-
1240
+ - added classes for message animation calls via JS and tweaks to Mui drawer width ([de8fe90](https://github.com/linz/Lui/commit/de8fe909159b5873a87f854604a3f5fca54c2ee8))
1241
+ - tweaked padding on buttons with icons ([fde16aa](https://github.com/linz/Lui/commit/fde16aa8ac6342783601627334ef0328fdcc5b75))
1715
1242
 
1716
1243
  ### Features
1717
1244
 
1718
- * added global styling for material icons and introduced a class to be used as well. Added styling for disabled icons and links ([67a9e6a](https://github.com/linz/Lui/commit/67a9e6ad70c6bda75bd086f456835da37b814969))
1719
- * Allows consumer to dissolve LuiToastMessage with a display prop, which defaults to true ([ed052e0](https://github.com/linz/Lui/commit/ed052e0dee58a908dbcf7cc639d9c8fb6e85ade7))
1720
-
1721
-
1245
+ - added global styling for material icons and introduced a class to be used as well. Added styling for disabled icons and links ([67a9e6a](https://github.com/linz/Lui/commit/67a9e6ad70c6bda75bd086f456835da37b814969))
1246
+ - Allows consumer to dissolve LuiToastMessage with a display prop, which defaults to true ([ed052e0](https://github.com/linz/Lui/commit/ed052e0dee58a908dbcf7cc639d9c8fb6e85ade7))
1722
1247
 
1723
1248
  ## [0.0.82](https://github.com/linz/Lui/compare/v0.0.81...v0.0.82) (2020-07-07)
1724
1249
 
1725
-
1726
-
1727
1250
  ## [0.0.81](https://github.com/linz/Lui/compare/v0.0.79...v0.0.81) (2020-07-06)
1728
1251
 
1729
-
1730
1252
  ### Features
1731
1253
 
1732
- * Changes TextInput to take HelperText as a element prop now called helperInfo ([db8a8cf](https://github.com/linz/Lui/commit/db8a8cf898b7ae0613c1022a5a8a72d5c20d6700))
1733
- * on version create a changelog from commit messages ([98cbfc4](https://github.com/linz/Lui/commit/98cbfc497b950baf52941d74c4e98b21b1a9284d))
1254
+ - Changes TextInput to take HelperText as a element prop now called helperInfo ([db8a8cf](https://github.com/linz/Lui/commit/db8a8cf898b7ae0613c1022a5a8a72d5c20d6700))
1255
+ - on version create a changelog from commit messages ([98cbfc4](https://github.com/linz/Lui/commit/98cbfc497b950baf52941d74c4e98b21b1a9284d))