loon-bulma-react 2024.0.20 → 2024.0.22
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.cjs +183 -183
- package/dist/index.d.cts +55 -52
- package/dist/index.d.ts +55 -52
- package/dist/index.js +32 -32
- package/package.json +34 -34
- package/styles/_all.scss +1 -1
- package/styles/bulma-select-generator.scss +118 -0
- package/styles/custom-bulma.scss +6 -1
- package/styles/variables.scss +11 -0
package/dist/index.d.cts
CHANGED
|
@@ -740,10 +740,12 @@ type DataTableColumnProp<T extends unknown = unknown> = {
|
|
|
740
740
|
sort?: (a: T, b: T) => -1 | 0 | 1 | number;
|
|
741
741
|
/** de waarde van de kolom. Een fucnction of een property van object van type `T` (string) */
|
|
742
742
|
value: KeyOf<T> | ((item: T) => React$1.ReactNode);
|
|
743
|
-
/** manier om deze cel te identificeren */
|
|
743
|
+
/** manier om deze cel te identificeren */
|
|
744
|
+
cellIdentifier?: KeyOf<T> | ((item: T) => string);
|
|
744
745
|
/** header voor de kolom. Als niet gedefinieerd wordt de `value` gebruikt, Dus als `value` een `function` is, **moet** je deze setten */
|
|
745
746
|
header?: string | React$1.ReactNode;
|
|
746
|
-
/** alignment van deze kolom (default = `l` */
|
|
747
|
+
/** alignment van deze kolom (default = `l` */
|
|
748
|
+
alignment?: AlignmentProp;
|
|
747
749
|
/** className voor de kolom, om een cel te stylen afhankelijk van de waarde */
|
|
748
750
|
columnClass?: string | ((item: T) => string);
|
|
749
751
|
};
|
|
@@ -767,25 +769,34 @@ type DataTableProps<T extends unknown = unknown> = {
|
|
|
767
769
|
* ];
|
|
768
770
|
*/
|
|
769
771
|
columns: Array<DataTableColumnProp<T>>;
|
|
770
|
-
/** het kolom-nummer waarop default gesorteerd moet worden. **LET OP: de 1e kolom heeft nr 1! ** */
|
|
771
|
-
|
|
772
|
-
/**
|
|
773
|
-
|
|
772
|
+
/** het kolom-nummer waarop default gesorteerd moet worden. **LET OP: de 1e kolom heeft nr 1! ** */
|
|
773
|
+
defaultSortColNum?: number;
|
|
774
|
+
/** data-array in de tabel */
|
|
775
|
+
data?: Array<T>;
|
|
776
|
+
/** moet de tabel compact wwergegevens worden (voorheen `narrow`, default = `false`) */
|
|
777
|
+
compact?: boolean;
|
|
778
|
+
/** moet de tabel smaller worden weergegeven? */
|
|
779
|
+
narrow?: boolean;
|
|
774
780
|
/** is de header van de tabel sticky ? (default = `none`)
|
|
775
781
|
* - none: geen sticky header
|
|
776
782
|
* - header: alleen de kolom-namen zijn sticky
|
|
777
783
|
* - all: de hele header is sticky, inclusief search en de `headerContent`
|
|
778
784
|
* */
|
|
779
785
|
sticky?: 'none' | 'header' | 'all';
|
|
780
|
-
/** is de tabel is de tabel hoverbaar (en is dat ook zichtbaar?) hebben? (default = `false`) */
|
|
781
|
-
|
|
786
|
+
/** is de tabel is de tabel hoverbaar (en is dat ook zichtbaar?) hebben? (default = `false`) */
|
|
787
|
+
hoverable?: boolean;
|
|
788
|
+
/** paginatie verstoppen? (default = `false`) */
|
|
789
|
+
hidePagination?: boolean;
|
|
782
790
|
/** maximaal aantal rijen in de tabel voor paginatie aangaat. (default = 20)
|
|
783
791
|
* - 0: geen maximum, alle rijen worden getoond
|
|
784
|
-
* - number: maximum aantal rijen voor paginatie */
|
|
785
|
-
|
|
786
|
-
/**
|
|
787
|
-
|
|
788
|
-
/**
|
|
792
|
+
* - number: maximum aantal rijen voor paginatie */
|
|
793
|
+
maxRows?: 0 | number;
|
|
794
|
+
/** bepaal grootte van paginatie en zoek-input in de tabel */
|
|
795
|
+
size?: SizeProp;
|
|
796
|
+
/** moet het zoeken verborgen zijn? (default = `false`) */
|
|
797
|
+
hideSearch?: boolean;
|
|
798
|
+
/** placeholder voor zoek-input (default = 'Zoek ...') */
|
|
799
|
+
searchPlaceholder?: string;
|
|
789
800
|
/** zoek-function voor de datatable. Default gebruikt `JSON.stringify` op het object om te controleren of de zoekterm in een row voorkomt
|
|
790
801
|
* @param searchTerm de zoekterm
|
|
791
802
|
* @param data de data-array
|
|
@@ -871,7 +882,7 @@ type DataTableProps<T extends unknown = unknown> = {
|
|
|
871
882
|
* @param param0
|
|
872
883
|
* @returns
|
|
873
884
|
*/
|
|
874
|
-
declare function DataTable<T extends unknown = unknown>({ data, columns: cols, defaultSortColNum, compact, narrow, hoverable, sticky, hidePagination, hideSearch,
|
|
885
|
+
declare function DataTable<T extends unknown = unknown>({ data, columns: cols, defaultSortColNum, compact, narrow, hoverable, sticky, hidePagination, hideSearch, headerContent, footerContent, size, maxRows: definedMaxRows, searchPlaceholder, rowIdentifier, onSearch, onRowSelected, rowClass, renderWhenNoData, searchInfoMessage, id: tableID, itemRef, }: DataTableProps<T>): JSX.Element;
|
|
875
886
|
|
|
876
887
|
type HelpTxtProps = {
|
|
877
888
|
children: React$1.ReactNode;
|
|
@@ -3304,6 +3315,7 @@ type InputStylingPropsType = {
|
|
|
3304
3315
|
/** moet het label van de input verborgen worden? (screenreader only) (default = `false`) */ labelHidden?: boolean;
|
|
3305
3316
|
/** label boven (`v`) of voor (`h`) de input, (default = `v`, vertical) */ direction?: DirectionProp;
|
|
3306
3317
|
/** (optioneel) icon op de input */ icon?: IconProp | string | undefined | null;
|
|
3318
|
+
infoData?: string | React$1.ReactNode | (() => void) | undefined;
|
|
3307
3319
|
};
|
|
3308
3320
|
type InputPropsType<T = InputValueType> = {
|
|
3309
3321
|
optionList?: string[] | Array<{
|
|
@@ -3476,7 +3488,7 @@ declare function BaseInput<T extends InputValueType = string>({ alignment, autoC
|
|
|
3476
3488
|
* | type | `string` | type voor deze input (default = `text`)|
|
|
3477
3489
|
* | value | `string` | value voor deze input (default = `undefined`)|
|
|
3478
3490
|
*/
|
|
3479
|
-
declare function Input<T extends InputValueType = string>({ direction, errorMessage, showRequiredOnLabel, icon, id, label, labelHidden, name, required, loading, size, value, optionList, onBlur, ...props }: StrictOmit<InputPropsType<T>, 'optionListId'> & InputStylingPropsType): JSX.Element;
|
|
3491
|
+
declare function Input<T extends InputValueType = string>({ direction, errorMessage, showRequiredOnLabel, icon, id, label, labelHidden, name, required, loading, size, value, infoData, optionList, onBlur, onFocus, ...props }: StrictOmit<InputPropsType<T>, 'optionListId'> & InputStylingPropsType): JSX.Element;
|
|
3480
3492
|
|
|
3481
3493
|
type CheckBoxInputProps = StrictOmit<InputPropsType<boolean>, 'value' | 'type' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'pattern' | 'placeholder'> & StrictOmit<InputStylingPropsType, 'icon'> & {
|
|
3482
3494
|
/** is de input checked? */
|
|
@@ -3507,7 +3519,7 @@ type CheckBoxInputProps = StrictOmit<InputPropsType<boolean>, 'value' | 'type' |
|
|
|
3507
3519
|
* const [x, setX] = React.useState(false);
|
|
3508
3520
|
* <CheckBox name="test" label="test" value={x} onValueChanged={setX} direction='v'/>
|
|
3509
3521
|
*/
|
|
3510
|
-
declare function CheckBox({ id, label, name, size, direction, required, showRequiredOnLabel, value, errorMessage, labelHidden, onValueChanged, onBlur, ...props }: CheckBoxInputProps): JSX.Element;
|
|
3522
|
+
declare function CheckBox({ id, label, name, size, direction, required, showRequiredOnLabel, value, errorMessage, labelHidden, helpTag, infoData, onValueChanged, onBlur, onFocus, ...props }: CheckBoxInputProps): JSX.Element;
|
|
3511
3523
|
/**
|
|
3512
3524
|
* Een checkbox input die nog helemaal zelf aan te passen is, dus zonder container eromheen. Om een checkbox in met wat meer styling te gebruiken, gebruik dan de `CheckBox` component.
|
|
3513
3525
|
* Dat is een wrapper om deze component heen. De properties `type`, `step`, `min`, `max`, `icon`, `pattern`, `placeholder` en `direction` zijn niet van toepassing op deze component.
|
|
@@ -3633,7 +3645,7 @@ type SelectInputProps<T extends number | string | string[]> = StrictOmit<InputPr
|
|
|
3633
3645
|
* ..</Select.OptGroup>
|
|
3634
3646
|
* </Select>
|
|
3635
3647
|
*/
|
|
3636
|
-
declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment, size, direction, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): JSX.Element;
|
|
3648
|
+
declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment, size, direction, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, infoData, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): JSX.Element;
|
|
3637
3649
|
declare namespace Select {
|
|
3638
3650
|
var Option: ({ value, disabled, id, children, }: {
|
|
3639
3651
|
id?: string | undefined;
|
|
@@ -3690,7 +3702,7 @@ type ComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<number |
|
|
|
3690
3702
|
* onSearch={(txt, v) => v.last_name.includes(txt) || v.first_name.includes(txt)}
|
|
3691
3703
|
* />
|
|
3692
3704
|
*/
|
|
3693
|
-
declare function ComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, onValueChanged, onChange, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, }: ComboBoxProps<T>): JSX.Element;
|
|
3705
|
+
declare function ComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, infoData, onValueChanged, onChange, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, }: ComboBoxProps<T>): JSX.Element;
|
|
3694
3706
|
|
|
3695
3707
|
type MultiComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<number | string | string[]>, 'type' | 'step' | 'inputRef' | 'value' | 'onValueChanged' | 'min' | 'max' | 'readonly' | 'pattern' | 'errorMessage' | 'infoMessage' | 'title' | 'form' | 'autoComplete' | 'spellCheck' | 'keyboardType' | 'onChange'> & InputStylingPropsType & {
|
|
3696
3708
|
/** De waarde van de combobox */ value: T[];
|
|
@@ -3733,7 +3745,7 @@ type MultiComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<numb
|
|
|
3733
3745
|
* onSearch={(txt, v) => v.last_name.includes(txt) || v.first_name.includes(txt)}
|
|
3734
3746
|
* />
|
|
3735
3747
|
*/
|
|
3736
|
-
declare function MultiComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, onValueChanged, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, formatValue, }: MultiComboBoxProps<T>): JSX.Element;
|
|
3748
|
+
declare function MultiComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, infoData, onValueChanged, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, formatValue, }: MultiComboBoxProps<T>): JSX.Element;
|
|
3737
3749
|
|
|
3738
3750
|
type ColorInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged' | 'step' | 'min' | 'max' | 'autoComplete' | 'spellCheck' | 'keyboardType'> & InputStylingPropsType & {
|
|
3739
3751
|
/** Gebruik de color-input met een hex-color, bijvooerbeeld`#ff8000` of `#fff` */
|
|
@@ -3845,7 +3857,7 @@ type RadioGroupProps<T extends RBValueType = string> = StrictOmit<InputStylingPr
|
|
|
3845
3857
|
/** callback voor typen */
|
|
3846
3858
|
onKeyUp?: (e: React$1.KeyboardEvent<HTMLInputElement>) => void;
|
|
3847
3859
|
};
|
|
3848
|
-
type RadioInputProps<T extends RBValueType = string> = StrictOmit<InputPropsType<number | string>, 'id' | 'label' | 'name' | 'type' | 'value' | 'onValueChanged' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'placeholder' | 'showRequiredOnLabel'> & StrictOmit<InputStylingPropsType, 'labelHidden' | 'direction' | 'icon'> & {
|
|
3860
|
+
type RadioInputProps<T extends RBValueType = string> = StrictOmit<InputPropsType<number | string>, 'id' | 'label' | 'name' | 'type' | 'value' | 'onValueChanged' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'placeholder' | 'showRequiredOnLabel'> & StrictOmit<InputStylingPropsType, 'labelHidden' | 'direction' | 'icon' | 'infoData'> & {
|
|
3849
3861
|
/** label van de Radio Button. Als niet gedefinieerd, wordt de `name`-prop gebruikt */
|
|
3850
3862
|
children: React$1.ReactNode;
|
|
3851
3863
|
/** de waarde van de radiobutton */
|
|
@@ -3899,7 +3911,7 @@ declare function RB<T extends RBValueType = string>({ helpTag, disabled, keyboar
|
|
|
3899
3911
|
* ..<RB value="Z">set to Z</RB>
|
|
3900
3912
|
* </RadioGroup>
|
|
3901
3913
|
*/
|
|
3902
|
-
declare function RadioGroup<T extends RBValueType = string>({ children: nodeChildren, id, label, disabled, labelHidden, name, value, required, showRequiredOnLabel, size, direction, itemsDirection, alignment, errorMessage, infoMessage, onValueChanged, onBlur, onChange, onFocus, onKeyDown, onKeyUp, }: RadioGroupProps<T>): JSX.Element;
|
|
3914
|
+
declare function RadioGroup<T extends RBValueType = string>({ children: nodeChildren, id, label, disabled, labelHidden, name, value, required, showRequiredOnLabel, size, direction, itemsDirection, alignment, errorMessage, infoMessage, infoData, onValueChanged, onBlur, onChange, onFocus, onKeyDown, onKeyUp, }: RadioGroupProps<T>): JSX.Element;
|
|
3903
3915
|
declare namespace RadioGroup {
|
|
3904
3916
|
var Item: typeof SpecialRadioItem;
|
|
3905
3917
|
}
|
|
@@ -3944,7 +3956,7 @@ type TagsInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'valu
|
|
|
3944
3956
|
* </Section>
|
|
3945
3957
|
* @returns
|
|
3946
3958
|
*/
|
|
3947
|
-
declare function TagsInput({ value, allowDuplicates, disableRemove, disabled, id, name, label, color: colorProp, direction, errorMessage, infoMessage, showRequiredOnLabel, icon, labelHidden, required, loading, size, alignment, autoComplete, optionListId, autofocus, form, helpTag, keyboardType, maxLength, minLength, pattern, placeholder, readonly, spellCheck, title, className: extraClasses, styles, randomColors, maxTags, onBlur, onFocus, onValueChanged, onKeyDown, onKeyUp, }: TagsInputProps): react_jsx_runtime.JSX.Element;
|
|
3959
|
+
declare function TagsInput({ value, allowDuplicates, disableRemove, disabled, id, name, label, color: colorProp, direction, errorMessage, infoMessage, showRequiredOnLabel, icon, labelHidden, required, loading, size, alignment, autoComplete, optionListId, autofocus, form, helpTag, keyboardType, maxLength, minLength, pattern, placeholder, readonly, spellCheck, title, className: extraClasses, styles, randomColors, maxTags, infoData, onBlur, onFocus, onValueChanged, onKeyDown, onKeyUp, }: TagsInputProps): react_jsx_runtime.JSX.Element;
|
|
3948
3960
|
|
|
3949
3961
|
type EmailInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
3950
3962
|
pattern?: string;
|
|
@@ -3992,7 +4004,7 @@ type PasswordInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> &
|
|
|
3992
4004
|
* @param revealPasswordMsg boodschap bij de checkbox. Default is `Toon wachtwoord`
|
|
3993
4005
|
* @param iconRevealed icon voor ww revealed. Default is `faEye`
|
|
3994
4006
|
*/
|
|
3995
|
-
declare function PasswordInput({ value, autoComplete, icon, name, size, direction, revealPasswordAllowed, revealPasswordMsg, iconRevealed, onValueChanged, ...props }: PasswordInputProps): JSX.Element;
|
|
4007
|
+
declare function PasswordInput({ value, autoComplete, icon, name, id, label, required, showRequiredOnLabel, labelHidden, size, direction, revealPasswordAllowed, revealPasswordMsg, iconRevealed, errorMessage, infoMessage, infoData, helpTag, onValueChanged, onBlur, onFocus, ...props }: PasswordInputProps): JSX.Element;
|
|
3996
4008
|
|
|
3997
4009
|
type TextEditorPropsType = {
|
|
3998
4010
|
content?: string;
|
|
@@ -4052,7 +4064,7 @@ type TextAreaProps = StrictOmit<InputPropsType<string>, 'type' | 'inputRef' | 'k
|
|
|
4052
4064
|
* @param rows aantal rijen voor de textarea (default: 4)
|
|
4053
4065
|
* @param cols aantal kolommen voor de textarea. **werkt niet in Bulma! de breedte is altijd maximaal!**
|
|
4054
4066
|
*/
|
|
4055
|
-
declare function TextArea({ value, label, errorMessage, infoMessage, helpTag, id, name, spellCheck, required, showRequiredOnLabel, autoComplete, placeholder, disabled, form, readonly, autofocus, inputRef, max, min, title, size, alignment, direction, cols, rows, labelHidden, loading, onValueChanged, onChange, onBlur, onFocus, onKeyDown, onKeyUp, }: TextAreaProps): JSX.Element;
|
|
4067
|
+
declare function TextArea({ value, label, errorMessage, infoMessage, helpTag, id, name, spellCheck, required, showRequiredOnLabel, autoComplete, placeholder, disabled, form, readonly, autofocus, inputRef, max, min, title, size, alignment, direction, cols, rows, labelHidden, loading, infoData, onValueChanged, onChange, onBlur, onFocus, onKeyDown, onKeyUp, }: TextAreaProps): JSX.Element;
|
|
4056
4068
|
|
|
4057
4069
|
type CharType = '0-9' | 'a-z' | 'A-Z' | 'a-Z' | '0-Z' | (string & {}) | RegExp;
|
|
4058
4070
|
type TextInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
@@ -4104,7 +4116,7 @@ type RangeInputProps = StrictOmit<InputPropsType<number>, 'autofocus' | 'autoCom
|
|
|
4104
4116
|
* @param step De stapgrootte van de input (default = 1)
|
|
4105
4117
|
* @example <RangeInput value={50} min={0} max={100} />
|
|
4106
4118
|
*/
|
|
4107
|
-
declare function RangeInput({ value, min, max, step, prefix, suffix, helpTag, errorMessage, infoMessage, label, disabled, title, name, size, required, showRequiredOnLabel, id, readonly, form, inputRef, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, direction, labelHidden, }: RangeInputProps): JSX.Element;
|
|
4119
|
+
declare function RangeInput({ value, min, max, step, prefix, suffix, helpTag, errorMessage, infoMessage, label, disabled, title, name, size, required, showRequiredOnLabel, id, readonly, form, inputRef, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, direction, labelHidden, infoData, }: RangeInputProps): JSX.Element;
|
|
4108
4120
|
|
|
4109
4121
|
type DateInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged'> & InputStylingPropsType & {
|
|
4110
4122
|
/**
|
|
@@ -4280,7 +4292,7 @@ type FileInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'valu
|
|
|
4280
4292
|
* **default:** toon de namen van alle geselecteerde bestanden, gescheiden door komma's. Als er geen bestanden zijn, dan de noFilesTxt tonen.
|
|
4281
4293
|
* @param onValueChanged callback voor value changes. Bevat het path naar de file(s) en de files in een array.
|
|
4282
4294
|
*/
|
|
4283
|
-
declare function FileInput({ labelHidden, multiple, placeholder, helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, readonly, pattern, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, value, icon, boxed, accept, capture, noFilesTxt, chooseFileTxt, formatter, }: FileInputProps): JSX.Element;
|
|
4295
|
+
declare function FileInput({ labelHidden, multiple, placeholder, helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, readonly, pattern, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, value, icon, boxed, accept, capture, noFilesTxt, chooseFileTxt, infoData, formatter, }: FileInputProps): JSX.Element;
|
|
4284
4296
|
|
|
4285
4297
|
type CurrencyInputProps = StrictOmit<InputPropsType<number>, 'keyboardType' | 'pattern' | 'value' | 'type' | 'onValueChanged' | 'errorMessage' | 'infoMessage'> & InputStylingPropsType & {
|
|
4286
4298
|
/** waarde van de input. Als number of als number-string-tuple (zoals waarde uit `onValueChanged`) */
|
|
@@ -4322,7 +4334,7 @@ type CurrencyInputProps = StrictOmit<InputPropsType<number>, 'keyboardType' | 'p
|
|
|
4322
4334
|
* const [x, setX] = React.useState<string>('0');
|
|
4323
4335
|
* <CurrencyInput value={x} onValueChanged={([strVal, _numVal]) => setX(strVal)} />
|
|
4324
4336
|
*/
|
|
4325
|
-
declare function CurrencyInput({ placeholder, helpTag, errorMessage, infoMessage, label, disabled, title, name, value, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, inputRef, readonly, step, autofocus, form, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, labelHidden, loading, icon, suffix, prefix, decimalScale, decimalSeparator, groupSeparator, }: CurrencyInputProps): JSX.Element;
|
|
4337
|
+
declare function CurrencyInput({ placeholder, helpTag, errorMessage, infoMessage, label, disabled, title, name, value, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, inputRef, readonly, step, autofocus, infoData, form, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, labelHidden, loading, icon, suffix, prefix, decimalScale, decimalSeparator, groupSeparator, }: CurrencyInputProps): JSX.Element;
|
|
4326
4338
|
|
|
4327
4339
|
/** WeekInput: input voor een weeknummer (format: yyyy-Www)
|
|
4328
4340
|
* -1e getal: jaartal
|
|
@@ -4821,40 +4833,31 @@ type UseLocalStoredStateFn<T = string> = {
|
|
|
4821
4833
|
*/
|
|
4822
4834
|
declare function useLocalStoredState<T extends unknown>({ key, initialValue, deserialize, serialize }: UseLocalStoredStateFn<T>): readonly [T | undefined, (value: T) => void, () => void];
|
|
4823
4835
|
|
|
4824
|
-
|
|
4825
|
-
|
|
4836
|
+
declare const DOTS = "dots";
|
|
4837
|
+
interface PaginationParams {
|
|
4838
|
+
/** Page selected on initial render, defaults to 1 */
|
|
4826
4839
|
initialPage?: number;
|
|
4827
|
-
/** Controlled
|
|
4840
|
+
/** Controlled active page number */
|
|
4828
4841
|
page?: number;
|
|
4829
|
-
/**
|
|
4842
|
+
/** Total amount of pages */
|
|
4830
4843
|
total: number;
|
|
4831
|
-
/**
|
|
4844
|
+
/** Siblings amount on left/right side of selected page, defaults to 1 */
|
|
4832
4845
|
siblings?: number;
|
|
4833
|
-
/**
|
|
4846
|
+
/** Amount of elements visible on left/right edges, defaults to 1 */
|
|
4834
4847
|
boundaries?: number;
|
|
4835
|
-
/** Callback
|
|
4836
|
-
onChange?: (page: number
|
|
4837
|
-
}
|
|
4838
|
-
|
|
4839
|
-
range:
|
|
4840
|
-
active: number
|
|
4841
|
-
|
|
4848
|
+
/** Callback fired after change of each page */
|
|
4849
|
+
onChange?: (page: number) => void;
|
|
4850
|
+
}
|
|
4851
|
+
declare function usePagination({ total, siblings, boundaries, page, initialPage, onChange, }: PaginationParams): {
|
|
4852
|
+
range: (number | "dots")[];
|
|
4853
|
+
active: number;
|
|
4854
|
+
total: number;
|
|
4855
|
+
setPage: (pageNumber: number) => void;
|
|
4842
4856
|
next: () => void;
|
|
4843
4857
|
prev: () => void;
|
|
4844
4858
|
first: () => void;
|
|
4845
4859
|
last: () => void;
|
|
4846
4860
|
};
|
|
4847
|
-
declare const DOTS = "dots";
|
|
4848
|
-
/**
|
|
4849
|
-
* De usePagination-hook is bedoeld voor de Pagination-component.
|
|
4850
|
-
* @param total totaal aantal pagina's - `Math.ceil(totalItems / itemsPerPage)`)
|
|
4851
|
-
* @param siblings aantal directe buren van de geselecteerde pagina (default = 1)
|
|
4852
|
-
* @param boundaries aantal zichtbare pagina's aan de uiteinden van de paginatie (default = 1)
|
|
4853
|
-
* @param page geselecteerde pagina
|
|
4854
|
-
* @param initialPage geselecteerde pagina op 1e render, default = 1
|
|
4855
|
-
* @param onChange callback voor het wijzigigen van de pagina
|
|
4856
|
-
*/
|
|
4857
|
-
declare function usePagination({ total, siblings, boundaries, page, initialPage, onChange, }: PaginationParams): PaginationResult;
|
|
4858
4861
|
|
|
4859
4862
|
/**
|
|
4860
4863
|
* Een toggle tussen twee state-opties. de state switched tussen de twee.
|
|
@@ -5115,4 +5118,4 @@ type FetchAPIWrapper = {
|
|
|
5115
5118
|
};
|
|
5116
5119
|
declare function useFetchAPI(): FetchAPIWrapper;
|
|
5117
5120
|
|
|
5118
|
-
export { AND, type ActionSheetButton, ActionSheetProvider, type AlignmentProp, type AnchorRelProp, type AnchorTargetProp, AspectRatio, type AspectRatioProps, type AutoCompleteProp, type BaseEventProps, BaseInput, Block, Box, type BoxProps, Button, Buttons as ButtonGroup, type ButtonGroupProps, type ButtonProps, Buttons, CB, Calendar, type CalendarOptions, type CalendarType, CheckBox, type CheckBoxInputProps as CheckboxInputProps, ColorInput, type ColorInputProps, type ColorProp, Column, type ColumnProps, Columns, ComboBox, type ComboBoxProps, ConfirmProvider, Container, Content, type CoordinatesProp, CurrencyInput, type CurrencyInputProps, DOTS, DataTable, type DataTableColumnProp as DataTableColumn, type DataTableProps, DateInput, type DateInputProps, DateTimeInput, type DateTimeInputProps, DefinedHexColors, DialogsProvider, type DiffFnType, type DirectionProp, EmailInput, type EmailInputProps, EvMv, type ExpandedColumnProps, FileInput, type FileInputProps, type FileInputValue, Footer, H1, H2, H3, H4, H5, H6, type HSLColor, HelpTxt, type HelpTxtProps, Hero, type HeroProps, type HexColor$1 as HexColor, HiddenInput, type HiddenInputProps, type Hotkey, type HotkeyItem, IF, IbanDetailsPerLand, Icon, type IconProps, IconStack, IconText, type IconTextProps, Image, type ImageProps, Indicator, type IndicatorPositionProp, type IndicatorProps, Input, type InputPropsType, type InputStylingPropsType, type InputValueType, type JSChangeDateTimeType, type JSDateSetterType, JSDateTime, JSDuration, Kbd, Kbds, type KeyOf, type KeyboardTypeProp, Link, LinkButton, type LinkButtonProps, type LinkProps, Menu, type MenuItemGroupProps, type MenuItemProps, type MenuProps, Message, type MessageProps, Modal, type ModalProps, MonthInput, type MonthInputProps, type MonthInputString, type MonthViewProps, MultiComboBox, type MultiComboBoxProps, NAND, NOR, NOT, Notification, type NotificationProps, Notifier, type NotifierContextType, type NotifierItemProps, type NotifierProps, NotifierProvider, type NotifierProviderProps, NumberInput, type NumberInputProps, OR, type OnOffToggleItemProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, type PositionProp, type PrettierType, ProgressBar, type ProgressBarProps, PromptProvider, QuickView, type QuickViewProps, RB, type RGBColor, RadioGroup, type RadioInputProps, RangeInput, type RangeInputProps, type RectProp, type RelationshipProp, SWITCH, ScrollArea, Section, Select, type SelectInputProps, SimpleTable, type SimpleTableColProps, type SimpleTableProps, type SizeProp, type StepItemProps, Steps, type StepsProps, type StrictOmit, TabBar, type TabBarItemProps, type TabBarProps, Table, Tag, type TagProps, type TagSizeProp, Tags, TagsInput, type TagsInputProps, type TagsProps, TelephoneInput, type TelephoneInputProps, type TextAlignmentProp, TextArea, type TextAreaProps, TextEditor, TextInput, type TextInputProps, TimeInput, type TimeInputProps, TimeLine, type TimeLineItemProps, type TimeLinePointProps, type TimeLineProps, ToggleBar, type ToggleBarProps, type ToggleItemProps, TT as Tooltip, URLInput, type URLInputProps, type UncontrolledMode, type UncontrolledOptions, WeekInput, type WeekInputProps, type WeekInputString, type WeekViewProps, XNOR, XOR, boolSort, calculateTxtColor, centerPad, dateSort, getHotkeyHandler, getHotkeyMatcher, hasBSN, hexToHSL, hexToRGB, hslToHex, hslToRGB, isHSLColor, isHexColor, isIBAN, isRGBColor, leftPad, numSort, parseHotkey, randomColorProp, randomDbl, randomInt, rgbToHSL, rgbToHex, rightPad, roundTo, stringSort, useActionSheet, useBoolToggle, useClickOutside, useClipboard, useConfirm, useDebouncedState, useDebouncedValue, useFetchAPI, useHotkeys, useLocalStoredState, useNotifier, usePagination, usePrompt, useScrollIntoView, useSessionStoredState, useToggle, useUncontrolled, useValidatedState };
|
|
5121
|
+
export { AND, type ActionSheetButton, ActionSheetProvider, type AlignmentProp, type AnchorRelProp, type AnchorTargetProp, AspectRatio, type AspectRatioProps, type AutoCompleteProp, type BaseEventProps, BaseInput, Block, Box, type BoxProps, Button, Buttons as ButtonGroup, type ButtonGroupProps, type ButtonProps, Buttons, CB, Calendar, type CalendarOptions, type CalendarType, CheckBox, type CheckBoxInputProps as CheckboxInputProps, ColorInput, type ColorInputProps, type ColorProp, Column, type ColumnProps, Columns, ComboBox, type ComboBoxProps, ConfirmProvider, Container, Content, type CoordinatesProp, CurrencyInput, type CurrencyInputProps, DOTS, DataTable, type DataTableColumnProp as DataTableColumn, type DataTableProps, DateInput, type DateInputProps, DateTimeInput, type DateTimeInputProps, DefinedHexColors, DialogsProvider, type DiffFnType, type DirectionProp, EmailInput, type EmailInputProps, EvMv, type ExpandedColumnProps, FileInput, type FileInputProps, type FileInputValue, Footer, H1, H2, H3, H4, H5, H6, type HSLColor, HelpTxt, type HelpTxtProps, Hero, type HeroProps, type HexColor$1 as HexColor, HiddenInput, type HiddenInputProps, type Hotkey, type HotkeyItem, IF, IbanDetailsPerLand, Icon, type IconProps, IconStack, IconText, type IconTextProps, Image, type ImageProps, Indicator, type IndicatorPositionProp, type IndicatorProps, Input, type InputPropsType, type InputStylingPropsType, type InputValueType, type JSChangeDateTimeType, type JSDateSetterType, JSDateTime, JSDuration, Kbd, Kbds, type KeyOf, type KeyboardTypeProp, Link, LinkButton, type LinkButtonProps, type LinkProps, Menu, type MenuItemGroupProps, type MenuItemProps, type MenuProps, Message, type MessageProps, Modal, type ModalProps, MonthInput, type MonthInputProps, type MonthInputString, type MonthViewProps, MultiComboBox, type MultiComboBoxProps, NAND, NOR, NOT, Notification, type NotificationProps, Notifier, type NotifierContextType, type NotifierItemProps, type NotifierProps, NotifierProvider, type NotifierProviderProps, NumberInput, type NumberInputProps, OR, type OnOffToggleItemProps, Pagination, type PaginationParams, type PaginationProps, PasswordInput, type PasswordInputProps, type PositionProp, type PrettierType, ProgressBar, type ProgressBarProps, PromptProvider, QuickView, type QuickViewProps, RB, type RGBColor, RadioGroup, type RadioInputProps, RangeInput, type RangeInputProps, type RectProp, type RelationshipProp, SWITCH, ScrollArea, Section, Select, type SelectInputProps, SimpleTable, type SimpleTableColProps, type SimpleTableProps, type SizeProp, type StepItemProps, Steps, type StepsProps, type StrictOmit, TabBar, type TabBarItemProps, type TabBarProps, Table, Tag, type TagProps, type TagSizeProp, Tags, TagsInput, type TagsInputProps, type TagsProps, TelephoneInput, type TelephoneInputProps, type TextAlignmentProp, TextArea, type TextAreaProps, TextEditor, TextInput, type TextInputProps, TimeInput, type TimeInputProps, TimeLine, type TimeLineItemProps, type TimeLinePointProps, type TimeLineProps, ToggleBar, type ToggleBarProps, type ToggleItemProps, TT as Tooltip, URLInput, type URLInputProps, type UncontrolledMode, type UncontrolledOptions, WeekInput, type WeekInputProps, type WeekInputString, type WeekViewProps, XNOR, XOR, boolSort, calculateTxtColor, centerPad, dateSort, getHotkeyHandler, getHotkeyMatcher, hasBSN, hexToHSL, hexToRGB, hslToHex, hslToRGB, isHSLColor, isHexColor, isIBAN, isRGBColor, leftPad, numSort, parseHotkey, randomColorProp, randomDbl, randomInt, rgbToHSL, rgbToHex, rightPad, roundTo, stringSort, useActionSheet, useBoolToggle, useClickOutside, useClipboard, useConfirm, useDebouncedState, useDebouncedValue, useFetchAPI, useHotkeys, useLocalStoredState, useNotifier, usePagination, usePrompt, useScrollIntoView, useSessionStoredState, useToggle, useUncontrolled, useValidatedState };
|
package/dist/index.d.ts
CHANGED
|
@@ -740,10 +740,12 @@ type DataTableColumnProp<T extends unknown = unknown> = {
|
|
|
740
740
|
sort?: (a: T, b: T) => -1 | 0 | 1 | number;
|
|
741
741
|
/** de waarde van de kolom. Een fucnction of een property van object van type `T` (string) */
|
|
742
742
|
value: KeyOf<T> | ((item: T) => React$1.ReactNode);
|
|
743
|
-
/** manier om deze cel te identificeren */
|
|
743
|
+
/** manier om deze cel te identificeren */
|
|
744
|
+
cellIdentifier?: KeyOf<T> | ((item: T) => string);
|
|
744
745
|
/** header voor de kolom. Als niet gedefinieerd wordt de `value` gebruikt, Dus als `value` een `function` is, **moet** je deze setten */
|
|
745
746
|
header?: string | React$1.ReactNode;
|
|
746
|
-
/** alignment van deze kolom (default = `l` */
|
|
747
|
+
/** alignment van deze kolom (default = `l` */
|
|
748
|
+
alignment?: AlignmentProp;
|
|
747
749
|
/** className voor de kolom, om een cel te stylen afhankelijk van de waarde */
|
|
748
750
|
columnClass?: string | ((item: T) => string);
|
|
749
751
|
};
|
|
@@ -767,25 +769,34 @@ type DataTableProps<T extends unknown = unknown> = {
|
|
|
767
769
|
* ];
|
|
768
770
|
*/
|
|
769
771
|
columns: Array<DataTableColumnProp<T>>;
|
|
770
|
-
/** het kolom-nummer waarop default gesorteerd moet worden. **LET OP: de 1e kolom heeft nr 1! ** */
|
|
771
|
-
|
|
772
|
-
/**
|
|
773
|
-
|
|
772
|
+
/** het kolom-nummer waarop default gesorteerd moet worden. **LET OP: de 1e kolom heeft nr 1! ** */
|
|
773
|
+
defaultSortColNum?: number;
|
|
774
|
+
/** data-array in de tabel */
|
|
775
|
+
data?: Array<T>;
|
|
776
|
+
/** moet de tabel compact wwergegevens worden (voorheen `narrow`, default = `false`) */
|
|
777
|
+
compact?: boolean;
|
|
778
|
+
/** moet de tabel smaller worden weergegeven? */
|
|
779
|
+
narrow?: boolean;
|
|
774
780
|
/** is de header van de tabel sticky ? (default = `none`)
|
|
775
781
|
* - none: geen sticky header
|
|
776
782
|
* - header: alleen de kolom-namen zijn sticky
|
|
777
783
|
* - all: de hele header is sticky, inclusief search en de `headerContent`
|
|
778
784
|
* */
|
|
779
785
|
sticky?: 'none' | 'header' | 'all';
|
|
780
|
-
/** is de tabel is de tabel hoverbaar (en is dat ook zichtbaar?) hebben? (default = `false`) */
|
|
781
|
-
|
|
786
|
+
/** is de tabel is de tabel hoverbaar (en is dat ook zichtbaar?) hebben? (default = `false`) */
|
|
787
|
+
hoverable?: boolean;
|
|
788
|
+
/** paginatie verstoppen? (default = `false`) */
|
|
789
|
+
hidePagination?: boolean;
|
|
782
790
|
/** maximaal aantal rijen in de tabel voor paginatie aangaat. (default = 20)
|
|
783
791
|
* - 0: geen maximum, alle rijen worden getoond
|
|
784
|
-
* - number: maximum aantal rijen voor paginatie */
|
|
785
|
-
|
|
786
|
-
/**
|
|
787
|
-
|
|
788
|
-
/**
|
|
792
|
+
* - number: maximum aantal rijen voor paginatie */
|
|
793
|
+
maxRows?: 0 | number;
|
|
794
|
+
/** bepaal grootte van paginatie en zoek-input in de tabel */
|
|
795
|
+
size?: SizeProp;
|
|
796
|
+
/** moet het zoeken verborgen zijn? (default = `false`) */
|
|
797
|
+
hideSearch?: boolean;
|
|
798
|
+
/** placeholder voor zoek-input (default = 'Zoek ...') */
|
|
799
|
+
searchPlaceholder?: string;
|
|
789
800
|
/** zoek-function voor de datatable. Default gebruikt `JSON.stringify` op het object om te controleren of de zoekterm in een row voorkomt
|
|
790
801
|
* @param searchTerm de zoekterm
|
|
791
802
|
* @param data de data-array
|
|
@@ -871,7 +882,7 @@ type DataTableProps<T extends unknown = unknown> = {
|
|
|
871
882
|
* @param param0
|
|
872
883
|
* @returns
|
|
873
884
|
*/
|
|
874
|
-
declare function DataTable<T extends unknown = unknown>({ data, columns: cols, defaultSortColNum, compact, narrow, hoverable, sticky, hidePagination, hideSearch,
|
|
885
|
+
declare function DataTable<T extends unknown = unknown>({ data, columns: cols, defaultSortColNum, compact, narrow, hoverable, sticky, hidePagination, hideSearch, headerContent, footerContent, size, maxRows: definedMaxRows, searchPlaceholder, rowIdentifier, onSearch, onRowSelected, rowClass, renderWhenNoData, searchInfoMessage, id: tableID, itemRef, }: DataTableProps<T>): JSX.Element;
|
|
875
886
|
|
|
876
887
|
type HelpTxtProps = {
|
|
877
888
|
children: React$1.ReactNode;
|
|
@@ -3304,6 +3315,7 @@ type InputStylingPropsType = {
|
|
|
3304
3315
|
/** moet het label van de input verborgen worden? (screenreader only) (default = `false`) */ labelHidden?: boolean;
|
|
3305
3316
|
/** label boven (`v`) of voor (`h`) de input, (default = `v`, vertical) */ direction?: DirectionProp;
|
|
3306
3317
|
/** (optioneel) icon op de input */ icon?: IconProp | string | undefined | null;
|
|
3318
|
+
infoData?: string | React$1.ReactNode | (() => void) | undefined;
|
|
3307
3319
|
};
|
|
3308
3320
|
type InputPropsType<T = InputValueType> = {
|
|
3309
3321
|
optionList?: string[] | Array<{
|
|
@@ -3476,7 +3488,7 @@ declare function BaseInput<T extends InputValueType = string>({ alignment, autoC
|
|
|
3476
3488
|
* | type | `string` | type voor deze input (default = `text`)|
|
|
3477
3489
|
* | value | `string` | value voor deze input (default = `undefined`)|
|
|
3478
3490
|
*/
|
|
3479
|
-
declare function Input<T extends InputValueType = string>({ direction, errorMessage, showRequiredOnLabel, icon, id, label, labelHidden, name, required, loading, size, value, optionList, onBlur, ...props }: StrictOmit<InputPropsType<T>, 'optionListId'> & InputStylingPropsType): JSX.Element;
|
|
3491
|
+
declare function Input<T extends InputValueType = string>({ direction, errorMessage, showRequiredOnLabel, icon, id, label, labelHidden, name, required, loading, size, value, infoData, optionList, onBlur, onFocus, ...props }: StrictOmit<InputPropsType<T>, 'optionListId'> & InputStylingPropsType): JSX.Element;
|
|
3480
3492
|
|
|
3481
3493
|
type CheckBoxInputProps = StrictOmit<InputPropsType<boolean>, 'value' | 'type' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'pattern' | 'placeholder'> & StrictOmit<InputStylingPropsType, 'icon'> & {
|
|
3482
3494
|
/** is de input checked? */
|
|
@@ -3507,7 +3519,7 @@ type CheckBoxInputProps = StrictOmit<InputPropsType<boolean>, 'value' | 'type' |
|
|
|
3507
3519
|
* const [x, setX] = React.useState(false);
|
|
3508
3520
|
* <CheckBox name="test" label="test" value={x} onValueChanged={setX} direction='v'/>
|
|
3509
3521
|
*/
|
|
3510
|
-
declare function CheckBox({ id, label, name, size, direction, required, showRequiredOnLabel, value, errorMessage, labelHidden, onValueChanged, onBlur, ...props }: CheckBoxInputProps): JSX.Element;
|
|
3522
|
+
declare function CheckBox({ id, label, name, size, direction, required, showRequiredOnLabel, value, errorMessage, labelHidden, helpTag, infoData, onValueChanged, onBlur, onFocus, ...props }: CheckBoxInputProps): JSX.Element;
|
|
3511
3523
|
/**
|
|
3512
3524
|
* Een checkbox input die nog helemaal zelf aan te passen is, dus zonder container eromheen. Om een checkbox in met wat meer styling te gebruiken, gebruik dan de `CheckBox` component.
|
|
3513
3525
|
* Dat is een wrapper om deze component heen. De properties `type`, `step`, `min`, `max`, `icon`, `pattern`, `placeholder` en `direction` zijn niet van toepassing op deze component.
|
|
@@ -3633,7 +3645,7 @@ type SelectInputProps<T extends number | string | string[]> = StrictOmit<InputPr
|
|
|
3633
3645
|
* ..</Select.OptGroup>
|
|
3634
3646
|
* </Select>
|
|
3635
3647
|
*/
|
|
3636
|
-
declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment, size, direction, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): JSX.Element;
|
|
3648
|
+
declare function Select<T extends number | string | string[] = string>({ value, id, name, label, grouped, required, showRequiredOnLabel, errorMessage, infoMessage, multiple, alignment, size, direction, options, children: nodes, helpTag, disabled, keyboardType, title, spellCheck, loading, autoComplete, autofocus, form, inputRef: ref, labelHidden, icon, infoData, onBlur, onFocus, onChange, onKeyDown, onKeyUp, onValueChanged, }: SelectInputProps<T>): JSX.Element;
|
|
3637
3649
|
declare namespace Select {
|
|
3638
3650
|
var Option: ({ value, disabled, id, children, }: {
|
|
3639
3651
|
id?: string | undefined;
|
|
@@ -3690,7 +3702,7 @@ type ComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<number |
|
|
|
3690
3702
|
* onSearch={(txt, v) => v.last_name.includes(txt) || v.first_name.includes(txt)}
|
|
3691
3703
|
* />
|
|
3692
3704
|
*/
|
|
3693
|
-
declare function ComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, onValueChanged, onChange, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, }: ComboBoxProps<T>): JSX.Element;
|
|
3705
|
+
declare function ComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, infoData, onValueChanged, onChange, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, }: ComboBoxProps<T>): JSX.Element;
|
|
3694
3706
|
|
|
3695
3707
|
type MultiComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<number | string | string[]>, 'type' | 'step' | 'inputRef' | 'value' | 'onValueChanged' | 'min' | 'max' | 'readonly' | 'pattern' | 'errorMessage' | 'infoMessage' | 'title' | 'form' | 'autoComplete' | 'spellCheck' | 'keyboardType' | 'onChange'> & InputStylingPropsType & {
|
|
3696
3708
|
/** De waarde van de combobox */ value: T[];
|
|
@@ -3733,7 +3745,7 @@ type MultiComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<numb
|
|
|
3733
3745
|
* onSearch={(txt, v) => v.last_name.includes(txt) || v.first_name.includes(txt)}
|
|
3734
3746
|
* />
|
|
3735
3747
|
*/
|
|
3736
|
-
declare function MultiComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, onValueChanged, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, formatValue, }: MultiComboBoxProps<T>): JSX.Element;
|
|
3748
|
+
declare function MultiComboBox<T extends unknown = {}>({ value, options, id, name, label, required, showRequiredOnLabel, errorMessage, infoMessage, alignment, size, direction, placeholder, helpTag, disabled, loading, autofocus, labelHidden, icon, infoData, onValueChanged, onFocus, onBlur, onKeyDown, onKeyUp, onSearch, formatLabel, formatValue, }: MultiComboBoxProps<T>): JSX.Element;
|
|
3737
3749
|
|
|
3738
3750
|
type ColorInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged' | 'step' | 'min' | 'max' | 'autoComplete' | 'spellCheck' | 'keyboardType'> & InputStylingPropsType & {
|
|
3739
3751
|
/** Gebruik de color-input met een hex-color, bijvooerbeeld`#ff8000` of `#fff` */
|
|
@@ -3845,7 +3857,7 @@ type RadioGroupProps<T extends RBValueType = string> = StrictOmit<InputStylingPr
|
|
|
3845
3857
|
/** callback voor typen */
|
|
3846
3858
|
onKeyUp?: (e: React$1.KeyboardEvent<HTMLInputElement>) => void;
|
|
3847
3859
|
};
|
|
3848
|
-
type RadioInputProps<T extends RBValueType = string> = StrictOmit<InputPropsType<number | string>, 'id' | 'label' | 'name' | 'type' | 'value' | 'onValueChanged' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'placeholder' | 'showRequiredOnLabel'> & StrictOmit<InputStylingPropsType, 'labelHidden' | 'direction' | 'icon'> & {
|
|
3860
|
+
type RadioInputProps<T extends RBValueType = string> = StrictOmit<InputPropsType<number | string>, 'id' | 'label' | 'name' | 'type' | 'value' | 'onValueChanged' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'placeholder' | 'showRequiredOnLabel'> & StrictOmit<InputStylingPropsType, 'labelHidden' | 'direction' | 'icon' | 'infoData'> & {
|
|
3849
3861
|
/** label van de Radio Button. Als niet gedefinieerd, wordt de `name`-prop gebruikt */
|
|
3850
3862
|
children: React$1.ReactNode;
|
|
3851
3863
|
/** de waarde van de radiobutton */
|
|
@@ -3899,7 +3911,7 @@ declare function RB<T extends RBValueType = string>({ helpTag, disabled, keyboar
|
|
|
3899
3911
|
* ..<RB value="Z">set to Z</RB>
|
|
3900
3912
|
* </RadioGroup>
|
|
3901
3913
|
*/
|
|
3902
|
-
declare function RadioGroup<T extends RBValueType = string>({ children: nodeChildren, id, label, disabled, labelHidden, name, value, required, showRequiredOnLabel, size, direction, itemsDirection, alignment, errorMessage, infoMessage, onValueChanged, onBlur, onChange, onFocus, onKeyDown, onKeyUp, }: RadioGroupProps<T>): JSX.Element;
|
|
3914
|
+
declare function RadioGroup<T extends RBValueType = string>({ children: nodeChildren, id, label, disabled, labelHidden, name, value, required, showRequiredOnLabel, size, direction, itemsDirection, alignment, errorMessage, infoMessage, infoData, onValueChanged, onBlur, onChange, onFocus, onKeyDown, onKeyUp, }: RadioGroupProps<T>): JSX.Element;
|
|
3903
3915
|
declare namespace RadioGroup {
|
|
3904
3916
|
var Item: typeof SpecialRadioItem;
|
|
3905
3917
|
}
|
|
@@ -3944,7 +3956,7 @@ type TagsInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'valu
|
|
|
3944
3956
|
* </Section>
|
|
3945
3957
|
* @returns
|
|
3946
3958
|
*/
|
|
3947
|
-
declare function TagsInput({ value, allowDuplicates, disableRemove, disabled, id, name, label, color: colorProp, direction, errorMessage, infoMessage, showRequiredOnLabel, icon, labelHidden, required, loading, size, alignment, autoComplete, optionListId, autofocus, form, helpTag, keyboardType, maxLength, minLength, pattern, placeholder, readonly, spellCheck, title, className: extraClasses, styles, randomColors, maxTags, onBlur, onFocus, onValueChanged, onKeyDown, onKeyUp, }: TagsInputProps): react_jsx_runtime.JSX.Element;
|
|
3959
|
+
declare function TagsInput({ value, allowDuplicates, disableRemove, disabled, id, name, label, color: colorProp, direction, errorMessage, infoMessage, showRequiredOnLabel, icon, labelHidden, required, loading, size, alignment, autoComplete, optionListId, autofocus, form, helpTag, keyboardType, maxLength, minLength, pattern, placeholder, readonly, spellCheck, title, className: extraClasses, styles, randomColors, maxTags, infoData, onBlur, onFocus, onValueChanged, onKeyDown, onKeyUp, }: TagsInputProps): react_jsx_runtime.JSX.Element;
|
|
3948
3960
|
|
|
3949
3961
|
type EmailInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
3950
3962
|
pattern?: string;
|
|
@@ -3992,7 +4004,7 @@ type PasswordInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> &
|
|
|
3992
4004
|
* @param revealPasswordMsg boodschap bij de checkbox. Default is `Toon wachtwoord`
|
|
3993
4005
|
* @param iconRevealed icon voor ww revealed. Default is `faEye`
|
|
3994
4006
|
*/
|
|
3995
|
-
declare function PasswordInput({ value, autoComplete, icon, name, size, direction, revealPasswordAllowed, revealPasswordMsg, iconRevealed, onValueChanged, ...props }: PasswordInputProps): JSX.Element;
|
|
4007
|
+
declare function PasswordInput({ value, autoComplete, icon, name, id, label, required, showRequiredOnLabel, labelHidden, size, direction, revealPasswordAllowed, revealPasswordMsg, iconRevealed, errorMessage, infoMessage, infoData, helpTag, onValueChanged, onBlur, onFocus, ...props }: PasswordInputProps): JSX.Element;
|
|
3996
4008
|
|
|
3997
4009
|
type TextEditorPropsType = {
|
|
3998
4010
|
content?: string;
|
|
@@ -4052,7 +4064,7 @@ type TextAreaProps = StrictOmit<InputPropsType<string>, 'type' | 'inputRef' | 'k
|
|
|
4052
4064
|
* @param rows aantal rijen voor de textarea (default: 4)
|
|
4053
4065
|
* @param cols aantal kolommen voor de textarea. **werkt niet in Bulma! de breedte is altijd maximaal!**
|
|
4054
4066
|
*/
|
|
4055
|
-
declare function TextArea({ value, label, errorMessage, infoMessage, helpTag, id, name, spellCheck, required, showRequiredOnLabel, autoComplete, placeholder, disabled, form, readonly, autofocus, inputRef, max, min, title, size, alignment, direction, cols, rows, labelHidden, loading, onValueChanged, onChange, onBlur, onFocus, onKeyDown, onKeyUp, }: TextAreaProps): JSX.Element;
|
|
4067
|
+
declare function TextArea({ value, label, errorMessage, infoMessage, helpTag, id, name, spellCheck, required, showRequiredOnLabel, autoComplete, placeholder, disabled, form, readonly, autofocus, inputRef, max, min, title, size, alignment, direction, cols, rows, labelHidden, loading, infoData, onValueChanged, onChange, onBlur, onFocus, onKeyDown, onKeyUp, }: TextAreaProps): JSX.Element;
|
|
4056
4068
|
|
|
4057
4069
|
type CharType = '0-9' | 'a-z' | 'A-Z' | 'a-Z' | '0-Z' | (string & {}) | RegExp;
|
|
4058
4070
|
type TextInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
@@ -4104,7 +4116,7 @@ type RangeInputProps = StrictOmit<InputPropsType<number>, 'autofocus' | 'autoCom
|
|
|
4104
4116
|
* @param step De stapgrootte van de input (default = 1)
|
|
4105
4117
|
* @example <RangeInput value={50} min={0} max={100} />
|
|
4106
4118
|
*/
|
|
4107
|
-
declare function RangeInput({ value, min, max, step, prefix, suffix, helpTag, errorMessage, infoMessage, label, disabled, title, name, size, required, showRequiredOnLabel, id, readonly, form, inputRef, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, direction, labelHidden, }: RangeInputProps): JSX.Element;
|
|
4119
|
+
declare function RangeInput({ value, min, max, step, prefix, suffix, helpTag, errorMessage, infoMessage, label, disabled, title, name, size, required, showRequiredOnLabel, id, readonly, form, inputRef, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, direction, labelHidden, infoData, }: RangeInputProps): JSX.Element;
|
|
4108
4120
|
|
|
4109
4121
|
type DateInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged'> & InputStylingPropsType & {
|
|
4110
4122
|
/**
|
|
@@ -4280,7 +4292,7 @@ type FileInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'valu
|
|
|
4280
4292
|
* **default:** toon de namen van alle geselecteerde bestanden, gescheiden door komma's. Als er geen bestanden zijn, dan de noFilesTxt tonen.
|
|
4281
4293
|
* @param onValueChanged callback voor value changes. Bevat het path naar de file(s) en de files in een array.
|
|
4282
4294
|
*/
|
|
4283
|
-
declare function FileInput({ labelHidden, multiple, placeholder, helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, readonly, pattern, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, value, icon, boxed, accept, capture, noFilesTxt, chooseFileTxt, formatter, }: FileInputProps): JSX.Element;
|
|
4295
|
+
declare function FileInput({ labelHidden, multiple, placeholder, helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, readonly, pattern, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, value, icon, boxed, accept, capture, noFilesTxt, chooseFileTxt, infoData, formatter, }: FileInputProps): JSX.Element;
|
|
4284
4296
|
|
|
4285
4297
|
type CurrencyInputProps = StrictOmit<InputPropsType<number>, 'keyboardType' | 'pattern' | 'value' | 'type' | 'onValueChanged' | 'errorMessage' | 'infoMessage'> & InputStylingPropsType & {
|
|
4286
4298
|
/** waarde van de input. Als number of als number-string-tuple (zoals waarde uit `onValueChanged`) */
|
|
@@ -4322,7 +4334,7 @@ type CurrencyInputProps = StrictOmit<InputPropsType<number>, 'keyboardType' | 'p
|
|
|
4322
4334
|
* const [x, setX] = React.useState<string>('0');
|
|
4323
4335
|
* <CurrencyInput value={x} onValueChanged={([strVal, _numVal]) => setX(strVal)} />
|
|
4324
4336
|
*/
|
|
4325
|
-
declare function CurrencyInput({ placeholder, helpTag, errorMessage, infoMessage, label, disabled, title, name, value, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, inputRef, readonly, step, autofocus, form, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, labelHidden, loading, icon, suffix, prefix, decimalScale, decimalSeparator, groupSeparator, }: CurrencyInputProps): JSX.Element;
|
|
4337
|
+
declare function CurrencyInput({ placeholder, helpTag, errorMessage, infoMessage, label, disabled, title, name, value, required, showRequiredOnLabel, spellCheck, id, autoComplete, max, min, inputRef, readonly, step, autofocus, infoData, form, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size, alignment, direction, labelHidden, loading, icon, suffix, prefix, decimalScale, decimalSeparator, groupSeparator, }: CurrencyInputProps): JSX.Element;
|
|
4326
4338
|
|
|
4327
4339
|
/** WeekInput: input voor een weeknummer (format: yyyy-Www)
|
|
4328
4340
|
* -1e getal: jaartal
|
|
@@ -4821,40 +4833,31 @@ type UseLocalStoredStateFn<T = string> = {
|
|
|
4821
4833
|
*/
|
|
4822
4834
|
declare function useLocalStoredState<T extends unknown>({ key, initialValue, deserialize, serialize }: UseLocalStoredStateFn<T>): readonly [T | undefined, (value: T) => void, () => void];
|
|
4823
4835
|
|
|
4824
|
-
|
|
4825
|
-
|
|
4836
|
+
declare const DOTS = "dots";
|
|
4837
|
+
interface PaginationParams {
|
|
4838
|
+
/** Page selected on initial render, defaults to 1 */
|
|
4826
4839
|
initialPage?: number;
|
|
4827
|
-
/** Controlled
|
|
4840
|
+
/** Controlled active page number */
|
|
4828
4841
|
page?: number;
|
|
4829
|
-
/**
|
|
4842
|
+
/** Total amount of pages */
|
|
4830
4843
|
total: number;
|
|
4831
|
-
/**
|
|
4844
|
+
/** Siblings amount on left/right side of selected page, defaults to 1 */
|
|
4832
4845
|
siblings?: number;
|
|
4833
|
-
/**
|
|
4846
|
+
/** Amount of elements visible on left/right edges, defaults to 1 */
|
|
4834
4847
|
boundaries?: number;
|
|
4835
|
-
/** Callback
|
|
4836
|
-
onChange?: (page: number
|
|
4837
|
-
}
|
|
4838
|
-
|
|
4839
|
-
range:
|
|
4840
|
-
active: number
|
|
4841
|
-
|
|
4848
|
+
/** Callback fired after change of each page */
|
|
4849
|
+
onChange?: (page: number) => void;
|
|
4850
|
+
}
|
|
4851
|
+
declare function usePagination({ total, siblings, boundaries, page, initialPage, onChange, }: PaginationParams): {
|
|
4852
|
+
range: (number | "dots")[];
|
|
4853
|
+
active: number;
|
|
4854
|
+
total: number;
|
|
4855
|
+
setPage: (pageNumber: number) => void;
|
|
4842
4856
|
next: () => void;
|
|
4843
4857
|
prev: () => void;
|
|
4844
4858
|
first: () => void;
|
|
4845
4859
|
last: () => void;
|
|
4846
4860
|
};
|
|
4847
|
-
declare const DOTS = "dots";
|
|
4848
|
-
/**
|
|
4849
|
-
* De usePagination-hook is bedoeld voor de Pagination-component.
|
|
4850
|
-
* @param total totaal aantal pagina's - `Math.ceil(totalItems / itemsPerPage)`)
|
|
4851
|
-
* @param siblings aantal directe buren van de geselecteerde pagina (default = 1)
|
|
4852
|
-
* @param boundaries aantal zichtbare pagina's aan de uiteinden van de paginatie (default = 1)
|
|
4853
|
-
* @param page geselecteerde pagina
|
|
4854
|
-
* @param initialPage geselecteerde pagina op 1e render, default = 1
|
|
4855
|
-
* @param onChange callback voor het wijzigigen van de pagina
|
|
4856
|
-
*/
|
|
4857
|
-
declare function usePagination({ total, siblings, boundaries, page, initialPage, onChange, }: PaginationParams): PaginationResult;
|
|
4858
4861
|
|
|
4859
4862
|
/**
|
|
4860
4863
|
* Een toggle tussen twee state-opties. de state switched tussen de twee.
|
|
@@ -5115,4 +5118,4 @@ type FetchAPIWrapper = {
|
|
|
5115
5118
|
};
|
|
5116
5119
|
declare function useFetchAPI(): FetchAPIWrapper;
|
|
5117
5120
|
|
|
5118
|
-
export { AND, type ActionSheetButton, ActionSheetProvider, type AlignmentProp, type AnchorRelProp, type AnchorTargetProp, AspectRatio, type AspectRatioProps, type AutoCompleteProp, type BaseEventProps, BaseInput, Block, Box, type BoxProps, Button, Buttons as ButtonGroup, type ButtonGroupProps, type ButtonProps, Buttons, CB, Calendar, type CalendarOptions, type CalendarType, CheckBox, type CheckBoxInputProps as CheckboxInputProps, ColorInput, type ColorInputProps, type ColorProp, Column, type ColumnProps, Columns, ComboBox, type ComboBoxProps, ConfirmProvider, Container, Content, type CoordinatesProp, CurrencyInput, type CurrencyInputProps, DOTS, DataTable, type DataTableColumnProp as DataTableColumn, type DataTableProps, DateInput, type DateInputProps, DateTimeInput, type DateTimeInputProps, DefinedHexColors, DialogsProvider, type DiffFnType, type DirectionProp, EmailInput, type EmailInputProps, EvMv, type ExpandedColumnProps, FileInput, type FileInputProps, type FileInputValue, Footer, H1, H2, H3, H4, H5, H6, type HSLColor, HelpTxt, type HelpTxtProps, Hero, type HeroProps, type HexColor$1 as HexColor, HiddenInput, type HiddenInputProps, type Hotkey, type HotkeyItem, IF, IbanDetailsPerLand, Icon, type IconProps, IconStack, IconText, type IconTextProps, Image, type ImageProps, Indicator, type IndicatorPositionProp, type IndicatorProps, Input, type InputPropsType, type InputStylingPropsType, type InputValueType, type JSChangeDateTimeType, type JSDateSetterType, JSDateTime, JSDuration, Kbd, Kbds, type KeyOf, type KeyboardTypeProp, Link, LinkButton, type LinkButtonProps, type LinkProps, Menu, type MenuItemGroupProps, type MenuItemProps, type MenuProps, Message, type MessageProps, Modal, type ModalProps, MonthInput, type MonthInputProps, type MonthInputString, type MonthViewProps, MultiComboBox, type MultiComboBoxProps, NAND, NOR, NOT, Notification, type NotificationProps, Notifier, type NotifierContextType, type NotifierItemProps, type NotifierProps, NotifierProvider, type NotifierProviderProps, NumberInput, type NumberInputProps, OR, type OnOffToggleItemProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, type PositionProp, type PrettierType, ProgressBar, type ProgressBarProps, PromptProvider, QuickView, type QuickViewProps, RB, type RGBColor, RadioGroup, type RadioInputProps, RangeInput, type RangeInputProps, type RectProp, type RelationshipProp, SWITCH, ScrollArea, Section, Select, type SelectInputProps, SimpleTable, type SimpleTableColProps, type SimpleTableProps, type SizeProp, type StepItemProps, Steps, type StepsProps, type StrictOmit, TabBar, type TabBarItemProps, type TabBarProps, Table, Tag, type TagProps, type TagSizeProp, Tags, TagsInput, type TagsInputProps, type TagsProps, TelephoneInput, type TelephoneInputProps, type TextAlignmentProp, TextArea, type TextAreaProps, TextEditor, TextInput, type TextInputProps, TimeInput, type TimeInputProps, TimeLine, type TimeLineItemProps, type TimeLinePointProps, type TimeLineProps, ToggleBar, type ToggleBarProps, type ToggleItemProps, TT as Tooltip, URLInput, type URLInputProps, type UncontrolledMode, type UncontrolledOptions, WeekInput, type WeekInputProps, type WeekInputString, type WeekViewProps, XNOR, XOR, boolSort, calculateTxtColor, centerPad, dateSort, getHotkeyHandler, getHotkeyMatcher, hasBSN, hexToHSL, hexToRGB, hslToHex, hslToRGB, isHSLColor, isHexColor, isIBAN, isRGBColor, leftPad, numSort, parseHotkey, randomColorProp, randomDbl, randomInt, rgbToHSL, rgbToHex, rightPad, roundTo, stringSort, useActionSheet, useBoolToggle, useClickOutside, useClipboard, useConfirm, useDebouncedState, useDebouncedValue, useFetchAPI, useHotkeys, useLocalStoredState, useNotifier, usePagination, usePrompt, useScrollIntoView, useSessionStoredState, useToggle, useUncontrolled, useValidatedState };
|
|
5121
|
+
export { AND, type ActionSheetButton, ActionSheetProvider, type AlignmentProp, type AnchorRelProp, type AnchorTargetProp, AspectRatio, type AspectRatioProps, type AutoCompleteProp, type BaseEventProps, BaseInput, Block, Box, type BoxProps, Button, Buttons as ButtonGroup, type ButtonGroupProps, type ButtonProps, Buttons, CB, Calendar, type CalendarOptions, type CalendarType, CheckBox, type CheckBoxInputProps as CheckboxInputProps, ColorInput, type ColorInputProps, type ColorProp, Column, type ColumnProps, Columns, ComboBox, type ComboBoxProps, ConfirmProvider, Container, Content, type CoordinatesProp, CurrencyInput, type CurrencyInputProps, DOTS, DataTable, type DataTableColumnProp as DataTableColumn, type DataTableProps, DateInput, type DateInputProps, DateTimeInput, type DateTimeInputProps, DefinedHexColors, DialogsProvider, type DiffFnType, type DirectionProp, EmailInput, type EmailInputProps, EvMv, type ExpandedColumnProps, FileInput, type FileInputProps, type FileInputValue, Footer, H1, H2, H3, H4, H5, H6, type HSLColor, HelpTxt, type HelpTxtProps, Hero, type HeroProps, type HexColor$1 as HexColor, HiddenInput, type HiddenInputProps, type Hotkey, type HotkeyItem, IF, IbanDetailsPerLand, Icon, type IconProps, IconStack, IconText, type IconTextProps, Image, type ImageProps, Indicator, type IndicatorPositionProp, type IndicatorProps, Input, type InputPropsType, type InputStylingPropsType, type InputValueType, type JSChangeDateTimeType, type JSDateSetterType, JSDateTime, JSDuration, Kbd, Kbds, type KeyOf, type KeyboardTypeProp, Link, LinkButton, type LinkButtonProps, type LinkProps, Menu, type MenuItemGroupProps, type MenuItemProps, type MenuProps, Message, type MessageProps, Modal, type ModalProps, MonthInput, type MonthInputProps, type MonthInputString, type MonthViewProps, MultiComboBox, type MultiComboBoxProps, NAND, NOR, NOT, Notification, type NotificationProps, Notifier, type NotifierContextType, type NotifierItemProps, type NotifierProps, NotifierProvider, type NotifierProviderProps, NumberInput, type NumberInputProps, OR, type OnOffToggleItemProps, Pagination, type PaginationParams, type PaginationProps, PasswordInput, type PasswordInputProps, type PositionProp, type PrettierType, ProgressBar, type ProgressBarProps, PromptProvider, QuickView, type QuickViewProps, RB, type RGBColor, RadioGroup, type RadioInputProps, RangeInput, type RangeInputProps, type RectProp, type RelationshipProp, SWITCH, ScrollArea, Section, Select, type SelectInputProps, SimpleTable, type SimpleTableColProps, type SimpleTableProps, type SizeProp, type StepItemProps, Steps, type StepsProps, type StrictOmit, TabBar, type TabBarItemProps, type TabBarProps, Table, Tag, type TagProps, type TagSizeProp, Tags, TagsInput, type TagsInputProps, type TagsProps, TelephoneInput, type TelephoneInputProps, type TextAlignmentProp, TextArea, type TextAreaProps, TextEditor, TextInput, type TextInputProps, TimeInput, type TimeInputProps, TimeLine, type TimeLineItemProps, type TimeLinePointProps, type TimeLineProps, ToggleBar, type ToggleBarProps, type ToggleItemProps, TT as Tooltip, URLInput, type URLInputProps, type UncontrolledMode, type UncontrolledOptions, WeekInput, type WeekInputProps, type WeekInputString, type WeekViewProps, XNOR, XOR, boolSort, calculateTxtColor, centerPad, dateSort, getHotkeyHandler, getHotkeyMatcher, hasBSN, hexToHSL, hexToRGB, hslToHex, hslToRGB, isHSLColor, isHexColor, isIBAN, isRGBColor, leftPad, numSort, parseHotkey, randomColorProp, randomDbl, randomInt, rgbToHSL, rgbToHex, rightPad, roundTo, stringSort, useActionSheet, useBoolToggle, useClickOutside, useClipboard, useConfirm, useDebouncedState, useDebouncedValue, useFetchAPI, useHotkeys, useLocalStoredState, useNotifier, usePagination, usePrompt, useScrollIntoView, useSessionStoredState, useToggle, useUncontrolled, useValidatedState };
|