@mirohq/design-system-tooltip 3.5.10 → 3.5.11-new-focus-keyboard.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.
- package/dist/types.d.ts +6 -6
- package/package.json +6 -6
package/dist/types.d.ts
CHANGED
|
@@ -12,13 +12,13 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_d
|
|
|
12
12
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_tooltip.TooltipContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
13
13
|
v1?: boolean | "true" | undefined;
|
|
14
14
|
}, {}>;
|
|
15
|
-
|
|
15
|
+
type StyledContentProps = StrictComponentProps<typeof StyledContent>;
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
type PointerDownOutsideEvent = CustomEvent<{
|
|
18
18
|
originalEvent: PointerEvent;
|
|
19
19
|
}>;
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
type Side = 'top' | 'right' | 'bottom' | 'left';
|
|
21
|
+
type Align = 'start' | 'center' | 'end';
|
|
22
22
|
|
|
23
23
|
type types_PointerDownOutsideEvent = PointerDownOutsideEvent;
|
|
24
24
|
type types_Side = Side;
|
|
@@ -102,7 +102,7 @@ interface ContentProps extends Omit<StyledContentProps, 'v1'> {
|
|
|
102
102
|
declare const Content: react__default.ForwardRefExoticComponent<Omit<ContentProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
103
103
|
|
|
104
104
|
declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_radix_ui_react_tooltip.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_tooltip.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>, {}, {}>;
|
|
105
|
-
|
|
105
|
+
type StyledTriggerProps = StrictComponentProps<typeof StyledTrigger>;
|
|
106
106
|
|
|
107
107
|
interface TriggerProps extends StyledTriggerProps {
|
|
108
108
|
/**
|
|
@@ -151,7 +151,7 @@ declare const StyledHotkey: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_de
|
|
|
151
151
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLSpanElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"span">>, {
|
|
152
152
|
v1?: boolean | "true" | undefined;
|
|
153
153
|
}, {}>;
|
|
154
|
-
|
|
154
|
+
type StyledHotkeyProps = StrictComponentProps<typeof StyledHotkey>;
|
|
155
155
|
|
|
156
156
|
interface HotkeyProps extends StyledHotkeyProps {
|
|
157
157
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-tooltip",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.11-new-focus-keyboard.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@radix-ui/react-tooltip": "^1.0.3",
|
|
31
|
-
"@mirohq/design-system-base-hotkey": "^0.2.
|
|
31
|
+
"@mirohq/design-system-base-hotkey": "^0.2.8-new-focus-keyboard.1",
|
|
32
|
+
"@mirohq/design-system-base-tooltip": "^0.1.0",
|
|
33
|
+
"@mirohq/design-system-primitive": "^1.1.2",
|
|
32
34
|
"@mirohq/design-system-experiments": "^0.2.0",
|
|
35
|
+
"@mirohq/design-system-stitches": "^2.6.31-new-focus-keyboard.1",
|
|
33
36
|
"@mirohq/design-system-use-id": "^0.1.2",
|
|
34
|
-
"@mirohq/design-system-
|
|
35
|
-
"@mirohq/design-system-stitches": "^2.6.30",
|
|
36
|
-
"@mirohq/design-system-utils": "^0.15.5",
|
|
37
|
-
"@mirohq/design-system-base-tooltip": "^0.1.0"
|
|
37
|
+
"@mirohq/design-system-utils": "^0.15.5"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "rollup -c ../../../rollup.config.js",
|