jattac.libs.web.overflow-menu 0.0.30 → 0.0.32
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 +7 -7
- package/dist/Data/IOverflowMenuItem.d.ts +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/docs/api.md +40 -0
- package/docs/breaking-changes.md +39 -0
- package/docs/configuration.md +48 -0
- package/docs/development.md +47 -0
- package/docs/examples.md +147 -0
- package/docs/features.md +47 -0
- package/package.json +35 -7
package/README.md
CHANGED
|
@@ -42,13 +42,13 @@ const App = () => {
|
|
|
42
42
|
|
|
43
43
|
## Documentation Index
|
|
44
44
|
|
|
45
|
-
1. [Cookbook: Practical Examples](
|
|
46
|
-
2. [Feature Showcase](
|
|
47
|
-
3. [API Reference](
|
|
48
|
-
4. [Configuration Guide](
|
|
49
|
-
5. [Development Guide](
|
|
50
|
-
6. [Migration Guide](
|
|
45
|
+
1. [Cookbook: Practical Examples](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/examples.md) - **Start here** to learn through real-world scenarios.
|
|
46
|
+
2. [Feature Showcase](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/features.md) - A high-level overview of available capabilities.
|
|
47
|
+
3. [API Reference](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/api.md) - Detailed technical specifications for components and types.
|
|
48
|
+
4. [Configuration Guide](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/configuration.md) - Customization, styling, and global settings.
|
|
49
|
+
5. [Development Guide](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/development.md) - Instructions for contributors and local setup.
|
|
50
|
+
6. [Migration Guide](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/breaking-changes.md) - Handling updates and breaking changes.
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
|
54
|
-
[Next: Cookbook](
|
|
54
|
+
[Next: Cookbook](https://github.com/nyingimaina/jattac.libs.web.overflow-menu/blob/develop/docs/examples.md)
|