@talrace/ngx-noder 0.0.45 → 0.0.47

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.
Files changed (61) hide show
  1. package/assets/i18n/noder.en.json +12 -0
  2. package/assets/i18n/noder.es.json +12 -0
  3. package/assets/i18n/noder.ru.json +12 -0
  4. package/fesm2022/talrace-ngx-noder.mjs +1333 -299
  5. package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
  6. package/lib/apart-components/editor-ruler/editor-ruler.component.d.ts +2 -1
  7. package/lib/apart-components/editor-toolbar/components/base-toolbar.component.d.ts +6 -1
  8. package/lib/apart-components/editor-toolbar/components/buttons/table-border-style/table-border-style.component.d.ts +11 -0
  9. package/lib/apart-components/editor-toolbar/components/buttons/table-border-width/table-border-width.component.d.ts +10 -0
  10. package/lib/apart-components/editor-toolbar/components/buttons/table-borders/table-borders.component.d.ts +11 -0
  11. package/lib/apart-components/editor-toolbar/editor-toolbar/editor-toolbar.component.d.ts +6 -1
  12. package/lib/apart-components/editor-toolbar/editor-toolbar.module.d.ts +6 -3
  13. package/lib/editor/components/editor.component.d.ts +4 -1
  14. package/lib/editor/components/shared/enums/borders.enum.d.ts +10 -0
  15. package/lib/editor/components/table/selection/table-selection.d.ts +1 -0
  16. package/lib/editor/content/display-data/display-data.d.ts +7 -0
  17. package/lib/editor/content/display-data/display-token.model.d.ts +2 -0
  18. package/lib/editor/content/display-data/line-info.model.d.ts +2 -0
  19. package/lib/editor/content/display-data/models/paragraph-info-added.model.d.ts +5 -0
  20. package/lib/editor/content/display-data/models/paragraph-info-content-changed.model.d.ts +7 -0
  21. package/lib/editor/content/display-data/models/paragraph-info-content-inserted.model.d.ts +7 -0
  22. package/lib/editor/content/display-data/models/paragraph-info.model.d.ts +1 -0
  23. package/lib/editor/content/display-data/models/paragraphs-infos-removed.model.d.ts +4 -0
  24. package/lib/editor/content/display-data/text-line-info.d.ts +2 -0
  25. package/lib/editor/display/layers/grammar-highlight.layer.d.ts +12 -0
  26. package/lib/editor/display/render-changes.interface.d.ts +1 -0
  27. package/lib/editor/display/render-changes.model.d.ts +1 -0
  28. package/lib/editor/display/renderer.d.ts +13 -0
  29. package/lib/editor/display/virtual.renderer.d.ts +8 -0
  30. package/lib/editor/execution/edit.session.d.ts +5 -1
  31. package/lib/editor/execution/editor.d.ts +17 -1
  32. package/lib/editor/execution/regulator.service.d.ts +5 -1
  33. package/lib/editor/execution/targeting/cell-session-source.model.d.ts +2 -2
  34. package/lib/editor/gadgets/grammar/grammar-checker.d.ts +25 -0
  35. package/lib/editor/gadgets/grammar/grammar-popup/grammar-popup.component.d.ts +16 -0
  36. package/lib/editor/gadgets/grammar/grammar.const.d.ts +1 -0
  37. package/lib/editor/gadgets/grammar/grammar.service.d.ts +31 -0
  38. package/lib/editor/gadgets/history/operation-history.d.ts +3 -0
  39. package/lib/editor/gadgets/history/operation.type.d.ts +2 -1
  40. package/lib/editor/interaction/editor.service.d.ts +35 -2
  41. package/lib/editor/operations/enums/command-type.enum.d.ts +2 -1
  42. package/lib/editor/operations/helpers/table-operations.helper.d.ts +13 -0
  43. package/lib/editor/operations/operations-helper.helper.d.ts +2 -0
  44. package/lib/editor/operations/save-commands.helper.d.ts +2 -0
  45. package/lib/editor/revision.helper.d.ts +1 -2
  46. package/lib/models/generated/apply-table-cells-styles.model.d.ts +6 -0
  47. package/lib/models/generated/cell-data.model.d.ts +7 -0
  48. package/lib/models/generated/command.model.d.ts +2 -0
  49. package/lib/models/generated/grammar-error.d.ts +9 -0
  50. package/package.json +1 -1
  51. package/public-api.d.ts +1 -0
  52. package/src/_ngx-noder.theme.scss +7 -1
  53. package/src/assets/fonts/nc-iconfont.eot +0 -0
  54. package/src/assets/fonts/nc-iconfont.scss +35 -2
  55. package/src/assets/fonts/nc-iconfont.svg +13 -2
  56. package/src/assets/fonts/nc-iconfont.ttf +0 -0
  57. package/src/assets/fonts/nc-iconfont.woff +0 -0
  58. package/src/lib/apart-components/editor-ruler/_theme.scss +4 -0
  59. package/src/lib/editor/components/_editor.theme.scss +4 -0
  60. package/src/lib/editor/gadgets/grammar/grammar-popup/_theme.scss +26 -0
  61. package/src/scss/base-editor.scss +14 -10
@@ -0,0 +1,31 @@
1
+ import { GrammarError } from '../../../models/generated/grammar-error';
2
+ import { ParagraphInfoModel } from '../../../editor/content/display-data/models/paragraph-info.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class GrammarService {
5
+ private readonly debounceTime;
6
+ private readonly maxConcurrentRequests;
7
+ private readonly paragraphSubjects;
8
+ private readonly debounceSubscriptions;
9
+ private readonly grammarCheckRequests;
10
+ get grammarCheckRequests$(): import("rxjs").Observable<{
11
+ id: string;
12
+ paragraph: string;
13
+ }>;
14
+ private readonly grammarCheckResults;
15
+ get grammarCheckResults$(): import("rxjs").Observable<{
16
+ paragraphId: string;
17
+ errors: GrammarError[];
18
+ }>;
19
+ private requestQueue;
20
+ private requestsInFlight;
21
+ updateParagraphContent(sessionId: number, paragraph: ParagraphInfoModel): void;
22
+ removeParagraph(sessionId: number, paragraphId: number): void;
23
+ publishGrammarCheckResults(paragraphId: string, errors: GrammarError[]): void;
24
+ enqueueParagraphs(sessionId: number, paragraphs: ParagraphInfoModel[]): void;
25
+ destroy(): void;
26
+ private registerParagraph;
27
+ private enqueueGrammarCheck;
28
+ private processQueue;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<GrammarService, never>;
30
+ static ɵprov: i0.ɵɵInjectableDeclaration<GrammarService>;
31
+ }
@@ -1,4 +1,5 @@
1
1
  import { ApplyDocumentPageFormatModel } from '../../../models/generated/apply-document-page-format.model';
2
+ import { ApplyTableCellsStylesModel } from '../../../models/generated/apply-table-cells-styles.model';
2
3
  import { CursorParagraph } from '../../../editor/positioning/cursor-paragraph';
3
4
  import { EditorService } from '../../../editor/interaction/editor.service';
4
5
  import { FormatModel } from '../../../models/generated/format.model';
@@ -27,6 +28,7 @@ import { ResizeTableColumnsModel } from '../../../models/generated/resize-table-
27
28
  import { RestoreModel } from '../../../models/generated/restore.model';
28
29
  import { RestorePageFormatsModel } from '../../../models/generated/restore-page-formats.model';
29
30
  import { RestoreWithParagraphModel } from '../../../models/generated/restore-with-paragraph.model';
31
+ import { TableModel } from '../../../models/generated/table.model';
30
32
  import { TargetModel } from '../../../models/generated/target.model';
31
33
  import { TextStyleModel } from '../../../models/generated/text-style.model';
