Ignore:
Timestamp:
2021-11-01T21:09:21+13:00 (2 years ago)
Author:
cstephen
Message:

Add support for basic direct input macronisation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/macron-restoration/src/App.vue

    r35714 r35715  
    88                <u>Ngā Pae o te Māramatanga (Replace with image)</u>
    99            </a>
    10 
    11             <toggle-button class="theme-primary-l1" v-model="showInfo" :reverseState="true">
    12                 <span class="material-icons mdi-l">info</span>
    13             </toggle-button>
    1410        </div>
    15 
    16         <div v-if="showInfo" class="paper" v-html="translations.get('Description')" />
    1711    </div>
    1812
    1913    <div class="paper content">
    20         <AudioUpload />
     14        <DirectInput />
    2115    </div>
    2216
     
    6458}
    6559
    66 .transcription-list-item {
    67     transition: all 0.8s ease;
    68     margin-bottom: 1em;
     60// .transcription-list-item {
     61//     transition: all 0.8s ease;
     62//     margin-bottom: 1em;
    6963
    70     &:last-child {
    71         margin-bottom: 0;
    72     }
    73 }
     64//     &:last-child {
     65//         margin-bottom: 0;
     66//     }
     67// }
    7468
    75 .transcription-list-leave-to {
    76     opacity: 0;
    77 }
     69// .transcription-list-leave-to {
     70//     opacity: 0;
     71// }
    7872
    79 .transcription-list-leave-active {
    80   position: absolute;
    81 }
     73// .transcription-list-leave-active {
     74//     position: absolute;
     75// }
    8276</style>
    8377
    8478<script>
    8579import { mapState } from "vuex";
    86 import AudioUpload from "./components/AudioUpload.vue"
    87 import ToggleButton from "./components/ToggleButton.vue";
     80import DirectInput from "./components/DirectInput.vue"
    8881
    8982export default {
    9083    name: "App",
    9184    components: {
    92         AudioUpload,
    93         ToggleButton
    94     },
    95     data() {
    96         return {
    97             showInfo: false
    98         }
     85        DirectInput
    9986    },
    10087    computed: mapState({
Note: See TracChangeset for help on using the changeset viewer.