Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed Jun 10, 2024
2 parents 97fc2e4 + 606a933 commit 24e20a9
Show file tree
Hide file tree
Showing 22 changed files with 629 additions and 202 deletions.
5 changes: 0 additions & 5 deletions .changeset/few-parrots-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/giant-bulldogs-pretend.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/odd-rules-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-donuts-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-jobs-do.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-hounds-occur.md

This file was deleted.

6 changes: 0 additions & 6 deletions .github/workflows/issues-prs-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
name: Notify slack on every new issue
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Convert markdown to slack markdown for issue
uses: asyncapi/.github/.github/actions/slackify-markdown@master
id: issuemarkdown
Expand All @@ -40,8 +38,6 @@ jobs:
name: Notify slack on every new pull request
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Convert markdown to slack markdown for pull request
uses: asyncapi/.github/.github/actions/slackify-markdown@master
id: prmarkdown
Expand All @@ -60,8 +56,6 @@ jobs:
name: Notify slack on every new pull request
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Convert markdown to slack markdown for pull request
uses: asyncapi/.github/.github/actions/slackify-markdown@master
id: discussionmarkdown
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# This action is centrally managed in https://github.com/asyncapi/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo

# It does magic only if there is package.json file in the root of the project
name: Release

on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,4 +282,39 @@ export const NesteadArray = () => (
/>
);

export const Blank_schema = () => (
<Template
initialSchema={JSON.stringify(
{}, null, 2)}
/>
);

export const Root_string = () => (
<Template
initialSchema={JSON.stringify(
{
"type": "string"
}, null, 2)}
/>
);

export const Multiple_data_types = () => (
<Template
initialSchema={JSON.stringify(
{
type: "object",
properties: {
mixedTypeProperty: {
type: ["boolean", "integer"],
},
},
required: ["mixedTypeProperty"],
},
null,
2
)}
/>
);


export default VisualEditorStory
7 changes: 7 additions & 0 deletions apps/studio-next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# studio-next

## 0.1.1

### Patch Changes

- a4b7fd1: Use Next.js framework
2 changes: 1 addition & 1 deletion apps/studio-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studio-next",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
Expand Down
23 changes: 23 additions & 0 deletions apps/studio-next/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
import dynamic from 'next/dynamic';
const StudioWrapper = dynamic(() => import('@/components/StudioWrapper'), {ssr: false})
import { Metadata } from 'next';
import ogImage from '@/img/meta-studio-og-image.jpeg';

export const metadata: Metadata = {
metadataBase: new URL('https://studio-next.netlify.app'),
openGraph: {
type: 'website',
title: 'AsyncAPI Studio',
description: 'Studio for AsyncAPI specification, where you can validate, view preview documentation, and generate templates from AsyncAPI document.',
url: 'https://studio-next.netlify.app',
images: [
{
url: ogImage.src,
width: 800,
height: 600,
alt: 'AsyncAPI default image',
},
]
},
twitter: {
site: '@AsyncAPISpec',
}
}
export default async function Home() {
return (
<StudioWrapper />
Expand Down
2 changes: 1 addition & 1 deletion apps/studio-next/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": ["./src/*", "./public/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down
9 changes: 9 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @asyncapi/studio-ui

## 0.4.0

### Minor Changes

- 2c0ab6c: Add Form component.
- 2c0ab6c: Added TextArea component.
- 2c0ab6c: Add Dropdown component.
- 2c0ab6c: Add TextInput component.

## 0.3.0

### Minor Changes
Expand Down
Loading

0 comments on commit 24e20a9

Please sign in to comment.