@vaadin/component-base 24.7.0-beta1 → 24.7.0-rc2

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/component-base",
3
- "version": "24.7.0-beta1",
3
+ "version": "24.7.0-rc2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,10 +38,10 @@
38
38
  "lit": "^3.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@vaadin/chai-plugins": "24.7.0-beta1",
42
- "@vaadin/test-runner-commands": "24.7.0-beta1",
41
+ "@vaadin/chai-plugins": "24.7.0-rc2",
42
+ "@vaadin/test-runner-commands": "24.7.0-rc2",
43
43
  "@vaadin/testing-helpers": "^1.1.0",
44
44
  "sinon": "^18.0.0"
45
45
  },
46
- "gitHead": "4043c518ef9b915cde612d2907ddc9bd10e5af17"
46
+ "gitHead": "dc992fe0d77816faf865fdf7f809beb6a45759ec"
47
47
  }
package/src/define.js CHANGED
@@ -13,7 +13,7 @@ function dashToCamelCase(dash) {
13
13
 
14
14
  const experimentalMap = {};
15
15
 
16
- export function defineCustomElement(CustomElement, version = '24.7.0-beta1') {
16
+ export function defineCustomElement(CustomElement, version = '24.7.0-rc2') {
17
17
  Object.defineProperty(CustomElement, 'version', {
18
18
  get() {
19
19
  return version;
@@ -5,17 +5,6 @@
5
5
  */
6
6
  import type { Constructor } from '@open-wc/dedupe-mixin';
7
7
 
8
- /**
9
- * Recursively makes all properties of an i18n object optional.
10
- *
11
- * For internal use only.
12
- */
13
- export type PartialI18n<T> = T extends object
14
- ? {
15
- [P in keyof T]?: PartialI18n<T[P]>;
16
- }
17
- : T;
18
-
19
8
  /**
20
9
  * A mixin that allows to set partial I18N properties.
21
10
  */