@galacean/effects-plugin-rich-text 2.8.8 → 2.8.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/effects-plugin-rich-text",
3
- "version": "2.8.8",
3
+ "version": "2.8.9",
4
4
  "description": "Galacean Effects player rich text plugin",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",
@@ -50,7 +50,7 @@
50
50
  "registry": "https://registry.npmjs.org"
51
51
  },
52
52
  "devDependencies": {
53
- "@galacean/effects": "2.8.8"
53
+ "@galacean/effects": "2.8.9"
54
54
  },
55
55
  "scripts": {
56
56
  "dev": "vite",
@@ -1,10 +0,0 @@
1
- import type { TextStyle } from '@galacean/effects';
2
- import type { RichTextLayout } from '../../rich-text-layout';
3
- import type { RichLine, OverflowResult, SizeResult, RichOverflowStrategy } from '../rich-text-interfaces';
4
- /**
5
- * 富文本 Display 溢出策略
6
- * 在溢出策略中对所有几何量进行一次性缩放
7
- */
8
- export declare class RichDisplayOverflowStrategy implements RichOverflowStrategy {
9
- apply(lines: RichLine[], sizeResult: SizeResult, layout: RichTextLayout, style: TextStyle): OverflowResult;
10
- }
@@ -1,10 +0,0 @@
1
- import type { TextStyle } from '@galacean/effects';
2
- import type { RichTextLayout } from '../../rich-text-layout';
3
- import type { RichLine, RichOverflowStrategy, OverflowResult, SizeResult } from '../rich-text-interfaces';
4
- /**
5
- * Visible 溢出策略
6
- * 允许内容超出画布可见
7
- */
8
- export declare class RichVisibleOverflowStrategy implements RichOverflowStrategy {
9
- apply(lines: RichLine[], sizeResult: SizeResult, layout: RichTextLayout, style: TextStyle): OverflowResult;
10
- }