@codeandfunction/callaloo 1.11.0 → 1.13.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 (41) hide show
  1. package/dist/assets/index.css +1 -1
  2. package/dist/components/Assets/Icon.vue.d.ts +3 -25
  3. package/dist/components/Buttons/A11yButton.vue.d.ts +11 -29
  4. package/dist/components/Buttons/Button.vue.d.ts +0 -1
  5. package/dist/components/Containers/Card.vue.d.ts +12 -58
  6. package/dist/components/Containers/Carousel/Carousel.vue.d.ts +12 -35
  7. package/dist/components/Containers/Carousel/CarouselNavigation.vue.d.ts +1 -11
  8. package/dist/components/Containers/Disclosure.vue.d.ts +10 -46
  9. package/dist/components/Form/Checkbox.vue.d.ts +2 -28
  10. package/dist/components/Form/Input.vue.d.ts +2 -32
  11. package/dist/components/Form/InputMessages.vue.d.ts +1 -11
  12. package/dist/components/Form/RadioButton.vue.d.ts +2 -28
  13. package/dist/components/Form/Select.vue.d.ts +2 -30
  14. package/dist/components/Form/TextArea.vue.d.ts +2 -32
  15. package/dist/components/Indicators/Badge.vue.d.ts +3 -27
  16. package/dist/components/Indicators/Banner.vue.d.ts +3 -35
  17. package/dist/components/Indicators/Pill.vue.d.ts +3 -29
  18. package/dist/components/Loading/Skeleton.vue.d.ts +2 -28
  19. package/dist/components/Loading/Spinner.vue.d.ts +3 -31
  20. package/dist/components/Modals/CLModal.vue.d.ts +31 -0
  21. package/dist/components/Navigation/Link.vue.d.ts +11 -38
  22. package/dist/components/Navigation/NavLink.vue.d.ts +11 -34
  23. package/dist/components/Navigation/NavSection.vue.d.ts +2 -26
  24. package/dist/components/Popups/DropdownMenu.vue.d.ts +211 -44
  25. package/dist/components/Popups/Toast.vue.d.ts +2 -30
  26. package/dist/components/Table/Table.vue.d.ts +9 -32
  27. package/dist/components/Table/TableBody.vue.d.ts +7 -2
  28. package/dist/components/Table/TableCell.vue.d.ts +13 -34
  29. package/dist/components/Table/TableFooter.vue.d.ts +7 -2
  30. package/dist/components/Table/TableHeader.vue.d.ts +7 -2
  31. package/dist/components/Table/TableNestedCell.vue.d.ts +8 -12
  32. package/dist/components/Table/TableRow.vue.d.ts +9 -13
  33. package/dist/components/Typography/Heading.vue.d.ts +0 -1
  34. package/dist/components/Typography/Text.vue.d.ts +0 -1
  35. package/dist/composables/useDropdown.d.ts +0 -1
  36. package/dist/composables/useEsc.d.ts +0 -1
  37. package/dist/index.d.ts +1 -0
  38. package/dist/index.js +347 -238
  39. package/dist/index.js.map +1 -1
  40. package/dist/types.d.ts +9 -2
  41. package/package.json +32 -25
package/dist/types.d.ts CHANGED
@@ -89,7 +89,11 @@ export declare enum HeadingTypes {
89
89
  Title = "title",
90
90
  PageTitle = "pagetitle",
91
91
  Section = "section",
92
- SubSection = "subsection"
92
+ SubSection = "subsection",
93
+ Small = "small",
94
+ Medium = "medium",
95
+ Large = "large",
96
+ XLarge = "xlarge"
93
97
  }
