@accelint/design-system 0.5.0 → 0.5.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.
|
@@ -6,7 +6,7 @@ import { TooltipClassNames, TooltipMapping, TooltipRenderProps, TooltipProps, To
|
|
|
6
6
|
import 'type-fest';
|
|
7
7
|
|
|
8
8
|
declare const TooltipContext: react.Context<ContextValue<TooltipProps, HTMLDivElement>>;
|
|
9
|
-
declare const Tooltip: (props: Omit<react_aria_components.TooltipProps, "className" | "style" | "UNSTABLE_portalContainer"> & {
|
|
9
|
+
declare const Tooltip: (props: Omit<react_aria_components.TooltipProps, "children" | "className" | "style" | "UNSTABLE_portalContainer"> & {
|
|
10
10
|
classNames?: TooltipClassNames;
|
|
11
11
|
mapping?: Partial<TooltipMapping>;
|
|
12
12
|
} & {
|
|
@@ -35,7 +35,7 @@ type BaseTooltipTargetProps = BaseProps & {
|
|
|
35
35
|
};
|
|
36
36
|
type TooltipState = Omit<TooltipRenderProps, 'state'> & Required<Pick<TooltipProps$1, 'containerPadding' | 'crossOffset' | 'offset'>>;
|
|
37
37
|
type TooltipTargetState = Required<Pick<BaseTooltipTargetProps, 'focusable' | 'relative'>>;
|
|
38
|
-
type TooltipProps = Omit<TooltipProps$1, 'className' | 'style' | 'UNSTABLE_portalContainer'> & BaseTooltipProps;
|
|
38
|
+
type TooltipProps = Omit<TooltipProps$1, 'children' | 'className' | 'style' | 'UNSTABLE_portalContainer'> & BaseTooltipProps;
|
|
39
39
|
type TooltipTargetProps = PropsWithChildren<BaseTooltipTargetProps>;
|
|
40
40
|
|
|
41
41
|
export type { TooltipClassNames, TooltipMapping, TooltipProps, TooltipRenderProps, TooltipState, TooltipTargetProps, TooltipTargetState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accelint/design-system",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"tsup": "8.3.0",
|
|
74
74
|
"vite": "5.4.9",
|
|
75
75
|
"vitest": "2.1.3",
|
|
76
|
+
"@accelint/biome-config": "0.1.2",
|
|
76
77
|
"@accelint/typescript-config": "0.1.2",
|
|
77
|
-
"@accelint/vitest-config": "0.1.3"
|
|
78
|
-
"@accelint/biome-config": "0.1.2"
|
|
78
|
+
"@accelint/vitest-config": "0.1.3"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@vanilla-extract/css": "1.16.0",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"type-fest": "4.26.1",
|
|
86
86
|
"typescript": "5.6.3",
|
|
87
87
|
"zod": "3.23.8",
|
|
88
|
-
"@accelint/
|
|
89
|
-
"@accelint/
|
|
88
|
+
"@accelint/converters": "0.2.0",
|
|
89
|
+
"@accelint/core": "0.2.0"
|
|
90
90
|
},
|
|
91
91
|
"$schema": "https://json.schemastore.org/package",
|
|
92
92
|
"author": "https://hypergiant.com",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"build": "rm -rf dist && pnpm tsup --config=tsup.css.config.ts && rm -f dist/index.js && NODE_OPTIONS=--max_old_space_size=8192 pnpm tsup",
|
|
100
100
|
"dev": "pnpm tsc --watch",
|
|
101
101
|
"index": "pnpm zx ../../scripts/indexer.mjs packages/design-system --barrels",
|
|
102
|
-
"lint": "pnpm biome lint
|
|
102
|
+
"lint": "pnpm biome lint",
|
|
103
103
|
"preview": "pnpm ladle serve",
|
|
104
104
|
"test": "pnpm vitest --dir=src"
|
|
105
105
|
}
|