Skip to content

Commit ee3fb1a

Browse files
committed
Merge branch 'table' of https://github.com/BEXIS2/bexis2-core-ui into table
2 parents c5b5dc6 + dfa6226 commit ee3fb1a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3086
-2057
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ jobs:
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Setup Node
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: '16'
20+
node-version: '20'
2121

2222
- name: Cache pnpm modules
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.pnpm-store
2626
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
2727
restore-keys: |
2828
${{ runner.os }}-
29-
- uses: pnpm/action-setup@v2.0.1
29+
- uses: pnpm/action-setup@v3
3030
with:
31-
version: 8.12.1
31+
version: 8
3232
run_install: true
3333

3434
- run: pnpm i # Run install
@@ -37,7 +37,7 @@ jobs:
3737
- run: cp -a static/. ./build/ # Copy missing files to build folder
3838

3939
- name: Deploy
40-
uses: peaceiris/actions-gh-pages@v3
40+
uses: peaceiris/actions-gh-pages@v4
4141
if: ${{ github.ref == 'refs/heads/master' }}
4242
with:
4343
github_token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,65 @@
11
# bexis-core-ui
2+
## 0.4.8
3+
- page
4+
- add notification if api call to backend faild
5+
6+
## 0.4.7
7+
- menu
8+
- remove capitalization from menu item
9+
10+
## 0.4.6
11+
- table
12+
- Adds config for enabling and disabling Search field on Table.
13+
- Adds action dispatcher as prop for the renderComponent.
14+
- Adds unique IDs for Search reset and submit buttons.
15+
16+
## 0.4.5
17+
- table
18+
- adds searching for missing values in the filters #744
19+
- missing values for every data type
20+
- display patterns for date/time/datetime types
21+
22+
## 0.4.4
23+
- update libs
24+
- remove eslint-plugin-svelte3
25+
- update svelte, sveltekit, typescript, tailwind ...
26+
27+
## 0.4.3
28+
- table
29+
- Enable searching on server-side
30+
31+
## 0.4.2
32+
## 0.4.1
33+
- table
34+
- Server-side searching
35+
- Case-insensitive filtering of missing values
36+
- Date formatting for display patterns
37+
- Handle missing values regardless of the data type
38+
39+
## 0.4.0
40+
- update dependency libaries
41+
- svelte
42+
- sveltekit
43+
- vite
44+
45+
## 0.3.13
46+
## 0.3.12
47+
- table
48+
- Server-side data fetching
49+
- Server-side filtering
50+
- Server-side sorting
51+
- Server-side pagination
52+
- New filtering workflow & UI
53+
- New pagination component
54+
55+
## 0.3.11
56+
- add on:change passthrough to TextInput, TextArea, DateInput, NumberInput, CheckBox
57+
58+
## 0.3.10
59+
- multi select
60+
- update svelte-select libary
61+
- refactor filterFn (new order - > exact, start, includes)
62+
- fix issues with clearable
263

364
## 0.3.9
465

0 commit comments

Comments
 (0)