@blinkmobile/angular-location
Advanced tools
Comparing version
@@ -5,2 +5,8 @@ # Changelog | ||
## 2.1.0 (2017-08-14) | ||
### Added | ||
- ON-1555: Add `ob-*` classes | ||
## 2.0.1 (2017-10-17) | ||
@@ -7,0 +13,0 @@ |
# CSS Selectors | ||
*Note* `bm-*` style css selectors are deprecated and will be removed in a future version. | ||
@@ -9,5 +10,5 @@ ## Components | ||
- `.bm-location__map-container` | ||
- `.ob-location__map-container` | ||
- `.bm-location__map` | ||
- `.ob-location__map` | ||
@@ -17,5 +18,5 @@ | ||
- `.bm-location__map-container` | ||
- `.ob-location__map-container` | ||
- `.bm-location__map` | ||
- `.ob-location__map` | ||
@@ -25,20 +26,18 @@ | ||
- `.bm-location` | ||
- `.ob-location` | ||
- `.bm-location__map-container` | ||
- `.ob-location__map-container` | ||
- `.bm-location__map` | ||
- `.ob-location__map` | ||
- `.bm-location__button-container` with `.bm-button-container` | ||
- `.ob-location__button-container` with `.ob-button-container` | ||
- `.bm-location__button` with `.bm-button` | ||
- `.ob-location__button` with `.ob-button` | ||
- `.bm-location__button-cancel` with `.bm-button` and `.bm-button-cancel` | ||
- `.ob-location__button-cancel` with `.ob-button` and `.ob-button__cancel` | ||
- `.bm-location__button-findme` with `.bm-button` and `.bm-button-findme` | ||
- `.ob-location__button-confirm` with `.ob-button` and `.ob-button__confirm` | ||
- `.bm-location__button-confirm` with `.bm-button` and `.bm-button-confirm` | ||
- `.ob-location__button-clear` with `.ob-button` and `.ob-button__clear` | ||
- `.bm-location__button-clear` with `.bm-button` and `.bm-button-clear` | ||
- `.bm-location__button-edit` with `.bm-button` and `.bm-button-edit` | ||
- `.ob-location__button-edit` with `.ob-button` and `.ob-button__edit` |
@@ -114,3 +114,3 @@ /* @flow */ | ||
template: ` | ||
<div class="bm-location"> | ||
<div class="bm-location ob-location"> | ||
<bm-location-on-map | ||
@@ -125,3 +125,3 @@ coords="$ctrl.coords" | ||
<div | ||
class="bm-button-container bm-location__button-container" | ||
class="bm-button-container bm-location__button-container ob-button-container ob-location__button-container" | ||
ng-if="!$ctrl.ngDisabled && !$ctrl.ngReadonly" | ||
@@ -131,3 +131,3 @@ > | ||
<button type="button" | ||
class="bm-button bm-button-cancel bm-location__button bm-location__button-cancel" | ||
class="bm-button bm-button-cancel bm-location__button bm-location__button-cancel ob-button ob-button__cancel ob-location__button ob-location__button-cancel" | ||
ng-if="$ctrl.isEditing" | ||
@@ -137,3 +137,3 @@ ng-click="$ctrl.onCancel()" | ||
<button type="button" | ||
class="bm-button bm-button-confirm bm-location__button bm-location__button-confirm" | ||
class="bm-button bm-button-confirm bm-location__button bm-location__button-confirm ob-button ob-button__confirm ob-location__button ob-location__button-confirm" | ||
ng-if="$ctrl.isEditing" | ||
@@ -144,3 +144,3 @@ ng-click="$ctrl.onConfirm()" | ||
<button type="button" | ||
class="bm-button bm-button-clear bm-location__button bm-location__button-clear" | ||
class="bm-button bm-button-clear bm-location__button bm-location__button-clear ob-button ob-button__clear ob-button-clear ob-location__button ob-location__button-clear" | ||
ng-if="!$ctrl.isEditing" | ||
@@ -150,3 +150,3 @@ ng-click="$ctrl.onClear()" | ||
<button type="button" | ||
class="bm-button bm-button-edit bm-location__button bm-location__button-edit" | ||
class="bm-button bm-button-edit bm-location__button bm-location__button-edit ob-button ob-button__edit ob-location__button ob-location__button-edit" | ||
ng-if="!$ctrl.isEditing" | ||
@@ -153,0 +153,0 @@ ng-click="$ctrl.onEdit()" |
@@ -103,3 +103,3 @@ /* @flow */ | ||
<figure | ||
class="bm-location__map-container" | ||
class="bm-location__map-container ob-location__map-container" | ||
ng-if="!$ctrl.ngDisabled" | ||
@@ -110,3 +110,3 @@ map-lazy-load="https://maps.google.com/maps/api/js" | ||
<ng-map | ||
class="bm-location__map" | ||
class="bm-location__map ob-location__map" | ||
ng-style="{{$ctrl.style}}" | ||
@@ -113,0 +113,0 @@ center="{{$ctrl.center()}}" |
@@ -92,4 +92,4 @@ /* @flow */ | ||
template: ` | ||
<figure class="bm-location__map-container"> | ||
<img class="bm-location__map" ng-src="{{$ctrl.imgSrc()}}" alt="{{$ctrl.title()}}" height="{{$ctrl.height}}" width="{{$ctrl.height}}" /> | ||
<figure class="bm-location__map-container ob-location__map-container"> | ||
<img class="bm-location__map ob-location__map" ng-src="{{$ctrl.imgSrc()}}" alt="{{$ctrl.title()}}" height="{{$ctrl.height}}" width="{{$ctrl.height}}" /> | ||
</figure> | ||
@@ -96,0 +96,0 @@ ` |
{ | ||
"name": "@blinkmobile/angular-location", | ||
"description": "Angular 1.x components for maps and geolocation", | ||
"version": "2.0.1", | ||
"version": "2.1.0", | ||
"author": "BlinkMobile <developers@blinkmobile.com.au> (https://github.com/blinkmobile)", | ||
@@ -20,5 +20,5 @@ "bugs": { | ||
"angular-mocks": "^1.6.1", | ||
"babel-core": "^6.25.0", | ||
"babel-core": "^6.26.3", | ||
"babel-loader": "^7.1.1", | ||
"babel-preset-env": "^1.6.0", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
@@ -32,3 +32,6 @@ "eslint": "^3.13.1", | ||
"flow-bin": "^0.39.0", | ||
"jest": "^19.0.0", | ||
"istanbul": "^0.4.5", | ||
"istanbul-api": "1.2.2", | ||
"istanbul-reports": "1.1.4", | ||
"jest": "^22.4.2", | ||
"webpack": "^3.5.4" | ||
@@ -46,3 +49,5 @@ }, | ||
"jest": { | ||
"verbose": true, | ||
"collectCoverage": true, | ||
"testURL": "http://localhost/", | ||
"coverageThreshold": { | ||
@@ -49,0 +54,0 @@ "global": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
354273
0.35%18
20%1
Infinity%