@codeandfunction/callaloo 1.3.4 → 1.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.
Files changed (37) hide show
  1. package/dist/components/Assets/Icon.vue.d.ts +4 -4
  2. package/dist/components/Buttons/A11yButton.vue.d.ts +4 -4
  3. package/dist/components/Buttons/Button.vue.d.ts +4 -4
  4. package/dist/components/Containers/Card.vue.d.ts +4 -4
  5. package/dist/components/Containers/Carousel/Carousel.vue.d.ts +4 -4
  6. package/dist/components/Containers/Carousel/CarouselNavigation.vue.d.ts +1 -1
  7. package/dist/components/Containers/Disclosure.vue.d.ts +4 -4
  8. package/dist/components/Form/Checkbox.vue.d.ts +4 -4
  9. package/dist/components/Form/Input.vue.d.ts +4 -4
  10. package/dist/components/Form/InputMessages.vue.d.ts +1 -1
  11. package/dist/components/Form/RadioButton.vue.d.ts +4 -4
  12. package/dist/components/Form/Select.vue.d.ts +4 -4
  13. package/dist/components/Form/TextArea.vue.d.ts +4 -4
  14. package/dist/components/Indicators/Badge.vue.d.ts +4 -4
  15. package/dist/components/Indicators/Banner.vue.d.ts +4 -4
  16. package/dist/components/Indicators/Pill.vue.d.ts +4 -4
  17. package/dist/components/Loading/Skeleton.vue.d.ts +4 -4
  18. package/dist/components/Loading/Spinner.vue.d.ts +4 -4
  19. package/dist/components/Navigation/Link.vue.d.ts +4 -4
  20. package/dist/components/Navigation/NavLink.vue.d.ts +4 -4
  21. package/dist/components/Navigation/NavSection.vue.d.ts +4 -4
  22. package/dist/components/Popups/Menu.vue.d.ts +4 -4
  23. package/dist/components/Popups/Toast.vue.d.ts +4 -4
  24. package/dist/components/Table/Table.vue.d.ts +4 -4
  25. package/dist/components/Table/TableBody.vue.d.ts +1 -1
  26. package/dist/components/Table/TableCell.vue.d.ts +4 -4
  27. package/dist/components/Table/TableFooter.vue.d.ts +1 -1
  28. package/dist/components/Table/TableHeader.vue.d.ts +1 -1
  29. package/dist/components/Table/TableNestedCell.vue.d.ts +1 -1
  30. package/dist/components/Table/TableRow.vue.d.ts +1 -1
  31. package/dist/components/Typography/Heading.vue.d.ts +5 -13
  32. package/dist/components/Typography/Text.vue.d.ts +5 -5
  33. package/dist/composables/useDropdown.d.ts +1 -1
  34. package/dist/index.js +124 -61
  35. package/dist/index.umd.cjs +124 -61
  36. package/dist/types.d.ts +69 -0
  37. package/package.json +21 -21
package/dist/types.d.ts CHANGED
@@ -81,31 +81,87 @@ export declare enum HeadingTypes {
81
81
  }
