@vaadin/crud 23.0.6 → 23.1.0-alpha3

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.6",
3
+ "version": "23.1.0-alpha3",
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.6",
39
- "@vaadin/component-base": "^23.0.6",
40
- "@vaadin/confirm-dialog": "^23.0.6",
41
- "@vaadin/dialog": "^23.0.6",
42
- "@vaadin/form-layout": "^23.0.6",
43
- "@vaadin/grid": "^23.0.6",
44
- "@vaadin/text-field": "^23.0.6",
38
+ "@vaadin/button": "23.1.0-alpha3",
39
+ "@vaadin/component-base": "23.1.0-alpha3",
40
+ "@vaadin/confirm-dialog": "23.1.0-alpha3",
41
+ "@vaadin/dialog": "23.1.0-alpha3",
42
+ "@vaadin/form-layout": "23.1.0-alpha3",
43
+ "@vaadin/grid": "23.1.0-alpha3",
44
+ "@vaadin/text-field": "23.1.0-alpha3",
45
45
  "@vaadin/vaadin-license-checker": "^2.1.0",
46
- "@vaadin/vaadin-lumo-styles": "^23.0.6",
47
- "@vaadin/vaadin-material-styles": "^23.0.6",
48
- "@vaadin/vaadin-themable-mixin": "^23.0.6"
46
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha3",
47
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha3",
48
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@esm-bundle/chai": "^4.3.4",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
- "sinon": "^9.2.1"
53
+ "sinon": "^13.0.2"
54
54
  },
55
- "gitHead": "82ca8522e24a63343fb28bcb4c686e55d25c8858"
55
+ "gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85"
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]]"
@@ -236,7 +236,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
236
236
  <div id="main">
237
237
  <slot name="grid">
238
238
  <vaadin-crud-grid
239
- theme$="[[theme]]"
239
+ theme$="[[_theme]]"
240
240
  id="grid"
241
241
  include="[[include]]"
242
242
  exclude="[[exclude]]"
@@ -276,12 +276,12 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
276
276
  aria-label="[[__editorAriaLabel]]"
277
277
  no-close-on-outside-click="[[__isDirty]]"
278
278
  no-close-on-esc="[[__isDirty]]"
279
- theme$="[[theme]]"
279
+ theme$="[[_theme]]"
280
280
  on-opened-changed="__onDialogOpened"
281
281
  ></vaadin-crud-dialog>
282
282
 
283
283
  <vaadin-confirm-dialog
284
- theme$="[[theme]]"
284
+ theme$="[[_theme]]"
285
285
  id="confirmCancel"
286
286
  on-confirm="__confirmCancel"
287
287
  cancel
@@ -293,7 +293,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
293
293
  ></vaadin-confirm-dialog>
294
294
 
295
295
  <vaadin-confirm-dialog
296
- theme$="[[theme]]"
296
+ theme$="[[_theme]]"
297
297
  id="confirmDelete"
298
298
  on-confirm="__confirmDelete"
299
299
  cancel
@@ -602,7 +602,7 @@ class Crud extends SlotMixin(ControllerMixin(ElementMixin(ThemableMixin(PolymerE
602
602
  static get observers() {
603
603
  return [
604
604
  '__headerPropsChanged(_headerNode, __isNew, i18n.newItem, i18n.editItem)',
605
- '__formPropsChanged(_form, theme, include, exclude)',
605
+ '__formPropsChanged(_form, _theme, include, exclude)',
606
606
  '__i18nChanged(i18n, _grid)',
607
607
  '__editOnClickChanged(editOnClick, _grid)',
608
608
  '__saveButtonPropsChanged(_saveButton, i18n.saveItem, __isDirty)',