narrat 3.13.0 → 3.13.1
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/config/common-config.d.ts +4 -0
- package/dist/config/config-input.d.ts +8 -0
- package/dist/data/all-stores.d.ts +10 -0
- package/dist/{index-Gx1E8WyM.js → index-YhGcpzut.js} +2 -2
- package/dist/{index-Gx1E8WyM.js.map → index-YhGcpzut.js.map} +1 -1
- package/dist/{lib-15bAC0zq.js → lib-8JmD9qCn.js} +133 -130
- package/dist/lib-8JmD9qCn.js.map +1 -0
- package/dist/narrat.es.js +1 -1
- package/dist/narrat.umd.js +30 -30
- package/dist/narrat.umd.js.map +1 -1
- package/dist/stores/main-store.d.ts +8 -0
- package/dist/utils/data-helpers.d.ts +2 -0
- package/package.json +1 -1
- package/dist/lib-15bAC0zq.js.map +0 -1
|
@@ -526,6 +526,8 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
526
526
|
saves?: {
|
|
527
527
|
runOnReload?: string | undefined;
|
|
528
528
|
disabled?: boolean | undefined;
|
|
529
|
+
autosaveDisabledOnLabels?: string[] | undefined;
|
|
530
|
+
notifyOnSave?: boolean | undefined;
|
|
529
531
|
slots: number;
|
|
530
532
|
mode: string;
|
|
531
533
|
} | undefined;
|
|
@@ -1198,6 +1200,8 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
1198
1200
|
saves?: {
|
|
1199
1201
|
runOnReload?: string | undefined;
|
|
1200
1202
|
disabled?: boolean | undefined;
|
|
1203
|
+
autosaveDisabledOnLabels?: string[] | undefined;
|
|
1204
|
+
notifyOnSave?: boolean | undefined;
|
|
1201
1205
|
slots: number;
|
|
1202
1206
|
mode: string;
|
|
1203
1207
|
} | undefined;
|
|
@@ -1870,6 +1874,8 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
1870
1874
|
saves?: {
|
|
1871
1875
|
runOnReload?: string | undefined;
|
|
1872
1876
|
disabled?: boolean | undefined;
|
|
1877
|
+
autosaveDisabledOnLabels?: string[] | undefined;
|
|
1878
|
+
notifyOnSave?: boolean | undefined;
|
|
1873
1879
|
slots: number;
|
|
1874
1880
|
mode: string;
|
|
1875
1881
|
} | undefined;
|
|
@@ -2542,6 +2548,8 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
2542
2548
|
saves?: {
|
|
2543
2549
|
runOnReload?: string | undefined;
|
|
2544
2550
|
disabled?: boolean | undefined;
|
|
2551
|
+
autosaveDisabledOnLabels?: string[] | undefined;
|
|
2552
|
+
notifyOnSave?: boolean | undefined;
|
|
2545
2553
|
slots: number;
|
|
2546
2554
|
mode: string;
|
|
2547
2555
|
} | undefined;
|
|
@@ -488,6 +488,8 @@ export declare function getModifiableDataPinia(): {
|
|
|
488
488
|
saves?: {
|
|
489
489
|
runOnReload?: string | undefined;
|
|
490
490
|
disabled?: boolean | undefined;
|
|
491
|
+
autosaveDisabledOnLabels?: string[] | undefined;
|
|
492
|
+
notifyOnSave?: boolean | undefined;
|
|
491
493
|
slots: number;
|
|
492
494
|
mode: string;
|
|
493
495
|
} | undefined;
|