@dnncommunity/dnn-elements 0.23.2 → 0.23.3
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/dnn-image-cropper/types.ts"],"names":[],"mappings":"AAuBC,CAAC","sourcesContent":["export interface ImageCropperResx {\r\n /** The text of the capture button. */\r\n capture?: string
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/dnn-image-cropper/types.ts"],"names":[],"mappings":"AAuBC,CAAC","sourcesContent":["export interface ImageCropperResx {\r\n /** The text of the capture button. */\r\n capture?: string;\r\n\r\n /** The text of the Drag and Drop button. */\r\n dragAndDropFile?: string;\r\n\r\n /** The word \"or\" shown between the controls. */\r\n or?: string;\r\n\r\n /** The text of the button to take a picture. */\r\n takePicture?: string;\r\n\r\n /** The text of the button to upload an image. */\r\n uploadFile?: string;\r\n\r\n /** The text shown when an image is smaller than the minimum size supported.\r\n * {width} and {height} will be replaced by the minimum width and height. \r\n */\r\n imageTooSmall?: string;\r\n\r\n /** The text of the Close button. */\r\n modalCloseText?: string;\r\n};"]}
|
|
@@ -2,17 +2,17 @@ export interface ImageCropperResx {
|
|
|
2
2
|
/** The text of the capture button. */
|
|
3
3
|
capture?: string;
|
|
4
4
|
/** The text of the Drag and Drop button. */
|
|
5
|
-
dragAndDropFile
|
|
5
|
+
dragAndDropFile?: string;
|
|
6
6
|
/** The word "or" shown between the controls. */
|
|
7
|
-
or
|
|
7
|
+
or?: string;
|
|
8
8
|
/** The text of the button to take a picture. */
|
|
9
|
-
takePicture
|
|
9
|
+
takePicture?: string;
|
|
10
10
|
/** The text of the button to upload an image. */
|
|
11
|
-
uploadFile
|
|
11
|
+
uploadFile?: string;
|
|
12
12
|
/** The text shown when an image is smaller than the minimum size supported.
|
|
13
13
|
* {width} and {height} will be replaced by the minimum width and height.
|
|
14
14
|
*/
|
|
15
|
-
imageTooSmall
|
|
15
|
+
imageTooSmall?: string;
|
|
16
16
|
/** The text of the Close button. */
|
|
17
|
-
modalCloseText
|
|
17
|
+
modalCloseText?: string;
|
|
18
18
|
}
|
package/package.json
CHANGED