Skip to content

Latest commit

 

History

History
168 lines (118 loc) · 7 KB

CHANGELOG.md

File metadata and controls

168 lines (118 loc) · 7 KB

0.2.0 (Wed Jun 05 2024)

Release Notes

feat: flame-graph (#25)

Adds flame-graph component.

<FlameGraph binding={b`my_binding`} height={100} width={200} />

🚀 Enhancement

🐛 Bug Fix

Authors: 4


0.1.1 (Thu May 02 2024)

🐛 Bug Fix

⚠️ Pushed to main

Authors: 4


0.1.0 (Tue Apr 30 2024)

Release Notes

feat: adds code-editor asset (#17)

Added code-editor asset that can be used to edit JSON content and call an expression on change:

import { CodeEditor } from "@devtools-ui/plugin";

// and use it to define your Player-UI content:
myFlow = {
  id: "my_flow",
  views: [<CodeEditor exp={e`my_expression`} binding={b`my_binding`} />],
};

🚀 Enhancement

🐛 Bug Fix

Authors: 6


0.0.2 (Wed Apr 10 2024)

Release Notes

feat: adds copy-to-clipboard asset (#13)

Adds CopyToClipboard asset.

Console, Table and Stacked View (#9)

Adds console, table and stacked view.

const console = <Console exp={e`my_expression`} binding={b`my_binding`} />
const table = <Table binding={b`my_binding`} />
const stacked-view = (
    <StackedView>
      <StackedView.Header>
        <Text>Header</Text>
      </StackedView.Header>
      <StackedView.Main>
        <Text>Main</Text>
      </StackedView.Main>
      <StackedView.Footer>
        <Text>Footer</Text>
      </StackedView.Footer>
    </StackedView>
)

🐛 Bug Fix

⚠️ Pushed to main

Authors: 6