support icon indicating copy to clipboard operation
support copied to clipboard

CrudManager has two configs for specifying extra stores to manage

Open ExtAnimal opened this issue 11 months ago • 0 comments

crudStores and stores

The base class does

    construct(config = {}) {
        if (config.stores) {
            config.crudStores = config.stores;
            delete config.stores;
        }

I suggest we deprecate crudStores for removal in 7.0 on the basis that the "crud" part is redundant because we are inside the CrudManager, and go with the simple stores config/property.

Image

ExtAnimal avatar Apr 29 '25 04:04 ExtAnimal