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.
Files changed (73) hide show
  1. package/dist/components/Box/BorderBox.d.ts +1 -1
  2. package/dist/components/Button/Button.d.ts +1 -1
  3. package/dist/components/ButtonGroup/ButtonGroup.d.ts +1 -1
  4. package/dist/components/Calendar/DayContainer.d.ts +1 -1
  5. package/dist/components/Calendar/Fourweeks/FourweeksView.d.ts +1 -1
  6. package/dist/components/Calendar/Mini/MiniView.d.ts +1 -1
  7. package/dist/components/Calendar/Month/MonthView.d.ts +1 -1
  8. package/dist/components/Calendar/Planning/PlanningView.d.ts +1 -1
  9. package/dist/components/Calendar/Props.d.ts +2 -2
  10. package/dist/components/Calendar/Week/AlldayContainer.d.ts +1 -1
  11. package/dist/components/Calendar/Week/HourRow.d.ts +1 -1
  12. package/dist/components/Calendar/Week/WeekView.d.ts +1 -1
  13. package/dist/components/Calendar/calendar.functions.d.ts +1 -1
  14. package/dist/components/Container/Container.d.ts +1 -1
  15. package/dist/components/Content/Content.d.ts +1 -1
  16. package/dist/components/DataTable/DataTable.d.ts +1 -1
  17. package/dist/components/Divider/Divider.d.ts +1 -1
  18. package/dist/components/Footer/Footer.d.ts +1 -1
  19. package/dist/components/Help/Help.d.ts +1 -1
  20. package/dist/components/Hero/Hero.d.ts +1 -1
  21. package/dist/components/Icon/Icon.d.ts +1 -1
  22. package/dist/components/Indicator/Indicator.d.ts +1 -1
  23. package/dist/components/Link/Link.d.ts +1 -1
  24. package/dist/components/Message/Message.d.ts +1 -1
  25. package/dist/components/Modal/Modal.d.ts +1 -1
  26. package/dist/components/Notification/Notification.d.ts +1 -1
  27. package/dist/components/Pagination/Pagination.d.ts +1 -1
  28. package/dist/components/Panel/Panel.d.ts +2 -2
  29. package/dist/components/ProgressBar/ProgressBar.d.ts +1 -1
  30. package/dist/components/QuickView/QuickView.d.ts +1 -1
  31. package/dist/components/ScrollArea/ScrollArea.d.ts +1 -1
  32. package/dist/components/Section/Section.d.ts +1 -1
  33. package/dist/components/SimpleTable/SimpleTable.d.ts +1 -1
  34. package/dist/components/Steps/Steps.d.ts +1 -1
  35. package/dist/components/TabBar/TabBar.d.ts +1 -1
  36. package/dist/components/Tag/Tag.d.ts +1 -1
  37. package/dist/components/TimeLine/TimeLine.d.ts +1 -1
  38. package/dist/components/ToggleBar/ToggleBar.d.ts +1 -1
  39. package/dist/components/Tooltip/Tooltip.d.ts +1 -1
  40. package/dist/components/TreeView/TreeView.d.ts +1 -1
  41. package/dist/contexts/ActionSheet/ActionSheetContextProvider.d.ts +1 -1
  42. package/dist/contexts/AppProvider/AppProviders.d.ts +1 -1
  43. package/dist/contexts/ColorSchemeProvider/ColorSchemeProvider.d.ts +1 -1
  44. package/dist/contexts/DefaultsProvider/DefaultsProvider.d.ts +1 -1
  45. package/dist/contexts/Notifier/Notifier.d.ts +1 -1
  46. package/dist/contexts/Prompt/PromptContextProvider.d.ts +2 -2
  47. package/dist/forms/Checkbox/Checkbox.d.ts +1 -1
  48. package/dist/forms/ComboBox/ComboBox.d.ts +1 -1
  49. package/dist/forms/ComboBox/MultiComboBox.d.ts +1 -1
  50. package/dist/forms/Currency/CurrencyInput.d.ts +1 -1
  51. package/dist/forms/Datetimes/DateInput.d.ts +2 -2
  52. package/dist/forms/Datetimes/DateTimeInput.d.ts +2 -2
  53. package/dist/forms/Datetimes/TimeInput.d.ts +2 -2
  54. package/dist/forms/File/FileInput.d.ts +1 -1
  55. package/dist/forms/Input.d.ts +1 -1
  56. package/dist/forms/Numeric/NumberInput.d.ts +1 -1
  57. package/dist/forms/Numeric/RangeInput.d.ts +1 -1
  58. package/dist/forms/Others/ColorInput.d.ts +1 -1
  59. package/dist/forms/Others/TelephoneInput.d.ts +1 -1
  60. package/dist/forms/Others/URLInput.d.ts +1 -1
  61. package/dist/forms/Periodes/MonthInput.d.ts +1 -1
  62. package/dist/forms/Periodes/WeekInput.d.ts +1 -1
  63. package/dist/forms/Radio/Radio.d.ts +1 -1
  64. package/dist/forms/Select/Select.d.ts +1 -1
  65. package/dist/forms/TagsInput/TagsInput.d.ts +1 -1
  66. package/dist/forms/Text/EmailInput.d.ts +1 -1
  67. package/dist/forms/Text/FormattedInput.d.ts +1 -1
  68. package/dist/forms/Text/PasswordInput.d.ts +1 -1
  69. package/dist/forms/Text/TextArea.d.ts +1 -1
  70. package/dist/forms/Text/TextEditor.d.ts +1 -1
  71. package/dist/forms/Text/TextInput.d.ts +1 -1
  72. package/dist/internal_functions/getColorClass.d.ts +3 -3
  73. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ColorProp, AlignmentProp, StrictOmit } from '~/lib/types';
