@haiilo/catalyst 13.2.0 → 13.3.0
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/dist/catalyst/catalyst.esm.js +1 -1
- package/dist/catalyst/{p-1823cdaa.entry.js → p-cd47a310.entry.js} +4 -4
- package/dist/catalyst/p-cd47a310.entry.js.map +1 -0
- package/dist/cjs/cat-alert_30.cjs.entry.js +12 -5
- package/dist/cjs/cat-alert_30.cjs.entry.js.map +1 -1
- package/dist/collection/components/cat-input/cat-input.js +31 -5
- package/dist/collection/components/cat-input/cat-input.js.map +1 -1
- package/dist/components/cat-input2.js +12 -5
- package/dist/components/cat-input2.js.map +1 -1
- package/dist/esm/cat-alert_30.entry.js +12 -5
- package/dist/esm/cat-alert_30.entry.js.map +1 -1
- package/dist/types/components/cat-input/cat-input.d.ts +4 -0
- package/dist/types/components.d.ts +5 -0
- package/package.json +2 -2
- package/dist/catalyst/p-1823cdaa.entry.js.map +0 -1
|
@@ -203,6 +203,10 @@ export declare class CatInput {
|
|
|
203
203
|
* Emitted when the input loses focus.
|
|
204
204
|
*/
|
|
205
205
|
catBlur: EventEmitter<FocusEvent>;
|
|
206
|
+
/**
|
|
207
|
+
* Emitted if the input type is "file" and files are selected.
|
|
208
|
+
*/
|
|
209
|
+
catChangeFiles: EventEmitter<FileList | null>;
|
|
206
210
|
componentWillLoad(): void;
|
|
207
211
|
componentWillRender(): void;
|
|
208
212
|
/**
|
|
@@ -2105,6 +2105,7 @@ declare global {
|
|
|
2105
2105
|
"catChange": string;
|
|
2106
2106
|
"catFocus": FocusEvent;
|
|
2107
2107
|
"catBlur": FocusEvent;
|
|
2108
|
+
"catChangeFiles": FileList | null;
|
|
2108
2109
|
}
|
|
2109
2110
|
/**
|
|
2110
2111
|
* Inputs are used to allow users to provide text input when the expected input
|
|
@@ -3296,6 +3297,10 @@ declare namespace LocalJSX {
|
|
|
3296
3297
|
* Emitted when the value is changed.
|
|
3297
3298
|
*/
|
|
3298
3299
|
"onCatChange"?: (event: CatInputCustomEvent<string>) => void;
|
|
3300
|
+
/**
|
|
3301
|
+
* Emitted if the input type is "file" and files are selected.
|
|
3302
|
+
*/
|
|
3303
|
+
"onCatChangeFiles"?: (event: CatInputCustomEvent<FileList | null>) => void;
|
|
3299
3304
|
/**
|
|
3300
3305
|
* Emitted when the input received focus.
|
|
3301
3306
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haiilo/catalyst",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.3.0",
|
|
4
4
|
"description": "Catalyst Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"sanitize.css": "13.0.0",
|
|
40
40
|
"tabbable": "6.2.0",
|
|
41
41
|
"toastify-js": "1.12.0",
|
|
42
|
-
"@haiilo/catalyst-tokens": "13.
|
|
42
|
+
"@haiilo/catalyst-tokens": "13.3.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/core": "^7.24.7",
|