32
34
  export declare class OperationHistory {
@@ -43,6 +45,7 @@ export declare class OperationHistory {
43
45
  pushInsertImage(model: InsertImageModel): void;
44
46
  pushInsertLink(model: InsertLinkModel): void;
45
47
  pushInsertTable(model: InsertTableModel): void;
48
+ pushApplyTableCellsStyles(currentTable: TableModel, model: ApplyTableCellsStylesModel, targets: TargetModel[]): void;
46
49
  pushInsertStyledText(insertIndex: number, text: string, style: TextStyleModel): void;
47
50
  pushDelete(model: RestoreModel): void;
48
51
  pushApplyTextStyle(startIndex: number, endIndex: number, style: TextStyleModel, formats: FormatModel[], linkFormats: FormatModel[]): void;
@@ -3,6 +3,7 @@ import { ApplyDocumentPageFormatModel } from '../../../models/generated/apply-do
3
3
  import { ApplyImageStyleModel } from '../../../models/generated/apply-image-style.model';
4
4
  import { ApplyPageFormatModel } from '../../../models/generated/apply-page-format.model';
5
5
  import { ApplyParagraphsModel } from '../../../models/generated/apply-paragraphs.model';
6
+ import { ApplyTableCellsStylesModel } from '../../../models/generated/apply-table-cells-styles.model';
6
7
  import { ApplyTextStyleModel } from '../../../models/generated/apply-text-style.model';
7
8
  import { CreateEdgesModel } from '../../../models/generated/create-edges.model';
8
9
  import { DeleteModel } from '../../../models/generated/delete.model';
@@ -32,4 +33,4 @@ import { RestorePageFormatsModel } from '../../../models/generated/restore-page-
32
33
  import { RestoreParagraphStylesModel } from '../../../models/generated/restore-paragraph-styles.model';
33
34
  import { RestoreTextStylesModel } from '../../../models/generated/restore-text-styles.model';
34
35
  import { RestoreWithParagraphModel } from '../../../models/generated/restore-with-paragraph.model';
35
- export type Operation = InsertTextModel | DeleteModel | InsertStyledTextModel | RestoreModel | ApplyTextStyleModel | RestoreTextStylesModel | RestoreParagraphStylesModel | InsertElementModel | InsertBreakModel | ApplyImageStyleModel | AddNumberingModel | RestoreNumberingsModel | InsertTabModel | InsertTableColumnsModel | InsertTableRowsModel | RemoveTableColumnsModel | RemoveTableRowsModel | ResizeTableColumnsModel | InsertTableModel | InsertImageModel | RemoveNumberingsModel | ReplaceModel | MoveRangeModel | CreateEdgesModel | RemoveEdgesModel | RemoveWithParagraphModel | RestoreWithParagraphModel | ApplyDocumentPageFormatModel | InsertPageFormatModel | ApplyPageFormatModel | RemoveInsertedPageFormatModel | RestorePageFormatsModel | ApplyParagraphsModel | ReplaceByRestoreModel;
36
+ export type Operation = InsertTextModel | DeleteModel | InsertStyledTextModel | RestoreModel | ApplyTextStyleModel | RestoreTextStylesModel | RestoreParagraphStylesModel | InsertElementModel | InsertBreakModel | ApplyImageStyleModel | AddNumberingModel | RestoreNumberingsModel | InsertTabModel | InsertTableColumnsModel | InsertTableRowsModel | RemoveTableColumnsModel | RemoveTableRowsModel | ResizeTableColumnsModel | InsertTableModel | InsertImageModel | RemoveNumberingsModel | ReplaceModel | MoveRangeModel | CreateEdgesModel | RemoveEdgesModel | RemoveWithParagraphModel | RestoreWithParagraphModel | ApplyDocumentPageFormatModel | InsertPageFormatModel | ApplyPageFormatModel | RemoveInsertedPageFormatModel | RestorePageFormatsModel | ApplyParagraphsModel | ReplaceByRestoreModel | ApplyTableCellsStylesModel;
@@ -6,10 +6,12 @@ import { EdgeType } from '../components/edges/edge-type.enum';
6
6
  import { ElementDataModel } from '../components/external-element/models/element-data.model';
7
7
  import { ElementModel } from '../../models/generated/element.model';
8
8
  import { ExternalSidenavInterface } from '../components/external-element/external-sidenav.interface';
9
+ import { GrammarError } from '../../models/generated/grammar-error';
9
10
  import { ImageDataModel } from '../../models/generated/image-data.model';
10
11
  import { ImageModel } from '../../models/generated/image.model';
11
12
  import { IToolbarStyles } from '../content/display-data/toolbar-styles.interface';
12
13
  import { NumberingLevelModel } from '../../models/generated/numbering-level.model';
14
+ import { NumberingModel } from '../../models/generated/numbering.model';
13
15
  import { OperationsHistoryInfoModel } from '../../editor/gadgets/history/operations-history-info.model';
14
16
  import { PageFormatModel } from '../../models/generated/page-format.model';
15
17
  import { PageType } from '../components/edges/page-type.enum';
@@ -17,6 +19,8 @@ import { ParagraphStyleModel } from '../../models/generated/paragraph-style.mode
17
19
  import { ResizeTableColumnsModel } from '../../models/generated/resize-table-columns.model';
18
20
  import { TabSettingModel } from '../../models/generated/tab-setting.model';
19
21
  import { TextStyleModel } from '../../models/generated/text-style.model';
22
+ import { LineStyles } from '../components/shared/enums/line-styles.enum';
23
+ import { Borders } from '../components/shared/enums/borders.enum';
20
24
  import * as i0 from "@angular/core";
21
25
  export declare class EditorService {
22
26
  set styles(value: IToolbarStyles);
@@ -43,6 +47,16 @@ export declare class EditorService {
43
47
  data?: object;
44
48
  }>;
45
49
  private readonly _toggleSidenav$;
50
+ get displayGrammarError$(): Observable<GrammarError>;
51
+ private readonly _displayGrammarError$;
52
+ get applyGrammarSuggestion$(): Observable<{
53
+ error: GrammarError;
54
+ suggestionIndex: number;
55
+ paragraphIndex: number;
56
+ }>;
57
+ private readonly _applyGrammarSuggestion$;
58
+ get ignoreGrammarError$(): Observable<GrammarError>;
59
+ private readonly _ignoreGrammarError$;
46
60
  get displaySearchBar$(): Observable<boolean>;
47
61
  private readonly _displaySearchBar$;
48
62
  get searchTerm$(): Observable<string>;
@@ -152,6 +166,15 @@ export declare class EditorService {
152
166
  columns: number;
153
167
  }>;
154
168
  private readonly _insertTable$;
169
+ get updateTableBorderStyle$(): Observable<LineStyles>;
170
+ private readonly _updateTableBorderStyle$;
171
+ get updateTableBorderWidth$(): Observable<number>;
172
+ private readonly _updateTableBorderWidth$;
173
+ get updateTableBorders$(): Observable<Borders>;
174
+ private readonly _updateTableBorders$;
175
+ get isTableSelected(): boolean;
176
+ get isTableSelected$(): Observable<boolean>;
177
+ private readonly _isTableSelected$;
155
178
  get redo$(): Observable<void>;
156
179
  private readonly _redo$;
157
180
  get undo$(): Observable<void>;
@@ -205,13 +228,16 @@ export declare class EditorService {
205
228
  private readonly _tabSettings$;
206
229
  get rightIndentParagraph$(): Observable<number>;
207
230
  private readonly _rightIndentParagraph$;
208
- get paragraphStyle$(): Observable<ParagraphStyleModel>;
231
+ get paragraphStyle$(): Observable<{
232
+ paragraphStyle: ParagraphStyleModel;
233
+ numberingModel: NumberingModel | null;
234
+ }>;
209
235
  private readonly _paragraphStyle$;
210
236
  tabSettings(value: TabSettingModel[]): void;
211
237
  applyFirstLinePosition(value: number): void;
212
238
  applyLeftIndentParagraph(value: number): void;
213
239
  applyRightIndentParagraph(value: number): void;
214
- paragraphStyle(value: ParagraphStyleModel): void;
240
+ paragraphStyle(value: ParagraphStyleModel, numbering?: NumberingModel | null): void;
215
241
  applyRightMarginPageFormat(value: number): void;
216
242
  applyLeftMarginPageFormat(value: number): void;
217
243
  applyDocumentPageFormat(value: PageFormatModel): void;
@@ -254,6 +280,10 @@ export declare class EditorService {
254
280
  rows: number;
255
281
  columns: number;
256
282
  }): void;
283
+ updateTableBorderStyle(style: LineStyles): void;
284
+ updateTableBorderWidth(width: number): void;
285
+ updateTableBorders(borders: Borders): void;
286
+ setIsTableSelected(value: boolean): void;
257
287
  undo(): void;
258
288
  redo(): void;
259
289
  print(): void;
@@ -276,6 +306,9 @@ export declare class EditorService {
276
306
  setDisplaySearchBar(show: boolean): void;
277
307
  setSearchResultCount(count: number): void;
278
308
  setCurrentSearchResultIndex(index: number): void;
309
+ showGrammarError(error: GrammarError): void;
310
+ applyGrammarSuggestion(error: GrammarError, suggestionIndex: number, paragraphIndex: number): void;
311
+ ignoreGrammarSuggestion(error: GrammarError): void;
279
312
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorService, never>;
280
313
  static ɵprov: i0.ɵɵInjectableDeclaration<EditorService>;
281
314
  }
@@ -35,5 +35,6 @@ export declare enum CommandType {
35
35
  InsertPageFormat = 33,
36
36
  RemoveInsertedPageFormat = 34,
37
37
  RestorePageFormats = 35,
38
- ApplyParagraphs = 36
38
+ ApplyParagraphs = 36,
39
+ ApplyTableCellsStyles = 37
39
40
  }
@@ -1,6 +1,11 @@
1
+ import { ApplyTableCellsStylesModel } from '../../../models/generated/apply-table-cells-styles.model';
2
+ import { Borders } from '../../components/shared/enums/borders.enum';
3
+ import { CellDataModel } from '../../../models/generated/cell-data.model';
1
4
  import { CellModel } from '../../../models/generated/cell.model';
5
+ import { LineStyles } from '../../components/shared/enums/line-styles.enum';
2
6
  import { ResizeTableColumnsModel } from '../../../models/generated/resize-table-columns.model';
3
7
  import { RowModel } from '../../../models/generated/row.model';
8
+ import { SelectionRangeModel } from '../../components/table/models/selection-range.model';
4
9
  import { TableModel } from '../../../models/generated/table.model';
5
10
  import { VerticalMerge } from '../../components/table/enums/vertical-merge.enum';
6
11
  export declare class TableOperationsHelper {
@@ -25,4 +30,12 @@ export declare class TableOperationsHelper {
25
30
  static fillDataForHorizontalMergedCell(matrix: RowModel[], table: TableModel, rowIndex: number, cellIndex: number): number;
26
31
  static resizeColumns(table: TableModel, resizeTableColumns: ResizeTableColumnsModel): void;
27
32
  static calculateCellsWidth(table: TableModel): void;
33
+ static applyTableCellsStyles(tables: TableModel[], insertIndex: number, cellData: CellDataModel[]): void;
34
+ static getApplyTableCellsBordersStyle(style: LineStyles, table: TableModel, selection: SelectionRangeModel): ApplyTableCellsStylesModel;
35
+ static getApplyTableCellsBordersWidth(width: number, table: TableModel, selection: SelectionRangeModel): ApplyTableCellsStylesModel;
36
+ static getApplyTableCellsBorders(border: Borders, table: TableModel, selection: SelectionRangeModel): ApplyTableCellsStylesModel;
37
+ private static mergeCellStyles;
38
+ private static getApplyBordersStylesCells;
39
+ private static addPositionsToCell;
40
+ private static getCellDataFromBorderCells;
28
41
  }
@@ -1,4 +1,5 @@
1
1
  import { ApplyImageStyleModel } from '../../models/generated/apply-image-style.model';
2
+ import { ApplyTableCellsStylesModel } from '../../models/generated/apply-table-cells-styles.model';
2
3
  import { BreakTypes } from '../gadgets/page-break/break-types.enum';
3
4
  import { CommandModel } from '../../models/generated/command.model';
4
5
  import { ContentType } from '../content/contents.interface';
@@ -37,6 +38,7 @@ export declare class OperationsHelper {
37
38
  static restoreNumberings(target: ContentType, numberings: NumberingModel[], paragraphsToRestore: ParagraphModel[], numberingsToRestore: NumberingModel[]): void;
38
39
  static insertImage(document: ContentType, index: number, imageData: ImageDataModel): void;
39
40
  static insertTable(document: ContentType, tableModel: InsertTableModel, contentWidth: number): string;
41
+ static applyTableCellsStyles(document: ContentType, model: ApplyTableCellsStylesModel): void;
40
42
  static insertStyledText(document: ContentType, text: string, index: number, style: TextStyleModel): void;
41
43
  static restore(document: ContentType, model: RestoreModel): void;
42
44
  static delete(document: ContentType, startIndex: number, count: number): void;
@@ -1,5 +1,6 @@
1
1
  import { ApplyDocumentPageFormatModel } from '../../models/generated/apply-document-page-format.model';
2
2
  import { ApplyPageFormatModel } from '../../models/generated/apply-page-format.model';
3
+ import { ApplyTableCellsStylesModel } from '../../models/generated/apply-table-cells-styles.model';
3
4
  import { CommandModel } from '../../models/generated/command.model';
4
5
  import { CreateEdgesModel } from '../../models/generated/create-edges.model';
5
6
  import { FormatModel } from '../../models/generated/format.model';
@@ -42,6 +43,7 @@ export declare class SaveCommandsHelper {
42
43
  static getInsertLinkOperation(insertLink: InsertLinkModel, targets: TargetModel[]): CommandModel;
43
44
  static getInsertTabCommand(insertTab: InsertTabModel, targets: TargetModel[]): CommandModel;
44
45
  static getInsertTableCommand(insertTable: InsertTableModel, targets: TargetModel[]): CommandModel;
46
+ static getApplyTableCellsStylesCommand(applyTableCellsStyles: ApplyTableCellsStylesModel, targets: TargetModel[]): CommandModel;
45
47
  static getInsertTableColumnsCommand(columnsCount: number, inheritIndex: number, insertIndex: number, targetIndex: number, targets: TargetModel[]): CommandModel;
46
48
  static getInsertTableRowsCommand(rowsCount: number, inheritIndex: number, insertIndex: number, targetIndex: number, targets: TargetModel[]): CommandModel;
47
49
  static getRemoveTableColumnsCommand(startIndex: number, endIndex: number, insertIndex: number, targets: TargetModel[]): CommandModel;
@@ -3,10 +3,9 @@ import { DocxModel } from '../models/generated/docx.model';
3
3
  import { EdgeModel } from '../models/generated/edge.model';
4
4
  import { OperationModel } from '../models/generated/operation.model';
5
5
  import { ParagraphStyleModel } from '../models/generated/paragraph-style.model';
6
- import { RevisionModel } from '../models/generated/revision.model';
7
6
  import { TableModel } from '../models/generated/table.model';
8
7
  export declare class RevisionHelper {
9
- static applyOperationsToRevision(revision: RevisionModel, operations: OperationModel[]): void;
8
+ static applyOperationsToRevision(content: DocxModel, operations: OperationModel[]): void;
10
9
  static fillTablesDefaultStyles(tables: TableModel[]): void;
11
10
  static fillEdgesDefaultStyles(headers: EdgeModel[], footers: EdgeModel[]): void;
12
11
  static fillDefaultStyles(contents: ContentType): void;
@@ -0,0 +1,6 @@
1
+ import { CellDataModel } from './cell-data.model';
2
+ export declare class ApplyTableCellsStylesModel {
3
+ cellsData: CellDataModel[];
4
+ insertIndex: number;
5
+ constructor(fields?: Partial<ApplyTableCellsStylesModel>);
6
+ }
@@ -0,0 +1,7 @@
1
+ import { BordersStyleModel } from './borders-style.model';
2
+ export declare class CellDataModel {
3
+ borders: BordersStyleModel[];
4
+ cellIndex: number;
5
+ rowIndex: number;
6
+ constructor(fields?: Partial<CellDataModel>);
7
+ }
@@ -4,6 +4,7 @@ import { ApplyImageStyleModel } from './apply-image-style.model';
4
4
  import { ApplyPageFormatModel } from './apply-page-format.model';
5
5
  import { ApplyParagraphsModel } from './apply-paragraphs.model';
6
6
  import { ApplyParagraphStyleModel } from './apply-paragraph-style.model';
7
+ import { ApplyTableCellsStylesModel } from './apply-table-cells-styles.model';
7
8
  import { ApplyTextStyleModel } from './apply-text-style.model';
8
9
  import { CreateEdgesModel } from './create-edges.model';
9
10
  import { DeleteModel } from './delete.model';
@@ -43,6 +44,7 @@ export declare class CommandModel {
43
44
  applyPageFormat: ApplyPageFormatModel;
44
45
  applyParagraphs: ApplyParagraphsModel;
45
46
  applyParagraphStyle: ApplyParagraphStyleModel;
47
+ applyTableCellsStyles: ApplyTableCellsStylesModel;
46
48
  applyTextStyle: ApplyTextStyleModel;
47
49
  binding: number;
48
50
  commandType: any;
@@ -0,0 +1,9 @@
1
+ export declare class GrammarError {
2
+ length: number;
3
+ message: string;
4
+ offset: number;
5
+ replacements: string[];
6
+ text: string;
7
+ type: string;
8
+ constructor(fields?: Partial<GrammarError>);
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talrace/ngx-noder",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.5",
package/public-api.d.ts CHANGED
@@ -16,6 +16,7 @@ export * from './lib/editor/components/shared/abstract/base.component';
16
16
  export * from './lib/editor/components/shared/abstract/destroy.component';
17
17
  export * from './lib/editor/interaction/editor.service';
18
18
  export * from './lib/editor/gadgets/history/operations-history-info.model';
19
+ export * from './lib/editor/gadgets/grammar/grammar.service';
19
20
  export * from './lib/editor/operations/enums/command-type.enum';
20
21
  export * from './lib/editor/components/editor.component';
21
22
  export * from './lib/editor/editor.module';
@@ -4,11 +4,12 @@
4
4
  @use 'lib/apart-components/editor-title-mobile/editor-title-mobile.theme' as *;
5
5
  @use 'lib/apart-components/editor-title/editor-title.theme' as *;
6
6
  @use 'lib/apart-components/editor-toolbar/theme' as *;
7
- @use 'lib/apart-components//editor-search-bar/theme' as *;
7
+ @use 'lib/apart-components/editor-search-bar/theme' as *;
8
8
  @use 'lib/apart-components/editor-ruler/theme' as *;
9
9
  @use 'lib/apart-components/insert-table-mobile/insert-table-mobile.theme' as *;
10
10
  @use 'lib/apart-components/insert-table/insert-table.theme' as *;
11
11
  @use 'lib/apart-components/text-format-mobile/text-format-mobile.theme' as *;
12
+ @use 'lib/editor/gadgets/grammar/grammar-popup/theme' as *;
12
13
  @use 'lib/editor/theme' as *;
13
14
 
14
15
  @mixin ngx-noder-theme($theme) {
@@ -19,6 +20,7 @@
19
20
  @include ngx-noder-toolbar-theme($theme);
20
21
  @include ngx-noder-insert-table-theme($theme);
21
22
  @include ngx-noder-editor-theme($theme);
23
+ @include ngx-noder-grammar-theme($theme);
22
24
  }
23
25
 
24
26
  @mixin ngx-noder-editor-theme($theme) {
@@ -39,6 +41,10 @@
39
41
  @include confirm-dialog-theme($theme);
40
42
  }
41
43
 
44
+ @mixin ngx-noder-grammar-theme($theme) {
45
+ @include grammar-popup-theme($theme);
46
+ }
47
+
42
48
  @mixin ngx-noder-title-theme($theme) {
43
49
  @include editor-title-component-theme($theme);
44
50
  @include editor-title-mobile-component-theme($theme);
Binary file
@@ -30,8 +30,41 @@
30
30
  -webkit-font-smoothing: antialiased;
31
31
  -moz-osx-font-smoothing: grayscale;
32
32
 
33
- &.icon-folder-tree:before {
34
- content: '\e90d';
33
+ &.icon-drag:before {
34
+ content: '\e915';
35
+ }
36
+ &.icon-border-dash:before {
37
+ content: '\e917';
38
+ }
39
+ &.icon-border-right:before {
40
+ content: '\e918';
41
+ }
42
+ &.icon-border-left:before {
43
+ content: '\e919';
44
+ }
45
+ &.icon-border-top:before {
46
+ content: '\e91b';
47
+ }
48
+ &.icon-border-bottom:before {
49
+ content: '\e91c';
50
+ }
51
+ &.icon-border-width:before {
52
+ content: '\e91d';
53
+ }
54
+ &.icon-border-inside:before {
55
+ content: '\e91e';
56
+ }
57
+ &.icon-border-outside:before {
58
+ content: '\e92c';
59
+ }
60
+ &.icon-border-all:before {
61
+ content: '\e92d';
62
+ }
63
+ &.icon-border-none:before {
64
+ content: '\e92e';
65
+ }
66
+ &.icon-preview:before {
67
+ content: '\e913';
35
68
  }
36
69
  &.icon-field-up:before {
37
70
  content: '\e90a';
@@ -3,7 +3,7 @@
3
3
  <svg xmlns="http://www.w3.org/2000/svg">
4
4
  <metadata>Generated by IcoMoon</metadata>
5
5
  <defs>
6
- <font id="Noder-iconfont-v54" horiz-adv-x="1024">
6
+ <font id="Noder-iconfont-v56" horiz-adv-x="1024">
7
7
  <font-face units-per-em="1024" ascent="960" descent="-64" />
8
8
  <missing-glyph horiz-adv-x="1024" />
9
9
  <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
@@ -20,15 +20,23 @@
20
20
  <glyph unicode="&#xe90a;" glyph-name="field-up" d="M512 768c5.905 0 11.55-2.44 15.582-6.75l341.333-365.252c3.686-3.947 5.747-9.139 5.751-14.541v-232.124c0-11.78-9.553-21.333-21.333-21.333h-682.667c-11.782 0-21.333 9.553-21.333 21.333v232.124c0.002 5.402 2.063 10.594 5.75 14.541l341.335 365.252 3.29 2.875c3.567 2.511 7.859 3.875 12.292 3.875zM192 373.043v-202.377h640v202.377l-320 342.374-320-342.374z" />
21
21
  <glyph unicode="&#xe90b;" glyph-name="cancel-thin" d="M313.266 204.128c-8.005-8.004-20.983-8.004-28.987 0-8.005 8.008-8.005 20.984 0 28.987l214.88 214.884-214.88 214.882c-8.005 8.005-8.005 20.983 0 28.987s20.983 8.005 28.987 0l214.88-214.882 214.884 214.882c8.004 8.005 20.984 8.005 28.987 0s8.004-20.983 0-28.987l-214.884-214.882 214.884-214.884c8.004-8.004 8.004-20.98 0-28.987-8.004-8.004-20.984-8.004-28.987 0l-214.884 214.884-214.88-214.884z" />
22
22
  <glyph unicode="&#xe90c;" glyph-name="field-down" d="M512 128c5.905 0 11.55 2.441 15.582 6.75l341.333 365.252c3.686 3.947 5.747 9.139 5.751 14.541v232.124c0 11.782-9.553 21.333-21.333 21.333h-682.667c-11.782 0-21.333-9.551-21.333-21.333v-232.124c0.002-5.402 2.063-10.594 5.75-14.541l341.335-365.252 3.29-2.876c3.567-2.509 7.859-3.874 12.292-3.874zM192 522.957v202.377h640v-202.377l-320-342.374-320 342.374z" />
23
- <glyph unicode="&#xe90d;" glyph-name="folder-tree" d="M106.667 655.25v182.833c0 15.606 6.44 30.415 17.625 41.208 11.165 10.767 26.157 16.706 41.625 16.708h113.792l4.084-0.375c4.003-0.781 7.729-2.716 10.708-5.583l31.792-30.625h105.124c15.471-0.003 30.46-5.9 41.626-16.667 11.191-10.79 17.621-25.602 17.626-41.208v-146.292c0-15.606-6.438-30.415-17.626-41.208-11.166-10.767-26.155-16.706-41.626-16.708h-265.499c-15.468 0.003-30.459 5.941-41.625 16.708-11.185 10.793-17.625 25.602-17.625 41.208zM149.333 655.25c0-3.783 1.557-7.578 4.583-10.5 3.055-2.946 7.358-4.748 12-4.75h265.499c4.642 0.003 8.947 1.804 12.002 4.75 3.025 2.921 4.582 6.717 4.582 10.5v146.292c-0.004 3.78-1.557 7.582-4.582 10.5-3.055 2.941-7.364 4.706-12.002 4.708h-113.79c-5.522 0.001-10.817 2.167-14.792 6l-31.75 30.583h-105.167c-4.642-0.003-8.945-1.804-12-4.75-3.026-2.921-4.583-6.717-4.583-10.5v-182.833zM277.333 618.667c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v-448h234.667c11.78 0 21.333-9.553 21.333-21.333s-9.553-21.333-21.333-21.333h-256c-11.782 0-21.333 9.553-21.333 21.333v469.333zM533.333 399.249v182.834c0 15.606 6.438 30.415 17.626 41.208 11.166 10.767 26.155 16.706 41.626 16.708h113.792l4.083-0.375c4.002-0.781 7.727-2.716 10.705-5.583l31.795-30.625h105.122c15.471-0.003 30.46-5.9 41.626-16.667 11.191-10.79 17.621-25.602 17.626-41.208v-146.292c0-15.603-6.438-30.413-17.626-41.207-11.166-10.765-26.155-16.704-41.626-16.708h-265.498c-15.471 0.004-30.46 5.943-41.626 16.708-11.187 10.795-17.626 25.604-17.626 41.207zM576 399.249c0-3.78 1.557-7.578 4.582-10.5 3.055-2.944 7.36-4.745 12.002-4.749h265.498c4.642 0.004 8.947 1.805 12.002 4.749 3.025 2.923 4.582 6.72 4.582 10.5v146.292c-0.004 3.78-1.557 7.582-4.582 10.5-3.055 2.941-7.364 4.706-12.002 4.708h-113.792c-5.521 0.001-10.816 2.167-14.788 6l-31.753 30.583h-105.165c-4.642-0.003-8.947-1.804-12.002-4.75-3.025-2.921-4.582-6.717-4.582-10.5v-182.834zM554.667 512c11.78 0 21.333-9.553 21.333-21.333s-9.553-21.333-21.333-21.333h-256c-11.782 0-21.333 9.553-21.333 21.333s9.551 21.333 21.333 21.333h256zM533.333 57.916v182.835c0 15.603 6.438 30.413 17.626 41.207 11.166 10.765 26.155 16.704 41.626 16.708h113.792l4.083-0.375c4.002-0.781 7.727-2.714 10.705-5.581l31.795-30.626h105.122c15.471-0.004 30.46-5.901 41.626-16.666 11.191-10.79 17.621-25.604 17.626-41.212v-146.291c0-15.603-6.438-30.413-17.626-41.207-11.166-10.765-26.155-16.704-41.626-16.708h-265.498c-15.471 0.004-30.46 5.943-41.626 16.708-11.187 10.795-17.626 25.604-17.626 41.207zM576 57.916c0-3.78 1.557-7.578 4.582-10.5 3.055-2.944 7.36-4.745 12.002-4.749h265.498c4.642 0.004 8.947 1.805 12.002 4.749 3.025 2.923 4.582 6.72 4.582 10.5v146.291c-0.004 3.78-1.557 7.582-4.582 10.5-3.055 2.944-7.364 4.706-12.002 4.71h-113.792c-5.521 0-10.816 2.167-14.788 5.999l-31.753 30.583h-105.165c-4.642-0.004-8.947-1.805-12.002-4.749-3.025-2.923-4.582-6.72-4.582-10.5v-182.835z" />
24
23
  <glyph unicode="&#xe90e;" glyph-name="content-cut" d="M830.624 98.263l-299.323 299.323-127.765-127.762c5.986-10.24 10.399-21.033 13.233-32.375s4.256-23.081 4.256-35.209c0-37.257-13.26-69.153-39.776-95.687-26.515-26.53-58.391-39.797-95.625-39.797s-69.139 13.259-95.71 39.772c-26.572 26.518-39.857 58.393-39.857 95.625 0 37.237 13.266 69.14 39.798 95.711s58.428 39.858 95.685 39.858c12.13 0 23.867-1.417 35.21-4.256 11.342-2.834 22.134-7.246 32.374-13.23l127.764 127.762-127.764 127.763c-10.24-5.986-21.031-10.397-32.374-13.233s-23.080-4.254-35.21-4.254c-37.258 0-69.153 13.258-95.685 39.774s-39.798 58.391-39.798 95.625c0 37.236 13.258 69.139 39.773 95.71s58.391 39.857 95.626 39.857c37.236 0 69.139-13.266 95.71-39.799s39.859-58.427 39.859-95.685c0-12.13-1.421-23.867-4.256-35.21s-7.247-22.134-13.233-32.374l502.705-502.706v-25.207h-75.616zM635.273 501.563l-50.409 50.412 245.76 245.76h75.616v-25.207l-270.967-270.966zM285.538 599.236c25.994 0 48.246 9.256 66.757 27.767s27.767 40.763 27.767 66.757-9.255 48.246-27.767 66.757c-18.51 18.511-40.763 27.767-66.757 27.767s-48.246-9.255-66.757-27.767c-18.511-18.51-27.767-40.763-27.767-66.757s9.256-48.246 27.767-66.757c18.511-18.511 40.763-27.767 66.757-27.767zM285.538 107.717c25.994 0 48.246 9.257 66.757 27.767s27.767 40.763 27.767 66.757-9.255 48.247-27.767 66.757c-18.51 18.51-40.763 27.767-66.757 27.767s-48.246-9.257-66.757-27.767c-18.511-18.51-27.767-40.763-27.767-66.757s9.256-48.247 27.767-66.757c18.511-18.51 40.763-27.767 66.757-27.767z" />
25
24
  <glyph unicode="&#xe90f;" glyph-name="content-paste" d="M266.633 120.32c-18.327 0-33.936 6.447-46.828 19.337-12.892 12.894-19.337 28.5-19.337 46.83v523.028c0 18.327 6.445 33.936 19.337 46.828s28.502 19.337 46.828 19.337h189.915c3.83 16.017 12.337 29.473 25.518 40.369s28.541 16.345 46.080 16.345c17.854 0 33.333-5.448 46.436-16.345s21.57-24.352 25.403-40.369h189.678c18.326 0 33.935-6.445 46.825-19.337 12.894-12.892 19.337-28.502 19.337-46.828v-523.028c0-18.33-6.443-33.935-19.337-46.83-12.89-12.89-28.5-19.337-46.825-19.337h-523.031zM266.633 161.28h523.031c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v523.028c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.326 7.877h-97.677v-91.372h-327.679v91.372h-97.674c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM528.146 725.268c9.507 0 17.396 3.138 23.671 9.413s9.413 14.165 9.413 23.67c0 9.505-3.138 17.394-9.413 23.67s-14.164 9.414-23.671 9.414c-9.503 0-17.392-3.138-23.667-9.414-6.279-6.275-9.417-14.165-9.417-23.67s3.138-17.395 9.417-23.67c6.275-6.275 14.164-9.413 23.667-9.413z" />
26
25
  <glyph unicode="&#xe910;" glyph-name="datepicker" d="M360.172 370.807c-8.455 0-15.82 3.138-22.095 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.64 9.413 22.095 9.413c8.455 0 15.82-3.138 22.095-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.095-9.413zM524.014 370.807c-8.454 0-15.823 3.138-22.098 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.644 9.413 22.098 9.413c8.454 0 15.819-3.138 22.094-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.094-9.413zM687.854 370.807c-8.454 0-15.823 3.138-22.098 9.413s-9.413 13.64-9.413 22.094c0 8.454 3.138 15.819 9.413 22.094s13.644 9.413 22.098 9.413c8.454 0 15.819-3.138 22.094-9.413s9.413-13.64 9.413-22.094c0-8.454-3.138-15.819-9.413-22.094s-13.64-9.413-22.094-9.413zM262.498 79.36c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.027c0 18.852 6.315 34.593 18.944 47.222s28.37 18.944 47.222 18.944h72.467v91.372h44.111v-91.372h293.020v91.372h40.964v-91.372h72.466c18.85 0 34.591-6.315 47.223-18.944 12.628-12.629 18.944-28.37 18.944-47.222v-523.027c0-18.854-6.316-34.595-18.944-47.223-12.632-12.628-28.373-18.944-47.223-18.944h-523.028zM262.498 120.32h523.028c6.3 0 12.079 2.626 17.33 7.877s7.877 11.026 7.877 17.33v359.186h-573.441v-359.186c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM237.292 545.674h573.441v122.88c0 6.301-2.626 12.077-7.877 17.329s-11.031 7.877-17.33 7.877h-523.028c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-122.88z" />
27
26
  <glyph unicode="&#xe911;" glyph-name="delete" d="M348.553 120.32c-18.327 0-33.936 6.447-46.828 19.337-12.892 12.894-19.337 28.5-19.337 46.83v507.274h-40.96v40.96h163.84v31.508h245.759v-31.508h163.84v-40.96h-40.96v-507.274c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-359.191zM732.946 693.76h-409.599v-507.274c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090h359.191c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v507.274zM438.35 243.2h40.96v368.64h-40.96v-368.64zM576.983 243.2h40.964v368.64h-40.964v-368.64z" />
28
27
  <glyph unicode="&#xe912;" glyph-name="done-thin" d="M427.794 230.597l-188.928 188.928c-8.070 8.069-8.070 21.156 0 29.225s21.153 8.069 29.223 0l159.705-159.707 360.407 360.41c8.073 8.070 21.156 8.070 29.225 0s8.069-21.153 0-29.223l-389.632-389.633z" />
28
+ <glyph unicode="&#xe913;" glyph-name="preview" d="M248.84 874.607c-2.265-0.501-4.285-1.764-5.714-3.572s-2.18-4.049-2.124-6.343v-251.572c-0.019-1.314 0.227-2.618 0.723-3.837s1.232-2.329 2.165-3.264c0.934-0.936 2.046-1.679 3.273-2.185s2.543-0.768 3.872-0.768c1.33 0 2.646 0.261 3.873 0.768s2.339 1.25 3.273 2.185c0.934 0.936 1.67 2.045 2.165 3.264s0.741 2.523 0.722 3.837v241.658h374.986v-158.007c0-24.704 20.463-44.924 45.461-44.924h89.673c1.327-0.018 2.645 0.224 3.883 0.714 1.233 0.49 2.355 1.217 3.302 2.14s1.698 2.022 2.21 3.234c0.516 1.212 0.777 2.513 0.777 3.827s-0.26 2.615-0.777 3.827c-0.512 1.212-1.263 2.311-2.21 3.234s-2.069 1.649-3.302 2.14c-1.237 0.49-2.556 0.733-3.883 0.714h-89.673c-14.229 0-25.395 11.034-25.395 25.095v156.148l177.143-175.357v-571.924h-501.337c-1.329 0.017-2.65-0.226-3.884-0.713-1.233-0.491-2.356-1.22-3.303-2.142s-1.699-2.022-2.212-3.234c-0.513-1.212-0.777-2.513-0.777-3.827s0.264-2.611 0.777-3.827c0.513-1.212 1.265-2.308 2.212-3.23 0.947-0.926 2.070-1.651 3.303-2.142s2.554-0.734 3.884-0.713h511.372c2.662 0 5.214 1.045 7.095 2.901 1.882 1.86 2.935 4.382 2.935 7.010v585.868c0.034 1.313-0.201 2.619-0.687 3.843-0.482 1.223-1.207 2.339-2.133 3.283l-185.297 183.102c-1.852 1.77-4.322 2.769-6.899 2.789h-407.278c-0.729 0.079-1.465 0.079-2.195 0zM408.428 587.406c-109.945 0-199.407-87.724-199.407-195.807 0-66.748 34.225-125.751 86.221-161.105l-122.591-193.327c-0.826-1.097-1.414-2.351-1.726-3.682s-0.343-2.714-0.089-4.058c0.254-1.34 0.786-2.62 1.564-3.75s1.783-2.091 2.954-2.82c1.171-0.725 2.481-1.207 3.849-1.412s2.764-0.128 4.1 0.23c1.336 0.354 2.584 0.977 3.664 1.83s1.97 1.92 2.614 3.132l122.905 193.323c28.487-15.407 61.178-24.162 95.941-24.162 78.305 0 145.889 44.395 178.401 109.056h130.116c1.327-0.021 2.65 0.222 3.883 0.713s2.355 1.216 3.302 2.138c0.947 0.926 1.698 2.022 2.214 3.234 0.512 1.212 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.516 1.212-1.267 2.313-2.214 3.234s-2.069 1.651-3.302 2.138c-1.233 0.491-2.556 0.734-3.883 0.717h-121.651c6.66 17.988 10.914 37.001 11.913 57.007h125.726c1.331-0.021 2.65 0.222 3.887 0.713 1.233 0.491 2.355 1.216 3.302 2.142 0.947 0.922 1.698 2.018 2.21 3.23 0.512 1.216 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.512 1.212-1.263 2.313-2.21 3.234s-2.069 1.651-3.302 2.142c-1.237 0.486-2.556 0.73-3.887 0.713h-125.726c-1.024 19.844-5.312 38.835-11.913 56.695h121.651c1.327-0.017 2.65 0.226 3.883 0.717 1.233 0.486 2.355 1.216 3.302 2.138s1.698 2.022 2.214 3.234c0.512 1.212 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.516 1.212-1.267 2.313-2.214 3.234s-2.069 1.647-3.302 2.138c-1.233 0.491-2.556 0.734-3.883 0.717h-130.116c-32.495 64.712-100.053 109.364-178.401 109.364zM408.428 567.577c99.165 0 179.028-78.677 179.028-175.978 0-97.297-79.863-175.974-179.028-175.974s-179.341 78.677-179.341 175.974c0 97.301 80.175 175.978 179.341 175.978zM436.958 478.042c-2.658-0.247-5.111-1.527-6.818-3.563-1.702-2.035-2.522-4.655-2.274-7.283 0.252-2.628 1.549-5.052 3.605-6.737s4.71-2.492 7.369-2.249h57.378c1.327-0.017 2.65 0.226 3.883 0.717 1.233 0.486 2.355 1.216 3.302 2.138s1.698 2.022 2.214 3.234c0.512 1.212 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.516 1.212-1.267 2.313-2.214 3.234s-2.069 1.647-3.302 2.138c-1.233 0.491-2.556 0.734-3.883 0.717h-57.378c-0.623 0.055-1.254 0.055-1.882 0zM371.431 401.515c-1.318-0.060-2.61-0.38-3.804-0.934s-2.265-1.335-3.153-2.3c-0.888-0.96-1.575-2.091-2.022-3.315s-0.646-2.526-0.584-3.831c0.062-1.301 0.382-2.577 0.944-3.755 0.561-1.182 1.352-2.24 2.327-3.119 0.975-0.875 2.116-1.557 3.357-1.997 1.241-0.444 2.558-0.64 3.875-0.576h150.496c1.331-0.021 2.65 0.222 3.883 0.713s2.355 1.216 3.302 2.142c0.947 0.922 1.702 2.018 2.214 3.23 0.512 1.216 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.512 1.212-1.267 2.313-2.214 3.234s-2.069 1.651-3.302 2.142c-1.233 0.486-2.551 0.73-3.883 0.713h-150.496c-0.313 0.013-0.627 0.013-0.94 0zM437.901 324.681c-1.318-0.060-2.611-0.38-3.806-0.934-1.19-0.555-2.266-1.335-3.153-2.3s-1.574-2.091-2.022-3.315c-0.444-1.229-0.644-2.53-0.58-3.831 0.060-1.301 0.38-2.577 0.943-3.759 0.559-1.178 1.353-2.236 2.325-3.115 0.977-0.879 2.116-1.557 3.358-1.997 1.242-0.444 2.556-0.64 3.874-0.576h57.378c1.327-0.021 2.65 0.222 3.883 0.713s2.355 1.216 3.302 2.138c0.947 0.926 1.698 2.022 2.214 3.234 0.512 1.212 0.777 2.513 0.777 3.827s-0.265 2.615-0.777 3.827c-0.516 1.212-1.267 2.313-2.214 3.234s-2.069 1.651-3.302 2.138c-1.233 0.491-2.556 0.734-3.883 0.717h-57.378c-0.311 0.013-0.627 0.013-0.939 0z" />
29
29
  <glyph unicode="&#xe914;" glyph-name="edit-mode" horiz-adv-x="983" d="M176.68 843.382c2.021 2.021 4.763 3.157 7.621 3.157h153.6c1.428 0.020 2.846-0.244 4.172-0.776s2.532-1.323 3.549-2.326c1.017-1.003 1.825-2.198 2.376-3.516s0.836-2.732 0.836-4.16c0-1.429-0.284-2.843-0.836-4.161s-1.359-2.513-2.376-3.516c-1.017-1.003-2.224-1.794-3.549-2.327s-2.744-0.796-4.172-0.776h-142.821v-288.335c0.020-1.43-0.244-2.847-0.777-4.174-0.532-1.323-1.323-2.531-2.326-3.547s-2.198-1.827-3.516-2.376c-1.318-0.553-2.732-0.836-4.16-0.836s-2.843 0.283-4.161 0.836c-1.318 0.549-2.513 1.36-3.516 2.376s-1.794 2.224-2.326 3.547c-0.533 1.327-0.797 2.744-0.777 4.174v299.114c0 2.859 1.136 5.6 3.158 7.621zM640.93 845.763c1.323 0.532 2.74 0.797 4.17 0.776h153.6c2.859 0 5.599-1.136 7.623-3.157 2.019-2.021 3.158-4.763 3.158-7.621v-299.114c0.020-1.43-0.246-2.847-0.778-4.174-0.532-1.323-1.323-2.531-2.327-3.547s-2.195-1.827-3.514-2.376c-1.319-0.553-2.732-0.836-4.162-0.836s-2.843 0.283-4.162 0.836c-1.315 0.549-2.511 1.36-3.514 2.376s-1.794 2.224-2.327 3.547c-0.532 1.327-0.795 2.744-0.774 4.174v288.335h-142.823c-1.43-0.020-2.847 0.244-4.17 0.776-1.327 0.533-2.531 1.323-3.551 2.327-1.016 1.003-1.823 2.198-2.376 3.516s-0.836 2.732-0.836 4.161c0 1.428 0.283 2.843 0.836 4.16s1.36 2.513 2.376 3.516c1.020 1.003 2.224 1.794 3.551 2.326zM180.021 347.296c1.3 0.565 2.697 0.864 4.112 0.885 1.444 0.025 2.877-0.242 4.216-0.786 1.338-0.541 2.554-1.348 3.575-2.367s1.827-2.236 2.369-3.576c0.542-1.339 0.81-2.773 0.787-4.215v-288.338h142.821c1.428 0.020 2.846-0.242 4.172-0.774s2.532-1.323 3.549-2.327c1.017-1.004 1.825-2.2 2.376-3.518 0.551-1.315 0.836-2.732 0.836-4.157 0-1.43-0.284-2.843-0.836-4.162s-1.359-2.515-2.376-3.514c-1.017-1.004-2.224-1.794-3.549-2.327s-2.744-0.799-4.172-0.778h-153.6c-2.859 0-5.6 1.135-7.621 3.158-2.021 2.019-3.157 4.764-3.158 7.623v299.114c-0.022 1.413 0.235 2.822 0.756 4.137s1.297 2.515 2.282 3.535c0.985 1.016 2.161 1.827 3.46 2.388zM794.419 347.296c1.298 0.565 2.695 0.864 4.112 0.885 1.442 0.025 2.879-0.242 4.215-0.786 1.339-0.541 2.556-1.348 3.576-2.367s1.827-2.236 2.367-3.576c0.545-1.339 0.811-2.773 0.791-4.215v-299.114c0-2.859-1.139-5.603-3.158-7.623-2.023-2.023-4.764-3.158-7.623-3.158h-153.6c-1.43-0.020-2.847 0.246-4.17 0.778-1.327 0.532-2.531 1.323-3.551 2.327-1.016 0.999-1.823 2.195-2.376 3.514s-0.836 2.732-0.836 4.162c0 1.425 0.283 2.843 0.836 4.157 0.553 1.319 1.36 2.515 2.376 3.518 1.020 1.004 2.224 1.794 3.551 2.327 1.323 0.532 2.74 0.795 4.17 0.774h142.823v288.338c-0.025 1.413 0.233 2.822 0.754 4.137s1.298 2.515 2.281 3.535c0.987 1.016 2.163 1.827 3.461 2.388zM261.854 446.943c1.325 0.532 2.744 0.795 4.172 0.774h450.987c1.43 0.020 2.847-0.242 4.174-0.774 1.323-0.532 2.531-1.323 3.547-2.327 1.020-1.004 1.827-2.2 2.376-3.514 0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.549-1.319-1.356-2.511-2.376-3.514-1.016-1.004-2.224-1.794-3.547-2.327-1.327-0.532-2.744-0.799-4.174-0.778h-450.987c-1.428-0.020-2.846 0.246-4.172 0.778s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.195-2.376 3.514s-0.835 2.732-0.835 4.162c0 1.43 0.284 2.843 0.835 4.162 0.551 1.315 1.359 2.511 2.376 3.514s2.224 1.794 3.549 2.327zM317.481 365.064c-1.416-0.070-2.804-0.418-4.085-1.028-1.281-0.606-2.429-1.462-3.38-2.511-0.951-1.053-1.685-2.281-2.16-3.617s-0.683-2.753-0.612-4.17c0.072-1.413 0.422-2.802 1.031-4.084s1.463-2.429 2.515-3.379c1.052-0.95 2.281-1.683 3.618-2.159s2.752-0.68 4.168-0.61h353.98c1.425-0.020 2.843 0.246 4.17 0.778s2.531 1.323 3.551 2.327c1.016 1.004 1.823 2.195 2.376 3.514 0.549 1.319 0.836 2.732 0.836 4.162s-0.287 2.843-0.836 4.162c-0.553 1.315-1.36 2.511-2.376 3.514-1.020 1.004-2.224 1.794-3.551 2.327s-2.744 0.795-4.17 0.774h-353.98c-0.365 0.020-0.73 0.020-1.094 0zM314.4 281.678c1.325 0.532 2.744 0.799 4.172 0.778h353.978c1.43 0.020 2.847-0.246 4.17-0.778 1.327-0.532 2.535-1.323 3.551-2.327s1.823-2.195 2.376-3.514c0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.553-1.315-1.36-2.511-2.376-3.514s-2.224-1.794-3.551-2.327c-1.323-0.532-2.74-0.795-4.17-0.774h-353.978c-1.429-0.020-2.847 0.242-4.172 0.774s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.2-2.376 3.514-0.551 1.319-0.835 2.732-0.835 4.162s0.284 2.843 0.835 4.162c0.551 1.319 1.359 2.511 2.376 3.514s2.223 1.794 3.549 2.327zM318.573 199.803c-1.429 0.020-2.847-0.242-4.172-0.774s-2.532-1.323-3.549-2.327c-1.017-1.004-1.825-2.2-2.376-3.518-0.551-1.315-0.835-2.732-0.835-4.157 0-1.43 0.284-2.843 0.835-4.162s1.359-2.515 2.376-3.514c1.017-1.004 2.223-1.794 3.549-2.327s2.744-0.799 4.172-0.778h353.978c1.43-0.020 2.847 0.246 4.17 0.778 1.327 0.532 2.535 1.323 3.551 2.327 1.016 0.999 1.823 2.195 2.376 3.514s0.836 2.732 0.836 4.162c0 1.425-0.283 2.843-0.836 4.157-0.553 1.319-1.36 2.515-2.376 3.518s-2.224 1.794-3.551 2.327c-1.323 0.532-2.74 0.795-4.17 0.774h-353.978zM314.4 694.858c1.325 0.532 2.744 0.796 4.172 0.776h353.978c1.43 0.020 2.847-0.244 4.17-0.776 1.327-0.533 2.535-1.323 3.551-2.327s1.823-2.198 2.376-3.516c0.553-1.318 0.836-2.732 0.836-4.161s-0.283-2.843-0.836-4.16c-0.553-1.318-1.36-2.513-2.376-3.516s-2.224-1.794-3.551-2.326c-1.323-0.532-2.74-0.797-4.17-0.776h-353.978c-1.429-0.020-2.847 0.244-4.172 0.776s-2.532 1.323-3.549 2.326c-1.017 1.003-1.825 2.198-2.376 3.516s-0.835 2.732-0.835 4.16c0 1.429 0.284 2.843 0.835 4.161s1.359 2.513 2.376 3.516c1.017 1.003 2.223 1.794 3.549 2.327zM318.573 612.984c-1.429 0.020-2.847-0.244-4.172-0.776s-2.532-1.323-3.549-2.327c-1.017-1.003-1.825-2.198-2.376-3.516s-0.835-2.732-0.835-4.161c0-1.428 0.284-2.843 0.835-4.16s1.359-2.513 2.376-3.516c1.017-1.003 2.223-1.794 3.549-2.326s2.744-0.797 4.172-0.777h353.978c1.43-0.020 2.847 0.244 4.17 0.777 1.327 0.532 2.535 1.323 3.551 2.326s1.823 2.198 2.376 3.516c0.553 1.318 0.836 2.732 0.836 4.16s-0.283 2.843-0.836 4.161c-0.553 1.318-1.36 2.512-2.376 3.516s-2.224 1.794-3.551 2.327c-1.323 0.532-2.74 0.796-4.17 0.776h-353.978zM314.4 529.592c1.325 0.532 2.744 0.799 4.172 0.778h353.978c1.43 0.020 2.847-0.246 4.17-0.778 1.327-0.532 2.535-1.323 3.551-2.327s1.823-2.195 2.376-3.514c0.553-1.319 0.836-2.732 0.836-4.162s-0.283-2.843-0.836-4.162c-0.553-1.315-1.36-2.511-2.376-3.514s-2.224-1.794-3.551-2.327c-1.323-0.532-2.74-0.795-4.17-0.778h-353.978c-1.429-0.016-2.847 0.246-4.172 0.778s-2.532 1.323-3.549 2.327c-1.017 1.004-1.825 2.2-2.376 3.514-0.551 1.319-0.835 2.732-0.835 4.162s0.284 2.843 0.835 4.162c0.551 1.319 1.359 2.511 2.376 3.514s2.223 1.794 3.549 2.327zM91.922 522.162c-2.71-0.213-5.24-1.442-7.083-3.441s-2.862-4.62-2.854-7.34v-148.886c-0.002-1.892 0.495-3.752 1.44-5.39 0.945-1.642 2.306-3.002 3.944-3.953 1.639-0.946 3.498-1.446 5.391-1.446s3.753 0.496 5.392 1.442l128.968 74.445c1.644 0.942 3.010 2.306 3.96 3.944 0.95 1.642 1.45 3.506 1.45 5.403s-0.5 3.756-1.45 5.399c-0.95 1.642-2.316 3.002-3.96 3.949l-128.968 74.441c-1.885 1.098-4.057 1.597-6.231 1.434zM103.543 492.728l96.632-55.788-96.632-55.792v111.579zM898.183 518.734c-1.851 1.999-4.391 3.224-7.107 3.428-2.163 0.156-4.317-0.344-6.189-1.434l-128.971-74.441c-1.642-0.946-3.011-2.306-3.961-3.949-0.95-1.638-1.45-3.502-1.45-5.399s0.5-3.76 1.45-5.403c0.95-1.638 2.318-3.002 3.961-3.944l128.971-74.445c1.638-0.946 3.498-1.442 5.39-1.442s3.752 0.5 5.39 1.446c1.638 0.95 3.002 2.31 3.944 3.953 0.946 1.638 1.442 3.498 1.442 5.394v148.881c0.008 2.724-1.020 5.353-2.871 7.352zM782.864 436.941l96.633 55.788v-111.579l-96.633 55.792z" />
30
+ <glyph unicode="&#xe915;" glyph-name="Drag" d="M896 64h-768v768h768v-768zM170.667 106.667h682.667v682.667h-682.667v-682.667zM500.25 721.833c8.282 5.468 19.546 4.54 26.833-2.75l56.875-56.875c8.333-8.331 8.333-21.836 0-30.167-8.329-8.332-21.833-8.332-30.165 0l-20.459 20.458v-183.167h183.168l-20.459 20.459c-8.333 8.333-8.333 21.837 0 30.165 8.329 8.333 21.833 8.333 30.165 0l56.875-56.875c8.333-8.329 8.333-21.837 0-30.165l-56.875-56.875c-8.333-8.333-21.837-8.333-30.165 0-8.333 8.329-8.333 21.833 0 30.165l20.459 20.459h-183.168v-183.168l20.459 20.459c8.333 8.333 21.837 8.333 30.165 0 8.333-8.329 8.333-21.833 0-30.165l-56.875-56.875c-8.329-8.333-21.837-8.333-30.165 0l-56.875 56.875c-8.333 8.333-8.333 21.837 0 30.165 8.329 8.333 21.833 8.333 30.165 0l20.459-20.459v183.168h-183.167l20.458-20.459c8.332-8.333 8.332-21.837 0-30.165-8.331-8.333-21.836-8.333-30.167 0l-56.875 56.875c-8.331 8.329-8.331 21.837 0 30.165l56.875 56.875c8.331 8.333 21.836 8.333 30.167 0 8.332-8.329 8.332-21.833 0-30.165l-20.458-20.459h183.167v183.167l-20.459-20.458c-8.333-8.332-21.837-8.332-30.165 0-8.333 8.331-8.333 21.836 0 30.167l56.875 56.875 3.332 2.75z" />
30
31
  <glyph unicode="&#xe916;" glyph-name="file-copy" d="M789.664 202.24h-400.151c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h281.993l184.32-184.32v-404.873c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944zM651.026 652.8v163.84h-261.513c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h400.151c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v384.393h-163.84zM225.673 38.4c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v486.793c0 11.311 9.169 20.48 20.48 20.48s20.48-9.169 20.48-20.48v-486.793c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h363.913c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-363.913z" />
32
+ <glyph unicode="&#xe917;" glyph-name="Border-Dash" d="M874.667 661.333h-725.333c-11.782 0-21.333-9.551-21.333-21.333v-93.867c0-11.782 9.551-21.333 21.333-21.333h725.333c11.78 0 21.333 9.551 21.333 21.333v93.867c0 11.782-9.553 21.333-21.333 21.333zM320 422.396h-170.667c-11.782 0-21.333-9.553-21.333-21.333v-42.667c0-11.78 9.551-21.333 21.333-21.333h170.667c11.782 0 21.333 9.553 21.333 21.333v42.667c0 11.78-9.551 21.333-21.333 21.333zM618.667 422.396h-213.333c-11.782 0-21.333-9.553-21.333-21.333v-42.667c0-11.78 9.551-21.333 21.333-21.333h213.333c11.78 0 21.333 9.553 21.333 21.333v42.667c0 11.78-9.553 21.333-21.333 21.333zM874.667 422.396h-170.667c-11.78 0-21.333-9.553-21.333-21.333v-42.667c0-11.78 9.553-21.333 21.333-21.333h170.667c11.78 0 21.333 9.553 21.333 21.333v42.667c0 11.78-9.553 21.333-21.333 21.333zM192 234.667h-42.667c-11.782 0-21.333-9.553-21.333-21.333s9.551-21.333 21.333-21.333h42.667c11.782 0 21.333 9.553 21.333 21.333s-9.551 21.333-21.333 21.333zM328.531 234.667h-42.667c-11.782 0-21.333-9.553-21.333-21.333s9.551-21.333 21.333-21.333h42.667c11.782 0 21.333 9.553 21.333 21.333s-9.551 21.333-21.333 21.333zM465.062 234.667h-42.667c-11.782 0-21.333-9.553-21.333-21.333s9.551-21.333 21.333-21.333h42.667c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333zM601.604 234.667h-42.667c-11.78 0-21.333-9.553-21.333-21.333s9.553-21.333 21.333-21.333h42.667c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333zM738.133 234.667h-42.667c-11.78 0-21.333-9.553-21.333-21.333s9.553-21.333 21.333-21.333h42.667c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333zM874.667 234.667h-42.667c-11.78 0-21.333-9.553-21.333-21.333s9.553-21.333 21.333-21.333h42.667c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333z" />
33
+ <glyph unicode="&#xe918;" glyph-name="border-right" d="M810.667 64.013v341.329h-42.667v42.667h42.667v341.335h42.667v-725.331h-42.667zM725.333 789.341v-42.667h-85.333v42.667h85.333zM554.667 106.679v-42.667h-128v42.667h42.667v42.667h42.667v-42.667h42.667zM725.333 106.679v-42.667h-85.333v42.667h85.333zM512 448.009v-42.667h-42.667v42.667h42.667zM170.667 64.013h-42.667v42.667h42.667v-42.667zM256 64.013v42.667h85.333v-42.667h-85.333zM170.667 576.009h-42.667v85.333h42.667v-85.333zM170.667 192.013h-42.667v85.333h42.667v-85.333zM170.667 362.675h-42.667v128h42.667v-42.667h42.666v-42.667h-42.666v-42.667zM554.667 746.676h-42.667v-42.666h-42.667v42.666h-42.667v42.667h128v-42.667zM341.333 789.343v-42.667h-85.333v42.667h85.333zM170.667 746.676h-42.667v42.667h42.667v-42.667zM512 533.344h-42.667v85.333h42.667v-85.333zM682.667 448.009v-42.667h-85.333v42.667h85.333zM384 448.009v-42.667h-85.333v42.667h85.333zM512 234.679h-42.667v85.329h42.667v-85.329z" />
34
+ <glyph unicode="&#xe919;" glyph-name="border-left" d="M170.666 789.344v-341.331h42.667v-42.667h-42.667v-341.333h-42.667v725.331h42.667zM256 64.013v42.667h85.333v-42.667h-85.333zM426.667 746.676v42.667h128v-42.667h-42.667v-42.667h-42.667v42.667h-42.667zM256 746.676v42.667h85.333v-42.667h-85.333zM469.333 405.346v42.667h42.667v-42.667h-42.667zM810.667 789.343h42.667v-42.667h-42.667v42.667zM725.333 789.343v-42.667h-85.333v42.667h85.333zM810.667 277.346h42.667v-85.333h-42.667v85.333zM810.667 661.343h42.667v-85.333h-42.667v85.333zM810.667 490.679h42.667v-128h-42.667v42.667h-42.667v42.667h42.667v42.667zM426.667 106.679h42.667v42.667h42.667v-42.667h42.667v-42.667h-128v42.667zM640 64.013v42.667h85.333v-42.667h-85.333zM810.667 106.679h42.667v-42.667h-42.667v42.667zM469.333 320.013h42.667v-85.333h-42.667v85.333zM298.666 405.346v42.667h85.333v-42.667h-85.333zM597.333 405.346v42.667h85.333v-42.667h-85.333zM469.333 618.677h42.667v-85.333h-42.667v85.333z" />
31
35
  <glyph unicode="&#xe91a;" glyph-name="fill-done" horiz-adv-x="983" d="M865.169 436.941c0-215.953-175.673-391.627-391.627-391.627-215.951 0-391.623 175.673-391.623 391.627 0 215.952 175.671 391.623 391.623 391.623 91.754 0 182.387-32.449 252.879-92.871 8.95-7.832 10.068-22.378 2.236-31.33s-22.376-10.070-31.33-2.238c-62.661 52.589-142.103 81.682-223.785 81.682-191.335 0-346.866-155.531-346.866-346.866s155.53-347.988 346.866-347.988c191.336 0 346.87 155.533 346.87 346.87 0 32.449-4.477 64.897-13.431 95.109-3.355 12.304 3.359 24.615 15.667 27.971s24.617-3.357 27.972-15.667c10.072-33.567 14.549-70.492 14.549-106.295zM864.047 746.882c8.954 8.951 22.381 8.951 31.33 0 7.832-8.951 7.832-23.498-1.118-31.33l-433.025-433.023c-4.477-4.477-10.068-6.713-15.663-6.713s-11.19 2.236-15.667 6.713l-175.67 175.669c-8.951 8.95-8.951 22.381 0 31.33s22.378 8.95 31.33 0l160.008-161.124 418.476 418.477z" />
36
+ <glyph unicode="&#xe91b;" glyph-name="border-top" d="M853.333 746.677h-341.333v-42.667h-42.667v42.667h-341.333v42.667h725.333v-42.667zM128.001 661.342h42.667v-85.333h-42.667v85.333zM810.667 490.679h42.667v-128h-42.667v42.667h-42.667v42.667h42.667v42.667zM810.667 661.342h42.667v-85.333h-42.667v85.333zM469.333 448.013h42.667v-42.667h-42.667v42.667zM853.333 106.679v-42.667h-42.667v42.667h42.667zM853.333 192.013h-42.667v85.333h42.667v-85.333zM341.334 106.679v-42.667h-85.333v42.667h85.333zM725.333 106.679v-42.667h-85.333v42.667h85.333zM554.667 106.679v-42.667h-128v42.667h42.667v42.667h42.667v-42.667h42.667zM170.668 490.679v-42.667h42.666v-42.667h-42.666v-42.667h-42.667v128h42.667zM128 277.346h42.667v-85.333h-42.667v85.333zM170.667 106.679v-42.667h-42.667v42.667h42.667zM384 448.013v-42.667h-85.333v42.667h85.333zM469.333 618.676h42.667v-85.332h-42.667v85.332zM469.333 320.013h42.667v-85.333h-42.667v85.333zM682.667 448.013v-42.667h-85.333v42.667h85.333z" />
37
+ <glyph unicode="&#xe91c;" glyph-name="border-bottom" d="M127.999 106.667h341.334v42.667h42.667v-42.667h341.333v-42.667h-725.334v42.667zM853.333 192h-42.667v85.333h42.667v-85.333zM170.665 362.667h-42.667v128h42.667v-42.667h42.667v-42.667h-42.667v-42.667zM170.665 192h-42.667v85.333h42.667v-85.333zM512 405.333h-42.667v42.667h42.667v-42.667zM127.999 746.666v42.667h42.667v-42.667h-42.667zM127.999 661.333h42.667v-85.333h-42.667v85.333zM640 746.666v42.667h85.333v-42.667h-85.333zM255.999 746.666v42.667h85.333v-42.667h-85.333zM426.665 746.667v42.667h128.001v-42.667h-42.667v-42.667h-42.667v42.667h-42.668zM810.667 362.667v42.667h-42.667v42.667h42.667v42.667h42.667v-128h-42.667zM853.333 576h-42.667v85.333h42.667v-85.333zM810.667 746.667v42.667h42.667v-42.667h-42.667zM597.333 405.333v42.667h85.333v-42.667h-85.333zM512 234.667h-42.667v85.333h42.667v-85.333zM512 533.334h-42.667v85.333h42.667v-85.333zM298.666 405.333v42.667h85.333v-42.667h-85.333z" />
38
+ <glyph unicode="&#xe91d;" glyph-name="Border-Width" d="M128 637.867c0 6.224 2.528 12.192 7.029 16.593s10.606 6.873 16.971 6.873h720c6.366 0 12.471-2.473 16.969-6.873 4.501-4.401 7.031-10.37 7.031-16.593v-93.867c0-6.224-2.53-12.194-7.031-16.593-4.497-4.403-10.603-6.874-16.969-6.874h-720c-6.365 0-12.47 2.47-16.971 6.874-4.501 4.399-7.029 10.369-7.029 16.593v93.867zM128 403.2c0 6.225 2.528 12.194 7.029 16.593 4.501 4.403 10.606 6.874 16.971 6.874h720c6.366 0 12.471-2.47 16.969-6.874 4.501-4.399 7.031-10.368 7.031-16.593v-46.933c0-6.225-2.53-12.194-7.031-16.593-4.497-4.403-10.603-6.874-16.969-6.874h-720c-6.365 0-12.47 2.47-16.971 6.874-4.501 4.399-7.029 10.368-7.029 16.593v46.933zM128 215.467c0 6.225 2.528 12.194 7.029 16.593 4.501 4.403 10.606 6.874 16.971 6.874h720c6.366 0 12.471-2.47 16.969-6.874 4.501-4.399 7.031-10.368 7.031-16.593s-2.53-12.194-7.031-16.593c-4.497-4.403-10.603-6.874-16.969-6.874h-720c-6.365 0-12.47 2.47-16.971 6.874-4.501 4.399-7.029 10.368-7.029 16.593z" />
39
+ <glyph unicode="&#xe91e;" glyph-name="border-inside" d="M725.333 789.343v-42.667h-85.333v42.667h85.333zM554.667 106.679v-42.667h-128.001v42.667h42.668v298.667h-298.668v-42.667h-42.667v128h42.667v-42.667h298.668v298.663h-42.668v42.667h128.001v-42.667h-42.667v-298.663h298.667v42.667h42.667v-128h-42.667v42.667h-298.667v-298.667h42.667zM725.333 106.679v-42.667h-85.333v42.667h85.333zM170.666 64.013h-42.667v42.667h42.667v-42.667zM255.999 64.013v42.667h85.333v-42.667h-85.333zM170.666 576.009h-42.667v85.333h42.667v-85.333zM170.666 192.013h-42.667v85.333h42.667v-85.333zM341.332 789.343v-42.667h-85.333v42.667h85.333zM170.665 746.676h-42.667v42.667h42.667v-42.667zM810.667 64.013v42.667h42.667v-42.667h-42.667zM810.667 576.010v85.333h42.667v-85.333h-42.667zM810.667 192.013v85.333h42.667v-85.333h-42.667zM810.667 746.677v42.667h42.667v-42.667h-42.667z" />
32
40
  <glyph unicode="&#xe91f;" glyph-name="format-align" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
33
41
  <glyph unicode="&#xe920;" glyph-name="format-aligncenter" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM384.788 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h286.719c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-286.719zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM384.788 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h286.719c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-286.719zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
34
42
  <glyph unicode="&#xe921;" glyph-name="format-alignleft" d="M220.948 120.32c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 273.92c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h368.639c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-368.639zM220.948 427.52c-11.311 0-20.48 9.171-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.171 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM220.948 581.12c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h368.639c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-368.639zM220.948 734.72c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399z" />
@@ -42,6 +50,9 @@
42
50
  <glyph unicode="&#xe929;" glyph-name="header" d="M272.123 120.32c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.315 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.029c18.85 0 34.591-6.315 47.223-18.944 12.628-12.629 18.944-28.37 18.944-47.222v-523.028c0-18.854-6.316-34.595-18.944-47.223-12.632-12.628-28.373-18.944-47.223-18.944h-523.029zM246.918 611.84h573.442v97.674c0 6.301-2.626 12.077-7.877 17.329-5.255 5.251-11.031 7.877-17.33 7.877h-523.029c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-97.674zM820.359 570.88h-573.442v-384.393c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877h523.029c6.3 0 12.075 2.626 17.33 7.877 5.251 5.251 7.877 11.026 7.877 17.33v384.393z" />
43
51
  <glyph unicode="&#xe92a;" glyph-name="headers-footers" d="M253.243 284.164c-18.852 0-34.592 6.316-47.222 18.944-12.629 12.632-18.944 28.373-18.944 47.223v195.349c0 18.852 6.315 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.026c18.854 0 34.595-6.315 47.223-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-195.349c0-18.85-6.312-34.591-18.944-47.223-12.628-12.628-28.369-18.944-47.223-18.944h-523.026zM253.243 325.124h523.026c6.304 0 12.079 2.626 17.33 7.877 5.251 5.255 7.877 11.031 7.877 17.33v195.349c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.33 7.877h-523.026c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-195.349c0-6.3 2.626-12.075 7.877-17.33 5.252-5.251 11.028-7.877 17.329-7.877zM207.557 709.52c-11.311 0-20.48 9.169-20.48 20.48s9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.169 20.48-20.48s-9.167-20.48-20.48-20.48h-614.399zM207.557 145.531c-11.311 0-20.48 9.171-20.48 20.48 0 11.313 9.169 20.48 20.48 20.48h614.399c11.313 0 20.48-9.167 20.48-20.48 0-11.309-9.167-20.48-20.48-20.48h-614.399z" />
44
52
  <glyph unicode="&#xe92b;" glyph-name="image" d="M266.633 120.32c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v523.028c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h523.031c18.85 0 34.591-6.315 47.219-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-523.028c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-523.031zM266.633 161.28h523.031c6.3 0 12.075 2.626 17.326 7.877s7.877 11.026 7.877 17.33v523.028c0 6.301-2.626 12.077-7.877 17.329s-11.026 7.877-17.326 7.877h-523.031c-6.301 0-12.077-2.626-17.329-7.877s-7.877-11.028-7.877-17.329v-523.028c0-6.304 2.626-12.079 7.877-17.33s11.028-7.877 17.329-7.877zM343.828 263.68h374.943l-115.79 154.386-107.127-135.483-71.68 86.647-80.346-105.55z" />
53
+ <glyph unicode="&#xe92c;" glyph-name="border-outside" d="M128 789.344h725.333v-725.331h-725.333v725.331zM170.667 746.676v-298.668h42.667v-42.667h-42.667v-298.662h298.667v42.667h42.667v-42.667h298.667v298.662h-42.667v42.667h42.667v298.668h-298.667v-42.666h-42.667v42.666h-298.667zM298.666 448.009h85.334v-42.667h-85.334v42.667zM469.333 448.009h42.667v-42.667h-42.667v42.667zM469.333 320.009h42.667v-85.329h-42.667v85.329zM597.333 448.009h85.333v-42.667h-85.333v42.667zM469.333 533.344v85.333h42.667v-85.333h-42.667z" />
54
+ <glyph unicode="&#xe92d;" glyph-name="border-all" d="M127.999 789.333h725.335v-725.333h-725.335v725.333zM170.665 746.667v-298.667h298.668v298.667h-298.668zM810.667 448v298.667h-298.667v-298.667h298.667zM170.665 106.667h298.668v298.667h-298.668v-298.667zM810.667 106.667v298.667h-298.667v-298.667h298.667z" />
55
+ <glyph unicode="&#xe92e;" glyph-name="border-none" d="M853.333 192.013h-42.667v85.333h42.667v-85.333zM170.667 362.679h-42.667v128h42.667v-42.667h42.667v-42.667h-42.667v-42.667zM810.667 448.013v42.667h42.667v-128h-42.667v42.667h-42.667v42.667h42.667zM597.333 405.346v42.667h85.333v-42.667h-85.333zM469.333 405.346v42.667h42.667v-42.667h-42.667zM298.667 405.346v42.667h85.333v-42.667h-85.333zM170.667 192.013h-42.667v85.333h42.667v-85.333zM128 746.676v42.667h42.667v-42.667h-42.667zM128 661.343h42.667v-85.333h-42.667v85.333zM640 746.676v42.667h85.333v-42.667h-85.333zM256 746.676v42.667h85.333v-42.667h-85.333zM426.667 746.677v42.667h128v-42.667h-42.667v-42.667h-42.667v42.667h-42.667zM853.333 576.010h-42.667v85.333h42.667v-85.333zM810.667 746.677v42.667h42.667v-42.667h-42.667zM512 234.679h-42.667v85.333h42.667v-85.333zM512 533.344h-42.667v85.333h42.667v-85.333zM128 106.679h42.667v-42.667h-42.667v42.667zM640 106.679h85.333v-42.667h-85.333v42.667zM256 106.679h85.333v-42.667h-85.333v42.667zM426.667 106.679h42.667v42.667h42.667v-42.667h42.667v-42.667h-128v42.667zM810.667 106.679h42.667v-42.667h-42.667v42.667z" />
45
56
  <glyph unicode="&#xe930;" glyph-name="link-highlighter" d="M159.508-43.52c-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96h737.279c22.622 0 40.96-18.338 40.96-40.96s-18.338-40.96-40.96-40.96h-737.279zM610.226 436.183l-106.496 106.498-159.115-159.115c-4.726-4.727-7.089-10.502-7.089-17.33 0-6.824 2.363-12.599 7.089-17.326l71.604-71.84c4.723-4.727 10.502-7.090 17.326-7.090 6.828 0 12.603 2.363 17.33 7.090l159.351 159.113zM489.472 586.398l164.471-164.473-173.842-174.080c-13.234-13.23-28.713-19.849-46.436-19.849s-33.201 6.619-46.434 19.849l-7.877 7.881-47.34-46.395h-113.428l103.818 103.58-6.302 6.304c-13.233 13.23-19.929 28.787-20.086 46.67-0.158 17.879 6.38 33.436 19.612 46.67l173.844 173.844zM489.472 586.398l200.942 200.94c13.23 13.234 28.709 19.85 46.432 19.85s33.202-6.617 46.436-19.85l71.836-71.601c13.234-13.234 19.853-28.712 19.853-46.436s-6.619-33.201-19.853-46.434l-201.175-200.942-164.471 164.473z" />
46
57
  <glyph unicode="&#xe932;" glyph-name="link-on" d="M654.742 659.238c22.68 22.678 53.436 35.418 85.508 35.418s62.829-12.741 85.504-35.418c22.68-22.678 35.418-53.436 35.418-85.507s-12.739-62.828-35.418-85.508l-149.991-149.996c-21.508-21.541-50.352-34.181-80.769-35.389-30.417-1.212-60.174 9.097-83.325 28.86-23.151 19.767-37.999 47.538-41.57 77.771-3.576 30.228 4.383 60.699 22.286 85.316 6.652 9.15 4.633 21.959-4.518 28.611-9.146 6.651-21.955 4.628-28.606-4.518-23.97-32.961-34.623-73.748-29.839-114.221 4.784-40.468 24.658-77.648 55.652-104.108s70.828-40.26 111.55-38.638c40.718 1.618 79.331 18.538 108.122 47.378l149.971 149.971c30.36 30.36 47.415 71.536 47.415 114.471s-17.056 84.111-47.415 114.47c-30.36 30.36-71.533 47.415-114.467 47.415s-84.111-17.056-114.471-47.415l-23.568-23.567c-7.995-7.998-7.995-20.965 0-28.963 7.999-7.998 20.967-7.998 28.963 0l23.568 23.568zM461.3 585.429c30.421 1.218 60.183-9.084 83.341-28.849 23.155-19.764 38.007-47.537 41.583-77.77 3.576-30.237-4.383-60.707-22.286-85.328-6.652-9.15-4.628-21.959 4.518-28.611s21.955-4.628 28.606 4.518c23.974 32.965 34.628 73.757 29.839 114.233-4.788 40.473-24.67 77.654-55.673 104.113-30.999 26.459-70.84 40.251-111.567 38.62-40.718-1.63-79.328-18.559-108.114-47.406l-149.976-150.008c-30.358-30.36-47.414-71.533-47.414-114.467s17.056-84.111 47.415-114.471c30.36-30.36 71.535-47.415 114.47-47.415s84.111 17.056 114.472 47.415l29.286 29.286c7.995 7.999 7.995 20.963 0 28.963-7.999 7.999-20.967 7.999-28.963 0l-29.288-29.286c-22.678-22.68-53.436-35.418-85.507-35.418s-62.829 12.739-85.507 35.418c-22.678 22.68-35.418 53.436-35.418 85.508s12.74 62.829 35.418 85.504l0.002 0.004 149.998 150.028c21.504 21.552 50.344 34.2 80.765 35.418z" />
47
58
  <glyph unicode="&#xe935;" glyph-name="open-from" d="M225.673 161.28c-18.852 0-34.592 6.316-47.222 18.944s-18.944 28.369-18.944 47.223v441.108c0 18.852 6.314 34.592 18.944 47.222s28.37 18.944 47.222 18.944h204.014l81.92-81.92h319.017c18.85 0 34.591-6.315 47.219-18.944 12.632-12.629 18.944-28.37 18.944-47.222v-359.188c0-18.854-6.312-34.595-18.944-47.223-12.628-12.628-28.369-18.944-47.219-18.944h-604.951zM225.673 202.24h604.951c7.348 0 13.39 2.363 18.117 7.090 4.723 4.727 7.086 10.764 7.086 18.117v359.188c0 7.352-2.363 13.39-7.086 18.117-4.727 4.726-10.768 7.089-18.117 7.089h-335.479l-81.92 81.92h-187.552c-7.352 0-13.391-2.363-18.117-7.089s-7.089-10.765-7.089-18.117v-441.108c0-7.352 2.363-13.39 7.089-18.117s10.765-7.090 18.117-7.090z" />
Binary file
Binary file
@@ -27,5 +27,9 @@
27
27
  .right-area {
28
28
  background: map.get($theme, background-palette, noder-ruler-not-default-area-background);
29
29
  }
30
+
31
+ .disabled {
32
+ opacity: 0.5;
33
+ }
30
34
  }
31
35
  }
@@ -11,6 +11,10 @@
11
11
  background: map.get($theme, background-palette, noder-scrollbar-thumb);
12
12
  }
13
13
 
14
+ .editor {
15
+ background-color: map.get($theme, background-palette, noder-editor-background);
16
+ }
17
+
14
18
  .container {
15
19
  background-color: map.get($theme, background-palette, noder-editor-background);
16
20
 
@@ -0,0 +1,26 @@
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+
4
+ @mixin grammar-popup-theme($theme) {
5
+ app-nod-grammar-popup {
6
+ background: map.get($theme, background-palette, dialog);
7
+
8
+ .message {
9
+ color: map.get($theme, foreground-palette, text);
10
+ border-bottom-color: map.get($theme, foreground-palette, noder-divider);
11
+ }
12
+
13
+ .suggestion {
14
+ color: map.get($theme, foreground-palette, grammar-suggestion);
15
+ }
16
+
17
+ .ignore {
18
+ color: map.get($theme, foreground-palette, secondary-text);
19
+
20
+ &:hover {
21
+ background-color: map.get($theme, foreground-palette, secondary-text);
22
+ color: map.get($theme, foreground-palette, noder-editor-header-text);
23
+ }
24
+ }
25
+ }
26
+ }