-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
properly design nested variants for operations arrays, remove unneede…
…d provide/inject state for FormOperations, design more obvious visual feedback for deleting and moving operations
- Loading branch information
1 parent
12486fd
commit 2afa076
Showing
9 changed files
with
90 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import { createApp } from 'vue' | ||
import CssSelectorBuilder from './CssSelectorBuilder.vue' | ||
import FormOperations from './components/FormOperations.vue' | ||
import FormOperationsArrays from './components/FormOperationsArrays.vue' | ||
import './index.css' | ||
import '@fontsource/inconsolata/400.css' | ||
import '@fontsource/inter/400.css' | ||
import '@fontsource/inter/700.css' | ||
|
||
createApp(CssSelectorBuilder) | ||
.component('FormOperations', FormOperations) | ||
.component('FormOperationsArrays', FormOperationsArrays) | ||
.mount('#app') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
export const OPERATIONS_NESTED_STATUS_SYMBOL = Symbol('operations nested status') | ||
export const OPERATIONS_NESTING_LEVEL_SYMBOL = Symbol('operations nested level') | ||
|
||
export const OPERATIONS_ARRAYS_NESTED_STATUS_SYMBOL = Symbol('operations arrays nested status') | ||
export const OPERATIONS_ARRAYS_NESTING_LEVEL_SYMBOL = Symbol('operations arrays nested level') | ||
export const NESTED_STATUS_SYMBOL = Symbol('operations nested status') | ||
export const NESTING_LEVEL_SYMBOL = Symbol('nesting level') |