@shopify/ui-extensions 2025.10.0-rc.43 → 2025.10.0-rc.45

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.
Files changed (145) hide show
  1. package/build/ts/docs/shared/components/ColorField.d.ts.map +1 -1
  2. package/build/ts/surfaces/admin/api/intents/intents.d.ts +132 -0
  3. package/build/ts/surfaces/admin/api/intents/intents.d.ts.map +1 -0
  4. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts +4 -0
  5. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts.map +1 -0
  6. package/build/ts/surfaces/admin/api/standard/standard.d.ts +2 -7
  7. package/build/ts/surfaces/admin/api/standard/standard.d.ts.map +1 -1
  8. package/build/ts/surfaces/admin/components/Avatar.d.ts +1 -0
  9. package/build/ts/surfaces/admin/components/Badge.d.ts +7 -1
  10. package/build/ts/surfaces/admin/components/Banner.d.ts +7 -1
  11. package/build/ts/surfaces/admin/components/Box.d.ts +70 -7
  12. package/build/ts/surfaces/admin/components/Button.d.ts +7 -1
  13. package/build/ts/surfaces/admin/components/ButtonGroup.d.ts +11 -1
  14. package/build/ts/surfaces/admin/components/Checkbox.d.ts +1 -0
  15. package/build/ts/surfaces/admin/components/Chip.d.ts +7 -1
  16. package/build/ts/surfaces/admin/components/Choice.d.ts +8 -1
  17. package/build/ts/surfaces/admin/components/ChoiceList.d.ts +8 -1
  18. package/build/ts/surfaces/admin/components/Clickable.d.ts +71 -7
  19. package/build/ts/surfaces/admin/components/ClickableChip.d.ts +7 -1
  20. package/build/ts/surfaces/admin/components/ColorField.d.ts +1 -0
  21. package/build/ts/surfaces/admin/components/DatePicker.d.ts +1 -0
  22. package/build/ts/surfaces/admin/components/Divider.d.ts +1 -0
  23. package/build/ts/surfaces/admin/components/EmailField.d.ts +1 -0
  24. package/build/ts/surfaces/admin/components/Grid.d.ts +123 -10
  25. package/build/ts/surfaces/admin/components/GridItem.d.ts +71 -7
  26. package/build/ts/surfaces/admin/components/Heading.d.ts +7 -1
  27. package/build/ts/surfaces/admin/components/Icon.d.ts +1 -0
  28. package/build/ts/surfaces/admin/components/Image.d.ts +64 -6
  29. package/build/ts/surfaces/admin/components/Link.d.ts +7 -1
  30. package/build/ts/surfaces/admin/components/ListItem.d.ts +8 -1
  31. package/build/ts/surfaces/admin/components/Modal.d.ts +1 -1
  32. package/build/ts/surfaces/admin/components/MoneyField.d.ts +1 -0
  33. package/build/ts/surfaces/admin/components/NumberField.d.ts +1 -0
  34. package/build/ts/surfaces/admin/components/Option.d.ts +7 -1
  35. package/build/ts/surfaces/admin/components/OptionGroup.d.ts +8 -1
  36. package/build/ts/surfaces/admin/components/OrderedList.d.ts +8 -1
  37. package/build/ts/surfaces/admin/components/Page.d.ts +11 -1
  38. package/build/ts/surfaces/admin/components/Paragraph.d.ts +8 -1
  39. package/build/ts/surfaces/admin/components/PasswordField.d.ts +1 -0
  40. package/build/ts/surfaces/admin/components/SearchField.d.ts +1 -0
  41. package/build/ts/surfaces/admin/components/Section.d.ts +7 -1
  42. package/build/ts/surfaces/admin/components/Select.d.ts +7 -1
  43. package/build/ts/surfaces/admin/components/Spinner.d.ts +1 -0
  44. package/build/ts/surfaces/admin/components/Stack.d.ts +87 -7
  45. package/build/ts/surfaces/admin/components/Switch.d.ts +1 -0
  46. package/build/ts/surfaces/admin/components/Table.d.ts +8 -1
  47. package/build/ts/surfaces/admin/components/TableBody.d.ts +8 -1
  48. package/build/ts/surfaces/admin/components/TableCell.d.ts +8 -1
  49. package/build/ts/surfaces/admin/components/TableHeader.d.ts +8 -1
  50. package/build/ts/surfaces/admin/components/TableHeaderRow.d.ts +7 -1
  51. package/build/ts/surfaces/admin/components/TableRow.d.ts +8 -1
  52. package/build/ts/surfaces/admin/components/Text.d.ts +7 -1
  53. package/build/ts/surfaces/admin/components/TextArea.d.ts +1 -0
  54. package/build/ts/surfaces/admin/components/TextField.d.ts +1 -0
  55. package/build/ts/surfaces/admin/components/Thumbnail.d.ts +1 -0
  56. package/build/ts/surfaces/admin/components/Tooltip.d.ts +7 -1
  57. package/build/ts/surfaces/admin/components/URLField.d.ts +1 -0
  58. package/build/ts/surfaces/admin/components/UnorderedList.d.ts +8 -1
  59. package/build/ts/surfaces/admin/components/shared.d.ts +7 -24
  60. package/build/ts/surfaces/point-of-sale/api/navigation-api/navigation-api.d.ts +1 -1
  61. package/build/tsconfig.tsbuildinfo +1 -1
  62. package/package.json +1 -1
  63. package/src/docs/shared/components/ColorField.ts +2 -1
  64. package/src/surfaces/admin/api/intents/examples/create-article.js +9 -0
  65. package/src/surfaces/admin/api/intents/examples/create-catalog.js +9 -0
  66. package/src/surfaces/admin/api/intents/examples/create-collection.js +9 -0
  67. package/src/surfaces/admin/api/intents/examples/create-customer.js +9 -0
  68. package/src/surfaces/admin/api/intents/examples/create-discount.js +11 -0
  69. package/src/surfaces/admin/api/intents/examples/create-market.js +9 -0
  70. package/src/surfaces/admin/api/intents/examples/create-menu.js +9 -0
  71. package/src/surfaces/admin/api/intents/examples/create-metafield-definition.js +11 -0
  72. package/src/surfaces/admin/api/intents/examples/create-metaobject-definition.js +9 -0
  73. package/src/surfaces/admin/api/intents/examples/create-metaobject.js +11 -0
  74. package/src/surfaces/admin/api/intents/examples/create-page.js +9 -0
  75. package/src/surfaces/admin/api/intents/examples/create-product.js +9 -0
  76. package/src/surfaces/admin/api/intents/examples/create-variant.js +11 -0
  77. package/src/surfaces/admin/api/intents/examples/edit-article.js +11 -0
  78. package/src/surfaces/admin/api/intents/examples/edit-catalog.js +11 -0
  79. package/src/surfaces/admin/api/intents/examples/edit-collection.js +11 -0
  80. package/src/surfaces/admin/api/intents/examples/edit-customer.js +11 -0
  81. package/src/surfaces/admin/api/intents/examples/edit-discount.js +11 -0
  82. package/src/surfaces/admin/api/intents/examples/edit-market.js +11 -0
  83. package/src/surfaces/admin/api/intents/examples/edit-menu.js +11 -0
  84. package/src/surfaces/admin/api/intents/examples/edit-metafield-definition.js +11 -0
  85. package/src/surfaces/admin/api/intents/examples/edit-metaobject-definition.js +11 -0
  86. package/src/surfaces/admin/api/intents/examples/edit-metaobject.js +11 -0
  87. package/src/surfaces/admin/api/intents/examples/edit-page.js +11 -0
  88. package/src/surfaces/admin/api/intents/examples/edit-product.js +11 -0
  89. package/src/surfaces/admin/api/intents/examples/edit-variant.js +11 -0
  90. package/src/surfaces/admin/api/intents/intents.ts +153 -0
  91. package/src/surfaces/admin/api/standard/standard.ts +2 -6
  92. package/src/surfaces/admin/components/Avatar.d.ts +1 -0
  93. package/src/surfaces/admin/components/Badge.d.ts +7 -1
  94. package/src/surfaces/admin/components/Banner.d.ts +7 -1
  95. package/src/surfaces/admin/components/Box.d.ts +70 -7
  96. package/src/surfaces/admin/components/Button.d.ts +7 -1
  97. package/src/surfaces/admin/components/ButtonGroup.d.ts +11 -1
  98. package/src/surfaces/admin/components/Checkbox.d.ts +1 -0
  99. package/src/surfaces/admin/components/Chip.d.ts +7 -1
  100. package/src/surfaces/admin/components/Choice.d.ts +8 -1
  101. package/src/surfaces/admin/components/ChoiceList.d.ts +8 -1
  102. package/src/surfaces/admin/components/Clickable.d.ts +71 -7
  103. package/src/surfaces/admin/components/ClickableChip.d.ts +7 -1
  104. package/src/surfaces/admin/components/ColorField.d.ts +1 -0
  105. package/src/surfaces/admin/components/DatePicker.d.ts +1 -0
  106. package/src/surfaces/admin/components/Divider.d.ts +1 -0
  107. package/src/surfaces/admin/components/EmailField.d.ts +1 -0
  108. package/src/surfaces/admin/components/Grid.d.ts +123 -10
  109. package/src/surfaces/admin/components/GridItem.d.ts +71 -7
  110. package/src/surfaces/admin/components/Heading.d.ts +7 -1
  111. package/src/surfaces/admin/components/Icon.d.ts +1 -0
  112. package/src/surfaces/admin/components/Image.d.ts +64 -6
  113. package/src/surfaces/admin/components/Link.d.ts +7 -1
  114. package/src/surfaces/admin/components/ListItem.d.ts +8 -1
  115. package/src/surfaces/admin/components/Modal.d.ts +1 -1
  116. package/src/surfaces/admin/components/MoneyField.d.ts +1 -0
  117. package/src/surfaces/admin/components/NumberField.d.ts +1 -0
  118. package/src/surfaces/admin/components/Option.d.ts +7 -1
  119. package/src/surfaces/admin/components/OptionGroup.d.ts +8 -1
  120. package/src/surfaces/admin/components/OrderedList.d.ts +8 -1
  121. package/src/surfaces/admin/components/Page.d.ts +11 -1
  122. package/src/surfaces/admin/components/Paragraph.d.ts +8 -1
  123. package/src/surfaces/admin/components/PasswordField.d.ts +1 -0
  124. package/src/surfaces/admin/components/SearchField.d.ts +1 -0
  125. package/src/surfaces/admin/components/Section.d.ts +7 -1
  126. package/src/surfaces/admin/components/Select.d.ts +7 -1
  127. package/src/surfaces/admin/components/Spinner.d.ts +1 -0
  128. package/src/surfaces/admin/components/Stack.d.ts +87 -7
  129. package/src/surfaces/admin/components/Switch.d.ts +1 -0
  130. package/src/surfaces/admin/components/Table.d.ts +8 -1
  131. package/src/surfaces/admin/components/TableBody.d.ts +8 -1
  132. package/src/surfaces/admin/components/TableCell.d.ts +8 -1
  133. package/src/surfaces/admin/components/TableHeader.d.ts +8 -1
  134. package/src/surfaces/admin/components/TableHeaderRow.d.ts +7 -1
  135. package/src/surfaces/admin/components/TableRow.d.ts +8 -1
  136. package/src/surfaces/admin/components/Text.d.ts +7 -1
  137. package/src/surfaces/admin/components/TextArea.d.ts +1 -0
  138. package/src/surfaces/admin/components/TextField.d.ts +1 -0
  139. package/src/surfaces/admin/components/Thumbnail.d.ts +1 -0
  140. package/src/surfaces/admin/components/Tooltip.d.ts +7 -1
  141. package/src/surfaces/admin/components/URLField.d.ts +1 -0
  142. package/src/surfaces/admin/components/UnorderedList.d.ts +8 -1
  143. package/src/surfaces/admin/components/shared.d.ts +7 -24
  144. package/src/surfaces/admin/components.d.ts +323 -146
  145. package/src/surfaces/point-of-sale/api/navigation-api/navigation-api.ts +1 -1
