@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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "ui",
3
3
  "configKey": "ui",
4
- "version": "0.0.15"
4
+ "version": "0.0.16"
5
5
  }
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: any[]): void;
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: any[];
113
+ coord: MapCoord;
114
114
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@community-release/nx-ui",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "nx-ui - Nuxt UI library",
5
5
  "repository": {
6
6
  "type": "git",