@oneclick.dev/cms-kit 0.0.18 → 0.0.19
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.cjs.js +2 -2
- package/dist/index.es.js +3 -1
- package/dist/types/lib/composables.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -77599,6 +77599,7 @@ const useModulePermissions = () => getCmsComposable("cms-useModulePermissions");
|
|
|
77599
77599
|
const useFirebaseIntegration = () => getCmsComposable("cms-useFirebaseIntegration");
|
|
77600
77600
|
const useNavigateToModuleRoute = () => getCmsComposable("cms-useNavigateToModuleRoute");
|
|
77601
77601
|
const useModuleStorage = () => getCmsComposable("cms-useModuleStorage");
|
|
77602
|
+
const useLogs = () => getCmsComposable("cms-useLogs");
|
|
77602
77603
|
const _sfc_main$3g = /* @__PURE__ */ defineComponent({
|
|
77603
77604
|
__name: "InterpolationField",
|
|
77604
77605
|
props: {
|
|
@@ -122566,7 +122567,7 @@ const _sfc_main$1_ = /* @__PURE__ */ defineComponent({
|
|
|
122566
122567
|
return 0;
|
|
122567
122568
|
});
|
|
122568
122569
|
});
|
|
122569
|
-
watch(() => activeSourceId.value, async () => {
|
|
122570
|
+
watch$1(() => activeSourceId.value, async () => {
|
|
122570
122571
|
activeSource.value = await getMediaSource(project.value, activeSourceId.value);
|
|
122571
122572
|
setEffectiveBasePath();
|
|
122572
122573
|
currentPath.value = activeSource.value.path;
|
|
@@ -142314,6 +142315,7 @@ export {
|
|
|
142314
142315
|
useIntegrationActions$1 as useIntegrationActions,
|
|
142315
142316
|
useIntegrations,
|
|
142316
142317
|
useLayout,
|
|
142318
|
+
useLogs,
|
|
142317
142319
|
useMediaLibrary$1 as useMediaLibrary,
|
|
142318
142320
|
useModulePermissions,
|
|
142319
142321
|
useModuleStorage,
|
|
@@ -35,4 +35,10 @@ type UseModuleStorage = () => {
|
|
|
35
35
|
clearModuleData: () => void;
|
|
36
36
|
};
|
|
37
37
|
export declare const useModuleStorage: () => UseModuleStorage;
|
|
38
|
+
type UseLogs = () => {
|
|
39
|
+
log: (message: string, data?: any) => void;
|
|
40
|
+
logWarning: (message: string, data?: any) => void;
|
|
41
|
+
logError: (message: string, data?: any) => void;
|
|
42
|
+
};
|
|
43
|
+
export declare const useLogs: () => UseLogs;
|
|
38
44
|
export {};
|