@worktile/theia 2.1.6 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/worktile-theia.umd.js +183 -179
- package/bundles/worktile-theia.umd.js.map +1 -1
- package/editor.component.d.ts +3 -2
- package/esm2015/components/color-select/color-select.component.js +4 -4
- package/esm2015/components/column-resize/column-resize-notifier.js +4 -4
- package/esm2015/components/column-resize/column-resize.directive.js +4 -4
- package/esm2015/components/column-resize/column-resize.module.js +9 -9
- package/esm2015/components/column-resize/event-dispatcher.js +4 -4
- package/esm2015/components/column-resize/overlay-handle.component.js +4 -4
- package/esm2015/components/column-resize/resizing.store.js +4 -4
- package/esm2015/components/contextmenu/contextmenu.component.js +4 -4
- package/esm2015/components/conversion-hint/conversion-hint.component.js +4 -4
- package/esm2015/components/element/element.component.js +4 -4
- package/esm2015/components/inline-toolbar/inline-toolbar.component.js +4 -4
- package/esm2015/components/nav-split-line/nav-split-line.component.js +4 -4
- package/esm2015/components/table-select/table-select.component.js +4 -4
- package/esm2015/components/template/template.component.js +4 -4
- package/esm2015/components/text/text.component.js +4 -4
- package/esm2015/components/toolbar/toolbar.component.js +4 -4
- package/esm2015/components/toolbar-base-item/toolbar-base-item.component.js +4 -4
- package/esm2015/components/toolbar-dropdown/toolbar-dropdown.component.js +4 -4
- package/esm2015/components/toolbar-group/toolbar-group.component.js +4 -4
- package/esm2015/components/toolbar-item/toolbar-item.component.js +4 -4
- package/esm2015/constants/toolbar.js +1 -4
- package/esm2015/editor.component.js +8 -6
- package/esm2015/editor.module.js +5 -5
- package/esm2015/interfaces/view-base.js +4 -4
- package/esm2015/pipes.js +7 -7
- package/esm2015/plugins/blockquote/blockquote.component.js +4 -4
- package/esm2015/plugins/code/code.component.js +4 -4
- package/esm2015/plugins/color/toolbar-item.component.js +4 -4
- package/esm2015/plugins/hr/hr.component.js +4 -4
- package/esm2015/plugins/image/image.component.js +4 -4
- package/esm2015/plugins/inline-code/inline-code.component.js +4 -4
- package/esm2015/plugins/link/edit/link-edit.component.js +4 -4
- package/esm2015/plugins/link/hover/link-hover.component.js +4 -4
- package/esm2015/plugins/link/link.component.js +10 -10
- package/esm2015/plugins/list/components/bulleted-list.component.js +4 -4
- package/esm2015/plugins/list/components/list-item.component.js +4 -4
- package/esm2015/plugins/list/components/numbered-list.component.js +4 -4
- package/esm2015/plugins/quick-insert/components/quick-insert.component.js +12 -5
- package/esm2015/plugins/quick-insert/components/quick-toolbar/quick-toolbar.component.js +4 -4
- package/esm2015/plugins/table/components/insert-mark/insert-mark.component.js +4 -4
- package/esm2015/plugins/table/components/row/row.component.js +4 -4
- package/esm2015/plugins/table/components/table.component.js +4 -4
- package/esm2015/plugins/table/components/td/td.component.js +4 -4
- package/esm2015/plugins/table/components/toolbar/table-toolbar.component.js +4 -4
- package/esm2015/plugins/table/table.service.js +4 -4
- package/esm2015/plugins/table/table.store.js +4 -4
- package/esm2015/plugins/table/toolbar-item.component.js +4 -4
- package/esm2015/plugins/table/transforms/insert-table.js +2 -2
- package/esm2015/plugins/todo-item/todo-item.component.js +4 -4
- package/esm2015/plugins/vertical-align/toolbar-item.component.js +4 -4
- package/esm2015/services/color-select.service.js +4 -4
- package/esm2015/services/context.service.js +4 -4
- package/esm2015/services/table-contextmenu.service.js +4 -4
- package/esm2015/services/toolbar.service.js +4 -4
- package/fesm2015/worktile-theia.js +182 -178
- package/fesm2015/worktile-theia.js.map +1 -1
- package/package.json +1 -1
- package/plugins/quick-insert/components/quick-insert.component.d.ts +1 -0
- package/plugins/table/transforms/insert-table.d.ts +1 -1
- package/styles/typo.scss +4 -1
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ export declare class TheQuickInsertComponent {
|
|
|
17
17
|
handleMousedownNativeElement(event: any): void;
|
|
18
18
|
constructor(renderer: Renderer2, elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
19
19
|
checkStatus(): void;
|
|
20
|
+
private hasExcludeAttribute;
|
|
20
21
|
private updatePosition;
|
|
21
22
|
mouseEnter(event: MouseEvent): void;
|
|
22
23
|
mouseLeave(event: MouseEvent): void;
|
|
@@ -3,4 +3,4 @@ import { TableOptions } from '../table.types';
|
|
|
3
3
|
/**
|
|
4
4
|
* Insert a new table
|
|
5
5
|
*/
|
|
6
|
-
export declare function insertTable(opts: TableOptions, editor: Editor,
|
|
6
|
+
export declare function insertTable(opts: TableOptions, editor: Editor, rows?: number, columns?: number, getCellContent?: (column: number, row: number) => Node[]): void;
|
package/styles/typo.scss
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use 'sass:math';
|
|
2
|
+
|
|
2
3
|
$default-text-space: 10px; // text white space 18(distance between paragrahp) - 8(block margin)
|
|
3
4
|
$headline-one-size: 28px;
|
|
4
5
|
$headline-two-size: 24px;
|
|
@@ -17,11 +18,13 @@ $block-line-heith: 24px;
|
|
|
17
18
|
$nav-item-margin: 5px;
|
|
18
19
|
$selection-background: rgba($color: $primary, $alpha: 0.3);
|
|
19
20
|
$font-size-line-height: 1.5;
|
|
21
|
+
|
|
20
22
|
.the-editor-typo {
|
|
21
23
|
font-size: $the-font-size-base;
|
|
22
|
-
min-height:
|
|
24
|
+
min-height: 250px;
|
|
23
25
|
padding: 28px 30px;
|
|
24
26
|
word-break: break-all;
|
|
27
|
+
|
|
25
28
|
h1,
|
|
26
29
|
h2,
|
|
27
30
|
h3,
|