@unimelb/pattern-lib-vue 17.3.0 → 17.6.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.
- package/.out/vue.js +8165 -6283
- package/README.md +3 -1
- package/package.json +30 -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
|
-
-
|
|
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,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unimelb/pattern-lib-vue",
|
|
3
3
|
"description": "A complete design system for the University of Melbourne.",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.6.0-alpha.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/unimelb/pattern-lib.git"
|
|
8
8
|
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
9
12
|
"author": "The University of Melbourne",
|
|
10
13
|
"license": "UNLICENSED",
|
|
11
14
|
"engines": {
|
|
12
|
-
"node": ">=22.
|
|
15
|
+
"node": ">=22.22.1",
|
|
13
16
|
"yarn": "*"
|
|
14
17
|
},
|
|
15
18
|
"type": "module",
|
|
@@ -25,16 +28,22 @@
|
|
|
25
28
|
"prebuild": "rimraf .out/docs",
|
|
26
29
|
"prebuild:lib": "rimraf .out/lib",
|
|
27
30
|
"build": "storybook build -o .out/docs",
|
|
28
|
-
"build:lib": "
|
|
31
|
+
"build:lib": "run-s build:lib:standard build:webc build:uom",
|
|
29
32
|
"build:lib:standard": "vite build --config targets/lib/vite.config.js",
|
|
30
33
|
"build:lib:minify": "vite build --config targets/lib/vite.config.js",
|
|
34
|
+
"build:uom": "vite build --config targets/uom/vite.config.js",
|
|
35
|
+
"build:webc": "vite build --config targets/webc/vite.config.js",
|
|
31
36
|
"build:vue": "vite build --config targets/vue/vite.config.js",
|
|
32
37
|
"prebuild:test": "rimraf _site-docker",
|
|
33
38
|
"build:test": "cross-env MOCK=true npm-run-all storybook-build:docker",
|
|
34
39
|
"dev": "storybook dev -p 7002",
|
|
35
40
|
"dev:public": "storybook dev -p 7002 -h 0.0.0.0",
|
|
36
41
|
"start": "vite preview --port 7003 --outDir .out/docs",
|
|
37
|
-
"
|
|
42
|
+
"prestart:lib": "npm run build:lib",
|
|
43
|
+
"start:lib": "vite preview --port 7003 --open --config targets/lib/vite.config.js",
|
|
44
|
+
"prestart:uom": "npm run build:uom",
|
|
45
|
+
"start:uom": "vite preview --port 7003 --open --config targets/uom/vite.config.js",
|
|
46
|
+
"start:webc": "npm run start:lib",
|
|
38
47
|
"start:test": "http-server ./_site-docker -c-1 --port 7003",
|
|
39
48
|
"format": "prettier --write .",
|
|
40
49
|
"lint": "run-s lint:js lint:css",
|
|
@@ -59,11 +68,12 @@
|
|
|
59
68
|
"storybook-build:docker": "storybook build -o _site-docker"
|
|
60
69
|
},
|
|
61
70
|
"dependencies": {
|
|
71
|
+
"@floating-ui/vue": "^1.1.11",
|
|
62
72
|
"@fontsource-variable/fraunces": "5.2.9",
|
|
63
73
|
"@fontsource/source-sans-3": "5.2.9",
|
|
64
74
|
"@splidejs/vue-splide": "0.6.12",
|
|
65
|
-
"@vueuse/core": "14.
|
|
66
|
-
"@vueuse/integrations": "14.
|
|
75
|
+
"@vueuse/core": "14.3.0",
|
|
76
|
+
"@vueuse/integrations": "14.3.0",
|
|
67
77
|
"core-js": "3.48.0",
|
|
68
78
|
"focus-trap": "8.0.0",
|
|
69
79
|
"gumshoejs": "5.1.2",
|
|
@@ -72,17 +82,17 @@
|
|
|
72
82
|
"lodash.escaperegexp": "4.1.2",
|
|
73
83
|
"lodash.isplainobject": "4.0.6",
|
|
74
84
|
"modern-normalize": "3.0.1",
|
|
75
|
-
"semver": "7.
|
|
76
|
-
"swiper": "12.1.
|
|
85
|
+
"semver": "7.8.0",
|
|
86
|
+
"swiper": "12.1.4",
|
|
77
87
|
"throttle-debounce": "5.0.2",
|
|
78
88
|
"vue": "3.5.28",
|
|
79
89
|
"xss": "1.0.15"
|
|
80
90
|
},
|
|
81
91
|
"devDependencies": {
|
|
82
|
-
"@axe-core/playwright": "^4.11.
|
|
92
|
+
"@axe-core/playwright": "^4.11.3",
|
|
83
93
|
"@eslint/compat": "^2.0.2",
|
|
84
94
|
"@eslint/js": "^10.0.1",
|
|
85
|
-
"@playwright/test": "1.
|
|
95
|
+
"@playwright/test": "^1.60.0",
|
|
86
96
|
"@storybook/addon-a11y": "^10.3.3",
|
|
87
97
|
"@storybook/addon-docs": "^10.3.3",
|
|
88
98
|
"@storybook/vue3-vite": "^10.3.3",
|
|
@@ -98,29 +108,29 @@
|
|
|
98
108
|
"eslint-plugin-import": "^2.32.0",
|
|
99
109
|
"eslint-plugin-prettier": "^5.5.5",
|
|
100
110
|
"eslint-plugin-storybook": "^10.3.3",
|
|
101
|
-
"eslint-plugin-vue": "^10.
|
|
102
|
-
"globals": "^17.
|
|
111
|
+
"eslint-plugin-vue": "^10.9.1",
|
|
112
|
+
"globals": "^17.6.0",
|
|
103
113
|
"http-server": "14.1.1",
|
|
104
114
|
"husky": "^9.1.7",
|
|
105
115
|
"inquirer-directory": "2.2.0",
|
|
106
116
|
"jsdom": "^28.1.0",
|
|
107
|
-
"lint-staged": "^
|
|
117
|
+
"lint-staged": "^17.0.5",
|
|
108
118
|
"npm-run-all": "4.1.5",
|
|
109
|
-
"playwright-core": "1.
|
|
119
|
+
"playwright-core": "^1.60.0",
|
|
110
120
|
"plop": "^4.0.5",
|
|
111
|
-
"postcss": "^8.5.
|
|
121
|
+
"postcss": "^8.5.14",
|
|
112
122
|
"postcss-calc": "^10.1.1",
|
|
113
123
|
"postcss-html": "^1.8.1",
|
|
114
124
|
"postcss-import": "^16.1.1",
|
|
115
125
|
"postcss-mixins": "^12.1.2",
|
|
116
126
|
"postcss-nested": "^7.0.2",
|
|
117
|
-
"postcss-preset-env": "^11.
|
|
127
|
+
"postcss-preset-env": "^11.3.0",
|
|
118
128
|
"postcss-reporter": "^7.1.0",
|
|
119
129
|
"postcss-svgo": "^7.1.0",
|
|
120
130
|
"postcss-url": "^10.1.3",
|
|
121
|
-
"prettier": "^3.8.
|
|
122
|
-
"react": "^19.2.
|
|
123
|
-
"react-dom": "^19.2.
|
|
131
|
+
"prettier": "^3.8.3",
|
|
132
|
+
"react": "^19.2.6",
|
|
133
|
+
"react-dom": "^19.2.6",
|
|
124
134
|
"rimraf": "^6.1.3",
|
|
125
135
|
"storybook": "^10.3.3",
|
|
126
136
|
"storybook-addon-pseudo-states": "^10.3.3",
|
|
@@ -138,7 +148,7 @@
|
|
|
138
148
|
"vue-eslint-parser": "^10.2.0"
|
|
139
149
|
},
|
|
140
150
|
"resolutions": {
|
|
141
|
-
"
|
|
151
|
+
"vite": "^7.3.2"
|
|
142
152
|
},
|
|
143
153
|
"cacheDirectories": [
|
|
144
154
|
"node_modules"
|