Skip to content

Commit 9ae6bad

Browse files
committed
fix typo; update block for supporting multi-root block
1 parent 3505861 commit 9ae6bad

File tree

21 files changed

+807
-37
lines changed

21 files changed

+807
-37
lines changed

build.ls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spinners.map ->
3838
fs.write-file-sync "dist/entries/#it/index.min.css", css-min
3939
fs.write-file-sync "dist/entries/#it/index.html", html
4040
fs.write-file-sync "dist/#it.html", html-css
41-
fs.write-file-sync path.join(weblib, "#it.html"), "<div>#html-css</div>"
41+
fs.write-file-sync path.join(weblib, "#it.html"), html-css
4242
mixin-pug = src.pug.replace /^([^: ]+)([: ])/, "$1&attributes(attributes)$2"
4343
all-pug += """
4444
mixin lds-#it()

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@loadingio/bootstrap.ext": "^0.0.1",
2222
"@loadingio/ldcolorpicker": "^2.0.2",
2323
"@loadingio/ldquery": "^2.1.0",
24-
"@plotdb/block": "^2.0.6",
24+
"@plotdb/block": "^2.0.7",
2525
"@plotdb/csscope": "^2.0.0",
2626
"@plotdb/rescope": "^3.0.0",
2727
"@zbryikt/template": "^2.3.18",

web/.view/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/src/pug/index.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ html
3636
.w-50.mx-auto(ld="gallery")
3737
.row.text-center
3838
.col-sm: .item(ld="spinner",data-name="circle"): +lds-circle
39-
.col-sm: .item(ld="spinner",data-name="ring"): +lds-dual-ring
39+
.col-sm: .item(ld="spinner",data-name="dual-ring"): +lds-dual-ring
4040
.col-sm: .item(ld="spinner",data-name="facebook"): +lds-facebook
4141
.row.text-center
4242
.col-sm: .item(ld="spinner",data-name="heart"): +lds-heart

web/static/assets/lib/@loadingio/css-spinner/dev/circle.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div><style type="text/css">
1+
<style type="text/css">
22
.lds-circle,
33
.lds-circle div {
44
box-sizing: border-box;
@@ -33,4 +33,4 @@
3333
}
3434

3535
</style>
36-
<div class="lds-circle"><div></div></div></div>
36+
<div class="lds-circle"><div></div></div>

web/static/assets/lib/@loadingio/css-spinner/dev/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div><style type="text/css">
1+
<style type="text/css">
22
.lds-default,
33
.lds-default div {
44
box-sizing: border-box;
@@ -87,4 +87,4 @@
8787
}
8888

8989
</style>
90-
<div class="lds-default"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>
90+
<div class="lds-default"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>

web/static/assets/lib/@loadingio/css-spinner/dev/dual-ring.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div><style type="text/css">
1+
<style type="text/css">
22
.lds-dual-ring,
33
.lds-dual-ring:after {
44
box-sizing: border-box;
@@ -29,4 +29,4 @@
2929
}
3030

3131
</style>
32-
<div class="lds-dual-ring"></div></div>
32+
<div class="lds-dual-ring"></div>

web/static/assets/lib/@loadingio/css-spinner/dev/ellipsis.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div><style type="text/css">
1+
<style type="text/css">
22
.lds-ellipsis,
33
.lds-ellipsis div {
44
box-sizing: border-box;
@@ -60,4 +60,4 @@
6060
}
6161

6262
</style>
63-
<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div></div>
63+
<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>

web/static/assets/lib/@loadingio/css-spinner/dev/facebook.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div><style type="text/css">
1+
<style type="text/css">
22
.lds-facebook,
33
.lds-facebook div {
44
box-sizing: border-box;
@@ -41,4 +41,4 @@
4141
}
4242

4343
</style>
44-
<div class="lds-facebook"><div></div><div></div><div></div></div></div>
44+
<div class="lds-facebook"><div></div><div></div><div></div></div>

0 commit comments

Comments
 (0)