Sha256: 6b43e69560f38637cfc287480892c4bb16edaaacebef2026ecdfb145d410decd
Contents?: true
Size: 895 Bytes
Versions: 25
Compression:
Stored size: 895 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"> <template> <v-text-field solo dense readonly single-line hide-no-data hide-details placeholder="Value" :value="_value" :class="valueClass" :style="computedStyle" data-test="value" /> </template> </div> </template> <script> import VWidget from '@openc3/tool-common/src/components/widgets/VWidget' 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
25 entries across 25 versions & 1 rubygems