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

Main -> Latest #110

Merged
merged 5 commits into from
Sep 11, 2023
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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.8.0

### Minor Changes

- a315ebe: BREAKING_CHANGE: CSS parts have changed slightly to create a more consistent naming conventions. `toolbar-tooltip` has been renamed to `toolbar__tooltip` along with other parts being slightly modified. `link-dialog__add-link` changed to
`link-dialog__link`.
- a315ebe: - BREAKING_CHANGE: `handleFiles` now no longer automatically chains events. Instead now it returns the attachmentManagers to be chained.

### Patch Changes

- a315ebe: - The editor no longer inserts `<p>` tags above and below an attachment
- `<figure>` now has a default margin of `0.6em 0` to align with Trix.
- Updated to role-components v2.0.1
- Added docs on styling the border of the toolbar
- a315ebe: - Fixed CSS for attachment galleries
- a315ebe: - Added the ability to press the "Enter" key inside a `<figcaption>` and end up on the next line.
- a315ebe: - Fixed a bug with dropcursor not showing
- 6190d0b: Dependencies: update role-component to v2.0.0
- a315ebe: - Fixed a bug where pressing backspace inside a `<figcaption>` or a Gallery would cause the attachment to no longer be in the gallery

## 0.7.1

### Patch Changes
Expand Down
5 changes: 1 addition & 4 deletions docs/frontend/javascript/entrypoints/syntax-highlighting.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,4 @@ function extendRhinoEditor (event) {
rhinoEditor.rebuildEditor()
}

// Because this script is lazy loaded in the docs, we miss out on the `rhino-before-initialize` event.
// In your app you should be able to do:
// document.addEventListener("rhino-before-initialize", extendRhinoEditor)
document.addEventListener("rhino-initialize", extendRhinoEditor)
document.addEventListener("rhino-before-initialize", extendRhinoEditor)
1 change: 1 addition & 0 deletions docs/frontend/styles/_components.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@import "./components/_hero.css";
@import "./components/_input.css";
@import "./components/_layout.css";
@import "./components/_list.css";
@import "./components/_link.css";
@import "./components/_logo.css";
@import "./components/_main_list.css";
Expand Down
3 changes: 3 additions & 0 deletions docs/frontend/styles/components/_list.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ul.list li {
line-height: 2.5;
}
4 changes: 4 additions & 0 deletions docs/frontend/styles/components/_side_nav.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.side-nav ul {
list-style-type: " ";
}

.side-nav__menu {
margin: 0;
padding-inline-start: 0;
Expand Down
1 change: 0 additions & 1 deletion docs/frontend/styles/components/_table_of_contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
}

.table-of-contents__list a {
color: var(--sl-color-neutral-500);
text-decoration: none;
}

Expand Down
64 changes: 64 additions & 0 deletions docs/frontend/styles/overrides/rhino-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,68 @@
position: relative;
margin: 1rem 0rem;
}
/* Rhino Editor */

.sl-theme-dark .rhino-editor,
.sl-theme-dark .trix-content {
--rhino-button-color: var(--sl-color-neutral-700);
--rhino-button-disabled-text-color: var(--sl-color-neutral-300);
--rhino-toolbar-text-color: var(--sl-color-neutral-700);
--rhino-button-active-border-color: var(--sl-color-primary-700);
--rhino-button-active-background-color: var(--sl-color-primary-200);
color: white;
}


.sl-theme-dark .rhino-editor::part(toolbar__button):is(:focus, :hover) {
color: black;
}

.sl-theme-dark .rhino-editor::part(toolbar__button toolbar__button--active):is(:focus, :hover) {
color: white;
}


.sl-theme-dark .rhino-editor::part(toolbar__button--active) {
color: var(--sl-color-primary-800);
}

.sl-theme-dark .rhino-editor::part(toolbar__button toolbar__button--disabled):is(:focus, :hover) {
color: var(--sl-color-neutral-300);
}

.sl-theme-dark .rhino-editor::part(link-dialog__container) {
background-color: black;
border: 1px solid white;
box-shadow: none;
}

.sl-theme-dark .rhino-editor::part(link-dialog__input--invalid) {
color: var(--sl-color-red-200);
}

.sl-theme-dark .rhino-editor::part(tooltip-base) {
border: 1px solid white;
}

.sl-theme-dark .rhino-editor::part(tooltip-arrow) {
border-right: 1px solid white;
border-bottom: 1px solid white;
}

.sl-theme-dark .trix-content .attachment--preview .attachment__caption {
color: var(--sl-color-neutral-700);
}

.sl-theme-dark rhino-attachment-editor::part(delete-button) {
color: black;
}

.sl-theme-dark .trix-content pre {
color: black;
}

.sl-theme-dark .trix-content blockquote {
color: var(--sl-color-neutral-700);
}

6 changes: 6 additions & 0 deletions docs/frontend/styles/overrides/shoelace.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
display: none;
}

/** Bypass a11y checker. */
sl-visually-hidden {
background-color: var(--sl-color-neutral-0);
background-color: var(--sl-color-neutral-1000);
}

2 changes: 2 additions & 0 deletions docs/frontend/styles/tokens/_colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ html.sl-theme-dark {
--light-text-color: var(--sl-color-neutral-700);
--body-color: var(--sl-color-neutral-0);

--logo-color: var(--sl-color-neutral-1000);

--input-border-color: var(--divider-color);
--input-bg-color: var(--sl-color-neutral-0);
--input-transition: 100ms box-shadow ease-in-out;
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@hotwired/turbo": "^7.3.0",
"@konnorr/bridgetown-quick-search": "^3.7.4",
"@shoelace-style/shoelace": "^2.7.0",
"@tiptap/extension-character-count": "^2.1.7",
"@tiptap/extension-code-block-lowlight": "^2.1.7",
"@tiptap/extension-character-count": "2.1.7",
"@tiptap/extension-code-block-lowlight": "2.1.7",
"linkifyjs": "^4.1.1",
"lowlight": "^2.9.0",
"prosemirror-view": "1.28.2",
Expand Down
77 changes: 40 additions & 37 deletions docs/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading