@dialpad/dialtone 6.32.2 → 6.33.3

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.
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" aria-label="Router" class="d-svg d-svg--system d-svg__router" width="20" height="20" viewBox="0 0 20 20"><path d="M19.111 3.222L20 2.333C18.444.778 16.444 0 14.444 0s-4 .778-5.555 2.333l.889.89c1.333-1.223 3-1.89 4.666-1.89 1.667 0 3.334.667 4.667 1.89zm-1 .89c-1-1-2.333-1.556-3.667-1.556-1.333 0-2.666.555-3.666 1.555l.889.889c.777-.778 1.777-1.111 2.777-1.111 1 0 2 .333 2.778 1.111l.89-.889zm-.333 7h-2.222V6.666h-2.223v4.444H2.223C1 11.111 0 12.111 0 13.333v4.445C0 19 1 20 2.222 20h15.556C19 20 20 19 20 17.778v-4.445c0-1.222-1-2.222-2.222-2.222zM5.556 16.666H3.333v-2.223h2.223v2.223zm3.888 0H7.222v-2.223h2.222v2.223zm3.89 0H11.11v-2.223h2.222v2.223z" fill="#0D0C0F"/></svg>
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <svg aria-hidden="true" aria-label="Router" class="d-svg d-svg--system d-svg__router" width="20" height="20" viewBox="0 0 20 20"><path d="M19.111 3.222L20 2.333C18.444.778 16.444 0 14.444 0s-4 .778-5.555 2.333l.889.89c1.333-1.223 3-1.89 4.666-1.89 1.667 0 3.334.667 4.667 1.89zm-1 .89c-1-1-2.333-1.556-3.667-1.556-1.333 0-2.666.555-3.666 1.555l.889.889c.777-.778 1.777-1.111 2.777-1.111 1 0 2 .333 2.778 1.111l.89-.889zm-.333 7h-2.222V6.666h-2.223v4.444H2.223C1 11.111 0 12.111 0 13.333v4.445C0 19 1 20 2.222 20h15.556C19 20 20 19 20 17.778v-4.445c0-1.222-1-2.222-2.222-2.222zM5.556 16.666H3.333v-2.223h2.223v2.223zm3.888 0H7.222v-2.223h2.222v2.223zm3.89 0H11.11v-2.223h2.222v2.223z" fill="#0D0C0F"/></svg>
3
+ </template>
package/package.json CHANGED
@@ -1,40 +1,44 @@
1
1
  {
2
2
  "name": "@dialpad/dialtone",
3
+ "version": "6.33.3",
3
4
  "description": "The design system for Dialpad and UberConference",
4
- "repository": "git@github.com:dialpad/dialtone.git",
5
- "version": "6.32.2",
6
5
  "author": "Joshua Hynes",
7
- "files": [
8
- "lib",
9
- "dist"
10
- ],
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "unpkg": "dist/css/dialtone.min.css",
15
6
  "scripts": {
16
7
  "build": "gulp",
8
+ "lint": "run-s lint:library lint:docs lint:code",
9
+ "lint:fix": "run-s lint-staged:library lint-staged:docs lint-staged:code",
17
10
  "build:docsite": "gulp docsite",
18
- "start": "gulp watch",
11
+ "lesshint": "npx lesshint 'lib/build/less/utilities'",
12
+ "lint-staged:code": "npm run lint:code -- --fix",
13
+ "lint-staged:docs": "npm run lint:docs -- --fix",
14
+ "lint-staged:library": "npm run stylelint -- --fix",
15
+ "lint:code": "eslint '**/*.{js,vue}'",
16
+ "lint:docs": "markdownlint 'docs/**/*.md'",
17
+ "lint:library": "run-s stylelint lesshint",
18
+ "prepare": "husky install",
19
19
  "prepublishOnly": "npm run build",
20
20
  "release": "semantic-release --no-ci --extends ./release-local.config.js",
21
- "prepare": "husky install",
22
- "stylelint": "npx stylelint 'lib/build/less/**/*.{less,css}'",
23
- "lesshint": "npx lesshint 'lib/build/less/utilities'",
24
- "lint": "run-s stylelint lesshint",
25
- "lint:fix": "npx stylelint 'lib/build/less/**/*.{less,css}' --fix"
21
+ "start": "gulp watch",
22
+ "stylelint": "npx stylelint 'lib/build/less/**/*.{less,css}'"
26
23
  },
27
- "license": "MIT",
28
- "browserslist": [
29
- "last 1 version",
30
- "maintained node versions"
24
+ "unpkg": "dist/css/dialtone.min.css",
25
+ "files": [
26
+ "lib",
27
+ "dist"
31
28
  ],
29
+ "dependencies": {
30
+ "@docsearch/js": "^3.0.0",
31
+ "vue-live": "^2.0.1"
32
+ },
32
33
  "devDependencies": {
33
34
  "@commitlint/cli": "^15.0.0",
34
35
  "@commitlint/config-conventional": "^15.0.0",
36
+ "@dialpad/dialtone-vue": "^3.4.0",
35
37
  "@dialpad/postcss-responsive-variations": "^1.1.2",
36
38
  "@semantic-release/changelog": "^6.0.0",
37
39
  "@semantic-release/git": "^10.0.0",
40
+ "@vue/cli-plugin-eslint": "~5.0.4",
41
+ "@vue/cli-service": "~5.0.4",
38
42
  "@vuepress/plugin-active-header-links": "^2.0.0-beta.48",
39
43
  "@vuepress/plugin-google-analytics": "^2.0.0-beta.48",
40
44
  "@vuepress/plugin-toc": "^2.0.0-beta.48",
@@ -42,6 +46,14 @@
42
46
  "child_process": "^1.0.2",
43
47
  "cssnano": "^5.1.7",
44
48
  "del": "^5.1.0",
49
+ "eslint": "^8.18.0",
50
+ "eslint-config-semistandard": "^16.0.0",
51
+ "eslint-config-standard": "^17.0.0",
52
+ "eslint-plugin-import": "^2.26.0",
53
+ "eslint-plugin-node": "^11.1.0",
54
+ "eslint-plugin-promise": "^6.0.0",
55
+ "eslint-plugin-vue": "^9.1.1",
56
+ "eslint-plugin-vuejs-accessibility": "^1.2.0",
45
57
  "gulp": "^4.0.2",
46
58
  "gulp-cached": "^1.1.1",
47
59
  "gulp-concat": "^2.6.1",
@@ -53,6 +65,9 @@
53
65
  "gulp-svgmin": "^2.2.0",
54
66
  "husky": "^7.0.4",
55
67
  "lesshint": "^6.3.7",
68
+ "lint-staged": "^13.0.3",
69
+ "markdownlint": "^0.26.0",
70
+ "markdownlint-cli": "^0.31.1",
56
71
  "npm-run-all": "^4.1.5",
57
72
  "path": "^0.12.7",
58
73
  "postcss-focus-visible": "^6.0.3",
@@ -69,7 +84,16 @@
69
84
  "vuepress": "^2.0.0-beta.48",
70
85
  "yargs": "^17.3.1"
71
86
  },
72
- "dependencies": {
73
- "@docsearch/js": "^3.0.0"
74
- }
87
+ "browserslist": [
88
+ "last 1 version",
89
+ "maintained node versions"
90
+ ],
91
+ "gitHooks": {
92
+ "pre-commit": "lint-staged"
93
+ },
94
+ "license": "MIT",
95
+ "publishConfig": {
96
+ "access": "public"
97
+ },
98
+ "repository": "git@github.com:dialpad/dialtone.git"
75
99
  }
File without changes