@bexis2/bexis2-core-ui 0.4.28 → 0.4.30

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/README.md CHANGED
@@ -1,4 +1,13 @@
1
1
  # bexis-core-ui
2
+ ## 0.4.30
3
+ - Table:
4
+ - Fixes issue with rounded corners on pagination button under the table
5
+ - Updates colors scheme for disabled buttons
6
+
7
+ ## 0.4.29
8
+ - table
9
+ - Fixes the appearance issues related to Table paginator.
10
+ -
2
11
  ## 0.4.28
3
12
  - Fixes issue with options component not displaying items correctly
4
13
  - New pagination component
@@ -56,13 +56,15 @@ $: $pageCount, $pageIndex, $pageSize, itemCount, indexInformation = getIndexInfo
56
56
  on:page={(page) => ($pageIndex = page.detail)}
57
57
  settings={paginationSettings}
58
58
  select="hidden"
59
- buttonClasses="disabled:!variant-filled-surface !px-3 !py-1.5 !fill-current !variant-filled-primary"
60
- active="!variant-filled-secondary"
59
+ active="active"
60
+ controlVariant=""
61
+ buttonClasses="!rounded-none !px-3 !py-1.5 fill-current"
62
+ regionControl="btn-group"
61
63
  maxNumerals={1}
62
64
  showNumerals
63
65
  />
64
66
  </div>
65
- <div class="flex justify-end items-center">
67
+ <div class="flex justify-end items-center text-on-primary-token">
66
68
  <span class="text-xs text-gray-500">{indexInformation}</span>
67
69
  </div>
68
70
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.28",
3
+ "version": "0.4.30",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -67,13 +67,15 @@
67
67
  on:page={(page) => ($pageIndex = page.detail)}
68
68
  settings={paginationSettings}
69
69
  select="hidden"
70
- buttonClasses="disabled:!variant-filled-surface !px-3 !py-1.5 !fill-current !variant-filled-primary"
71
- active="!variant-filled-secondary"
70
+ active="active"
71
+ controlVariant=""
72
+ buttonClasses="!rounded-none !px-3 !py-1.5 fill-current"
73
+ regionControl="btn-group"
72
74
  maxNumerals={1}
73
75
  showNumerals
74
76
  />
75
77
  </div>
76
- <div class="flex justify-end items-center">
78
+ <div class="flex justify-end items-center text-on-primary-token">
77
79
  <span class="text-xs text-gray-500">{indexInformation}</span>
78
80
  </div>
79
81
  </div>