Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Jan 8, 2024
1 parent eb14d72 commit 3e98cbd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
7 changes: 1 addition & 6 deletions src/core/decorators/component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,4 @@ In the above example, the `UIData` component sets its status to `ready` manually
The `onReady` hook is then triggered, displaying an alert message.
You can interact with and explore the code examples in this [CodeSandbox](https://codesandbox.io/s/decorators-u2h0os?fontsize=14&hidenavigation=1&theme=dark)

<iframe src="https://codesandbox.io/embed/decorators-u2h0os?fontsize=14&hidenavigation=1&theme=dark"
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
title="Decorators"
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
/>
https://codesandbox.io/embed/decorators-u2h0os?fontsize=14&hidenavigation=1&theme=dark
7 changes: 7 additions & 0 deletions src/core/selection/style/commit-style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,19 @@ import { camelCase } from 'jodit/core/helpers/string/camel-case';

import { ApplyStyle } from './apply-style';

/** @internal */
export const WRAP = 'wrap';
/** @internal */
export const UNWRAP = 'unwrap';
/** @internal */
export const CHANGE = 'change';
/** @internal */
export const UNSET = 'unset';
/** @internal */
export const INITIAL = 'initial';
/** @internal */
export const REPLACE = 'replace';
/** @internal */
export const _PREFIX = 'commitStyle';

export class CommitStyle implements ICommitStyle {
Expand Down
4 changes: 1 addition & 3 deletions src/modules/status-bar/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Status bar module

## Description
# Status bar

This module provides a status bar for the application.
Allowing to display a message to the user or additional information about the editor.
Expand Down

0 comments on commit 3e98cbd

Please sign in to comment.