@linzjs/lui 22.12.0 → 22.12.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [22.12.2](https://github.com/linz/lui/compare/v22.12.1...v22.12.2) (2025-05-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ColorPalette:** update colour palette default colours ([#1217](https://github.com/linz/lui/issues/1217)) ([bae1e66](https://github.com/linz/lui/commit/bae1e66730aef50b2fdadfda35103ea68a55d533))
7
+
8
+ ## [22.12.1](https://github.com/linz/lui/compare/v22.12.0...v22.12.1) (2025-05-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **ColorPalette:** export default colours array ([#1216](https://github.com/linz/lui/issues/1216)) ([2869dd5](https://github.com/linz/lui/commit/2869dd5bd2e0e6f7ecbdceaa839a73f1571fafdc))
14
+
1
15
  # [22.12.0](https://github.com/linz/lui/compare/v22.11.0...v22.12.0) (2025-04-27)
2
16
 
3
17
 
package/dist/index.d.ts CHANGED
@@ -76,6 +76,7 @@ export { Splitter } from './components/Splitter/Splitter';
76
76
  export { useSplitterRef } from './components/Splitter/useSplitterRef';
77
77
  export { LuiBannerV2 } from './components/LuiBannerV2/LuiBannerV2';
78
78
  export { ColorPalette } from './components/LuiColourPicker/ColorPalette';
79
+ export { defaultColours } from './components/LuiColourPicker/ColourPaletteConstants';
79
80
  export { ColorInput, ColorInputGroup, } from './components/LuiColourPicker/ColorInput';
80
81
  export { useToast } from './components/Toast';
81
82
  export { LuiMessagingContextProvider, useShowLUIMessage, LuiToastMessage, } from './components/Toast/Upgrade';
package/dist/index.js CHANGED
@@ -59603,7 +59603,7 @@ var defaultColours = [
59603
59603
  { color: '#54B8CD', description: 'Sea' },
59604
59604
  { color: '#3B6CC0', description: 'Blue' },
59605
59605
  { color: '#6C55A7', description: 'Purple' },
59606
- { color: '#F00', description: 'Red' },
59606
+ { color: '#FF0000', description: 'Red' },
59607
59607
  { color: '#FFAD33', description: 'Orange' },
59608
59608
  { color: '#39AF4C', description: 'Green' },
59609
59609
  { color: '#3EEDF3', description: 'Cyan' },
@@ -60284,6 +60284,7 @@ exports.ToolbarItem = ToolbarItem;
60284
60284
  exports.ToolbarItemSeparator = ToolbarItemSeparator;
60285
60285
  exports.breakpointQuery = breakpointQuery;
60286
60286
  exports.breakpoints = breakpoints;
60287
+ exports.defaultColours = defaultColours;
60287
60288
  exports.isChromatic = isChromatic;
60288
60289
  exports.useClickedOutsideElement = useClickedOutsideElement;
60289
60290
  exports.useEscapeFunction = useEscapeFunction;