@simplybusiness/mobius-datepicker 4.0.0-beta.4 → 4.0.0-beta.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +6 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file, or link in [archives](#archived).
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [4.0.0-alpha.0] - 2023-10-23
9
+
10
+ ### Added
11
+
12
+ - Added exit animations to `Modal`
13
+
14
+ ### Changed
15
+
16
+ - Move DatePicker component under `@simplybusiness/mobius-datepicker`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplybusiness/mobius-datepicker",
3
3
  "license": "UNLICENSED",
4
- "version": "4.0.0-beta.4",
4
+ "version": "4.0.0-beta.6",
5
5
  "description": "Mobius date picker component",
6
6
  "repository": {
7
7
  "type": "git",
@@ -25,7 +25,8 @@
25
25
  }
26
26
  },
27
27
  "scripts": {
28
- "build": "turbo run turbo:build",
28
+ "build": "yarn run -T turbo run turbo:build",
29
+ "prepack": "yarn run build",
29
30
  "build:cjs": "tsc",
30
31
  "build:esm": "tsc -p tsconfig.esm.json",
31
32
  "build:extract-api": "api-extractor run",
@@ -90,12 +91,12 @@
90
91
  "@react-aria/visually-hidden": "^3.8.6",
91
92
  "@react-stately/calendar": "^3.4.1",
92
93
  "@react-stately/datepicker": "^3.8.0",
93
- "@simplybusiness/icons": "workspace:^",
94
- "@simplybusiness/mobius": "workspace:^",
94
+ "@simplybusiness/icons": "^4.0.0-beta.6",
95
+ "@simplybusiness/mobius": "^4.0.0-beta.6",
95
96
  "classnames": "^2.3.2",
96
97
  "lodash.debounce": "^4.0.8"
97
98
  },
98
99
  "lint-staged": {
99
100
  "*.{js,ts,jsx,tsx}": "eslint --ext .tsx,.ts,.js,.jsx,.mjs --fix"
100
101
  }
101
- }
102
+ }