@data-fair/lib-vuetify 1.6.2 → 1.6.4

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/index.js CHANGED
@@ -42,9 +42,6 @@ export function vuetifySessionOptions (session) {
42
42
  // white card with light grey border by default
43
43
  variant: 'flat',
44
44
  border: 'sm'
45
- },
46
- global: {
47
- rounded: 'pill'
48
45
  }
49
46
  }
50
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@data-fair/lib-vuetify",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Components based on the Vuetify 3 UI lib for the data-fair stack.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -32,9 +32,9 @@ const fullAlertProps = computed(() => {
32
32
  const props = { ...alertProps }
33
33
  if (!notif) return props
34
34
  if (notif.type === 'error') {
35
- props.color = notif.clientError ? 'warning' : 'error'
35
+ props.type = notif.clientError ? 'warning' : 'error'
36
36
  } else {
37
- props.color = notif.type
37
+ props.type = notif.type
38
38
  }
39
39
  return props
40
40
  })
@@ -17,10 +17,10 @@ const fullAlertProps = computed(() => {
17
17
  if (!notif)
18
18
  return props;
19
19
  if (notif.type === 'error') {
20
- props.color = notif.clientError ? 'warning' : 'error';
20
+ props.type = notif.clientError ? 'warning' : 'error';
21
21
  }
22
22
  else {
23
- props.color = notif.type;
23
+ props.type = notif.type;
24
24
  }
25
25
  return props;
26
26
  });