@codeandfunction/callaloo 4.7.2 → 4.7.4

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 CHANGED
@@ -53,64 +53,68 @@ const onClickHandler = (evt?: Event) => {
53
53
  </template>
54
54
  ```
55
55
 
56
+ ## Usage via CDN
57
+
58
+ If you want to try Callaloo without a build step, you can load it directly from a CDN a detailed example is available in the [docs](https://callaloo.dev/#usage-via-cdn).
59
+
56
60
  ## Available components
57
61
 
58
62
  Callaloo ships a growing set of production-ready Vue 3 components and composables. Core building blocks include:
59
63
 
60
64
  - **Providers**
61
- - [`CLThemeProvider`](https://callaloo.dev/docs/getting-started/theming) – application-level theming and design tokens
62
- - [`CLToastProvider`](https://callaloo.dev/docs/providers/toast-provider) – toast notification provider
65
+ - [CLThemeProvider](https://callaloo.dev/docs/getting-started/theming) – application-level theming and design tokens
66
+ - [CLToastProvider](https://callaloo.dev/docs/providers/toast-provider) – toast notification provider
63
67
 
64
68
  - **Layout & containers**
65
- - [`CLCard`](https://callaloo.dev/docs/components/card)
66
- - [`CLDrawer`](https://callaloo.dev/docs/components/drawer)
67
- - [`CLCarousel`](https://callaloo.dev/docs/components/carousel)
68
- - [`CLDisclosure`](https://callaloo.dev/docs/components/disclosure)
69
- - [`CLTable`](https://callaloo.dev/docs/components/table) (with `CLTableHeader`, `CLTableBody`, `CLTableRow`, `CLTableCell`, `CLTableFooter`, `CLTableNestedCell`)
70
- - [`CLModal`](https://callaloo.dev/docs/components/modal)
69
+ - [CLCard](https://callaloo.dev/docs/components/card)
70
+ - [CLDrawer](https://callaloo.dev/docs/components/drawer)
71
+ - [CLCarousel](https://callaloo.dev/docs/components/carousel)
72
+ - [CLDisclosure](https://callaloo.dev/docs/components/disclosure)
73
+ - [CLTable](https://callaloo.dev/docs/components/table)
74
+ - [CLModal](https://callaloo.dev/docs/components/modal)
71
75
 
72
76
  - **Navigation & links**
73
- - [`CLLink`](https://callaloo.dev/docs/components/link)
74
- - [`CLNavLink`](https://callaloo.dev/docs/components/navlink)
75
- - [`CLNavSection`](https://callaloo.dev/docs/components/navsection)
77
+ - [CLLink](https://callaloo.dev/docs/components/link)
78
+ - [CLNavLink](https://callaloo.dev/docs/components/navlink)
79
+ - [CLNavSection](https://callaloo.dev/docs/components/navsection)
76
80
 
77
81
  - **Buttons & actions**
78
- - [`CLButton`](https://callaloo.dev/docs/components/button)
79
- - [`CLA11yButton`](https://callaloo.dev/docs/components/a11ybutton)
82
+ - [CLButton](https://callaloo.dev/docs/components/button)
83
+ - [CLA11yButton](https://callaloo.dev/docs/components/a11ybutton)
80
84
 
81
85
  - **Form inputs**
82
- - [`CLInput`](https://callaloo.dev/docs/components/input)
83
- - [`CLCheckbox`](https://callaloo.dev/docs/components/checkbox)
84
- - [`CLRadioButton`](https://callaloo.dev/docs/components/radio)
85
- - [`CLSelect`](https://callaloo.dev/docs/components/select)
86
- - [`CLTextArea`](https://callaloo.dev/docs/components/textarea)
86
+ - [CLInput](https://callaloo.dev/docs/components/input)
87
+ - [CLCheckbox](https://callaloo.dev/docs/components/checkbox)
88
+ - [CLRadioButton](https://callaloo.dev/docs/components/radio)
89
+ - [CLSelect](https://callaloo.dev/docs/components/select)
90
+ - [CLTextArea](https://callaloo.dev/docs/components/textarea)
87
91
 
88
92
  - **Typography & content**
89
- - [`CLHeading`](https://callaloo.dev/docs/components/heading)
90
- - [`CLText`](https://callaloo.dev/docs/components/text)
93
+ - [CLHeading](https://callaloo.dev/docs/components/heading)
94
+ - [CLText](https://callaloo.dev/docs/components/text)
91
95
 
92
96
  - **Feedback, status & overlays**
93
- - [`CLBadge`](https://callaloo.dev/docs/components/badge)
94
- - [`CLBanner`](https://callaloo.dev/docs/components/banner)
95
- - [`CLPill`](https://callaloo.dev/docs/components/pill)
96
- - [`CLProgress`](https://callaloo.dev/docs/components/progress)
97
- - [`CLSpinner`](https://callaloo.dev/docs/components/spinner)
98
- - [`CLSkeleton`](https://callaloo.dev/docs/components/skeleton)
99
- - [`CLToast`](https://callaloo.dev/docs/components/toast)
100
- - [`CLDropdownMenu`](https://callaloo.dev/docs/components/dropdown)
97
+ - [CLBadge](https://callaloo.dev/docs/components/badge)
98
+ - [CLBanner](https://callaloo.dev/docs/components/banner)
99
+ - [CLPill](https://callaloo.dev/docs/components/pill)
100
+ - [CLProgress](https://callaloo.dev/docs/components/progress)
101
+ - [CLSpinner](https://callaloo.dev/docs/components/spinner)
102
+ - [CLSkeleton](https://callaloo.dev/docs/components/skeleton)
103
+ - [CLToast](https://callaloo.dev/docs/components/toast)
104
+ - [CLDropdownMenu](https://callaloo.dev/docs/components/dropdown)
101
105
 
102
106
  - **Icons**
103
- - [`CLIcon`](https://callaloo.dev/docs/components/icon) and the full Callaloo icon set
107
+ - [CLIcon](https://callaloo.dev/docs/components/icon) and the full Callaloo [icon set](https://callaloo.dev/docs/assets/icons)
104
108
 
105
109
  - **Composables**
106
- - [`useTheme`](https://callaloo.dev/docs/getting-started/theming) – access and control theme state
107
- - [`useToast`](https://callaloo.dev/docs/providers/toast-provider) – trigger toasts from anywhere in your app
110
+ - [useTheme](https://callaloo.dev/docs/getting-started/theming) – access and control theme state
111
+ - [useToast](https://callaloo.dev/docs/providers/toast-provider) – trigger toasts from anywhere in your app
108
112
 
109
- For detailed usage, props, and examples for each component, see `https://callaloo.dev/docs/components/`.
113
+ For detailed usage, props, and examples for each component, see https://callaloo.dev/docs/components/.
110
114
 
111
- ## Themes
115
+ ## Documentation
112
116
 
113
- To learn more about how to theme components, have a look at the [docs](https://callaloo.dev/).
117
+ To learn more about how to theme components, and more detailed documentation and examples, please visit the [official documentation site](https://callaloo.dev/).
114
118
 
115
119
  ## License
116
120