@sprucelabs/heartwood-view-controllers 128.0.7 → 128.0.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/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/video.schema.js +0 -18
- package/build/.spruce/schemas/schemas.types.d.ts +0 -24
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/video.schema.js +0 -18
- package/build/esm/.spruce/schemas/schemas.types.d.ts +0 -24
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +0 -60
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +0 -48
- package/build/esm/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +0 -48
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +0 -60
- package/build/esm/schemas/v2021_02_11/formSection.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/forms/form.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/list.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/listCell.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +0 -60
- package/build/esm/schemas/v2021_02_11/video.builder.d.ts +0 -12
- package/build/esm/schemas/v2021_02_11/video.builder.js +0 -12
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +0 -60
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +0 -48
- package/build/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +0 -48
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +0 -60
- package/build/schemas/v2021_02_11/formSection.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/forms/bigForm.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/forms/form.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/list.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/listCell.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +0 -60
- package/build/schemas/v2021_02_11/video.builder.d.ts +0 -12
- package/build/schemas/v2021_02_11/video.builder.js +0 -12
- package/package.json +8 -8
|
@@ -52,12 +52,6 @@ const videoSchema = {
|
|
|
52
52
|
type: 'boolean',
|
|
53
53
|
options: undefined
|
|
54
54
|
},
|
|
55
|
-
/** Restart on buffer (non-standard). */
|
|
56
|
-
'shouldRestartOnBuffer': {
|
|
57
|
-
label: 'Restart on buffer (non-standard)',
|
|
58
|
-
type: 'boolean',
|
|
59
|
-
options: undefined
|
|
60
|
-
},
|
|
61
55
|
/** Show controls. */
|
|
62
56
|
'hasControls': {
|
|
63
57
|
label: 'Show controls',
|
|
@@ -72,18 +66,6 @@ const videoSchema = {
|
|
|
72
66
|
hint: 'Use inline playback on mobile (playsInline)',
|
|
73
67
|
options: undefined
|
|
74
68
|
},
|
|
75
|
-
/** Start time (s). */
|
|
76
|
-
'startTime': {
|
|
77
|
-
label: 'Start time (s)',
|
|
78
|
-
type: 'number',
|
|
79
|
-
options: undefined
|
|
80
|
-
},
|
|
81
|
-
/** End time (s). */
|
|
82
|
-
'endTime': {
|
|
83
|
-
label: 'End time (s)',
|
|
84
|
-
type: 'number',
|
|
85
|
-
options: undefined
|
|
86
|
-
},
|
|
87
69
|
}
|
|
88
70
|
};
|
|
89
71
|
schema_1.SchemaRegistry.getInstance().trackSchema(videoSchema);
|
|
@@ -14815,16 +14815,10 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14815
14815
|
'isMuted'?: boolean | undefined | null;
|
|
14816
14816
|
/** Loop video. */
|
|
14817
14817
|
'shouldLoop'?: boolean | undefined | null;
|
|
14818
|
-
/** Restart on buffer (non-standard). */
|
|
14819
|
-
'shouldRestartOnBuffer'?: boolean | undefined | null;
|
|
14820
14818
|
/** Show controls. */
|
|
14821
14819
|
'hasControls'?: boolean | undefined | null;
|
|
14822
14820
|
/** Play inline. Use inline playback on mobile (playsInline) */
|
|
14823
14821
|
'shouldPlayInline'?: boolean | undefined | null;
|
|
14824
|
-
/** Start time (s). */
|
|
14825
|
-
'startTime'?: number | undefined | null;
|
|
14826
|
-
/** End time (s). */
|
|
14827
|
-
'endTime'?: number | undefined | null;
|
|
14828
14822
|
}
|
|
14829
14823
|
interface VideoSchema extends SpruceSchema.Schema {
|
|
14830
14824
|
id: 'video';
|
|
@@ -14888,12 +14882,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14888
14882
|
type: 'boolean';
|
|
14889
14883
|
options: undefined;
|
|
14890
14884
|
};
|
|
14891
|
-
/** Restart on buffer (non-standard). */
|
|
14892
|
-
'shouldRestartOnBuffer': {
|
|
14893
|
-
label: 'Restart on buffer (non-standard)';
|
|
14894
|
-
type: 'boolean';
|
|
14895
|
-
options: undefined;
|
|
14896
|
-
};
|
|
14897
14885
|
/** Show controls. */
|
|
14898
14886
|
'hasControls': {
|
|
14899
14887
|
label: 'Show controls';
|
|
@@ -14908,18 +14896,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14908
14896
|
hint: 'Use inline playback on mobile (playsInline)';
|
|
14909
14897
|
options: undefined;
|
|
14910
14898
|
};
|
|
14911
|
-
/** Start time (s). */
|
|
14912
|
-
'startTime': {
|
|
14913
|
-
label: 'Start time (s)';
|
|
14914
|
-
type: 'number';
|
|
14915
|
-
options: undefined;
|
|
14916
|
-
};
|
|
14917
|
-
/** End time (s). */
|
|
14918
|
-
'endTime': {
|
|
14919
|
-
label: 'End time (s)';
|
|
14920
|
-
type: 'number';
|
|
14921
|
-
options: undefined;
|
|
14922
|
-
};
|
|
14923
14899
|
};
|
|
14924
14900
|
}
|
|
14925
14901
|
interface VideoEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.VideoSchema> {
|
|
@@ -50,12 +50,6 @@ const videoSchema = {
|
|
|
50
50
|
type: 'boolean',
|
|
51
51
|
options: undefined
|
|
52
52
|
},
|
|
53
|
-
/** Restart on buffer (non-standard). */
|
|
54
|
-
'shouldRestartOnBuffer': {
|
|
55
|
-
label: 'Restart on buffer (non-standard)',
|
|
56
|
-
type: 'boolean',
|
|
57
|
-
options: undefined
|
|
58
|
-
},
|
|
59
53
|
/** Show controls. */
|
|
60
54
|
'hasControls': {
|
|
61
55
|
label: 'Show controls',
|
|
@@ -70,18 +64,6 @@ const videoSchema = {
|
|
|
70
64
|
hint: 'Use inline playback on mobile (playsInline)',
|
|
71
65
|
options: undefined
|
|
72
66
|
},
|
|
73
|
-
/** Start time (s). */
|
|
74
|
-
'startTime': {
|
|
75
|
-
label: 'Start time (s)',
|
|
76
|
-
type: 'number',
|
|
77
|
-
options: undefined
|
|
78
|
-
},
|
|
79
|
-
/** End time (s). */
|
|
80
|
-
'endTime': {
|
|
81
|
-
label: 'End time (s)',
|
|
82
|
-
type: 'number',
|
|
83
|
-
options: undefined
|
|
84
|
-
},
|
|
85
67
|
}
|
|
86
68
|
};
|
|
87
69
|
SchemaRegistry.getInstance().trackSchema(videoSchema);
|
|
@@ -14815,16 +14815,10 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14815
14815
|
'isMuted'?: boolean | undefined | null;
|
|
14816
14816
|
/** Loop video. */
|
|
14817
14817
|
'shouldLoop'?: boolean | undefined | null;
|
|
14818
|
-
/** Restart on buffer (non-standard). */
|
|
14819
|
-
'shouldRestartOnBuffer'?: boolean | undefined | null;
|
|
14820
14818
|
/** Show controls. */
|
|
14821
14819
|
'hasControls'?: boolean | undefined | null;
|
|
14822
14820
|
/** Play inline. Use inline playback on mobile (playsInline) */
|
|
14823
14821
|
'shouldPlayInline'?: boolean | undefined | null;
|
|
14824
|
-
/** Start time (s). */
|
|
14825
|
-
'startTime'?: number | undefined | null;
|
|
14826
|
-
/** End time (s). */
|
|
14827
|
-
'endTime'?: number | undefined | null;
|
|
14828
14822
|
}
|
|
14829
14823
|
interface VideoSchema extends SpruceSchema.Schema {
|
|
14830
14824
|
id: 'video';
|
|
@@ -14888,12 +14882,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14888
14882
|
type: 'boolean';
|
|
14889
14883
|
options: undefined;
|
|
14890
14884
|
};
|
|
14891
|
-
/** Restart on buffer (non-standard). */
|
|
14892
|
-
'shouldRestartOnBuffer': {
|
|
14893
|
-
label: 'Restart on buffer (non-standard)';
|
|
14894
|
-
type: 'boolean';
|
|
14895
|
-
options: undefined;
|
|
14896
|
-
};
|
|
14897
14885
|
/** Show controls. */
|
|
14898
14886
|
'hasControls': {
|
|
14899
14887
|
label: 'Show controls';
|
|
@@ -14908,18 +14896,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14908
14896
|
hint: 'Use inline playback on mobile (playsInline)';
|
|
14909
14897
|
options: undefined;
|
|
14910
14898
|
};
|
|
14911
|
-
/** Start time (s). */
|
|
14912
|
-
'startTime': {
|
|
14913
|
-
label: 'Start time (s)';
|
|
14914
|
-
type: 'number';
|
|
14915
|
-
options: undefined;
|
|
14916
|
-
};
|
|
14917
|
-
/** End time (s). */
|
|
14918
|
-
'endTime': {
|
|
14919
|
-
label: 'End time (s)';
|
|
14920
|
-
type: 'number';
|
|
14921
|
-
options: undefined;
|
|
14922
|
-
};
|
|
14923
14899
|
};
|
|
14924
14900
|
}
|
|
14925
14901
|
interface VideoEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.VideoSchema> {
|
|
@@ -473,10 +473,6 @@ declare const _default: {
|
|
|
473
473
|
type: "boolean";
|
|
474
474
|
label: string;
|
|
475
475
|
};
|
|
476
|
-
shouldRestartOnBuffer: {
|
|
477
|
-
type: "boolean";
|
|
478
|
-
label: string;
|
|
479
|
-
};
|
|
480
476
|
hasControls: {
|
|
481
477
|
type: "boolean";
|
|
482
478
|
label: string;
|
|
@@ -487,14 +483,6 @@ declare const _default: {
|
|
|
487
483
|
label: string;
|
|
488
484
|
hint: string;
|
|
489
485
|
};
|
|
490
|
-
startTime: {
|
|
491
|
-
type: "number";
|
|
492
|
-
label: string;
|
|
493
|
-
};
|
|
494
|
-
endTime: {
|
|
495
|
-
type: "number";
|
|
496
|
-
label: string;
|
|
497
|
-
};
|
|
498
486
|
};
|
|
499
487
|
};
|
|
500
488
|
};
|
|
@@ -7412,10 +7400,6 @@ declare const _default: {
|
|
|
7412
7400
|
type: "boolean";
|
|
7413
7401
|
label: string;
|
|
7414
7402
|
};
|
|
7415
|
-
shouldRestartOnBuffer: {
|
|
7416
|
-
type: "boolean";
|
|
7417
|
-
label: string;
|
|
7418
|
-
};
|
|
7419
7403
|
hasControls: {
|
|
7420
7404
|
type: "boolean";
|
|
7421
7405
|
label: string;
|
|
@@ -7426,14 +7410,6 @@ declare const _default: {
|
|
|
7426
7410
|
label: string;
|
|
7427
7411
|
hint: string;
|
|
7428
7412
|
};
|
|
7429
|
-
startTime: {
|
|
7430
|
-
type: "number";
|
|
7431
|
-
label: string;
|
|
7432
|
-
};
|
|
7433
|
-
endTime: {
|
|
7434
|
-
type: "number";
|
|
7435
|
-
label: string;
|
|
7436
|
-
};
|
|
7437
7413
|
};
|
|
7438
7414
|
};
|
|
7439
7415
|
};
|
|
@@ -7845,10 +7821,6 @@ declare const _default: {
|
|
|
7845
7821
|
type: "boolean";
|
|
7846
7822
|
label: string;
|
|
7847
7823
|
};
|
|
7848
|
-
shouldRestartOnBuffer: {
|
|
7849
|
-
type: "boolean";
|
|
7850
|
-
label: string;
|
|
7851
|
-
};
|
|
7852
7824
|
hasControls: {
|
|
7853
7825
|
type: "boolean";
|
|
7854
7826
|
label: string;
|
|
@@ -7859,14 +7831,6 @@ declare const _default: {
|
|
|
7859
7831
|
label: string;
|
|
7860
7832
|
hint: string;
|
|
7861
7833
|
};
|
|
7862
|
-
startTime: {
|
|
7863
|
-
type: "number";
|
|
7864
|
-
label: string;
|
|
7865
|
-
};
|
|
7866
|
-
endTime: {
|
|
7867
|
-
type: "number";
|
|
7868
|
-
label: string;
|
|
7869
|
-
};
|
|
7870
7834
|
};
|
|
7871
7835
|
};
|
|
7872
7836
|
};
|
|
@@ -15105,10 +15069,6 @@ declare const _default: {
|
|
|
15105
15069
|
type: "boolean";
|
|
15106
15070
|
label: string;
|
|
15107
15071
|
};
|
|
15108
|
-
shouldRestartOnBuffer: {
|
|
15109
|
-
type: "boolean";
|
|
15110
|
-
label: string;
|
|
15111
|
-
};
|
|
15112
15072
|
hasControls: {
|
|
15113
15073
|
type: "boolean";
|
|
15114
15074
|
label: string;
|
|
@@ -15119,14 +15079,6 @@ declare const _default: {
|
|
|
15119
15079
|
label: string;
|
|
15120
15080
|
hint: string;
|
|
15121
15081
|
};
|
|
15122
|
-
startTime: {
|
|
15123
|
-
type: "number";
|
|
15124
|
-
label: string;
|
|
15125
|
-
};
|
|
15126
|
-
endTime: {
|
|
15127
|
-
type: "number";
|
|
15128
|
-
label: string;
|
|
15129
|
-
};
|
|
15130
15082
|
};
|
|
15131
15083
|
};
|
|
15132
15084
|
};
|
|
@@ -22327,10 +22279,6 @@ declare const _default: {
|
|
|
22327
22279
|
type: "boolean";
|
|
22328
22280
|
label: string;
|
|
22329
22281
|
};
|
|
22330
|
-
shouldRestartOnBuffer: {
|
|
22331
|
-
type: "boolean";
|
|
22332
|
-
label: string;
|
|
22333
|
-
};
|
|
22334
22282
|
hasControls: {
|
|
22335
22283
|
type: "boolean";
|
|
22336
22284
|
label: string;
|
|
@@ -22341,14 +22289,6 @@ declare const _default: {
|
|
|
22341
22289
|
label: string;
|
|
22342
22290
|
hint: string;
|
|
22343
22291
|
};
|
|
22344
|
-
startTime: {
|
|
22345
|
-
type: "number";
|
|
22346
|
-
label: string;
|
|
22347
|
-
};
|
|
22348
|
-
endTime: {
|
|
22349
|
-
type: "number";
|
|
22350
|
-
label: string;
|
|
22351
|
-
};
|
|
22352
22292
|
};
|
|
22353
22293
|
};
|
|
22354
22294
|
};
|
|
@@ -169,10 +169,6 @@ declare const _default: {
|
|
|
169
169
|
type: "boolean";
|
|
170
170
|
label: string;
|
|
171
171
|
};
|
|
172
|
-
shouldRestartOnBuffer: {
|
|
173
|
-
type: "boolean";
|
|
174
|
-
label: string;
|
|
175
|
-
};
|
|
176
172
|
hasControls: {
|
|
177
173
|
type: "boolean";
|
|
178
174
|
label: string;
|
|
@@ -183,14 +179,6 @@ declare const _default: {
|
|
|
183
179
|
label: string;
|
|
184
180
|
hint: string;
|
|
185
181
|
};
|
|
186
|
-
startTime: {
|
|
187
|
-
type: "number";
|
|
188
|
-
label: string;
|
|
189
|
-
};
|
|
190
|
-
endTime: {
|
|
191
|
-
type: "number";
|
|
192
|
-
label: string;
|
|
193
|
-
};
|
|
194
182
|
};
|
|
195
183
|
};
|
|
196
184
|
};
|
|
@@ -602,10 +590,6 @@ declare const _default: {
|
|
|
602
590
|
type: "boolean";
|
|
603
591
|
label: string;
|
|
604
592
|
};
|
|
605
|
-
shouldRestartOnBuffer: {
|
|
606
|
-
type: "boolean";
|
|
607
|
-
label: string;
|
|
608
|
-
};
|
|
609
593
|
hasControls: {
|
|
610
594
|
type: "boolean";
|
|
611
595
|
label: string;
|
|
@@ -616,14 +600,6 @@ declare const _default: {
|
|
|
616
600
|
label: string;
|
|
617
601
|
hint: string;
|
|
618
602
|
};
|
|
619
|
-
startTime: {
|
|
620
|
-
type: "number";
|
|
621
|
-
label: string;
|
|
622
|
-
};
|
|
623
|
-
endTime: {
|
|
624
|
-
type: "number";
|
|
625
|
-
label: string;
|
|
626
|
-
};
|
|
627
603
|
};
|
|
628
604
|
};
|
|
629
605
|
};
|
|
@@ -7862,10 +7838,6 @@ declare const _default: {
|
|
|
7862
7838
|
type: "boolean";
|
|
7863
7839
|
label: string;
|
|
7864
7840
|
};
|
|
7865
|
-
shouldRestartOnBuffer: {
|
|
7866
|
-
type: "boolean";
|
|
7867
|
-
label: string;
|
|
7868
|
-
};
|
|
7869
7841
|
hasControls: {
|
|
7870
7842
|
type: "boolean";
|
|
7871
7843
|
label: string;
|
|
@@ -7876,14 +7848,6 @@ declare const _default: {
|
|
|
7876
7848
|
label: string;
|
|
7877
7849
|
hint: string;
|
|
7878
7850
|
};
|
|
7879
|
-
startTime: {
|
|
7880
|
-
type: "number";
|
|
7881
|
-
label: string;
|
|
7882
|
-
};
|
|
7883
|
-
endTime: {
|
|
7884
|
-
type: "number";
|
|
7885
|
-
label: string;
|
|
7886
|
-
};
|
|
7887
7851
|
};
|
|
7888
7852
|
};
|
|
7889
7853
|
};
|
|
@@ -15084,10 +15048,6 @@ declare const _default: {
|
|
|
15084
15048
|
type: "boolean";
|
|
15085
15049
|
label: string;
|
|
15086
15050
|
};
|
|
15087
|
-
shouldRestartOnBuffer: {
|
|
15088
|
-
type: "boolean";
|
|
15089
|
-
label: string;
|
|
15090
|
-
};
|
|
15091
15051
|
hasControls: {
|
|
15092
15052
|
type: "boolean";
|
|
15093
15053
|
label: string;
|
|
@@ -15098,14 +15058,6 @@ declare const _default: {
|
|
|
15098
15058
|
label: string;
|
|
15099
15059
|
hint: string;
|
|
15100
15060
|
};
|
|
15101
|
-
startTime: {
|
|
15102
|
-
type: "number";
|
|
15103
|
-
label: string;
|
|
15104
|
-
};
|
|
15105
|
-
endTime: {
|
|
15106
|
-
type: "number";
|
|
15107
|
-
label: string;
|
|
15108
|
-
};
|
|
15109
15061
|
};
|
|
15110
15062
|
};
|
|
15111
15063
|
};
|
|
@@ -450,10 +450,6 @@ declare const _default: {
|
|
|
450
450
|
type: "boolean";
|
|
451
451
|
label: string;
|
|
452
452
|
};
|
|
453
|
-
shouldRestartOnBuffer: {
|
|
454
|
-
type: "boolean";
|
|
455
|
-
label: string;
|
|
456
|
-
};
|
|
457
453
|
hasControls: {
|
|
458
454
|
type: "boolean";
|
|
459
455
|
label: string;
|
|
@@ -464,14 +460,6 @@ declare const _default: {
|
|
|
464
460
|
label: string;
|
|
465
461
|
hint: string;
|
|
466
462
|
};
|
|
467
|
-
startTime: {
|
|
468
|
-
type: "number";
|
|
469
|
-
label: string;
|
|
470
|
-
};
|
|
471
|
-
endTime: {
|
|
472
|
-
type: "number";
|
|
473
|
-
label: string;
|
|
474
|
-
};
|
|
475
463
|
};
|
|
476
464
|
};
|
|
477
465
|
};
|
|
@@ -114,10 +114,6 @@ declare const _default: {
|
|
|
114
114
|
type: "boolean";
|
|
115
115
|
label: string;
|
|
116
116
|
};
|
|
117
|
-
shouldRestartOnBuffer: {
|
|
118
|
-
type: "boolean";
|
|
119
|
-
label: string;
|
|
120
|
-
};
|
|
121
117
|
hasControls: {
|
|
122
118
|
type: "boolean";
|
|
123
119
|
label: string;
|
|
@@ -128,14 +124,6 @@ declare const _default: {
|
|
|
128
124
|
label: string;
|
|
129
125
|
hint: string;
|
|
130
126
|
};
|
|
131
|
-
startTime: {
|
|
132
|
-
type: "number";
|
|
133
|
-
label: string;
|
|
134
|
-
};
|
|
135
|
-
endTime: {
|
|
136
|
-
type: "number";
|
|
137
|
-
label: string;
|
|
138
|
-
};
|
|
139
127
|
};
|
|
140
128
|
};
|
|
141
129
|
};
|
|
@@ -547,10 +535,6 @@ declare const _default: {
|
|
|
547
535
|
type: "boolean";
|
|
548
536
|
label: string;
|
|
549
537
|
};
|
|
550
|
-
shouldRestartOnBuffer: {
|
|
551
|
-
type: "boolean";
|
|
552
|
-
label: string;
|
|
553
|
-
};
|
|
554
538
|
hasControls: {
|
|
555
539
|
type: "boolean";
|
|
556
540
|
label: string;
|
|
@@ -561,14 +545,6 @@ declare const _default: {
|
|
|
561
545
|
label: string;
|
|
562
546
|
hint: string;
|
|
563
547
|
};
|
|
564
|
-
startTime: {
|
|
565
|
-
type: "number";
|
|
566
|
-
label: string;
|
|
567
|
-
};
|
|
568
|
-
endTime: {
|
|
569
|
-
type: "number";
|
|
570
|
-
label: string;
|
|
571
|
-
};
|
|
572
548
|
};
|
|
573
549
|
};
|
|
574
550
|
};
|
|
@@ -7807,10 +7783,6 @@ declare const _default: {
|
|
|
7807
7783
|
type: "boolean";
|
|
7808
7784
|
label: string;
|
|
7809
7785
|
};
|
|
7810
|
-
shouldRestartOnBuffer: {
|
|
7811
|
-
type: "boolean";
|
|
7812
|
-
label: string;
|
|
7813
|
-
};
|
|
7814
7786
|
hasControls: {
|
|
7815
7787
|
type: "boolean";
|
|
7816
7788
|
label: string;
|
|
@@ -7821,14 +7793,6 @@ declare const _default: {
|
|
|
7821
7793
|
label: string;
|
|
7822
7794
|
hint: string;
|
|
7823
7795
|
};
|
|
7824
|
-
startTime: {
|
|
7825
|
-
type: "number";
|
|
7826
|
-
label: string;
|
|
7827
|
-
};
|
|
7828
|
-
endTime: {
|
|
7829
|
-
type: "number";
|
|
7830
|
-
label: string;
|
|
7831
|
-
};
|
|
7832
7796
|
};
|
|
7833
7797
|
};
|
|
7834
7798
|
};
|
|
@@ -15029,10 +14993,6 @@ declare const _default: {
|
|
|
15029
14993
|
type: "boolean";
|
|
15030
14994
|
label: string;
|
|
15031
14995
|
};
|
|
15032
|
-
shouldRestartOnBuffer: {
|
|
15033
|
-
type: "boolean";
|
|
15034
|
-
label: string;
|
|
15035
|
-
};
|
|
15036
14996
|
hasControls: {
|
|
15037
14997
|
type: "boolean";
|
|
15038
14998
|
label: string;
|
|
@@ -15043,14 +15003,6 @@ declare const _default: {
|
|
|
15043
15003
|
label: string;
|
|
15044
15004
|
hint: string;
|
|
15045
15005
|
};
|
|
15046
|
-
startTime: {
|
|
15047
|
-
type: "number";
|
|
15048
|
-
label: string;
|
|
15049
|
-
};
|
|
15050
|
-
endTime: {
|
|
15051
|
-
type: "number";
|
|
15052
|
-
label: string;
|
|
15053
|
-
};
|
|
15054
15006
|
};
|
|
15055
15007
|
};
|
|
15056
15008
|
};
|