@atlaskit/calendar 13.1.6 → 13.1.8
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 +13 -0
- package/dist/cjs/calendar.js +1 -1
- package/dist/cjs/internal/components/week-header.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/calendar.js +1 -1
- package/dist/es2019/internal/components/week-header.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/calendar.js +1 -1
- package/dist/esm/internal/components/week-header.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/calendar
|
|
2
2
|
|
|
3
|
+
## 13.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`529814693a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/529814693a1) - Pin version of @atlaskit/primitives so it resolves to correct version
|
|
8
|
+
|
|
9
|
+
## 13.1.7
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`b8b41649492`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8b41649492) - Update how certain background colors are referenced by name. Internal changes only.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 13.1.6
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/cjs/calendar.js
CHANGED
|
@@ -38,7 +38,7 @@ var boxStyles = (0, _primitives.xcss)({
|
|
|
38
38
|
var analyticsAttributes = {
|
|
39
39
|
componentName: 'calendar',
|
|
40
40
|
packageName: "@atlaskit/calendar",
|
|
41
|
-
packageVersion: "13.1.
|
|
41
|
+
packageVersion: "13.1.8"
|
|
42
42
|
};
|
|
43
43
|
var CalendarWithMode = /*#__PURE__*/(0, _react.forwardRef)(function Calendar(_ref, ref) {
|
|
44
44
|
var day = _ref.day,
|
|
@@ -19,7 +19,7 @@ var columnHeaderStyles = (0, _primitives.xcss)({
|
|
|
19
19
|
// Account for languages with long week day names
|
|
20
20
|
textAlign: 'center',
|
|
21
21
|
lineHeight: '16px',
|
|
22
|
-
color: 'subtle' // Apply correct fallback to shortDay text
|
|
22
|
+
color: 'color.text.subtle' // Apply correct fallback to shortDay text
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
var WeekHeader = /*#__PURE__*/(0, _react.memo)(function WeekHeader(_ref) {
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/calendar.js
CHANGED
|
@@ -28,7 +28,7 @@ const boxStyles = xcss({
|
|
|
28
28
|
const analyticsAttributes = {
|
|
29
29
|
componentName: 'calendar',
|
|
30
30
|
packageName: "@atlaskit/calendar",
|
|
31
|
-
packageVersion: "13.1.
|
|
31
|
+
packageVersion: "13.1.8"
|
|
32
32
|
};
|
|
33
33
|
const CalendarWithMode = /*#__PURE__*/forwardRef(function Calendar({
|
|
34
34
|
day,
|
|
@@ -11,7 +11,7 @@ const columnHeaderStyles = xcss({
|
|
|
11
11
|
// Account for languages with long week day names
|
|
12
12
|
textAlign: 'center',
|
|
13
13
|
lineHeight: '16px',
|
|
14
|
-
color: 'subtle' // Apply correct fallback to shortDay text
|
|
14
|
+
color: 'color.text.subtle' // Apply correct fallback to shortDay text
|
|
15
15
|
});
|
|
16
16
|
|
|
17
17
|
const WeekHeader = /*#__PURE__*/memo(function WeekHeader({
|
package/dist/es2019/version.json
CHANGED
package/dist/esm/calendar.js
CHANGED
|
@@ -32,7 +32,7 @@ var boxStyles = xcss({
|
|
|
32
32
|
var analyticsAttributes = {
|
|
33
33
|
componentName: 'calendar',
|
|
34
34
|
packageName: "@atlaskit/calendar",
|
|
35
|
-
packageVersion: "13.1.
|
|
35
|
+
packageVersion: "13.1.8"
|
|
36
36
|
};
|
|
37
37
|
var CalendarWithMode = /*#__PURE__*/forwardRef(function Calendar(_ref, ref) {
|
|
38
38
|
var day = _ref.day,
|
|
@@ -11,7 +11,7 @@ var columnHeaderStyles = xcss({
|
|
|
11
11
|
// Account for languages with long week day names
|
|
12
12
|
textAlign: 'center',
|
|
13
13
|
lineHeight: '16px',
|
|
14
|
-
color: 'subtle' // Apply correct fallback to shortDay text
|
|
14
|
+
color: 'color.text.subtle' // Apply correct fallback to shortDay text
|
|
15
15
|
});
|
|
16
16
|
|
|
17
17
|
var WeekHeader = /*#__PURE__*/memo(function WeekHeader(_ref) {
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/calendar",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.8",
|
|
4
4
|
"description": "An interactive calendar for date selection experiences.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@atlaskit/heading": "^1.3.0",
|
|
39
39
|
"@atlaskit/icon": "^21.12.0",
|
|
40
40
|
"@atlaskit/locale": "^2.5.0",
|
|
41
|
-
"@atlaskit/primitives": "
|
|
41
|
+
"@atlaskit/primitives": "~0.12.0",
|
|
42
42
|
"@atlaskit/theme": "^12.5.0",
|
|
43
43
|
"@atlaskit/tokens": "^1.5.0",
|
|
44
44
|
"@atlaskit/visually-hidden": "^1.2.0",
|