galaxy-charts 0.1.2 → 0.1.3
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/dist/galaxy-charts.d.ts +5 -2
- package/dist/galaxy-charts.js +457 -461
- package/dist/galaxy-charts.umd.cjs +20 -20
- package/package.json +1 -1
package/dist/galaxy-charts.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ import { ComponentProvideOptions } from 'vue';
|
|
|
3
3
|
import { DefineComponent } from 'vue';
|
|
4
4
|
import { PublicProps } from 'vue';
|
|
5
5
|
|
|
6
|
-
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
6
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
|
+
collapse: boolean;
|
|
8
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7
9
|
|
|
8
10
|
declare type __VLS_Props = {
|
|
9
11
|
collapse?: boolean;
|
|
@@ -197,7 +199,8 @@ export declare type TranscriptRoleType = (typeof TRANSCRIPT_ROLE)[keyof typeof T
|
|
|
197
199
|
|
|
198
200
|
export declare type TranscriptVariantType = (typeof TRANSCRIPT_VARIANT)[keyof typeof TRANSCRIPT_VARIANT];
|
|
199
201
|
|
|
200
|
-
declare function update({ settings, tracks, transcripts, }: {
|
|
202
|
+
declare function update({ collapse, settings, tracks, transcripts, }: {
|
|
203
|
+
collapse?: boolean;
|
|
201
204
|
settings?: InputValuesType;
|
|
202
205
|
tracks?: Array<InputValuesType>;
|
|
203
206
|
transcripts?: Array<TranscriptMessageType>;
|