update components
This commit is contained in:
parent
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
25
dashboard-ui/bower_components/prism/tests/languages/less/atrule_feature.test
vendored
Normal file
25
dashboard-ui/bower_components/prism/tests/languages/less/atrule_feature.test
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
@media {}
|
||||
@media screen and (min-width: 320px) {}
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["atrule", [
|
||||
"@media"
|
||||
]],
|
||||
["punctuation", "{"], ["punctuation", "}"],
|
||||
|
||||
["atrule", [
|
||||
"@media screen and ",
|
||||
["punctuation", "("],
|
||||
"min-width",
|
||||
["punctuation", ":"],
|
||||
" 320px",
|
||||
["punctuation", ")"]
|
||||
]],
|
||||
["punctuation", "{"], ["punctuation", "}"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for at-rules.
|
18
dashboard-ui/bower_components/prism/tests/languages/less/comment_feature.test
vendored
Normal file
18
dashboard-ui/bower_components/prism/tests/languages/less/comment_feature.test
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
//
|
||||
// foobar
|
||||
/**/
|
||||
/* foo
|
||||
bar */
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["comment", "//"],
|
||||
["comment", "// foobar"],
|
||||
["comment", "/**/"],
|
||||
["comment", "/* foo\r\nbar */"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for single-line and multi-line comments.
|
14
dashboard-ui/bower_components/prism/tests/languages/less/operator_feature.test
vendored
Normal file
14
dashboard-ui/bower_components/prism/tests/languages/less/operator_feature.test
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
+ - * /
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["operator", "+"],
|
||||
["operator", "-"],
|
||||
["operator", "*"],
|
||||
["operator", "/"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for operators.
|
19
dashboard-ui/bower_components/prism/tests/languages/less/property_feature.test
vendored
Normal file
19
dashboard-ui/bower_components/prism/tests/languages/less/property_feature.test
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
font-weight:
|
||||
@{foobar} :
|
||||
background-@{foo}:
|
||||
box-shadow+:
|
||||
transform+_:
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["property", "font-weight"], ["punctuation", ":"],
|
||||
["property", "@{foobar}"], ["punctuation", ":"],
|
||||
["property", "background-@{foo}"], ["punctuation", ":"],
|
||||
["property", "box-shadow+"], ["punctuation", ":"],
|
||||
["property", "transform+_"], ["punctuation", ":"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for properties.
|
24
dashboard-ui/bower_components/prism/tests/languages/less/selector_feature.test
vendored
Normal file
24
dashboard-ui/bower_components/prism/tests/languages/less/selector_feature.test
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
.bordered {}
|
||||
.@{foo} {}
|
||||
.foo (@bg: #fff, @color: #000) {}
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["selector", [".bordered"]],
|
||||
["punctuation", "{"], ["punctuation", "}"],
|
||||
["selector", [".@{foo}"]],
|
||||
["punctuation", "{"], ["punctuation", "}"],
|
||||
["selector", [
|
||||
".foo (",
|
||||
["variable", "@bg"],
|
||||
": #fff, ",
|
||||
["variable", "@color"],
|
||||
": #000)"
|
||||
]],
|
||||
["punctuation", "{"], ["punctuation", "}"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for selectors and mixin declarations.
|
Loading…
Add table
Add a link
Reference in a new issue