@truedat/audit 7.5.3 → 7.5.5

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/audit",
3
- "version": "7.5.3",
3
+ "version": "7.5.5",
4
4
  "description": "Truedat Web Audit Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -34,7 +34,7 @@
34
34
  "@testing-library/jest-dom": "^5.16.5",
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/user-event": "^13.2.1",
37
- "@truedat/test": "7.5.3",
37
+ "@truedat/test": "7.5.5",
38
38
  "babel-jest": "^28.1.0",
39
39
  "babel-plugin-dynamic-import-node": "^2.3.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
@@ -84,8 +84,8 @@
84
84
  ]
85
85
  },
86
86
  "dependencies": {
87
- "@truedat/auth": "7.5.3",
88
- "@truedat/core": "7.5.3",
87
+ "@truedat/auth": "7.5.5",
88
+ "@truedat/core": "7.5.5",
89
89
  "moment": "^2.29.4",
90
90
  "path-to-regexp": "^1.7.0",
91
91
  "prop-types": "^15.8.1",
@@ -107,5 +107,5 @@
107
107
  "react-dom": ">= 16.8.6 < 17",
108
108
  "semantic-ui-react": ">= 2.0.3 < 2.2"
109
109
  },
110
- "gitHead": "0493d9170268bd7cae7874b0f6d3b251f730e7a0"
110
+ "gitHead": "2a4343b3b2837540358b57d3d647408ab292aa21"
111
111
  }
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import PropTypes from "prop-types";
3
3
  import { Link } from "react-router-dom";
4
4
  import { connect } from "react-redux";
5
- import { Button } from "semantic-ui-react";
5
+ import { Button, Icon } from "semantic-ui-react";
6
6
  import { useIntl } from "react-intl";
7
7
  import { ConfirmModal, GroupActions } from "@truedat/core/components";
8
8
  import { SUBSCRIPTIONS, linkTo } from "@truedat/core/routes";
@@ -15,7 +15,7 @@ export const ModalDelete = ({ deleteSubscription, id }) => {
15
15
  icon="trash"
16
16
  trigger={
17
17
  <Button
18
- icon="trash"
18
+ icon={<Icon name="trash alternate outline" color="red" />}
19
19
  content={formatMessage({ id: "subscription.actions.remove" })}
20
20
  />
21
21
  }
@@ -73,7 +73,7 @@ export const SubscriptionWatchForm = ({
73
73
  </Button>
74
74
  {subscription?.id ? (
75
75
  <Button type="submit" onClick={handleDelete}>
76
- <Icon name="trash" />
76
+ <Icon name="trash alternate outline" color="red" />
77
77
  <FormattedMessage id="ruleSubscription.actions.remove" />
78
78
  </Button>
79
79
  ) : null}
@@ -7,7 +7,7 @@ exports[`<ModalDelete /> matches the latest snapshot 1`] = `
7
7
  >
8
8
  <i
9
9
  aria-hidden="true"
10
- class="trash icon"
10
+ class="red trash alternate outline icon"
11
11
  />
12
12
  remove
13
13
  </button>
@@ -78,7 +78,8 @@ exports[`<SubscriptionWatchForm /> matches the latest snapshot 1`] = `
78
78
  >
79
79
  <Icon
80
80
  as="i"
81
- name="trash"
81
+ color="red"
82
+ name="trash alternate outline"
82
83
  />
83
84
  <MemoizedFormattedMessage
84
85
  id="ruleSubscription.actions.remove"