NullVoxPopuli

Results 2058 comments of NullVoxPopuli

Would there be interest in more distributed maintenance? repo could be transferred to https://github.com/universal-ember/ ?

> rather than the name property ("column-reordering")? nay, the manually specified string name was intended to be used exactly to protect against minified class names in production

Could have the universal-ember org adopt this addon to have more vis / attention https://github.com/universal-ember/

> What's the status of this? _this particular implementation_ is blocked on my own adding a feature to `pnpm` (`pnpm sync`), which requires some spelunking on my part (see linked...

Reminder to myself to revisit: https://twitter.com/nullvoxpopuli/status/1662431120149848064

can you try with: ``` pnpm install pnpm build cd docs-app pnpm start ``` ?

oh no! It's certainly intended to behave the way you expect: https://github.com/CrowdStrike/ember-headless-table/blob/main/ember-headless-table/src/plugins/column-reordering/plugin.ts#L215 If you have time, there is an existing test you could use to make a reproduction of the...

also, discovered in here: https://github.com/NullVoxPopuli/ember-ci-update/commit/ad39c9aad80c34dcc46b3bfde6e3b238ae05a31a until: https://github.com/pnpm/pnpm/issues/4965 is fixed, you may need to (before running `cd docs-app && pnpm start`), do: - `rm -rf node_modules` - `pnpm install` It has...

For this behavior/ requirement, the order can't be changed, i don't think: https://github.com/CrowdStrike/ember-headless-table/blob/main/ember-headless-table/src/plugins/column-reordering/plugin.ts#L217 This list, should probably maintain all columns (there's an api for that!) https://github.com/CrowdStrike/ember-headless-table/blob/main/ember-headless-table/src/plugins/column-reordering/plugin.ts#L200 And then 'orderedColumns' can...

the `Pagination` type is actually a legacy thing 😅 https://github.com/search?q=repo%3ACrowdStrike%2Fember-headless-table%20Pagination&type=code this.request.isLoading, value: () => this.request.value ?? [], }); @use request = RemoteData(() => `/api/some-endpoint?page=${this.page})`; nextPage = () => this.page++; goToPage...