Skip to content

Commit d45cc78

Browse files
committed
Merge branch 'table' of https://github.com/BEXIS2/bexis2-core-ui into table
2 parents 7dfb437 + 58b66a7 commit d45cc78

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
# bexis-core-ui
2+
3+
## 0.4.16
4+
- Facets
5+
- Replaces groups array with a writable store to re-render component on data manipulation.
6+
- Adds selected attribute to the type so that Facets can be initialized with some selected values.
7+
8+
## 0.4.15
9+
- Update Facets with new params and add onChange action
10+
- Changes structure of Facets data
11+
- Adds on:change action
12+
13+
## 0.4.14
14+
- Table
15+
- fixes rendering issues with Table filters and different components
16+
17+
- Facets
18+
- Exports Facets component
19+
20+
## 0.4.13
21+
- menu
22+
- fix code isses
23+
24+
## 0.4.11
25+
- Table
26+
- fix lib issue
27+
228
## 0.4.11
329
- Menu
430
- fix log off

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bexis2/bexis2-core-ui",
3-
"version": "0.4.10",
3+
"version": "0.4.16",
44
"private": false,
55
"scripts": {
66
"dev": "vite dev",

src/lib/components/Table/TableContent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
} else {
395395
sendModel.q = searchValue;
396396
}
397-
397+
398398
$filterValue = searchValue;
399399
}}
400400
>

src/lib/components/Table/TableFilter.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import Fa from 'svelte-fa/src/fa.svelte';
2+
import Fa from 'svelte-fa';
33
import { onMount } from 'svelte';
44
import { faFilter, faPlus, faXmark } from '@fortawesome/free-solid-svg-icons';
55
import { popup } from '@skeletonlabs/skeleton';

src/lib/components/page/menu/MenuSublist.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
2626
function clickFn(item)
2727
{
28-
if(item.Title =="Logoff")
28+
if(item.Title =="Log Off")
2929
{
3030
logOffFn();
3131
return;

0 commit comments

Comments
 (0)