cic-kit 0.0.32 → 0.0.33
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/dist/index.cjs +49 -49
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +2560 -2559
- package/docs/Modal.md +2 -2
- package/package.json +3 -2
package/docs/Modal.md
CHANGED
|
@@ -36,8 +36,8 @@ const open = ref(false);
|
|
|
36
36
|
<template>
|
|
37
37
|
<button class="btn btn-primary" @click="open = true">Apri</button>
|
|
38
38
|
|
|
39
|
-
<
|
|
39
|
+
<Moda v-model="open" title="Titolo" cancelText="Annulla" okText="OK">
|
|
40
40
|
Contenuto della modal
|
|
41
|
-
</
|
|
41
|
+
</Moda>
|
|
42
42
|
</template>
|
|
43
43
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cic-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -36,8 +36,9 @@
|
|
|
36
36
|
"pack": "npm run build && npm pack",
|
|
37
37
|
"pack-bump": "npm run build && npx cic-bump && npm pack",
|
|
38
38
|
"only-deploy": "npm publish --access public",
|
|
39
|
+
"deploy-codex": "npm run build && npm pack && npm run only-deploy",
|
|
39
40
|
"deploy": "npm run build && npm pack && npx cic-push && npm run only-deploy",
|
|
40
|
-
"deploy-bump": "npm run build && npx cic-bump && npm pack && npx cic-push",
|
|
41
|
+
"deploy-bump": "npm run build && npx cic-bump && npm pack && npx cic-push && npm run only-deploy",
|
|
41
42
|
"start": "vite --config vite.demo.config.ts",
|
|
42
43
|
"build:demo": "vite build --config vite.demo.config.ts",
|
|
43
44
|
"preview:demo": "vite preview --config vite.demo.config.ts",
|