@pdfme/schemas 5.5.10-dev.125 → 5.5.10-dev.127

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/schemas",
3
- "version": "5.5.10-dev.125",
3
+ "version": "5.5.10-dev.127",
4
4
  "description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
5
5
  "keywords": [
6
6
  "pdf",
@@ -139,13 +139,13 @@ const getPropPanelSchema = (type: 'rectangle' | 'ellipse') => ({
139
139
  },
140
140
  });
141
141
 
142
- export const rectangle = {
142
+ export const rectangle: Plugin<ShapeSchema> = {
143
143
  ...shape,
144
144
  propPanel: getPropPanelSchema('rectangle'),
145
145
  icon: createSvgStr(Square),
146
146
  };
147
147
 
148
- export const ellipse = {
148
+ export const ellipse: Plugin<ShapeSchema> = {
149
149
  ...shape,
150
150
  propPanel: getPropPanelSchema('ellipse'),
151
151
  icon: createSvgStr(Circle),