Skip to content

Commit

Permalink
add css select2
Browse files Browse the repository at this point in the history
  • Loading branch information
Aliton John committed Dec 3, 2024
1 parent bc293c3 commit 568a793
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 21 deletions.
19 changes: 2 additions & 17 deletions build/ckeditor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/ckeditor.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion build/plugins/autotexto.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Plugin } from '@ckeditor/ckeditor5-core';
import 'select2/dist/js/select2.full';
import 'select2/dist/js/select2.full.min';
import 'select2/dist/css/select2.min.css';
export default class AutoTexto extends Plugin {
options: any;
init(): void;
Expand Down
2 changes: 2 additions & 0 deletions build/plugins/modelo.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { Plugin } from '@ckeditor/ckeditor5-core';
import 'select2/dist/js/select2.full.min';
import 'select2/dist/css/select2.min.css';
export default class DocumentoModelo extends Plugin {
options: any;
init(): void;
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/autotexto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { Plugin } from '@ckeditor/ckeditor5-core';
import { ButtonView } from '@ckeditor/ckeditor5-ui';
import { HtmlDataProcessor } from '@ckeditor/ckeditor5-engine';
import $ from "jquery";
import 'select2/dist/js/select2.full'
import 'select2/dist/js/select2.full.min'
import 'select2/dist/css/select2.min.css'

export default class AutoTexto extends Plugin {
options = [] as any
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/modelo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { Plugin } from '@ckeditor/ckeditor5-core';
import { ButtonView } from '@ckeditor/ckeditor5-ui';
import { HtmlDataProcessor } from '@ckeditor/ckeditor5-engine';
import $ from "jquery";
import 'select2/dist/js/select2.full'
import 'select2/dist/js/select2.full.min'
import 'select2/dist/css/select2.min.css'

export default class DocumentoModelo extends Plugin {
options = [] as any
Expand Down

0 comments on commit 568a793

Please sign in to comment.