@@ -73,6 +73,7 @@ declare abstract class PreactCustomElement extends BaseClass {
73
73
  click({sourceEvent}?: ClickOptions): void;
74
74
  }
75
75
 
76
+ /** Used when an element does not have children. */
76
77
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
77
78
  /** Assigns a unique key to this element. */
78
79
  key?: preact.Key;
@@ -81,6 +82,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
81
82
  /** Assigns this element to a parent's slot. */
82
83
  slot?: Lowercase<string>;
83
84
  }
85
+ /** Used when an element has children. */
86
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
87
+ extends PreactBaseElementProps<TClass> {
88
+ children?: preact.ComponentChildren;
89
+ }
84
90
 
85
91
  declare const headerFormatSymbol: unique symbol;
86
92
 
@@ -104,7 +110,8 @@ declare global {
104
110
  declare module 'preact' {
105
111
  namespace createElement.JSX {
106
112
  interface IntrinsicElements {
107
- [tagName]: TableCellJSXProps & PreactBaseElementProps<TableCell>;
113
+ [tagName]: TableCellJSXProps &
114
+ PreactBaseElementPropsWithChildren<TableCell>;
108
115
  }
109
116
  }
110
117
  }
@@ -81,6 +81,7 @@ declare abstract class PreactCustomElement extends BaseClass {
81
81
  click({sourceEvent}?: ClickOptions): void;
82
82
  }
83
83
 
84
+ /** Used when an element does not have children. */
84
85
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
85
86
  /** Assigns a unique key to this element. */
86
87
  key?: preact.Key;
@@ -89,6 +90,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
89
90
  /** Assigns this element to a parent's slot. */
90
91
  slot?: Lowercase<string>;
91
92
  }
