@oneclick.dev/cms-kit 0.0.8 → 0.0.10
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 +6 -6
- package/dist/index.css +1 -1
- package/dist/index.es.js +109 -81
- package/dist/types/lib/composables/useBreadcrumbs.d.ts +1 -0
- package/dist/types/lib/composables/useIntegrationActionBuilder.d.ts +1 -1
- package/dist/types/lib/composables/useIntegrationActions.d.ts +1 -1
- package/dist/types/lib/composables/useIntegrations.d.ts +1 -1
- package/dist/types/lib/composables/useMediaLibrary.d.ts +1 -0
- package/dist/types/lib/composables/useProjectService.d.ts +1 -0
- package/dist/types/lib/composables/useQueryBuilder.d.ts +1 -0
- package/dist/types/lib/injections.d.ts +2 -8
- package/package.json +1 -1
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
useIntegrations: () => Promise<typeof import('../types/virtual-cms.d.ts').useIntegrations>;
|
|
4
|
-
useIntegrationActions: () => Promise<typeof import('../types/virtual-cms.d.ts').useIntegrationActions>;
|
|
5
|
-
};
|
|
6
|
-
export declare function getCmsKitDependency(name: keyof typeof dependencyMap): (() => Promise<typeof import('../types/virtual-cms.d.ts').useIntegrationActionBuilder>) | (() => Promise<typeof import('../types/virtual-cms.d.ts').useIntegrations>) | (() => Promise<typeof import('../types/virtual-cms.d.ts').useIntegrationActions>);
|
|
7
|
-
export declare function setCmsKitDependency(name: keyof typeof dependencyMap, loader: () => Promise<any>): void;
|
|
8
|
-
export {};
|
|
1
|
+
export declare function setCmsKitDependency(name: string, value: any): void;
|
|
2
|
+
export declare function getCmsKitDependency<T = any>(name: string): T;
|