@airpower/web 0.2.26 → 0.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +3 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -13642,7 +13642,7 @@ const LIST_KEY$2 = `${DecoratorUtil.DecoratorKeyPrefix}[FormList]`;
|
|
|
13642
13642
|
function Form(config = {}) {
|
|
13643
13643
|
return (target, key) => {
|
|
13644
13644
|
config.key = key;
|
|
13645
|
-
DecoratorUtil.setFieldConfig(target, key, KEY$2, config);
|
|
13645
|
+
DecoratorUtil.setFieldConfig(target, key, KEY$2, config, LIST_KEY$2);
|
|
13646
13646
|
};
|
|
13647
13647
|
}
|
|
13648
13648
|
function getFormConfig(TargetClass, key) {
|
|
@@ -16766,7 +16766,7 @@ const LIST_KEY$1 = `${DecoratorUtil.DecoratorKeyPrefix}[SearchList]`;
|
|
|
16766
16766
|
function Search(config = {}) {
|
|
16767
16767
|
return (target, key) => {
|
|
16768
16768
|
config.key = key;
|
|
16769
|
-
DecoratorUtil.setFieldConfig(target, key, KEY$1, config);
|
|
16769
|
+
DecoratorUtil.setFieldConfig(target, key, KEY$1, config, LIST_KEY$1);
|
|
16770
16770
|
};
|
|
16771
16771
|
}
|
|
16772
16772
|
function getSearchConfig(TargetClass, key) {
|
|
@@ -16792,7 +16792,7 @@ const LIST_KEY = `${DecoratorUtil.DecoratorKeyPrefix}[TableList]`;
|
|
|
16792
16792
|
function Table(config = {}) {
|
|
16793
16793
|
return (target, key) => {
|
|
16794
16794
|
config.key = key;
|
|
16795
|
-
DecoratorUtil.setFieldConfig(target, key, KEY, config);
|
|
16795
|
+
DecoratorUtil.setFieldConfig(target, key, KEY, config, LIST_KEY);
|
|
16796
16796
|
};
|
|
16797
16797
|
}
|
|
16798
16798
|
function getTableConfig(TargetClass, key) {
|