@data-fair/lib-vuetify 1.11.1 → 1.12.0

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": "@data-fair/lib-vuetify",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "description": "Components based on the Vuetify 3 UI lib for the data-fair stack.",
5
5
  "main": "index.js",
6
6
  "files": [
package/style/global.scss CHANGED
@@ -1,11 +1,17 @@
1
1
  @use 'vuetify' with (
2
2
  $color-pack: false,
3
- $body-font-family: 'BodyFontFamily',
4
- $heading-font-family: 'HeadingFontFamily'
3
+ $body-font-family: var(--d-body-font-family),
4
+ $heading-font-family: var(--d-heading-font-family)
5
5
  );
6
6
 
7
7
  // v-icon has an opacity when it is prepended in a list of items.
8
8
  // ref: https://github.com/vuetifyjs/vuetify/issues/18760
9
9
  .v-icon {
10
10
  --v-medium-emphasis-opacity: 1 !important;
11
+ }
12
+
13
+ // default font variables values provide retro-compatibility with the aliases we used before
14
+ :root {
15
+ --d-body-font-family: BodyFontFamily;
16
+ --d-heading-font-family: HeadingFontFamily;
11
17
  }