@vue-interface/dropdown-menu 1.0.11 → 1.0.14

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 ADDED
@@ -0,0 +1,5 @@
1
+ import DropdownMenu from './src/DropdownMenu.vue';
2
+
3
+ export {
4
+ DropdownMenu
5
+ };
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@vue-interface/dropdown-menu",
3
- "version": "1.0.11",
3
+ "version": "1.0.14",
4
4
  "description": "A Vue dropdown menu component.",
5
5
  "files": [
6
+ "index.js",
6
7
  "dist",
7
8
  "src",
8
9
  "tailwindcss"
@@ -275,7 +275,7 @@ module.exports = plugin(function({ addComponents, theme }) {
275
275
 
276
276
  active: {
277
277
  color: theme('colors.white', colors.white),
278
- backgroundColor: theme('interface.variations.primary', variations.primary),
278
+ backgroundColor: theme('variations.primary', variations.primary),
279
279
  },
280
280
 
281
281
  disabled: {