@data-fair/lib-vuetify 1.8.1 → 1.9.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.8.1",
3
+ "version": "1.9.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": [
@@ -0,0 +1,11 @@
1
+ @use 'vuetify' with (
2
+ $color-pack: false,
3
+ $body-font-family: 'BodyFontFamily',
4
+ $heading-font-family: 'HeadingFontFamily'
5
+ );
6
+
7
+ // v-icon has an opacity when it is prepended in a list of items.
8
+ // ref: https://github.com/vuetifyjs/vuetify/issues/18760
9
+ .v-icon {
10
+ --v-medium-emphasis-opacity: 1 !important;
11
+ }
@@ -0,0 +1,5 @@
1
+ @use 'vuetify/settings' with (
2
+ // make disabled button style less dependant on theme colors
3
+ $button-colored-disabled: false,
4
+ $button-disabled-opacity: 0.8
5
+ );
package/vite.d.ts CHANGED
@@ -12,3 +12,4 @@ export declare const autoImports: (string | {
12
12
  '@data-fair/lib-vuetify/tutorial-alert.vue': string[][];
13
13
  '@data-fair/lib-vuetify/user-avatar.vue': string[][];
14
14
  })[];
15
+ export declare const settingsPath: string;
package/vite.js CHANGED
@@ -8,4 +8,5 @@ export const autoImports = [
8
8
  '@data-fair/lib-vuetify/user-avatar.vue': [['default', 'dfUserAvatar']]
9
9
  }
10
10
  ]
11
+ export const settingsPath = new URL(import.meta.resolve('@data-fair/lib-vuetify/style/settings.scss')).pathname
11
12
  // # sourceMappingURL=vite.js.map