Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Nov 6, 2024
1 parent 3e68211 commit a11a27d
Show file tree
Hide file tree
Showing 15 changed files with 60 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/plugins/image-properties/readers/align.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { ImageHAlign } from 'jodit/types';
import { css } from 'jodit/core/helpers/utils/css';

Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/readers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { attr } from 'jodit/core/helpers/utils/attr';

Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/readers/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { Dom } from 'jodit/core/dom/dom';
import { attr } from 'jodit/core/helpers/utils/attr';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/readers/margin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import { kebabCase } from 'jodit/core/helpers/string/kebab-case';

import type { EditValues, ImagePropertiesState } from '../interface';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/readers/size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import { isNumeric } from 'jodit/core/helpers/checker/is-numeric';
import { attr } from 'jodit/core/helpers/utils/attr';
import { css } from 'jodit/core/helpers/utils/css';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/ui/ui-image-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type {
IComponent,
IContainer,
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/ui/ui-image-main-tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { component } from 'jodit/core/decorators/component/component';
import { hook } from 'jodit/core/decorators/hook/hook';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/ui/ui-image-position-tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit, ImageHAlign } from 'jodit/types';
import { component } from 'jodit/core/decorators/component/component';
import { hook } from 'jodit/core/decorators/hook/hook';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/utils/open-image-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { isString } from 'jodit/core/helpers/checker/is-string';
import { attr } from 'jodit/core/helpers/utils/attr';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/utils/open-image-popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IDialog, IFileBrowserCallBackData, IJodit } from 'jodit/types';
import { isArray } from 'jodit/core/helpers/checker/is-array';
import { position } from 'jodit/core/helpers/size/position';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import { isNumber } from 'jodit/core/helpers/checker/is-number';
import { trim } from 'jodit/core/helpers/string/trim';

Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/writers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { Dom } from 'jodit/core/dom/dom';
import { attr, hAlignElement } from 'jodit/core/helpers/utils';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/writers/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { Dom } from 'jodit/core/dom/dom';
import { attr } from 'jodit/core/helpers/utils/attr';
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/writers/margin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import type { IJodit } from 'jodit/types';
import { css } from 'jodit/core/helpers/utils/css';

Expand Down
4 changes: 4 additions & 0 deletions src/plugins/image-properties/writers/size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

/**
* @module plugins/image-properties
*/

import { isNumeric } from 'jodit/core/helpers/checker/is-numeric';
import { attr } from 'jodit/core/helpers/utils/attr';
import { css } from 'jodit/core/helpers/utils/css';
Expand Down

0 comments on commit a11a27d

Please sign in to comment.