Added special script to handle parcel and node require. Added new tagging control. Adding new HTML Sanitizer. Packages so I could be sqlite with the right electron version. Some style changes. Interface changes. Changes to the sqlite/client. Interfaces cuased errors. Fixed bugs in electron ipc handling. Fixes to the sqlite libs. Create a new input control that can handle pasting. pasting HTML works with cycle through HTML,Text, Sanatized HTML. New UI controls. Time stamp control has more functionality.
28 lines
438 B
Plaintext
28 lines
438 B
Plaintext
<app>
|
|
<timestamp />
|
|
|
|
<timechain-input />
|
|
|
|
<app-divider label="LIFO" />
|
|
|
|
<timechain-list />
|
|
|
|
<script>
|
|
|
|
import Timestamp from './timestamp.riot'
|
|
import TimechainInput from './timechain-input.riot'
|
|
import TimechainList from './timechain-list.riot'
|
|
import AppDivider from './app-divider.riot'
|
|
|
|
export default {
|
|
components: {
|
|
Timestamp,
|
|
TimechainInput,
|
|
TimechainList,
|
|
AppDivider
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
</app> |