You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,15 @@
6
6
- Added `disabled` prop to `Radio`#425 by @namakshenas
7
7
- Added `type` prop to `SimpleGrid`#433 by @namakshenas
8
8
9
+
- Added the `add_figure_templates()` function which creates Mantine-styled Plotly figure templates for
10
+
both light and dark modes using the default Mantine theme. It registers the templates with plotly.io.templates as
11
+
"mantine_light" and "mantine_dark", and optionally sets one of the themes as a default. #431 by @AnnMarie
12
+
13
+
- Added various props: `acceptValueOnBlur` to `TagsInput`, `gradient` to `LineChart`, `hideWithOnePage` to `Pagination`, `name` to `Avatar`, and `disabled` to `NumberInput`. #440 by @AnnMarieW
14
+
15
+
- Added `SemiCircleProgress` component #434 by @AnnMarieW
16
+
17
+
9
18
### Fixed
10
19
- Fixed closing of Popovers when clicking outside. #423 by @magicmq
Copy file name to clipboardexpand all lines: src/ts/components/core/Pagination.tsx
+3-1
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,11 @@ interface Props
38
38
radius?: MantineRadius;
39
39
/** Determines whether active item text color should depend on `background-color` of the indicator. If luminosity of the `color` prop is less than `theme.luminosityThreshold`, then `theme.white` will be used for text color, otherwise `theme.black`. Overrides `theme.autoContrast`. */
40
40
autoContrast?: boolean;
41
+
/** Determines whether the pagination should be hidden when only one page is available (total=1), False by default */
42
+
hideWithOnePage?: boolean;
41
43
}
42
44
43
-
/** Pagination */
45
+
/** Use the Pagination component to display active page and navigate between multiple pages */
/** Determines whether text color with filled variant should depend on `background-color`. If luminosity of the `color` prop is less than `theme.luminosityThreshold`, then `theme.white` will be used for text color, otherwise `theme.black`. Overrides `theme.autoContrast`. */
31
31
autoContrast?: boolean;
32
+
/** Name of the user. When src is not set, used to display initials and to generate color when color="initials" is set. */
33
+
name?: string;
32
34
}
33
35
34
-
/** Avatar */
36
+
/** Use the Avatar component to display user profile image, initials or fallback icon */
Copy file name to clipboardexpand all lines: src/ts/components/core/input/NumberInput.tsx
+4-1
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,12 @@ interface Props
59
59
stepHoldDelay?: number;
60
60
/** (string; default "off") Enables the browser to attempt autocompletion based on user history. For more information, see: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete */
61
61
autoComplete?: string;
62
+
/** Sets disabled attribute on the input element */
63
+
disabled?: boolean;
64
+
62
65
}
63
66
64
-
/** NumberInput */
67
+
/** The NumberInput component allows users to input numeric values */
0 commit comments