@entur-partner/common 4.0.3 → 4.0.7
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 +27 -0
- package/dist/ExpandableMultiLanguageInput.d.ts +1 -3
- package/dist/common.cjs.development.js +159 -126
- package/dist/common.cjs.development.js.map +1 -1
- package/dist/common.cjs.production.min.js +1 -1
- package/dist/common.cjs.production.min.js.map +1 -1
- package/dist/common.esm.js +65 -40
- package/dist/common.esm.js.map +1 -1
- package/dist/styles.css +680 -680
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.7](https://bitbucket.org/enturas/entur-partner-packages/compare/@entur-partner/common@4.0.6...@entur-partner/common@4.0.7) (2022-02-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- update to Node 16. Also update various packages to make dts-cli and its dependencies work ([93468c8](https://bitbucket.org/enturas/entur-partner-packages/commits/93468c8190e8590143f274c468df23e786af4553))
|
|
11
|
+
|
|
12
|
+
## [4.0.6](https://bitbucket.org/enturas/entur-partner-packages/compare/@entur-partner/common@4.0.5...@entur-partner/common@4.0.6) (2022-02-07)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **deps:** pin dependencies ([840fa3d](https://bitbucket.org/enturas/entur-partner-packages/commits/840fa3d44ce62deea2a69131d30da4d979bc8fe9))
|
|
17
|
+
- **deps:** pin dependencies ([0a33356](https://bitbucket.org/enturas/entur-partner-packages/commits/0a333563ff91fb711c39a45352fc31a49513ebaa))
|
|
18
|
+
- **deps:** update all non-major dependencies ([20fc6be](https://bitbucket.org/enturas/entur-partner-packages/commits/20fc6bed3831d05bd62ace84bc60ee48877a034c))
|
|
19
|
+
- **deps:** update entur packages ([a900a53](https://bitbucket.org/enturas/entur-partner-packages/commits/a900a5383801679efe186caffd56d3dfac5f1947))
|
|
20
|
+
|
|
21
|
+
## [4.0.5](https://bitbucket.org/enturas/entur-partner-packages/compare/@entur-partner/common@4.0.4...@entur-partner/common@4.0.5) (2021-11-05)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- **common:** fix ErrorBoundary in non-production environments ([cd62e49](https://bitbucket.org/enturas/entur-partner-packages/commits/cd62e4955ccc676799b6853dbff2b11f97d32ccc))
|
|
26
|
+
|
|
27
|
+
## [4.0.4](https://bitbucket.org/enturas/entur-partner-packages/compare/@entur-partner/common@4.0.3...@entur-partner/common@4.0.4) (2021-10-19)
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- **menu:** revert previous fix which could cause unwanted "jumping" of page content ([5597b03](https://bitbucket.org/enturas/entur-partner-packages/commits/5597b03ef86db344de5d8a816b5afe87ced8e839))
|
|
32
|
+
|
|
6
33
|
## [4.0.3](https://bitbucket.org/enturas/entur-partner-packages/compare/@entur-partner/common@4.0.2...@entur-partner/common@4.0.3) (2021-10-14)
|
|
7
34
|
|
|
8
35
|
### Bug Fixes
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { VariantType } from '@entur/form';
|
|
3
3
|
import { LanguageKey, LanguageOption } from './LanguageSelect';
|
|
4
|
-
export declare type MultiLanguageValues =
|
|
5
|
-
[k in LanguageKey]: string;
|
|
6
|
-
};
|
|
4
|
+
export declare type MultiLanguageValues = Record<LanguageKey, string>;
|
|
7
5
|
declare type ExpandableMultiLanguageInputProps = {
|
|
8
6
|
title: string;
|
|
9
7
|
inputComponent: React.ElementType;
|