@versini/ui-types 7.1.0 → 8.0.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/dist/index.d.ts +14 -1
- package/package.json +2 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React$1 from 'react';
|
|
2
|
-
import { Placement } from '@floating-ui/react';
|
|
3
2
|
|
|
4
3
|
type CommonButtonProps = {
|
|
5
4
|
/**
|
|
@@ -358,6 +357,20 @@ declare namespace ModalTypes {
|
|
|
358
357
|
| null;
|
|
359
358
|
}
|
|
360
359
|
|
|
360
|
+
type Placement =
|
|
361
|
+
| "top"
|
|
362
|
+
| "right"
|
|
363
|
+
| "bottom"
|
|
364
|
+
| "left"
|
|
365
|
+
| "top-start"
|
|
366
|
+
| "top-end"
|
|
367
|
+
| "right-start"
|
|
368
|
+
| "right-end"
|
|
369
|
+
| "bottom-start"
|
|
370
|
+
| "bottom-end"
|
|
371
|
+
| "left-start"
|
|
372
|
+
| "left-end";
|
|
373
|
+
|
|
361
374
|
declare namespace TooltipTypes {
|
|
362
375
|
export type Props = {
|
|
363
376
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-types",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,8 +32,5 @@
|
|
|
32
32
|
"test:watch": "vitest",
|
|
33
33
|
"test": "vitest run"
|
|
34
34
|
},
|
|
35
|
-
"
|
|
36
|
-
"@floating-ui/react": "0.27.16"
|
|
37
|
-
},
|
|
38
|
-
"gitHead": "85fd31156888edce83b4b0ecf195ad613b7db699"
|
|
35
|
+
"gitHead": "28e13adabce18578034a9ca5553d7cfb9853c214"
|
|
39
36
|
}
|