@codeandfunction/callaloo 1.6.0 → 1.7.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/dist/types.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- import { CLOrder } from 'src';
2
-
3
1
  export declare enum Align {
4
2
  Left = "left",
5
3
  Center = "center",
@@ -44,13 +42,14 @@ export interface CardProps {
44
42
  href?: string;
45
43
  image?: string;
46
44
  imageAltText?: string;
47
- imageOrder?: CLOrder;
45
+ imageOrder?: Order;
48
46
  imageHeight?: string;
49
47
  imageWidth?: string;
50
48
  onClick?: (event?: Event) => void;
51
49
  padded?: boolean;
52
50
  rounded?: boolean;
53
51
  target?: LinkTarget;
52
+ testId?: string;
54
53
  title?: string;
55
54
  titleType?: HeadingTypes;
56
55
  titleHLevel?: HeadingLevels;
@@ -126,11 +125,14 @@ export declare enum IconNames {
126
125
  BrandWhatsApp = "tabler:brand-whatsapp",
127
126
  BrandX = "tabler:brand-x",
128
127
  BrandYouTube = "tabler:brand-youtube-filled",
128
+ CarouselHorizontal = "tabler:carousel-horizontal",
129
129
  Check = "tabler:check",
130
130
  ChevronLeft = "tabler:chevron-left",
131
131
  ChevronRight = "tabler:chevron-right",
132
132
  ChevronUp = "tabler:chevron-up",
133
133
  ChevronDown = "tabler:chevron-down",
134
+ CircleCheck = "tabler:circle-check",
135
+ Click = "tabler:click",
134
136
  ClipboardCopy = "tabler:clipboard-copy",
135
137
  ClipboardText = "tabler:clipboard-text",
136
138
  Code = "tabler:code",
@@ -169,7 +171,6 @@ export declare enum IconNames {
169
171
  FileTypeVue = "tabler:file-type-vue",
170
172
  Folder = "tabler:folder",
171
173
  Forms = "tabler:forms",
172
- Grid = "tabler:grid",
173
174
  Heading = "tabler:heading",
174
175
  Help = "tabler:help",
175
176
  HelpCircle = "tabler:help-circle",
@@ -183,10 +184,13 @@ export declare enum IconNames {
183
184
  Layout = "tabler:layout",
184
185
  LayoutBottomBar = "tabler:layout-bottombar",
185
186
  LayoutDashboard = "tabler:layout-dashboard",
187
+ LayoutGrid = "tabler:layout-grid",
186
188
  LayoutNavbar = "tabler:layout-navbar",
187
189
  LayoutSidebar = "tabler:layout-sidebar",
188
190
  LayoutSidebarRight = "tabler:layout-sidebar-right",
189
191
  Link = "tabler:link",
192
+ List = "tabler:list",
193
+ ListNumbers = "tabler:list-numbers",
190
194
  ListTree = "tabler:list-tree",
191
195
  LogIn = "tabler:login",
192
196
  LogOut = "tabler:logout",
@@ -212,14 +216,18 @@ export declare enum IconNames {
212
216
  Movie = "tabler:movie",
213
217
  PlusCircle = "tabler:circle-plus",
214
218
  Plus = "tabler:plus",
219
+ Rectangle = "tabler:rectangle",
215
220
  Refresh = "tabler:refresh",
216
221
  ShoppingCart = "tabler:shopping-cart",
217
222
  Search = "tabler:search",
223
+ Select = "tabler:select",
218
224
  Settings = "tabler:settings",
219
225
  Share = "tabler:share",
220
226
  Share2 = "tabler:share-2",
221
227
  Share3 = "tabler:share-3",
222
228
  Sliders = "tabler:adjustments",
229
+ Square = "tabler:square",
230
+ SquareCheck = "tabler:square-check",
223
231
  SquarePlus = "tabler:square-plus",
224
232
  Sun = "tabler:sun",
225
233
  Terminal = "tabler:terminal",
@@ -231,10 +239,6 @@ export declare enum IconNames {
231
239
  Video = "tabler:video",
232
240
  WindowMaximize = "tabler:window-maximize"
233
241
  }
234
- export declare enum IconStrokeWeight {
235
- Light = "1",
236
- Normal = "2"
237
- }
238
242
  export type InlineTextHtmlTags = 'a' | 'abbr' | 'b' | 'bdi' | 'bdo' | 'br' | 'cite' | 'code' | 'data' | 'dfn' | 'em' | 'i' | 'kbd' | 'mark' | 'q' | 'rp' | 'rt' | 'ruby' | 's' | 'samp' | 'small' | 'span' | 'strong' | 'sub' | 'sup' | 'time' | 'u' | 'var' | 'wbr';
239
243
  export declare enum InputTypes {
240
244
  Date = "date",
@@ -271,6 +275,7 @@ export interface NavItem {
271
275
  onClick?: (event?: Event) => void;
272
276
  rel?: string;
273
277
  target?: LinkTarget;
278
+ theme?: SimpleThemes;
274
279
  }
275
280
  export interface Option {
276
281
  label: string;
@@ -327,6 +332,7 @@ export declare enum Position {
327
332
  Absolute = "absolute",
328
333
  Relative = "relative"
329
334
  }
335
+ export type SimpleThemes = Extract<Themes, Themes.Dark | Themes.Danger | Themes.Default | Themes.Light | Themes.Primary | Themes.Success | Themes.Warning>;
330
336
  export declare enum Sizes {
331
337
  Tiny = "tiny",
332
338
  Small = "small",
package/package.json CHANGED
@@ -5,14 +5,16 @@
5
5
  "name": "Anthony Cholmondeley",
6
6
  "url": "https://callaloo.codeandfunction.com"
7
7
  },
8
- "version": "1.6.0",
8
+ "version": "1.7.0",
9
9
  "license": "MIT",
10
10
  "type": "module",
11
11
  "scripts": {
12
- "start": "storybook dev -p 4400 --no-open",
13
- "build": "vite build",
12
+ "start": "yarn export:icons && storybook dev -p 4400 --no-open",
13
+ "build:lib": "yarn export:icons && vite build && npm pack",
14
14
  "build:watch": "vite build --watch",
15
- "build:web": "yarn storybook build"
15
+ "build:web": "yarn storybook build",
16
+ "test-storybook": "test-storybook --url http://127.0.0.1:4400",
17
+ "export:icons": "npx tsx export-icons.ts"
16
18
  },
17
19
  "files": [
18
20
  "dist"
@@ -29,10 +31,8 @@
29
31
  },
30
32
  "devDependencies": {
31
33
  "@chromatic-com/storybook": "^2.0.2",
32
- "@iconify-icons/tabler": "^1.2.95",
34
+ "@iconify-json/tabler": "^1.2.5",
33
35
  "@iconify/types": "^2.0.0",
34
- "@iconify/utils": "^2.1.33",
35
- "@iconify/vue": "^4.1.2",
36
36
  "@storybook/addon-a11y": "^8.3.3",
37
37
  "@storybook/addon-essentials": "^8.3.3",
38
38
  "@storybook/addon-interactions": "^8.3.3",
@@ -54,18 +54,23 @@
54
54
  "eslint": "8.57.1",
55
55
  "eslint-config-prettier": "9.1.0",
56
56
  "eslint-plugin-vue": "^9.28.0",
57
+ "glob": "^11.0.0",
58
+ "playwright": "^1.47.2",
57
59
  "prettier": "^3.3.3",
58
60
  "sass": "^1.79.4",
59
61
  "storybook": "^8.3.3",
60
62
  "typescript": "^5.6.2",
61
63
  "vite": "5.4.8",
62
- "vite-plugin-css-injected-by-js": "^3.5.2",
63
64
  "vite-plugin-dts": "^3.9.1",
65
+ "vite-plugin-lib-inject-css": "^2.1.1",
64
66
  "vite-tsconfig-paths": "^4.3.2",
65
67
  "vitest": "1.6.0",
66
68
  "vue": "^3.5.10",
67
69
  "vue-router": "^4.4.5",
68
70
  "vue-tsc": "^1.8.27"
69
71
  },
70
- "packageManager": "yarn@4.4.0"
72
+ "packageManager": "yarn@4.5.0",
73
+ "peerDependencies": {
74
+ "vue": "^3.5.10"
75
+ }
71
76
  }