jarkup-ts 0.6.0 → 0.7.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -247,7 +247,9 @@ export interface ColumnList extends BlockComponentBase<"ColumnList"> {
247
247
  export interface Column extends BlockComponentBase<"Column"> {
248
248
  type: "Column";
249
249
  id?: string;
250
- props?: undefined;
250
+ props?: {
251
+ widthRatio?: number;
252
+ };
251
253
  slots: {
252
254
  default: Component[];
253
255
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jarkup-ts",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },