@visitscotland/component-library 4.10.3 → 4.11.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/CHANGELOG.md +2971 -0
- package/dist/client/manifest.json +61 -20
- package/dist/client/scripts/{fc08b116729f7be79c9d.js → 20f693ecddfc90496f6a.js} +1 -1
- package/dist/client/scripts/{fec8d954621c73ff71bd.js → 2477914832e75c7a98af.js} +1 -1
- package/dist/client/scripts/35355c6e9b872753ee97.js +1 -0
- package/dist/client/scripts/52b8403c233554c471d6.js +1 -0
- package/dist/client/scripts/{23f1a8fabc84617d7929.js → 866c183151d202876582.js} +1 -1
- package/dist/client/scripts/df18b654ae827f1e3f2d.js +1 -0
- package/dist/client/styles/35355c6e9b872753ee97.css +1 -0
- package/dist/client/styles/52b8403c233554c471d6.css +1 -0
- package/dist/client/styles/{574797bfb7a95a799897.css → 653c4d8f9a4977eb6f7c.css} +1 -1
- package/dist/client/styles/df18b654ae827f1e3f2d.css +1 -0
- package/dist/components/components/dropdown/Dropdown.vue.d.ts +19 -0
- package/dist/components/components/global-menu/GlobalMenu.vue.d.ts +11 -0
- package/dist/components/components/global-menu/components/GlobalMenuDropdown.vue.d.ts +11 -0
- package/dist/components/components/global-menu/components/GlobalMenuLanguage.vue.d.ts +11 -0
- package/dist/components/components/index.d.ts +1 -0
- package/dist/components/components/pagination/VsPagination.vue.d.ts +16 -0
- package/dist/components/components/pagination/index.d.ts +3 -0
- package/dist/components/vs-component-library.css +1 -1
- package/dist/components/vs-component-library.js +173 -173
- package/dist/components/vs-component-library.mjs +9879 -9724
- package/dist/ssr/index.js +1 -1
- package/dist/ssr/manifest.json +1 -1
- package/dist/ssr/styles/{2e0ace242953c7ec1dd7.css → a777793af6f1fc3ea4f1.css} +4 -3
- package/package.json +231 -231
- package/dist/client/scripts/26a6c1d32027d37b77b7.js +0 -1
- package/dist/client/scripts/fb2bc8c33c76a3ef1da9.js +0 -1
- package/dist/client/styles/26a6c1d32027d37b77b7.css +0 -1
- package/dist/client/styles/fb2bc8c33c76a3ef1da9.css +0 -1
- /package/dist/client/scripts/{574797bfb7a95a799897.js → 653c4d8f9a4977eb6f7c.js} +0 -0
- /package/dist/client/styles/{fc08b116729f7be79c9d.css → 20f693ecddfc90496f6a.css} +0 -0
- /package/dist/client/styles/{fec8d954621c73ff71bd.css → 2477914832e75c7a98af.css} +0 -0
- /package/dist/client/styles/{23f1a8fabc84617d7929.css → 866c183151d202876582.css} +0 -0
package/package.json
CHANGED
|
@@ -1,231 +1,231 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@visitscotland/component-library",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "VisitScotland Component Library",
|
|
5
|
-
"author": "VisitScotland",
|
|
6
|
-
"homepage": "https://github.com/visitscotland/vs-component-library#readme",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"require": "./dist/ssr/index.js"
|
|
13
|
-
},
|
|
14
|
-
"./components": {
|
|
15
|
-
"import": "./dist/components/vs-component-library.mjs",
|
|
16
|
-
"require": "./dist/components/vs-component-library.umd.js",
|
|
17
|
-
"types": "./dist/components/component-entry.d.ts"
|
|
18
|
-
},
|
|
19
|
-
"./maps": {
|
|
20
|
-
"import": "./dist/components/maps.mjs"
|
|
21
|
-
},
|
|
22
|
-
"./components/style.css": "./dist/components/vs-component-library.css",
|
|
23
|
-
"./components/fonts.css": "./dist/components/fonts.css",
|
|
24
|
-
"./components/icons.css": "./dist/components/icons.css"
|
|
25
|
-
},
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"scripts": {
|
|
28
|
-
"storybook": "yarn theo && storybook dev -p 6006",
|
|
29
|
-
"build-storybook": "yarn theo && storybook build",
|
|
30
|
-
"build": "yarn theo && npm-run-all build:library build:ssr third-party build:vite-no-theo",
|
|
31
|
-
"build:dev": "yarn theo && npm-run-all build:library:dev build:ssr:dev third-party",
|
|
32
|
-
"build:library": "cross-env NODE_ENV=production webpack --config ./build/webpack.conf.js",
|
|
33
|
-
"build:library:dev": "cross-env NODE_ENV=development webpack --config ./build/webpack.conf.js",
|
|
34
|
-
"build:ssr": "cross-env NODE_ENV=production webpack --config ./build/webpack.ssr.conf.js",
|
|
35
|
-
"build:ssr:dev": "cross-env NODE_ENV=development webpack --config ./build/webpack.ssr.conf.js",
|
|
36
|
-
"build:vite": "yarn theo && vite build",
|
|
37
|
-
"build:vite-no-theo": "vite build",
|
|
38
|
-
"test": "yarn theo && jest --config ./test/unit/jest.conf.js",
|
|
39
|
-
"test:no-theo": "jest --config ./test/unit/jest.conf.js",
|
|
40
|
-
"lint": "eslint",
|
|
41
|
-
"lint:all": "yarn lint:src && yarn lint:build && yarn lint:stories",
|
|
42
|
-
"lint:src": "yarn lint \"src/**/*.{js,vue,ts}\"",
|
|
43
|
-
"lint:build": "yarn lint \"build/*.{js,vue,ts}\"",
|
|
44
|
-
"lint:stories": "yarn lint \"stories/**/*.{js,vue,ts}\"",
|
|
45
|
-
"lint:fix": "yarn lint \"src/**/*.{js,vue,ts}\" \"stories/**/*.js\" --fix",
|
|
46
|
-
"prettier": "prettier . --list-different",
|
|
47
|
-
"theo": "theo ./src/tokens/tokens.yml --transform web --format map.scss,scss,raw.json,json --dest ./src/assets/tokens",
|
|
48
|
-
"third-party": "webpack --config ./build/third-party.webpack.conf.js",
|
|
49
|
-
"commit": "cz",
|
|
50
|
-
"prepare": "husky install",
|
|
51
|
-
"prepack": "yarn && yarn build",
|
|
52
|
-
"release:patch": "standard-version --release-as patch",
|
|
53
|
-
"release:minor": "standard-version --release-as minor",
|
|
54
|
-
"release:major": "standard-version --release-as major"
|
|
55
|
-
},
|
|
56
|
-
"lint-staged": {
|
|
57
|
-
"*.{js,vue,ts}": "eslint"
|
|
58
|
-
},
|
|
59
|
-
"repository": {
|
|
60
|
-
"type": "git",
|
|
61
|
-
"url": "https://github.com/visitscotland/vs-component-library.git"
|
|
62
|
-
},
|
|
63
|
-
"keywords": [
|
|
64
|
-
"vue.js",
|
|
65
|
-
"visit scotland",
|
|
66
|
-
"vue",
|
|
67
|
-
"design system",
|
|
68
|
-
"design",
|
|
69
|
-
"system"
|
|
70
|
-
],
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@babel/core": "^7.23.2",
|
|
73
|
-
"@babel/eslint-parser": "^7.21.8",
|
|
74
|
-
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
75
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
76
|
-
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
77
|
-
"@babel/plugin-transform-runtime": "^7.23.2",
|
|
78
|
-
"@babel/polyfill": "^7.10.4",
|
|
79
|
-
"@babel/preset-env": "^7.23.2",
|
|
80
|
-
"@babel/preset-react": "7.12.13",
|
|
81
|
-
"@chromatic-com/storybook": "^3.2.2",
|
|
82
|
-
"@originjs/vite-plugin-require-context": "^1.0.9",
|
|
83
|
-
"@rushstack/eslint-patch": "^1.3.0",
|
|
84
|
-
"@semantic-release/npm": "^12.0.1",
|
|
85
|
-
"@storybook/addon-a11y": "^8.4.6",
|
|
86
|
-
"@storybook/addon-essentials": "^8.4.6",
|
|
87
|
-
"@storybook/addon-interactions": "^8.4.6",
|
|
88
|
-
"@storybook/addon-links": "^8.4.6",
|
|
89
|
-
"@storybook/blocks": "^8.4.6",
|
|
90
|
-
"@storybook/vue3": "^8.4.6",
|
|
91
|
-
"@storybook/vue3-vite": "^8.4.6",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
93
|
-
"@typescript-eslint/parser": "^5.59.8",
|
|
94
|
-
"@vitejs/plugin-vue": "^5.0.4",
|
|
95
|
-
"@vue/eslint-config-airbnb": "^7.0.0",
|
|
96
|
-
"@vue/test-utils": "^2.3.2",
|
|
97
|
-
"@vue/vue3-jest": "^29.2.4",
|
|
98
|
-
"babel-jest": "^29.5.0",
|
|
99
|
-
"babel-loader": "^9.1.2",
|
|
100
|
-
"babel-plugin-macros": "^2.4.2",
|
|
101
|
-
"bootstrap": "^5.3.2",
|
|
102
|
-
"chromatic": "^6.17.3",
|
|
103
|
-
"clean-webpack-plugin": "^4.0.0",
|
|
104
|
-
"commitizen": "^4.3.0",
|
|
105
|
-
"cross-env": "^7.0.3",
|
|
106
|
-
"css-loader": "^6.7.3",
|
|
107
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
108
|
-
"dotenv-webpack": "^8.0.1",
|
|
109
|
-
"eslint": "^8.2.0",
|
|
110
|
-
"eslint-import-resolver-webpack": "^0.13.2",
|
|
111
|
-
"eslint-plugin-import": "^2.25.2",
|
|
112
|
-
"eslint-plugin-storybook": "^0.11.1",
|
|
113
|
-
"eslint-plugin-vue": "^9.11.1",
|
|
114
|
-
"eslint-webpack-plugin": "^4.0.1",
|
|
115
|
-
"file-loader": "^6.2.0",
|
|
116
|
-
"husky": "^8.0.3",
|
|
117
|
-
"jest": "^29.5.0",
|
|
118
|
-
"jest-axe": "^8.0.0",
|
|
119
|
-
"jest-environment-jsdom": "^29.5.0",
|
|
120
|
-
"jest-serializer-vue": "^3.1.0",
|
|
121
|
-
"lint-staged": "^15.2.2",
|
|
122
|
-
"mini-css-extract-plugin": "^2.7.5",
|
|
123
|
-
"moxios": "^0.4.0",
|
|
124
|
-
"node-polyfill-webpack-plugin": "^2.0.1",
|
|
125
|
-
"npm-run-all": "^4.1.5",
|
|
126
|
-
"optimist": "^0.6.1",
|
|
127
|
-
"path": "^0.12.7",
|
|
128
|
-
"postcss-safe-parser": "^6.0.0",
|
|
129
|
-
"prettier": "^3.2.5",
|
|
130
|
-
"require-context.macro": "^1.2.2",
|
|
131
|
-
"sass": "^1.62.1",
|
|
132
|
-
"sass-loader": "^13.2.2",
|
|
133
|
-
"semantic-release": "^24.2.0",
|
|
134
|
-
"speed-measure-webpack-plugin": "^1.5.0",
|
|
135
|
-
"standard-version": "^9.5.0",
|
|
136
|
-
"storybook": "^8.4.6",
|
|
137
|
-
"storybook-addon-datalayer-watcher": "^1.0.2",
|
|
138
|
-
"storybook-addon-mock": "^5.0.0",
|
|
139
|
-
"style-loader": "^3.3.2",
|
|
140
|
-
"svgo-loader": "^4.0.0",
|
|
141
|
-
"theo": "^8.1.5",
|
|
142
|
-
"time-analytics-webpack-plugin": "^0.1.20",
|
|
143
|
-
"ts-jest": "^29.1.0",
|
|
144
|
-
"ts-loader": "^9.4.3",
|
|
145
|
-
"typescript": "^5.0.4",
|
|
146
|
-
"upgrade": "^1.1.0",
|
|
147
|
-
"vite": "^5.2.10",
|
|
148
|
-
"vite-plugin-dts": "^3.7.2",
|
|
149
|
-
"vite-plugin-turbosnap": "^1.0.2",
|
|
150
|
-
"vue": "^3.4.19",
|
|
151
|
-
"vue-loader": "^17.1.0",
|
|
152
|
-
"vue-style-loader": "^4.1.3",
|
|
153
|
-
"webpack": "^5.81.0",
|
|
154
|
-
"webpack-cli": "^5.0.2",
|
|
155
|
-
"webpack-manifest-plugin": "^5.0.0",
|
|
156
|
-
"webpack-merge": "^5.1.4",
|
|
157
|
-
"webpack-node-externals": "^3.0.0"
|
|
158
|
-
},
|
|
159
|
-
"dependencies": {
|
|
160
|
-
"@mapbox/geojson-extent": "^1.0.1",
|
|
161
|
-
"@pinia/testing": "^0.1.3",
|
|
162
|
-
"@semantic-release/exec": "^6.0.3",
|
|
163
|
-
"@storybook/addon-a11y": "^8.4.6",
|
|
164
|
-
"@storybook/test": "^8.4.6",
|
|
165
|
-
"@vuelidate/core": "^2.0.2",
|
|
166
|
-
"@vuelidate/validators": "^2.0.2",
|
|
167
|
-
"axios": "^1.4.0",
|
|
168
|
-
"bootstrap-vue-next": "^0.17.0",
|
|
169
|
-
"glob": "^8.1.0",
|
|
170
|
-
"lodash": "^4.17.21",
|
|
171
|
-
"mapbox-gl": "^1.11.1",
|
|
172
|
-
"mitt": "^3.0.0",
|
|
173
|
-
"pinia": "^2.1.3",
|
|
174
|
-
"vite": "^5.1.3",
|
|
175
|
-
"vue": "^3.3.4",
|
|
176
|
-
"vue-combo-blocks": "^2.1.1",
|
|
177
|
-
"vue-recaptcha": "^2.0.1",
|
|
178
|
-
"vue-youtube-vue-3": "^1.5.0",
|
|
179
|
-
"vue3-charts": "^1.1.33",
|
|
180
|
-
"vue3-lazy-hydration": "^1.2.1",
|
|
181
|
-
"vue3-simple-typeahead": "^1.0.11",
|
|
182
|
-
"vuelidate": "^0.7.7",
|
|
183
|
-
"vuex": "^4.1.0",
|
|
184
|
-
"webpack-merge": "^5.1.4",
|
|
185
|
-
"webpack-node-externals": "^3.0.0"
|
|
186
|
-
},
|
|
187
|
-
"peerDependencies": {
|
|
188
|
-
"@popperjs/core": "*",
|
|
189
|
-
"postcss": "*"
|
|
190
|
-
},
|
|
191
|
-
"engines": {
|
|
192
|
-
"node": ">= 16.20.0",
|
|
193
|
-
"npm": ">= 6.14.5",
|
|
194
|
-
"yarn": ">= 1.22.4"
|
|
195
|
-
},
|
|
196
|
-
"browserslist": [
|
|
197
|
-
"> 1%",
|
|
198
|
-
"last 2 versions",
|
|
199
|
-
"not Explorer > 0",
|
|
200
|
-
"IE 11",
|
|
201
|
-
"not ExplorerMobile > 0",
|
|
202
|
-
"not BlackBerry > 0",
|
|
203
|
-
"not OperaMini all",
|
|
204
|
-
"not OperaMobile > 0"
|
|
205
|
-
],
|
|
206
|
-
"jest": {
|
|
207
|
-
"testPathIgnorePatterns": [
|
|
208
|
-
".test",
|
|
209
|
-
"node_modules"
|
|
210
|
-
],
|
|
211
|
-
"jest.pathToJest": "node_modules/.bin/jest"
|
|
212
|
-
},
|
|
213
|
-
"config": {
|
|
214
|
-
"commitizen": {
|
|
215
|
-
"path": "./node_modules/cz-conventional-changelog"
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
"bugs": {
|
|
219
|
-
"url": "https://github.com/visitscotland/vs-component-library/issues"
|
|
220
|
-
},
|
|
221
|
-
"resolutions": {
|
|
222
|
-
"minimist": "^0.2.4",
|
|
223
|
-
"json5": "^1.0.2",
|
|
224
|
-
"word-wrap": "^1.2.4",
|
|
225
|
-
"highlight.js": "^10.4.1",
|
|
226
|
-
"semver": "^7.5.4",
|
|
227
|
-
"get-func-name": "^2.0.1",
|
|
228
|
-
"svgo": "3.2.0"
|
|
229
|
-
},
|
|
230
|
-
"packageManager": "yarn@4.6.0"
|
|
231
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@visitscotland/component-library",
|
|
3
|
+
"version": "4.11.1",
|
|
4
|
+
"description": "VisitScotland Component Library",
|
|
5
|
+
"author": "VisitScotland",
|
|
6
|
+
"homepage": "https://github.com/visitscotland/vs-component-library#readme",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./dist/ssr/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./components": {
|
|
15
|
+
"import": "./dist/components/vs-component-library.mjs",
|
|
16
|
+
"require": "./dist/components/vs-component-library.umd.js",
|
|
17
|
+
"types": "./dist/components/component-entry.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./maps": {
|
|
20
|
+
"import": "./dist/components/maps.mjs"
|
|
21
|
+
},
|
|
22
|
+
"./components/style.css": "./dist/components/vs-component-library.css",
|
|
23
|
+
"./components/fonts.css": "./dist/components/fonts.css",
|
|
24
|
+
"./components/icons.css": "./dist/components/icons.css"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"storybook": "yarn theo && storybook dev -p 6006",
|
|
29
|
+
"build-storybook": "yarn theo && storybook build",
|
|
30
|
+
"build": "yarn theo && npm-run-all build:library build:ssr third-party build:vite-no-theo",
|
|
31
|
+
"build:dev": "yarn theo && npm-run-all build:library:dev build:ssr:dev third-party",
|
|
32
|
+
"build:library": "cross-env NODE_ENV=production webpack --config ./build/webpack.conf.js",
|
|
33
|
+
"build:library:dev": "cross-env NODE_ENV=development webpack --config ./build/webpack.conf.js",
|
|
34
|
+
"build:ssr": "cross-env NODE_ENV=production webpack --config ./build/webpack.ssr.conf.js",
|
|
35
|
+
"build:ssr:dev": "cross-env NODE_ENV=development webpack --config ./build/webpack.ssr.conf.js",
|
|
36
|
+
"build:vite": "yarn theo && vite build",
|
|
37
|
+
"build:vite-no-theo": "vite build",
|
|
38
|
+
"test": "yarn theo && jest --config ./test/unit/jest.conf.js",
|
|
39
|
+
"test:no-theo": "jest --config ./test/unit/jest.conf.js",
|
|
40
|
+
"lint": "eslint",
|
|
41
|
+
"lint:all": "yarn lint:src && yarn lint:build && yarn lint:stories",
|
|
42
|
+
"lint:src": "yarn lint \"src/**/*.{js,vue,ts}\"",
|
|
43
|
+
"lint:build": "yarn lint \"build/*.{js,vue,ts}\"",
|
|
44
|
+
"lint:stories": "yarn lint \"stories/**/*.{js,vue,ts}\"",
|
|
45
|
+
"lint:fix": "yarn lint \"src/**/*.{js,vue,ts}\" \"stories/**/*.js\" --fix",
|
|
46
|
+
"prettier": "prettier . --list-different",
|
|
47
|
+
"theo": "theo ./src/tokens/tokens.yml --transform web --format map.scss,scss,raw.json,json --dest ./src/assets/tokens",
|
|
48
|
+
"third-party": "webpack --config ./build/third-party.webpack.conf.js",
|
|
49
|
+
"commit": "cz",
|
|
50
|
+
"prepare": "husky install",
|
|
51
|
+
"prepack": "yarn && yarn build",
|
|
52
|
+
"release:patch": "standard-version --release-as patch",
|
|
53
|
+
"release:minor": "standard-version --release-as minor",
|
|
54
|
+
"release:major": "standard-version --release-as major"
|
|
55
|
+
},
|
|
56
|
+
"lint-staged": {
|
|
57
|
+
"*.{js,vue,ts}": "eslint"
|
|
58
|
+
},
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "https://github.com/visitscotland/vs-component-library.git"
|
|
62
|
+
},
|
|
63
|
+
"keywords": [
|
|
64
|
+
"vue.js",
|
|
65
|
+
"visit scotland",
|
|
66
|
+
"vue",
|
|
67
|
+
"design system",
|
|
68
|
+
"design",
|
|
69
|
+
"system"
|
|
70
|
+
],
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@babel/core": "^7.23.2",
|
|
73
|
+
"@babel/eslint-parser": "^7.21.8",
|
|
74
|
+
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
75
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
76
|
+
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
77
|
+
"@babel/plugin-transform-runtime": "^7.23.2",
|
|
78
|
+
"@babel/polyfill": "^7.10.4",
|
|
79
|
+
"@babel/preset-env": "^7.23.2",
|
|
80
|
+
"@babel/preset-react": "7.12.13",
|
|
81
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
82
|
+
"@originjs/vite-plugin-require-context": "^1.0.9",
|
|
83
|
+
"@rushstack/eslint-patch": "^1.3.0",
|
|
84
|
+
"@semantic-release/npm": "^12.0.1",
|
|
85
|
+
"@storybook/addon-a11y": "^8.4.6",
|
|
86
|
+
"@storybook/addon-essentials": "^8.4.6",
|
|
87
|
+
"@storybook/addon-interactions": "^8.4.6",
|
|
88
|
+
"@storybook/addon-links": "^8.4.6",
|
|
89
|
+
"@storybook/blocks": "^8.4.6",
|
|
90
|
+
"@storybook/vue3": "^8.4.6",
|
|
91
|
+
"@storybook/vue3-vite": "^8.4.6",
|
|
92
|
+
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
93
|
+
"@typescript-eslint/parser": "^5.59.8",
|
|
94
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
95
|
+
"@vue/eslint-config-airbnb": "^7.0.0",
|
|
96
|
+
"@vue/test-utils": "^2.3.2",
|
|
97
|
+
"@vue/vue3-jest": "^29.2.4",
|
|
98
|
+
"babel-jest": "^29.5.0",
|
|
99
|
+
"babel-loader": "^9.1.2",
|
|
100
|
+
"babel-plugin-macros": "^2.4.2",
|
|
101
|
+
"bootstrap": "^5.3.2",
|
|
102
|
+
"chromatic": "^6.17.3",
|
|
103
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
104
|
+
"commitizen": "^4.3.0",
|
|
105
|
+
"cross-env": "^7.0.3",
|
|
106
|
+
"css-loader": "^6.7.3",
|
|
107
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
108
|
+
"dotenv-webpack": "^8.0.1",
|
|
109
|
+
"eslint": "^8.2.0",
|
|
110
|
+
"eslint-import-resolver-webpack": "^0.13.2",
|
|
111
|
+
"eslint-plugin-import": "^2.25.2",
|
|
112
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
113
|
+
"eslint-plugin-vue": "^9.11.1",
|
|
114
|
+
"eslint-webpack-plugin": "^4.0.1",
|
|
115
|
+
"file-loader": "^6.2.0",
|
|
116
|
+
"husky": "^8.0.3",
|
|
117
|
+
"jest": "^29.5.0",
|
|
118
|
+
"jest-axe": "^8.0.0",
|
|
119
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
120
|
+
"jest-serializer-vue": "^3.1.0",
|
|
121
|
+
"lint-staged": "^15.2.2",
|
|
122
|
+
"mini-css-extract-plugin": "^2.7.5",
|
|
123
|
+
"moxios": "^0.4.0",
|
|
124
|
+
"node-polyfill-webpack-plugin": "^2.0.1",
|
|
125
|
+
"npm-run-all": "^4.1.5",
|
|
126
|
+
"optimist": "^0.6.1",
|
|
127
|
+
"path": "^0.12.7",
|
|
128
|
+
"postcss-safe-parser": "^6.0.0",
|
|
129
|
+
"prettier": "^3.2.5",
|
|
130
|
+
"require-context.macro": "^1.2.2",
|
|
131
|
+
"sass": "^1.62.1",
|
|
132
|
+
"sass-loader": "^13.2.2",
|
|
133
|
+
"semantic-release": "^24.2.0",
|
|
134
|
+
"speed-measure-webpack-plugin": "^1.5.0",
|
|
135
|
+
"standard-version": "^9.5.0",
|
|
136
|
+
"storybook": "^8.4.6",
|
|
137
|
+
"storybook-addon-datalayer-watcher": "^1.0.2",
|
|
138
|
+
"storybook-addon-mock": "^5.0.0",
|
|
139
|
+
"style-loader": "^3.3.2",
|
|
140
|
+
"svgo-loader": "^4.0.0",
|
|
141
|
+
"theo": "^8.1.5",
|
|
142
|
+
"time-analytics-webpack-plugin": "^0.1.20",
|
|
143
|
+
"ts-jest": "^29.1.0",
|
|
144
|
+
"ts-loader": "^9.4.3",
|
|
145
|
+
"typescript": "^5.0.4",
|
|
146
|
+
"upgrade": "^1.1.0",
|
|
147
|
+
"vite": "^5.2.10",
|
|
148
|
+
"vite-plugin-dts": "^3.7.2",
|
|
149
|
+
"vite-plugin-turbosnap": "^1.0.2",
|
|
150
|
+
"vue": "^3.4.19",
|
|
151
|
+
"vue-loader": "^17.1.0",
|
|
152
|
+
"vue-style-loader": "^4.1.3",
|
|
153
|
+
"webpack": "^5.81.0",
|
|
154
|
+
"webpack-cli": "^5.0.2",
|
|
155
|
+
"webpack-manifest-plugin": "^5.0.0",
|
|
156
|
+
"webpack-merge": "^5.1.4",
|
|
157
|
+
"webpack-node-externals": "^3.0.0"
|
|
158
|
+
},
|
|
159
|
+
"dependencies": {
|
|
160
|
+
"@mapbox/geojson-extent": "^1.0.1",
|
|
161
|
+
"@pinia/testing": "^0.1.3",
|
|
162
|
+
"@semantic-release/exec": "^6.0.3",
|
|
163
|
+
"@storybook/addon-a11y": "^8.4.6",
|
|
164
|
+
"@storybook/test": "^8.4.6",
|
|
165
|
+
"@vuelidate/core": "^2.0.2",
|
|
166
|
+
"@vuelidate/validators": "^2.0.2",
|
|
167
|
+
"axios": "^1.4.0",
|
|
168
|
+
"bootstrap-vue-next": "^0.17.0",
|
|
169
|
+
"glob": "^8.1.0",
|
|
170
|
+
"lodash": "^4.17.21",
|
|
171
|
+
"mapbox-gl": "^1.11.1",
|
|
172
|
+
"mitt": "^3.0.0",
|
|
173
|
+
"pinia": "^2.1.3",
|
|
174
|
+
"vite": "^5.1.3",
|
|
175
|
+
"vue": "^3.3.4",
|
|
176
|
+
"vue-combo-blocks": "^2.1.1",
|
|
177
|
+
"vue-recaptcha": "^2.0.1",
|
|
178
|
+
"vue-youtube-vue-3": "^1.5.0",
|
|
179
|
+
"vue3-charts": "^1.1.33",
|
|
180
|
+
"vue3-lazy-hydration": "^1.2.1",
|
|
181
|
+
"vue3-simple-typeahead": "^1.0.11",
|
|
182
|
+
"vuelidate": "^0.7.7",
|
|
183
|
+
"vuex": "^4.1.0",
|
|
184
|
+
"webpack-merge": "^5.1.4",
|
|
185
|
+
"webpack-node-externals": "^3.0.0"
|
|
186
|
+
},
|
|
187
|
+
"peerDependencies": {
|
|
188
|
+
"@popperjs/core": "*",
|
|
189
|
+
"postcss": "*"
|
|
190
|
+
},
|
|
191
|
+
"engines": {
|
|
192
|
+
"node": ">= 16.20.0",
|
|
193
|
+
"npm": ">= 6.14.5",
|
|
194
|
+
"yarn": ">= 1.22.4"
|
|
195
|
+
},
|
|
196
|
+
"browserslist": [
|
|
197
|
+
"> 1%",
|
|
198
|
+
"last 2 versions",
|
|
199
|
+
"not Explorer > 0",
|
|
200
|
+
"IE 11",
|
|
201
|
+
"not ExplorerMobile > 0",
|
|
202
|
+
"not BlackBerry > 0",
|
|
203
|
+
"not OperaMini all",
|
|
204
|
+
"not OperaMobile > 0"
|
|
205
|
+
],
|
|
206
|
+
"jest": {
|
|
207
|
+
"testPathIgnorePatterns": [
|
|
208
|
+
".test",
|
|
209
|
+
"node_modules"
|
|
210
|
+
],
|
|
211
|
+
"jest.pathToJest": "node_modules/.bin/jest"
|
|
212
|
+
},
|
|
213
|
+
"config": {
|
|
214
|
+
"commitizen": {
|
|
215
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"bugs": {
|
|
219
|
+
"url": "https://github.com/visitscotland/vs-component-library/issues"
|
|
220
|
+
},
|
|
221
|
+
"resolutions": {
|
|
222
|
+
"minimist": "^0.2.4",
|
|
223
|
+
"json5": "^1.0.2",
|
|
224
|
+
"word-wrap": "^1.2.4",
|
|
225
|
+
"highlight.js": "^10.4.1",
|
|
226
|
+
"semver": "^7.5.4",
|
|
227
|
+
"get-func-name": "^2.0.1",
|
|
228
|
+
"svgo": "3.2.0"
|
|
229
|
+
},
|
|
230
|
+
"packageManager": "yarn@4.6.0"
|
|
231
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.VsEventCard=e():t.VsEventCard=e()}(self,(function(){return(self.webpackChunk_visitscotland_component_library=self.webpackChunk_visitscotland_component_library||[]).push([[7744],{17083:function(){},65303:function(t,e,n){"use strict";var a=n(13838),s=n(48836),r=n(68638),c=n(22368);e.A={name:"VsEventCard",status:"prototype",release:"0.0.1",components:{VsHeading:a.default,VsButton:s.default,VsCol:r.default,VsRow:c.default},props:{ctaHref:{type:String,default:"#"},ctaLabel:{type:String,default:""},ctaIcon:{type:String,default:""}}}},69535:function(t,e,n){"use strict";n.d(e,{X:function(){return i}});var a=n(20641),s=n(90033),r={class:"card vs-event-card","data-test":"vs-event-card"},c={class:"card-body"},o={class:"vs-event-card__date"},d={key:0,class:"vs-event-card__content","data-test":"vs-event-card__content"},u={key:1,class:"vs-event-card__cta mt-050","data-test":"vs-event-card__cta"};function i(t,e,n,i,l,f){var v=(0,a.g2)("VsHeading"),_=(0,a.g2)("VsCol"),p=(0,a.g2)("VsRow"),y=(0,a.g2)("VsButton");return(0,a.uX)(),(0,a.CE)("div",r,[(0,a.Lk)("div",c,[(0,a.bF)(p,{class:"vs-event-card__header"},{default:(0,a.k6)((function(){return[(0,a.bF)(_,{sm:"12",md:"9",class:"p-0"},{default:(0,a.k6)((function(){return[(0,a.bF)(v,{class:"vs-event-card__heading","heading-style":"heading-xs",level:"3","data-test":"vs-event-card__heading"},{default:(0,a.k6)((function(){return[(0,a.RG)(t.$slots,"event-card-header")]})),_:3})]})),_:3}),t.$slots["event-card-date"]?((0,a.uX)(),(0,a.Wv)(_,{key:0,sm:"12",md:"3",class:"my-auto p-0","data-test":"vs-event-card__date"},{default:(0,a.k6)((function(){return[(0,a.Lk)("p",o,[(0,a.RG)(t.$slots,"event-card-date")])]})),_:3})):(0,a.Q3)("",!0)]})),_:3}),t.$slots["event-card-content"]?((0,a.uX)(),(0,a.CE)("div",d,[(0,a.RG)(t.$slots,"event-card-content")])):(0,a.Q3)("",!0),n.ctaHref&&n.ctaLabel?((0,a.uX)(),(0,a.CE)("div",u,[(0,a.bF)(y,{href:n.ctaHref,icon:n.ctaIcon,"icon-position":"right","data-test":"vs-event-card__cta"},{default:(0,a.k6)((function(){return[(0,a.eW)((0,s.toDisplayString)(n.ctaLabel),1)]})),_:1},8,["href","icon"])])):(0,a.Q3)("",!0)])])}},16497:function(t,e,n){"use strict";var a=n(85072),s=n.n(a),r=n(97825),c=n.n(r),o=n(77659),d=n.n(o),u=n(55056),i=n.n(u),l=n(10540),f=n.n(l),v=n(41113),_=n.n(v),p=n(17083),y=n.n(p),b={};b.styleTagTransform=_(),b.setAttributes=i(),b.insert=d().bind(null,"head"),b.domAPI=c(),b.insertStyleElement=f(),s()(y(),b),y()&&y().locals&&y().locals},68573:function(t,e,n){"use strict";n.r(e);var a=n(51535),s=n(58779);n(70509);const r=(0,n(66262).A)(s.A,[["render",a.X]]);e.default=r},58779:function(t,e,n){"use strict";n.d(e,{A:function(){return a.A}});var a=n(65303)},51535:function(t,e,n){"use strict";n.d(e,{X:function(){return a.X}});var a=n(69535)},70509:function(t,e,n){"use strict";n(16497)}},function(t){return t.O(0,[641,6262,7510,3751,4352,4467,7527,8086,810,2543,6422,8745,8836,8638,2368,3838],(function(){return t(t.s=68573)})),t.O()}])}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunk_visitscotland_component_library=self.webpackChunk_visitscotland_component_library||[]).push([[2710],{28785:function(){},99750:function(t,n,o){"use strict";var r=o(34352),e=o(2543);n.A={name:"VsDropdown",status:"prototype",release:"0.0.1",components:{BDropdown:r.UV},props:{text:{type:String,default:""}},computed:{nonButtonContentSlots:function(){return(0,e.reject)(this.$slots,{name:"button-content"})}}}},61177:function(t,n,o){"use strict";o.d(n,{X:function(){return u}});var r=o(20641),e=o(90033),s={class:"dropdown-menu overflow-auto",role:"menu"};function u(t,n,o,u,c,a){var i=(0,r.g2)("BDropdown");return(0,r.uX)(),(0,r.CE)(r.FK,null,[(0,r.bF)(i,(0,r.v6)(t.$attrs,{variant:"primary",class:"vs-dropdown"}),(0,r.eX)({"button-content":(0,r.k6)((function(){return[(0,r.RG)(t.$slots,"button-content",{},(function(){return[(0,r.eW)((0,e.toDisplayString)(o.text),1)]}))]})),default:(0,r.k6)((function(){return[(0,r.RG)(t.$slots,"default")]})),_:2},[(0,r.pI)(a.nonButtonContentSlots,(function(n,o){return{name:o,fn:(0,r.k6)((function(){return[(0,r.RG)(t.$slots,o)]}))}}))]),1040),(0,r.Lk)("div",{class:(0,e.normalizeClass)([t.$attrs.class,"dropdown vs-dropdown vs-dropdown--fallback"])},[(0,r.Lk)("ul",s,[(0,r.RG)(t.$slots,"default")])],2)],64)}},57235:function(t,n,o){"use strict";var r=o(85072),e=o.n(r),s=o(97825),u=o.n(s),c=o(77659),a=o.n(c),i=o(55056),l=o.n(i),d=o(10540),f=o.n(d),p=o(41113),v=o.n(p),m=o(28785),b=o.n(m),w={};w.styleTagTransform=v(),w.setAttributes=l(),w.insert=a().bind(null,"head"),w.domAPI=u(),w.insertStyleElement=f(),e()(b(),w),b()&&b().locals&&b().locals},62710:function(t,n,o){"use strict";o.r(n);var r=o(6345),e=o(45754);o(58679);const s=(0,o(66262).A)(e.A,[["render",r.X]]);n.default=s},45754:function(t,n,o){"use strict";o.d(n,{A:function(){return r.A}});var r=o(99750)},6345:function(t,n,o){"use strict";o.d(n,{X:function(){return r.X}});var r=o(61177)},58679:function(t,n,o){"use strict";o(57235)}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.card.vs-event-card{border:none}.card.vs-event-card .card-body{padding:1rem;width:100%;border-bottom:1px solid #e9e9e9}.card.vs-event-card .vs-event-card__date{margin:auto 0;font-size:1.25rem;font-weight:600}.card.vs-event-card .vs-event-card__heading{margin:0}.card.vs-event-card .vs-event-card__header{margin:.5rem 0}.card.vs-event-card .vs-event-card__cta{margin-bottom:.5rem}@media(min-width: 768px){.card.vs-event-card .vs-event-card__header{margin:0 0 0 0}.card.vs-event-card .vs-event-card__heading{margin:.5rem 0}.card.vs-event-card .vs-event-card__date{text-align:right;align-self:middle}.card.vs-event-card .vs-event-card__cta{position:relative;right:0;bottom:3rem;float:right;margin-bottom:-3rem}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.vs-dropdown .dropdown-toggle{font-weight:600;transition:all .2s ease-in-out;text-decoration:none;position:relative;overflow:hidden;border-width:2px;line-height:1.5}.vs-dropdown .dropdown-toggle:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #3369ff}.vs-dropdown .dropdown-toggle{line-height:1;padding:.5rem 1.5rem}.vs-dropdown .dropdown-toggle:hover{background-color:#17359c}.vs-dropdown .dropdown-toggle:active{background-color:#112876}.vs-dropdown .dropdown-toggle::after{display:inline-block;font-family:"Font Awesome Kit";content:"";color:#fff;border:0;font-weight:400;vertical-align:bottom}.vs-dropdown .dropdown-menu li{border-bottom:1px solid #e9e9e9}.vs-dropdown .dropdown-menu li:last-of-type{border-bottom:0}.vs-dropdown .dropdown-menu li .dropdown-item:hover,.vs-dropdown .dropdown-menu li .dropdown-item.active,.vs-dropdown .dropdown-menu li .dropdown-item:active{color:#1f49d6;background-color:#d6e5ff;outline:0}.vs-dropdown .dropdown-menu li .dropdown-item:focus{outline:0;color:#1f49d6;box-shadow:0 0 0 2px #3369ff inset}.vs-dropdown .btn-content{display:inline-block}.vs-dropdown--fallback{display:none}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|