@haloduck/ui 2.0.44 → 2.0.45
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/fesm2022/haloduck-ui.mjs +178 -166
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/haloduck-ui-2.0.45.tgz +0 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/public/i18n/haloduck/en.json +2 -1
- package/public/i18n/haloduck/ko.json +2 -1
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ declare class FileUploaderComponent implements ControlValueAccessor {
|
|
|
357
357
|
setDisabledState?(isDisabled: boolean): void;
|
|
358
358
|
onFileSelected(event: Event): void;
|
|
359
359
|
removeFile(index: number): void;
|
|
360
|
+
onFileTagChanged(index: number, tags: string[]): void;
|
|
360
361
|
onDragOver(event: DragEvent): void;
|
|
361
362
|
onDragLeave(event: DragEvent): void;
|
|
362
363
|
onDrop(event: DragEvent): void;
|
package/package.json
CHANGED
|
@@ -51,5 +51,6 @@
|
|
|
51
51
|
"ui.table.Load More...": "Load More...",
|
|
52
52
|
"ui.table.No data available.": "No data available.",
|
|
53
53
|
"ui.table.Show headers": "Show headers",
|
|
54
|
-
"ui.table.settings": "Table settings"
|
|
54
|
+
"ui.table.settings": "Table settings",
|
|
55
|
+
"ui.tag.Please input tags.": "Please input tags."
|
|
55
56
|
}
|