@xfers/design-system 8.0.0-dev.7a712dceac → 8.0.0-dev.894f70ea94
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/cjs/index.js +188 -181
- package/cjs/index.js.map +1 -1
- package/dist/components/Sidebar/CompanyProfile.js +45 -7
- package/dist/components/Sidebar/CompanyProfile.js.map +1 -1
- package/dist/components/Sidebar/Sidebar.js +3 -3
- package/dist/components/Sidebar/Sidebar.js.map +1 -1
- package/dist/components/Sidebar/SidebarNavItem.js +15 -2
- package/dist/components/Sidebar/SidebarNavItem.js.map +1 -1
- package/dist/components/Sidebar/dropdownStyles.js +10 -5
- package/dist/components/Sidebar/dropdownStyles.js.map +1 -1
- package/dist/components/Sidebar/styles.js +15 -6
- package/dist/components/Sidebar/styles.js.map +1 -1
- package/dist/types/components/Sidebar/SidebarNavItem.d.ts +7 -1
- package/dist/types/components/Sidebar/dropdownStyles.d.ts +1 -0
- package/es/index.js +387 -380
- package/es/index.js.map +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xfers/design-system",
|
|
3
|
-
"version": "8.0.0-dev.
|
|
3
|
+
"version": "8.0.0-dev.894f70ea94",
|
|
4
4
|
"description": "StraitsX design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xfers",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
|
|
28
|
-
"lint
|
|
29
|
-
"lint
|
|
28
|
+
"lint:ci": "eslint --cache ./src --ext .jsx,.ts,.tsx",
|
|
29
|
+
"lint:ci:changed": "eslint $@ --cache",
|
|
30
30
|
"clean": "rimraf dist cjs es",
|
|
31
31
|
"prebuild": "yarn clean",
|
|
32
32
|
"build:prod": "tsc --module commonjs && rollup -c rollup.config.js && rimraf node_modules/react node_modules/react-dom",
|
|
@@ -97,7 +97,6 @@
|
|
|
97
97
|
"material-symbols": "0.38.0",
|
|
98
98
|
"moment": "2.24.0",
|
|
99
99
|
"postcss": "8.2.15",
|
|
100
|
-
"postcss-cssnext": "3.1.0",
|
|
101
100
|
"postcss-nested": "5.0.5",
|
|
102
101
|
"postcss-preset-env": "6.7.0",
|
|
103
102
|
"postcss-simple-vars": "6.0.3",
|