Skip to content

Commit

Permalink
Merge pull request #889 from onlook-dev/releases/0.1.5
Browse files Browse the repository at this point in the history
Publish version v0.1.5
  • Loading branch information
Kitenite authored Dec 13, 2024
2 parents 963eec7 + 823d6ef commit d14f6e6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion apps/studio/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "Onlook",
"name": "@onlook/studio",
"version": "0.1.4",
"version": "0.1.5",
"homepage": "https://onlook.dev",
"main": "dist-electron/main/index.js",
"description": "The first-ever devtool for designers",
Expand Down
16 changes: 8 additions & 8 deletions apps/studio/src/routes/editor/LayersPanel/Tree/TreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ const TreeNode = observer(
hovered && !selected
? 'text-purple-600 dark:text-purple-200 '
: selected
? 'text-purple-100 dark:text-purple-100'
: 'text-purple-500 dark:text-purple-300',
? 'text-purple-100 dark:text-purple-100'
: 'text-purple-500 dark:text-purple-300',
)}
/>
) : (
Expand Down Expand Up @@ -269,8 +269,8 @@ const TreeNode = observer(
? selected
? 'text-purple-100 dark:text-purple-100'
: hovered
? 'text-purple-600 dark:text-purple-200'
: 'text-purple-500 dark:text-purple-300'
? 'text-purple-600 dark:text-purple-200'
: 'text-purple-500 dark:text-purple-300'
: '',
!node.data.isVisible && 'opacity-80',
selected && 'mr-5',
Expand All @@ -279,10 +279,10 @@ const TreeNode = observer(
{component
? component
: ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'p'].includes(
node.data.tagName.toLowerCase(),
)
? ''
: node.data.tagName.toLowerCase()}
node.data.tagName.toLowerCase(),
)
? ''
: node.data.tagName.toLowerCase()}
{' ' + node.data.textContent}
</span>
{selected && (
Expand Down
6 changes: 3 additions & 3 deletions packages/foundation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

A shared utility package for Onlook. Includes file system functionalities used in both the Onlook app and the CLI

- [x] Create new project
- [x] Setup existing project
- [x] Verify Onlook installation
- [x] Create new project
- [x] Setup existing project
- [x] Verify Onlook installation

0 comments on commit d14f6e6

Please sign in to comment.