@dartech/arsenal-ui 1.3.89 → 1.3.90

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 (24) hide show
  1. package/package.json +1 -1
  2. package/src/lib/Forms/ControlAceEditor.d.ts +2 -2
  3. package/src/lib/Forms/ControlArrayInput.d.ts +2 -2
  4. package/src/lib/Forms/{ControlAutocomplete.d.ts → ControlAutocomplete/ControlAutocomplete.d.ts} +3 -3
  5. package/src/lib/Forms/{ControlQueryAutocomplete.d.ts → ControlAutocomplete/ControlQueryAutocomplete.d.ts} +1 -1
  6. package/src/lib/Forms/ControlAutocomplete/index.d.ts +2 -0
  7. package/src/lib/Forms/ControlCheckbox.d.ts +2 -2
  8. package/src/lib/Forms/ControlDate.d.ts +2 -2
  9. package/src/lib/Forms/ControlDateTime.d.ts +2 -2
  10. package/src/lib/Forms/ControlInput.d.ts +2 -2
  11. package/src/lib/Forms/ControlNumberInput.d.ts +2 -2
  12. package/src/lib/Forms/ControlPeriodInput.d.ts +2 -2
  13. package/src/lib/Forms/ControlRadio.d.ts +2 -2
  14. package/src/lib/Forms/ControlSelect.d.ts +2 -2
  15. package/src/lib/Forms/ControlSwitch.d.ts +2 -2
  16. package/src/lib/Forms/ControlTime.d.ts +2 -2
  17. package/src/lib/Forms/index.d.ts +0 -1
  18. package/src/lib/Property/UpsertProperty/PropertyValueField/BooleanValueField.d.ts +0 -1
  19. package/src/lib/Property/UpsertProperty/PropertyValueField/DateTimeValueField.d.ts +0 -1
  20. package/src/lib/Property/UpsertProperty/PropertyValueField/DateValueField.d.ts +0 -1
  21. package/src/lib/Property/UpsertProperty/PropertyValueField/JsonValueField.d.ts +0 -1
  22. package/src/lib/Property/UpsertProperty/PropertyValueField/TimeValueField.d.ts +0 -1
  23. package/src/lib/Property/ViewProperty/PropertyItem.d.ts +0 -1
  24. /package/src/lib/Forms/{useAutocomplete.d.ts → ControlAutocomplete/useAutocomplete.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.3.89",
3
+ "version": "1.3.90",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -1,11 +1,11 @@
1
- /// <reference types="react" />
2
1
  import { ReactCodeMirrorRef } from '@uiw/react-codemirror';
3
2
  import { Control } from 'react-hook-form';
3
+ import { ReactNode } from 'react';
4
4
  export interface ControlAceEditorProps {
5
5
  name: string;
6
6
  control: Control<any>;
7
7
  mode?: 'json' | 'javascript' | 'python';
8
- label?: string;
8
+ label?: ReactNode;
9
9
  width?: string;
10
10
  height?: string;
11
11
  readOnly?: boolean;
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
1
+ import { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  type Props = {
4
4
  name: string;
5
5
  control: Control<any>;
6
- label: string;
6
+ label: ReactNode;
7
7
  required?: boolean;
8
8
  };
9
9
  export declare const ControlArrayInput: ({ name, control, label, required }: Props) => JSX.Element;
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
2
1
  import { AutocompleteProps } from '@mui/material/Autocomplete';
3
2
  import { TextFieldProps } from '@mui/material/TextField';
4
3
  import { Control } from 'react-hook-form';
5
- import { ValidateFunc } from '../../interfaces';
4
+ import { ReactNode } from 'react';
5
+ import { ValidateFunc } from '../../../interfaces';
6
6
  /**
7
7
  * This interface is referencing the [[ControlAutocomplete]] component props.
8
8
  * @category Forms
@@ -15,7 +15,7 @@ export type ControlAutocompleteProps = Omit<AutocompleteProps<unknown, boolean,
15
15
  /**
16
16
  * Label for MUI TextField select component
17
17
  */
18
- label?: string;
18
+ label?: ReactNode;
19
19
  /**
20
20
  * React Hook Form `control`
21
21
  */
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { ControlAutocompleteProps } from './ControlAutocomplete';
3
- import { PaginateData } from '../../interfaces';
3
+ import { PaginateData } from '../../../interfaces';
4
4
  type PaginateParams = {
5
5
  page: string;
6
6
  size: string;
@@ -0,0 +1,2 @@
1
+ export * from './ControlAutocomplete';
2
+ export * from './ControlQueryAutocomplete';
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { CheckboxProps } from '@mui/material/Checkbox';
2
+ import { ReactNode } from 'react';
3
3
  import { Control } from 'react-hook-form';
4
4
  import { ValidateFunc } from '../../interfaces';
5
5
  /**
@@ -14,7 +14,7 @@ export type ControlCheckboxProps = CheckboxProps & {
14
14
  /**
15
15
  * Label for MUI TextField component
16
16
  */
17
- label?: string;
17
+ label?: ReactNode;
18
18
  /**
19
19
  * React Hook Form `control`
20
20
  */
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  type Props = {
4
4
  /**
@@ -10,7 +10,7 @@ type Props = {
10
10
  */
11
11
  required?: boolean;
12
12
  name: string;
13
- label?: string;
13
+ label?: ReactNode;
14
14
  format?: string;
15
15
  hideErrorMessage?: boolean;
16
16
  };
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  type Props = {
4
4
  /**
@@ -10,7 +10,7 @@ type Props = {
10
10
  */
11
11
  required?: boolean;
12
12
  name: string;
13
- label?: string;
13
+ label?: ReactNode;
14
14
  format?: string;
15
15
  hideErrorMessage?: boolean;
16
16
  };
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import type { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  import { TextFieldProps } from '@mui/material/TextField';
4
4
  import { ValidateFunc } from '../../interfaces';
@@ -14,7 +14,7 @@ export type ControlInputProps = TextFieldProps & {
14
14
  /**
15
15
  * Label for MUI TextField component
16
16
  */
17
- label?: string;
17
+ label?: ReactNode;
18
18
  /**
19
19
  * React Hook Form `control`
20
20
  */
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import type { ReactNode } from 'react';
2
2
  import { TextFieldProps } from '@mui/material/TextField';
3
3
  import { Control } from 'react-hook-form';
4
4
  import { ValidateFunc } from '../../interfaces';
@@ -10,7 +10,7 @@ type Props = TextFieldProps & {
10
10
  /**
11
11
  * Label for MUI TextField component
12
12
  */
13
- label?: string;
13
+ label?: ReactNode;
14
14
  /**
15
15
  * React Hook Form `control`
16
16
  */
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
1
+ import { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  type Props = {
4
4
  name?: string;
5
5
  control: Control<any>;
6
- label?: string;
6
+ label?: ReactNode;
7
7
  required?: boolean;
8
8
  };
9
9
  export declare const ControlPeriodInput: ({ name, control, label, required }: Props) => JSX.Element;
@@ -1,7 +1,7 @@
1
- /// <reference types="react" />
2
1
  import { RadioProps } from '@mui/material/Radio';
3
2
  import { Control } from 'react-hook-form';
4
3
  import { ValidateFunc } from '../../interfaces';
4
+ import { ReactNode } from 'react';
5
5
  /**
6
6
  * This interface is referencing the [[ControlRadioBtn]] component props.
7
7
  * @category Forms
@@ -18,7 +18,7 @@ export interface ControlRadioProps {
18
18
  /**
19
19
  * Label for component
20
20
  */
21
- label?: string;
21
+ label?: ReactNode;
22
22
  /**
23
23
  * Radio group values
24
24
  */
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { TextFieldProps } from '@mui/material/TextField';
2
+ import { ReactNode } from 'react';
3
3
  import { Control } from 'react-hook-form';
4
4
  import { ValidateFunc } from '../../interfaces';
5
5
  /**
@@ -14,7 +14,7 @@ export type ControlSelectProps = TextFieldProps & {
14
14
  /**
15
15
  * Label for MUI TextField select component
16
16
  */
17
- label?: string;
17
+ label?: ReactNode;
18
18
  /**
19
19
  * React Hook Form `control`
20
20
  */
@@ -1,6 +1,6 @@
1
- /// <reference types="react" />
2
1
  import { SwitchProps } from '@mui/material/Switch';
3
2
  import { Control } from 'react-hook-form';
3
+ import { ReactNode } from 'react';
4
4
  type Props = SwitchProps & {
5
5
  /**
6
6
  * React Hook Form `control`
@@ -13,7 +13,7 @@ type Props = SwitchProps & {
13
13
  /**
14
14
  * Material-UI FormControlLabel `label` prop
15
15
  */
16
- label?: string;
16
+ label?: ReactNode;
17
17
  };
18
18
  export declare const ControlSwitch: ({ control, name, label, ...switchProps }: Props) => JSX.Element;
19
19
  export default ControlSwitch;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import { ReactNode } from 'react';
2
2
  import { Control } from 'react-hook-form';
3
3
  type Props = {
4
4
  /**
@@ -10,7 +10,7 @@ type Props = {
10
10
  */
11
11
  required?: boolean;
12
12
  name: string;
13
- label?: string;
13
+ label?: ReactNode;
14
14
  format?: string;
15
15
  hideErrorMessage?: boolean;
16
16
  };
@@ -4,7 +4,6 @@ export * from './ControlSelect';
4
4
  export * from './ControlCheckbox';
5
5
  export * from './ControlRadio';
6
6
  export * from './ControlAutocomplete';
7
- export * from './ControlQueryAutocomplete';
8
7
  export * from './CopyButton';
9
8
  export * from './BackButton';
10
9
  export * from './ControlAceEditor';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  format: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { PropertyUnion } from '../../../interfaces';
3
2
  type PropertyItemProps = {
4
3
  property: PropertyUnion;