82
82
  export declare enum IconNames {
83
83
  Archive = "tabler:archive",
84
+ ArrowBackUp = "tabler:arrow-back-up",
85
+ ArrowForwardUp = "tabler:arrow-forward-up",
86
+ ArrowsMove = "tabler:arrows-move",
87
+ ArrowBigUpLine = "tabler:arrow-big-up-line",
88
+ ArrowBigDownLine = "tabler:arrow-big-down-line",
89
+ ArrowDown = "tabler:arrow-down",
90
+ ArrowLeft = "tabler:arrow-left",
91
+ ArrowRight = "tabler:arrow-right",
92
+ ArrowUp = "tabler:arrow-up",
93
+ ArrowNarrowDown = "tabler:arrow-narrow-down",
94
+ ArrowNarrowLeft = "tabler:arrow-narrow-left",
95
+ ArrowNarrowRight = "tabler:arrow-narrow-right",
96
+ ArrowNarrowUp = "tabler:arrow-narrow-up",
97
+ ArrowsMaximize = "tabler:arrows-maximize",
98
+ ArrowsMinimize = "tabler:arrows-minimize",
84
99
  AtSign = "tabler:at",
100
+ Backspace = "tabler:backspace",
85
101
  Book = "tabler:book",
102
+ Brush = "tabler:brush",
86
103
  Check = "tabler:check",
87
104
  ChevronLeft = "tabler:chevron-left",
88
105
  ChevronRight = "tabler:chevron-right",
89
106
  ChevronUp = "tabler:chevron-up",
90
107
  ChevronDown = "tabler:chevron-down",
108
+ ClipboardCopy = "tabler:clipboard-copy",
109
+ ClipboardText = "tabler:clipboard-text",
110
+ Code = "tabler:code",
111
+ Columns1 = "tabler:columns-1",
112
+ Columns2 = "tabler:columns-2",
113
+ Columns3 = "tabler:columns-3",
114
+ Command = "tabler:command",
115
+ Contrast = "tabler:contrast",
116
+ Copy = "tabler:copy",
117
+ Dasboard = "tabler:dashboard",
91
118
  Database = "tabler:database",
92
119
  Delete = "tabler:x",
120
+ Devices = "tabler:devices",
121
+ DeviceDesktop = "tabler:device-desktop",
122
+ DeviceMobile = "tabler:device-mobile",
123
+ DeviceTablet = "tabler:device-tablet",
124
+ DeviceTv = "tabler:device-tv",
125
+ Download = "tabler:download",
93
126
  EditItem = "tabler:edit-circle",
94
127
  EditPencil = "tabler:edit",
95
128
  Email = "tabler:mail",
96
129
  ExternalLink = "tabler:external-link",
130
+ Eye = "tabler:eye",
131
+ EyeOff = "tabler:eye-off",
97
132
  Facebook = "tabler:brand-facebook-filled",
98
133
  FileText = "tabler:file-text",
134
+ Folder = "tabler:folder",
135
+ Forms = "tabler:forms",
99
136
  Grid = "tabler:grid",
100
137
  Google = "tabler:brand-google-filled",
138
+ Heading = "tabler:heading",
139
+ Help = "tabler:help",
101
140
  HelpCircle = "tabler:help-circle",
141
+ HelpSmall = "tabler:help-small",
142
+ Html = "tabler:html",
102
143
  Image = "tabler:photo",
144
+ InfoCircle = "tabler:info-circle",
145
+ InfoSmall = "tabler:info-small",
103
146
  Instagram = "tabler:brand-instagram",
147
+ Keyboard = "tabler:keyboard",
148
+ Layers = "tabler:layers-subtract",
104
149
  Layout = "tabler:layout",
150
+ LayoutBottomBar = "tabler:layout-bottombar",
151
+ LayoutDashboard = "tabler:layout-dashboard",
152
+ LayoutNavbar = "tabler:layout-navbar",
153
+ LayoutSidebar = "tabler:layout-sidebar",
154
+ LayoutSidebarRight = "tabler:layout-sidebar-right",
105
155
  Link = "tabler:link",
106
156
  LinkedIn = "tabler:brand-linkedin",
107
157
  LogIn = "tabler:login",
108
158
  LogOut = "tabler:logout",
159
+ Palette = "tabler:palette",
160
+ Paint = "tabler:paint",
161
+ Marquee = "tabler:marquee",
162
+ MarqueeOff = "tabler:marquee-off",
163
+ Message = "tabler:message",
164
+ MessageDots = "tabler:message-dots",
109
165
  MoodDollar = "tabler:mood-dollar",
110
166
  MoodHeart = "tabler:mood-heart",
111
167
  MoodPuzzled = "tabler:mood-puzzled",
@@ -113,22 +169,35 @@ export declare enum IconNames {
113
169
  MoodSmile = "tabler:mood-smile",
114
170
  MoodWink2 = "tabler:mood-wink-2",
115
171
  MoodWrrr = "tabler:mood-wrrr",
172
+ Mouse = "tabler:mouse",
116
173
  Plus = "tabler:plus",
117
174
  PlusCircle = "tabler:circle-plus",
118
175
  Mail = "tabler:mail",
176
+ Maximize = "tabler:maximize",
119
177
  Menu = "tabler:menu-2",
120
178
  MoreHorizontal = "tabler:dots",
121
179
  MoreVertical = "tabler:dots-vertical",
180
+ Movie = "tabler:movie",
181
+ Refresh = "tabler:refresh",
122
182
  Search = "tabler:search",
123
183
  Settings = "tabler:settings",
124
184
  Share = "tabler:share",
125
185
  Share2 = "tabler:share-2",
126
186
  Share3 = "tabler:share-3",
127
187
  Sliders = "tabler:adjustments",
188
+ SquarePlus = "tabler:square-plus",
189
+ Sun = "tabler:sun",
190
+ Terminal = "tabler:terminal",
191
+ Terminal2 = "tabler:terminal-2",
192
+ TextSize = "tabler:text-size",
128
193
  TikTok = "tabler:brand-tiktok",
129
194
  TrashCan = "tabler:trash",
130
195
  Twitter = "tabler:brand-twitter-filled",
196
+ Typography = "tabler:typography",
197
+ Upload = "tabler:upload",
198
+ Video = "tabler:video",
131
199
  WhatsApp = "tabler:brand-whatsapp",
200
+ WindowMaximize = "tabler:window-maximize",
132
201
  X = "tabler:brand-x",
133
202
  YouTube = "tabler:brand-youtube-filled"
134
203
  }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "Anthony Cholmondeley",
6
6
  "url": "https://callaloo.codeandfunction.com"
7
7
  },
