@carto/ps-react-maps 3.3.0 → 3.4.0
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.
|
@@ -13,7 +13,7 @@ export type QuadbinQuerySource = {
|
|
|
13
13
|
} & OmitQuery<QuadbinQuerySourceOptions>;
|
|
14
14
|
export type BoundaryQuerySource = {
|
|
15
15
|
type: 'query+boundary';
|
|
16
|
-
} & _Omit<BoundaryQuerySourceOptions, '
|
|
16
|
+
} & _Omit<BoundaryQuerySourceOptions, 'propertiesSqlQuery'>;
|
|
17
17
|
export type AllQuerySource = QuerySource | H3QuerySource | QuadbinQuerySource | BoundaryQuerySource;
|
|
18
18
|
export type TilesetSource = {
|
|
19
19
|
type: 'tileset';
|
|
@@ -39,7 +39,7 @@ export type QuadbinTableSource = {
|
|
|
39
39
|
} & OmitTable<QuadbinTableSourceOptions>;
|
|
40
40
|
export type BoundaryTableSource = {
|
|
41
41
|
type: 'table+boundary';
|
|
42
|
-
} & _Omit<BoundaryTableSourceOptions, '
|
|
42
|
+
} & _Omit<BoundaryTableSourceOptions, 'propertiesTableName'>;
|
|
43
43
|
export type AllTableSource = TableSource | h3TableSource | QuadbinTableSource | BoundaryTableSource;
|
|
44
44
|
export type RasterQuadbinTilesetSource = {
|
|
45
45
|
type: 'raster';
|
|
@@ -9,7 +9,7 @@ export declare function useLegend<T>(layersId: string[], callback: (layer: Layer
|
|
|
9
9
|
id: string;
|
|
10
10
|
opacity: number;
|
|
11
11
|
}) => void;
|
|
12
|
-
|
|
12
|
+
onChangeRowCollapse: ({ id, collapsed }: {
|
|
13
13
|
id: string;
|
|
14
14
|
collapsed: boolean;
|
|
15
15
|
}) => void;
|