File tree Expand file tree Collapse file tree 6 files changed +5
-48
lines changed
Expand file tree Collapse file tree 6 files changed +5
-48
lines changed Original file line number Diff line number Diff line change 11# Changelog
2+ ## [ 32.0.0] - 2025-09-22
3+ - Change references to global to globalThis
4+ - Breaking: Remove smartGoBack
25## [ 31.2.1] - 2025-09-16
36- ReportDataGrid - change showRowCount option to display below the grid.
47## [ 31.2.0] - 2025-09-11
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import NotFound from './src/components/NotFound.js';
2525import LinnWeekPicker from './src/components/LinnWeekPicker.js' ;
2626import { getWeekEndDate , getWeekStartDate } from './src/utilities/dateUtilities.js' ;
2727import './src/styles/printStyles.css' ;
28- import smartGoBack from './src/utilities/smartGoBack.js' ;
2928import FileUploader from './src/components/FileUploader.js' ;
3029import AddressUtility from './src/components/AddressUtility.js' ;
3130import Search from './src/components/Search.js' ;
@@ -79,7 +78,6 @@ export {
7978 Search ,
8079 SearchInputField ,
8180 SelectedItemsList ,
82- smartGoBack ,
8381 SnackbarMessage ,
8482 usePreviousNextNavigation ,
8583 useDebounceValue ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @linn-it/linn-form-components-library" ,
3- "version" : " 31.2.2 " ,
3+ "version" : " 32.0.0 " ,
44 "private" : false ,
55 "main" : " dist/index.cjs.js" ,
66 "module" : " dist/index.esm.js" ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function FileUploader({
3838 const { getRootProps, getInputProps } = useDropzone ( { onDrop } ) ;
3939
4040 const handleUploadClick = ( ) => {
41- const reader = new global . FileReader ( ) ;
41+ const reader = new globalThis . FileReader ( ) ;
4242 reader . onload = ( ) => {
4343 const binaryStr = reader . result ;
4444 doUpload ( binaryStr ) ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments