@mtes-mct/monitor-ui 1.10.0 → 1.10.1

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 (42) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/ThemeProvider.d.ts +1 -1
  3. package/components/Dropdown/Item.d.ts +1 -1
  4. package/components/Dropdown/index.d.ts +1 -1
  5. package/elements/Button.d.ts +1 -1
  6. package/elements/Field.d.ts +1 -1
  7. package/elements/Fieldset.d.ts +1 -1
  8. package/elements/IconBox.d.ts +1 -1
  9. package/elements/IconButton.d.ts +1 -1
  10. package/elements/Label.d.ts +1 -1
  11. package/elements/Legend.d.ts +1 -1
  12. package/fields/Checkbox.d.ts +1 -1
  13. package/fields/DatePicker/CalendarPicker.d.ts +1 -1
  14. package/fields/DatePicker/index.d.ts +1 -1
  15. package/fields/DateRangePicker/DateInput.d.ts +1 -1
  16. package/fields/DateRangePicker/NumberInput.d.ts +1 -1
  17. package/fields/DateRangePicker/RangeCalendarPicker.d.ts +1 -1
  18. package/fields/DateRangePicker/RangedTimePicker.d.ts +1 -1
  19. package/fields/DateRangePicker/TimeInput.d.ts +1 -1
  20. package/fields/DateRangePicker/index.d.ts +1 -1
  21. package/fields/DateRangePicker/types.d.ts +4 -4
  22. package/fields/MultiCheckbox.d.ts +1 -1
  23. package/fields/MultiRadio.d.ts +1 -1
  24. package/fields/MultiSelect.d.ts +1 -1
  25. package/fields/Select.d.ts +1 -1
  26. package/fields/TextInput.d.ts +1 -1
  27. package/fields/Textarea.d.ts +1 -1
  28. package/formiks/FormikCheckbox.d.ts +1 -1
  29. package/formiks/FormikDatePicker.d.ts +1 -1
  30. package/formiks/FormikDateRangePicker.d.ts +1 -1
  31. package/formiks/FormikEffect.d.ts +1 -1
  32. package/formiks/FormikMultiCheckbox.d.ts +1 -1
  33. package/formiks/FormikMultiRadio.d.ts +1 -1
  34. package/formiks/FormikMultiSelect.d.ts +1 -1
  35. package/formiks/FormikSelect.d.ts +1 -1
  36. package/formiks/FormikTextInput.d.ts +1 -1
  37. package/formiks/FormikTextarea.d.ts +1 -1
  38. package/index.js +1 -1
  39. package/index.js.map +1 -1
  40. package/package.json +2 -2
  41. package/theme.d.ts +2 -2
  42. package/types.d.ts +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [1.10.0](https://github.com/MTES-MCT/monitor-ui/compare/v1.9.2...v1.10.0) (2022-12-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * **components:** add Dropdown ([#93](https://github.com/MTES-MCT/monitor-ui/issues/93)) ([1d5ec1b](https://github.com/MTES-MCT/monitor-ui/commit/1d5ec1b06b0f9ed06b44518de60cd69f0286e8fb))
7
+ * **elements:** add IconButton ([#92](https://github.com/MTES-MCT/monitor-ui/issues/92)) ([5ea52c3](https://github.com/MTES-MCT/monitor-ui/commit/5ea52c3bc2c20226641e46b114a6bea617caeb45))
8
+
1
9
  ## [1.9.2](https://github.com/MTES-MCT/monitor-ui/compare/v1.9.1...v1.9.2) (2022-12-01)
2
10
 
3
11
 
@@ -1,6 +1,6 @@
1
1
  import { Theme } from './theme';
2
2
  import type { DeepPartial } from './types';
3
- export declare type ThemeProviderProps = {
3
+ export type ThemeProviderProps = {
4
4
  children: any;
5
5
  theme?: DeepPartial<Theme>;
6
6
  };
@@ -1,7 +1,7 @@
1
1
  import type { IconProps } from '../../types';
2
2
  import type { FunctionComponent } from 'react';
3
3
  import type { DropdownMenuItemProps as RsuiteDropdownMenuItemProps } from 'rsuite';
4
- export declare type DropdownItemProps = Omit<RsuiteDropdownMenuItemProps, 'as' | 'icon'> & {
4
+ export type DropdownItemProps = Omit<RsuiteDropdownMenuItemProps, 'as' | 'icon'> & {
5
5
  Icon?: FunctionComponent<IconProps>;
6
6
  };
7
7
  export declare function Item({ Icon, ...originalProps }: DropdownItemProps): JSX.Element;
@@ -2,7 +2,7 @@ import type { IconProps } from '../../types';
2
2
  import type { DropdownItemProps } from './Item';
3
3
  import type { FunctionComponent } from 'react';
4
4
  import type { DropdownProps as RsuiteDropdownProps } from 'rsuite';
5
- export declare type DropdownProps = Omit<RsuiteDropdownProps, 'as' | 'icon'> & {
5
+ export type DropdownProps = Omit<RsuiteDropdownProps, 'as' | 'icon'> & {
6
6
  Icon?: FunctionComponent<IconProps>;
7
7
  };
8
8
  export declare const Dropdown: FunctionComponent<DropdownProps> & {
@@ -1,7 +1,7 @@
1
1
  import { Accent, Size } from '../contants';
2
2
  import type { IconProps } from '../types';
3
3
  import type { ButtonHTMLAttributes, FunctionComponent } from 'react';
4
- export declare type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
4
+ export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
5
5
  Icon?: FunctionComponent<IconProps>;
6
6
  accent?: Accent;
7
7
  isFullWidth?: boolean;
@@ -1,3 +1,3 @@
1
1
  import type { HTMLAttributes } from 'react';
2
- export declare type FieldProps = HTMLAttributes<HTMLDivElement>;
2
+ export type FieldProps = HTMLAttributes<HTMLDivElement>;
3
3
  export declare const Field: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,3 @@
1
1
  import type { FieldsetHTMLAttributes } from 'react';
2
- export declare type FieldsetProps = FieldsetHTMLAttributes<HTMLFieldSetElement>;
2
+ export type FieldsetProps = FieldsetHTMLAttributes<HTMLFieldSetElement>;
3
3
  export declare function Fieldset(nativeProps: FieldsetProps): JSX.Element;
@@ -1,4 +1,4 @@
1
- export declare type IconBoxProps = {
1
+ export type IconBoxProps = {
2
2
  color?: string;
3
3
  /** In REM */
4
4
  size?: number;
@@ -1,7 +1,7 @@
1
1
  import { Accent, Size } from '../contants';
2
2
  import type { IconProps } from '../types';
3
3
  import type { ButtonHTMLAttributes, FunctionComponent } from 'react';
4
- export declare type IconButtonProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'> & {
4
+ export type IconButtonProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'> & {
5
5
  Icon: FunctionComponent<IconProps>;
6
6
  accent?: Accent;
7
7
  size?: Size;
@@ -1,5 +1,5 @@
1
1
  import type { LabelHTMLAttributes } from 'react';
2
- export declare type LabelProps = LabelHTMLAttributes<HTMLLabelElement> & {
2
+ export type LabelProps = LabelHTMLAttributes<HTMLLabelElement> & {
3
3
  isHidden: boolean;
4
4
  };
5
5
  export declare const Label: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {
@@ -1,5 +1,5 @@
1
1
  import type { HTMLAttributes } from 'react';
2
- export declare type LegendProps = HTMLAttributes<HTMLLegendElement> & {
2
+ export type LegendProps = HTMLAttributes<HTMLLegendElement> & {
3
3
  isHidden?: boolean;
4
4
  };
5
5
  export declare function Legend({ isHidden, ...nativeProps }: LegendProps): JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import type { CheckboxProps as RsuiteCheckboxProps } from 'rsuite';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type CheckboxProps = Omit<RsuiteCheckboxProps, 'as' | 'checked' | 'id' | 'onChange'> & {
3
+ export type CheckboxProps = Omit<RsuiteCheckboxProps, 'as' | 'checked' | 'id' | 'onChange'> & {
4
4
  label: string;
5
5
  name: string;
6
6
  onChange?: (isCheched: boolean) => Promisable<void>;
@@ -1,6 +1,6 @@
1
1
  import type { DateTuple } from '../DateRangePicker/types';
2
2
  import type { Promisable } from 'type-fest';
3
- declare type CalendarPickerProps = {
3
+ type CalendarPickerProps = {
4
4
  defaultValue?: Date;
5
5
  isHistorical?: boolean;
6
6
  onChange: (nextDateTuple: DateTuple) => Promisable<void>;
@@ -1,5 +1,5 @@
1
1
  import type { Promisable } from 'type-fest';
2
- export declare type DatePickerProps = {
2
+ export type DatePickerProps = {
3
3
  defaultValue?: Date;
4
4
  /** Only allow past dates until today. */
5
5
  isHistorical?: boolean;
@@ -2,7 +2,7 @@
2
2
  import type { NumberInputProps } from './NumberInput';
3
3
  import type { DateTuple, DateOrTimeInputRef } from './types';
4
4
  import type { Promisable } from 'type-fest';
5
- export declare type DateInputProps = Pick<NumberInputProps, 'onBack' | 'onPrevious' | 'onNext'> & {
5
+ export type DateInputProps = Pick<NumberInputProps, 'onBack' | 'onPrevious' | 'onNext'> & {
6
6
  defaultValue?: DateTuple;
7
7
  isEndDate?: boolean;
8
8
  isForcedFocused: boolean;
@@ -1,6 +1,6 @@
1
1
  import type { InputHTMLAttributes } from 'react';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type NumberInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'maxLength' | 'onInput' | 'pattern' | 'type'> & {
3
+ export type NumberInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'maxLength' | 'onInput' | 'pattern' | 'type'> & {
4
4
  max: number;
5
5
  min: number;
6
6
  /** Called when the use press backspace key while the input is empty. */
@@ -1,7 +1,7 @@
1
1
  import type { DateRange } from '../../types';
2
2
  import type { DateTupleRange } from './types';
3
3
  import type { Promisable } from 'type-fest';
4
- declare type RangeCalendarPickerProps = {
4
+ type RangeCalendarPickerProps = {
5
5
  defaultValue?: DateRange;
6
6
  isHistorical?: boolean;
7
7
  onChange: (nextDateTupleRange: DateTupleRange) => Promisable<void>;
@@ -1,6 +1,6 @@
1
1
  import type { TimeTuple } from './types';
2
2
  import type { Promisable } from 'type-fest';
3
- declare type RangedTimePickerProps = {
3
+ type RangedTimePickerProps = {
4
4
  filter: RegExp;
5
5
  minutesRange: number;
6
6
  onChange: (nextTimeTuple: TimeTuple) => Promisable<void>;
@@ -2,7 +2,7 @@
2
2
  import type { NumberInputProps } from './NumberInput';
3
3
  import type { DateOrTimeInputRef, TimeTuple } from './types';
4
4
  import type { Promisable } from 'type-fest';
5
- export declare type TimeInputProps = Pick<NumberInputProps, 'onBack' | 'onPrevious' | 'onNext'> & {
5
+ export type TimeInputProps = Pick<NumberInputProps, 'onBack' | 'onPrevious' | 'onNext'> & {
6
6
  defaultValue?: TimeTuple;
7
7
  isStartDate?: boolean;
8
8
  minutesRange?: number;
@@ -1,6 +1,6 @@
1
1
  import type { DateRange } from '../../types';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type DateRangePickerProps = {
3
+ export type DateRangePickerProps = {
4
4
  defaultValue?: DateRange;
5
5
  /** Only allow past dates until today. */
6
6
  isHistorical?: boolean;
@@ -1,4 +1,4 @@
1
- export declare type DateOrTimeInputRef = {
1
+ export type DateOrTimeInputRef = {
2
2
  boxSpan: HTMLSpanElement;
3
3
  /**
4
4
  * Focus the first input in the group.
@@ -12,7 +12,7 @@ export declare enum DateRangePosition {
12
12
  START = "START"
13
13
  }
14
14
  /** In the shape of ["YYYY", "MM", "DD"]. */
15
- export declare type DateTuple = [string, string, string];
16
- export declare type DateTupleRange = [DateTuple, DateTuple];
15
+ export type DateTuple = [string, string, string];
16
+ export type DateTupleRange = [DateTuple, DateTuple];
17
17
  /** In the shape of ["hh", "mm"]. */
18
- export declare type TimeTuple = [string, string];
18
+ export type TimeTuple = [string, string];
@@ -1,6 +1,6 @@
1
1
  import type { Option } from '../types';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type MultiCheckboxProps = {
3
+ export type MultiCheckboxProps = {
4
4
  defaultValue?: string[];
5
5
  isInline?: boolean;
6
6
  isLabelHidden?: boolean;
@@ -1,6 +1,6 @@
1
1
  import type { Option } from '../types';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type MultiRadioProps = {
3
+ export type MultiRadioProps = {
4
4
  defaultValue?: string;
5
5
  isInline?: boolean;
6
6
  isLabelHidden?: boolean;
@@ -1,7 +1,7 @@
1
1
  import type { Option } from '../types';
2
2
  import type { TagPickerProps } from 'rsuite';
3
3
  import type { Promisable } from 'type-fest';
4
- export declare type MultiSelectProps = Omit<TagPickerProps, 'as' | 'data' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
4
+ export type MultiSelectProps = Omit<TagPickerProps, 'as' | 'data' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
5
5
  defaultValue?: string[];
6
6
  /** Width in REM */
7
7
  fixedWidth?: number;
@@ -1,7 +1,7 @@
1
1
  import type { Option } from '../types';
2
2
  import type { SelectPickerProps } from 'rsuite';
3
3
  import type { Promisable } from 'type-fest';
4
- export declare type SelectProps = Omit<SelectPickerProps<any>, 'as' | 'data' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
4
+ export type SelectProps = Omit<SelectPickerProps<any>, 'as' | 'data' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
5
5
  defaultValue?: string;
6
6
  isLabelHidden?: boolean;
7
7
  label: string;
@@ -1,6 +1,6 @@
1
1
  import type { InputProps } from 'rsuite';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type TextInputProps = Omit<InputProps, 'as' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
3
+ export type TextInputProps = Omit<InputProps, 'as' | 'defaultValue' | 'id' | 'onChange' | 'value'> & {
4
4
  defaultValue?: string;
5
5
  isLabelHidden?: boolean;
6
6
  label: string;
@@ -1,6 +1,6 @@
1
1
  import type { TextareaHTMLAttributes } from 'react';
2
2
  import type { Promisable } from 'type-fest';
3
- export declare type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'defaultValue' | 'id' | 'onChange' | 'value'> & {
3
+ export type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'defaultValue' | 'id' | 'onChange' | 'value'> & {
4
4
  defaultValue?: string;
5
5
  isLabelHidden?: boolean;
6
6
  label: string;
@@ -1,3 +1,3 @@
1
1
  import type { CheckboxProps } from '../fields/Checkbox';
2
- export declare type FormikCheckboxProps = Omit<CheckboxProps, 'checked' | 'defaultChecked' | 'onChange'>;
2
+ export type FormikCheckboxProps = Omit<CheckboxProps, 'checked' | 'defaultChecked' | 'onChange'>;
3
3
  export declare function FormikCheckbox({ name, ...originalProps }: FormikCheckboxProps): JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import type { DatePickerProps } from '../fields/DatePicker';
2
- export declare type FormikDatePickerProps = Omit<DatePickerProps, 'onChange'> & {
2
+ export type FormikDatePickerProps = Omit<DatePickerProps, 'onChange'> & {
3
3
  name: string;
4
4
  };
5
5
  export declare function FormikDatePicker({ name, ...originalProps }: FormikDatePickerProps): JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import type { DateRangePickerProps } from '../fields/DateRangePicker';
2
- export declare type FormikDateRangePickerProps = Omit<DateRangePickerProps, 'onChange'> & {
2
+ export type FormikDateRangePickerProps = Omit<DateRangePickerProps, 'onChange'> & {
3
3
  name: string;
4
4
  };
5
5
  export declare function FormikDateRangePicker({ name, ...originalProps }: FormikDateRangePickerProps): JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import type { Promisable } from 'type-fest';
2
- export declare type FormikEffectProps = {
2
+ export type FormikEffectProps = {
3
3
  onChange: (nextValues: Record<string, any>) => Promisable<void>;
4
4
  };
5
5
  export declare function FormikEffect({ onChange }: FormikEffectProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { MultiCheckboxProps } from '../fields/MultiCheckbox';
2
- export declare type FormikMultiCheckboxProps = Omit<MultiCheckboxProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikMultiCheckboxProps = Omit<MultiCheckboxProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikMultiCheckbox({ name, ...originalProps }: FormikMultiCheckboxProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { MultiRadioProps } from '../fields/MultiRadio';
2
- export declare type FormikMultiRadioProps = Omit<MultiRadioProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikMultiRadioProps = Omit<MultiRadioProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikMultiRadio({ name, ...originalProps }: FormikMultiRadioProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { MultiSelectProps } from '../fields/MultiSelect';
2
- export declare type FormikMultiSelectProps = Omit<MultiSelectProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikMultiSelectProps = Omit<MultiSelectProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikMultiSelect({ name, ...originalProps }: FormikMultiSelectProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { SelectProps } from '../fields/Select';
2
- export declare type FormikSelectProps = Omit<SelectProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikSelectProps = Omit<SelectProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikSelect({ name, ...originalProps }: FormikSelectProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { TextInputProps } from '../fields/TextInput';
2
- export declare type FormikTextInputProps = Omit<TextInputProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikTextInputProps = Omit<TextInputProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikTextInput({ name, ...originalProps }: FormikTextInputProps): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import type { TextareaProps } from '../fields/Textarea';
2
- export declare type FormikTextareaProps = Omit<TextareaProps, 'defaultValue' | 'onChange'>;
2
+ export type FormikTextareaProps = Omit<TextareaProps, 'defaultValue' | 'onChange'>;
3
3
  export declare function FormikTextarea({ name, ...originalProps }: FormikTextareaProps): JSX.Element;
package/index.js CHANGED
@@ -1372,7 +1372,7 @@ const SecondaryButton = styled.button `
1372
1372
  const TertiaryButton$1 = styled.button `
1373
1373
  background-color: ${p => p.theme.color.white};
1374
1374
  border: 1px solid ${p => p.theme.color.white};
1375
- color: ${p => p.theme.color.gainsboro};
1375
+ color: ${p => p.theme.color.charcoal};
1376
1376
 
1377
1377
  :hover,
1378
1378
  &._hover {