datastake-daf 0.6.199 → 0.6.200
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/components/index.js
CHANGED
|
@@ -40713,10 +40713,12 @@ const inputTypeComponent = {
|
|
|
40713
40713
|
label: option.label,
|
|
40714
40714
|
children: option.items.map((og, j) => /*#__PURE__*/jsxRuntime.jsx(antd.Select.Option, {
|
|
40715
40715
|
value: og.value,
|
|
40716
|
+
disabled: og.disabled,
|
|
40716
40717
|
children: og.label
|
|
40717
40718
|
}, `${i}${j}`))
|
|
40718
40719
|
}, i) : /*#__PURE__*/jsxRuntime.jsx(antd.Select.Option, {
|
|
40719
40720
|
value: option.value,
|
|
40721
|
+
disabled: option.disabled,
|
|
40720
40722
|
children: option.label
|
|
40721
40723
|
}, i))
|
|
40722
40724
|
});
|
|
@@ -40812,10 +40814,12 @@ const inputTypeComponent = {
|
|
|
40812
40814
|
label: option.label,
|
|
40813
40815
|
children: option.items.map((og, j) => /*#__PURE__*/jsxRuntime.jsx(antd.Select.Option, {
|
|
40814
40816
|
value: og.value,
|
|
40817
|
+
disabled: og.disabled,
|
|
40815
40818
|
children: og.label
|
|
40816
40819
|
}, `${i}${j}`))
|
|
40817
40820
|
}, i) : /*#__PURE__*/jsxRuntime.jsx(antd.Select.Option, {
|
|
40818
40821
|
value: option.value,
|
|
40822
|
+
disabled: option.disabled,
|
|
40819
40823
|
children: option.label
|
|
40820
40824
|
}, i))
|
|
40821
40825
|
});
|
package/package.json
CHANGED
|
@@ -532,12 +532,12 @@ export const inputTypeComponent = {
|
|
|
532
532
|
{(opts || []).map((option, i) => option.items ?
|
|
533
533
|
<Select.OptGroup label={option.label} key={i}>
|
|
534
534
|
{option.items.map((og, j) =>
|
|
535
|
-
<Select.Option value={og.value} key={`${i}${j}`}>
|
|
535
|
+
<Select.Option value={og.value} key={`${i}${j}`} disabled={og.disabled}>
|
|
536
536
|
{og.label}
|
|
537
537
|
</Select.Option>
|
|
538
538
|
)}
|
|
539
539
|
</Select.OptGroup> :
|
|
540
|
-
<Select.Option value={option.value} key={i}>
|
|
540
|
+
<Select.Option value={option.value} key={i} disabled={option.disabled}>
|
|
541
541
|
{option.label}
|
|
542
542
|
</Select.Option>
|
|
543
543
|
)}
|
|
@@ -617,12 +617,12 @@ export const inputTypeComponent = {
|
|
|
617
617
|
{(opts || []).map((option, i) => option.items ?
|
|
618
618
|
<Select.OptGroup label={option.label} key={i}>
|
|
619
619
|
{option.items.map((og, j) =>
|
|
620
|
-
<Select.Option value={og.value} key={`${i}${j}`}>
|
|
620
|
+
<Select.Option value={og.value} key={`${i}${j}`} disabled={og.disabled}>
|
|
621
621
|
{og.label}
|
|
622
622
|
</Select.Option>
|
|
623
623
|
)}
|
|
624
624
|
</Select.OptGroup> :
|
|
625
|
-
<Select.Option value={option.value} key={i}>
|
|
625
|
+
<Select.Option value={option.value} key={i} disabled={option.disabled}>
|
|
626
626
|
{option.label}
|
|
627
627
|
</Select.Option>
|
|
628
628
|
)}
|