@mtvh/mtvh-design-system 0.0.2

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 (51) hide show
  1. package/README.md +39 -0
  2. package/dist/images/MTVH-logo.svg +18 -0
  3. package/dist/images/favicon.ico +0 -0
  4. package/dist/images/icons/aerosol.svg +5 -0
  5. package/dist/images/icons/bank-notes.svg +14 -0
  6. package/dist/images/icons/book.svg +8 -0
  7. package/dist/images/icons/border-cross.svg +5 -0
  8. package/dist/images/icons/border-info.svg +6 -0
  9. package/dist/images/icons/border-tick.svg +5 -0
  10. package/dist/images/icons/border-warning-sign.svg +6 -0
  11. package/dist/images/icons/cog-dark.svg +4 -0
  12. package/dist/images/icons/cog.svg +11 -0
  13. package/dist/images/icons/coins.svg +1 -0
  14. package/dist/images/icons/collapse.svg +4 -0
  15. package/dist/images/icons/credit-card-dark.svg +8 -0
  16. package/dist/images/icons/credit-card.svg +10 -0
  17. package/dist/images/icons/expand.svg +4 -0
  18. package/dist/images/icons/feedback-form.svg +13 -0
  19. package/dist/images/icons/fire.svg +4 -0
  20. package/dist/images/icons/info.svg +6 -0
  21. package/dist/images/icons/key.svg +5 -0
  22. package/dist/images/icons/lightbulb.svg +6 -0
  23. package/dist/images/icons/lighting-bolt.svg +4 -0
  24. package/dist/images/icons/lighting-bulb.svg +4 -0
  25. package/dist/images/icons/magnifying-glass.svg +6 -0
  26. package/dist/images/icons/measure.svg +5 -0
  27. package/dist/images/icons/page-and-cog.svg +1 -0
  28. package/dist/images/icons/paint-roller.svg +5 -0
  29. package/dist/images/icons/pen-and-paper.svg +9 -0
  30. package/dist/images/icons/pen-red.svg +5 -0
  31. package/dist/images/icons/person-magnifying-glass.svg +1 -0
  32. package/dist/images/icons/picture.svg +9 -0
  33. package/dist/images/icons/speech.svg +4 -0
  34. package/dist/images/icons/subletting.svg +19 -0
  35. package/dist/images/icons/tick-list-with-cross.svg +13 -0
  36. package/dist/images/icons/tick-list.svg +13 -0
  37. package/dist/images/icons/tools-dark.svg +4 -0
  38. package/dist/images/icons/tools.svg +6 -0
  39. package/dist/images/icons/two-people.svg +1 -0
  40. package/dist/images/icons/user.svg +7 -0
  41. package/dist/images/icons/warning-sign-purple.svg +6 -0
  42. package/dist/images/icons/warning-sign.svg +6 -0
  43. package/dist/images/icons/water.svg +5 -0
  44. package/dist/images/mtvh-cover.jpg +0 -0
  45. package/dist/images/mtvh-favicon-16x16.png +0 -0
  46. package/dist/images/mtvh-favicon-192x192.png +0 -0
  47. package/dist/images/mtvh-favicon-32x32.png +0 -0
  48. package/dist/images/mtvh-favicon-512x512.png +0 -0
  49. package/dist/images/mtvh-favicon.svg +10 -0
  50. package/dist/mtvh.min.css +1 -0
  51. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@mtvh/mtvh-design-system",
3
+ "version": "0.0.2",
4
+ "description": "MTVH design system",
5
+ "author": "MTVH",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/thames-valley-housing/mtvh-design-system.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/thames-valley-housing/mtvh-design-system/issues"
13
+ },
14
+ "main": "public/js/app.js",
15
+ "keywords": [
16
+ "mtvh",
17
+ "design",
18
+ "system"
19
+ ],
20
+ "files": [
21
+ "dist/mtvh.min.css",
22
+ "dist/images"
23
+ ],
24
+ "homepage": "https://github.com/thames-valley-housing/mtvh-design-system/#readme",
25
+ "scripts": {
26
+
27
+ "create": "hugo new",
28
+ "dev": "hugo server --disableFastRender --noHTTPCache",
29
+ "build": "hugo --minify --gc --destination dist"
30
+ },
31
+ "peerDependencies": {
32
+ "bootstrap": "5.*"
33
+ },
34
+ "devDependencies": {
35
+ "@hyas/doks-core": "^1.6.1",
36
+ "@hyas/images": "^3.2.0",
37
+ "@hyas/inline-svg": "^1.1.0",
38
+ "@hyas/seo": "^2.3.0",
39
+ "@tabler/icons": "^3.2.0",
40
+ "gethyas": "^2.4.2",
41
+ "bootstrap": "5.*",
42
+ "cross-env": "^7.0.3",
43
+ "exec-bin": "^1.0.0",
44
+ "hugo-installer": "^4.0.1",
45
+ "netlify-cms-app": "^2.15.72",
46
+ "shx": "^0.3.4"
47
+ },
48
+ "otherDependencies": {
49
+ "hugo": "0.121.1"
50
+ },
51
+ "engines": {
52
+ "node": ">=20.11.0"
53
+ }
54
+ }