@recursica/mantine-adapter 0.50.6 → 0.52.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/CHANGELOG.md +22 -0
- package/dist/index.d.ts +26 -26
- package/dist/mantine-adapter.cjs +2 -2
- package/dist/mantine-adapter.cjs.map +1 -1
- package/dist/mantine-adapter.css +1 -1
- package/dist/mantine-adapter.js +779 -773
- package/dist/mantine-adapter.js.map +1 -1
- package/package.json +2 -2
- package/src/Introduction.stories.tsx +15 -15
- package/src/OverStyling.tsx +3 -3
- package/src/components/Accordion/ACCORDION_IMPLEMENTATION_NOTES.md +10 -0
- package/src/components/Accordion/Accordion.module.css +5 -1
- package/src/components/AutoComplete/AUTOCOMPLETE_IMPLEMENTATION_NOTES.md +6 -1
- package/src/components/AutoComplete/AutoComplete.module.css +4 -1
- package/src/components/Button/Button.module.css +4 -1
- package/src/components/Button/IMPLEMENTATION_NOTES.md +12 -0
- package/src/components/Card/USAGE.md +1 -1
- package/src/components/Dropdown/DROPDOWN_IMPLEMENTATION_NOTES.md +1 -1
- package/src/components/Dropdown/Dropdown.module.css +4 -1
- package/src/components/Heading/HEADING_IMPLEMENTATION_NOTES.md +18 -0
- package/src/components/Heading/Heading.module.css +13 -0
- package/src/components/{Title/Title.stories.tsx → Heading/Heading.stories.tsx} +13 -13
- package/src/components/Heading/Heading.test.tsx +1 -0
- package/src/components/Heading/Heading.tsx +52 -0
- package/src/components/{Title → Heading}/USAGE.md +5 -5
- package/src/components/Modal/MODAL_IMPLEMENTATION_NOTES.md +6 -1
- package/src/components/Modal/Modal.module.css +4 -1
- package/src/components/Panel/PANEL_IMPLEMENTATION_NOTES.md +10 -0
- package/src/components/Panel/Panel.module.css +4 -1
- package/src/components/Text/TEXT_IMPLEMENTATION_NOTES.md +12 -0
- package/src/components/Text/Text.module.css +13 -0
- package/src/components/Text/Text.stories.tsx +1 -1
- package/src/components/Text/Text.tsx +5 -4
- package/src/components/index.ts +1 -1
- package/src/index.ts +3 -3
- package/src/components/Title/Title.test.tsx +0 -1
- package/src/components/Title/Title.tsx +0 -52
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @recursica/mantine-adapter
|
|
2
2
|
|
|
3
|
+
## 0.52.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f618b38: Renamed the `Title` component to `Heading` (and `RecursicaTitleProps` to `RecursicaHeadingProps`) to match designers' semantic vocabulary. `Text` is unchanged. Breaking: update imports from `Title`/`TitleProps` to `Heading`/`HeadingProps`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [f618b38]
|
|
12
|
+
- @recursica/adapter-common@0.26.0
|
|
13
|
+
|
|
14
|
+
## 0.51.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- ae939ef: Latest adapters and tester
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- ae939ef: Fixed descender clipping (e.g. the "g" in a long label) on single-line ellipsis truncation across Accordion, AutoComplete/Autocomplete, Button, Dropdown, Modal, and Panel — switched `overflow: hidden` to `overflow: clip; overflow-clip-margin: 0.35em`.
|
|
23
|
+
- ae939ef: Added `text-wrap: balance` to `Text` and `Title` so wrapped multi-line text (headings and paragraphs) gets more even line lengths.
|
|
24
|
+
|
|
3
25
|
## 0.50.6
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ import { TextProps as TextProps_2 } from '@mantine/core';
|
|
|
99
99
|
import { TimelineItemProps as TimelineItemProps_2 } from '@mantine/core';
|
|
100
100
|
import { TimelineProps as TimelineProps_2 } from '@mantine/core';
|
|
101
101
|
import { TimePickerProps } from '@mantine/dates';
|
|
102
|
-
import { TitleProps
|
|
102
|
+
import { TitleProps } from '@mantine/core';
|
|
103
103
|
import { Tooltip as Tooltip_3 } from '@mantine/core';
|
|
104
104
|
import { TooltipFloatingProps as TooltipFloatingProps_2 } from '@mantine/core';
|
|
105
105
|
import { TooltipProps as TooltipProps_2 } from '@mantine/core';
|
|
@@ -757,6 +757,15 @@ spacing?: string | number | RecursicaSpacing;
|
|
|
757
757
|
*/
|
|
758
758
|
declare type GroupProps = WithRecursicaSpacing<GroupProps_2>;
|
|
759
759
|
|
|
760
|
+
export declare const Heading: typeof rawComponents.Heading;
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* Enforces highly accessible structural markup utilizing semantic `<h1>` through `<h6>` tags securely bound directly to Recursica typographic scales.
|
|
764
|
+
*/
|
|
765
|
+
declare const Heading_2: ForwardRefExoticComponent<HeadingProps & RefAttributes<HTMLHeadingElement>>;
|
|
766
|
+
|
|
767
|
+
declare type HeadingProps = RecursicaOverStyled<Omit<TitleProps, "size"> & RecursicaHeadingProps>;
|
|
768
|
+
|
|
760
769
|
export declare const HoverCard: typeof rawComponents.HoverCard;
|
|
761
770
|
|
|
762
771
|
declare const HoverCard_2: HoverCardComponent;
|
|
@@ -1488,6 +1497,8 @@ declare namespace rawComponents {
|
|
|
1488
1497
|
Grid_2 as Grid,
|
|
1489
1498
|
GroupProps,
|
|
1490
1499
|
Group_2 as Group,
|
|
1500
|
+
HeadingProps,
|
|
1501
|
+
Heading_2 as Heading,
|
|
1491
1502
|
HoverCardProps,
|
|
1492
1503
|
HoverCardTargetProps,
|
|
1493
1504
|
HoverCardDropdownProps,
|
|
@@ -1625,8 +1636,6 @@ declare namespace rawComponents {
|
|
|
1625
1636
|
Timeline_2 as Timeline,
|
|
1626
1637
|
TimelineItemProps,
|
|
1627
1638
|
TimelineItem_2 as TimelineItem,
|
|
1628
|
-
TitleProps,
|
|
1629
|
-
Title_2 as Title,
|
|
1630
1639
|
ToastProps,
|
|
1631
1640
|
Toast_2 as Toast,
|
|
1632
1641
|
TooltipProps,
|
|
@@ -1689,7 +1698,7 @@ declare type ReadOnlyTextFieldProps = RecursicaOverStyled<RecursicaReadOnlyTextF
|
|
|
1689
1698
|
/**
|
|
1690
1699
|
* Official list of all components in Recursica.
|
|
1691
1700
|
*/
|
|
1692
|
-
export declare const RECURSICA_COMPONENTS: readonly ["Accordion", "AssistiveElement", "Autocomplete", "Avatar", "Badge", "Box", "Breadcrumb", "Button", "Card", "Checkbox", "CheckboxGroup", "Chip", "Container", "DatePicker", "Dropdown", "EmptyValueRenderer", "FileInput", "FileUpload", "Flex", "FormControlLayout", "FormControlWrapper", "Grid", "Group", "HoverCard", "Label", "Layer", "Link", "Loader", "Menu", "Modal", "NumberInput", "Pagination", "Panel", "Popover", "Radio", "ReadOnlyField", "SegmentedControl", "Slider", "Stack", "Stepper", "Switch", "Table", "Tabs", "Text", "TextArea", "TextField", "TimePicker", "Timeline", "
|
|
1701
|
+
export declare const RECURSICA_COMPONENTS: readonly ["Accordion", "AssistiveElement", "Autocomplete", "Avatar", "Badge", "Box", "Breadcrumb", "Button", "Card", "Checkbox", "CheckboxGroup", "Chip", "Container", "DatePicker", "Dropdown", "EmptyValueRenderer", "FileInput", "FileUpload", "Flex", "FormControlLayout", "FormControlWrapper", "Grid", "Group", "Heading", "HoverCard", "Label", "Layer", "Link", "Loader", "Menu", "Modal", "NumberInput", "Pagination", "Panel", "Popover", "Radio", "ReadOnlyField", "SegmentedControl", "Slider", "Stack", "Stepper", "Switch", "Table", "Tabs", "Text", "TextArea", "TextField", "TimePicker", "Timeline", "Toast", "Tooltip", "TransferList", "Tree", "Typography"];
|
|
1693
1702
|
|
|
1694
1703
|
/**
|
|
1695
1704
|
* Props for the Recursica Accordion Control component.
|
|
@@ -2223,6 +2232,18 @@ export declare interface RecursicaFormControlWrapperProps extends RecursicaLabel
|
|
|
2223
2232
|
controlMinWidth?: string | undefined;
|
|
2224
2233
|
}
|
|
2225
2234
|
|
|
2235
|
+
/**
|
|
2236
|
+
* Props for the Recursica Heading component.
|
|
2237
|
+
*/
|
|
2238
|
+
export declare interface RecursicaHeadingProps extends default_2.HTMLAttributes<HTMLHeadingElement> {
|
|
2239
|
+
/** Heading ordering hierarchies (1 represents H1, 6 represents H6) */
|
|
2240
|
+
order?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
2241
|
+
/** Heading contents */
|
|
2242
|
+
children?: default_2.ReactNode;
|
|
2243
|
+
/** Polymorphic component override */
|
|
2244
|
+
component?: default_2.ElementType;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2226
2247
|
/**
|
|
2227
2248
|
* Props for the Recursica HoverCard component.
|
|
2228
2249
|
*/
|
|
@@ -2728,18 +2749,6 @@ declare interface RecursicaTimePickerProps_2 {
|
|
|
2728
2749
|
maxTime?: string;
|
|
2729
2750
|
}
|
|
2730
2751
|
|
|
2731
|
-
/**
|
|
2732
|
-
* Props for the Recursica Title component.
|
|
2733
|
-
*/
|
|
2734
|
-
export declare interface RecursicaTitleProps extends default_2.HTMLAttributes<HTMLHeadingElement> {
|
|
2735
|
-
/** Heading ordering hierarchies (1 represents H1, 6 represents H6) */
|
|
2736
|
-
order?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
2737
|
-
/** Title contents */
|
|
2738
|
-
children?: default_2.ReactNode;
|
|
2739
|
-
/** Polymorphic component override */
|
|
2740
|
-
component?: default_2.ElementType;
|
|
2741
|
-
}
|
|
2742
|
-
|
|
2743
2752
|
/**
|
|
2744
2753
|
* Props for the Recursica Toast notification component.
|
|
2745
2754
|
*/
|
|
@@ -3108,7 +3117,7 @@ export { Text_2 as Text }
|
|
|
3108
3117
|
|
|
3109
3118
|
/**
|
|
3110
3119
|
* A generalized typographical wrapper limiting text properties to bounded Recursica UI-kit tokens inherently.
|
|
3111
|
-
* Do not use for semantic headings; use the explicit `<
|
|
3120
|
+
* Do not use for semantic headings; use the explicit `<Heading>` component for `<h1>` - `<h6>`.
|
|
3112
3121
|
*
|
|
3113
3122
|
* Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
|
|
3114
3123
|
* @example
|
|
@@ -3181,15 +3190,6 @@ declare const TimePicker_2: default_2.ForwardRefExoticComponent<TimePickerProps_
|
|
|
3181
3190
|
|
|
3182
3191
|
declare type TimePickerProps_2 = RecursicaOverStyled<RecursicaTimePickerProps>;
|
|
3183
3192
|
|
|
3184
|
-
export declare const Title: typeof rawComponents.Title;
|
|
3185
|
-
|
|
3186
|
-
/**
|
|
3187
|
-
* Enforces highly accessible structural markup utilizing semantic `<h1>` through `<h6>` tags securely bound directly to Recursica typographic scales.
|
|
3188
|
-
*/
|
|
3189
|
-
declare const Title_2: ForwardRefExoticComponent<TitleProps & RefAttributes<HTMLHeadingElement>>;
|
|
3190
|
-
|
|
3191
|
-
declare type TitleProps = RecursicaOverStyled<Omit<TitleProps_2, "size"> & RecursicaTitleProps>;
|
|
3192
|
-
|
|
3193
3193
|
export declare const Toast: typeof rawComponents.Toast;
|
|
3194
3194
|
|
|
3195
3195
|
declare const Toast_2: default_2.ForwardRefExoticComponent<ToastProps & default_2.RefAttributes<HTMLDivElement>>;
|