@community-release/nx-ui 0.0.15 → 0.0.16
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/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -168,6 +168,7 @@ const module = defineNuxtModule({
|
|
|
168
168
|
getContents: () => generateComponentsDefaults(options)
|
|
169
169
|
});
|
|
170
170
|
const componentsProps = readComponentsProps(resolve, srcDir, options);
|
|
171
|
+
console.log("nx-ui componentsProps", componentsProps);
|
|
171
172
|
for (let componentName in componentsProps) {
|
|
172
173
|
addTemplate({
|
|
173
174
|
filename: `ui.${componentName}.mjs`,
|
|
@@ -65,7 +65,7 @@ export const useMapStore: import("pinia").StoreDefinition<"map", {
|
|
|
65
65
|
* Set map coord
|
|
66
66
|
* @param {MapCoord} v
|
|
67
67
|
*/
|
|
68
|
-
setCoord(v:
|
|
68
|
+
setCoord(v: MapCoord): void;
|
|
69
69
|
/**
|
|
70
70
|
* Enable/disable device zoom, if call withour params then toggle current state
|
|
71
71
|
* @param {boolean=} v
|
|
@@ -110,5 +110,5 @@ export type MapCoord = any[];
|
|
|
110
110
|
* Map Marker
|
|
111
111
|
*/
|
|
112
112
|
export type MapMarker = {
|
|
113
|
-
coord:
|
|
113
|
+
coord: MapCoord;
|
|
114
114
|
};
|