@gis_victory/gismap 2.0.99 → 2.0.101
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/gismap.css +1 -1
- package/dist/index.d.ts +29 -2
- package/dist/index.es.js +2 -2
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -637,6 +637,19 @@ declare interface ClassProvider<T> {
|
|
|
637
637
|
singleton?: boolean;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
|
+
export declare const CompareDragPage: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
641
|
+
ready: (...args: any[]) => void;
|
|
642
|
+
}, string, PublicProps, Readonly<Props_2> & Readonly<{
|
|
643
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
644
|
+
}>, {
|
|
645
|
+
defaultDirection: "vertical" | "horizontal";
|
|
646
|
+
layerVisible: boolean;
|
|
647
|
+
leftData: any;
|
|
648
|
+
rightData: any;
|
|
649
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
650
|
+
comparePageContainer: HTMLDivElement;
|
|
651
|
+
}, HTMLDivElement>;
|
|
652
|
+
|
|
640
653
|
declare type CompareEventType = 'slideend';
|
|
641
654
|
|
|
642
655
|
declare interface CompareOptions {
|
|
@@ -644,9 +657,9 @@ declare interface CompareOptions {
|
|
|
644
657
|
mousemove?: boolean;
|
|
645
658
|
}
|
|
646
659
|
|
|
647
|
-
export declare const
|
|
660
|
+
export declare const CompareSplitPage: DefineComponent<Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
648
661
|
ready: (...args: any[]) => void;
|
|
649
|
-
}, string, PublicProps, Readonly<
|
|
662
|
+
}, string, PublicProps, Readonly<Props_3> & Readonly<{
|
|
650
663
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
651
664
|
}>, {
|
|
652
665
|
defaultDirection: "vertical" | "horizontal";
|
|
@@ -7681,6 +7694,20 @@ declare interface Props_2 {
|
|
|
7681
7694
|
rightData?: any;
|
|
7682
7695
|
}
|
|
7683
7696
|
|
|
7697
|
+
declare interface Props_3 {
|
|
7698
|
+
/** 分割方向 */
|
|
7699
|
+
defaultDirection?: 'vertical' | 'horizontal';
|
|
7700
|
+
layerVisible?: boolean;
|
|
7701
|
+
mapOptions?: any;
|
|
7702
|
+
initIcons?: Array<{
|
|
7703
|
+
name: string;
|
|
7704
|
+
url: string;
|
|
7705
|
+
}>;
|
|
7706
|
+
initData?: any;
|
|
7707
|
+
leftData?: any;
|
|
7708
|
+
rightData?: any;
|
|
7709
|
+
}
|
|
7710
|
+
|
|
7684
7711
|
/** 地图提供者
|
|
7685
7712
|
* 在应用或组件树的顶层使用
|
|
7686
7713
|
*/
|