We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b86275 commit 444b411Copy full SHA for 444b411
src/lib/picker.ts
@@ -690,7 +690,7 @@ export interface PickerOptions {
690
/**
691
* Whether to use the new transformations UI. Defaults to `false`.
692
*/
693
- useNewTransformer?: boolean;
+ transformationsUI?: boolean;
694
695
* Options for local file uploads.
696
src/schema/picker.schema.ts
@@ -303,6 +303,9 @@ export const PickerParamsSchema = {
303
type: 'object',
304
additionalProperties: false,
305
properties: {
306
+ config: {
307
+ type: 'object',
308
+ },
309
circle: {
310
type: 'boolean',
311
},
@@ -443,7 +446,7 @@ export const PickerParamsSchema = {
443
446
useSentryBreadcrumbs: {
444
447
445
448
- useNewTransformer: {
449
+ transformationsUI: {
450
451
452
pasteMode: {
0 commit comments