@orangelogic/design-system 2.139.0 → 2.140.0
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/library/chunks/{asset-link-format.oOC8fxvV.js → asset-link-format.CoMUMoyK.js} +545 -490
- package/library/chunks/{color-swatch-group.CYI2N8gp.js → color-swatch-group.DedQQk4J.js} +199 -162
- package/library/chunks/{document-viewer.Ga2Ppgit.js → document-viewer.NA5cS7qW.js} +2 -0
- package/library/components/asset-link-format.js +1 -1
- package/library/components/atoms.js +1 -1
- package/library/components/audio.js +6 -3
- package/library/components/color-swatch-group.js +1 -1
- package/library/components/document-viewer.js +1 -1
- package/library/components/organisms.js +2 -2
- package/library/components/types.js +14719 -14822
- package/library/package.json +1 -1
- package/library/packages/atoms/src/components/audio/audio.d.ts +5 -0
- package/library/packages/hybrid/table-core/src/table/components/table-toolbar/table-toolbar.d.ts +1 -0
- package/library/packages/hybrid/table-core/src/table/table.d.ts +16 -0
- package/library/packages/hybrid/table-core/src/tabulator-tables/modules/Validate/Validate.d.ts +10 -0
- package/library/packages/organisms/src/asset-link-format/asset-link-format.d.ts +9 -0
- package/library/packages/organisms/src/asset-link-format/components/asset-link-format-crop/asset-link-format-crop.d.ts +0 -4
- package/library/packages/organisms/src/asset-link-format/components/asset-link-format-quality/asset-link-format-quality.d.ts +0 -4
- package/library/packages/organisms/src/asset-link-format/components/asset-link-format-resize/asset-link-format-resize.d.ts +0 -4
- package/library/packages/organisms/src/asset-link-format/components/asset-link-format-rotation/asset-link-format-rotation.d.ts +5 -2
- package/library/packages/types/src/table.d.ts +8 -0
- package/library/react-web-component.d.ts +7 -3
- package/package.json +1 -1
- package/library/packages/organisms/src/_v1/comment-v1/extensions/time.d.ts +0 -63
- /package/library/packages/organisms/src/{annotator-comment → comment}/extensions/time.d.ts +0 -0
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { Extension } from '@tiptap/core';
|
|
2
|
-
import { PluginKey } from '@tiptap/pm/state';
|
|
3
|
-
import { TimecodeMode } from '../../../../../types/src/video-editor';
|
|
4
|
-
|
|
5
|
-
export interface TimeOptions {
|
|
6
|
-
/**
|
|
7
|
-
* The HTML attributes for the time widget.
|
|
8
|
-
* @default {}
|
|
9
|
-
*/
|
|
10
|
-
HTMLAttributes: Record<string, string>;
|
|
11
|
-
/**
|
|
12
|
-
* The frame rate for the time based feature.
|
|
13
|
-
* @default 24
|
|
14
|
-
*/
|
|
15
|
-
frameRate: number;
|
|
16
|
-
/**
|
|
17
|
-
* The placeholder text for the time based feature.
|
|
18
|
-
* @default 'Enter a message...'
|
|
19
|
-
*/
|
|
20
|
-
placeholder: string;
|
|
21
|
-
/**
|
|
22
|
-
* The time values (in seconds) for the time based feature.
|
|
23
|
-
* Can be a single value or a range [start, end].
|
|
24
|
-
* @default []
|
|
25
|
-
*/
|
|
26
|
-
time: number[];
|
|
27
|
-
/**
|
|
28
|
-
* The timecode mode for the time based feature.
|
|
29
|
-
* @default TimecodeMode.Standard
|
|
30
|
-
*/
|
|
31
|
-
timecodeMode: TimecodeMode;
|
|
32
|
-
}
|
|
33
|
-
export interface TimeStorage {
|
|
34
|
-
frameRate: number;
|
|
35
|
-
placeholder: string;
|
|
36
|
-
time: number[];
|
|
37
|
-
timecodeMode: TimecodeMode;
|
|
38
|
-
}
|
|
39
|
-
declare module '@tiptap/core' {
|
|
40
|
-
interface Commands<ReturnType> {
|
|
41
|
-
time: {
|
|
42
|
-
/**
|
|
43
|
-
* Update the time decoration with new values.
|
|
44
|
-
*/
|
|
45
|
-
setTime: (options: {
|
|
46
|
-
frameRate?: number;
|
|
47
|
-
placeholder?: string;
|
|
48
|
-
time?: number[];
|
|
49
|
-
timecodeMode?: TimecodeMode;
|
|
50
|
-
}) => ReturnType;
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* The plugin key for the time decoration plugin.
|
|
56
|
-
*/
|
|
57
|
-
export declare const TimePluginKey: PluginKey<any>;
|
|
58
|
-
/**
|
|
59
|
-
* This extension adds a node decoration widget at the start of the document
|
|
60
|
-
* displaying the time using cx-timecode component.
|
|
61
|
-
*/
|
|
62
|
-
export declare const Time: Extension<TimeOptions, TimeStorage>;
|
|
63
|
-
export default Time;
|
|
File without changes
|