@bpmn-io/form-js-playground 1.0.0-alpha.1 → 1.0.0-alpha.2

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.
@@ -59262,6 +59262,7 @@
59262
59262
  var Slot = props => {
59263
59263
  const {
59264
59264
  name,
59265
+ fillRoot = FillFragment,
59265
59266
  groupFn = _groupByGroupName,
59266
59267
  separatorFn = key => null,
59267
59268
  limit
@@ -59273,8 +59274,8 @@
59273
59274
  const cropped = d(() => limit ? filtered.slice(0, limit) : filtered, [filtered, limit]);
59274
59275
  const groups = d(() => groupFn(cropped), [cropped, groupFn]);
59275
59276
  const fillsAndSeparators = d(() => {
59276
- return buildFills(groups, FillFragment, separatorFn);
59277
- }, [groups, separatorFn]);
59277
+ return buildFills(groups, fillRoot, separatorFn);
59278
+ }, [groups, fillRoot, separatorFn]);
59278
59279
  return fillsAndSeparators;
59279
59280
  };
59280
59281
 
@@ -59483,11 +59484,16 @@
59483
59484
  }), e$1("div", {
59484
59485
  class: "fjs-palette-footer",
59485
59486
  children: e$1(Slot, {
59486
- name: "editor-palette__footer"
59487
+ name: "editor-palette__footer",
59488
+ fillRoot: FillRoot
59487
59489
  })
59488
59490
  })]
59489
59491
  });
59490
59492
  }
59493
+ const FillRoot = fill => e$1("div", {
59494
+ className: "fjs-palette-footer-fill",
59495
+ children: fill.children
59496
+ });
59491
59497
 
59492
59498
  // helpers ///////
59493
59499
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-playground",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.2",
4
4
  "description": "A form-js playground",
5
5
  "files": [
6
6
  "dist"
@@ -44,7 +44,7 @@
44
44
  "url": "https://github.com/bpmn-io"
45
45
  },
46
46
  "dependencies": {
47
- "@bpmn-io/form-js-editor": "^1.0.0-alpha.1",
47
+ "@bpmn-io/form-js-editor": "^1.0.0-alpha.2",
48
48
  "@bpmn-io/form-js-viewer": "^1.0.0-alpha.1",
49
49
  "@codemirror/autocomplete": "^6.3.4",
50
50
  "@codemirror/commands": "^6.1.2",
@@ -70,5 +70,5 @@
70
70
  "rollup-plugin-css-only": "^4.0.0",
71
71
  "style-loader": "^3.3.0"
72
72
  },
73
- "gitHead": "91e7c8d47f7304dfe634c37b1329ee81fb85aa93"
73
+ "gitHead": "5a1afb8c0cd4ab53e745f4458213de180179d24f"
74
74
  }