@nextgis/control-container
Advanced tools
Comparing version 0.29.5 to 0.29.11
@@ -6,2 +6,18 @@ # Change Log | ||
## [0.29.11](https://github.com/nextgis/nextgisweb_frontend/compare/v0.29.10...v0.29.11) (2020-04-22) | ||
### Features | ||
* **cancelable-promise:** throw CancelError instead of onCancel callback ([7b7ef11](https://github.com/nextgis/nextgisweb_frontend/commit/7b7ef112db2ead4fc02bac14eb61534d570b8a65)) | ||
### BREAKING CHANGES | ||
* **cancelable-promise:** Removed onCancel argument from CancelablePromise. Now you should handle catch CancelError | ||
## [0.29.5](https://github.com/nextgis/nextgisweb_frontend/compare/v0.29.4...v0.29.5) (2020-04-15) | ||
@@ -8,0 +24,0 @@ |
import './ControlContainer.css'; | ||
import WebMap, { ControlPositions, MapControl } from '@nextgis/webmap'; | ||
import { ControlPositions, MapControl } from '@nextgis/webmap'; | ||
import { ZoomControl } from './controls/ZoomControl'; | ||
export interface ControlContainerOptions { | ||
target?: string; | ||
classPrefix?: string; | ||
addClass?: string; | ||
webMap?: WebMap; | ||
} | ||
import { ControlContainerOptions } from './interfaces'; | ||
export declare class ControlContainer { | ||
@@ -11,0 +6,0 @@ static controls: { |
@@ -1,3 +0,3 @@ | ||
import { ControlContainer, ControlContainerOptions } from './ControlContainer'; | ||
export { ControlContainerOptions }; | ||
import { ControlContainer } from './ControlContainer'; | ||
export * from './interfaces'; | ||
export default ControlContainer; |
{ | ||
"name": "@nextgis/control-container", | ||
"version": "0.29.5", | ||
"version": "0.29.11", | ||
"description": "Placing control elements in the corners of the map container", | ||
@@ -9,9 +9,9 @@ "main": "lib/control-container.js", | ||
"dependencies": { | ||
"@nextgis/dom": "^0.29.5", | ||
"@nextgis/utils": "^0.29.5", | ||
"@nextgis/webmap": "^0.29.5", | ||
"@nextgis/dom": "^0.29.11", | ||
"@nextgis/utils": "^0.29.11", | ||
"@nextgis/webmap": "^0.29.11", | ||
"events": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"@nextgis/build-tools": "^0.29.5", | ||
"@nextgis/build-tools": "^0.29.11", | ||
"install": "^0.13.0", | ||
@@ -50,3 +50,3 @@ "mini-css-extract-plugin": "^0.9.0", | ||
}, | ||
"gitHead": "3236ec8ae1440899c6f1dfef803375c7aa4d56e4" | ||
"gitHead": "759133edce171d81d38b6894a26f42de2129cc2a" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93897
12
364
Updated@nextgis/dom@^0.29.11
Updated@nextgis/utils@^0.29.11
Updated@nextgis/webmap@^0.29.11