classcard-ui 0.2.279 → 0.2.281

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": "classcard-ui",
3
- "version": "0.2.279",
3
+ "version": "0.2.281",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -61,6 +61,7 @@
61
61
  hover:text-gray-900
62
62
  cursor-pointer
63
63
  "
64
+ :class="item.class"
64
65
  role="menuitem"
65
66
  >
66
67
  {{ item.text }}
@@ -21,7 +21,7 @@ const Template = (args, { argTypes }) => ({
21
21
  export const Default = Template.bind({});
22
22
  Default.args = {
23
23
  items: [
24
- { icon: "check", text: "one", action:'alert' },
24
+ { icon: "check", text: "one", action:'alert', class:'hover:bg-red-100 hover:text-red-500' },
25
25
  { icon: "check", text: "two" },
26
26
  ],
27
27
  icon:{