@muraldevkit/ui-toolkit 4.31.0 → 4.32.0
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/form/date-picker/MrlDatePicker.d.ts +1 -0
- package/dist/components/form/select/MrlCreatableSelect/index.d.ts +1 -0
- package/dist/components/form/select/MrlMultiSelect/MrlMultiSelect.d.ts +2 -1
- package/dist/components/form/select/index.d.ts +1 -0
- package/dist/components/svg/config.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +9 -0
- package/dist/styles/date-picker/module.scss +6 -0
- package/dist/styles.css +1 -1
- package/package.json +12 -13
|
@@ -4,6 +4,7 @@ import { DataQa } from '../../../utils/dataQa';
|
|
|
4
4
|
export interface MrlDatePickerProps extends React.ComponentPropsWithRef<'input'>, DataQa {
|
|
5
5
|
/** Id of the text input */
|
|
6
6
|
inputId: string;
|
|
7
|
+
kind?: 'default' | 'borderless';
|
|
7
8
|
/** The value of the text input used to make it a controlled input */
|
|
8
9
|
value?: string;
|
|
9
10
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './MrlCreatableSelect';
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GroupBase, Props } from 'react-select';
|
|
3
|
-
import { DefaultOption } from '../types';
|
|
3
|
+
import { DefaultOption, SelectKind } from '../types';
|
|
4
4
|
export interface MrlMultiSelectProps<T, IsMulti extends boolean = false, Group extends GroupBase<T> = GroupBase<T>> extends Omit<Props<T, IsMulti, Group>, 'isMulti' | 'hideSelectedOptions'> {
|
|
5
5
|
hasError?: boolean;
|
|
6
6
|
isReadOnly?: boolean;
|
|
7
|
+
kind?: SelectKind;
|
|
7
8
|
/**
|
|
8
9
|
* The data-qa prefix, it will be used to add data-qa attributes to different sub components of the MrlMultiSelect component.
|
|
9
10
|
*
|