@griddo/core 10.1.77 → 10.1.79
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.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface RichTextConfig {
|
|
2
|
+
/** Class names configuration for the paragraph options */
|
|
3
|
+
paragraphStyles?: Array<{
|
|
4
|
+
/** The label that appears in the Griddo rich-text editor */
|
|
5
|
+
label: string;
|
|
6
|
+
/**
|
|
7
|
+
* The class name without the dot
|
|
8
|
+
* @example
|
|
9
|
+
* className: "big-text"
|
|
10
|
+
*/
|
|
11
|
+
className: string;
|
|
12
|
+
}>;
|
|
13
|
+
}
|
|
@@ -7,7 +7,8 @@ import { Footer, Header } from "./HeaderFooter";
|
|
|
7
7
|
import { Languages } from "./Languages";
|
|
8
8
|
import { Menu, MenuItem } from "./Menu";
|
|
9
9
|
import { ModuleCategories } from "./ModuleCategories";
|
|
10
|
+
import { RichTextConfig } from "./RichTextConfig";
|
|
10
11
|
import { Themes } from "./Themes";
|
|
11
12
|
import { Translations } from "./Translations";
|
|
12
13
|
import { Component, ContentTypeModule, ListTemplate, Module, MultiPageComponent, MultiPageModule, Template } from "./UI";
|
|
13
|
-
export { AutoTypesConfig, CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, SimpleContentType, Template, Themes, Translations, };
|
|
14
|
+
export { AutoTypesConfig, CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, RichTextConfig, SimpleContentType, Template, Themes, Translations, };
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@griddo/core",
|
|
3
3
|
"description": "Reload version of Griddo Core",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
|
-
"version": "10.1.
|
|
5
|
+
"version": "10.1.79",
|
|
6
6
|
"authors": [
|
|
7
7
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
8
8
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"resolutions": {
|
|
79
79
|
"colors": "1.4.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "7983caa7394962e73188ec16d3335997293056ca"
|
|
82
82
|
}
|