@entur/datepicker 3.0.0 → 3.0.1
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 +5 -15
- package/dist/styles.css +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,25 +3,15 @@
|
|
|
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
|
-
|
|
6
|
+
## [3.0.1](https://bitbucket.org/enturas/design-system/compare/@entur/datepicker@3.0.0...@entur/datepicker@3.0.1) (2022-09-27)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
- **timepicker:** fix bugs with disabled state in new TimePicker ([b82a9ca](https://bitbucket.org/enturas/design-system/commits/b82a9ca2bfb9611b07c8f244035a5309438555e2))
|
|
11
|
-
|
|
12
|
-
### Features
|
|
13
|
-
|
|
14
|
-
- **native time picker:** update native timepicker with small tweaks ([9d72bf7](https://bitbucket.org/enturas/design-system/commits/9d72bf79951aed9b236fb55a007fc96d019b9c46))
|
|
15
|
-
- **timepicker:** add new timepicker component using react-aria ([cd90a09](https://bitbucket.org/enturas/design-system/commits/cd90a092de72ebf1cf1cef61147ada5f42fb67b4))
|
|
16
|
-
- **timepicker utils:** add utility functions for converting between TimeValue and JS Date ([f5ee77e](https://bitbucket.org/enturas/design-system/commits/f5ee77e9b3666816bda82b7e0deceaf27672f536))
|
|
8
|
+
**Note:** Version bump only for package @entur/datepicker
|
|
17
9
|
|
|
18
|
-
|
|
10
|
+
# [3.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/datepicker@2.1.3...@entur/datepicker@3.0.0-alpha.1) (2022-09-06)
|
|
19
11
|
|
|
20
|
-
|
|
21
|
-
- **timepicker:** This is a complete rewrite. Changes in the API will need to be accounted for when using this new
|
|
22
|
-
version
|
|
12
|
+
### Bug Fixes
|
|
23
13
|
|
|
24
|
-
|
|
14
|
+
- **timepicker:** fix bugs with disabled state in new TimePicker ([b82a9ca](https://bitbucket.org/enturas/design-system/commits/b82a9ca2bfb9611b07c8f244035a5309438555e2))
|
|
25
15
|
|
|
26
16
|
### Features
|
|
27
17
|
|
package/dist/styles.css
CHANGED
|
@@ -2,11 +2,6 @@
|
|
|
2
2
|
--eds-datepicker: 1;
|
|
3
3
|
}/* DO NOT CHANGE!*/
|
|
4
4
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
5
|
-
.eds-native-timepicker input[type=time]::-webkit-calendar-picker-indicator {
|
|
6
|
-
position: relative;
|
|
7
|
-
top: -0.5rem;
|
|
8
|
-
}/* DO NOT CHANGE!*/
|
|
9
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
10
5
|
.eds-datepicker__calender {
|
|
11
6
|
font-family: var(--eds-font-family);
|
|
12
7
|
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
@@ -129,6 +124,11 @@
|
|
|
129
124
|
height: 2.75rem;
|
|
130
125
|
}/* DO NOT CHANGE!*/
|
|
131
126
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
127
|
+
.eds-native-timepicker input[type=time]::-webkit-calendar-picker-indicator {
|
|
128
|
+
position: relative;
|
|
129
|
+
top: -0.5rem;
|
|
130
|
+
}/* DO NOT CHANGE!*/
|
|
131
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
132
132
|
.eds-timepicker__wrapper {
|
|
133
133
|
position: relative;
|
|
134
134
|
display: flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/datepicker",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/datepicker.esm.js",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"node": "14.17.0",
|
|
46
46
|
"yarn": "1.18.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "efadf2a3b78a8f146aaa7e43ad2f36f7ad6afe1d"
|
|
49
49
|
}
|