@spinnaker/azure 0.3.10 → 0.3.12
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/CHANGELOG.md +22 -0
- package/dist/azure.settings.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/loadBalancer/configure/AzureLoadBalancerChoiceModal.d.ts +2 -2
- package/dist/serverGroup/details/rollback/RollbackServerGroupModal.d.ts +2 -1
- package/package.json +6 -6
- package/src/azure.settings.ts +2 -1
- package/src/loadBalancer/configure/AzureLoadBalancerChoiceModal.tsx +4 -9
- package/src/serverGroup/details/rollback/RollbackServerGroupModal.tsx +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ILoadBalancerModalProps } from '@spinnaker/core';
|
|
3
|
-
import { IAzureLoadBalancer } from '../../utility';
|
|
2
|
+
import type { ILoadBalancerModalProps } from '@spinnaker/core';
|
|
3
|
+
import type { IAzureLoadBalancer } from '../../utility';
|
|
4
4
|
export interface IAzureLoadBalancerChoiceModalState {
|
|
5
5
|
choices: IAzureLoadBalancer[];
|
|
6
6
|
selectedChoice: IAzureLoadBalancer;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IModalComponentProps
|
|
2
|
+
import type { IModalComponentProps } from '@spinnaker/core';
|
|
3
|
+
import { TaskMonitor } from '@spinnaker/core';
|
|
3
4
|
export interface IAzureRollbackServerGroupModalProps extends IModalComponentProps {
|
|
4
5
|
application: any;
|
|
5
6
|
serverGroup: any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spinnaker/azure",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.12",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"lib": "npm run build"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@spinnaker/core": "^0.
|
|
16
|
+
"@spinnaker/core": "^0.14.0",
|
|
17
17
|
"@uirouter/angularjs": "1.0.26",
|
|
18
18
|
"angular": "1.6.10",
|
|
19
19
|
"angular-ui-bootstrap": "2.5.0",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"react-select": "1.2.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@spinnaker/eslint-plugin": "^
|
|
27
|
-
"@spinnaker/scripts": "^0.2.
|
|
26
|
+
"@spinnaker/eslint-plugin": "^3.0.0",
|
|
27
|
+
"@spinnaker/scripts": "^0.2.2",
|
|
28
28
|
"@types/angular": "1.6.26",
|
|
29
29
|
"@types/angular-ui-bootstrap": "0.13.41",
|
|
30
30
|
"@types/lodash": "4.14.64",
|
|
31
31
|
"@types/node": "7.0.5",
|
|
32
|
-
"@types/react": "16.
|
|
32
|
+
"@types/react": "16.14.10",
|
|
33
33
|
"@types/react-bootstrap": "0.32.5",
|
|
34
34
|
"@types/react-select": "1.3.4",
|
|
35
35
|
"shx": "0.3.3",
|
|
36
36
|
"typescript": "4.3.5"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "2ddc8bd4f04d13a8712702cf75fca3cada520406"
|
|
39
39
|
}
|
package/src/azure.settings.ts
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Button, Modal } from 'react-bootstrap';
|
|
3
3
|
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
ILoadBalancerModalProps,
|
|
7
|
-
ModalClose,
|
|
8
|
-
ModalInjector,
|
|
9
|
-
noop,
|
|
10
|
-
ReactModal,
|
|
11
|
-
} from '@spinnaker/core';
|
|
4
|
+
import type { ILoadBalancerModalProps } from '@spinnaker/core';
|
|
5
|
+
import { CloudProviderRegistry, ModalClose, ModalInjector, noop, ReactModal } from '@spinnaker/core';
|
|
12
6
|
|
|
13
|
-
import {
|
|
7
|
+
import type { IAzureLoadBalancer } from '../../utility';
|
|
8
|
+
import { AzureLoadBalancerTypes } from '../../utility';
|
|
14
9
|
|
|
15
10
|
export interface IAzureLoadBalancerChoiceModalState {
|
|
16
11
|
choices: IAzureLoadBalancer[];
|