@sepveneto/free-dom 0.12.8 → 0.13.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.css CHANGED
@@ -1,4 +1,4 @@
1
- /* ../../../../../../../tmp/tmp-1892-5ve31MJnzF0P/core/src/style/index.css */
1
+ /* ../../../../../../../tmp/tmp-1977-NygZwM7Ddozs/core/src/style/index.css */
2
2
  :root {
3
3
  --vv-free-dom--theme: rgb(64, 137, 239);
4
4
  --vv-free-dom--line: var(--vv-free-dom--theme);
@@ -48,6 +48,8 @@
48
48
  .vv-free-dom--scene {
49
49
  position: relative;
50
50
  box-sizing: content-box;
51
+ width: 100%;
52
+ height: 100%;
51
53
  }
52
54
  .vv-grid-layout {
53
55
  position: relative;
package/dist/index.d.ts CHANGED
@@ -105,6 +105,10 @@ declare const FreeScene: vue.DefineComponent<vue.ExtractPropTypes<{
105
105
  type: NumberConstructor;
106
106
  default: number;
107
107
  };
108
+ autoExpand: vue.PropType<boolean | {
109
+ width?: boolean;
110
+ height?: boolean;
111
+ }>;
108
112
  manualDiff: BooleanConstructor;
109
113
  showLine: {
110
114
  type: BooleanConstructor;
@@ -160,11 +164,19 @@ declare const FreeScene: vue.DefineComponent<vue.ExtractPropTypes<{
160
164
  lastOperate: vue.ComputedRef<any>;
161
165
  push: (operate: any) => void;
162
166
  };
167
+ wrapStyle: vue.ComputedRef<{
168
+ height: string;
169
+ width: string;
170
+ }>;
163
171
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("batch-select" | "drop")[], "batch-select" | "drop", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
164
172
  diff: {
165
173
  type: NumberConstructor;
166
174
  default: number;
167
175
  };
176
+ autoExpand: vue.PropType<boolean | {
177
+ width?: boolean;
178
+ height?: boolean;
179
+ }>;
168
180
  manualDiff: BooleanConstructor;
169
181
  showLine: {
170
182
  type: BooleanConstructor;