@planningcenter/core-automations 0.3.0-rc.7 → 0.3.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.
- package/CHANGELOG.md +7 -7
- package/README.md +2 -0
- package/dist/cjs/core-automations.esm.js +1 -1
- package/dist/cjs/core-automations.esm.js.map +1 -1
- package/dist/cjs/core-automations.js +1 -1
- package/dist/cjs/core-automations.js.map +1 -1
- package/dist/cjs/core-automations.modern.mjs +1 -1
- package/dist/cjs/core-automations.modern.mjs.map +1 -1
- package/dist/cjs/core-automations.umd.js +1 -1
- package/dist/cjs/core-automations.umd.js.map +1 -1
- package/dist/types/src/automations.d.ts +0 -6
- package/dist/types/src/automations.d.ts.map +1 -1
- package/dist/types/src/contexts/organization_context.d.ts +7 -0
- package/dist/types/src/contexts/organization_context.d.ts.map +1 -0
- package/dist/types/src/field.d.ts.map +1 -1
- package/dist/types/src/history.d.ts.map +1 -1
- package/dist/types/src/new_automation.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,13 +5,7 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
##
|
|
9
|
-
|
|
10
|
-
### Changed
|
|
11
|
-
|
|
12
|
-
- Change sizing of `Select`s in the `NewAutomation` form
|
|
13
|
-
|
|
14
|
-
## [0.3.0] - 2023-03-29
|
|
8
|
+
## [0.3.0] - 2023-04-10
|
|
15
9
|
|
|
16
10
|
### Added
|
|
17
11
|
|
|
@@ -23,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
17
|
|
|
24
18
|
- Update `border-radius` of modals to match newest design spec
|
|
25
19
|
- Migrated components to Typescript
|
|
20
|
+
- Change sizing of `Select`s and loading indicators in the `NewAutomation` form
|
|
21
|
+
- Refactor "Paused" and "Active" states in `Automation` header
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Prevent text overflow in History table
|
|
26
26
|
|
|
27
27
|
## [0.2.0] - 2023-03-21
|
|
28
28
|
|
package/README.md
CHANGED
|
@@ -70,6 +70,8 @@ end
|
|
|
70
70
|
yarn add @planningcenter/core-automations
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
**Peer dependencies**: Core automations requires that `react`, `react-dom`, and `@planningcenter/tapestry-react` be installed in your product.
|
|
74
|
+
|
|
73
75
|
#### Rendering the Automations components
|
|
74
76
|
|
|
75
77
|
```jsx
|