Skip to content

Commit 8a454dd

Browse files
committed
Merge branch 'dev' into David/readme
2 parents 72de480 + 90f7bd7 commit 8a454dd

File tree

13 files changed

+126
-372
lines changed

13 files changed

+126
-372
lines changed

extractor.js

Lines changed: 0 additions & 131 deletions
This file was deleted.

package-lock.json

Lines changed: 8 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
"vue-multiselect": "^3.0.0-alpha.2",
6767
"vue-prism-editor": "^2.0.0-alpha.2",
6868
"vue-router": "4.0.13",
69-
"vue-sfc-parser": "^0.1.2",
7069
"vue3-draggable-resizable": "^1.6.4",
7170
"vue3-tree": "^0.11.0",
7271
"vued3tree": "^5.1.0",

src/components/Canvas.vue

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
FUNCTIONALITY:
77
- Displays previous 'Canvas' grid functionality
8-
- Deprecated by OverVue v.10.0 but left as option for users who wish to use it
8+
- Soft-deprecated by OverVue v.10.0 but left as option for users who wish to use it
99
-->
1010

1111
<template>
@@ -650,18 +650,13 @@ const gridHeight = computed(() => {
650650
//methods
651651
const setActiveComponent: typeof store.setActiveComponent = (payload) =>
652652
store.setActiveComponent(payload);
653-
// const updateComponentChildrenMultiselectValue: typeof store.updateComponentChildrenMultiselectValue = (payload) =>
654-
// store.updateComponentChildrenMultiselectValue(payload);
655653
const updateActiveComponentChildrenValue: typeof store.updateActiveComponentChildrenValue =
656654
(payload) => store.updateActiveComponentChildrenValue(payload);
657655
const updateComponentPosition: typeof store.updateComponentPosition = (
658656
payload
659657
) => store.updateComponentPosition(payload);
660-
// const updateStartingPosition: typeof store.updateStartingPosition = (payload) =>
661-
// (payload);
662658
const updateComponentLayer: typeof store.updateComponentLayer = (payload) =>
663659
store.updateComponentLayer(payload);
664-
// const updateStartingSize: typeof store.updateStartingSize = (payload) => store.updateStartingSize(payload);
665660
const updateComponentSize: typeof store.updateComponentSize = (payload) =>
666661
store.updateComponentSize(payload);
667662
const addActiveComponentNote: typeof store.addActiveComponentNote = (payload) =>
@@ -1015,23 +1010,6 @@ li:hover {
10151010
background-color: rgba(223, 218, 218, 0.613);
10161011
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
10171012
background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
1018-
// background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1019-
// -webkit-linear-gradient(0, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1020-
// -webkit-linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
1021-
// -webkit-linear-gradient(0, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
1022-
// background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1023-
// -moz-linear-gradient(0, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1024-
// -moz-linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
1025-
// -moz-linear-gradient(0, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
1026-
// background-image: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1027-
// linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
1028-
// linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
1029-
// linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
1030-
// -pie-background: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px) -2px -2px / 100px,
1031-
// linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px) -2px -2px / 100px,
1032-
// linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px) -1px -1px / 20px,
1033-
// linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px) -1px -1px / 20px,
1034-
// $secondary;
10351013
behavior: url(/pie/PIE.htc);
10361014
}
10371015
@@ -1080,9 +1058,6 @@ li:hover {
10801058
}
10811059
10821060
.cssContainerText {
1083-
// display: flex;
1084-
// justify-content: center;
1085-
// align-content: center;
10861061
position: absolute;
10871062
text-align: center;
10881063
font-size: 4em;

src/components/right-sidebar/tutorial/AdvancedFunctions.vue

Lines changed: 31 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
11
<template>
22
<section id="advancedFunctions">
33
<h6 class="tutorialHeading">Advanced Functionality</h6>
4-
<h class="tutorial-sub-heading">Importing an existing component</h>
4+
<h class="tutorial-sub-heading">Import an existing component</h>
55
<p class="tutorialContent">
66
To import an existing Vue component file, click the import button in the
7-
upper right hand corner. Please note: this feature is specifically
8-
intended for import of json files saved in-app. Import of other file
9-
formats is not currently supported.
7+
upper right hand corner. Note: this feature is specifically intended for
8+
import of .json files saved in-app. Imports of other file formats is not
9+
currently supported.
1010
</p>
11-
<h class="tutorial-sub-heading">Adding Props</h>
11+
<h class="tutorial-sub-heading">Add props</h>
1212
<p class="tutorialContent">
13-
To add props, select the component and click the Props sub-menu in the
13+
To add props, select the component and click on the Props sub-menu in the
1414
Update Component menu in the left sidebar. Enter the name of the prop you
15-
want to add and click ‘+’ or press enter. Then select the added prop(s)
15+
want to add and click ‘+’ or press enter. Then, select the added prop(s)
1616
from the dropdown and click the 'Add' Prop(s)’ button. To remove a prop,
1717
click the ‘x’ icon on the right side of the prop.
1818
</p>
1919
<img
20-
alt="Add Props"
20+
alt="Add props"
2121
src="../../../assets/props.png"
2222
class="tut-screenshot"
2323
/>
24-
<h class="tutorial-sub-heading">Adding State or Actions</h>
24+
<h class="tutorial-sub-heading">Add state variables or actions</h>
2525
<p class="tutorialContent">
26-
To add state or actions to a component, they must first be added to the
27-
store. Under the Store tab, click on Store State or Store Actions, enter
28-
the name and click the ‘+’ or press enter. Then, select the component to
29-
which you want to add state or actions. In the State or Actions sub-menus
30-
in the Update Component menu of the left sidebar, select your desired
31-
state(s) or action(s) from the dropdown and click ‘Map State’ or ‘Map
32-
Actions’. To remove them, click the ‘x’ icon on the right side of the
33-
state or action.
26+
To add state variables or actions to a component, first add them to the
27+
store. Under the Store tab, click on State or Actions, enter a label, and
28+
click the ‘+’ or press enter. Then, select the component to which you want
29+
to add state variables or actions. In the State or Actions sub-menus
30+
within the Update Component menu in the left sidebar, select your desired
31+
state variable(s) or action(s) from the dropdown and click on ‘Map State’
32+
or ‘Map Action(s)’. To remove any, click the ‘x’ icon on the right side of
33+
the state variable or action.
3434
</p>
3535
<img
36-
alt="Store Tab"
36+
alt="Store tab"
3737
src="../../../assets/state-actions.png"
3838
class="tut-screenshot"
3939
/>
40-
<h class="tutorial-sub-heading">TypeScript Mode</h>
40+
<h class="tutorial-sub-heading">Enable TypeScript</h>
4141
<p class="tutorialContent">
42-
To turn TypeScript mode on or off, click on the Settings gear icon in the
43-
right corner of the nav bar and click the toggle at the bottom of the
44-
menu.
42+
To enable TypeScript, click on the Settings gear icon in the upper-right
43+
corner of the nav bar and toggle the "TypeScript" switch.
4544
</p>
4645
<img
47-
alt="TypeScript Toggle"
46+
alt="Enable TypeScript"
4847
src="../../../assets/typescript.png"
4948
class="tut-screenshot"
5049
/>
51-
<h class="tutorial-sub-heading">Toggle Main View</h>
50+
<h class="tutorial-sub-heading">Toggle between Tree Mode & Grid Mode</h>
5251
<p class="tutorialContent">
53-
To revert the main view to the grid view used in previous OverVue versions, click on
54-
the Settings gear icon in the right corner of the nav bar and toggle from Tree to Grid.
55-
<br/>
56-
<br/>
57-
Please note that some functionality may be disabled or broken, as this view is now considered
58-
deprecated.
52+
To revert the central user interface to the grid view used in previous
53+
OverVue versions, click on the Settings gear icon in the upper-right
54+
corner of the nav bar and toggle "Mode" from Tree to Grid.
55+
<br />
56+
<br />
57+
Disclaimer: some functionality may be disabled or broken, as this view is
58+
now considered deprecated.
5959
</p>
6060
<img
6161
alt="Main View Toggle"
@@ -72,11 +72,10 @@
7272
</section>
7373
</template>
7474

75-
<!-- COMPOSITION API SYNTAX -->
7675
<script setup lang="ts">
7776
import { useStore } from "../../../store/main.js";
78-
const store = useStore();
7977
78+
const store = useStore();
8079
const toggleTutorial = () => store.toggleTutorial();
8180
</script>
8281

0 commit comments

Comments
 (0)