@openclaw/diffs 2026.6.5 → 2026.6.6-beta.2

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.
@@ -89,6 +89,9 @@ export interface Schema {
89
89
  * Object mapping properties to info.
90
90
  */
91
91
  property: Record<string, Info>
92
+ /**
93
+ * Space of the schema.
94
+ */
92
95
  space: Space | undefined
93
96
  }
94
97
 
@@ -1 +1 @@
1
- {"version":3,"file":"html.d.ts","sourceRoot":"","sources":["html.js"],"names":[],"mappings":"AAWA,qDAsTE"}
1
+ {"version":3,"file":"html.d.ts","sourceRoot":"","sources":["html.js"],"names":[],"mappings":"AAWA,qDAgUE"}
@@ -28,6 +28,7 @@ export const html = create({
28
28
  allowFullScreen: boolean,
29
29
  allowPaymentRequest: boolean,
30
30
  allowUserMedia: boolean,
31
+ alpha: boolean,
31
32
  alt: null,
32
33
  as: null,
33
34
  async: boolean,
@@ -41,8 +42,12 @@ export const html = create({
41
42
  checked: boolean,
42
43
  cite: null,
43
44
  className: spaceSeparated,
45
+ closedBy: null,
46
+ colorSpace: null,
44
47
  cols: number,
45
- colSpan: null,
48
+ colSpan: number,
49
+ command: null,
50
+ commandFor: null,
46
51
  content: null,
47
52
  contentEditable: booleanish,
48
53
  controls: boolean,
@@ -222,8 +227,10 @@ export const html = create({
222
227
  seamless: boolean,
223
228
  selected: boolean,
224
229
  shadowRootClonable: boolean,
230
+ shadowRootCustomElementRegistry: boolean,
225
231
  shadowRootDelegatesFocus: boolean,
226
232
  shadowRootMode: null,
233
+ shadowRootSerializable: boolean,
227
234
  shape: null,
228
235
  size: number,
229
236
  sizes: null,
@@ -309,8 +316,11 @@ export const html = create({
309
316
  allowTransparency: null,
310
317
  autoCorrect: null,
311
318
  autoSave: null,
319
+ credentialless: boolean,
312
320
  disablePictureInPicture: boolean,
313
321
  disableRemotePlayback: boolean,
322
+ exportParts: commaSeparated,
323
+ part: spaceSeparated,
314
324
  prefix: null,
315
325
  property: null,
316
326
  results: number,
@@ -1 +1 @@
1
- {"version":3,"file":"svg.d.ts","sourceRoot":"","sources":["svg.js"],"names":[],"mappings":"AAUA,oDA4iBE"}
1
+ {"version":3,"file":"svg.d.ts","sourceRoot":"","sources":["svg.js"],"names":[],"mappings":"AAUA,oDA8iBE"}
@@ -50,6 +50,7 @@ export const svg = create({
50
50
  markerEnd: 'marker-end',
51
51
  markerMid: 'marker-mid',
52
52
  markerStart: 'marker-start',
53
+ maskType: 'mask-type',
53
54
  navDown: 'nav-down',
54
55
  navDownLeft: 'nav-down-left',
55
56
  navDownRight: 'nav-down-right',
@@ -317,6 +318,7 @@ export const svg = create({
317
318
  markerWidth: null,
318
319
  mask: null,
319
320
  maskContentUnits: null,
321
+ maskType: null,
320
322
  maskUnits: null,
321
323
  mathematical: null,
322
324
  max: null,
@@ -9,9 +9,9 @@
9
9
  "description": "Info on the properties and attributes of the web platform",
10
10
  "devDependencies": {
11
11
  "@types/mdast": "^4.0.0",
12
- "@types/node": "^22.0.0",
12
+ "@types/node": "^25.0.0",
13
13
  "alpha-sort": "^5.0.0",
14
- "c8": "^10.0.0",
14
+ "c8": "^11.0.0",
15
15
  "html-element-attributes": "^3.0.0",
16
16
  "html-event-attributes": "^2.0.0",
17
17
  "mdast-zone": "^6.0.0",
@@ -21,9 +21,9 @@
21
21
  "svg-element-attributes": "^2.0.0",
22
22
  "svg-event-attributes": "^2.0.0",
23
23
  "type-coverage": "^2.0.0",
24
- "typescript": "^5.0.0",
24
+ "typescript": "^6.0.0",
25
25
  "unist-builder": "^4.0.0",
26
- "xo": "^0.60.0"
26
+ "xo": "^2.0.0"
27
27
  },
28
28
  "exports": "./index.js",
29
29
  "files": [
@@ -46,6 +46,11 @@
46
46
  ],
47
47
  "license": "MIT",
48
48
  "name": "property-information",
49
+ "overrides": {
50
+ "c8": {
51
+ "yargs": "^18.0.0"
52
+ }
53
+ },
49
54
  "prettier": {
50
55
  "bracketSpacing": false,
51
56
  "semi": false,
@@ -75,47 +80,5 @@
75
80
  "ignoreCatch": true
76
81
  },
77
82
  "type": "module",
78
- "version": "7.1.0",
79
- "xo": {
80
- "overrides": [
81
- {
82
- "files": [
83
- "script/**/*.js",
84
- "test.js"
85
- ],
86
- "rules": {
87
- "no-await-in-loop": "off"
88
- }
89
- },
90
- {
91
- "files": [
92
- "**/*.d.ts"
93
- ],
94
- "rules": {
95
- "@typescript-eslint/array-type": [
96
- "error",
97
- {
98
- "default": "generic"
99
- }
100
- ],
101
- "@typescript-eslint/ban-types": [
102
- "error",
103
- {
104
- "extendDefaults": true
105
- }
106
- ],
107
- "@typescript-eslint/consistent-type-definitions": [
108
- "error",
109
- "interface"
110
- ]
111
- }
112
- }
113
- ],
114
- "prettier": true,
115
- "rules": {
116
- "logical-assignment-operators": "off",
117
- "no-bitwise": "off",
118
- "unicorn/prefer-string-replace-all": "off"
119
- }
120
- }
83
+ "version": "7.2.0"
121
84
  }