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.
- package/dist/index.d.ts +3 -1
- 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?:
|
|
250
|
+
props?: {
|
|
251
|
+
widthRatio?: number;
|
|
252
|
+
};
|
|
251
253
|
slots: {
|
|
252
254
|
default: Component[];
|
|
253
255
|
};
|