Merge branch 'louisgv-fuse-ux'
This commit is contained in:
commit
e3256d13bc
|
@ -0,0 +1,12 @@
|
||||||
|
<App>
|
||||||
|
<DockPanel>
|
||||||
|
<StatusBarBackground Dock="Top" />
|
||||||
|
<ScrollView ClipToBounds="true">
|
||||||
|
<StackPanel>
|
||||||
|
<Text FontSize="30">Hello, world!</Text>
|
||||||
|
<Slider/>
|
||||||
|
<Button Text="Button" />
|
||||||
|
<Switch Alignment="Left" /> </StackPanel>
|
||||||
|
</ScrollView>
|
||||||
|
</DockPanel>
|
||||||
|
</App>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<App> <DockPanel> <StatusBarBackground Dock="Top"/> <ScrollView ClipToBounds="true"> <StackPanel> <Text FontSize="30">Hello, world!</Text> <Slider/> <Button Text="Button"/> <Switch Alignment="Left"/> </StackPanel> </ScrollView> </DockPanel>
|
||||||
|
</App>
|
|
@ -102,6 +102,10 @@
|
||||||
{
|
{
|
||||||
"name": "Émile Bergeron",
|
"name": "Émile Bergeron",
|
||||||
"url": "https://github.com/emileber"
|
"url": "https://github.com/emileber"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Louis G Vichy",
|
||||||
|
"url": "https://github.com/louisgv"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
@ -61,6 +61,7 @@ module.exports = class PrettyDiff extends Beautifier
|
||||||
Twig: true
|
Twig: true
|
||||||
LESS: true
|
LESS: true
|
||||||
Swig: true
|
Swig: true
|
||||||
|
UX: true
|
||||||
Visualforce: true
|
Visualforce: true
|
||||||
"Riot.js": true
|
"Riot.js": true
|
||||||
XTemplate: true
|
XTemplate: true
|
||||||
|
@ -89,7 +90,7 @@ module.exports = class PrettyDiff extends Beautifier
|
||||||
lang = "markup"
|
lang = "markup"
|
||||||
when "XML", "Visualforce", "SVG"
|
when "XML", "Visualforce", "SVG"
|
||||||
lang = "xml"
|
lang = "xml"
|
||||||
when "HTML"
|
when "HTML", "UX"
|
||||||
lang = "html"
|
lang = "html"
|
||||||
when "JavaScript"
|
when "JavaScript"
|
||||||
lang = "javascript"
|
lang = "javascript"
|
||||||
|
|
|
@ -66,6 +66,7 @@ module.exports = class Languages
|
||||||
"tss"
|
"tss"
|
||||||
"twig"
|
"twig"
|
||||||
"typescript"
|
"typescript"
|
||||||
|
"ux"
|
||||||
"vala"
|
"vala"
|
||||||
"vue"
|
"vue"
|
||||||
"visualforce"
|
"visualforce"
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "UX"
|
||||||
|
namespace: "ux"
|
||||||
|
fallback: ['html']
|
||||||
|
|
||||||
|
###
|
||||||
|
Supported Grammars
|
||||||
|
###
|
||||||
|
grammars: [
|
||||||
|
"UX"
|
||||||
|
]
|
||||||
|
|
||||||
|
###
|
||||||
|
Supported extensions
|
||||||
|
###
|
||||||
|
extensions: [
|
||||||
|
"ux"
|
||||||
|
]
|
||||||
|
|
||||||
|
defaultBeautifier: "Pretty Diff"
|
||||||
|
}
|
Loading…
Reference in New Issue