@nimbus-ds/patterns 1.31.3 → 1.32.0
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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Editor/index.d.ts +1 -0
- package/dist/Editor/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus is an open-source Design System created by Tiendanube / Nuvesmhop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
|
|
4
4
|
|
|
5
|
+
## 2026-02-23 `1.32.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added Editor `renderModules` prop to allow customization of the toolbar. (by [@edersoares](https://github.com/edersoares))
|
|
10
|
+
|
|
5
11
|
## 2026-02-13 `1.31.3`
|
|
6
12
|
|
|
7
13
|
#### 🐛 Bug fixes
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus is an open-source Design System created by Tiendanube / Nuvesmhop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
|
|
4
4
|
|
|
5
|
+
## 2026-02-23 `1.32.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added Editor `renderModules` prop to allow customization of the toolbar. (by [@edersoares](https://github.com/edersoares))
|
|
10
|
+
|
|
5
11
|
## 2026-02-13 `1.31.3`
|
|
6
12
|
|
|
7
13
|
#### 🐛 Bug fixes
|
package/dist/Editor/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export type Module = "bold" | "clearFormating" | "orderedList" | "unorderedList"
|
|
|
18
18
|
export type Parser = "html" | "json";
|
|
19
19
|
export interface EditorProperties {
|
|
20
20
|
modules?: Module;
|
|
21
|
+
renderModules?: Module[];
|
|
21
22
|
placeholder?: string;
|
|
22
23
|
value?: string;
|
|
23
24
|
parser?: Parser;
|