react-skeletor icon indicating copy to clipboard operation
react-skeletor copied to clipboard

Skeleton loading for React

Results 10 react-skeletor issues
Sort by recently updated
recently updated
newest added

## Description There is a small typo in the README => `placehoder` ## Addressed issue No issue for this. Noticed it while reading the docs

It has no real reason to do so though, the exact component type is of no relevance to skeletor, as it passes the argument down to createElement eitherway.

## Description Change type argument from SFC to ComponentType because the exact component type is of no relevance to skeletor. ## Addressed issue #19

Is it possible to make it so that when you create a skeleton element for an image tag, that it waits for the onLoad event to occur before switching? Or...

## Description Moved `@types/prop-types` from `devDependencies` to `dependencies`. ## Addressed issue #15 TypeScript consumers of the library need this package due to the type export in `utils.d.ts`. Currently as it...

In a TypeScript project, this compilation error appears because `@types/prop-types` is listed as a devDependency, but is exported in `utils.d.ts` for consumption. #14

In the place of createSkeletonProvider's third argument which is element style. i want return class name in place of style. please suggest somethink

Redux and other modules with a React API are using [`hoist-non-react-statics`](https://github.com/mridgway/hoist-non-react-statics) to copy non-react specific statics to the decorated component.

I'm starting to use `react-skeletor`, and I'm missing something in the API: a connector to access the `isPending` and have my own logic of rendering, for example a component to...

It would be convenient to ship this package with an optional stylesheet for styling a basic skeleton screen. ```js import { createSkeletonProvider } from 'react-skeletor'; import 'react-skeletor/css/index.css'; export default createSkeletonProvider(...