Sha256: d4d989ec3924c5aa0829e64feefc5cc26ee81e3aa8c5297f3544346ec4a9045f

Contents?: true

Size: 814 Bytes

Versions: 3

Compression:

Stored size: 814 Bytes

Contents

<!--
# Copyright 2023 OpenC3, Inc.
# All Rights Reserved.
#
# This file may also be used under the terms of a commercial license
# if purchased from OpenC3, Inc.
-->

<template>
  <div class="value-widget-container">
    <v-text-field
      variant="solo"
      density="compact"
      readonly
      single-line
      hide-no-data
      hide-details
      :value="_value"
      :class="valueClass"
      :style="computedStyle"
      data-test="value"
    />
  </div>
</template>

<script>
import { VWidget } from '@openc3/vue-common/widgets'

export default {
  mixins: [VWidget],
}
</script>

<style lang="scss" scoped>
.value-widget-container {
  min-height: 100px;
}
.value-widget-container :deep(input) {
  max-height: none !important;
  line-height: 70px !important;
  font-size: 60px !important;
}
</style>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openc3-6.0.2 templates/widget/src/Widget.vue
openc3-6.0.1 templates/widget/src/Widget.vue
openc3-6.0.0 templates/widget/src/Widget.vue