@codeandfunction/callaloo 4.7.2 → 4.7.3
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 +36 -32
- package/dist/callaloo.global.js +1 -1
- package/dist/index.cdn.d.ts +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,60 +53,64 @@ 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
|
-
- [
|
|
62
|
-
- [
|
|
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
|
-
- [
|
|
66
|
-
- [
|
|
67
|
-
- [
|
|
68
|
-
- [
|
|
69
|
-
- [
|
|
70
|
-
- [
|
|
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) (with CLTableHeader, CLTableBody, CLTableRow, CLTableCell, CLTableFooter, CLTableNestedCell)
|
|
74
|
+
- [CLModal](https://callaloo.dev/docs/components/modal)
|
|
71
75
|
|
|
72
76
|
- **Navigation & links**
|
|
73
|
-
- [
|
|
74
|
-
- [
|
|
75
|
-
- [
|
|
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
|
-
- [
|
|
79
|
-
- [
|
|
82
|
+
- [CLButton](https://callaloo.dev/docs/components/button)
|
|
83
|
+
- [CLA11yButton](https://callaloo.dev/docs/components/a11ybutton)
|
|
80
84
|
|
|
81
85
|
- **Form inputs**
|
|
82
|
-
- [
|
|
83
|
-
- [
|
|
84
|
-
- [
|
|
85
|
-
- [
|
|
86
|
-
- [
|
|
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
|
-
- [
|
|
90
|
-
- [
|
|
93
|
+
- [CLHeading](https://callaloo.dev/docs/components/heading)
|
|
94
|
+
- [CLText](https://callaloo.dev/docs/components/text)
|
|
91
95
|
|
|
92
96
|
- **Feedback, status & overlays**
|
|
93
|
-
- [
|
|
94
|
-
- [
|
|
95
|
-
- [
|
|
96
|
-
- [
|
|
97
|
-
- [
|
|
98
|
-
- [
|
|
99
|
-
- [
|
|
100
|
-
- [
|
|
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
|
-
- [
|
|
107
|
+
- [CLIcon](https://callaloo.dev/docs/components/icon) and the full Callaloo icon set
|
|
104
108
|
|
|
105
109
|
- **Composables**
|
|
106
|
-
- [
|
|
107
|
-
- [
|
|
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
|
|
113
|
+
For detailed usage, props, and examples for each component, see https://callaloo.dev/docs/components/.
|
|
110
114
|
|
|
111
115
|
## Themes
|
|
112
116
|
|