@htmlbricks/hb-paragraps-around-image 0.71.35 → 0.71.37
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.
- package/README.md +104 -19
- package/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +38 -15
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +11 -8
- package/types/webcomponent.type.d.ts +2 -2
package/manifest.json
CHANGED
|
@@ -41,19 +41,22 @@
|
|
|
41
41
|
"type": "string"
|
|
42
42
|
},
|
|
43
43
|
"paragraphs": {
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
"anyOf": [
|
|
45
|
+
{
|
|
46
|
+
"items": {
|
|
47
|
+
"$ref": "#/definitions/Paragraphs"
|
|
48
|
+
},
|
|
49
|
+
"type": "array"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"type": "string"
|
|
53
|
+
}
|
|
54
|
+
]
|
|
48
55
|
},
|
|
49
56
|
"style": {
|
|
50
57
|
"type": "string"
|
|
51
58
|
}
|
|
52
59
|
},
|
|
53
|
-
"required": [
|
|
54
|
-
"paragraphs",
|
|
55
|
-
"img"
|
|
56
|
-
],
|
|
57
60
|
"type": "object"
|
|
58
61
|
},
|
|
59
62
|
"Paragraphs": {
|
|
@@ -100,13 +103,33 @@
|
|
|
100
103
|
}
|
|
101
104
|
},
|
|
102
105
|
"styleSetup": {
|
|
103
|
-
"vars": [
|
|
104
|
-
|
|
106
|
+
"vars": [
|
|
107
|
+
{
|
|
108
|
+
"name": "--bulma-block-spacing",
|
|
109
|
+
"valueType": "number",
|
|
110
|
+
"defaultValue": "1.5rem",
|
|
111
|
+
"description": "Horizontal padding for left/right columns (`.col`)."
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "--bulma-text",
|
|
115
|
+
"valueType": "color",
|
|
116
|
+
"defaultValue": "#363636",
|
|
117
|
+
"description": "Default body text (inherited by nested `hb-paragraps-around-image-cell`)."
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "--bulma-link",
|
|
121
|
+
"valueType": "color",
|
|
122
|
+
"defaultValue": "#485fc7",
|
|
123
|
+
"description": "Title links and interactive affordances inside child cells."
|
|
124
|
+
},
|
|
105
125
|
{
|
|
106
|
-
"name": "
|
|
107
|
-
"
|
|
126
|
+
"name": "--bulma-text-strong",
|
|
127
|
+
"valueType": "color",
|
|
128
|
+
"defaultValue": "#363636",
|
|
129
|
+
"description": "Strong / title weight copy where the theme distinguishes it."
|
|
108
130
|
}
|
|
109
|
-
]
|
|
131
|
+
],
|
|
132
|
+
"parts": []
|
|
110
133
|
},
|
|
111
134
|
"contributors": [],
|
|
112
135
|
"htmlSlots": [],
|
|
@@ -230,7 +253,7 @@
|
|
|
230
253
|
}
|
|
231
254
|
}
|
|
232
255
|
],
|
|
233
|
-
"iifeIntegrity": "sha384-
|
|
256
|
+
"iifeIntegrity": "sha384-PPW35VelI2DOdv/ztGfo64aNcL8/7aRe1YkmIKa8HZKqAgw3CxEwE9otbmXhtFsf",
|
|
234
257
|
"dependencies": [
|
|
235
258
|
{
|
|
236
259
|
"name": "hb-paragraps-around-image-cell",
|
|
@@ -255,5 +278,5 @@
|
|
|
255
278
|
"size": {},
|
|
256
279
|
"iifePath": "main.iife.js",
|
|
257
280
|
"repoName": "@htmlbricks/hb-paragraps-around-image",
|
|
258
|
-
"version": "0.71.
|
|
281
|
+
"version": "0.71.37"
|
|
259
282
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-paragraps-around-image",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.37",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Editorial block with a central image and up to six text blocks in two side columns using hb-paragraps-around-image-cell (indices 0,2,4 left; 1,3,5 right). Parses paragraphs from JSON and bubbles paragraphPressed when a cell fires it.",
|
|
6
6
|
"licenses": [
|
|
@@ -12,19 +12,22 @@
|
|
|
12
12
|
"type": "string"
|
|
13
13
|
},
|
|
14
14
|
"paragraphs": {
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
"anyOf": [
|
|
16
|
+
{
|
|
17
|
+
"items": {
|
|
18
|
+
"$ref": "#/definitions/Paragraphs"
|
|
19
|
+
},
|
|
20
|
+
"type": "array"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
19
26
|
},
|
|
20
27
|
"style": {
|
|
21
28
|
"type": "string"
|
|
22
29
|
}
|
|
23
30
|
},
|
|
24
|
-
"required": [
|
|
25
|
-
"paragraphs",
|
|
26
|
-
"img"
|
|
27
|
-
],
|
|
28
31
|
"type": "object"
|
|
29
32
|
},
|
|
30
33
|
"Paragraphs": {
|