93
+ /** Used when an element has children. */
94
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
95
+ extends PreactBaseElementProps<TClass> {
96
+ children?: preact.ComponentChildren;
97
+ }
92
98
 
93
99
  declare class TableHeader
94
100
  extends PreactCustomElement
@@ -106,7 +112,8 @@ declare global {
106
112
  declare module 'preact' {
107
113
  namespace createElement.JSX {
108
114
  interface IntrinsicElements {
109
- [tagName]: TableHeaderJSXProps & PreactBaseElementProps<TableHeader>;
115
+ [tagName]: TableHeaderJSXProps &
116
+ PreactBaseElementPropsWithChildren<TableHeader>;
110
117
  }
111
118
  }
112
119
  }
@@ -69,6 +69,7 @@ declare abstract class PreactCustomElement extends BaseClass {
69
69
  click({sourceEvent}?: ClickOptions): void;
70
70
  }
71
71
 
72
+ /** Used when an element does not have children. */
72
73
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
73
74
  /** Assigns a unique key to this element. */
74
75
  key?: preact.Key;
@@ -77,6 +78,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
77
78
  /** Assigns this element to a parent's slot. */
78
79
  slot?: Lowercase<string>;
79
80
  }
81
+ /** Used when an element has children. */
82
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
83
+ extends PreactBaseElementProps<TClass> {
84
+ children?: preact.ComponentChildren;
85
+ }
80
86
 
