loon-bulma-react 2025.1.3 → 2025.1.4
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/components/Box/BorderBox.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/dist/components/Calendar/DayContainer.d.ts +1 -1
- package/dist/components/Calendar/Fourweeks/FourweeksView.d.ts +1 -1
- package/dist/components/Calendar/Mini/MiniView.d.ts +1 -1
- package/dist/components/Calendar/Month/MonthView.d.ts +1 -1
- package/dist/components/Calendar/Planning/PlanningView.d.ts +1 -1
- package/dist/components/Calendar/Props.d.ts +2 -2
- package/dist/components/Calendar/Week/AlldayContainer.d.ts +1 -1
- package/dist/components/Calendar/Week/HourRow.d.ts +1 -1
- package/dist/components/Calendar/Week/WeekView.d.ts +1 -1
- package/dist/components/Calendar/calendar.functions.d.ts +1 -1
- package/dist/components/Container/Container.d.ts +1 -1
- package/dist/components/Content/Content.d.ts +1 -1
- package/dist/components/DataTable/DataTable.d.ts +1 -1
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Footer/Footer.d.ts +1 -1
- package/dist/components/Help/Help.d.ts +1 -1
- package/dist/components/Hero/Hero.d.ts +1 -1
- package/dist/components/Icon/Icon.d.ts +1 -1
- package/dist/components/Indicator/Indicator.d.ts +1 -1
- package/dist/components/Link/Link.d.ts +1 -1
- package/dist/components/Message/Message.d.ts +1 -1
- package/dist/components/Modal/Modal.d.ts +1 -1
- package/dist/components/Notification/Notification.d.ts +1 -1
- package/dist/components/Pagination/Pagination.d.ts +1 -1
- package/dist/components/Panel/Panel.d.ts +2 -2
- package/dist/components/ProgressBar/ProgressBar.d.ts +1 -1
- package/dist/components/QuickView/QuickView.d.ts +1 -1
- package/dist/components/ScrollArea/ScrollArea.d.ts +1 -1
- package/dist/components/Section/Section.d.ts +1 -1
- package/dist/components/SimpleTable/SimpleTable.d.ts +1 -1
- package/dist/components/Steps/Steps.d.ts +1 -1
- package/dist/components/TabBar/TabBar.d.ts +1 -1
- package/dist/components/Tag/Tag.d.ts +1 -1
- package/dist/components/TimeLine/TimeLine.d.ts +1 -1
- package/dist/components/ToggleBar/ToggleBar.d.ts +1 -1
- package/dist/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/components/TreeView/TreeView.d.ts +1 -1
- package/dist/contexts/ActionSheet/ActionSheetContextProvider.d.ts +1 -1
- package/dist/contexts/AppProvider/AppProviders.d.ts +1 -1
- package/dist/contexts/ColorSchemeProvider/ColorSchemeProvider.d.ts +1 -1
- package/dist/contexts/DefaultsProvider/DefaultsProvider.d.ts +1 -1
- package/dist/contexts/Notifier/Notifier.d.ts +1 -1
- package/dist/contexts/Prompt/PromptContextProvider.d.ts +2 -2
- package/dist/forms/Checkbox/Checkbox.d.ts +1 -1
- package/dist/forms/ComboBox/ComboBox.d.ts +1 -1
- package/dist/forms/ComboBox/MultiComboBox.d.ts +1 -1
- package/dist/forms/Currency/CurrencyInput.d.ts +1 -1
- package/dist/forms/Datetimes/DateInput.d.ts +2 -2
- package/dist/forms/Datetimes/DateTimeInput.d.ts +2 -2
- package/dist/forms/Datetimes/TimeInput.d.ts +2 -2
- package/dist/forms/File/FileInput.d.ts +1 -1
- package/dist/forms/Input.d.ts +1 -1
- package/dist/forms/Numeric/NumberInput.d.ts +1 -1
- package/dist/forms/Numeric/RangeInput.d.ts +1 -1
- package/dist/forms/Others/ColorInput.d.ts +1 -1
- package/dist/forms/Others/TelephoneInput.d.ts +1 -1
- package/dist/forms/Others/URLInput.d.ts +1 -1
- package/dist/forms/Periodes/MonthInput.d.ts +1 -1
- package/dist/forms/Periodes/WeekInput.d.ts +1 -1
- package/dist/forms/Radio/Radio.d.ts +1 -1
- package/dist/forms/Select/Select.d.ts +1 -1
- package/dist/forms/TagsInput/TagsInput.d.ts +1 -1
- package/dist/forms/Text/EmailInput.d.ts +1 -1
- package/dist/forms/Text/FormattedInput.d.ts +1 -1
- package/dist/forms/Text/PasswordInput.d.ts +1 -1
- package/dist/forms/Text/TextArea.d.ts +1 -1
- package/dist/forms/Text/TextEditor.d.ts +1 -1
- package/dist/forms/Text/TextInput.d.ts +1 -1
- package/dist/internal_functions/getColorClass.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
3
|
-
import { ColorProp, StrictOmit, SizeProp } from '
|
|
3
|
+
import { ColorProp, StrictOmit, SizeProp } from './../../types';
|
|
4
4
|
type ButtonStyles = 'faded' | 'f' | 'inverted' | 'i' | 'static' | 's' | 'default' | 'd' | 'outlined' | 'o';
|
|
5
5
|
export type ButtonProps = {
|
|
6
6
|
/** Is de button loading ? */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { JSDateTime } from '
|
|
1
|
+
import { JSDateTime } from './../../utils/JSDateTime.class';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { BaseEventProps, CalendarOptions, CalendarType } from './Props';
|
|
4
4
|
type DayContainerProps<T extends BaseEventProps> = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { JSDateTime } from '
|
|
1
|
+
import { JSDateTime } from './../../../utils/JSDateTime.class';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { BaseEventProps, CalendarOptions } from '../Props';
|
|
4
4
|
type PlanningViewProps<R, E extends BaseEventProps = BaseEventProps> = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ColorProp } from '
|
|
2
|
-
import { JSDateTime } from '
|
|
1
|
+
import { ColorProp } from './../../types';
|
|
2
|
+
import { JSDateTime } from './../../utils/JSDateTime.class';
|
|
3
3
|
import { Locale } from 'date-fns';
|
|
4
4
|
export type CalendarType = 'm' | 'v' | 'w' | 'p';
|
|
5
5
|
export type CalendarHours = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | (number & {});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { JSDateTime } from '
|
|
1
|
+
import { JSDateTime } from './../../../utils/JSDateTime.class';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { BaseEventProps, CalendarOptions } from '../Props';
|
|
4
4
|
type AlldayContainerProps<T extends BaseEventProps> = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { JSDateTime } from "
|
|
1
|
+
import { JSDateTime } from "./../../utils/JSDateTime.class";
|
|
2
2
|
import { BaseEventProps, CalendarOptions } from "./Props";
|
|
3
3
|
/** Controleer of een event zichtbaar moet zijn tussen twee datu,s:
|
|
4
4
|
* - startDt tussen start en eind
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AlignmentProp, SizeProp } from '
|
|
1
|
+
import { AlignmentProp, SizeProp } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
type DataTableColumnProp<T extends unknown = unknown> = {
|
|
4
4
|
/** Instellen van de volgorde van de kolommen. Kolommen worden gesorteerd obv de waarde. De default waarde = `0`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
3
|
-
import { SizeProp, ColorProp, StrictOmit } from '
|
|
3
|
+
import { SizeProp, ColorProp, StrictOmit } from './../../types';
|
|
4
4
|
type MessageProps = {
|
|
5
5
|
/** ID voor de message */
|
|
6
6
|
id?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { ColorProp, StrictOmit } from '
|
|
2
|
+
import { ColorProp, StrictOmit } from './../../types';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
/** Props voor een Notification */
|
|
5
5
|
export type NotificationProps = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SizeProp } from '
|
|
1
|
+
import { SizeProp } from './../../types';
|
|
2
2
|
type PaginationProps = {
|
|
3
3
|
/** current selected page number */ currentPage: number;
|
|
4
4
|
/** range to render bijvoorbeeld van de `usePagination()`-hook. Bestaat uit numbers en `'dots'` op de plekken waar puntjes moeten komen
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { InputValueType, InputPropsType, InputStylingPropsType } from '
|
|
3
|
-
import { ColorProp, PrettierType, StrictOmit } from '
|
|
2
|
+
import { InputValueType, InputPropsType, InputStylingPropsType } from './../../forms/Input';
|
|
3
|
+
import { ColorProp, PrettierType, StrictOmit } from './../../types';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
type PanelProps = {
|
|
6
6
|
/** de kleur van het Panel (default = `i`) */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { AlignmentProp, ColorProp, TagSizeProp } from '
|
|
2
|
+
import { AlignmentProp, ColorProp, TagSizeProp } from './../../types';
|
|
3
3
|
type TimeLineProps = {
|
|
4
4
|
id?: string;
|
|
5
5
|
/** Alignment van de timeline (default = 'l', left) */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { ColorProp } from '
|
|
2
|
+
import { ColorProp } from './../../types';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
type ActionSheetButton<T extends unknown = {}> = string | {
|
|
5
5
|
txt?: string | ((v: T) => string);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SizeProp, DirectionProp, AlignmentProp, ColorProp, TagSizeProp } from '
|
|
1
|
+
import { SizeProp, DirectionProp, AlignmentProp, ColorProp, TagSizeProp } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
type InputSettings = {
|
|
4
4
|
/** default size setting (`m`) */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
3
|
-
import { TextInputProps } from '
|
|
4
|
-
import { StrictOmit } from '
|
|
3
|
+
import { TextInputProps } from './../../forms/Text/TextInput';
|
|
4
|
+
import { StrictOmit } from './../../types';
|
|
5
5
|
type State = {
|
|
6
6
|
show: boolean;
|
|
7
7
|
content: string | React.ReactNode;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit, ColorProp } from '
|
|
1
|
+
import { StrictOmit, ColorProp } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType, InputErrorProps } from '../Input';
|
|
4
4
|
type CheckBoxInputProps = StrictOmit<InputPropsType<boolean>, 'value' | 'type' | 'step' | 'pattern' | 'errorMessage' | 'infoMessage' | 'min' | 'max' | 'pattern' | 'placeholder' | 'hideIconRight'> & StrictOmit<InputStylingPropsType, 'icon'> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { StrictOmit, AutoCompleteProp } from '
|
|
2
|
+
import { StrictOmit, AutoCompleteProp } from './../../types';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType, InputErrorProps, InputValueType } from '../Input';
|
|
4
4
|
type ComboBoxProps<T extends unknown = {}> = StrictOmit<InputPropsType<number | string | string[]>, 'type' | 'step' | 'inputRef' | 'value' | 'onValueChanged' | 'min' | 'max' | 'readonly' | 'pattern' | 'errorMessage' | 'infoMessage' | 'title' | 'form' | 'autoComplete' | 'spellCheck' | 'keyboardType'> & InputStylingPropsType & {
|
|
5
5
|
/** De waarde van de combobox */ value: T;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit, AutoCompleteProp } from '
|
|
1
|
+
import { StrictOmit, AutoCompleteProp } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType, InputErrorProps, InputValueType } from '../Input';
|
|
3
3
|
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 & {
|
|
4
4
|
/** De waarde van de combobox */ value: T[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType, InputErrorProps } from '../Input';
|
|
3
3
|
type CurrencyInputProps = StrictOmit<InputPropsType<number>, 'keyboardType' | 'pattern' | 'value' | 'type' | 'onValueChanged' | 'errorMessage' | 'infoMessage'> & InputStylingPropsType & {
|
|
4
4
|
/** waarde van de input. Als number of als number-string-tuple (zoals waarde uit `onValueChanged`) */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
2
|
-
import { JSDateTime } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
|
+
import { JSDateTime } from './../../utils/JSDateTime.class';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type DateInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged'> & InputStylingPropsType & {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
2
|
-
import { JSDateTime } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
|
+
import { JSDateTime } from './../../utils/JSDateTime.class';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type DateTimeInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged'> & InputStylingPropsType & {
|
|
5
5
|
/** Moeten de secondes en de milliseconden ook getoond worden? (default = `'none'`)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
2
|
-
import { JSDateTime } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
|
+
import { JSDateTime } from './../../utils/JSDateTime.class';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type TimeInputProps = StrictOmit<InputPropsType<string>, 'step' | 'type' | 'value' | 'onValueChanged'> & InputStylingPropsType & {
|
|
5
5
|
/** Moeten de secondes ook getoont worden in de input? (Default = false) */
|
package/dist/forms/Input.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { AlignmentProp, DirectionProp, AutoCompleteProp, KeyboardTypeProp, StrictOmit, SizeProp } from '
|
|
2
|
+
import { AlignmentProp, DirectionProp, AutoCompleteProp, KeyboardTypeProp, StrictOmit, SizeProp } from './../types';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { MonthInputString } from './Periodes/MonthInput';
|
|
5
5
|
import { WeekInputString } from './Periodes/WeekInput';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type NumberInputProps = StrictOmit<InputPropsType<number>, 'type' | 'spellCheck'> & InputStylingPropsType & {
|
|
4
4
|
prefix?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type RangeInputProps = StrictOmit<InputPropsType<number>, 'autofocus' | 'autoComplete' | 'type' | 'spellCheck' | 'placeholder' | 'hideIconRight'> & StrictOmit<InputStylingPropsType, 'alignment' | 'icon'> & {
|
|
4
4
|
/** value-unit om __voor__ de geselecteerde waarde te zetten. (default = `''`) */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit, HexColor, RGBColor, HSLColor } from '
|
|
1
|
+
import { StrictOmit, HexColor, RGBColor, HSLColor } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type ColorInputProps = StrictOmit<InputPropsType<string>, 'type' | 'value' | 'onValueChanged' | 'step' | 'min' | 'max' | 'autoComplete' | 'spellCheck' | 'keyboardType'> & InputStylingPropsType & {
|
|
4
4
|
/** Gebruik de color-input met een hex-color, bijvooerbeeld`#ff8000` of `#fff` */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type TelephoneInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'pattern'> & InputStylingPropsType & {
|
|
4
4
|
pattern?: 'mobiel' | 'vast' | string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type URLInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'pattern'> & InputStylingPropsType & {
|
|
4
4
|
pattern?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit, DirectionProp, ColorProp } from '
|
|
1
|
+
import { StrictOmit, DirectionProp, ColorProp } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { InputValueType, InputStylingPropsType, InputErrorProps, InputPropsType } from '../Input';
|
|
4
4
|
type RBValueType = InputValueType | {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type SelectInputProps<T extends number | string | string[]> = StrictOmit<InputPropsType<number | string | string[]>, 'type' | 'step' | 'inputRef' | 'value' | 'onValueChanged' | 'onBlur' | 'onFocus' | 'onChange' | 'onKeyDown' | 'onKeyUp' | 'min' | 'max' | 'readonly' | 'pattern' | 'placeholder'> & InputStylingPropsType & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit, ColorProp } from '
|
|
1
|
+
import { StrictOmit, ColorProp } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType, InputErrorProps } from '../Input';
|
|
3
3
|
type TagsInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'onChange' | 'value' | 'onValueChanged' | 'max' | 'min' | 'inputRef' | 'errorMessage'> & InputStylingPropsType & {
|
|
4
4
|
/** de values (dus de tags) van het input field */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type EmailInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
4
4
|
pattern?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StrictOmit } from '~/lib/types';
|
|
2
1
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
2
|
+
import { StrictOmit } from './../../types';
|
|
3
3
|
type FormattedInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step' | 'inputRef'> & InputStylingPropsType & {
|
|
4
4
|
/**
|
|
5
5
|
* De groepen bij de input, kan een string zijn, een nummer of een array van nummers
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
2
|
-
import { StrictOmit } from '
|
|
2
|
+
import { StrictOmit } from './../../types';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type PasswordInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
5
5
|
revealPasswordAllowed?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
4
4
|
type TextAreaProps = StrictOmit<InputPropsType<string>, 'type' | 'inputRef' | 'keyboardType' | 'step' | 'pattern' | 'onBlur' | 'onChange' | 'onFocus' | 'onKeyDown' | 'onKeyUp' | 'hideIconRight'> & StrictOmit<InputStylingPropsType, 'icon'> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StrictOmit } from '
|
|
1
|
+
import { StrictOmit } from './../../types';
|
|
2
2
|
import { InputPropsType, InputStylingPropsType } from '../Input';
|
|
3
3
|
type CharType = '0-9' | 'a-z' | 'A-Z' | 'a-Z' | '0-Z' | (string & {}) | RegExp;
|
|
4
4
|
type TextInputProps = StrictOmit<InputPropsType<string>, 'type' | 'step'> & InputStylingPropsType & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BaseEventProps, EventOptions, CalendarOptions } from "
|
|
2
|
-
import { ColorProp, HexColor } from "
|
|
3
|
-
import { JSDateTime } from "
|
|
1
|
+
import { BaseEventProps, EventOptions, CalendarOptions } from "./../components/Calendar/Props";
|
|
2
|
+
import { ColorProp, HexColor } from "./../types";
|
|
3
|
+
import { JSDateTime } from "./../utils/JSDateTime.class";
|
|
4
4
|
/**
|
|
5
5
|
* @param color de kleur die je wilt gebruiken als ColorProp
|
|
6
6
|
* @returns een string met de juiste kleurclass
|