qy-vue-plugins 0.1.2 → 0.1.3

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.
Files changed (39) hide show
  1. package/dist/index.d.ts +1 -16
  2. package/dist/mapbox/index.d.ts +5 -0
  3. package/dist/vue-plugins.es.js +29 -7790
  4. package/dist/vue-plugins.umd.js +1 -1
  5. package/package/index.ts +1 -18
  6. package/package/mapbox/index.ts +4 -0
  7. package/package/mapbox/widgets/CustomShapeDialog.vue +1 -1
  8. package/package/mapbox/widgets/LayerAttributeDialog.vue +1 -1
  9. package/package/mapbox/widgets/LayerDialog.vue +1 -1
  10. package/package/mapbox/widgets/LegendDialogLine.vue +1 -1
  11. package/package/mapbox/widgets/LegendDialogPoint.vue +1 -1
  12. package/package/mapbox/widgets/LegendPopLine.vue +1 -1
  13. package/package.json +3 -3
  14. package/dist/mapbox/MapView.vue.d.ts +0 -85
  15. package/dist/mapbox/components/MapLegend.vue.d.ts +0 -2
  16. package/dist/mapbox/components/MapTools.vue.d.ts +0 -3
  17. package/dist/mapbox/components/mapCompass.vue.d.ts +0 -2
  18. package/dist/mapbox/components/mapLayer.vue.d.ts +0 -2
  19. package/dist/mapbox/components/mapLevel.vue.d.ts +0 -22
  20. package/dist/mapbox/components/mapPitch.vue.d.ts +0 -2
  21. package/dist/mapbox/components/mapPos.vue.d.ts +0 -11
  22. package/dist/mapbox/components/mapTopic.vue.d.ts +0 -32
  23. package/dist/mapbox/widgets/CustomShapeDialog.vue.d.ts +0 -12
  24. package/dist/mapbox/widgets/IconPicker.vue.d.ts +0 -95
  25. package/dist/mapbox/widgets/LayerAttributeDialog.vue.d.ts +0 -6
  26. package/dist/mapbox/widgets/LayerDialog.vue.d.ts +0 -6
  27. package/dist/mapbox/widgets/LegendDialogLine.vue.d.ts +0 -6
  28. package/dist/mapbox/widgets/LegendDialogPoint.vue.d.ts +0 -6
  29. package/dist/mapbox/widgets/LegendLine.vue.d.ts +0 -17
  30. package/dist/mapbox/widgets/LegendPoint.vue.d.ts +0 -19
  31. package/dist/mapbox/widgets/LegendPopLine.vue.d.ts +0 -6
  32. package/dist/mapbox/widgets/LegendPopPoint.vue.d.ts +0 -6
  33. package/dist/mapbox/widgets/LegendShape.vue.d.ts +0 -19
  34. package/dist/mapbox/widgets/LegendSymbol.vue.d.ts +0 -17
  35. package/dist/mapbox/widgets/Point.vue.d.ts +0 -15
  36. package/dist/mapbox/widgets/ShapeDialog.vue.d.ts +0 -6
  37. package/dist/mapbox/widgets/TopicItemPop.vue.d.ts +0 -6
  38. package/dist/mapbox/widgets/TopicPop.vue.d.ts +0 -7
  39. package/dist/qy-vue-plugins.css +0 -1
package/dist/index.d.ts CHANGED
@@ -1,17 +1,7 @@
1
1
  import { default as compileTimePlugin } from './buildTime';
2
2
  import { isNewVersion, setBaseUrl } from './checkBuildTime';
3
- import { default as MapView } from './mapbox/MapView.vue';
4
- import { default as MapLayer } from './mapbox/components/mapLayer.vue';
5
- import { default as MapLevel } from './mapbox/components/mapLevel.vue';
6
- import { default as MapPos } from './mapbox/components/mapPos.vue';
7
- import { default as MapPitch } from './mapbox/components/mapPitch.vue';
8
- import { default as MapCompass } from './mapbox/components/mapCompass.vue';
9
- import { default as MapTopic } from './mapbox/components/mapTopic.vue';
10
- import { default as MapTools } from './mapbox/components/MapTools.vue';
11
- import { default as MapLegend } from './mapbox/components/MapLegend.vue';
12
- import { mapStyleChangedBus } from './mapbox/EventKeys';
13
3
 
14
- export { compileTimePlugin, isNewVersion, setBaseUrl, MapView, MapLayer, MapLevel, MapPos, MapPitch, MapCompass, MapTopic, MapTools, MapLegend, mapStyleChangedBus };
4
+ export { compileTimePlugin, isNewVersion, setBaseUrl };
15
5
  declare const _default: {
16
6
  compileTimePlugin: typeof compileTimePlugin;
17
7
  isNewVersion: (localVueVersion: number, interval: number | undefined, cb: (newVersion: number) => void) => Promise<{
@@ -19,8 +9,3 @@ declare const _default: {
19
9
  }>;
20
10
  };
21
11
  export default _default;
22
- export declare const VuePlugins: {
23
- install(Vue: any, { pinia }: {
24
- pinia: any;
25
- }): void;
26
- };
@@ -0,0 +1,5 @@
1
+ import { default as MapView } from './MapView.vue';
2
+ import { default as MapLayer } from './components/mapLayer.vue';
3
+ import { default as MapTopic } from './components/mapTopic.vue';
4
+
5
+ export { MapView, MapLayer, MapTopic };