Skip to content

Commit e90c6ec

Browse files
committed
v5.19.0
1 parent 58fb453 commit e90c6ec

30 files changed

+1939
-1530
lines changed

ACKNOWLEDGEMENTS.md

+380
Large diffs are not rendered by default.

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
### Fixed
88

9+
## 5.19.0
10+
11+
### Changed
12+
13+
- Updated the Text and Text Design tool fonts. Please replace your old `assets` folder and fonts with the new files from `node_modules/photoeditorsdk/assets` or [here](https://github.com/imgly/pesdk-html5-build/tree/main/assets)
14+
15+
### Added
16+
17+
### Fixed
18+
919
## 5.18.0
1020

1121
### Changed
Binary file not shown.
-40.6 KB
Binary file not shown.
-33.7 KB
Binary file not shown.
40.6 KB
Binary file not shown.
Binary file not shown.
76.8 KB
Binary file not shown.
54.1 KB
Binary file not shown.
-28.7 KB
Binary file not shown.

cjs/index.js

+196-196
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cjs/no-polyfills.js

+271-271
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/basic-2GQZUPAW.js

-91
This file was deleted.

esm/basic-4OKIP2P7.js

+91
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/chunk-RL5BT2UX.js

+311
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/chunk-26X3PXJM.js esm/chunk-UDNMGV4K.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/chunk-TY26UOQT.js esm/chunk-Y3NSLKHU.js

+155-155
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/chunk-YOZB2B36.js

-311
This file was deleted.

esm/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/no-polyfills.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/serialization-BTVUEVKM.js esm/serialization-MNFH2R67.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

legacy/index.js

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "photoeditorsdk",
3-
"version": "5.18.0",
3+
"version": "5.19.0",
44
"description": "The most comprehensive photo editor SDK for HTML5",
55
"main": "index.js",
66
"module": "index.esm.js",

types/components/advanced/card.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ export declare enum CardType {
88
export interface CustomCardProps {
99
tool: Tool;
1010
label: string;
11+
role?: string;
1112
image?: string;
13+
'aria-label'?: string;
14+
'aria-expanded'?: boolean;
1215
isActive?: boolean;
1316
type: CardType;
1417
isDisabled?: boolean;

types/components/base/label.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="react" />
22
export interface CustomLabelProps {
3+
id?: string;
34
label: string;
45
htmlFor?: string;
56
isDisabled?: boolean;

types/components/base/slider/sliderComponents.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export interface SliderTrackProps {
1919
}
2020
export interface SliderInputProps {
2121
id: string;
22+
'aria-label'?: string;
2223
value?: number;
2324
decimal?: number;
2425
divider?: number;

types/configuration/custom/language.d.ts

+14
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,17 @@ export interface LibraryLocale {
7878
buttonWebcamClose?: string;
7979
placeholderSearch?: string;
8080
noResults?: string;
81+
itemAriaLabel?: string;
82+
categoryAriaLabel?: string;
8183
};
8284
}
8385
export interface FilterLocale {
8486
title?: string;
8587
controls?: {
8688
buttonReset?: string;
8789
sliderIntensity?: string;
90+
itemAriaLabel?: string;
91+
categoryAriaLabel?: string;
8892
};
8993
categories?: {
9094
imgly_filter_category_duotone?: string;
@@ -196,6 +200,7 @@ export interface FocusLocale {
196200
controls?: {
197201
buttonReset?: string;
198202
sliderIntensity?: string;
203+
itemAriaLabel?: string;
199204
};
200205
items?: {
201206
radial?: string;
@@ -228,6 +233,7 @@ export interface OverlayLocale {
228233
blendModeColorBurn?: string;
229234
tabOpacity?: string;
230235
tabBlendMode?: string;
236+
itemAriaLabel?: string;
231237
};
232238
items?: {
233239
imgly_overlay_bokeh?: string;
@@ -257,6 +263,8 @@ export interface StickerLocale {
257263
selectColor?: string;
258264
tabColor?: string;
259265
tabOpacity?: string;
266+
itemAriaLabel?: string;
267+
categoryAriaLabel?: string;
260268
};
261269
categories?: {
262270
imgly_sticker_emoticons?: string;
@@ -411,6 +419,7 @@ export interface TextDesignLocale {
411419
selectColor?: string;
412420
tabColor?: string;
413421
tabShuffle?: string;
422+
itemAriaLabel?: string;
414423
};
415424
canvasControls?: {
416425
placeholderText?: string;
@@ -446,6 +455,7 @@ export interface FrameLocale {
446455
tabColor?: string;
447456
tabOpacity?: string;
448457
tabSize?: string;
458+
itemAriaLabel?: string;
449459
};
450460
items?: {
451461
imgly_frame_dia?: string;
@@ -466,6 +476,10 @@ export interface TransformLocale {
466476
tabFlipAndRotate?: string;
467477
tabResolution?: string;
468478
tabCropSize?: string;
479+
itemAriaLabel?: string;
480+
categoryAriaLabel?: string;
481+
inputHeightAriaLabel?: string;
482+
inputWidthAriaLabel?: string;
469483
};
470484
categories?: {
471485
imgly_transforms_common?: string;

types/tools/text/config.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ export declare class TextConfiguration {
3636
* { 'imgly_font_amaticsc' },
3737
* { 'imgly_font_archivo_black' },
3838
* { 'imgly_font_bungee_inline' },
39-
* { 'imgly_font_campton_bold' },
4039
* { 'imgly_font_carter_one' },
4140
* { 'imgly_font_codystar' },
4241
* { 'imgly_font_fira_sans_regular' },
43-
* { 'imgly_font_galano_grotesque_bold' },
4442
* { 'imgly_font_krona_one' },
4543
* { 'imgly_font_kumar_one_outline' },
44+
* { 'imgly_font_lexend_bold' },
4645
* { 'imgly_font_lobster' },
4746
* { 'imgly_font_molle' },
4847
* { 'imgly_font_monoton' },
@@ -51,6 +50,7 @@ export declare class TextConfiguration {
5150
* { 'imgly_font_ostrich_sans_black' },
5251
* { 'imgly_font_ostrich_sans_bold' },
5352
* { 'imgly_font_oswald_semi_bold' },
53+
* { 'imgly_font_outfit_bold' },
5454
* { 'imgly_font_palanquin_dark_semi_bold' },
5555
* { 'imgly_font_poppins' },
5656
* { 'imgly_font_permanent_marker' },

umd/index.js

+208-208
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

umd/no-polyfills.js

+287-287
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)