loon-bulma-react 2026.0.38 → 2026.0.39

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.
@@ -22,6 +22,7 @@ type SelectInputProps<T extends number | string | string[]> = StrictOmit<InputPr
22
22
  * Moeten de items gegroupeerd wewergegeven worden (voor als de `options`-prop een array van objecten is met een `group`-property)
23
23
  */
24
24
  grouped?: boolean;
25
+ useCssArrow?: boolean;
25
26
  iconOpen?: IconProp | undefined;
26
27
  iconClosed?: IconProp | undefined;
27
28
  /** De opties van de select. Kan een array van strings zijn, of een array van objecten met een `value`-property en een `label`-property.
@@ -113,7 +114,7 @@ type SelectInputProps<T extends number | string | string[]> = StrictOmit<InputPr
113
114
  * ..</Select.OptGroup>
114
115
  * </Select>
115
116
  */
116
- declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment: alignmentProp, size: sizeProp, direction: directionProp, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, iconOpen, iconClosed, infoData, color, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): import("react/jsx-runtime").JSX.Element;
117
+ declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment: alignmentProp, size: sizeProp, direction: directionProp, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, iconOpen, iconClosed, infoData, useCssArrow, color, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): import("react/jsx-runtime").JSX.Element;
117
118
  declare namespace Select {
118
119
  var Option: ({ value, disabled, id, children }: {
119
120
  id?: string;