@dialpad/dialtone-css 8.45.0 → 8.45.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.
- package/lib/build/less/components/input.less +4 -0
- package/lib/build/less/components/scrollbar.less +1 -1
- package/lib/build/less/utilities/colors.less +1 -94
- package/lib/dist/dialtone-default-theme.css +3386 -2461
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone.css +881 -792
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/tokens/tokens-base-dark.css +179 -103
- package/lib/dist/tokens/tokens-base-light.css +139 -83
- package/lib/dist/tokens/tokens-dp-dark.css +1194 -948
- package/lib/dist/tokens/tokens-dp-light.css +1196 -950
- package/lib/dist/tokens/tokens-expressive-dark.css +1196 -950
- package/lib/dist/tokens/tokens-expressive-light.css +1196 -950
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +1196 -950
- package/lib/dist/tokens/tokens-expressive-sm-light.css +1196 -950
- package/lib/dist/tokens/tokens-tmo-dark.css +1185 -939
- package/lib/dist/tokens/tokens-tmo-light.css +1184 -938
- package/package.json +11 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-css",
|
|
3
|
-
"version": "8.45.
|
|
3
|
+
"version": "8.45.2",
|
|
4
4
|
"description": "Dialpad's design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Dialpad",
|
|
@@ -78,7 +78,6 @@
|
|
|
78
78
|
"gulp-replace": "^1.1.4",
|
|
79
79
|
"gulp-sourcemaps": "^3.0.0",
|
|
80
80
|
"gulp-svgmin": "^4.1.0",
|
|
81
|
-
"jest": "^29.5.0",
|
|
82
81
|
"less": "^4.2.0",
|
|
83
82
|
"npm-run-all": "^4.1.5",
|
|
84
83
|
"oslllo-svg-fixer": "^2.2.0",
|
|
@@ -88,31 +87,25 @@
|
|
|
88
87
|
"precss": "^4.0.0",
|
|
89
88
|
"semantic-release": "^21.0.6",
|
|
90
89
|
"through2": "^4.0.2",
|
|
91
|
-
"tinycolor2": "^1.6.0",
|
|
92
90
|
"yargs": "^17.7.2",
|
|
93
|
-
"@dialpad/dialtone-tokens": "1.36.
|
|
91
|
+
"@dialpad/dialtone-tokens": "1.36.6",
|
|
92
|
+
"@dialpad/postcss-responsive-variations": "1.1.5"
|
|
94
93
|
},
|
|
95
94
|
"peerDependencies": {
|
|
96
95
|
"chalk": "^5.2.0",
|
|
97
96
|
"globby": "^13.1.4",
|
|
98
97
|
"inquirer": "^9.1.5"
|
|
99
98
|
},
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
}
|
|
99
|
+
"nx": {
|
|
100
|
+
"includedScripts": [
|
|
101
|
+
"lint"
|
|
102
|
+
]
|
|
106
103
|
},
|
|
107
104
|
"scripts": {
|
|
108
|
-
"
|
|
109
|
-
"lesshint": "pnpm exec lesshint 'lib/build/less/utilities'",
|
|
110
|
-
"lint": "run-s lint:library lint:code",
|
|
105
|
+
"lint": "run-s lint:code lint:library",
|
|
111
106
|
"lint:code": "eslint '**/*.{js,cjs,vue}'",
|
|
112
|
-
"lint:library": "run-s stylelint
|
|
113
|
-
"
|
|
114
|
-
"stylelint": "pnpm exec stylelint 'lib/build/less/**/*.less'"
|
|
115
|
-
"build:icons": "gulp icons",
|
|
116
|
-
"test:postcss-generator-plugin": "jest --coverage && eslint ."
|
|
107
|
+
"lint:library": "run-s lesshint stylelint",
|
|
108
|
+
"lesshint": "pnpm exec lesshint 'lib/build/less/utilities'",
|
|
109
|
+
"stylelint": "pnpm exec stylelint 'lib/build/less/**/*.less'"
|
|
117
110
|
}
|
|
118
111
|
}
|