@equinor/fusion-framework-dev-portal 1.0.3 → 1.1.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,5 +1,94 @@
1
1
  # @equinor/fusion-framework-dev-portal
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3432](https://github.com/equinor/fusion-framework/pull/3432) [`528d72c`](https://github.com/equinor/fusion-framework/commit/528d72c04066f93fca1fa6469f33ec8d5383dcdc) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated vite from 7.1.5 to 7.1.7, including bug fixes for HMR, build system, and glob imports.
8
+
9
+ ## 1.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#3442](https://github.com/equinor/fusion-framework/pull/3442) [`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update biome to latest version
14
+
15
+ ## 1.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#3349](https://github.com/equinor/fusion-framework/pull/3349) [`c511123`](https://github.com/equinor/fusion-framework/commit/c511123c835e24e9ddefcc4c47c2455f5df12087) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump vite from 6.x to 7.1.5
20
+
21
+ Major version update of Vite build tool across all packages. This update includes:
22
+
23
+ - Enhanced build performance and caching
24
+ - Better error reporting with code frames
25
+ - Improved TypeScript integration
26
+ - Updated plugin ecosystem compatibility
27
+ - New development server features
28
+
29
+ ### Links
30
+
31
+ - [Vite 7.1.5 Release Notes](https://github.com/vitejs/vite/releases/tag/v7.1.5)
32
+ - [Vite 7.x Migration Guide](https://vitejs.dev/guide/migration)
33
+
34
+ ### Patch Changes
35
+
36
+ - [#3365](https://github.com/equinor/fusion-framework/pull/3365) [`6eeef2f`](https://github.com/equinor/fusion-framework/commit/6eeef2f2033dfacf7c972295c8c2cc2d4cd83976) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated @equinor/eds-tokens from 0.9.2 to 0.10.0
37
+
38
+ - Added support for CSS custom properties via variables-static.css and variables-dynamic.css
39
+ - Improved design token integration for better CSS compatibility
40
+ - Updated dependencies and internal tooling (pnpm v10, node v22)
41
+
42
+ This is a minor version update with new features and no breaking changes.
43
+
44
+ - [#3400](https://github.com/equinor/fusion-framework/pull/3400) [`aed6c53`](https://github.com/equinor/fusion-framework/commit/aed6c5385df496a86d06dc0af9dacafc255ea605) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/eds-core-react from 0.45.1 to 0.49.0
45
+
46
+ ### New Features
47
+
48
+ - ✨ Always show "add new option" in Autocomplete when onAddNewOption is provided
49
+ - ✨ Tabs call onChange with provided value if present
50
+ - ✨ Add disabled prop to Tooltip
51
+ - ✨ Autocomplete allow option-label prop to be used without type of object
52
+ - ✨ Add support for adding new options in Autocomplete
53
+
54
+ ### Bug Fixes
55
+
56
+ - 🐛 Autocomplete - Don't call onOptionsChange when clicking "Add new"
57
+ - 🐛 Table - Fix Firefox table header wrapping issue
58
+ - 🐛 Tabs documentation type mismatch - update onChange parameter from number to number | string
59
+ - 🐛 DatePicker Disable back button in year range based on year, not month
60
+ - 🐛 Tabs now allow 'null' value as child element 'Tabs.List' and 'Tabs.Panel'
61
+ - 🐛 Autocomplete prevent onAddNewOption from being called twice in Strict Mode
62
+ - 🐛 Table export table row with pascal case
63
+ - 🐛 Autocomplete: Improvements to placeholder text
64
+ - 🐛 Menu: Ensure onClose is called when a MenuItem without onClick is clicked
65
+
66
+ ### Links
67
+
68
+ - [GitHub releases](https://github.com/equinor/design-system/releases/tag/eds-core-react%400.49.0)
69
+ - [npm changelog](https://www.npmjs.com/package/@equinor/eds-core-react?activeTab=versions)
70
+
71
+ - [#3366](https://github.com/equinor/fusion-framework/pull/3366) [`daa362e`](https://github.com/equinor/fusion-framework/commit/daa362e7d92ad362e46d666c434d0f09687abad5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update @equinor/eds-core-react from 0.48.0 to 0.49.0
72
+
73
+ ### Changes
74
+
75
+ - Updated @equinor/eds-core-react dependency to latest version across all packages
76
+ - Fixed peerDependencies version mismatch in bookmark package
77
+ - Includes bug fixes for Autocomplete and Table components
78
+ - Adds new Autocomplete features for "add new option" functionality
79
+
80
+ ### Affected Packages
81
+
82
+ - packages/dev-portal
83
+ - packages/react/components/bookmark
84
+ - cookbooks/app-react-feature-flag
85
+ - cookbooks/app-react-people
86
+
87
+ ### Links
88
+
89
+ - [GitHub releases](https://github.com/equinor/design-system/releases)
90
+ - [Full Changelog](https://github.com/equinor/design-system/compare/eds-core-react@0.48.0...eds-core-react@0.49.0)
91
+
3
92
  ## 1.0.3
4
93
 
5
94
  ### Patch Changes
package/dev-server.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import dotenv from 'dotenv';
2
2
  import { createDevServer, processServices } from '@equinor/fusion-framework-dev-server';
3
3
 
4
- import { name } from './package.json' assert { type: 'json' };
4
+ import { name } from './package.json' with { type: 'json' };
5
5
 
6
6
  dotenv.config();
7
7