Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
988b91a
add dummy application example
Mar 13, 2025
36498d2
tutorial example: add specific info for working pagination
Mar 13, 2025
47aa470
fix `@hasMenu` config (renamed to @showMenu)
Mar 13, 2025
a37efad
cleanup example route
Mar 13, 2025
46e0571
cleanup controller.js: remove unused functions from view
Mar 13, 2025
a0068a1
specify possibility to pass pagination info in `@meta.pagination`
Mar 13, 2025
442e6f2
remove code for `@searchDebounceTime` + cleanup of debounce logic
Mar 13, 2025
5249bf1
add `@initialSelection` to set up the initial selection in a table
Mar 14, 2025
968a4e9
clarify `_` converted to space syntax for `@links`
Mar 19, 2025
75f31d4
add if/else for handling icon-links in example raw-data-table, making…
Mar 19, 2025
61ce7c3
fix typo in documentation of splitDefinitions
Mar 19, 2025
2d96bdf
move `@rowLink` above `@onClickRow` so the text referring to each oth…
Mar 19, 2025
67db96e
Also allow passing an array to `@customHeaders`, `@customFields` and …
Mar 19, 2025
4e8bf31
specify in readme that `@fields` defines the order of fields in the t…
Mar 19, 2025
b39c728
remove duplicate attribute hash in row.hbs
Mar 19, 2025
6501136
Allow passing components directly as custom fields via `@customFieldC…
Mar 19, 2025
1d04004
add `@selectionProperty` to support row selection for non-ember-data …
Mar 19, 2025
966deb5
specify `fields` item is an array, not object
Mar 20, 2025
ff30b57
rephrase isAscending/isDescending
Mar 20, 2025
674b56c
reword explanation and some terms in readme and code
Mar 26, 2025
47d4e9e
refactor away `@wrapper` + refactor rowLink(Model)/onRowClicked
Mar 27, 2025
1a2e8fe
allow passing arrays/objects directly to `@fields`, `@links`, `@custo…
Apr 1, 2025
7199433
add more demo routes for multiple types of example tables
Apr 2, 2025
1a8ef16
readme fix: make more clear that autosearch is enabled by default
Apr 2, 2025
ddac326
rewrite old tests for new raw-data-table
May 15, 2025
5f74a6e
remove dependency to ember-data and reduce packages that were not needed
May 15, 2025
42bcee7
bump version to 4.4
May 20, 2025
c9d1b26
v4.4.1...v5.12.0
May 21, 2025
b77b347
renamed JS/TS to GJS/GTS
May 22, 2025
47f8dce
renamed HBS to GJS/GTS
May 22, 2025
a2335bd
combined JS and HBS
May 22, 2025
b3af786
applied codemod
May 22, 2025
95682c3
add codemod to ignore-revs
May 22, 2025
dbe3b58
initial convert to V2 addon
May 23, 2025
73a6037
add configuration fixes for V2 conversion
May 23, 2025
0287217
Use gjs in test-app + fix tests
May 26, 2025
290272f
fix import of stylesheet for test-app
May 28, 2025
877ad52
add auto rebuild for development
Jun 3, 2025
f6930db
add more tests
Jun 3, 2025
9add2ec
readme: add explanation for auto-rebuild of test-app during development
Jun 3, 2025
2753e79
add final missing tests and include fixes
Jun 10, 2025
301dda6
remove output of declaration files
Jun 10, 2025
1e9bdbf
add full selection DDAU control
Jun 12, 2025
11573c7
remove ember/runloop usage for text-search
Jun 12, 2025
487bf36
lint all files
Jun 12, 2025
e069cf8
remove ember-math-helpers dependency from addon
Jun 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .ember-cli

This file was deleted.

52 changes: 0 additions & 52 deletions .eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b3af786cd704cf42664d3064b140aaf21d53d283
32 changes: 4 additions & 28 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,5 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# you definitely want this:
node_modules

# compiled output
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/

# misc
/.env*
/.pnp*
/.sass-cache
/.eslintcache
/connect.lock
/coverage/
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log

# ember-try
.node_modules.ember-try/
bower.json.ember-try
package.json.ember-try

*~
package-lock.json
.DS_Store
addon/dist
5 changes: 0 additions & 5 deletions .prettierrc.js

This file was deleted.

5 changes: 0 additions & 5 deletions .template-lintrc.js

This file was deleted.

61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .watchmanconfig

This file was deleted.

22 changes: 11 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@

## Installation

* `git clone <repository-url>`
* `cd my-addon`
* `npm install`
- `git clone <repository-url>`
- `cd ember-data-table`
- `npm install`

## Linting

* `npm run lint`
* `npm run lint:fix`
- `npm run lint`
- `npm run lint:fix`

## Running tests

* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions
- `npm run test` – Runs the test suite on the current Ember version
- `npm run test:ember -- --server` – Runs the test suite in "watch mode"
- `npm run test:ember-compatibility` – Runs the test suite against multiple Ember versions

## Running the dummy application

* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).
- `npm run start`
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).

For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
For more information on using ember-cli, visit [https://cli.emberjs.com/release/](https://cli.emberjs.com/release/).
56 changes: 0 additions & 56 deletions MODULE_REPORT.md

This file was deleted.

Loading