vueless 0.0.721 → 0.0.723

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": "vueless",
3
- "version": "0.0.721",
3
+ "version": "0.0.723",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -221,9 +221,7 @@ watch(selectedRows, onChangeSelectedRows, { deep: true });
221
221
  watch(
222
222
  tableRows,
223
223
  () => {
224
- if (!isEqual(tableRows.value, props.rows)) {
225
- emit("update:rows", tableRows.value);
226
- }
224
+ emit("update:rows", tableRows.value);
227
225
  },
228
226
  { deep: true },
229
227
  );
@@ -1,7 +1,7 @@
1
1
  export default /*tw*/ {
2
2
  tabButton: {
3
3
  base: `
4
- {UButton} -mb-px rounded-none border-b-2 border-transparent
4
+ {UButton} -mb-px rounded-none border-0 border-b-2 border-transparent
5
5
  hover:bg-transparent dark:hover:bg-transparent
6
6
  active:bg-transparent dark:active:bg-transparent
7
7
  `,
@@ -10,7 +10,7 @@ export default /*tw*/ {
10
10
  },
11
11
  },
12
12
  tabButtonActive: {
13
- base: "{>tabButton} border-b-brand-600",
13
+ base: "{>tabButton} border-brand-600",
14
14
  defaults: {
15
15
  color: "brand",
16
16
  },
@@ -2,7 +2,9 @@ export default /*tw*/ {
2
2
  tabs: {
3
3
  base: "mb-6 flex flex-nowrap border-b border-gray-200 dark:border-gray-700",
4
4
  variants: {
5
- block: "w-full",
5
+ block: {
6
+ true: "w-full",
7
+ },
6
8
  },
7
9
  },
8
10
  tab: "{UTab}",