sprintify-ui 0.2.1 → 0.2.4
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 +16 -0
- package/dist/sprintify-ui.es.js +2604 -2416
- package/dist/style.css +1 -1
- package/dist/types/src/components/BaseDatePicker.vue.d.ts +0 -1
- package/dist/types/src/components/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/assets/flatpickr.css +238 -0
- package/src/assets/main.css +1 -0
- package/src/components/BaseDatePicker.vue +4 -100
- package/src/components/index.ts +4 -0
- package/src/lang/en.json +1 -1
- package/src/lang/fr.json +1 -1
package/README.md
CHANGED
|
@@ -226,4 +226,20 @@ All components are globally available, you can use them without importation:
|
|
|
226
226
|
|
|
227
227
|
<script lang="ts" setup>
|
|
228
228
|
</script>
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## Commit
|
|
232
|
+
|
|
233
|
+
For your commit you must run the following code:
|
|
234
|
+
|
|
235
|
+
```
|
|
236
|
+
npm run commit
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
## Release
|
|
240
|
+
|
|
241
|
+
To release (only from main after review)
|
|
242
|
+
|
|
243
|
+
```
|
|
244
|
+
npm run release
|
|
229
245
|
```
|