@leaflink/stash 44.6.0 → 44.7.0
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/README.md +106 -74
- package/dist/FileUpload.js.map +1 -1
- package/dist/Image.js +114 -133
- package/dist/Image.js.map +1 -1
- package/dist/Image.vue.d.ts +28 -31
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/useValidation.d.ts +32 -8
- package/dist/useValidation.js +162 -117
- package/dist/useValidation.js.map +1 -1
- package/dist/utils/storage.js +22 -22
- package/dist/utils/storage.js.map +1 -1
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leaflink/stash",
|
|
3
|
-
"version": "44.
|
|
3
|
+
"version": "44.7.0",
|
|
4
4
|
"description": "LeafLink's design system.",
|
|
5
5
|
"homepage": "https://stash.leaflink.com",
|
|
6
6
|
"main": "./dist/index.ts",
|
|
@@ -92,7 +92,8 @@
|
|
|
92
92
|
"docs:spritesheet": "svg-sprite --symbol --symbol-dest=docs/public/ --symbol-sprite=spritesheet.svg --svg-namespace-ids=false assets/icons/*.svg",
|
|
93
93
|
"docs": "npm run docs:spritesheet && npm run docs:illustrations && npm run docs:logos && vitepress dev docs",
|
|
94
94
|
"docs:build": "npm run docs:spritesheet && npm run docs:illustrations && npm run docs:logos && vitepress build docs",
|
|
95
|
-
"docs:preview": "vitepress preview docs"
|
|
95
|
+
"docs:preview": "vitepress preview docs",
|
|
96
|
+
"prepare": "husky install"
|
|
96
97
|
},
|
|
97
98
|
"dependencies": {
|
|
98
99
|
"@floating-ui/vue": "^1.0.2",
|
|
@@ -138,9 +139,12 @@
|
|
|
138
139
|
"@vue/test-utils": "^2.4.1",
|
|
139
140
|
"autoprefixer": "^9.7.4",
|
|
140
141
|
"babel-core": "^7.0.0-bridge.0",
|
|
142
|
+
"doctoc": "^2.2.1",
|
|
141
143
|
"eslint": "^8.41.0",
|
|
142
144
|
"eslint-config-leaflink": "^3.3.0",
|
|
145
|
+
"husky": "^9.0.11",
|
|
143
146
|
"jsdom": "^22.1.0",
|
|
147
|
+
"lint-staged": "^15.2.2",
|
|
144
148
|
"postcss": "^8.4.35",
|
|
145
149
|
"postcss-html": "^1.5.0",
|
|
146
150
|
"postcss-prefix-selector": "^1.16.0",
|
|
@@ -177,5 +181,11 @@
|
|
|
177
181
|
"typescript": {
|
|
178
182
|
"optional": true
|
|
179
183
|
}
|
|
184
|
+
},
|
|
185
|
+
"lint-staged": {
|
|
186
|
+
"{README,CONTRIBUTING,ARCHITECTURE}.md": [
|
|
187
|
+
"prettier --write --config ./node_modules/eslint-config-leaflink/prettier.js",
|
|
188
|
+
"doctoc --title '## Table of Contents'"
|
|
189
|
+
]
|
|
180
190
|
}
|
|
181
191
|
}
|