@spinnaker/amazon 0.14.0 → 0.14.2

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/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@spinnaker/amazon",
3
3
  "license": "Apache-2.0",
4
- "version": "0.14.0",
4
+ "version": "0.14.2",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
7
10
  "scripts": {
8
11
  "clean": "shx rm -rf dist",
9
12
  "prepublishOnly": "npm run build",
@@ -13,7 +16,7 @@
13
16
  "lib": "npm run build"
14
17
  },
15
18
  "dependencies": {
16
- "@spinnaker/core": "^0.25.0",
19
+ "@spinnaker/core": "^0.27.0",
17
20
  "@uirouter/angularjs": "1.0.26",
18
21
  "@uirouter/core": "6.0.8",
19
22
  "@uirouter/react": "1.0.7",
@@ -39,9 +42,9 @@
39
42
  "rxjs": "6.6.7"
40
43
  },
41
44
  "devDependencies": {
42
- "@spinnaker/eslint-plugin": "^3.0.1",
45
+ "@spinnaker/eslint-plugin": "^3.0.2",
43
46
  "@spinnaker/mocks": "1.0.7",
44
- "@spinnaker/scripts": "^0.3.0",
47
+ "@spinnaker/scripts": "^0.3.1",
45
48
  "@types/angular": "1.6.26",
46
49
  "@types/angular-ui-bootstrap": "0.13.41",
47
50
  "@types/classnames": "2.2.0",
@@ -55,5 +58,5 @@
55
58
  "shx": "0.3.3",
56
59
  "typescript": "4.3.5"
57
60
  },
58
- "gitHead": "8de1e3c576a24ce9a62290f86bc52772df4842d2"
61
+ "gitHead": "217b75396c5ec25d9b2019a849593b0b8d52e916"
59
62
  }
@@ -107,7 +107,7 @@ export const StepPolicyAction = ({
107
107
  value={step.metricIntervalLowerBound}
108
108
  max={step.metricIntervalUpperBound}
109
109
  onChange={(e) =>
110
- updateStep({ ...step, metricIntervalLowerBound: Number.parseInt(e.target.value) }, index)
110
+ updateStep({ ...step, metricIntervalLowerBound: Number.parseFloat(e.target.value) }, index)
111
111
  }
112
112
  inputClassName="action-input"
113
113
  />
@@ -122,7 +122,7 @@ export const StepPolicyAction = ({
122
122
  value={step.metricIntervalUpperBound}
123
123
  min={step.metricIntervalLowerBound}
124
124
  onChange={(e) =>
125
- updateStep({ ...step, metricIntervalUpperBound: Number.parseInt(e.target.value) }, index)
125
+ updateStep({ ...step, metricIntervalUpperBound: Number.parseFloat(e.target.value) }, index)
126
126
  }
127
127
  inputClassName="action-input"
128
128
  />