@pairbo/ui-kit 0.3.30 → 0.3.31
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/src/components/editor/editor.component.d.ts +2 -0
- package/dist/src/components/editor-card-slider/editor-card-slider.component.d.ts +6 -1
- package/dist/src/components/handwritten-form/handwritten-form.component.d.ts +3 -2
- package/dist/src/components/page-manager/page-manager.component.d.ts +2 -0
- package/dist/src/components/textarea/textarea.component.d.ts +1 -0
- package/dist/src/components/type-form/type-form.component.d.ts +12 -12
- package/dist/src/components/zoomed-preview/zoomed-preview.component.d.ts +4 -0
- package/dist/src/events/events.d.ts +3 -0
- package/dist/src/events/pbo-after-drawer-closed.d.ts +6 -0
- package/dist/src/events/pbo-blur.d.ts +6 -0
- package/dist/src/events/pbo-change.d.ts +6 -0
- package/dist/src/events/pbo-close-drawer.d.ts +6 -0
- package/dist/src/events/pbo-editor-selector-change.d.ts +8 -0
- package/dist/src/events/pbo-focus.d.ts +6 -0
- package/dist/src/events/pbo-font-change.d.ts +8 -0
- package/dist/src/events/pbo-handwritten-form-change.d.ts +9 -0
- package/dist/src/events/pbo-handwritten-form-submitted.d.ts +6 -0
- package/dist/src/events/pbo-input.d.ts +6 -0
- package/dist/src/events/pbo-open-drawer.d.ts +6 -0
- package/dist/src/events/pbo-switch-editor.d.ts +9 -0
- package/dist/src/events/pbo-type-form-change.d.ts +6 -0
- package/dist/src/events/pbo-type-form-submitted.d.ts +6 -0
- package/dist/src/events/pbo_close_live_preview.d.ts +8 -0
- package/dist/src/events/pbo_edit_handwritten_form.d.ts +8 -0
- package/dist/src/events/pbo_edit_type_form.d.ts +8 -0
- package/dist/src/events/pbo_open_live_preview.d.ts +8 -0
- package/dist/src/events/pbo_toggle_free_message.d.ts +8 -0
- package/dist/src/events/pbo_toggle_is_gift.d.ts +8 -0
- package/dist/src/events/pbo_toggle_is_premium_card.d.ts +8 -0
- package/dist/src/internal/pairbo-element.d.ts +19 -1
- package/dist/src/themes/default-rem.css +4 -3
- package/dist/src/themes/default.css +4 -3
- package/dist/src/utilities/index.d.ts +7 -0
- package/dist/ui-kit.js +216 -164
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pairbo/ui-kit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.31",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"readme": "./README-NPM.md",
|
|
@@ -25,19 +25,23 @@
|
|
|
25
25
|
"npm:public-publish": "npm publish --access public",
|
|
26
26
|
"publishToNPM": "run-s npm:public-publish",
|
|
27
27
|
"npm:publish": "node ./scripts/publish-cli.js",
|
|
28
|
-
"dev:watch": "vite build --watch"
|
|
28
|
+
"dev:watch": "vite build --watch",
|
|
29
|
+
"spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress"
|
|
29
30
|
},
|
|
30
31
|
"keywords": [],
|
|
31
32
|
"author": "",
|
|
32
33
|
"license": "ISC",
|
|
33
34
|
"devDependencies": {
|
|
34
35
|
"@11ty/eleventy": "^3.0.0",
|
|
36
|
+
"@commitlint/cli": "^19.8.1",
|
|
37
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
35
38
|
"@eslint/js": "^9.20.0",
|
|
36
39
|
"@open-wc/testing": "^4.0.0",
|
|
37
40
|
"@types/mocha": "^10.0.10",
|
|
38
41
|
"@types/sinon": "^17.0.3",
|
|
39
42
|
"@typescript-eslint/eslint-plugin": "^8.24.0",
|
|
40
43
|
"@typescript-eslint/parser": "^8.24.0",
|
|
44
|
+
"cspell": "^9.1.2",
|
|
41
45
|
"eslint": "^8.57.1",
|
|
42
46
|
"eslint-config-prettier": "^10.0.1",
|
|
43
47
|
"eslint-config-standard": "^17.1.0",
|
|
@@ -64,7 +68,8 @@
|
|
|
64
68
|
"lint-staged": {
|
|
65
69
|
"*.{ts,js}": [
|
|
66
70
|
"eslint --max-warnings 0 --fix --no-warn-ignored",
|
|
67
|
-
"prettier --write"
|
|
71
|
+
"prettier --write",
|
|
72
|
+
"cspell"
|
|
68
73
|
]
|
|
69
74
|
},
|
|
70
75
|
"files": [
|