-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* working on bubble menu and styling fixes * normalize fixes * prettier * bubble menu docs * add bubble menu * add docs for bubble menu * working on bubble menu docs * working on toolbar * fix styles, fix input issue * working on direct uploads * fix bubble menu styles * up version matrix * add events * fixes for aria-pressed buttons * fix docs for events * prettier * update tests * get everything setup * upgrade vite * fix testS * fixing tests * fixing tests
- Loading branch information
1 parent
b0b4f72
commit 7de4762
Showing
55 changed files
with
4,684 additions
and
1,240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": patch | ||
--- | ||
|
||
Feature: Added the `rhino-update` event for tracking updates to the editor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": minor | ||
--- | ||
|
||
Added `rhinoBubbleMenu` to the default list of extensions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": minor | ||
--- | ||
|
||
Feature: Added some CSS fallbacks for dark color schemes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": minor | ||
--- | ||
|
||
Feature: added events for direct upload in the form of `rhino-direct-upload:*`, you can read more in the editor events section. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": patch | ||
--- | ||
|
||
Fixed a bug where rhino editor would not find inputs if loaded in the shadow dom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": minor | ||
--- | ||
|
||
Feature: added the `rhino-update` event. Useful for tracking when the component has updated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nodejs 20.9.0 | ||
ruby 3.0.4 | ||
ruby 3.3.4 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@import "./overrides/bridgetown-ninja-keys.css"; | ||
@import "./overrides/rhino-editor.css"; | ||
@import "./overrides/shoelace.css"; | ||
@import "./overrides/light-pen.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
light-preview { | ||
} | ||
light-preview::before { | ||
content: "Preview"; | ||
background: var(--sl-color-neutral-600); | ||
border: 1px solid var(--sl-color-neutral-700); | ||
border-bottom: none; | ||
color: var(--sl-color-neutral-0); | ||
padding: 4px; | ||
padding-inline-start: 16px; | ||
display: block; | ||
} | ||
|
||
light-preview { | ||
display: grid; | ||
align-items: start; | ||
} | ||
|
||
light-preview::part(base) { | ||
border-radius: 0px; | ||
} |
Oops, something went wrong.