@vaadin/field-highlighter 25.3.0 → 25.4.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/field-highlighter",
3
- "version": "25.3.0",
3
+ "version": "25.4.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,33 +32,33 @@
32
32
  "field"
33
33
  ],
34
34
  "dependencies": {
35
- "@vaadin/a11y-base": "~25.3.0",
36
- "@vaadin/component-base": "~25.3.0",
37
- "@vaadin/overlay": "~25.3.0",
38
- "@vaadin/popover": "~25.3.0",
39
- "@vaadin/tooltip": "~25.3.0",
40
- "@vaadin/vaadin-themable-mixin": "~25.3.0",
35
+ "@vaadin/a11y-base": "25.4.0-alpha1",
36
+ "@vaadin/component-base": "25.4.0-alpha1",
37
+ "@vaadin/overlay": "25.4.0-alpha1",
38
+ "@vaadin/popover": "25.4.0-alpha1",
39
+ "@vaadin/tooltip": "25.4.0-alpha1",
40
+ "@vaadin/vaadin-themable-mixin": "25.4.0-alpha1",
41
41
  "lit": "^3.0.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@vaadin/aura": "~25.3.0",
45
- "@vaadin/chai-plugins": "~25.3.0",
46
- "@vaadin/checkbox": "~25.3.0",
47
- "@vaadin/checkbox-group": "~25.3.0",
48
- "@vaadin/custom-field": "~25.3.0",
49
- "@vaadin/date-picker": "~25.3.0",
50
- "@vaadin/date-time-picker": "~25.3.0",
51
- "@vaadin/item": "~25.3.0",
52
- "@vaadin/list-box": "~25.3.0",
53
- "@vaadin/radio-group": "~25.3.0",
54
- "@vaadin/select": "~25.3.0",
55
- "@vaadin/test-runner-commands": "~25.3.0",
44
+ "@vaadin/aura": "25.4.0-alpha1",
45
+ "@vaadin/chai-plugins": "25.4.0-alpha1",
46
+ "@vaadin/checkbox": "25.4.0-alpha1",
47
+ "@vaadin/checkbox-group": "25.4.0-alpha1",
48
+ "@vaadin/custom-field": "25.4.0-alpha1",
49
+ "@vaadin/date-picker": "25.4.0-alpha1",
50
+ "@vaadin/date-time-picker": "25.4.0-alpha1",
51
+ "@vaadin/item": "25.4.0-alpha1",
52
+ "@vaadin/list-box": "25.4.0-alpha1",
53
+ "@vaadin/radio-group": "25.4.0-alpha1",
54
+ "@vaadin/select": "25.4.0-alpha1",
55
+ "@vaadin/test-runner-commands": "25.4.0-alpha1",
56
56
  "@vaadin/testing-helpers": "^2.0.0",
57
- "@vaadin/text-area": "~25.3.0",
58
- "@vaadin/text-field": "~25.3.0",
59
- "@vaadin/time-picker": "~25.3.0",
60
- "@vaadin/vaadin-lumo-styles": "~25.3.0",
57
+ "@vaadin/text-area": "25.4.0-alpha1",
58
+ "@vaadin/text-field": "25.4.0-alpha1",
59
+ "@vaadin/time-picker": "25.4.0-alpha1",
60
+ "@vaadin/vaadin-lumo-styles": "25.4.0-alpha1",
61
61
  "sinon": "^22.0.0"
62
62
  },
63
- "gitHead": "4133747243c03bf544f6e82cc2ec9f295aaccd65"
63
+ "gitHead": "be38ec1866e96508f3f4591f95c949ef55903a34"
64
64
  }
@@ -100,9 +100,11 @@ export type AiFieldRevertEvent = CustomEvent<{ value: unknown }>;
100
100
  declare class AiFieldMarker extends I18nMixin<typeof HTMLElement, AiFieldMarkerI18n>(HTMLElement) {
101
101
  /**
102
102
  * The object used to localize this component. To change the default
103
- * localization, replace this with an object that provides all properties, or
103
+ * localization, set this to an object that provides all properties, or
104
104
  * just the individual properties you want to change.
105
105
  *
106
+ * When not set, defaults to `undefined`.
107
+ *
106
108
  * The object has the following JSON structure and default values:
107
109
  *
108
110
  * ```
@@ -124,7 +126,7 @@ declare class AiFieldMarker extends I18nMixin<typeof HTMLElement, AiFieldMarkerI
124
126
  * }
125
127
  * ```
126
128
  */
127
- i18n: AiFieldMarkerI18n;
129
+ i18n: AiFieldMarkerI18n | undefined;
128
130
 
129
131
  /**
130
132
  * A DOM node to show in the popover, between the message and the revert
@@ -430,9 +430,11 @@ class AiFieldMarker extends SlotStylesMixin(I18nMixin(DirMixin(PolylitMixin(LitE
430
430
 
431
431
  /**
432
432
  * The object used to localize this component. To change the default
433
- * localization, replace this with an object that provides all properties, or
433
+ * localization, set this to an object that provides all properties, or
434
434
  * just the individual properties you want to change.
435
435
  *
436
+ * When not set, defaults to `undefined`.
437
+ *
436
438
  * The object has the following JSON structure and default values:
437
439
  *
438
440
  * ```
@@ -454,7 +456,7 @@ class AiFieldMarker extends SlotStylesMixin(I18nMixin(DirMixin(PolylitMixin(LitE
454
456
  * }
455
457
  * ```
456
458
  *
457
- * @return {!Object}
459
+ * @type {AiFieldMarkerI18n | undefined}
458
460
  */
459
461
  get i18n() {
460
462
  return super.i18n;