Skip to content

Commit

Permalink
Merge branch 'main' of github.com:EOX-A/EOxElements into layercontrol…
Browse files Browse the repository at this point in the history
…/feature/layer-config-implementation
  • Loading branch information
srijitcoder committed Nov 21, 2023
2 parents 97f09fa + ec57dd9 commit 3f28517
Show file tree
Hide file tree
Showing 6 changed files with 414 additions and 263 deletions.
3 changes: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"elements/layercontrol": "0.10.0",
"elements/map": "0.9.0",
"elements/stacinfo": "0.3.0",
"elements/timecontrol": "0.1.0"
"elements/timecontrol": "0.1.0",
"elements/jsonform": "0.1.0"
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ Please find [descriptions, API docs and interactive examples here](https://eox-a
<td><a href="https://eox-a.github.io/EOxElements/index.html?path=/docs/elements-eox-itemfilter--docs">Docs & Examples</a></td>
<td>🟡</td>
</tr>
<tr>
<td><a href="./elements/jsonform/">eox-jsonform</a></td>
<td>Render a form from a JSON schema</td>
<td><a href="https://eox-a.github.io/EOxElements/index.html?path=/docs/elements-eox-jsonform--docs">Docs & Examples</a></td>
<td>⭕️</td>
</tr>
<tr>
<td><a href="./elements/layercontrol/">eox-layercontrol</a></td>
<td>Manage and modify map layers</td>
Expand Down
13 changes: 13 additions & 0 deletions elements/jsonform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## 0.1.0 (2023-11-20)


### Features

* Initial eox-jsonform implementation ([#426](https://github.com/EOX-A/EOxElements/issues/426)) ([638a53c](https://github.com/EOX-A/EOxElements/commit/638a53cba1ae0fc11877eb1259cf802b7efad6ca))


### Miscellaneous Chores

* Add readme ([89b2151](https://github.com/EOX-A/EOxElements/commit/89b2151949727c655c84c4722c924c825c4298ca))
31 changes: 31 additions & 0 deletions elements/jsonform/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Jsonform

## Usage

```
npm install @eox/jsonform
```

```
import "@eox/jsonform"
<eox-jsonform></eox-jsonform>
```

// TODO: add documentation

## Contribute

```
npm watch
(on root) npm run cypress
(on root) npm run format
npm version <new version>
npm run build
npm publish (requires OTP)
```

## Changelog

Created automatically [here](./CHANGELOG.md)
4 changes: 2 additions & 2 deletions elements/jsonform/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@eox/jsonform",
"version": "0.0.0",
"version": "0.1.0",
"type": "module",
"devDependencies": {
"@eox/eslint-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^5.50.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-plugin-typescript": "^0.14.0",
"lit": "^3.0.2",
"typescript": "^5.2.2",
Expand Down
Loading

0 comments on commit 3f28517

Please sign in to comment.