@shopify/ui-extensions 2025.10.0-rc.47 → 2025.10.0-rc.48
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/build/ts/surfaces/admin/components/Chip.d.ts +1 -5
- package/build/ts/surfaces/admin/components/ClickableChip.d.ts +1 -5
- package/build/ts/surfaces/admin/components/ColorPicker.d.ts +1 -5
- package/build/ts/surfaces/admin/components/DateField.d.ts +1 -5
- package/build/ts/surfaces/admin/components/Menu.d.ts +1 -5
- package/build/ts/surfaces/admin/components/Modal.d.ts +1 -5
- package/build/ts/surfaces/admin/components/QueryContainer.d.ts +1 -5
- package/build/ts/surfaces/admin/components/shared.d.ts +30 -6
- package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/surfaces/admin/components/Chip.d.ts +1 -5
- package/src/surfaces/admin/components/ClickableChip.d.ts +1 -5
- package/src/surfaces/admin/components/ColorPicker.d.ts +1 -5
- package/src/surfaces/admin/components/DateField.d.ts +1 -5
- package/src/surfaces/admin/components/Menu.d.ts +1 -5
- package/src/surfaces/admin/components/Modal.d.ts +1 -5
- package/src/surfaces/admin/components/QueryContainer.d.ts +1 -5
- package/src/surfaces/admin/components/shared.d.ts +30 -6
- package/src/surfaces/admin/components.d.ts +64 -152
package/package.json
CHANGED
|
@@ -99,11 +99,7 @@ declare global {
|
|
|
99
99
|
declare module 'preact' {
|
|
100
100
|
namespace createElement.JSX {
|
|
101
101
|
interface IntrinsicElements {
|
|
102
|
-
[tagName]: Omit<
|
|
103
|
-
HTMLAttributes<HTMLElement>,
|
|
104
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
105
|
-
> &
|
|
106
|
-
Omit<ChipJSXProps, 'graphic'> &
|
|
102
|
+
[tagName]: Omit<ChipJSXProps, 'graphic'> &
|
|
107
103
|
PreactBaseElementPropsWithChildren<Chip>;
|
|
108
104
|
}
|
|
109
105
|
}
|
|
@@ -127,11 +127,7 @@ declare global {
|
|
|
127
127
|
declare module 'preact' {
|
|
128
128
|
namespace createElement.JSX {
|
|
129
129
|
interface IntrinsicElements {
|
|
130
|
-
[tagName]: Omit<
|
|
131
|
-
HTMLAttributes<HTMLElement>,
|
|
132
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
133
|
-
> &
|
|
134
|
-
Omit<ClickableChipJSXProps, 'graphic'> &
|
|
130
|
+
[tagName]: Omit<ClickableChipJSXProps, 'graphic'> &
|
|
135
131
|
PreactBaseElementPropsWithChildren<ClickableChip>;
|
|
136
132
|
}
|
|
137
133
|
}
|
|
@@ -108,11 +108,7 @@ declare global {
|
|
|
108
108
|
declare module 'preact' {
|
|
109
109
|
namespace createElement.JSX {
|
|
110
110
|
interface IntrinsicElements {
|
|
111
|
-
[tagName]:
|
|
112
|
-
HTMLAttributes<HTMLElement>,
|
|
113
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
114
|
-
> &
|
|
115
|
-
ColorPickerJSXProps;
|
|
111
|
+
[tagName]: ColorPickerJSXProps;
|
|
116
112
|
}
|
|
117
113
|
}
|
|
118
114
|
}
|
|
@@ -221,11 +221,7 @@ declare global {
|
|
|
221
221
|
declare module 'preact' {
|
|
222
222
|
namespace createElement.JSX {
|
|
223
223
|
interface IntrinsicElements {
|
|
224
|
-
[tagName]:
|
|
225
|
-
HTMLAttributes<HTMLElement>,
|
|
226
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
227
|
-
> &
|
|
228
|
-
DateFieldJSXProps;
|
|
224
|
+
[tagName]: DateFieldJSXProps;
|
|
229
225
|
}
|
|
230
226
|
}
|
|
231
227
|
}
|
|
@@ -125,11 +125,7 @@ declare global {
|
|
|
125
125
|
declare module 'preact' {
|
|
126
126
|
namespace createElement.JSX {
|
|
127
127
|
interface IntrinsicElements {
|
|
128
|
-
[tagName]:
|
|
129
|
-
HTMLAttributes<HTMLElement>,
|
|
130
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
131
|
-
> &
|
|
132
|
-
MenuJSXProps;
|
|
128
|
+
[tagName]: MenuJSXProps;
|
|
133
129
|
}
|
|
134
130
|
}
|
|
135
131
|
}
|
|
@@ -196,11 +196,7 @@ declare global {
|
|
|
196
196
|
declare module 'preact' {
|
|
197
197
|
namespace createElement.JSX {
|
|
198
198
|
interface IntrinsicElements {
|
|
199
|
-
[tagName]: Omit<
|
|
200
|
-
HTMLAttributes<HTMLElement>,
|
|
201
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
202
|
-
> &
|
|
203
|
-
Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
199
|
+
[tagName]: Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
204
200
|
}
|
|
205
201
|
}
|
|
206
202
|
}
|
|
@@ -88,11 +88,7 @@ declare global {
|
|
|
88
88
|
declare module 'preact' {
|
|
89
89
|
namespace createElement.JSX {
|
|
90
90
|
interface IntrinsicElements {
|
|
91
|
-
[tagName]:
|
|
92
|
-
HTMLAttributes<HTMLElement>,
|
|
93
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
94
|
-
> &
|
|
95
|
-
QueryContainerJSXProps;
|
|
91
|
+
[tagName]: QueryContainerJSXProps;
|
|
96
92
|
}
|
|
97
93
|
}
|
|
98
94
|
}
|
|
@@ -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
|
|
170
|
+
export interface AggregateErrorEvent<T extends Error> extends ErrorEvent {
|
|
171
171
|
error: AggregateError$1<T>;
|
|
172
172
|
}
|
|
173
173
|
export type SizeKeyword =
|
|
@@ -359,6 +359,7 @@ declare const privateIconArray: readonly [
|
|
|
359
359
|
'clipboard-check',
|
|
360
360
|
'clipboard-checklist',
|
|
361
361
|
'clock',
|
|
362
|
+
'clock-list',
|
|
362
363
|
'clock-revert',
|
|
363
364
|
'code',
|
|
364
365
|
'code-add',
|
|
@@ -576,6 +577,7 @@ declare const privateIconArray: readonly [
|
|
|
576
577
|
'note',
|
|
577
578
|
'note-add',
|
|
578
579
|
'notification',
|
|
580
|
+
'number-one',
|
|
579
581
|
'order',
|
|
580
582
|
'order-batches',
|
|
581
583
|
'order-draft',
|
|
@@ -662,6 +664,7 @@ declare const privateIconArray: readonly [
|
|
|
662
664
|
'profile-filled',
|
|
663
665
|
'question-circle',
|
|
664
666
|
'question-circle-filled',
|
|
667
|
+
'radio-control',
|
|
665
668
|
'receipt',
|
|
666
669
|
'receipt-dollar',
|
|
667
670
|
'receipt-euro',
|
|
@@ -716,6 +719,7 @@ declare const privateIconArray: readonly [
|
|
|
716
719
|
'sort-ascending',
|
|
717
720
|
'sort-descending',
|
|
718
721
|
'sound',
|
|
722
|
+
'split',
|
|
719
723
|
'sports',
|
|
720
724
|
'star',
|
|
721
725
|
'star-circle',
|
|
@@ -782,6 +786,9 @@ declare const privateIconArray: readonly [
|
|
|
782
786
|
'unlock',
|
|
783
787
|
'upload',
|
|
784
788
|
'variant',
|
|
789
|
+
'variant-list',
|
|
790
|
+
'video',
|
|
791
|
+
'video-list',
|
|
785
792
|
'view',
|
|
786
793
|
'viewport-narrow',
|
|
787
794
|
'viewport-short',
|
|
@@ -2098,7 +2105,7 @@ interface ColorPickerProps$1 extends GlobalProps, InputProps {
|
|
|
2098
2105
|
* For RGB and RGBA, both the legacy syntax (comma-separated) and modern syntax (space-separate) are supported.
|
|
2099
2106
|
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb
|
|
2100
2107
|
*
|
|
2101
|
-
* If the value is invalid, the component will
|
|
2108
|
+
* If the value is invalid, the component will return an empty string ''.
|
|
2102
2109
|
*
|
|
2103
2110
|
* Note that the `onChange` handler will emit the value in hex.
|
|
2104
2111
|
*/
|
|
@@ -2405,12 +2412,19 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
|
|
|
2405
2412
|
*/
|
|
2406
2413
|
value?: string;
|
|
2407
2414
|
/**
|
|
2408
|
-
* Callback when any date is selected.
|
|
2415
|
+
* Callback when any date is selected.
|
|
2416
|
+
*
|
|
2417
|
+
* - If `type="single"`, fires when a date is selected and happens before `onChange`.
|
|
2418
|
+
* - If `type="multiple"`, fires when a date is selected before `onChange`.
|
|
2419
|
+
* - 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`.
|
|
2409
2420
|
*/
|
|
2410
2421
|
onInput?: (event: Event) => void;
|
|
2411
2422
|
/**
|
|
2412
|
-
* Callback when the
|
|
2413
|
-
*
|
|
2423
|
+
* Callback when the value is committed.
|
|
2424
|
+
*
|
|
2425
|
+
* - If `type="single"`, fires when a date is selected after `onInput`.
|
|
2426
|
+
* - If `type="multiple"`, fires when a date is selected after `onInput`.
|
|
2427
|
+
* - If `type="range"`, fires when a range is completed by selecting the end date after `onInput`.
|
|
2414
2428
|
*/
|
|
2415
2429
|
onChange?: (event: Event) => void;
|
|
2416
2430
|
}
|
|
@@ -2430,6 +2444,16 @@ interface DateFieldProps$1
|
|
|
2430
2444
|
| 'onViewChange'
|
|
2431
2445
|
>,
|
|
2432
2446
|
AutocompleteProps<DateAutocompleteField> {
|
|
2447
|
+
/**
|
|
2448
|
+
* Callback when the user makes any changes in the field.
|
|
2449
|
+
* Also triggered when a date is selected using the date picker popup before `onChange`.
|
|
2450
|
+
*/
|
|
2451
|
+
onInput?: (event: Event) => void;
|
|
2452
|
+
/**
|
|
2453
|
+
* Callback when the user has **finished editing** a field, e.g. once they have blurred the field.
|
|
2454
|
+
* Also triggered when a date is selected using the date picker popup after `onInput`.
|
|
2455
|
+
*/
|
|
2456
|
+
onChange?: (event: Event) => void;
|
|
2433
2457
|
/**
|
|
2434
2458
|
* Callback when the field has an invalid date.
|
|
2435
2459
|
* This callback will be called, if the date typed is invalid or disabled.
|
|
@@ -2560,7 +2584,7 @@ interface FunctionSettingsProps$1 extends GlobalProps, FormProps$1 {
|
|
|
2560
2584
|
* highlight the fields that caused the errors, and display the error messages
|
|
2561
2585
|
* to the user.
|
|
2562
2586
|
*/
|
|
2563
|
-
onError?: (event:
|
|
2587
|
+
onError?: (event: AggregateErrorEvent<FunctionSettingsError>) => void;
|
|
2564
2588
|
}
|
|
2565
2589
|
export interface FunctionSettingsError extends Error {
|
|
2566
2590
|
/**
|
|
@@ -169,7 +169,7 @@ export interface ExtendableEvent extends Event {
|
|
|
169
169
|
interface AggregateError$1<T extends Error> extends Error {
|
|
170
170
|
errors: T[];
|
|
171
171
|
}
|
|
172
|
-
export interface
|
|
172
|
+
export interface AggregateErrorEvent<T extends Error> extends ErrorEvent {
|
|
173
173
|
error: AggregateError$1<T>;
|
|
174
174
|
}
|
|
175
175
|
export type SizeKeyword =
|
|
@@ -361,6 +361,7 @@ declare const privateIconArray: readonly [
|
|
|
361
361
|
'clipboard-check',
|
|
362
362
|
'clipboard-checklist',
|
|
363
363
|
'clock',
|
|
364
|
+
'clock-list',
|
|
364
365
|
'clock-revert',
|
|
365
366
|
'code',
|
|
366
367
|
'code-add',
|
|
@@ -578,6 +579,7 @@ declare const privateIconArray: readonly [
|
|
|
578
579
|
'note',
|
|
579
580
|
'note-add',
|
|
580
581
|
'notification',
|
|
582
|
+
'number-one',
|
|
581
583
|
'order',
|
|
582
584
|
'order-batches',
|
|
583
585
|
'order-draft',
|
|
@@ -664,6 +666,7 @@ declare const privateIconArray: readonly [
|
|
|
664
666
|
'profile-filled',
|
|
665
667
|
'question-circle',
|
|
666
668
|
'question-circle-filled',
|
|
669
|
+
'radio-control',
|
|
667
670
|
'receipt',
|
|
668
671
|
'receipt-dollar',
|
|
669
672
|
'receipt-euro',
|
|
@@ -718,6 +721,7 @@ declare const privateIconArray: readonly [
|
|
|
718
721
|
'sort-ascending',
|
|
719
722
|
'sort-descending',
|
|
720
723
|
'sound',
|
|
724
|
+
'split',
|
|
721
725
|
'sports',
|
|
722
726
|
'star',
|
|
723
727
|
'star-circle',
|
|
@@ -784,6 +788,9 @@ declare const privateIconArray: readonly [
|
|
|
784
788
|
'unlock',
|
|
785
789
|
'upload',
|
|
786
790
|
'variant',
|
|
791
|
+
'variant-list',
|
|
792
|
+
'video',
|
|
793
|
+
'video-list',
|
|
787
794
|
'view',
|
|
788
795
|
'viewport-narrow',
|
|
789
796
|
'viewport-short',
|
|
@@ -2100,7 +2107,7 @@ interface ColorPickerProps$1 extends GlobalProps, InputProps {
|
|
|
2100
2107
|
* For RGB and RGBA, both the legacy syntax (comma-separated) and modern syntax (space-separate) are supported.
|
|
2101
2108
|
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb
|
|
2102
2109
|
*
|
|
2103
|
-
* If the value is invalid, the component will
|
|
2110
|
+
* If the value is invalid, the component will return an empty string ''.
|
|
2104
2111
|
*
|
|
2105
2112
|
* Note that the `onChange` handler will emit the value in hex.
|
|
2106
2113
|
*/
|
|
@@ -2407,12 +2414,19 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
|
|
|
2407
2414
|
*/
|
|
2408
2415
|
value?: string;
|
|
2409
2416
|
/**
|
|
2410
|
-
* Callback when any date is selected.
|
|
2417
|
+
* Callback when any date is selected.
|
|
2418
|
+
*
|
|
2419
|
+
* - If `type="single"`, fires when a date is selected and happens before `onChange`.
|
|
2420
|
+
* - If `type="multiple"`, fires when a date is selected before `onChange`.
|
|
2421
|
+
* - 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`.
|
|
2411
2422
|
*/
|
|
2412
2423
|
onInput?: (event: Event) => void;
|
|
2413
2424
|
/**
|
|
2414
|
-
* Callback when the
|
|
2415
|
-
*
|
|
2425
|
+
* Callback when the value is committed.
|
|
2426
|
+
*
|
|
2427
|
+
* - If `type="single"`, fires when a date is selected after `onInput`.
|
|
2428
|
+
* - If `type="multiple"`, fires when a date is selected after `onInput`.
|
|
2429
|
+
* - If `type="range"`, fires when a range is completed by selecting the end date after `onInput`.
|
|
2416
2430
|
*/
|
|
2417
2431
|
onChange?: (event: Event) => void;
|
|
2418
2432
|
}
|
|
@@ -2432,6 +2446,16 @@ interface DateFieldProps$1
|
|
|
2432
2446
|
| 'onViewChange'
|
|
2433
2447
|
>,
|
|
2434
2448
|
AutocompleteProps<DateAutocompleteField> {
|
|
2449
|
+
/**
|
|
2450
|
+
* Callback when the user makes any changes in the field.
|
|
2451
|
+
* Also triggered when a date is selected using the date picker popup before `onChange`.
|
|
2452
|
+
*/
|
|
2453
|
+
onInput?: (event: Event) => void;
|
|
2454
|
+
/**
|
|
2455
|
+
* Callback when the user has **finished editing** a field, e.g. once they have blurred the field.
|
|
2456
|
+
* Also triggered when a date is selected using the date picker popup after `onInput`.
|
|
2457
|
+
*/
|
|
2458
|
+
onChange?: (event: Event) => void;
|
|
2435
2459
|
/**
|
|
2436
2460
|
* Callback when the field has an invalid date.
|
|
2437
2461
|
* This callback will be called, if the date typed is invalid or disabled.
|
|
@@ -2562,7 +2586,7 @@ interface FunctionSettingsProps$1 extends GlobalProps, FormProps$1 {
|
|
|
2562
2586
|
* highlight the fields that caused the errors, and display the error messages
|
|
2563
2587
|
* to the user.
|
|
2564
2588
|
*/
|
|
2565
|
-
onError?: (event:
|
|
2589
|
+
onError?: (event: AggregateErrorEvent<FunctionSettingsError>) => void;
|
|
2566
2590
|
}
|
|
2567
2591
|
export interface FunctionSettingsError extends Error {
|
|
2568
2592
|
/**
|
|
@@ -5081,11 +5105,7 @@ declare global {
|
|
|
5081
5105
|
declare module 'preact' {
|
|
5082
5106
|
namespace createElement.JSX {
|
|
5083
5107
|
interface IntrinsicElements {
|
|
5084
|
-
[tagName$S]: Omit<
|
|
5085
|
-
HTMLAttributes<HTMLElement>,
|
|
5086
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
5087
|
-
> &
|
|
5088
|
-
Omit<ChipJSXProps, 'graphic'> &
|
|
5108
|
+
[tagName$S]: Omit<ChipJSXProps, 'graphic'> &
|
|
5089
5109
|
PreactBaseElementPropsWithChildren<Chip>;
|
|
5090
5110
|
}
|
|
5091
5111
|
}
|
|
@@ -5321,11 +5341,7 @@ declare global {
|
|
|
5321
5341
|
declare module 'preact' {
|
|
5322
5342
|
namespace createElement.JSX {
|
|
5323
5343
|
interface IntrinsicElements {
|
|
5324
|
-
[tagName$O]: Omit<
|
|
5325
|
-
HTMLAttributes<HTMLElement>,
|
|
5326
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
5327
|
-
> &
|
|
5328
|
-
Omit<ClickableChipJSXProps, 'graphic'> &
|
|
5344
|
+
[tagName$O]: Omit<ClickableChipJSXProps, 'graphic'> &
|
|
5329
5345
|
PreactBaseElementPropsWithChildren<ClickableChip>;
|
|
5330
5346
|
}
|
|
5331
5347
|
}
|
|
@@ -5496,11 +5512,7 @@ declare global {
|
|
|
5496
5512
|
declare module 'preact' {
|
|
5497
5513
|
namespace createElement.JSX {
|
|
5498
5514
|
interface IntrinsicElements {
|
|
5499
|
-
[tagName$M]:
|
|
5500
|
-
HTMLAttributes<HTMLElement>,
|
|
5501
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
5502
|
-
> &
|
|
5503
|
-
ColorPickerJSXProps;
|
|
5515
|
+
[tagName$M]: ColorPickerJSXProps;
|
|
5504
5516
|
}
|
|
5505
5517
|
}
|
|
5506
5518
|
}
|
|
@@ -5553,11 +5565,7 @@ declare global {
|
|
|
5553
5565
|
declare module 'preact' {
|
|
5554
5566
|
namespace createElement.JSX {
|
|
5555
5567
|
interface IntrinsicElements {
|
|
5556
|
-
[tagName$L]:
|
|
5557
|
-
HTMLAttributes<HTMLElement>,
|
|
5558
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
5559
|
-
> &
|
|
5560
|
-
DateFieldJSXProps;
|
|
5568
|
+
[tagName$L]: DateFieldJSXProps;
|
|
5561
5569
|
}
|
|
5562
5570
|
}
|
|
5563
5571
|
}
|
|
@@ -5690,6 +5698,8 @@ export interface DropZoneProps
|
|
|
5690
5698
|
>
|
|
5691
5699
|
> {}
|
|
5692
5700
|
|
|
5701
|
+
export type ReplaceType<TType, TFrom, TTo> = Exclude<TType, TFrom> | TTo;
|
|
5702
|
+
|
|
5693
5703
|
declare const setFiles: unique symbol;
|
|
5694
5704
|
|
|
5695
5705
|
declare const internals: unique symbol;
|
|
@@ -5711,13 +5721,19 @@ declare class DropZone extends BaseClass implements DropZoneProps {
|
|
|
5711
5721
|
accessor name: DropZoneProps['name'];
|
|
5712
5722
|
accessor required: DropZoneProps['required'];
|
|
5713
5723
|
get value(): string;
|
|
5714
|
-
|
|
5724
|
+
/** This sets the input value for a file type, which cannot be set programatically, so it can only be reset. */
|
|
5725
|
+
set value(value: '' | null);
|
|
5715
5726
|
get files(): File[];
|
|
5716
5727
|
set files(files: File[]);
|
|
5717
5728
|
/** @private */
|
|
5718
5729
|
[setFiles](files: File[]): void;
|
|
5719
5730
|
/** @private */
|
|
5720
|
-
[getFileInput]():
|
|
5731
|
+
[getFileInput](): ReplaceType<
|
|
5732
|
+
Element | null | undefined,
|
|
5733
|
+
Element,
|
|
5734
|
+
HTMLInputElement
|
|
5735
|
+
>;
|
|
5736
|
+
|
|
5721
5737
|
/** @private */
|
|
5722
5738
|
formResetCallback(): void;
|
|
5723
5739
|
constructor();
|
|
@@ -5730,11 +5746,7 @@ declare global {
|
|
|
5730
5746
|
declare module 'preact' {
|
|
5731
5747
|
namespace createElement.JSX {
|
|
5732
5748
|
interface IntrinsicElements {
|
|
5733
|
-
[tagName$I]:
|
|
5734
|
-
HTMLAttributes<HTMLElement>,
|
|
5735
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
5736
|
-
> &
|
|
5737
|
-
DropZoneJSXProps;
|
|
5749
|
+
[tagName$I]: DropZoneJSXProps;
|
|
5738
5750
|
}
|
|
5739
5751
|
}
|
|
5740
5752
|
}
|
|
@@ -6241,11 +6253,7 @@ declare global {
|
|
|
6241
6253
|
declare module 'preact' {
|
|
6242
6254
|
namespace createElement.JSX {
|
|
6243
6255
|
interface IntrinsicElements {
|
|
6244
|
-
[tagName$z]:
|
|
6245
|
-
HTMLAttributes<HTMLElement>,
|
|
6246
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
6247
|
-
> &
|
|
6248
|
-
MenuJSXProps;
|
|
6256
|
+
[tagName$z]: MenuJSXProps;
|
|
6249
6257
|
}
|
|
6250
6258
|
}
|
|
6251
6259
|
}
|
|
@@ -6345,11 +6353,7 @@ declare global {
|
|
|
6345
6353
|
declare module 'preact' {
|
|
6346
6354
|
namespace createElement.JSX {
|
|
6347
6355
|
interface IntrinsicElements {
|
|
6348
|
-
[tagName$y]: Omit<
|
|
6349
|
-
HTMLAttributes<HTMLElement>,
|
|
6350
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
6351
|
-
> &
|
|
6352
|
-
Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
6356
|
+
[tagName$y]: Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
6353
6357
|
}
|
|
6354
6358
|
}
|
|
6355
6359
|
}
|
|
@@ -6818,11 +6822,7 @@ declare global {
|
|
|
6818
6822
|
declare module 'preact' {
|
|
6819
6823
|
namespace createElement.JSX {
|
|
6820
6824
|
interface IntrinsicElements {
|
|
6821
|
-
[tagName$o]:
|
|
6822
|
-
HTMLAttributes<HTMLElement>,
|
|
6823
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
6824
|
-
> &
|
|
6825
|
-
QueryContainerJSXProps;
|
|
6825
|
+
[tagName$o]: QueryContainerJSXProps;
|
|
6826
6826
|
}
|
|
6827
6827
|
}
|
|
6828
6828
|
}
|
|
@@ -8699,11 +8699,7 @@ declare global {
|
|
|
8699
8699
|
declare module 'react' {
|
|
8700
8700
|
namespace JSX {
|
|
8701
8701
|
interface IntrinsicElements {
|
|
8702
|
-
[tagName$S]: Omit<
|
|
8703
|
-
HTMLAttributes<HTMLElement>,
|
|
8704
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
8705
|
-
> &
|
|
8706
|
-
Omit<ChipJSXProps, 'graphic'> &
|
|
8702
|
+
[tagName$S]: Omit<ChipJSXProps, 'graphic'> &
|
|
8707
8703
|
ReactBaseElementPropsWithChildren<Chip>;
|
|
8708
8704
|
}
|
|
8709
8705
|
}
|
|
@@ -8711,14 +8707,7 @@ declare module 'react' {
|
|
|
8711
8707
|
declare global {
|
|
8712
8708
|
namespace JSX {
|
|
8713
8709
|
interface IntrinsicElements {
|
|
8714
|
-
[tagName$S]: Omit<
|
|
8715
|
-
React.HTMLAttributes<HTMLElement>,
|
|
8716
|
-
Extract<
|
|
8717
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
8718
|
-
`on${Capitalize<string>}`
|
|
8719
|
-
>
|
|
8720
|
-
> &
|
|
8721
|
-
Omit<ChipJSXProps, 'graphic'> &
|
|
8710
|
+
[tagName$S]: Omit<ChipJSXProps, 'graphic'> &
|
|
8722
8711
|
ReactBaseElementPropsWithChildren<Chip>;
|
|
8723
8712
|
}
|
|
8724
8713
|
}
|
|
@@ -8774,11 +8763,7 @@ declare global {
|
|
|
8774
8763
|
declare module 'react' {
|
|
8775
8764
|
namespace JSX {
|
|
8776
8765
|
interface IntrinsicElements {
|
|
8777
|
-
[tagName$O]: Omit<
|
|
8778
|
-
HTMLAttributes<HTMLElement>,
|
|
8779
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
8780
|
-
> &
|
|
8781
|
-
Omit<ClickableChipJSXProps, 'graphic'> &
|
|
8766
|
+
[tagName$O]: Omit<ClickableChipJSXProps, 'graphic'> &
|
|
8782
8767
|
ReactBaseElementPropsWithChildren<ClickableChip>;
|
|
8783
8768
|
}
|
|
8784
8769
|
}
|
|
@@ -8786,14 +8771,7 @@ declare module 'react' {
|
|
|
8786
8771
|
declare global {
|
|
8787
8772
|
namespace JSX {
|
|
8788
8773
|
interface IntrinsicElements {
|
|
8789
|
-
[tagName$O]: Omit<
|
|
8790
|
-
React.HTMLAttributes<HTMLElement>,
|
|
8791
|
-
Extract<
|
|
8792
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
8793
|
-
`on${Capitalize<string>}`
|
|
8794
|
-
>
|
|
8795
|
-
> &
|
|
8796
|
-
Omit<ClickableChipJSXProps, 'graphic'> &
|
|
8774
|
+
[tagName$O]: Omit<ClickableChipJSXProps, 'graphic'> &
|
|
8797
8775
|
ReactBaseElementPropsWithChildren<ClickableChip>;
|
|
8798
8776
|
}
|
|
8799
8777
|
}
|
|
@@ -8815,50 +8793,28 @@ declare global {
|
|
|
8815
8793
|
declare module 'react' {
|
|
8816
8794
|
namespace JSX {
|
|
8817
8795
|
interface IntrinsicElements {
|
|
8818
|
-
[tagName$M]:
|
|
8819
|
-
HTMLAttributes<HTMLElement>,
|
|
8820
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
8821
|
-
> &
|
|
8822
|
-
ColorPickerJSXProps;
|
|
8796
|
+
[tagName$M]: ColorPickerJSXProps;
|
|
8823
8797
|
}
|
|
8824
8798
|
}
|
|
8825
8799
|
}
|
|
8826
8800
|
declare global {
|
|
8827
8801
|
namespace JSX {
|
|
8828
8802
|
interface IntrinsicElements {
|
|
8829
|
-
[tagName$M]:
|
|
8830
|
-
React.HTMLAttributes<HTMLElement>,
|
|
8831
|
-
Extract<
|
|
8832
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
8833
|
-
`on${Capitalize<string>}`
|
|
8834
|
-
>
|
|
8835
|
-
> &
|
|
8836
|
-
ColorPickerJSXProps;
|
|
8803
|
+
[tagName$M]: ColorPickerJSXProps;
|
|
8837
8804
|
}
|
|
8838
8805
|
}
|
|
8839
8806
|
}
|
|
8840
8807
|
declare module 'react' {
|
|
8841
8808
|
namespace JSX {
|
|
8842
8809
|
interface IntrinsicElements {
|
|
8843
|
-
[tagName$L]:
|
|
8844
|
-
HTMLAttributes<HTMLElement>,
|
|
8845
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
8846
|
-
> &
|
|
8847
|
-
DateFieldJSXProps;
|
|
8810
|
+
[tagName$L]: DateFieldJSXProps;
|
|
8848
8811
|
}
|
|
8849
8812
|
}
|
|
8850
8813
|
}
|
|
8851
8814
|
declare global {
|
|
8852
8815
|
namespace JSX {
|
|
8853
8816
|
interface IntrinsicElements {
|
|
8854
|
-
[tagName$L]:
|
|
8855
|
-
React.HTMLAttributes<HTMLElement>,
|
|
8856
|
-
Extract<
|
|
8857
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
8858
|
-
`on${Capitalize<string>}`
|
|
8859
|
-
>
|
|
8860
|
-
> &
|
|
8861
|
-
DateFieldJSXProps;
|
|
8817
|
+
[tagName$L]: DateFieldJSXProps;
|
|
8862
8818
|
}
|
|
8863
8819
|
}
|
|
8864
8820
|
}
|
|
@@ -8893,25 +8849,14 @@ declare global {
|
|
|
8893
8849
|
declare module 'react' {
|
|
8894
8850
|
namespace JSX {
|
|
8895
8851
|
interface IntrinsicElements {
|
|
8896
|
-
[tagName$I]:
|
|
8897
|
-
HTMLAttributes<HTMLElement>,
|
|
8898
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
8899
|
-
> &
|
|
8900
|
-
DropZoneJSXProps;
|
|
8852
|
+
[tagName$I]: DropZoneJSXProps;
|
|
8901
8853
|
}
|
|
8902
8854
|
}
|
|
8903
8855
|
}
|
|
8904
8856
|
declare global {
|
|
8905
8857
|
namespace JSX {
|
|
8906
8858
|
interface IntrinsicElements {
|
|
8907
|
-
[tagName$I]:
|
|
8908
|
-
React.HTMLAttributes<HTMLElement>,
|
|
8909
|
-
Extract<
|
|
8910
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
8911
|
-
`on${Capitalize<string>}`
|
|
8912
|
-
>
|
|
8913
|
-
> &
|
|
8914
|
-
DropZoneJSXProps;
|
|
8859
|
+
[tagName$I]: DropZoneJSXProps;
|
|
8915
8860
|
}
|
|
8916
8861
|
}
|
|
8917
8862
|
}
|
|
@@ -9034,50 +8979,28 @@ declare global {
|
|
|
9034
8979
|
declare module 'react' {
|
|
9035
8980
|
namespace JSX {
|
|
9036
8981
|
interface IntrinsicElements {
|
|
9037
|
-
[tagName$z]:
|
|
9038
|
-
HTMLAttributes<HTMLElement>,
|
|
9039
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
9040
|
-
> &
|
|
9041
|
-
MenuJSXProps;
|
|
8982
|
+
[tagName$z]: MenuJSXProps;
|
|
9042
8983
|
}
|
|
9043
8984
|
}
|
|
9044
8985
|
}
|
|
9045
8986
|
declare global {
|
|
9046
8987
|
namespace JSX {
|
|
9047
8988
|
interface IntrinsicElements {
|
|
9048
|
-
[tagName$z]:
|
|
9049
|
-
React.HTMLAttributes<HTMLElement>,
|
|
9050
|
-
Extract<
|
|
9051
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
9052
|
-
`on${Capitalize<string>}`
|
|
9053
|
-
>
|
|
9054
|
-
> &
|
|
9055
|
-
MenuJSXProps;
|
|
8989
|
+
[tagName$z]: MenuJSXProps;
|
|
9056
8990
|
}
|
|
9057
8991
|
}
|
|
9058
8992
|
}
|
|
9059
8993
|
declare module 'react' {
|
|
9060
8994
|
namespace JSX {
|
|
9061
8995
|
interface IntrinsicElements {
|
|
9062
|
-
[tagName$y]: Omit<
|
|
9063
|
-
HTMLAttributes<HTMLElement>,
|
|
9064
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
9065
|
-
> &
|
|
9066
|
-
Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
8996
|
+
[tagName$y]: Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
9067
8997
|
}
|
|
9068
8998
|
}
|
|
9069
8999
|
}
|
|
9070
9000
|
declare global {
|
|
9071
9001
|
namespace JSX {
|
|
9072
9002
|
interface IntrinsicElements {
|
|
9073
|
-
[tagName$y]: Omit<
|
|
9074
|
-
React.HTMLAttributes<HTMLElement>,
|
|
9075
|
-
Extract<
|
|
9076
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
9077
|
-
`on${Capitalize<string>}`
|
|
9078
|
-
>
|
|
9079
|
-
> &
|
|
9080
|
-
Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
9003
|
+
[tagName$y]: Omit<ModalJSXProps, 'primaryAction' | 'secondaryActions'>;
|
|
9081
9004
|
}
|
|
9082
9005
|
}
|
|
9083
9006
|
}
|
|
@@ -9224,25 +9147,14 @@ declare global {
|
|
|
9224
9147
|
declare module 'react' {
|
|
9225
9148
|
namespace JSX {
|
|
9226
9149
|
interface IntrinsicElements {
|
|
9227
|
-
[tagName$o]:
|
|
9228
|
-
HTMLAttributes<HTMLElement>,
|
|
9229
|
-
Extract<keyof HTMLAttributes<HTMLElement>, `on${Capitalize<string>}`>
|
|
9230
|
-
> &
|
|
9231
|
-
QueryContainerJSXProps;
|
|
9150
|
+
[tagName$o]: QueryContainerJSXProps;
|
|
9232
9151
|
}
|
|
9233
9152
|
}
|
|
9234
9153
|
}
|
|
9235
9154
|
declare global {
|
|
9236
9155
|
namespace JSX {
|
|
9237
9156
|
interface IntrinsicElements {
|
|
9238
|
-
[tagName$o]:
|
|
9239
|
-
React.HTMLAttributes<HTMLElement>,
|
|
9240
|
-
Extract<
|
|
9241
|
-
keyof React.HTMLAttributes<HTMLElement>,
|
|
9242
|
-
`on${Capitalize<string>}`
|
|
9243
|
-
>
|
|
9244
|
-
> &
|
|
9245
|
-
QueryContainerJSXProps;
|
|
9157
|
+
[tagName$o]: QueryContainerJSXProps;
|
|
9246
9158
|
}
|
|
9247
9159
|
}
|
|
9248
9160
|
}
|