@autoafleveren/ui 0.15.1 → 0.15.3
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/dist/config/tailwind/config.cjs +6 -1
- package/dist/ui.cjs +4 -4
- package/dist/ui.js +9 -7
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
const screens = require('./screens.json');
|
|
2
2
|
const svgToDataUri = require('mini-svg-data-uri');
|
|
3
|
+
const plugin = require('tailwindcss/plugin');
|
|
3
4
|
|
|
4
5
|
/** @type {import('tailwindcss').Config} */
|
|
5
6
|
module.exports = {
|
|
@@ -219,5 +220,9 @@ module.exports = {
|
|
|
219
220
|
}),
|
|
220
221
|
},
|
|
221
222
|
},
|
|
222
|
-
plugins: [
|
|
223
|
+
plugins: [
|
|
224
|
+
plugin(function({ addVariant }) {
|
|
225
|
+
addVariant('context-menu-open', '.context-menu-open &');
|
|
226
|
+
})
|
|
227
|
+
],
|
|
223
228
|
}
|