@pageboard/html 0.14.35 → 0.14.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -102,22 +102,26 @@ exports.style = {
102
102
  const: null,
103
103
  title: 'Default',
104
104
  icon: '<span class="icon">∅</span>'
105
+ }, {
106
+ const: 'tiny',
107
+ title: 'Tiny',
108
+ icon: '<span class="icon char" style="font-size:0.6em;margin-inline:0.6rem">aA</span>'
105
109
  }, {
106
110
  const: 'small',
107
111
  title: 'Small',
108
- icon: '<span class="icon char" style="font-size:0.6em">aA</span>'
112
+ icon: '<span class="icon char" style="font-size:0.8em;margin-inline:0.6rem">aA</span>'
109
113
  }, {
110
114
  const: 'base',
111
115
  title: 'Base',
112
- icon: '<span class="icon char" style="font-size:0.8em">aA</span>'
116
+ icon: '<span class="icon char" style="font-size:1em;margin-inline:0.6rem">aA</span>'
113
117
  }, {
114
118
  const: 'large',
115
119
  title: 'Large',
116
- icon: '<span class="icon char" style="font-size:1.2em">aA</span>'
120
+ icon: '<span class="icon char" style="font-size:1.2em;margin-inline:0.6rem">aA</span>'
117
121
  }, {
118
122
  const: 'extra',
119
123
  title: 'Extra',
120
- icon: '<span class="icon char" style="font-size:1.6em">aA</span>'
124
+ icon: '<span class="icon char" style="font-size:1.6em;margin-inline:0.6rem">aA</span>'
121
125
  }]
122
126
  },
123
127
  transform: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageboard/html",
3
- "version": "0.14.35",
3
+ "version": "0.14.36",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -16,7 +16,7 @@
16
16
  "dependencies": {},
17
17
  "devDependencies": {
18
18
  "nouislider": "^15.7.1",
19
- "postinstall": "^0.8.0"
19
+ "postinstall": "^0.9.0"
20
20
  },
21
21
  "postinstall": {},
22
22
  "prepare": {
package/ui/form.js CHANGED
@@ -357,7 +357,7 @@ class HTMLElementForm extends Page.create(HTMLFormElement) {
357
357
  form.backup();
358
358
  }
359
359
 
360
- const loc = Page.parse(redirect.fuse({}, scope));
360
+ const loc = Page.parse(redirect).fuse({}, scope);
361
361
  let vary = false;
362
362
  if (loc.samePathname(state)) {
363
363
  if (res.granted) {
package/ui/inlines.css CHANGED
@@ -37,6 +37,9 @@ span.blue {
37
37
  span.purple {
38
38
  color: purple;
39
39
  }
40
+ span.tiny {
41
+ font-size: 0.5715em;
42
+ }
40
43
  span.small {
41
44
  font-size: 0.8em;
42
45
  }
package/ui/layout.css CHANGED
@@ -34,6 +34,17 @@
34
34
  &.column {
35
35
  flex-direction: column;
36
36
  align-items:stretch;
37
+
38
+ & > img,
39
+ &.left > img {
40
+ align-self:flex-start;
41
+ }
42
+ &.hcenter > img {
43
+ align-self:center;
44
+ }
45
+ &.right > img {
46
+ align-self:flex-end;
47
+ }
37
48
  }
38
49
 
39
50
  &.top {
@@ -67,17 +78,7 @@
67
78
  justify-content: flex-end;
68
79
  }
69
80
 
70
- &.column {
71
- > img, &.left > img {
72
- align-self:flex-start;
73
- }
74
- &.hcenter > img {
75
- align-self:center;
76
- }
77
- &.right > img {
78
- align-self:flex-end;
79
- }
80
- }
81
+
81
82
 
82
83
  &.fullwidth {
83
84
  width:100%;