2
+ import { ColorProp, AlignmentProp, StrictOmit } from './../../types';
3
3
  type BorderBoxProps = {
4
4
  children: React.ReactNode;
5
5
  title?: string | undefined;
@@ -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 '~/lib/types';
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,5 +1,5 @@
1
1
  import React from 'react';
2
- import { AlignmentProp } from '~/lib/types';
2
+ import { AlignmentProp } from './../../types';
3
3
  type ButtonGroupProps = {
4
4
  /** Een buttongroup kan alleen Buttons als children hebben! */
5
5
  children?: React.ReactNode;
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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 '~/lib/utils/JSDateTime.class';
1
+ import { JSDateTime } from './../../../utils/JSDateTime.class';
2
2
  import React from 'react';
3
3
  import { BaseEventProps, CalendarOptions } from '../Props';
4
4
  type FourweekViewProps<T extends BaseEventProps> = {
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
1
+ import { JSDateTime } from './../../../utils/JSDateTime.class';
2
2
  import { Locale } from 'date-fns';
3
3
  type MiniViewProps = {
4
4
  /** de viewDate waarop de mini-view start (optioneel, default = vandaag) */
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
1
+ import { JSDateTime } from './../../../utils/JSDateTime.class';
2
2
  import React from 'react';
3
3
  import { BaseEventProps, CalendarOptions } from '../Props';
4
4
  type MonthViewProps<T extends BaseEventProps> = {
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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 '~/lib/types';
2
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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 '~/lib/utils/JSDateTime.class';
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 '~/lib/utils/JSDateTime.class';
1
+ import { JSDateTime } from './../../../utils/JSDateTime.class';
2
2
  import React from 'react';
3
3
  import { BaseEventProps, CalendarOptions, CalendarHours } from '../Props';
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
1
+ import { JSDateTime } from './../../../utils/JSDateTime.class';
2
2
  import React from 'react';
3
3
  import { BaseEventProps, CalendarOptions } from '../Props';
4
4
  type WeekViewProps<T extends BaseEventProps> = {
@@ -1,4 +1,4 @@
1
- import { JSDateTime } from "~/lib/utils/JSDateTime.class";
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 { SizeProp, StrictOmit } from '~/lib';
1
+ import { SizeProp, StrictOmit } from './../..';
2
2
  import React from 'react';
3
3
  type ContainerProps = {
4
4
  /** Container content */
@@ -1,4 +1,4 @@
1
- import { SizeProp } from '~/lib/types';
1
+ import { SizeProp } from './../../types';
2
2
  import React from 'react';
3
3
  type ContentPropsType = {
4
4
  /** Size van de content (default = 'm') */
@@ -1,4 +1,4 @@
1
- import { AlignmentProp, SizeProp } from '~/lib/types';
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,4 +1,4 @@
1
- import { ColorProp } from '~/lib/types';
1
+ import { ColorProp } from './../../types';
2
2
  type DividerProps = {
3
3
  color?: ColorProp | 'default' | undefined;
4
4
  className?: string | undefined;
@@ -1,4 +1,4 @@
1
- import { AlignmentProp } from '~/lib/types';
1
+ import { AlignmentProp } from './../../types';
2
2
  import React from 'react';
3
3
  export type FooterProps = {
4
4
  /** De content voor de footer */
@@ -1,4 +1,4 @@
1
- import { ColorProp, StrictOmit } from '~/lib/types';
1
+ import { ColorProp, StrictOmit } from './../../types';
2
2
  import React from 'react';
3
3
  type HelpTxtProps = {
4
4
  children: React.ReactNode;
@@ -1,4 +1,4 @@
1
- import { SizeProp, AnchorTargetProp, AnchorRelProp } from '~/lib/types';
1
+ import { SizeProp, AnchorTargetProp, AnchorRelProp } from './../../types';
2
2
  import React from 'react';
3
3
  type HeroProps = {
4
4
  itemRef?: React.RefObject<any> | null;
@@ -1,5 +1,5 @@
1
1
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { SizeProp, ColorProp } from '~/lib/types';
2
+ import { SizeProp, ColorProp } from './../../types';
3
3
  import React from 'react';
4
4
  type IconProps = {
5
5
  /** React font-awesome icon
@@ -1,4 +1,4 @@
1
- import { IndicatorPositionProp, ColorProp } from '~/lib/types';
1
+ import { IndicatorPositionProp, ColorProp } from './../../types';
2
2
  import React from 'react';
3
3
  type IndicatorProps = {
4
4
  /** Positie van de indicator (default = 'tr' (top-right)) */
@@ -1,4 +1,4 @@
1
- import { ColorProp, AnchorTargetProp, AnchorRelProp } from '~/lib/types';
1
+ import { ColorProp, AnchorTargetProp, AnchorRelProp } from './../../types';
2
2
  import React from 'react';
3
3
  type LinkButtonProps = {
4
4
  fullwidth?: boolean;
@@ -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 '~/lib/types';
3
+ import { SizeProp, ColorProp, StrictOmit } from './../../types';
4
4
  type MessageProps = {
5
5
  /** ID voor de message */
6
6
  id?: string;
@@ -1,4 +1,4 @@
1
- import { SizeProp } from '~/lib/types';
1
+ import { SizeProp } from './../../types';
2
2
  import React from 'react';
3
3
  type ModalProps = {
4
4
  /** Content van de modal. Als deze te lang wordt, wordt hij scrollable */
@@ -1,5 +1,5 @@
1
1
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { ColorProp, StrictOmit } from '~/lib/types';
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 '~/lib/types';
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 '~/lib/forms/Input';
3
- import { ColorProp, PrettierType, StrictOmit } from '~/lib/types';
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,4 +1,4 @@
1
- import { SizeProp, ColorProp } from '~/lib/types';
1
+ import { SizeProp, ColorProp } from './../../types';
2
2
  type ProgressBarProps = {
3
3
  /** Grootte van de progressbar */
4
4
  size?: SizeProp;
@@ -1,4 +1,4 @@
1
- import { ColorProp } from '~/lib/types';
1
+ import { ColorProp } from './../../types';
2
2
  import React from 'react';
3
3
  type QuickViewProps = {
4
4
  /** ref naar de quickview. Bijvoorbeeld voor gebruik met de `useClickOutside()`-hook */
@@ -1,4 +1,4 @@
1
- import { AlignmentProp } from '~/lib/types';
1
+ import { AlignmentProp } from './../../types';
2
2
  import React from 'react';
3
3
  /**
4
4
  * Maak een ScrollArea om in een bepaalde richting te kunnen scrollen. De scrollareas maken gebruik van flexbox.
@@ -1,4 +1,4 @@
1
- import { TagSizeProp } from '~/lib/types';
1
+ import { TagSizeProp } from './../../types';
2
2
  import React from 'react';
3
3
  type SectionPropsType = {
4
4
  id?: string;
@@ -1,4 +1,4 @@
1
- import { StrictOmit } from '~/lib/types';
1
+ import { StrictOmit } from './../../types';
2
2
  import React from 'react';
3
3
  type SimpleTableProps<T extends unknown = unknown> = {
4
4
  id?: string;
@@ -1,4 +1,4 @@
1
- import { SizeProp } from '~/lib/types';
1
+ import { SizeProp } from './../../types';
2
2
  import React from 'react';
3
3
  type StatusType = 'active' | 'completed' | 'error' | 'pending';
4
4
  type StepChoiceType = 'neighbours' | 'disabled' | 'up' | 'down' | 'allowed';
@@ -1,4 +1,4 @@
1
- import { SizeProp, AlignmentProp, StrictOmit } from '~/lib/types';
1
+ import { SizeProp, AlignmentProp, StrictOmit } from './../../types';
2
2
  import React from 'react';
3
3
  export type TabBarProps = {
4
4
  /** Tab grootte. (default = 'm') */
@@ -1,4 +1,4 @@
1
- import { ColorProp, TagSizeProp, AlignmentProp } from '~/lib/types';
1
+ import { ColorProp, TagSizeProp, AlignmentProp } from './../../types';
2
2
  import React from 'react';
3
3
  export type TagProps = {
4
4
  /** Content van de tag */
@@ -1,5 +1,5 @@
1
1
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { AlignmentProp, ColorProp, TagSizeProp } from '~/lib/types';
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,4 +1,4 @@
1
- import { AlignmentProp, SizeProp } from '~/lib/types';
1
+ import { AlignmentProp, SizeProp } from './../../types';
2
2
  import React from 'react';
3
3
  type ToggleBarProps = {
4
4
  /** De beginwaarde (default = undefined)
@@ -1,4 +1,4 @@
1
- import { PositionProp } from '~/lib';
1
+ import { PositionProp } from './../..';
2
2
  import React from 'react';
3
3
  /** actions die de tooltip kan doen */
4
4
  type ActionType = 'hover' | 'focus' | 'click' | 'contextMenu';
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { StrictOmit } from '~/lib/types';
2
+ import { StrictOmit } from './../../types';
3
3
  /** De basis-props voor de nodes en de items */
4
4
  type BaseProps = {
5
5
  /** het path naar deze node*/
@@ -1,5 +1,5 @@
1
1
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { ColorProp } from '~/lib/types';
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 { ColorSchemeType } from '~/lib/types';
1
+ import { ColorSchemeType } from './../../types';
2
2
  import React from 'react';
3
3
  import { OptionalDefaultsType } from '../DefaultsProvider/DefaultsProvider';
4
4
  type AppProviderProps = {
@@ -1,4 +1,4 @@
1
- import { ColorSchemeType } from '~/lib/types';
1
+ import { ColorSchemeType } from './../../types';
2
2
  import React from 'react';
3
3
  export declare const ColorSchemeContext: React.Context<{
4
4
  scheme: ColorSchemeType;
@@ -1,4 +1,4 @@
1
- import { SizeProp, DirectionProp, AlignmentProp, ColorProp, TagSizeProp } from '~/lib/types';
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,4 +1,4 @@
1
- import { ColorProp } from '~/lib/types';
1
+ import { ColorProp } from './../../types';
2
2
  import React from 'react';
3
3
  export type NotifierProviderProps = {
4
4
  /** De child-components die de notifier mogen gebruiken */
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
3
- import { TextInputProps } from '~/lib/forms/Text/TextInput';
4
- import { StrictOmit } from '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
2
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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 '~/lib/types';
2
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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 '~/lib/types';
2
- import { JSDateTime } from '~/lib/utils/JSDateTime.class';
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) */
@@ -1,4 +1,4 @@
1
- import { StrictOmit } from '~/lib/types';
1
+ import { StrictOmit } from './../../types';
2
2
  import React from 'react';
3
3
  import { InputPropsType, InputStylingPropsType, InputErrorProps } from '../Input';
4
4
  type FileInputValue = {
@@ -1,5 +1,5 @@
1
1
  import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { AlignmentProp, DirectionProp, AutoCompleteProp, KeyboardTypeProp, StrictOmit, SizeProp } from '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 } from '~/lib/types';
1
+ import { StrictOmit } from './../../types';
2
2
  import { InputPropsType, InputStylingPropsType } from '../Input';
3
3
  /** WeekInput: input voor een weeknummer (format: yyyy-MM)
4
4
  * -1e getal: jaartal
@@ -1,4 +1,4 @@
1
- import { StrictOmit } from '~/lib/types';
1
+ import { StrictOmit } from './../../types';
2
2
  import { InputPropsType, InputStylingPropsType } from '../Input';
3
3
  /** WeekInput: input voor een weeknummer (format: yyyy-Www)
4
4
  * -1e getal: jaartal
@@ -1,4 +1,4 @@
1
- import { StrictOmit, DirectionProp, ColorProp } from '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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 '~/lib/types';
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,5 +1,5 @@
1
1
  import { JSONContent } from '@tiptap/react';
2
- import { SizeProp } from '~/lib/types';
2
+ import { SizeProp } from './../../types';
3
3
  type TextEditorPropsType = {
4
4
  content?: string;
5
5
  /** De tag-selector (headers of paragraaf) verbergen? */ hideTagSelector?: boolean;
@@ -1,4 +1,4 @@
1
- import { StrictOmit } from '~/lib/types';
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 "~/lib/components/Calendar/Props";
2
- import { ColorProp, HexColor } from "~/lib/types";
3
- import { JSDateTime } from "~/lib/utils/JSDateTime.class";
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "loon-bulma-react",
3
3
  "private": false,
4
- "version": "2025.1.3",
4
+ "version": "2025.1.4",
5
5
  "description": "Bulma &amp; React componenten voor Loon Salarissoftware",
6
6
  "type": "module",
7
7
  "license": "MIT",