@mirantes-micro/foundation-design-system 1.2.91 → 1.2.92
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/dist/index.d.ts +2 -0
- package/dist/index.js +135 -135
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1538,6 +1538,7 @@ type ArticleState = {
|
|
|
1538
1538
|
isSaved: boolean;
|
|
1539
1539
|
isDraft: boolean;
|
|
1540
1540
|
isPublishing: boolean;
|
|
1541
|
+
isSavingDraft: boolean;
|
|
1541
1542
|
lastSavedAt: Date | null;
|
|
1542
1543
|
setTitle: (title: string) => void;
|
|
1543
1544
|
setContent: (content: string) => void;
|
|
@@ -1554,6 +1555,7 @@ type ArticleState = {
|
|
|
1554
1555
|
closeModal: () => void;
|
|
1555
1556
|
setIsSaved: (isSaved: boolean) => void;
|
|
1556
1557
|
setIsPublishing: (isPublishing: boolean) => void;
|
|
1558
|
+
setIsSavingDraft: (isSavingDraft: boolean) => void;
|
|
1557
1559
|
markAsSaved: () => void;
|
|
1558
1560
|
resetArticle: () => void;
|
|
1559
1561
|
};
|