maz-ui 3.29.5 → 3.29.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/nuxt/index.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "3.29.5"
7
+ "version": "3.29.6"
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maz-ui",
3
- "version": "3.29.5",
3
+ "version": "3.29.6",
4
4
  "description": "A standalone components library for Vue.Js 3 & Nuxt.Js 3",
5
5
  "author": "Louis Mazel <me@loicmazuel.com>",
6
6
  "main": "./modules/index.cjs",
@@ -121,7 +121,7 @@
121
121
  "autoprefixer": "^10.4.16",
122
122
  "c8": "^8.0.1",
123
123
  "chalk": "4.1.2",
124
- "chart.js": "^4.4.0",
124
+ "chart.js": "^4.4.1",
125
125
  "dayjs": "^1.11.10",
126
126
  "defu": "^6.1.3",
127
127
  "dropzone": "^5.9.3",
@@ -135,7 +135,7 @@
135
135
  "nuxt": "^3.8.2",
136
136
  "onchange": "^7.1.0",
137
137
  "path": "^0.12.7",
138
- "postcss": "^8.4.31",
138
+ "postcss": "^8.4.32",
139
139
  "postcss-html": "^1.5.0",
140
140
  "postcss-import": "^15.1.0",
141
141
  "postcss-nested": "^6.0.0",
@@ -152,8 +152,8 @@
152
152
  "stylelint-config-standard": "^34.0.0",
153
153
  "stylelint-config-standard-scss": "^11.1.0",
154
154
  "stylelint-config-tailwindcss": "^0.0.7",
155
- "tailwindcss": "^3.3.5",
156
- "unplugin-vue-components": "^0.25.2",
155
+ "tailwindcss": "^3.3.6",
156
+ "unplugin-vue-components": "^0.26.0",
157
157
  "vite": "^5.0.4",
158
158
  "vite-plugin-css-injected-by-js": "^3.3.0",
159
159
  "vite-plugin-lib-inject-css": "^1.3.0",
@@ -201,7 +201,7 @@
201
201
  "lint:js": "cross-env NODE_ENV=production eslint --fix --ext .ts,.js,.vue .",
202
202
  "lint:style": "stylelint --fix \"./**/*.{vue,css,scss,postcss,pcss}\"",
203
203
  "format": "prettier . --write",
204
- "build": "ts-node build/vite.config.ts",
204
+ "build": "pnpm type-check && ts-node build/vite.config.ts",
205
205
  "get-icon-list": "ts-node build/get-icon-list.ts",
206
206
  "test:unit": "vitest",
207
207
  "test:unit:watch": "vitest watch",
@@ -210,6 +210,6 @@
210
210
  "test:unit:coverage:master": "vitest run --coverage --changed master",
211
211
  "pre-commit": "lint-staged",
212
212
  "gen-vue-tsc": "vue-tsc --declaration --emitDeclarationOnly",
213
- "type-check": "tsc --noEmit"
213
+ "type-check": "tsc --noEmit -p tsconfig.json"
214
214
  }
215
215
  }
@@ -1,4 +1,4 @@
1
- import type { ThemeConfig } from 'tailwindcss/types/config'
1
+ import type { CSSRuleObject } from 'tailwindcss/types/config'
2
2
 
3
3
  export const utilities = {
4
4
  '.padded-container': {
@@ -21,4 +21,4 @@ export const utilities = {
21
21
  '.cap-f': {
22
22
  '@apply first-letter:maz-capitalize': '',
23
23
  },
24
- } satisfies ThemeConfig['utilities']
24
+ } satisfies CSSRuleObject | CSSRuleObject[]