@worktile/theia 3.0.1 → 3.0.2
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 +27 -6
- package/bundles/worktile-theia.umd.js.map +1 -1
- package/core/utils/index.d.ts +1 -0
- package/core/utils/merge-array.d.ts +1 -0
- package/esm2015/core/utils/index.js +2 -1
- package/esm2015/core/utils/merge-array.js +18 -0
- package/esm2015/core/utils/merge-deep-plugins.js +1 -3
- package/esm2015/core/utils/merge-options.js +4 -3
- package/esm2015/editor.component.js +3 -2
- package/esm2015/interfaces/plugins/plugins.js +1 -1
- package/esm2015/plugins/autoformat/autoformat.plugin.js +1 -1
- package/esm2015/plugins/index.js +2 -2
- package/fesm2015/worktile-theia.js +23 -6
- package/fesm2015/worktile-theia.js.map +1 -1
- package/interfaces/plugins/plugins.d.ts +3 -0
- package/package.json +1 -1
- package/plugins/autoformat/autoformat.plugin.d.ts +1 -1
- package/plugins/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AutoFormatRule } from '../../interfaces/auto-format';
|
|
2
2
|
export interface AutoFormatOptions {
|
|
3
|
-
autoFormatRules
|
|
3
|
+
autoFormatRules?: AutoFormatRule[];
|
|
4
4
|
}
|
|
5
5
|
export declare const withAutoFormat: <T extends import("../../interfaces").TheEditor>(editor: T) => T;
|
|
6
6
|
export declare const createAutoFormatPlugin: <T = {}>(override?: Partial<import("../../interfaces").ThePlugin<T, AutoFormatOptions>>, overrideByKey?: import("../../interfaces").OverrideByKey) => import("../../interfaces").ThePlugin<T, AutoFormatOptions>;
|
package/plugins/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const internalPlugins: import("@worktile/theia").ThePlugin<{}, {}>[];
|
|
1
|
+
export declare const internalPlugins: () => import("@worktile/theia").ThePlugin<{}, {}>[];
|