@sigmaott/base-next 1.4.40 → 1.4.41
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
|
@@ -117,7 +117,7 @@ async function handleRemove(idx: string) {
|
|
|
117
117
|
<span class="text-gray-400"> | </span>
|
|
118
118
|
<li title="Time offset">
|
|
119
119
|
<el-icon><div class="i-carbon:timer text-blue-600" /></el-icon> <span>
|
|
120
|
-
{{ (row?.data?.manifest?.timeOffset) || '-' }}</span>
|
|
120
|
+
{{ (row?.data?.manifest?.timeOffset || row?.data?.manifest?.buffer) || '-' }}</span>
|
|
121
121
|
</li>
|
|
122
122
|
</ul>
|
|
123
123
|
</div>
|
|
@@ -24,7 +24,7 @@ const [tsValue, tsAttrs] = useElField<number>(getProp('manifest.ts'), [
|
|
|
24
24
|
trigger: ['blur', 'change'],
|
|
25
25
|
},
|
|
26
26
|
])
|
|
27
|
-
const [timeOffsetValue, timeOffsetAttrs] = useElField<number>(getProp('manifest.
|
|
27
|
+
const [timeOffsetValue, timeOffsetAttrs] = useElField<number>(getProp('manifest.buffer'), [
|
|
28
28
|
])
|
|
29
29
|
|
|
30
30
|
const [countValue, countAttrs] = useElField<number>(getProp('manifest.count'), [
|
|
@@ -15,7 +15,7 @@ export function useParamsChannelDefault() {
|
|
|
15
15
|
manifest: {
|
|
16
16
|
containerType: manifestConfig?.value?.properties?.containerType?.default,
|
|
17
17
|
ts: manifestConfig?.value?.properties?.ts?.default,
|
|
18
|
-
|
|
18
|
+
buffer: manifestConfig?.value?.properties?.buffer?.default,
|
|
19
19
|
count: manifestConfig?.value?.properties?.count?.default,
|
|
20
20
|
enableTime: manifestConfig?.value?.properties?.enableTime?.default || false,
|
|
21
21
|
appendList: manifestConfig?.value?.properties?.appendList?.default || false,
|
|
@@ -41,7 +41,7 @@ export function useParamsChannelDefault() {
|
|
|
41
41
|
manifest: {
|
|
42
42
|
containerType: manifestConfig?.value?.properties?.containerType?.default,
|
|
43
43
|
ts: manifestConfig?.value?.properties?.ts?.default,
|
|
44
|
-
|
|
44
|
+
buffer: manifestConfig?.value?.properties?.buffer?.default,
|
|
45
45
|
count: manifestConfig?.value?.properties?.count?.default,
|
|
46
46
|
enableTime: manifestConfig?.value?.properties?.enableTime?.default || false,
|
|
47
47
|
appendList: manifestConfig?.value?.properties?.appendList?.default || false,
|
|
@@ -117,7 +117,7 @@ export function useParamsChannelDefault() {
|
|
|
117
117
|
manifest: {
|
|
118
118
|
containerType: manifestConfig?.value?.properties?.containerType?.default,
|
|
119
119
|
ts: manifestConfig?.value?.properties?.ts?.default,
|
|
120
|
-
|
|
120
|
+
buffer: manifestConfig?.value?.properties?.buffer?.default,
|
|
121
121
|
count: manifestConfig?.value?.properties?.count?.default,
|
|
122
122
|
enableTime: manifestConfig?.value?.properties?.enableTime?.default || false,
|
|
123
123
|
appendList: manifestConfig?.value?.properties?.appendList?.default || false,
|
|
@@ -176,7 +176,7 @@ export function useParamsChannelDefault() {
|
|
|
176
176
|
manifest: {
|
|
177
177
|
containerType: manifestConfig?.value?.properties?.containerType?.default,
|
|
178
178
|
ts: manifestConfig?.value?.properties?.ts?.default,
|
|
179
|
-
|
|
179
|
+
buffer: manifestConfig?.value?.properties?.buffer?.default,
|
|
180
180
|
count: manifestConfig?.value?.properties?.count?.default,
|
|
181
181
|
enableTime: manifestConfig?.value?.properties?.enableTime?.default || false,
|
|
182
182
|
appendList: manifestConfig?.value?.properties?.appendList?.default || false,
|
|
@@ -205,7 +205,7 @@ export function useParamsChannelDefault() {
|
|
|
205
205
|
manifest: {
|
|
206
206
|
containerType: manifestConfig?.value?.properties?.containerType?.default,
|
|
207
207
|
ts: manifestConfig?.value?.properties?.ts?.default,
|
|
208
|
-
|
|
208
|
+
buffer: manifestConfig?.value?.properties?.buffer?.default,
|
|
209
209
|
count: manifestConfig?.value?.properties?.count?.default,
|
|
210
210
|
enableTime: manifestConfig?.value?.properties?.enableTime?.default || false,
|
|
211
211
|
appendList: manifestConfig?.value?.properties?.appendList?.default || false,
|