@unimelb/pattern-lib-vue 17.3.0 → 17.5.0-alpha.1

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 (3) hide show
  1. package/.out/vue.js +8530 -6335
  2. package/README.md +3 -1
  3. package/package.json +27 -20
package/README.md CHANGED
@@ -40,7 +40,9 @@ yarn dev
40
40
 
41
41
  - [How to use the library](docs/how-to-use.md) - how this library externally
42
42
  - [Documenting stories](docs/docs.md) - how to document the component in Storybook
43
- - [Icons](docs/icons.md) - how to add new icons, and how to use icons in CSS and Vue components
43
+ - Static assets
44
+ - [Icons](docs/icons.md) - how to add new icons, and how to use icons in CSS and Vue components
45
+ - [Images](docs/images.md) - how to use logo and other image assets
44
46
  - [Contributing](docs/contributing.md) - how to get involved and contribute code
45
47
  - [Testing](docs/testing.md) - how to test your changes to the design system
46
48
  - [Deployment](docs/deployment.md) - for developers, how to deploy new versions of the design system
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unimelb/pattern-lib-vue",
3
3
  "description": "A complete design system for the University of Melbourne.",
4
- "version": "17.3.0",
4
+ "version": "17.5.0-alpha.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/unimelb/pattern-lib.git"
@@ -9,7 +9,7 @@
9
9
  "author": "The University of Melbourne",
10
10
  "license": "UNLICENSED",
11
11
  "engines": {
12
- "node": ">=22.17.0",
12
+ "node": ">=22.22.1",
13
13
  "yarn": "*"
14
14
  },
15
15
  "type": "module",
@@ -25,16 +25,22 @@
25
25
  "prebuild": "rimraf .out/docs",
26
26
  "prebuild:lib": "rimraf .out/lib",
27
27
  "build": "storybook build -o .out/docs",
28
- "build:lib": "vite build --config targets/lib/vite.config.js",
28
+ "build:lib": "run-s build:lib:standard build:webc build:uom",
29
29
  "build:lib:standard": "vite build --config targets/lib/vite.config.js",
30
30
  "build:lib:minify": "vite build --config targets/lib/vite.config.js",
31
+ "build:uom": "vite build --config targets/uom/vite.config.js",
32
+ "build:webc": "vite build --config targets/webc/vite.config.js",
31
33
  "build:vue": "vite build --config targets/vue/vite.config.js",
32
34
  "prebuild:test": "rimraf _site-docker",
33
35
  "build:test": "cross-env MOCK=true npm-run-all storybook-build:docker",
34
36
  "dev": "storybook dev -p 7002",
35
37
  "dev:public": "storybook dev -p 7002 -h 0.0.0.0",
36
38
  "start": "vite preview --port 7003 --outDir .out/docs",
37
- "start:lib": "vite preview --port 7003 --config targets/lib/vite.config.js",
39
+ "prestart:lib": "npm run build:lib",
40
+ "start:lib": "vite preview --port 7003 --open --config targets/lib/vite.config.js",
41
+ "prestart:uom": "npm run build:uom",
42
+ "start:uom": "vite preview --port 7003 --open --config targets/uom/vite.config.js",
43
+ "start:webc": "npm run start:lib",
38
44
  "start:test": "http-server ./_site-docker -c-1 --port 7003",
39
45
  "format": "prettier --write .",
40
46
  "lint": "run-s lint:js lint:css",
@@ -59,11 +65,12 @@
59
65
  "storybook-build:docker": "storybook build -o _site-docker"
60
66
  },
61
67
  "dependencies": {
68
+ "@floating-ui/vue": "^1.1.11",
62
69
  "@fontsource-variable/fraunces": "5.2.9",
63
70
  "@fontsource/source-sans-3": "5.2.9",
64
71
  "@splidejs/vue-splide": "0.6.12",
65
- "@vueuse/core": "14.2.1",
66
- "@vueuse/integrations": "14.2.1",
72
+ "@vueuse/core": "14.3.0",
73
+ "@vueuse/integrations": "14.3.0",
67
74
  "core-js": "3.48.0",
68
75
  "focus-trap": "8.0.0",
69
76
  "gumshoejs": "5.1.2",
@@ -72,17 +79,17 @@
72
79
  "lodash.escaperegexp": "4.1.2",
73
80
  "lodash.isplainobject": "4.0.6",
74
81
  "modern-normalize": "3.0.1",
75
- "semver": "7.7.4",
76
- "swiper": "12.1.2",
82
+ "semver": "7.8.0",
83
+ "swiper": "12.1.4",
77
84
  "throttle-debounce": "5.0.2",
78
85
  "vue": "3.5.28",
79
86
  "xss": "1.0.15"
80
87
  },
81
88
  "devDependencies": {
82
- "@axe-core/playwright": "^4.11.1",
89
+ "@axe-core/playwright": "^4.11.3",
83
90
  "@eslint/compat": "^2.0.2",
84
91
  "@eslint/js": "^10.0.1",
85
- "@playwright/test": "1.54.0",
92
+ "@playwright/test": "^1.60.0",
86
93
  "@storybook/addon-a11y": "^10.3.3",
87
94
  "@storybook/addon-docs": "^10.3.3",
88
95
  "@storybook/vue3-vite": "^10.3.3",
@@ -98,29 +105,29 @@
98
105
  "eslint-plugin-import": "^2.32.0",
99
106
  "eslint-plugin-prettier": "^5.5.5",
100
107
  "eslint-plugin-storybook": "^10.3.3",
101
- "eslint-plugin-vue": "^10.7.0",
102
- "globals": "^17.3.0",
108
+ "eslint-plugin-vue": "^10.9.1",
109
+ "globals": "^17.6.0",
103
110
  "http-server": "14.1.1",
104
111
  "husky": "^9.1.7",
105
112
  "inquirer-directory": "2.2.0",
106
113
  "jsdom": "^28.1.0",
107
- "lint-staged": "^16.2.7",
114
+ "lint-staged": "^17.0.5",
108
115
  "npm-run-all": "4.1.5",
109
- "playwright-core": "1.54.0",
116
+ "playwright-core": "^1.60.0",
110
117
  "plop": "^4.0.5",
111
- "postcss": "^8.5.6",
118
+ "postcss": "^8.5.14",
112
119
  "postcss-calc": "^10.1.1",
113
120
  "postcss-html": "^1.8.1",
114
121
  "postcss-import": "^16.1.1",
115
122
  "postcss-mixins": "^12.1.2",
116
123
  "postcss-nested": "^7.0.2",
117
- "postcss-preset-env": "^11.1.3",
124
+ "postcss-preset-env": "^11.3.0",
118
125
  "postcss-reporter": "^7.1.0",
119
126
  "postcss-svgo": "^7.1.0",
120
127
  "postcss-url": "^10.1.3",
121
- "prettier": "^3.8.1",
122
- "react": "^19.2.4",
123
- "react-dom": "^19.2.4",
128
+ "prettier": "^3.8.3",
129
+ "react": "^19.2.6",
130
+ "react-dom": "^19.2.6",
124
131
  "rimraf": "^6.1.3",
125
132
  "storybook": "^10.3.3",
126
133
  "storybook-addon-pseudo-states": "^10.3.3",
@@ -138,7 +145,7 @@
138
145
  "vue-eslint-parser": "^10.2.0"
139
146
  },
140
147
  "resolutions": {
141
- "stylelint-config-recommended-vue/stylelint-config-recommended": "^9.0.0"
148
+ "vite": "^7.3.2"
142
149
  },
143
150
  "cacheDirectories": [
144
151
  "node_modules"