Skip to content

Refactor/0.3.0 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
90ba7c1
chore: moving the authorization here
jarrodek Sep 23, 2021
262fa46
test: staring tests
jarrodek Sep 23, 2021
eacd539
chore: updating tests
jarrodek Sep 23, 2021
20d34d0
test: finalizing tests for authorization
jarrodek Sep 24, 2021
ac15383
refactor: moving all HTML elements to src/element
jarrodek Sep 24, 2021
818d7fd
feat: adding new body editor
jarrodek Sep 24, 2021
bd21dbf
refactor: removing headers and paramerer editors
jarrodek Sep 24, 2021
d778b23
chore: adding new parameter editors
jarrodek Sep 25, 2021
a6dd963
chore: adding query
jarrodek Sep 25, 2021
3a0a228
chore: finalizing the request editor
jarrodek Sep 25, 2021
e5e7e22
chore: finalizing components upgrade
jarrodek Sep 25, 2021
9c92ec3
chore: adding tests from deprecated modules
jarrodek Sep 26, 2021
3d4545f
Merge branch 'main' into refactor/0.3.0
jarrodek Sep 26, 2021
b477c5f
ci: simplifying the CI script
jarrodek Sep 26, 2021
fd0e2ef
chore: publishing beta.1
jarrodek Sep 26, 2021
bebe2eb
feat: adding the resize event
jarrodek Sep 27, 2021
04c6d35
fix: adding uri parameters from an operation
jarrodek Sep 27, 2021
7735ae5
chore: updating dependencies
jarrodek Oct 1, 2021
c70320e
chore: moving test from api-body-editor
jarrodek Oct 1, 2021
721c20d
build: bumping version
jarrodek Oct 1, 2021
b9300e3
feat: adding URL library
jarrodek Oct 2, 2021
534e699
chore: adding version processing to the base URI
jarrodek Oct 2, 2021
558ed47
fix: minor bug fixes
jarrodek Oct 5, 2021
2cb4dd0
chore: adding change and serialize to the panel
jarrodek Oct 5, 2021
b242239
fix: fixing HAR rendering
jarrodek Oct 7, 2021
a1098b4
test: fixing a serialization test
jarrodek Oct 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@ on:
- stage
jobs:
test_linux:
name: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
# os: [ubuntu-18.04, ubuntu-20.04]
runs-on: ${{ matrix.os }}
name: Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down Expand Up @@ -100,4 +95,4 @@ jobs:
prerelease: false
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11 changes: 9 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"cSpell.words": [
"Applian",
"apiredirecturichange",
"apirequest",
"apiresponse",
"apiserverchanged",
"Applian",
"cryptojslib",
"customevent",
"Formdata",
"httpbin",
"jsrsasign",
"microservice",
"pathmodelchange",
"populateannotatedfields",
"querymodelchange",
"redirecturichange",
"requestclearstate",
"securitysettingsinfochanged",
"serverscountchanged"
]
}
}
396 changes: 64 additions & 332 deletions CHANGELOG.md

Large diffs are not rendered by default.

74 changes: 0 additions & 74 deletions CONTRIBUTING.md

This file was deleted.

7 changes: 7 additions & 0 deletions api-authorization-editor.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import Element from './src/elements/ApiAuthorizationEditorElement';

declare global {
interface HTMLElementTagNameMap {
"api-authorization-editor": Element;
}
}
3 changes: 3 additions & 0 deletions api-authorization-editor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Element from './src/elements/ApiAuthorizationEditorElement.js';

window.customElements.define('api-authorization-editor', Element);
7 changes: 7 additions & 0 deletions api-authorization-method.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import Element from './src/elements/ApiAuthorizationMethodElement.js';

declare global {
interface HTMLElementTagNameMap {
"api-authorization-method": Element;
}
}
4 changes: 4 additions & 0 deletions api-authorization-method.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

import Element from './src/elements/ApiAuthorizationMethodElement.js';

window.customElements.define('api-authorization-method', Element);
2 changes: 1 addition & 1 deletion api-request-editor.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ApiRequestEditorElement } from './src/ApiRequestEditorElement';
import { ApiRequestEditorElement } from './src/elements/ApiRequestEditorElement';

declare global {
interface HTMLElementTagNameMap {
Expand Down
2 changes: 1 addition & 1 deletion api-request-editor.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { ApiRequestEditorElement } from './src/ApiRequestEditorElement.js';
import { ApiRequestEditorElement } from './src/elements/ApiRequestEditorElement.js';

window.customElements.define('api-request-editor', ApiRequestEditorElement);
4 changes: 2 additions & 2 deletions api-request-panel.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {ApiRequestPanelElement} from './src/ApiRequestPanelElement';
import Element from './src/elements/ApiRequestPanelElement';

declare global {
interface HTMLElementTagNameMap {
"api-request-panel": ApiRequestPanelElement;
"api-request-panel": Element;
}
}
4 changes: 2 additions & 2 deletions api-request-panel.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { ApiRequestPanelElement } from './src/ApiRequestPanelElement.js';
import Element from './src/elements/ApiRequestPanelElement.js';

window.customElements.define('api-request-panel', ApiRequestPanelElement);
window.customElements.define('api-request-panel', Element);
2 changes: 1 addition & 1 deletion api-response-view.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ApiResponseViewElement } from './src/ApiResponseViewElement.js';
import { ApiResponseViewElement } from './src/elements/ApiResponseViewElement.js';

declare global {
interface HTMLElementTagNameMap {
Expand Down
2 changes: 1 addition & 1 deletion api-response-view.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { ApiResponseViewElement } from './src/ApiResponseViewElement.js';
import { ApiResponseViewElement } from './src/elements/ApiResponseViewElement.js';

window.customElements.define('api-response-view', ApiResponseViewElement);
Loading