@frybynite/image-cloud 0.3.6 → 0.4.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/README.md +6 -2
- package/dist/image-cloud-auto-init.js +843 -838
- package/dist/image-cloud-auto-init.js.map +1 -1
- package/dist/image-cloud.js +841 -835
- package/dist/image-cloud.js.map +1 -1
- package/dist/image-cloud.umd.js +3 -3
- package/dist/image-cloud.umd.js.map +1 -1
- package/dist/index.d.ts +64 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,10 +104,10 @@ await cloud.init();
|
|
|
104
104
|
For detailed configuration, see the documentation in the `docs/` folder:
|
|
105
105
|
|
|
106
106
|
1. **[Loaders](docs/LOADERS.md)** — Configure image sources (static URLs, JSON endpoints, local paths, Google Drive folders)
|
|
107
|
-
2. **[
|
|
107
|
+
2. **[Layouts](docs/LAYOUTS.md)** — Choose and customize layout algorithms (radial, grid, spiral, cluster, random, wave)
|
|
108
108
|
3. **[Image Sizing](docs/IMAGE_SIZING.md)** — Control base sizes, variance, and responsive/adaptive behavior
|
|
109
109
|
4. **[Full Parameter Reference](docs/PARAMETERS.md)** — Complete configuration options for animation, interaction, styling, and more
|
|
110
|
-
5. **[API Reference](docs/api/README.md)** — TypeScript API documentation for the ImageCloud class, types, loaders, and
|
|
110
|
+
5. **[API Reference](docs/api/README.md)** — TypeScript API documentation for the ImageCloud class, types, loaders, and layouts
|
|
111
111
|
|
|
112
112
|
### Using the Configurator
|
|
113
113
|
|
|
@@ -160,6 +160,10 @@ Check out the `examples/` directory for various usage patterns:
|
|
|
160
160
|
- `typescript-example.ts` - TypeScript with React and Vue
|
|
161
161
|
- See `examples/README.md` for detailed instructions
|
|
162
162
|
|
|
163
|
+
## Changelog
|
|
164
|
+
|
|
165
|
+
See [CHANGELOG.md](CHANGELOG.md) for a full list of changes across all versions.
|
|
166
|
+
|
|
163
167
|
## Contributing
|
|
164
168
|
|
|
165
169
|
Contributions are welcome! Please feel free to submit a Pull Request.
|