biblio-react 3.0.0-alpha113 → 3.0.0-alpha114

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/index.js CHANGED
@@ -9615,7 +9615,7 @@ const cL = /^(\d+)(th|st|nd|rd)?/i, uL = /\d+/i, dL = {
9615
9615
  hidden: d,
9616
9616
  required: p,
9617
9617
  disabled: f
9618
- } = u[t] || { hidden: 0, required: 0, disabled: 0 }, {
9618
+ } = u.length === 0 ? { hidden: 0, required: 0, disabled: 0 } : u[t] ? u[t] : { hidden: 1, required: 0, disabled: 0 }, {
9619
9619
  disabled: h,
9620
9620
  hidden: g,
9621
9621
  required: m,