@das-fed/ui 6.4.0-dev.55.15 → 6.4.0-dev.55.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/esm-map.json +1 -0
- package/package.json +5 -5
- package/packages/business-components/change-pwd/index.js +21 -21
- package/packages/business-components/change-pwd/index.js.gz +0 -0
- package/packages/components/cascader/index.d.ts +225 -7
- package/packages/components/cascader/index.js +65 -64
- package/packages/components/cascader/index.js.gz +0 -0
- package/packages/components/cascader/src/Index.vue.d.ts +2 -2
- package/packages/components/cascader/style.css +1 -1
- package/packages/components/cascader/style.css.gz +0 -0
- package/packages/components/date-picker/index.d.ts +3 -3
- package/packages/components/date-picker/src/DateRangePicker.vue.d.ts +1 -1
- package/packages/components/form-item/index.js +823 -821
- package/packages/components/form-item/index.js.gz +0 -0
- package/packages/components/form-item/src/type.d.ts +2 -0
- package/packages/components/form-item/style.css +1 -1
- package/packages/components/form-item/style.css.gz +0 -0
- package/packages/components/map/i18n/index.d.ts +10 -0
- package/packages/components/map/index.js +1101 -838
- package/packages/components/map/index.js.gz +0 -0
- package/packages/components/map/src/get-sdk-config.d.ts +1 -1
- package/packages/components/map/src/hooks/use-baidu.d.ts +1 -11
- package/packages/components/map/src/hooks/use-gaode.d.ts +1 -11
- package/packages/components/map/src/hooks/use-google.d.ts +16 -0
- package/packages/components/map/src/hooks/use-map.d.ts +2 -0
- package/packages/components/map/src/type.d.ts +1 -1
- package/packages/components/map/style.css +1 -1
- package/packages/components/rich-editor/index.js +1049 -1048
- package/packages/components/rich-editor/index.js.gz +0 -0
- package/packages/components/rich-editor/src/type.d.ts +3 -0
- package/packages/components/search-form/index.js +436 -435
- package/packages/components/search-form/index.js.gz +0 -0
- package/packages/components/search-form/style.css +1 -1
- 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
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.das-map[data-v-
|
|
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%}
|