@vaadin/crud 23.0.2 → 23.1.0-alpha1

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": "@vaadin/crud",
3
- "version": "23.0.2",
3
+ "version": "23.1.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,22 +35,22 @@
35
35
  "dependencies": {
36
36
  "@open-wc/dedupe-mixin": "^1.3.0",
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "^23.0.2",
39
- "@vaadin/component-base": "^23.0.2",
40
- "@vaadin/confirm-dialog": "^23.0.2",
41
- "@vaadin/dialog": "^23.0.2",
42
- "@vaadin/form-layout": "^23.0.2",
43
- "@vaadin/grid": "^23.0.2",
44
- "@vaadin/text-field": "^23.0.2",
38
+ "@vaadin/button": "23.1.0-alpha1",
39
+ "@vaadin/component-base": "23.1.0-alpha1",
40
+ "@vaadin/confirm-dialog": "23.1.0-alpha1",
41
+ "@vaadin/dialog": "23.1.0-alpha1",
42
+ "@vaadin/form-layout": "23.1.0-alpha1",
43
+ "@vaadin/grid": "23.1.0-alpha1",
44
+ "@vaadin/text-field": "23.1.0-alpha1",
45
45
  "@vaadin/vaadin-license-checker": "^2.1.0",
46
- "@vaadin/vaadin-lumo-styles": "^23.0.2",
47
- "@vaadin/vaadin-material-styles": "^23.0.2",
48
- "@vaadin/vaadin-themable-mixin": "^23.0.2"
46
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
47
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha1",
48
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha1"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@esm-bundle/chai": "^4.3.4",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
53
  "sinon": "^9.2.1"
54
54
  },
55
- "gitHead": "a50f708dc0fe7d0cc10763f413838d71b1a0788b"
55
+ "gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
56
56
  }
@@ -108,7 +108,7 @@ class CrudDialog extends Dialog {
108
108
  on-opened-changed="_onOverlayOpened"
109
109
  on-mousedown="_bringOverlayToFront"
110
110
  on-touchstart="_bringOverlayToFront"
111
- theme$="[[theme]]"
111
+ theme$="[[_theme]]"
112
112
  modeless="[[modeless]]"
113
113
  with-backdrop="[[!modeless]]"
114
114
  resizable$="[[resizable]]"
@@ -242,7 +242,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
242
242
  <div id="main">
243
243
  <slot name="grid">
244
244
  <vaadin-crud-grid
245
- theme$="[[theme]]"
245
+ theme$="[[_theme]]"
246
246
  id="grid"
247
247
  include="[[include]]"
248
248
  exclude="[[exclude]]"
@@ -282,12 +282,12 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
282
282
  aria-label="[[__editorAriaLabel]]"
283
283
  no-close-on-outside-click="[[__isDirty]]"
284
284
  no-close-on-esc="[[__isDirty]]"
285
- theme$="[[theme]]"
285
+ theme$="[[_theme]]"
286
286
  on-opened-changed="__onDialogOpened"
287
287
  ></vaadin-crud-dialog>
288
288
 
289
289
  <vaadin-confirm-dialog
290
- theme$="[[theme]]"
290
+ theme$="[[_theme]]"
291
291
  id="confirmCancel"
292
292
  on-confirm="__confirmCancel"
293
293
  cancel
@@ -299,7 +299,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
299
299
  ></vaadin-confirm-dialog>
300
300
 
301
301
  <vaadin-confirm-dialog
302
- theme$="[[theme]]"
302
+ theme$="[[_theme]]"
303
303
  id="confirmDelete"
304
304
  on-confirm="__confirmDelete"
305
305
  cancel
@@ -608,7 +608,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
608
608
  static get observers() {
609
609
  return [
610
610
  '__headerNodeChanged(_headerNode, __isNew, i18n.newItem, i18n.editItem)',
611
- '__formChanged(_form, theme, include, exclude)',
611
+ '__formChanged(_form, _theme, include, exclude)',
612
612
  '__onI18Change(i18n, _grid)',
613
613
  '__onEditOnClickChange(editOnClick, _grid)',
614
614
  '__hostPropsChanged(' +