voa-ds-core 1.0.47 → 1.0.49
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.
|
@@ -31,3 +31,7 @@ export interface SetPlatformOptions {
|
|
|
31
31
|
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
32
32
|
}
|
|
33
33
|
export declare const setPlatformOptions: (opts: SetPlatformOptions) => void;
|
|
34
|
+
|
|
35
|
+
// Re-export types for Angular/React/Vue wrappers
|
|
36
|
+
export { Components, JSX } from '../types/components';
|
|
37
|
+
export { CheckboxState } from '../types/components/voa-checkbox/voa-checkbox';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "voa-ds-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.49",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
|
-
"build": "stencil build --prod --docs && node convert-markdown-to-mdx.js && node scripts/build-styles.js",
|
|
66
|
+
"build": "stencil build --prod --docs && node convert-markdown-to-mdx.js && node scripts/build-styles.js && node scripts/fix-custom-elements-types.js",
|
|
67
67
|
"dev": "stencil build --watch --serve"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|