datastake-daf 0.6.756 → 0.6.757

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/rollup.config.js CHANGED
@@ -103,6 +103,26 @@ export default [
103
103
  requireReturnsDefault: "auto",
104
104
  }),
105
105
  ],
106
+ },
107
+ {
108
+ input: "src/constants.js",
109
+ output: [
110
+ {
111
+ file: "dist/constants/index.js",
112
+ format: "cjs",
113
+ },
114
+ ],
115
+ external,
116
+ plugins: [
117
+ nodePolyfills(),
118
+ resolve({ browser: true }),
119
+ babel({ exclude: "node_modules/**", babelrc: true }),
120
+ peerDep(),
121
+ commonjs({
122
+ include: /node_modules/,
123
+ requireReturnsDefault: "auto",
124
+ }),
125
+ ],
106
126
  },
107
127
  {
108
128
  input: "src/services.js",
@@ -534,7 +534,7 @@ export const EditForm = ({
534
534
  <GetFormItem
535
535
  inputKey={k}
536
536
  inputData={inputData}
537
- inputId={inputId}
537
+ inputId={input?.type === "dataLink" ? (input?.meta?.path || inputId) : inputId}
538
538
  input={input}
539
539
  highlightMandatory={highlightMandatory}
540
540
  changeInputMeta={changeInputMeta}