@truedat/core 7.5.4 → 7.5.6

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/core",
3
- "version": "7.5.4",
3
+ "version": "7.5.6",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -36,7 +36,7 @@
36
36
  "@testing-library/react": "^12.0.0",
37
37
  "@testing-library/react-hooks": "^8.0.1",
38
38
  "@testing-library/user-event": "^13.2.1",
39
- "@truedat/test": "7.5.4",
39
+ "@truedat/test": "7.5.6",
40
40
  "babel-jest": "^28.1.0",
41
41
  "babel-plugin-dynamic-import-node": "^2.3.3",
42
42
  "babel-plugin-lodash": "^3.3.4",
@@ -118,5 +118,5 @@
118
118
  "react-dom": ">= 16.8.6 < 17",
119
119
  "semantic-ui-react": ">= 2.0.3 < 2.2"
120
120
  },
121
- "gitHead": "e41d75322f4e11f804d9e834c21f6416c8586963"
121
+ "gitHead": "23d70104f45068aea9795621334ee2df022d21b2"
122
122
  }
@@ -177,11 +177,14 @@ export const ResourceMember = ({
177
177
  : "button-domain_delete_without_description"
178
178
  }
179
179
  basic
180
+ color="red"
180
181
  floated="right"
181
- icon="trash"
182
+ icon
182
183
  negative
183
184
  loading={isMemberDeleting}
184
- />
185
+ >
186
+ <Icon name="trash alternate outline" color="red" />
187
+ </Button>
185
188
  }
186
189
  />
187
190
  </Card.Content>
@@ -223,8 +223,14 @@ export class UploadModal extends React.Component {
223
223
  <List.Item key={f.name}>
224
224
  <List.Content floated="right">
225
225
  <Button
226
- negative
227
- icon="trash"
226
+ basic
227
+ icon={
228
+ <Icon
229
+ name="trash alternate outline"
230
+ color="red"
231
+ />
232
+ }
233
+ color="red"
228
234
  onClick={() => {
229
235
  this.setState({ files: [] });
230
236
  }}
@@ -89,10 +89,12 @@ const LanguageRow = ({
89
89
  <ConfirmModal
90
90
  icon="trash"
91
91
  trigger={
92
- <Icon
92
+ <Button
93
+ icon={<Icon name="trash alternate outline" color="red" />}
93
94
  className="lang-manager-delete"
94
- name="trash alternate outline"
95
95
  color="red"
96
+ basic
97
+ size="mini"
96
98
  />
97
99
  }
98
100
  header={formatMessage({
@@ -0,0 +1,3 @@
1
+ .ui.icon.button > .icon.ellipsis.vertical{
2
+ height: 1em;
3
+ }