elseware-ui 3.0.9 → 3.0.11

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.
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
- import { B as ButtonProps, C as CheckboxProps, D as DateSelectorProps, F as FormProps, a as FormResponseProps, I as InputProps, b as InputFileProps, c as InputLabelProps, d as InputResponseProps, S as SelectProps, T as TagsProps, e as TextAreaProps } from './resolveGlobalConfigs-C0BREpe1.mjs';
3
- export { f as BaseDateSelectorProps, g as BaseSelectProps, h as BaseTagsProps, i as BaseTextAreaProps, j as ButtonIcon, k as ButtonMode, l as CheckboxColumns, m as CheckboxOption, E as EUIComponentDefaults, n as EUIConfigs, o as EUIProvider, p as EUIRoute, q as FormChangeMeta, r as FormChildren, s as InputFilePicker, t as InputFileValue, N as NativeInputFileValue, u as SelectOption, v as SelectOptionValue, w as resolveWithGlobal, x as useEUIConfig } from './resolveGlobalConfigs-C0BREpe1.mjs';
2
+ import { B as ButtonProps, C as CheckboxProps, D as DateSelectorProps, F as FormProps, a as FormResponseProps, I as InputProps, b as InputFileProps, c as InputLabelProps, d as InputResponseProps, S as SelectProps, T as TagsProps, e as TextAreaProps } from './resolveGlobalConfigs-BdBJw5_w.mjs';
3
+ export { f as BaseDateSelectorProps, g as BaseSelectProps, h as BaseTagsProps, i as BaseTextAreaProps, j as ButtonIcon, k as ButtonMode, l as CheckboxColumns, m as CheckboxOption, E as EUIComponentDefaults, n as EUIConfigs, o as EUIProvider, p as EUIRoute, q as FormChangeMeta, r as FormChildren, s as InputFilePicker, t as InputFileValue, N as NativeInputFileValue, u as SelectOption, v as SelectOptionValue, w as resolveWithGlobal, x as useEUIConfig } from './resolveGlobalConfigs-BdBJw5_w.mjs';
4
4
  import { FormikValues } from 'formik';
5
5
 
6
6
  declare function Button({ icon, text, children, loading, disabled, block, compact, mode, contentClassName, labelClassName, className, variant, appearance, shape, size, accessibilityRole, accessibilityState, type: _type, onClick: _onClick, onMouseMove: _onMouseMove, onPress, ...rest }: ButtonProps): React.JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
- import { B as ButtonProps, C as CheckboxProps, D as DateSelectorProps, F as FormProps, a as FormResponseProps, I as InputProps, b as InputFileProps, c as InputLabelProps, d as InputResponseProps, S as SelectProps, T as TagsProps, e as TextAreaProps } from './resolveGlobalConfigs-C0BREpe1.js';
3
- export { f as BaseDateSelectorProps, g as BaseSelectProps, h as BaseTagsProps, i as BaseTextAreaProps, j as ButtonIcon, k as ButtonMode, l as CheckboxColumns, m as CheckboxOption, E as EUIComponentDefaults, n as EUIConfigs, o as EUIProvider, p as EUIRoute, q as FormChangeMeta, r as FormChildren, s as InputFilePicker, t as InputFileValue, N as NativeInputFileValue, u as SelectOption, v as SelectOptionValue, w as resolveWithGlobal, x as useEUIConfig } from './resolveGlobalConfigs-C0BREpe1.js';
2
+ import { B as ButtonProps, C as CheckboxProps, D as DateSelectorProps, F as FormProps, a as FormResponseProps, I as InputProps, b as InputFileProps, c as InputLabelProps, d as InputResponseProps, S as SelectProps, T as TagsProps, e as TextAreaProps } from './resolveGlobalConfigs-BdBJw5_w.js';
3
+ export { f as BaseDateSelectorProps, g as BaseSelectProps, h as BaseTagsProps, i as BaseTextAreaProps, j as ButtonIcon, k as ButtonMode, l as CheckboxColumns, m as CheckboxOption, E as EUIComponentDefaults, n as EUIConfigs, o as EUIProvider, p as EUIRoute, q as FormChangeMeta, r as FormChildren, s as InputFilePicker, t as InputFileValue, N as NativeInputFileValue, u as SelectOption, v as SelectOptionValue, w as resolveWithGlobal, x as useEUIConfig } from './resolveGlobalConfigs-BdBJw5_w.js';
4
4
  import { FormikValues } from 'formik';
5
5
 
6
6
  declare function Button({ icon, text, children, loading, disabled, block, compact, mode, contentClassName, labelClassName, className, variant, appearance, shape, size, accessibilityRole, accessibilityState, type: _type, onClick: _onClick, onMouseMove: _onMouseMove, onPress, ...rest }: ButtonProps): React.JSX.Element;
@@ -330,7 +330,7 @@ interface SelectOption {
330
330
  label: ReactNode;
331
331
  disabled?: boolean;
332
332
  }
333
- interface BaseSelectProps extends Omit<BaseComponentProps<HTMLSelectElement>, "onChange"> {
333
+ interface BaseSelectProps extends Omit<BaseComponentProps<HTMLButtonElement>, "onChange"> {
334
334
  name: string;
335
335
  placeholder: string;
336
336
  options: SelectOption[];
@@ -339,6 +339,15 @@ interface BaseSelectProps extends Omit<BaseComponentProps<HTMLSelectElement>, "o
339
339
  label?: string;
340
340
  labelClassName?: string;
341
341
  responseClassName?: string;
342
+ dropdownClassName?: string;
343
+ optionClassName?: string;
344
+ optionContentClassName?: string;
345
+ selectedOptionClassName?: string;
346
+ activeOptionClassName?: string;
347
+ disabledOptionClassName?: string;
348
+ chevronClassName?: string;
349
+ emptyClassName?: string;
350
+ emptyMessage?: ReactNode;
342
351
  shape?: Shape;
343
352
  styles?: string;
344
353
  }
@@ -330,7 +330,7 @@ interface SelectOption {
330
330
  label: ReactNode;
331
331
  disabled?: boolean;
332
332
  }
333
- interface BaseSelectProps extends Omit<BaseComponentProps<HTMLSelectElement>, "onChange"> {
333
+ interface BaseSelectProps extends Omit<BaseComponentProps<HTMLButtonElement>, "onChange"> {
334
334
  name: string;
335
335
  placeholder: string;
336
336
  options: SelectOption[];
@@ -339,6 +339,15 @@ interface BaseSelectProps extends Omit<BaseComponentProps<HTMLSelectElement>, "o
339
339
  label?: string;
340
340
  labelClassName?: string;
341
341
  responseClassName?: string;
342
+ dropdownClassName?: string;
343
+ optionClassName?: string;
344
+ optionContentClassName?: string;
345
+ selectedOptionClassName?: string;
346
+ activeOptionClassName?: string;
347
+ disabledOptionClassName?: string;
348
+ chevronClassName?: string;
349
+ emptyClassName?: string;
350
+ emptyMessage?: ReactNode;
342
351
  shape?: Shape;
343
352
  styles?: string;
344
353
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elseware-ui",
3
- "version": "3.0.9",
3
+ "version": "3.0.11",
4
4
  "private": false,
5
5
  "description": "A modern and customizable React UI component library by elseware Technology.",
6
6
  "keywords": [