8
- "version": "1.3.4",
8
+ "version": "1.4.0",
9
9
  "license": "MIT",
10
10
  "type": "module",
11
11
  "scripts": {
@@ -28,44 +28,44 @@
28
28
  }
29
29
  },
30
30
  "devDependencies": {
31
- "@chromatic-com/storybook": "^2.0.1",
31
+ "@chromatic-com/storybook": "^2.0.2",
32
32
  "@iconify-icons/tabler": "^1.2.95",
33
33
  "@iconify/types": "^2.0.0",
34
34
  "@iconify/utils": "^2.1.33",
35
35
  "@iconify/vue": "^4.1.2",
36
- "@storybook/addon-a11y": "^8.3.0",
37
- "@storybook/addon-essentials": "^8.3.0",
38
- "@storybook/addon-interactions": "^8.3.0",
36
+ "@storybook/addon-a11y": "^8.3.3",
37
+ "@storybook/addon-essentials": "^8.3.3",
38
+ "@storybook/addon-interactions": "^8.3.3",
39
39
  "@storybook/cli": "^8.3.3",
40
- "@storybook/core-server": "^8.3.0",
41
- "@storybook/test": "^8.3.0",
40
+ "@storybook/core-server": "^8.3.3",
41
+ "@storybook/test": "^8.3.3",
42
42
  "@storybook/test-runner": "^0.19.1",
43
- "@storybook/vue3": "^8.3.0",
44
- "@storybook/vue3-vite": "^8.3.0",
45
- "@types/node": "20.14.15",
43
+ "@storybook/vue3": "^8.3.3",
44
+ "@storybook/vue3-vite": "^8.3.3",
45
+ "@types/node": "20.16.10",
46
46
  "@typescript-eslint/eslint-plugin": "7.18.0",
47
47
  "@typescript-eslint/parser": "7.18.0",
48
- "@vitejs/plugin-vue": "^5.1.2",
48
+ "@vitejs/plugin-vue": "^5.1.4",
49
49
  "@vitejs/plugin-vue-jsx": "^3.1.0",
50
50
  "@vitest/coverage-c8": "~0.33.0",
51
51
  "@vitest/coverage-v8": "1.6.0",
52
52
  "@vitest/ui": "1.6.0",
53
53
  "@vue/tsconfig": "^0.5.1",
54
- "eslint": "8.57.0",
54
+ "eslint": "8.57.1",
55
55
  "eslint-config-prettier": "9.1.0",
56
- "eslint-plugin-vue": "^9.27.0",
56
+ "eslint-plugin-vue": "^9.28.0",
57
57
  "prettier": "^3.3.3",
58
- "sass": "^1.77.8",
59
- "storybook": "^8.3.0",
60
- "typescript": "^5.5.4",
61
- "vite": "5.4.0",
62
- "vite-plugin-css-injected-by-js": "^3.5.1",
58
+ "sass": "^1.79.4",
59
+ "storybook": "^8.3.3",
60
+ "typescript": "^5.6.2",
61
+ "vite": "5.4.8",
62
+ "vite-plugin-css-injected-by-js": "^3.5.2",
63
63
  "vite-plugin-dts": "^3.9.1",
64
64
  "vite-tsconfig-paths": "^4.3.2",
65
65
  "vitest": "1.6.0",
66
- "vue": "^3.4.38",
67
- "vue-router": "^4.4.3",
66
+ "vue": "^3.5.10",
67
+ "vue-router": "^4.4.5",
68
68
  "vue-tsc": "^1.8.27"
69
69
  },
70
- "packageManager": "yarn@4.3.1"
70
+ "packageManager": "yarn@4.4.0"
71
71
  }