94
98
  export declare enum IconNames {
95
99
  Activity = "tabler:activity",
@@ -397,7 +401,10 @@ export declare enum Sizes {
397
401
  Small = "small",
398
402
  Medium = "medium",
399
403
  Large = "large",
400
- XLarge = "xlarge"
404
+ XLarge = "xlarge",
405
+ XXLarge = "xlarge",
406
+ XXXLarge = "xlarge",
407
+ XXXXLarge = "xlarge"
401
408
  }
402
409
  export type SpinnerThemes = Exclude<Themes, Themes.Transparent | Themes.Outline | Themes.OutlineDanger | Themes.OutlineInfo | Themes.OutlinePrimary | Themes.OutlineSecondary | Themes.OutlineSuccess | Themes.OutlineWarning>;
403
410
  export declare enum TableTypes {
package/package.json CHANGED
@@ -5,16 +5,20 @@
5
5
  "name": "Anthony Cholmondeley",
6
6
  "url": "https://callaloo.codeandfunction.com"
7
7
  },
8
- "version": "1.11.0",
8
+ "version": "1.13.0",
9
9
  "license": "MIT",
10
10
  "type": "module",
11
11
  "scripts": {
12
- "start": "yarn export:icons && storybook dev -p 4400 --no-open",
13
12
  "build:lib": "yarn export:icons && vite build && npm pack",
14
13
  "build:watch": "vite build --watch",
15
14
  "build:web": "yarn export:icons && yarn storybook build",
16
- "test-storybook": "test-storybook --url http://127.0.0.1:4400",
17
- "export:icons": "npx tsx export-icons.ts"
15
+ "export:icons": "npx tsx export-icons.ts",
16
+ "lint": "yarn lint:js && yarn lint:prettier",
17
+ "lint:js": "eslint 'src/**/*.{ts,vue}'",
18
+ "lint:js:fix": "eslint 'src/**/*.{ts,vue}' --fix",
19
+ "lint:prettier": "prettier --check 'src/**/*.{ts,vue}'",
20
+ "start": "yarn export:icons && storybook dev -p 4400 --no-open",
21
+ "test-storybook": "test-storybook --url http://127.0.0.1:4400"
18
22
  },
19
23
  "files": [
20
24
  "dist"
@@ -33,45 +37,48 @@
33
37
  "**/*.css"
34
38
  ],
35
39
  "devDependencies": {
36
- "@chromatic-com/storybook": "^2.0.2",
40
+ "@chromatic-com/storybook": "^3.2.2",
41
+ "@eslint/eslintrc": "^3.1.0",
42
+ "@eslint/js": "^9.14.0",
37
43
  "@floating-ui/vue": "^1.1.5",
38
44
  "@iconify-json/tabler": "^1.2.7",
39
45
  "@iconify/types": "^2.0.0",
40
- "@storybook/addon-a11y": "^8.4.1",
41
- "@storybook/addon-essentials": "^8.4.1",
42
- "@storybook/addon-interactions": "^8.4.1",
43
- "@storybook/cli": "^8.4.1",
44
- "@storybook/core-server": "^8.4.1",
45
- "@storybook/test": "^8.4.1",
46
+ "@storybook/addon-a11y": "^8.4.2",
47
+ "@storybook/addon-essentials": "^8.4.2",
48
+ "@storybook/addon-interactions": "^8.4.2",
49
+ "@storybook/cli": "^8.4.2",
50
+ "@storybook/core-server": "^8.4.2",
51
+ "@storybook/test": "^8.4.2",
46
52
  "@storybook/test-runner": "^0.19.1",
47
- "@storybook/vue3": "^8.4.1",
48
- "@storybook/vue3-vite": "^8.4.1",
49
- "@types/node": "20.17.5",
50
- "@typescript-eslint/eslint-plugin": "7.18.0",
51
- "@typescript-eslint/parser": "7.18.0",
53
+ "@storybook/vue3": "^8.4.2",
54
+ "@storybook/vue3-vite": "^8.4.2",
55
+ "@types/node": "22.9.0",
56
+ "@typescript-eslint/eslint-plugin": "8.13.0",
57
+ "@typescript-eslint/parser": "8.13.0",
52
58
  "@vitejs/plugin-vue": "^5.1.4",
53
- "@vitejs/plugin-vue-jsx": "^3.1.0",
59
+ "@vitejs/plugin-vue-jsx": "^4.0.1",
54
60
  "@vitest/coverage-c8": "~0.33.0",
55
- "@vitest/coverage-v8": "1.6.0",
56
- "@vitest/ui": "1.6.0",
61
+ "@vitest/coverage-v8": "2.1.4",
62
+ "@vitest/ui": "2.1.4",
57
63
  "@vue/tsconfig": "^0.5.1",
58
- "eslint": "8.57.1",
64
+ "eslint": "9.14.0",
59
65
  "eslint-config-prettier": "9.1.0",
60
66
  "eslint-plugin-vue": "^9.30.0",
61
67
  "glob": "^11.0.0",
68
+ "globals": "^15.12.0",
62
69
  "playwright": "^1.48.2",
63
70
  "prettier": "^3.3.3",
64
71
  "sass": "^1.80.6",
65
- "storybook": "^8.4.1",
72
+ "storybook": "^8.4.2",
66
73
  "typescript": "^5.6.3",
67
74
  "vite": "5.4.10",
68
- "vite-plugin-dts": "^3.9.1",
75
+ "vite-plugin-dts": "^4.3.0",
69
76
  "vite-plugin-lib-inject-css": "^2.1.1",
70
- "vite-tsconfig-paths": "^4.3.2",
71
- "vitest": "1.6.0",
77
+ "vite-tsconfig-paths": "^5.1.0",
78
+ "vitest": "2.1.4",
72
79
  "vue": "^3.5.12",
73
80
  "vue-router": "^4.4.5",
74
- "vue-tsc": "^1.8.27"
81
+ "vue-tsc": "^2.1.10"
75
82
  },
76
83
  "packageManager": "yarn@4.5.0",
77
84
  "peerDependencies": {