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.
- package/dist/index.css +126 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +316 -61
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +316 -61
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.d.mts +2 -2
- package/dist/index.native.d.ts +2 -2
- package/dist/{resolveGlobalConfigs-C0BREpe1.d.mts → resolveGlobalConfigs-BdBJw5_w.d.mts} +10 -1
- package/dist/{resolveGlobalConfigs-C0BREpe1.d.ts → resolveGlobalConfigs-BdBJw5_w.d.ts} +10 -1
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -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-
|
|
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-
|
|
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;
|
package/dist/index.native.d.ts
CHANGED
|
@@ -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-
|
|
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-
|
|
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<
|
|
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<
|
|
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
|
}
|