inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

18
node_modules/jodit/esm/plugins/line-height/config.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
import { memorizeExec } from "../../core/helpers/index.js";
import { Icon } from "../../core/ui/icon.js";
import { Config } from "../../config.js";
import lineHeightIcon from "./line-height.svg.js";
Config.prototype.defaultLineHeight = null;
Icon.set('line-height', lineHeightIcon);
Config.prototype.controls.lineHeight = {
command: 'applyLineHeight',
tags: ['ol'],
tooltip: 'Line height',
list: [1, 1.1, 1.2, 1.3, 1.4, 1.5, 2],
exec: (editor, event, { control }) => memorizeExec(editor, event, { control }, (value) => value)
};