@skel-ui/react 1.0.0-alpha.9f753ec → 1.0.0-alpha.c5b371c

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@skel-ui/react",
3
3
  "author": "https://github.com/sudoaugustin",
4
- "version": "1.0.0-alpha.9f753ec",
4
+ "version": "1.0.0-alpha.c5b371c",
5
5
  "license": "MIT",
6
6
  "description": "Next era of skeleton loading for React",
7
7
  "files": [
@@ -64,9 +64,9 @@
64
64
  "storybook": "^8.3.4",
65
65
  "tailwindcss": "^3.4.13",
66
66
  "typescript": "^5.7.2",
67
+ "@skel-ui/core": "1.0.0",
67
68
  "commons-tsconfig": "0.0.1",
68
- "commons-utils": "0.0.1",
69
- "@skel-ui/core": "1.0.0"
69
+ "commons-utils": "0.0.1"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "react": "^17.0 || ^18.0",
@@ -75,7 +75,7 @@
75
75
  "scripts": {
76
76
  "dev": "storybook dev -p 6006 --no-open",
77
77
  "build": "rm -rf dist && pnpm build:dts && pnpm build:css && pnpm build:esm && pnpm build:cjs",
78
- "build:dts": "tsc -p tsconfig.json --outDir dist --emitDeclarationOnly",
78
+ "build:dts": "tsc -p tsconfig.build.json --outDir dist",
79
79
  "build:css": "esbuild src/styles.css --outdir=dist",
80
80
  "build:esm": "esbuild src/*.ts* --format=esm --outdir=dist/esm",
81
81
  "build:cjs": "esbuild src/*.ts* --format=cjs --outdir=dist/cjs"
@@ -1 +0,0 @@
1
- export default function Animations(): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +0,0 @@
1
- import { ImgHTMLAttributes } from "react";
2
- type Props = ImgHTMLAttributes<HTMLImageElement>;
3
- export default function Image({ ...rest }: Props): import("react/jsx-runtime").JSX.Element;
4
- export {};
@@ -1,5 +0,0 @@
1
- type Props = {
2
- isLoading?: boolean;
3
- };
4
- export default function PostCard(props: Props): import("react/jsx-runtime").JSX.Element;
5
- export {};
@@ -1 +0,0 @@
1
- export default function PostCardList(): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- import Animations from "./Animations";
2
- import Image from "./Image";
3
- import PostCard from "./PostCard";
4
- import PostCardList from "./PostCardList";
5
- export { Animations, Image, PostCard, PostCardList };
@@ -1,8 +0,0 @@
1
- import "../src/styles.css";
2
- import { Animations, PostCard, PostCardList } from "./components";
3
- declare const _default: {
4
- title: string;
5
- component: typeof import("@skel-ui/core").SkelRoot;
6
- };
7
- export default _default;
8
- export { Animations, PostCard, PostCardList };
File without changes
File without changes
File without changes