@pontive/pontkit-core 1.0.1 → 1.1.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/catalog.json +1 -1
- package/custom-elements.json +1 -0
- package/dist/components/widgets/pont-nav-user/pont-nav-user.d.ts +6 -0
- package/dist/element-tag-map.d.ts +94 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +159 -159
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/primitives/components/ui/form/pont-form.d.ts +2 -2
- package/package.json +9 -5
|
@@ -6,7 +6,7 @@ import { PontFormField } from './pont-form-field';
|
|
|
6
6
|
import { PontFormItem } from './pont-form-item';
|
|
7
7
|
import { PontFormLabel } from './pont-form-label';
|
|
8
8
|
import { PontFormMessage } from './pont-form-message';
|
|
9
|
-
declare class PontForm extends BaseElement {
|
|
9
|
+
export declare class PontForm extends BaseElement {
|
|
10
10
|
form: FormController;
|
|
11
11
|
onSubmit: (values: any) => void;
|
|
12
12
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
@@ -15,7 +15,7 @@ declare class PontForm extends BaseElement {
|
|
|
15
15
|
private handleSubmit;
|
|
16
16
|
render(): import('../../../../../node_modules/lit-html').TemplateResult<1>;
|
|
17
17
|
}
|
|
18
|
-
export {
|
|
18
|
+
export { PontFormController, PontFormDescription, PontFormField, PontFormItem, PontFormLabel, PontFormMessage, };
|
|
19
19
|
declare global {
|
|
20
20
|
interface HTMLElementTagNameMap {
|
|
21
21
|
'pont-form-root': PontForm;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pontive/pontkit-core",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A collection of core components for Pontive",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
|
-
"catalog.json"
|
|
20
|
+
"catalog.json",
|
|
21
|
+
"custom-elements.json"
|
|
21
22
|
],
|
|
22
23
|
"sideEffects": true,
|
|
23
24
|
"scripts": {
|
|
24
25
|
"dev": "vite",
|
|
25
|
-
"build": "vite build && npm run build:css",
|
|
26
|
+
"build": "npm run build:manifest && vite build && npm run build:css",
|
|
26
27
|
"stamp:catalog": "node scripts/stamp-catalog.mjs",
|
|
27
28
|
"check:catalog": "node scripts/check-catalog.mjs",
|
|
28
29
|
"integrity": "node scripts/integrity.mjs",
|
|
@@ -36,7 +37,8 @@
|
|
|
36
37
|
"storybook": "storybook dev -p 6006",
|
|
37
38
|
"build-storybook": "storybook build",
|
|
38
39
|
"test:watch": "vitest",
|
|
39
|
-
"check:names": "node scripts/check-no-legacy-names.mjs"
|
|
40
|
+
"check:names": "node scripts/check-no-legacy-names.mjs",
|
|
41
|
+
"build:manifest": "node scripts/build-manifest.mjs"
|
|
40
42
|
},
|
|
41
43
|
"keywords": [
|
|
42
44
|
"lit",
|
|
@@ -46,6 +48,7 @@
|
|
|
46
48
|
],
|
|
47
49
|
"author": "team-saas-based",
|
|
48
50
|
"devDependencies": {
|
|
51
|
+
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
49
52
|
"@storybook/addon-docs": "^10.3.6",
|
|
50
53
|
"@storybook/web-components": "^10.3.6",
|
|
51
54
|
"@storybook/web-components-vite": "^10.3.6",
|
|
@@ -87,5 +90,6 @@
|
|
|
87
90
|
},
|
|
88
91
|
"publishConfig": {
|
|
89
92
|
"access": "public"
|
|
90
|
-
}
|
|
93
|
+
},
|
|
94
|
+
"customElements": "custom-elements.json"
|
|
91
95
|
}
|