pdap-design-system 2.2.1 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +16 -2
- package/dist/config/index.d.ts +56 -2
- package/dist/index.cjs +3 -3
- package/dist/{src/index.d.ts → index.d.ts} +1 -1
- package/dist/index.js +219 -222
- package/package.json +8 -3
- package/dist/tailwind.config.d.ts +0 -2
- /package/dist/{src/components → components}/Button/PdapButton.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Button/index.d.ts +0 -0
- /package/dist/{src/components → components}/Button/types.d.ts +0 -0
- /package/dist/{src/components → components}/FlexContainer/FlexContainer.vue.d.ts +0 -0
- /package/dist/{src/components → components}/FlexContainer/index.d.ts +0 -0
- /package/dist/{src/components → components}/FlexContainer/types.d.ts +0 -0
- /package/dist/{src/components → components}/Footer/PdapFooter.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Footer/index.d.ts +0 -0
- /package/dist/{src/components → components}/Footer/types.d.ts +0 -0
- /package/dist/{src/components → components}/Form/PdapForm.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Form/index.d.ts +0 -0
- /package/dist/{src/components → components}/Form/types.d.ts +0 -0
- /package/dist/{src/components → components}/GridContainer/GridContainer.vue.d.ts +0 -0
- /package/dist/{src/components → components}/GridContainer/index.d.ts +0 -0
- /package/dist/{src/components → components}/GridContainer/types.d.ts +0 -0
- /package/dist/{src/components → components}/GridItem/GridItem.vue.d.ts +0 -0
- /package/dist/{src/components → components}/GridItem/index.d.ts +0 -0
- /package/dist/{src/components → components}/GridItem/types.d.ts +0 -0
- /package/dist/{src/components → components}/Header/PdapHeader.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Header/index.d.ts +0 -0
- /package/dist/{src/components → components}/Header/types.d.ts +0 -0
- /package/dist/{src/components → components}/Input/PdapInput.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Input/index.d.ts +0 -0
- /package/dist/{src/components → components}/Input/types.d.ts +0 -0
- /package/dist/{src/components → components}/Input/utils.d.ts +0 -0
- /package/dist/{src/components → components}/Nav/PdapNav.vue.d.ts +0 -0
- /package/dist/{src/components → components}/Nav/index.d.ts +0 -0
- /package/dist/{src/components → components}/Nav/types.d.ts +0 -0
- /package/dist/{src/components → components}/QuickSearchForm/QuickSearchForm.vue.d.ts +0 -0
- /package/dist/{src/components → components}/QuickSearchForm/index.d.ts +0 -0
- /package/dist/{src/components → components}/TileIcon/TileIcon.vue.d.ts +0 -0
- /package/dist/{src/components → components}/TileIcon/index.d.ts +0 -0
- /package/dist/{src/components → components}/TileIcon/types.d.ts +0 -0
- /package/dist/{src/components → components}/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/vuelidate.d.ts +0 -0
- /package/dist/{src/utils → utils}/vuelidate.test.d.ts +0 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pdap-design-system",
|
3
|
-
"version": "2.2.
|
3
|
+
"version": "2.2.2",
|
4
4
|
"description": "Global styles for PDAP apps",
|
5
5
|
"author": "Police Data Accessibility Project, Inc.",
|
6
6
|
"license": "ISC",
|
@@ -46,6 +46,7 @@
|
|
46
46
|
"devDependencies": {
|
47
47
|
"@commitlint/cli": "^18.4.3",
|
48
48
|
"@commitlint/config-conventional": "^18.4.3",
|
49
|
+
"@pdap-design-system/eslint-config": "^1.0.0",
|
49
50
|
"@semantic-release/changelog": "^6.0.3",
|
50
51
|
"@semantic-release/git": "^10.0.1",
|
51
52
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
@@ -107,15 +108,19 @@
|
|
107
108
|
"lint:es": "eslint src --ext .ts .",
|
108
109
|
"lint:ts": "vue-tsc",
|
109
110
|
"postbuild": "run-p clean:test && rimraf dist/{config,utils}",
|
111
|
+
"posttest": "npm run badges:coverage",
|
110
112
|
"prepare": "husky install",
|
111
|
-
"test": "vitest --dom --run --coverage
|
113
|
+
"test": "vitest --dom --run --coverage",
|
112
114
|
"test:changed": "npm run test -- --changed",
|
113
|
-
"test:ci": "test --
|
115
|
+
"test:ci": "npm run test -- --silent",
|
114
116
|
"typecheck": "vue-tsc",
|
115
117
|
"badges": "run-p badges:*",
|
116
118
|
"badges:build": "node ./tools/generateBuildBadge.js",
|
117
119
|
"badges:coverage": "node ./tools/generateCoverageBadge.js"
|
118
120
|
},
|
121
|
+
"workspaces": [
|
122
|
+
"eslint-config"
|
123
|
+
],
|
119
124
|
"bin": {
|
120
125
|
"pdap-design-system": "./bin/pdap-design-system-cli.js"
|
121
126
|
},
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|