Skip to content
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

Publish version v0.1.5 #889

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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