From 1ceebfbf1f58322d05c184ec91b734715cc1f05d Mon Sep 17 00:00:00 2001 From: sgateau Date: Fri, 9 Apr 2021 15:34:05 +0200 Subject: [PATCH] license --- NOTICE.txt | 3 +++ package.json | 3 ++- src/iotMapManager/css/map.css | 2 +- src/iotMapManager/css/markers.css | 2 +- src/iotMapManager/css/popup.css | 2 +- src/iotMapManager/css/tabs.css | 2 +- src/iotMapManager/import_png.d.ts | 14 ++++++++++++++ src/iotMapManager/index.ts | 2 +- src/iotMapManager/iot-map-manager.css | 2 +- src/iotMapManager/package.json | 5 +++-- src/iotMapManager/readme.md | 6 +++--- src/iotMapManager/src/iot-map-cluster-manager.ts | 2 +- src/iotMapManager/src/iot-map-cluster.ts | 2 +- src/iotMapManager/src/iot-map-common-svg.ts | 2 +- src/iotMapManager/src/iot-map-config.ts | 2 +- src/iotMapManager/src/iot-map-icons.ts | 2 +- src/iotMapManager/src/iot-map-manager.ts | 2 +- src/iotMapManager/src/iot-map-marker-manager.ts | 2 +- src/iotMapManager/src/iot-map-marker.ts | 2 +- src/iotMapManager/src/iot-map-path-manager.ts | 2 +- src/iotMapManager/src/iot-map-path.ts | 2 +- src/iotMapManager/src/iot-map-types.ts | 2 +- .../src/iot-map-user-marker-manager.ts | 2 +- src/iotMapManager/src/iot-map-user-marker.ts | 2 +- 24 files changed, 44 insertions(+), 25 deletions(-) diff --git a/NOTICE.txt b/NOTICE.txt index fb7a2e64..85791907 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -37,5 +37,8 @@ doc/Image5.png doc/Image6.png src/iotMapManager/src/iot-map-icons.ts +src/iotMapManager/src/iot-map-common-svg.ts +src/iotMapManager/img/*.png + End of the parts list under Orange SA Copyright diff --git a/package.json b/package.json index f0af9992..d3aea64c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "build": "ng build", "lint": "eslint src/iotMapManager/**/*.ts", "test": "echo \"Error: no test specified\" && exit 1", - "storybook": "start-storybook -s ./src/iotMapManager/img:/assets/img -p 6006", + "storybook": "start-storybook", "build-storybook": "build-storybook -o ./docs && mkdir -p docs/assets/img && cp src/iotMapManager/img/* docs/assets/img/", "deploy-storybook": "git add docs && git commit -m 'chore(storybook): deploy' --allow-empty && git subtree split --branch gh-pages --prefix docs && git push origin gh-pages -f && echo 'Storybook successfully deployed'" }, @@ -60,6 +60,7 @@ "@types/leaflet.markercluster": "^1.4.3", "boosted": "^4.6.0", "iotmapmanager": "^2.0.1", + "iotmapmanager-test": "0.0.22", "leaflet": "^1.6.0", "leaflet.markercluster": "^1.4.1", "zone.js": "^0.11.3" diff --git a/src/iotMapManager/css/map.css b/src/iotMapManager/css/map.css index c85ab448..1752ab8a 100644 --- a/src/iotMapManager/css/map.css +++ b/src/iotMapManager/css/map.css @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/css/markers.css b/src/iotMapManager/css/markers.css index c914fc05..9f7628ac 100644 --- a/src/iotMapManager/css/markers.css +++ b/src/iotMapManager/css/markers.css @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/css/popup.css b/src/iotMapManager/css/popup.css index 5f984a20..329e8462 100644 --- a/src/iotMapManager/css/popup.css +++ b/src/iotMapManager/css/popup.css @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/css/tabs.css b/src/iotMapManager/css/tabs.css index 9571baaf..e4efce71 100644 --- a/src/iotMapManager/css/tabs.css +++ b/src/iotMapManager/css/tabs.css @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/import_png.d.ts b/src/iotMapManager/import_png.d.ts index 0ede291e..bcedf4e6 100644 --- a/src/iotMapManager/import_png.d.ts +++ b/src/iotMapManager/import_png.d.ts @@ -1,3 +1,17 @@ +/* +* Software Name : IotMapManager +* Version: 2.1.0 +* SPDX-FileCopyrightText: Copyright (c) 2020 Orange +* SPDX-License-Identifier: MIT +* +* This software is distributed under the MIT License, +* the text of which is available at https://github.com/Orange-OpenSource/IOT-Map-Component/blob/master/LICENSE +* or see the "license.txt" file for more details. +* +* Author: S. Gateau +* Software description: provide markers, tabs, clusters and paths dedicated to iot projects using mapping +*/ + declare module '*.png' { const value: any // eslint-disable-line @typescript-eslint/no-explicit-any export default value diff --git a/src/iotMapManager/index.ts b/src/iotMapManager/index.ts index 17cd0187..5b48a602 100644 --- a/src/iotMapManager/index.ts +++ b/src/iotMapManager/index.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/iot-map-manager.css b/src/iotMapManager/iot-map-manager.css index f74dbb27..c98bccf3 100644 --- a/src/iotMapManager/iot-map-manager.css +++ b/src/iotMapManager/iot-map-manager.css @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/package.json b/src/iotMapManager/package.json index 4bd2354e..2068722a 100644 --- a/src/iotMapManager/package.json +++ b/src/iotMapManager/package.json @@ -1,6 +1,6 @@ { "name": "iotmapmanager", - "version": "2.0.1", + "version": "2.1.0", "description": "Manage markers, clusters, user marker or paths on IotMaps", "main": "dist/index.js", "scripts": { @@ -28,7 +28,8 @@ "IotMap", "Markers", "Clusters", - "UserMarker" + "UserMarker", + "Path" ], "author": "sandrinegateau", "license": "MIT", diff --git a/src/iotMapManager/readme.md b/src/iotMapManager/readme.md index 51d873e7..099dc4c6 100644 --- a/src/iotMapManager/readme.md +++ b/src/iotMapManager/readme.md @@ -1,4 +1,4 @@ -# IotMapManager V2.0.1 +# IotMapManager V2.1.0 This library provides management of markers dedicated to projects using mapping. ## use @@ -110,8 +110,8 @@ color | string | no | color to display is gauge and popup ``` { location: Location - direction?: number - accuracy?: number + direction?: number (0-360) + accuracy?: number (in meters) } ``` diff --git a/src/iotMapManager/src/iot-map-cluster-manager.ts b/src/iotMapManager/src/iot-map-cluster-manager.ts index 39649c33..cf27cae0 100644 --- a/src/iotMapManager/src/iot-map-cluster-manager.ts +++ b/src/iotMapManager/src/iot-map-cluster-manager.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-cluster.ts b/src/iotMapManager/src/iot-map-cluster.ts index 71c4bb26..a19d6b7b 100644 --- a/src/iotMapManager/src/iot-map-cluster.ts +++ b/src/iotMapManager/src/iot-map-cluster.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-common-svg.ts b/src/iotMapManager/src/iot-map-common-svg.ts index e8b9954d..f140a608 100644 --- a/src/iotMapManager/src/iot-map-common-svg.ts +++ b/src/iotMapManager/src/iot-map-common-svg.ts @@ -1,6 +1,6 @@ /* * Software Name: IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-config.ts b/src/iotMapManager/src/iot-map-config.ts index 87187ebf..dd52edf1 100644 --- a/src/iotMapManager/src/iot-map-config.ts +++ b/src/iotMapManager/src/iot-map-config.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-icons.ts b/src/iotMapManager/src/iot-map-icons.ts index 5b416670..24742fe2 100644 --- a/src/iotMapManager/src/iot-map-icons.ts +++ b/src/iotMapManager/src/iot-map-icons.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-manager.ts b/src/iotMapManager/src/iot-map-manager.ts index eb0bafdc..b10d946f 100644 --- a/src/iotMapManager/src/iot-map-manager.ts +++ b/src/iotMapManager/src/iot-map-manager.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-marker-manager.ts b/src/iotMapManager/src/iot-map-marker-manager.ts index 4c0b94f0..9d307150 100644 --- a/src/iotMapManager/src/iot-map-marker-manager.ts +++ b/src/iotMapManager/src/iot-map-marker-manager.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-marker.ts b/src/iotMapManager/src/iot-map-marker.ts index 9699361d..cc73557b 100644 --- a/src/iotMapManager/src/iot-map-marker.ts +++ b/src/iotMapManager/src/iot-map-marker.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-path-manager.ts b/src/iotMapManager/src/iot-map-path-manager.ts index 541afef6..2c58fc85 100644 --- a/src/iotMapManager/src/iot-map-path-manager.ts +++ b/src/iotMapManager/src/iot-map-path-manager.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-path.ts b/src/iotMapManager/src/iot-map-path.ts index b0db18f6..c3100521 100644 --- a/src/iotMapManager/src/iot-map-path.ts +++ b/src/iotMapManager/src/iot-map-path.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-types.ts b/src/iotMapManager/src/iot-map-types.ts index 8fe09f8a..2c26b283 100644 --- a/src/iotMapManager/src/iot-map-types.ts +++ b/src/iotMapManager/src/iot-map-types.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-user-marker-manager.ts b/src/iotMapManager/src/iot-map-user-marker-manager.ts index e81bdaf3..525c03f1 100644 --- a/src/iotMapManager/src/iot-map-user-marker-manager.ts +++ b/src/iotMapManager/src/iot-map-user-marker-manager.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT * diff --git a/src/iotMapManager/src/iot-map-user-marker.ts b/src/iotMapManager/src/iot-map-user-marker.ts index cc886ed0..ae8296d2 100644 --- a/src/iotMapManager/src/iot-map-user-marker.ts +++ b/src/iotMapManager/src/iot-map-user-marker.ts @@ -1,6 +1,6 @@ /* * Software Name : IotMapManager -* Version: 2.0.1 +* Version: 2.1.0 * SPDX-FileCopyrightText: Copyright (c) 2020 Orange * SPDX-License-Identifier: MIT *