@atlas-art/ui-react 0.1.7 → 0.1.8
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.
|
@@ -9,6 +9,6 @@ declare const appLinkVariants: (props?: ({
|
|
|
9
9
|
interface AppLinkProps extends LinkProps, VariantProps<typeof appLinkVariants> {
|
|
10
10
|
className?: string;
|
|
11
11
|
}
|
|
12
|
-
declare const AppLink: react.ForwardRefExoticComponent<
|
|
12
|
+
declare const AppLink: react.ForwardRefExoticComponent<AppLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
13
13
|
|
|
14
14
|
export { AppLink, type AppLinkProps };
|
|
@@ -9,6 +9,6 @@ declare const appLinkVariants: (props?: ({
|
|
|
9
9
|
interface AppLinkProps extends LinkProps, VariantProps<typeof appLinkVariants> {
|
|
10
10
|
className?: string;
|
|
11
11
|
}
|
|
12
|
-
declare const AppLink: react.ForwardRefExoticComponent<
|
|
12
|
+
declare const AppLink: react.ForwardRefExoticComponent<AppLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
13
13
|
|
|
14
14
|
export { AppLink, type AppLinkProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlas-art/ui-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -20,8 +20,6 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist",
|
|
22
22
|
"src",
|
|
23
|
-
"tsconfig.json",
|
|
24
|
-
"tsup.config.ts",
|
|
25
23
|
"README.md"
|
|
26
24
|
],
|
|
27
25
|
"publishConfig": {
|
|
@@ -38,8 +36,8 @@
|
|
|
38
36
|
}
|
|
39
37
|
},
|
|
40
38
|
"dependencies": {
|
|
41
|
-
"
|
|
42
|
-
"
|
|
39
|
+
"@atlas-art/ui-core": "^0.1.7",
|
|
40
|
+
"class-variance-authority": "^0.7.1"
|
|
43
41
|
},
|
|
44
42
|
"devDependencies": {
|
|
45
43
|
"@types/react": "^19.2.14",
|
package/tsconfig.json
DELETED
package/tsup.config.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from "tsup";
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
entry: ["src/index.ts", "src/adapters/react-router/index.ts"],
|
|
5
|
-
format: ["esm", "cjs"],
|
|
6
|
-
dts: true,
|
|
7
|
-
sourcemap: true,
|
|
8
|
-
clean: true,
|
|
9
|
-
treeshake: true,
|
|
10
|
-
splitting: false,
|
|
11
|
-
external: ["react", "react-dom", "react-router", "@atlas-art/ui-core"],
|
|
12
|
-
});
|