@up42/up-components 0.10.15 → 0.11.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.
@@ -14,12 +14,9 @@ export declare type DocumentationPopoverProps = {
14
14
  * i.e: `/getting-started/workflows/catalog`
15
15
  */
16
16
  linkPath?: string;
17
- /**
18
- * Contentful entry ID.
19
- */
20
- contentfulId: string;
17
+ id?: string;
21
18
  };
22
19
  /**
23
20
  * Documentation: https://up-components.up42.dev/?path=/docs/patterns-popovers-documentationpopover
24
21
  */
25
- export declare const DocumentationPopover: ({ content, linkPath, linkText, heading, contentfulId, }: DocumentationPopoverProps) => JSX.Element;
22
+ export declare const DocumentationPopover: ({ content, linkPath, linkText, heading, id }: DocumentationPopoverProps) => JSX.Element;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { SliderProps as MUISliderProps } from '@mui/material';
3
+ import { MUIGlobalOmit } from '@global/utils/types';
4
+ export declare type SliderProps = MUIGlobalOmit<Omit<MUISliderProps, 'variant' | 'label'>>;
5
+ /**
6
+ * Documentation: https://up-components.up42.dev/?path=/docs/data-entry-slider--default
7
+ */
8
+ export declare const Slider: (props: SliderProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { OverridesStyleRules } from '@mui/material/styles/overrides';
2
+ export declare const MuiSlider: OverridesStyleRules;
@@ -0,0 +1 @@
1
+ export {};
@@ -19,6 +19,7 @@ export { Select, type SelectProps } from './components/Select/Select';
19
19
  export { FormSelect, type FormSelectProps } from './components/FormSelect/FormSelect';
20
20
  export { Input, type InputProps } from './components/Input/Input';
21
21
  export { FormInput, type FormInputProps } from './components/FormInput/FormInput';
22
+ export { Slider, type SliderProps } from './components/Slider/Slider';
22
23
  export { Link, type LinkProps } from './components/Link/Link';
23
24
  export { Tabs, Tab, type TabsProps, type TabProps } from './components/Tabs/Tabs';
24
25
  export { TabGroup, type TabGroupProps } from './components/TabGroup/TabGroup';