@projectcaluma/ember-form 14.4.4 → 14.5.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/README.md +82 -0
- package/package.json +6 -6
package/README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# 
|
|
2
|
+
|
|
3
|
+
[](https://github.com/projectcaluma/ember-caluma/actions?query=workflow%3ATest)
|
|
4
|
+
[](https://automate.browserstack.com/public-build/RFNMT2hyTnRjNVZkUitkWUl2d3BWK21KbnU3MU1tTGpHS2tOVHVCU1RrZz0tLXJjZ1J5VEZ6ZmtJWVpFdHpDRnREcFE9PQ==--3034affde596526379b7a0a19798a7ba1f79154c)
|
|
5
|
+
[](https://codecov.io/gh/projectcaluma/ember-caluma)
|
|
6
|
+
[](https://github.com/prettier/prettier)
|
|
7
|
+
[](https://spdx.org/licenses/LGPL-3.0-or-later.html)
|
|
8
|
+
|
|
9
|
+
The Ember.js addons for [Caluma](https://caluma.io) - a collaborative form editing service.
|
|
10
|
+
|
|
11
|
+
## Browser support
|
|
12
|
+
|
|
13
|
+
|  |  |  |  |
|
|
14
|
+
| :-------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------: |
|
|
15
|
+
| last 2 versions | last 2 versions | last 2 versions | last 2 versions |
|
|
16
|
+
|
|
17
|
+
## Compatibility
|
|
18
|
+
|
|
19
|
+
`@projectcaluma/ember-*` packages are guaranteed to work with the following LTS versions of Ember.js:
|
|
20
|
+
|
|
21
|
+
- 5.4
|
|
22
|
+
- 4.12
|
|
23
|
+
|
|
24
|
+
## Documentation
|
|
25
|
+
|
|
26
|
+
You can find the interactive documentation [here](https://docs.caluma.io/ember-caluma).
|
|
27
|
+
|
|
28
|
+
## Contributing
|
|
29
|
+
|
|
30
|
+
### Installation
|
|
31
|
+
|
|
32
|
+
- `git clone git@github.com:projectcaluma/ember-caluma`
|
|
33
|
+
- `cd ember-caluma`
|
|
34
|
+
- `pnpm install`
|
|
35
|
+
|
|
36
|
+
### Linting
|
|
37
|
+
|
|
38
|
+
- `pnpm lint`
|
|
39
|
+
|
|
40
|
+
### Running tests
|
|
41
|
+
|
|
42
|
+
- `pnpm --filter @projectcaluma/ember-[package] exec ember test` – Runs the test suite on the current Ember version
|
|
43
|
+
- `pnpm --filter @projectcaluma/ember-[package] exec ember test --server` – Runs the test suite in "watch mode"
|
|
44
|
+
- `pnpm --filter @projectcaluma/ember-[package] exec ember try:each` – Runs the test suite against multiple Ember versions
|
|
45
|
+
|
|
46
|
+
Cross-browser testing provided by:
|
|
47
|
+
|
|
48
|
+
<a href="https://browserstack.com"><img alt="BrowserStack" src="https://user-images.githubusercontent.com/6150577/69328224-24f1d680-0c4f-11ea-8b02-5670334923a3.png" height="50"></a>
|
|
49
|
+
|
|
50
|
+
### Running the dummy application
|
|
51
|
+
|
|
52
|
+
#### With a mocked [Mirage.js](https://github.com/miragejs/ember-cli-mirage) backend
|
|
53
|
+
|
|
54
|
+
- `pnpm start`
|
|
55
|
+
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).
|
|
56
|
+
|
|
57
|
+
#### With a dockerized [Caluma](https://github.com/projectcaluma/caluma) backend
|
|
58
|
+
|
|
59
|
+
- `docker compose up -d`
|
|
60
|
+
- `pnpm start-proxy`
|
|
61
|
+
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).
|
|
62
|
+
|
|
63
|
+
### Updating the schema
|
|
64
|
+
|
|
65
|
+
The addon includes a mirage server for mocking Caluma's GraphQL API, which is generated from the GraphQL schema definition. If the upstream GraphQL schema changed you can update the addon by running
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
docker compose up -d
|
|
69
|
+
pnpm update-schema
|
|
70
|
+
pnpm update-possible-types
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Releasing
|
|
74
|
+
|
|
75
|
+
To release a new version, head over to [Actions](https://github.com/projectcaluma/ember-caluma/actions?query=workflow%3ARelease) and trigger a workflow run.
|
|
76
|
+
This will automatically check if a new version can be released, generate a changelog, draft a release and publish it on NPM.
|
|
77
|
+
|
|
78
|
+
## License
|
|
79
|
+
|
|
80
|
+
This project is licensed under the [LGPL-3.0-or-later license](LICENSE).
|
|
81
|
+
|
|
82
|
+
For further information on our license choice, you can read up on the [corresponding GitHub issue](https://github.com/projectcaluma/ember-caluma/issues/613).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-form",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.1",
|
|
4
4
|
"description": "Ember addon for rendering Caluma forms.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@embroider/util": "^1.13.2",
|
|
16
16
|
"@glimmer/component": "^1.1.2",
|
|
17
17
|
"@glimmer/tracking": "^1.1.2",
|
|
18
|
-
"ember-apollo-client": "
|
|
18
|
+
"ember-apollo-client": "^5.0.0",
|
|
19
19
|
"ember-auto-import": "^2.10.0",
|
|
20
20
|
"ember-autoresize-modifier": "^0.7.0 || ^0.8.0",
|
|
21
21
|
"ember-basic-dropdown": "^8.4.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"luxon": "^3.5.0",
|
|
42
42
|
"reactiveweb": "^1.3.0",
|
|
43
43
|
"tracked-toolbox": "^2.0.0",
|
|
44
|
-
"@projectcaluma/ember-core": "^14.
|
|
44
|
+
"@projectcaluma/ember-core": "^14.5.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@ember/optional-features": "2.2.0",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"uikit": "3.23.13",
|
|
73
73
|
"uuid": "13.0.0",
|
|
74
74
|
"webpack": "5.101.3",
|
|
75
|
-
"@projectcaluma/ember-
|
|
76
|
-
"@projectcaluma/ember-
|
|
75
|
+
"@projectcaluma/ember-testing": "14.5.1",
|
|
76
|
+
"@projectcaluma/ember-workflow": "14.5.1"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"ember-source": ">= 4.0.0",
|
|
80
|
-
"@projectcaluma/ember-workflow": "^14.
|
|
80
|
+
"@projectcaluma/ember-workflow": "^14.5.1"
|
|
81
81
|
},
|
|
82
82
|
"dependenciesMeta": {
|
|
83
83
|
"@projectcaluma/ember-core": {
|