@schedule-x/react 1.1.0 → 1.2.0

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.
@@ -15,12 +15,12 @@ jobs:
15
15
  pull-requests: write # to be able to comment on released pull requests
16
16
  steps:
17
17
  - name: Checkout ✅
18
- uses: actions/checkout@v3
18
+ uses: actions/checkout@v4
19
19
  with:
20
20
  fetch-depth: 0
21
21
  token: ${{ secrets.GITHUB_TOKEN }}
22
22
  - name: Setup Node.js 🔧
23
- uses: actions/setup-node@v3
23
+ uses: actions/setup-node@v4
24
24
  with:
25
25
  node-version: 'lts/*'
26
26
  - name: Install dependencies 🛠️
package/CHANGELOG.md CHANGED
@@ -2,17 +2,28 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
4
4
 
5
- # [1.1.0](https://github.com/schedule-x/react/compare/v1.0.0...v1.1.0) (2023-12-29)
5
+ # [1.2.0](https://github.com/schedule-x/react/compare/v1.1.1...v1.2.0) (2024-01-04)
6
6
 
7
7
 
8
8
  ### Features
9
9
 
10
- * **calendar:** add callbacks for clicking on date and times ([070bbe7](https://github.com/schedule-x/react/commit/070bbe79b9fdcf2b7aee3adeda5d10e30ae3d93f))
10
+ * bump calendar monorepo packages to 1.3.0 ([#21](https://github.com/schedule-x/react/issues/21)) ([bcba535](https://github.com/schedule-x/react/commit/bcba5359d430942ea82ec5662c9848791c9b2f13))
11
11
 
12
- # 1.0.0 (2023-12-29)
12
+ ## [1.1.1](https://github.com/schedule-x/react/compare/v1.1.0...v1.1.1) (2023-12-29)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **event-modal:** make icon color in event modal reactive to theme changes ([96f68d7](https://github.com/schedule-x/react/commit/96f68d7025531f97f245822e1c177b3119f2ba1e))
17
+
18
+ # [1.1.0](https://github.com/schedule-x/react/compare/v1.0.0...v1.1.0) (2023-12-29)
19
+
20
+ ### Features
13
21
 
22
+ - **calendar:** add callbacks for clicking on date and times ([070bbe7](https://github.com/schedule-x/react/commit/070bbe79b9fdcf2b7aee3adeda5d10e30ae3d93f))
23
+
24
+ # 1.0.0 (2023-12-29)
14
25
 
15
26
  ### Features
16
27
 
17
- * custom components for week and day views ([#3](https://github.com/schedule-x/react/issues/3)) ([fe838a5](https://github.com/schedule-x/react/commit/fe838a5597fa947760b26fb5c97537de54e65272))
18
- * enable custom components in month view ([#5](https://github.com/schedule-x/react/issues/5)) ([c2e2ddf](https://github.com/schedule-x/react/commit/c2e2ddf95040ba1d5273c8b866767c0f3934036c))
28
+ - custom components for week and day views ([#3](https://github.com/schedule-x/react/issues/3)) ([fe838a5](https://github.com/schedule-x/react/commit/fe838a5597fa947760b26fb5c97537de54e65272))
29
+ - enable custom components in month view ([#5](https://github.com/schedule-x/react/issues/5)) ([c2e2ddf](https://github.com/schedule-x/react/commit/c2e2ddf95040ba1d5273c8b866767c0f3934036c))
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "main": "dist/index.cjs.js",
15
15
  "module": "dist/index.js",
16
16
  "types": "dist/types/index.d.ts",
17
- "version": "1.1.0",
17
+ "version": "1.2.0",
18
18
  "type": "module",
19
19
  "scripts": {
20
20
  "dev": "vite",
@@ -26,7 +26,7 @@
26
26
  "build:publish": "npm run build && npm publish"
27
27
  },
28
28
  "peerDependencies": {
29
- "@schedule-x/calendar": "^0.8.0",
29
+ "@schedule-x/calendar": "1.3.0",
30
30
  "react": "^16.7.0 || ^17 || ^18",
31
31
  "react-dom": "^16.7.0 || ^17 || ^18"
32
32
  },
@@ -35,12 +35,12 @@
35
35
  "@rollup/plugin-commonjs": "^25.0.7",
36
36
  "@rollup/plugin-node-resolve": "^15.2.3",
37
37
  "@rollup/plugin-typescript": "^11.1.5",
38
- "@schedule-x/drag-and-drop": "^0.8.0",
39
- "@schedule-x/e2e-testing": "^0.8.0",
40
- "@schedule-x/eslint-config": "^0.8.0",
41
- "@schedule-x/event-modal": "^0.8.0",
42
- "@schedule-x/prettier-config": "^0.8.0",
43
- "@schedule-x/theme-default": "^0.8.0",
38
+ "@schedule-x/drag-and-drop": "^1.3.0",
39
+ "@schedule-x/e2e-testing": "^1.3.0",
40
+ "@schedule-x/eslint-config": "^1.3.0",
41
+ "@schedule-x/event-modal": "^1.3.0",
42
+ "@schedule-x/prettier-config": "^1.3.0",
43
+ "@schedule-x/theme-default": "^1.3.0",
44
44
  "@semantic-release/changelog": "^6.0.3",
45
45
  "@semantic-release/git": "^10.0.1",
46
46
  "@types/react": "^18.2.43",