We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6687dd commit 7bf2997Copy full SHA for 7bf2997
src/lib/picker.ts
@@ -513,6 +513,10 @@ export interface PickerOptions {
513
* When true removes ability to edit images.
514
*/
515
disableTransformer?: boolean;
516
+ /**
517
+ * Disables alt text view/edit in the summary screen.
518
+ */
519
+ disableAltText?: boolean;
520
/**
521
* Disables local image thumbnail previews in the summary screen.
522
src/schema/picker.schema.ts
@@ -140,6 +140,9 @@ export const PickerParamsSchema = {
140
disableTransformer: {
141
type: 'boolean',
142
},
143
+ disableAltText: {
144
+ type: 'boolean',
145
+ },
146
disableThumbnails: {
147
148
0 commit comments