81
87
  declare class TableHeaderRow
82
88
  extends PreactCustomElement
@@ -97,7 +103,7 @@ declare module 'preact' {
97
103
  namespace createElement.JSX {
98
104
  interface IntrinsicElements {
99
105
  [tagName]: TableHeaderRowJSXProps &
100
- PreactBaseElementProps<TableHeaderRow>;
106
+ PreactBaseElementPropsWithChildren<TableHeaderRow>;
101
107
  }
102
108
  }
103
109
  }
@@ -70,6 +70,7 @@ declare abstract class PreactCustomElement extends BaseClass {
70
70
  click({sourceEvent}?: ClickOptions): void;
71
71
  }
72
72
 
73
+ /** Used when an element does not have children. */
73
74
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
74
75
  /** Assigns a unique key to this element. */
75
76
  key?: preact.Key;
@@ -78,6 +79,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
78
79
  /** Assigns this element to a parent's slot. */
79
80
  slot?: Lowercase<string>;
80
81
  }
82
+ /** Used when an element has children. */
83
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
84
+ extends PreactBaseElementProps<TClass> {
85
+ children?: preact.ComponentChildren;
86
+ }
81
87
 
82
88
  declare class TableRow extends PreactCustomElement implements TableRowProps {
83
89
  constructor();
@@ -91,7 +97,8 @@ declare global {
91
97
  declare module 'preact' {
92
98
  namespace createElement.JSX {
93
99
  interface IntrinsicElements {
94
- [tagName]: TableRowJSXProps & PreactBaseElementProps<TableRow>;
100
+ [tagName]: TableRowJSXProps &
101
+ PreactBaseElementPropsWithChildren<TableRow>;
95
102
  }
96
103
  }
97
104
  }
@@ -96,6 +96,7 @@ declare abstract class PreactCustomElement extends BaseClass {
96
96
  click({sourceEvent}?: ClickOptions): void;
97
97
  }
98
98
 
99
+ /** Used when an element does not have children. */
99
100
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
100
101
  /** Assigns a unique key to this element. */
101
102
  key?: preact.Key;
@@ -104,6 +105,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
104
105
  /** Assigns this element to a parent's slot. */
105
106
  slot?: Lowercase<string>;
106
107
  }
108
+ /** Used when an element has children. */
109
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
110
+ extends PreactBaseElementProps<TClass> {
111
+ children?: preact.ComponentChildren;
112
+ }
107
113
 
108
114
  declare class Text extends PreactCustomElement implements TextProps {
109
115
  accessor fontVariantNumeric: TextProps['fontVariantNumeric'];
@@ -123,7 +129,7 @@ declare global {
123
129
  declare module 'preact' {
124
130
  namespace createElement.JSX {
125
131
  interface IntrinsicElements {
126
- [tagName]: TextJSXProps & PreactBaseElementProps<Text>;
132
+ [tagName]: TextJSXProps & PreactBaseElementPropsWithChildren<Text>;
127
133
  }
128
134
  }
129
135
  }
@@ -26,6 +26,7 @@ export interface FieldReactProps<T extends keyof HTMLElementTagNameMap> {
26
26
  onFocus?: ((event: CallbackEvent<T>) => void) | null;
27
27
  onBlur?: ((event: CallbackEvent<T>) => void) | null;
28
28
  }
29
+ /** Used when an element does not have children. */
29
30
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
30
31
  /** Assigns a unique key to this element. */
31
32
  key?: preact.Key;
@@ -22,6 +22,7 @@ export interface FieldReactProps<T extends keyof HTMLElementTagNameMap> {
22
22
  onFocus?: ((event: CallbackEvent<T>) => void) | null;
23
23
  onBlur?: ((event: CallbackEvent<T>) => void) | null;
24
24
  }
25
+ /** Used when an element does not have children. */
25
26
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
26
27
  /** Assigns a unique key to this element. */
27
28
  key?: preact.Key;
@@ -16,6 +16,7 @@ export type CallbackEventListener<T extends keyof HTMLElementTagNameMap> =
16
16
  (event: CallbackEvent<T>): void;
17
17
  })
18
18
  | null;
19
+ /** Used when an element does not have children. */
19
20
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
20
21
  /** Assigns a unique key to this element. */
21
22
  key?: preact.Key;
@@ -14,6 +14,7 @@ import type {
14
14
 
15
15
  export interface TooltipProps extends Required<Pick<TooltipProps$1, 'id'>> {}
16
16
 
17
+ /** Used when an element does not have children. */
17
18
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
18
19
  /** Assigns a unique key to this element. */
19
20
  key?: preact.Key;
@@ -22,6 +23,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
22
23
  /** Assigns this element to a parent's slot. */
23
24
  slot?: Lowercase<string>;
24
25
  }
26
+ /** Used when an element has children. */
27
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
28
+ extends PreactBaseElementProps<TClass> {
29
+ children?: preact.ComponentChildren;
30
+ }
25
31
 
26
32
  export type Styles = string;
27
33
  export type RenderImpl = Omit<ShadowRootInit, 'mode'> & {
@@ -128,7 +134,7 @@ declare global {
128
134
  declare module 'preact' {
129
135
  namespace createElement.JSX {
130
136
  interface IntrinsicElements {
131
- [tagName]: TooltipJSXProps & PreactBaseElementProps<Tooltip>;
137
+ [tagName]: TooltipJSXProps & PreactBaseElementPropsWithChildren<Tooltip>;
132
138
  }
133
139
  }
134
140
  }
@@ -26,6 +26,7 @@ export interface FieldReactProps<T extends keyof HTMLElementTagNameMap> {
26
26
  onFocus?: ((event: CallbackEvent<T>) => void) | null;
27
27
  onBlur?: ((event: CallbackEvent<T>) => void) | null;
28
28
  }
29
+ /** Used when an element does not have children. */
29
30
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
30
31
  /** Assigns a unique key to this element. */
31
32
  key?: preact.Key;
@@ -69,6 +69,7 @@ declare abstract class PreactCustomElement extends BaseClass {
69
69
  click({sourceEvent}?: ClickOptions): void;
70
70
  }
71
71
 
72
+ /** Used when an element does not have children. */
72
73
  export interface PreactBaseElementProps<TClass extends HTMLElement> {
73
74
  /** Assigns a unique key to this element. */
74
75
  key?: preact.Key;
@@ -77,6 +78,11 @@ export interface PreactBaseElementProps<TClass extends HTMLElement> {
77
78
  /** Assigns this element to a parent's slot. */
78
79
  slot?: Lowercase<string>;
79
80
  }
81
+ /** Used when an element has children. */
82
+ export interface PreactBaseElementPropsWithChildren<TClass extends HTMLElement>
83
+ extends PreactBaseElementProps<TClass> {
84
+ children?: preact.ComponentChildren;
85
+ }
80
86
 
81
87
  declare class UnorderedList
82
88
  extends PreactCustomElement
@@ -92,7 +98,8 @@ declare global {
92
98
  declare module 'preact' {
93
99
  namespace createElement.JSX {
94
100
  interface IntrinsicElements {
95
- [tagName]: UnorderedListJSXProps & PreactBaseElementProps<UnorderedList>;
101
+ [tagName]: UnorderedListJSXProps &
102
+ PreactBaseElementPropsWithChildren<UnorderedList>;
96
103
  }
97
104
  }
98
105
  }
@@ -8,7 +8,7 @@
8
8
  * TODO: Update `any` type here after this is resolved
9
9
  * https://github.com/Shopify/ui-api-design/issues/139
10
10
  */
11
- export type ComponentChildren = any;
11
+ export type ComponentChildren = preact.ComponentChildren;
12
12
  export type StringChildren = string;
13
13
  export interface GlobalProps {
14
14
  /**
@@ -167,7 +167,7 @@ export interface ExtendableEvent extends Event {
167
167
  interface AggregateError$1<T extends Error> extends Error {
168
168
  errors: T[];
169
169
  }
170
- export interface AggregateErrorEvent<T extends Error> extends ErrorEvent {
170
+ export interface ArgregatedErrorEvent<T extends Error> extends ErrorEvent {
171
171
  error: AggregateError$1<T>;
172
172
  }
173
173
  export type SizeKeyword =
@@ -2098,7 +2098,7 @@ interface ColorPickerProps$1 extends GlobalProps, InputProps {
2098
2098
  * For RGB and RGBA, both the legacy syntax (comma-separated) and modern syntax (space-separate) are supported.
2099
2099
  * @see https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb
2100
2100
  *
2101
- * If the value is invalid, the component will return an empty string ''.
2101
+ * If the value is invalid, the component will select rgb(0, 0, 0).
2102
2102
  *
2103
2103
  * Note that the `onChange` handler will emit the value in hex.
2104
2104
  */
@@ -2405,19 +2405,12 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
2405
2405
  */
2406
2406
  value?: string;
2407
2407
  /**
2408
- * Callback when any date is selected.
2409
- *
2410
- * - If `type="single"`, fires when a date is selected and happens before `onChange`.
2411
- * - If `type="multiple"`, fires when a date is selected before `onChange`.
2412
- * - If `type="range"`, fires when a first date is selected (with the partial value formatted as `YYYY-MM-DD--`), and when the last date is selected before `onChange`.
2408
+ * Callback when any date is selected. Will fire before `onChange`.
2413
2409
  */
2414
2410
  onInput?: (event: Event) => void;
2415
2411
  /**
2416
- * Callback when the value is committed.
2417
- *
2418
- * - If `type="single"`, fires when a date is selected after `onInput`.
2419
- * - If `type="multiple"`, fires when a date is selected after `onInput`.
2420
- * - If `type="range"`, fires when a range is completed by selecting the end date after `onInput`.
2412
+ * Callback when the `value` is changed. For `type="single"` and `type="multiple"`, this is the same as `onInput`.
2413
+ * For `type="range"`, this is only called when the range is completed by selecting the end date of the range.
2421
2414
  */
2422
2415
  onChange?: (event: Event) => void;
2423
2416
  }
@@ -2437,16 +2430,6 @@ interface DateFieldProps$1
2437
2430
  | 'onViewChange'
2438
2431
  >,
2439
2432
  AutocompleteProps<DateAutocompleteField> {
2440
- /**
2441
- * Callback when the user makes any changes in the field.
2442
- * Also triggered when a date is selected using the date picker popup before `onChange`.
2443
- */
2444
- onInput?: (event: Event) => void;
2445
- /**
2446
- * Callback when the user has **finished editing** a field, e.g. once they have blurred the field.
2447
- * Also triggered when a date is selected using the date picker popup after `onInput`.
2448
- */
2449
- onChange?: (event: Event) => void;
2450
2433
  /**
2451
2434
  * Callback when the field has an invalid date.
2452
2435
  * This callback will be called, if the date typed is invalid or disabled.
@@ -2577,7 +2560,7 @@ interface FunctionSettingsProps$1 extends GlobalProps, FormProps$1 {
2577
2560
  * highlight the fields that caused the errors, and display the error messages
2578
2561
  * to the user.
2579
2562
  */
2580
- onError?: (event: AggregateErrorEvent<FunctionSettingsError>) => void;
2563
+ onError?: (event: ArgregatedErrorEvent<FunctionSettingsError>) => void;
2581
2564
  }
2582
2565
  export interface FunctionSettingsError extends Error {
2583
2566
  /**
@@ -11,7 +11,7 @@ export interface NavigationHistoryEntry {
11
11
  /** Returns the key of the history entry. This is a unique, UA-generated value that represents the history entry's slot in the entries list rather than the entry itself. */
12
12
  key: string;
13
13
  /**
14
- * Returns the lowercased URL of this history entry.
14
+ * Returns the URL of this history entry.
15
15
  */
16
16
  url: string | null;
17
17
  /**