resolver-egretimp-plus 0.0.55 → 0.0.57
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/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export default function () {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
} catch (error) {
|
|
18
|
-
modulesFiles = import.meta.glob('./packages-H5/*.{vue,jsx,js}')
|
|
18
|
+
modulesFiles = import.meta.glob('./packages-H5/*.{vue,jsx,js}', { import: 'default', eager: true })
|
|
19
19
|
modulesFilesKeys = Object.keys(modulesFiles)
|
|
20
20
|
resolveModule = (modulePath) => {
|
|
21
21
|
return modulesFiles[modulePath]
|
package/src/utils/render.jsx
CHANGED
|
@@ -619,8 +619,9 @@ export function generateFormItemPolyfill(config, lang, compProps, _isH5, params)
|
|
|
619
619
|
}
|
|
620
620
|
|
|
621
621
|
function getFormItemExtendProps(config, lang, params) {
|
|
622
|
-
const
|
|
623
|
-
const
|
|
622
|
+
const prop = config.dynamicHireRelat || ''
|
|
623
|
+
// const propAttr = config.dynamicHireRelat ? config.dynamicHireRelat?.split('->') : []
|
|
624
|
+
// const prop = propAttr.join('->')
|
|
624
625
|
return {
|
|
625
626
|
prop,
|
|
626
627
|
rules: getFormItemRule(config, lang, params),
|