@prioticket/design-system-react 1.1.0 → 1.2.0-beta.1

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.
@@ -0,0 +1,3 @@
1
+ import type { PdBox as PdBoxElementType } from '@prioticket/design-system-web/components/pd-box';
2
+ export declare const PdBox: any;
3
+ export type { PdBoxElementType as PdBoxElement };
@@ -0,0 +1,10 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import { PdBox as PdBoxElementClass } from '@prioticket/design-system-web/components/pd-box';
4
+ const componentConfig = {
5
+ displayName: 'PdBox',
6
+ react: React,
7
+ tagName: 'pd-box',
8
+ elementClass: PdBoxElementClass
9
+ };
10
+ export const PdBox = createComponent(componentConfig);
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export { PdBox } from './components/pd-box.js';
2
+ export type { PdBoxElement } from './components/pd-box.js';
1
3
  export { PdButton } from './components/pd-button.js';
2
4
  export type { PdButtonElement } from './components/pd-button.js';
3
5
  export { PdCard } from './components/pd-card.js';
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  // Auto-generated by scripts/generate-react-wrappers.mjs
2
+ export { PdBox } from './components/pd-box.js';
2
3
  export { PdButton } from './components/pd-button.js';
3
4
  export { PdCard } from './components/pd-card.js';
4
5
  export { PdCheckbox } from './components/pd-checkbox.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prioticket/design-system-react",
3
- "version": "1.1.0",
3
+ "version": "1.2.0-beta.1",
4
4
  "description": "React wrappers for the Prioticket Design System web components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",