5htp-core 0.4.9-95 → 0.4.9-97
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/package.json +1 -1
- package/src/client/assets/css/components/other.less +1 -0
- package/src/client/assets/css/text/text.less +2 -2
- package/src/client/components/button.tsx +0 -2
- package/src/client/components/inputv3/Rte/nodes/ImageComponent.tsx +403 -404
- package/src/client/components/inputv3/Rte/nodes/ImageNode.tsx +229 -213
- package/src/client/components/inputv3/Rte/nodes/PollComponent.tsx +6 -10
- package/src/client/components/inputv3/Rte/nodes/PollNode.tsx +3 -3
- package/src/client/components/inputv3/Rte/themes/PlaygroundEditorTheme.css +0 -22
- package/src/client/components/inputv3/Rte/themes/PlaygroundEditorTheme.ts +3 -3
- package/src/server/app/container/console/index.ts +3 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp-core",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.4.9-
|
|
4
|
+
"version": "0.4.9-97",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-core.git",
|
|
7
7
|
"license": "MIT",
|
|
@@ -182,7 +182,7 @@ pre {
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
code {
|
|
185
|
-
padding: @spacing @readingMargin;
|
|
185
|
+
//padding: @spacing @readingMargin;
|
|
186
186
|
text-align: left;
|
|
187
187
|
font-size: 1rem;
|
|
188
188
|
line-height: 2em;
|
|
@@ -206,7 +206,7 @@ pre {
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
figcaption {
|
|
209
|
-
margin-top: @spacing;
|
|
209
|
+
margin-top: @spacing / 2;
|
|
210
210
|
font-style: italic;
|
|
211
211
|
text-align: center;
|
|
212
212
|
}
|