@operato/board 1.0.0-beta.25 → 1.0.0-beta.28

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": "@operato/board",
3
- "version": "1.0.0-beta.25",
3
+ "version": "1.0.0-beta.28",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "license": "MIT",
@@ -49,17 +49,17 @@
49
49
  "storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
50
50
  },
51
51
  "dependencies": {
52
- "@operato/app": "^1.0.0-beta.25",
53
- "@operato/data-grist": "^1.0.0-beta.25",
54
- "@operato/font": "^1.0.0-beta.25",
55
- "@operato/graphql": "^1.0.0-beta.25",
56
- "@operato/i18n": "^1.0.0-beta.25",
57
- "@operato/input": "^1.0.0-beta.25",
58
- "@operato/markdown": "^1.0.0-beta.25",
59
- "@operato/popup": "^1.0.0-beta.25",
60
- "@operato/property-editor": "^1.0.0-beta.25",
61
- "@operato/styles": "^1.0.0-beta.25",
62
- "@operato/utils": "^1.0.0-beta.25",
52
+ "@operato/app": "^1.0.0-beta.28",
53
+ "@operato/data-grist": "^1.0.0-beta.28",
54
+ "@operato/font": "^1.0.0-beta.28",
55
+ "@operato/graphql": "^1.0.0-beta.28",
56
+ "@operato/i18n": "^1.0.0-beta.28",
57
+ "@operato/input": "^1.0.0-beta.28",
58
+ "@operato/markdown": "^1.0.0-beta.28",
59
+ "@operato/popup": "^1.0.0-beta.28",
60
+ "@operato/property-editor": "^1.0.0-beta.28",
61
+ "@operato/styles": "^1.0.0-beta.28",
62
+ "@operato/utils": "^1.0.0-beta.28",
63
63
  "@polymer/paper-dropdown-menu": "^3.2.0",
64
64
  "@types/file-saver": "^2.0.4",
65
65
  "@types/sortablejs": "^1.10.7",
@@ -108,5 +108,5 @@
108
108
  "prettier --write"
109
109
  ]
110
110
  },
111
- "gitHead": "094f79189880b83c1e638c7b7fa0afba1c384ee8"
111
+ "gitHead": "fe4faf94a359db829727982338993b558b36df2f"
112
112
  }
@@ -29,6 +29,7 @@ class PropertySidebar extends LitElement {
29
29
  flex-direction: column;
30
30
  background-color: var(--property-sidebar-background-color);
31
31
  user-select: none;
32
+ --input-padding: var(--padding-narrow);
32
33
  }
33
34
 
34
35
  [tab] {
@@ -361,7 +361,7 @@ class BoardList extends LitElement {
361
361
  filters: this.groupId
362
362
  ? [
363
363
  {
364
- name: 'group_id',
364
+ name: 'groupId',
365
365
  operator: 'eq',
366
366
  value: this.groupId
367
367
  }