@das-fed/ui 6.4.0-dev.55.15 → 6.4.0-dev.55.17

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 (34) hide show
  1. package/esm-map.json +1 -0
  2. package/package.json +5 -5
  3. package/packages/business-components/change-pwd/index.js +21 -21
  4. package/packages/business-components/change-pwd/index.js.gz +0 -0
  5. package/packages/components/cascader/index.d.ts +225 -7
  6. package/packages/components/cascader/index.js +65 -64
  7. package/packages/components/cascader/index.js.gz +0 -0
  8. package/packages/components/cascader/src/Index.vue.d.ts +2 -2
  9. package/packages/components/cascader/style.css +1 -1
  10. package/packages/components/cascader/style.css.gz +0 -0
  11. package/packages/components/date-picker/index.d.ts +3 -3
  12. package/packages/components/date-picker/src/DateRangePicker.vue.d.ts +1 -1
  13. package/packages/components/form-item/index.js +823 -821
  14. package/packages/components/form-item/index.js.gz +0 -0
  15. package/packages/components/form-item/src/type.d.ts +2 -0
  16. package/packages/components/form-item/style.css +1 -1
  17. package/packages/components/form-item/style.css.gz +0 -0
  18. package/packages/components/map/i18n/index.d.ts +10 -0
  19. package/packages/components/map/index.js +1101 -838
  20. package/packages/components/map/index.js.gz +0 -0
  21. package/packages/components/map/src/get-sdk-config.d.ts +1 -1
  22. package/packages/components/map/src/hooks/use-baidu.d.ts +1 -11
  23. package/packages/components/map/src/hooks/use-gaode.d.ts +1 -11
  24. package/packages/components/map/src/hooks/use-google.d.ts +16 -0
  25. package/packages/components/map/src/hooks/use-map.d.ts +2 -0
  26. package/packages/components/map/src/type.d.ts +1 -1
  27. package/packages/components/map/style.css +1 -1
  28. package/packages/components/rich-editor/index.js +1049 -1048
  29. package/packages/components/rich-editor/index.js.gz +0 -0
  30. package/packages/components/rich-editor/src/type.d.ts +3 -0
  31. package/packages/components/search-form/index.js +537 -514
  32. package/packages/components/search-form/index.js.gz +0 -0
  33. package/packages/components/search-form/style.css +1 -1
  34. package/packages/components/search-form/style.css.gz +0 -0
Binary file
@@ -1 +1 @@
1
- export declare const getSDKConfig: (type?: "baidu" | "gaode") => Promise<any[]>;
1
+ export declare const getSDKConfig: (type?: "baidu" | "gaode" | "google") => Promise<any[]>;
@@ -1,15 +1,5 @@
1
1
  import type { Props } from '../type';
2
- export declare const useBaiduMap: ({ BMap, map, marker, mapLoading, $autocomplete, searchResultList, innerInput, innerPoint, adCode }: {
3
- BMap: any;
4
- map: any;
5
- marker: any;
6
- mapLoading: any;
7
- $autocomplete: any;
8
- searchResultList: any;
9
- innerInput: any;
10
- innerPoint: any;
11
- adCode: any;
12
- }, props?: Props) => {
2
+ export declare const useBaiduMap: ({ BMap, map, marker, mapLoading, $autocomplete, searchResultList, innerInput, innerPoint, adCode, addressInfo }: any, props?: Props) => {
13
3
  getLocationByInputSearch: (address: string, cb: any) => void;
14
4
  handleSelectAddress: (item: any) => void;
15
5
  getLocationParse: () => import("element-plus").MessageHandler | undefined;
@@ -1,15 +1,5 @@
1
1
  import type { Props } from '../type';
2
- export declare const useGaodeMap: ({ MapGL, map, marker, mapLoading, $autocomplete, searchResultList, innerInput, innerPoint, adCode }: {
3
- MapGL: any;
4
- map: any;
5
- marker: any;
6
- mapLoading: any;
7
- $autocomplete: any;
8
- searchResultList: any;
9
- innerInput: any;
10
- innerPoint: any;
11
- adCode: any;
12
- }, props?: Props) => {
2
+ export declare const useGaodeMap: ({ MapGL, map, marker, mapLoading, $autocomplete, searchResultList, innerInput, innerPoint, adCode, addressInfo }: any, props?: Props) => {
13
3
  getLocationByInputSearch: (address: string, cb: any) => void;
14
4
  handleSelectAddress: (item: any) => void;
15
5
  getLocationParse: () => Promise<import("element-plus").MessageHandler | undefined>;
@@ -0,0 +1,16 @@
1
+ import type { Props } from '../type';
2
+ export declare const useGoogleMap: ({ MapGL, map, marker, mapLoading, $autocomplete, searchResultList, innerInput, innerPoint, adCode, addressInfo }: any, props?: Props) => {
3
+ getLocationByInputSearch: (address: string, cb: any) => Promise<any>;
4
+ handleSelectAddress: (item: any) => void;
5
+ getLocationParse: () => Promise<import("element-plus").MessageHandler | undefined>;
6
+ getMapInfo: () => {
7
+ longitude: any;
8
+ latitude: any;
9
+ adCode: any;
10
+ address: any;
11
+ addressInfo: any;
12
+ };
13
+ loadJavascript: (akValue: string, secretKey?: any, config?: any, cb?: () => void) => Promise<void>;
14
+ positionCityLocal: () => Promise<void>;
15
+ showGetLocationBtn: import("vue").Ref<any, any>;
16
+ };
@@ -10,4 +10,6 @@ export declare const useMap: (props: MapProps, emits: MapEmits) => {
10
10
  getLocationParse: () => void;
11
11
  mapLoading: import("vue").Ref<boolean, boolean>;
12
12
  $autocomplete: import("vue").Ref<any, any>;
13
+ googlePositionCityLocal: () => Promise<void>;
14
+ showGetLocationBtn: import("vue").Ref<any, any>;
13
15
  };
@@ -53,7 +53,7 @@ export interface MapProps {
53
53
  sdkConfig?: {
54
54
  akValue?: string
55
55
  secretKey?: string
56
- mapType?: 'baidu' | 'gaode'
56
+ mapType?: 'baidu' | 'gaode' | 'google'
57
57
  }
58
58
 
59
59
 
@@ -1 +1 @@
1
- .das-map[data-v-8350a643]{position:relative}.das-map .search-input[data-v-8350a643]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map #map[data-v-8350a643]{width:100%;height:100%}.das-map[data-v-54b081bc]{position:relative}.das-map .search-input[data-v-54b081bc]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map #map[data-v-54b081bc]{width:100%;height:100%}.das-map[data-v-ecb395cb]{position:relative}.das-map .search-input[data-v-ecb395cb]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map #map[data-v-ecb395cb]{width:100%;height:100%}
1
+ .das-map[data-v-e88a8400]{position:relative}.das-map .search-input[data-v-e88a8400]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map #map[data-v-e88a8400]{width:100%;height:100%}.das-map[data-v-6ea9d854]{position:relative}.das-map .search-input[data-v-6ea9d854]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map #map[data-v-6ea9d854]{width:100%;height:100%}.das-map[data-v-3bb806bb]{position:relative}.das-map .search-input[data-v-3bb806bb]{position:absolute;top:20px;left:20px;width:400px;z-index:999}.das-map .location-icon1[data-v-3bb806bb]{position:absolute;width:100%;height:100%;z-index:998;display:flex;align-items:center;justify-content:center;background-color:#e5e3df}.das-map #map[data-v-3bb806bb]{width:100%;height:100%}