@qualcomm-ui/react 1.21.2 → 1.22.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/file-input/file-input-clear-trigger.d.ts +6 -0
- package/dist/file-input/file-input-clear-trigger.d.ts.map +1 -0
- package/dist/file-input/file-input-control.d.ts +10 -0
- package/dist/file-input/file-input-control.d.ts.map +1 -0
- package/dist/file-input/file-input-display.d.ts +10 -0
- package/dist/file-input/file-input-display.d.ts.map +1 -0
- package/dist/file-input/file-input-error-text.d.ts +12 -0
- package/dist/file-input/file-input-error-text.d.ts.map +1 -0
- package/dist/file-input/file-input-hidden-input.d.ts +6 -0
- package/dist/file-input/file-input-hidden-input.d.ts.map +1 -0
- package/dist/file-input/file-input-label.d.ts +7 -0
- package/dist/file-input/file-input-label.d.ts.map +1 -0
- package/dist/file-input/file-input-root.d.ts +7 -0
- package/dist/file-input/file-input-root.d.ts.map +1 -0
- package/dist/file-input/file-input.d.ts +60 -0
- package/dist/file-input/file-input.d.ts.map +1 -0
- package/dist/file-input/index.d.ts +24 -0
- package/dist/file-input/index.d.ts.map +1 -0
- package/dist/file-input/index.js +3 -0
- package/dist/file-input/index.js.map +7 -0
- package/dist/file-upload/file-upload-browse-text.d.ts +6 -0
- package/dist/file-upload/file-upload-browse-text.d.ts.map +1 -0
- package/dist/file-upload/file-upload-clear-trigger.d.ts +6 -0
- package/dist/file-upload/file-upload-clear-trigger.d.ts.map +1 -0
- package/dist/file-upload/file-upload-context.d.ts +6 -0
- package/dist/file-upload/file-upload-context.d.ts.map +1 -0
- package/dist/file-upload/file-upload-dropzone-hint.d.ts +6 -0
- package/dist/file-upload/file-upload-dropzone-hint.d.ts.map +1 -0
- package/dist/file-upload/file-upload-dropzone-icon.d.ts +13 -0
- package/dist/file-upload/file-upload-dropzone-icon.d.ts.map +1 -0
- package/dist/file-upload/file-upload-dropzone-text.d.ts +6 -0
- package/dist/file-upload/file-upload-dropzone-text.d.ts.map +1 -0
- package/dist/file-upload/file-upload-dropzone.d.ts +6 -0
- package/dist/file-upload/file-upload-dropzone.d.ts.map +1 -0
- package/dist/file-upload/file-upload-error-text.d.ts +12 -0
- package/dist/file-upload/file-upload-error-text.d.ts.map +1 -0
- package/dist/file-upload/file-upload-hidden-input.d.ts +6 -0
- package/dist/file-upload/file-upload-hidden-input.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-delete-button.d.ts +13 -0
- package/dist/file-upload/file-upload-item-delete-button.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-group.d.ts +6 -0
- package/dist/file-upload/file-upload-item-group.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-name.d.ts +6 -0
- package/dist/file-upload/file-upload-item-name.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-preview-image.d.ts +6 -0
- package/dist/file-upload/file-upload-item-preview-image.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-preview.d.ts +6 -0
- package/dist/file-upload/file-upload-item-preview.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item-size-text.d.ts +6 -0
- package/dist/file-upload/file-upload-item-size-text.d.ts.map +1 -0
- package/dist/file-upload/file-upload-item.d.ts +6 -0
- package/dist/file-upload/file-upload-item.d.ts.map +1 -0
- package/dist/file-upload/file-upload-label.d.ts +7 -0
- package/dist/file-upload/file-upload-label.d.ts.map +1 -0
- package/dist/file-upload/file-upload-root.d.ts +7 -0
- package/dist/file-upload/file-upload-root.d.ts.map +1 -0
- package/dist/file-upload/file-upload-trigger.d.ts +6 -0
- package/dist/file-upload/file-upload-trigger.d.ts.map +1 -0
- package/dist/file-upload/index.d.ts +2 -0
- package/dist/file-upload/index.d.ts.map +1 -0
- package/dist/file-upload/index.js +3 -0
- package/dist/file-upload/index.js.map +7 -0
- package/dist/file-upload/qds-file-upload-context.d.ts +3 -0
- package/dist/file-upload/qds-file-upload-context.d.ts.map +1 -0
- package/dist/link/index.js +1 -1
- package/dist/link/index.js.map +2 -2
- package/dist/link/link.d.ts +1 -1
- package/dist/link/link.d.ts.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadClearTriggerProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileInputClearTriggerProps extends CoreFileUploadClearTriggerProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileInputClearTrigger(props: FileInputClearTriggerProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-input-clear-trigger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-clear-trigger.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-clear-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAMvC,OAAO,EACL,KAAK,+BAA+B,EAErC,MAAM,qCAAqC,CAAA;AAG5C,MAAM,WAAW,0BAA2B,SAAQ,+BAA+B;CAAG;AAEtF,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,0BAA0B,GAChC,YAAY,CAiBd"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type ElementRenderProp } from "@qualcomm-ui/react-core/system";
|
|
3
|
+
export interface FileInputControlProps extends ElementRenderProp<"div"> {
|
|
4
|
+
/**
|
|
5
|
+
* React {@link https://react.dev/learn/passing-props-to-a-component#passing-jsx-as-children children} prop.
|
|
6
|
+
*/
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export declare function FileInputControl({ children, ...props }: FileInputControlProps): ReactElement;
|
|
10
|
+
//# sourceMappingURL=file-input-control.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-control.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-control.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAQlD,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAGvC,MAAM,WAAW,qBAAsB,SAAQ,iBAAiB,CAAC,KAAK,CAAC;IACrE;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,qBAAqB,GAAG,YAAY,CAkBtC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type ElementRenderProp } from "@qualcomm-ui/react-core/system";
|
|
3
|
+
export interface FileInputDisplayProps extends ElementRenderProp<"span"> {
|
|
4
|
+
/**
|
|
5
|
+
* Text shown when no file has been selected.
|
|
6
|
+
*/
|
|
7
|
+
placeholder?: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export declare function FileInputDisplay({ placeholder, ...props }: FileInputDisplayProps): ReactElement;
|
|
10
|
+
//# sourceMappingURL=file-input-display.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-display.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-display.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAKlD,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAGvC,MAAM,WAAW,qBAAsB,SAAQ,iBAAiB,CAAC,MAAM,CAAC;IACtE;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAA;CACxB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,WAAW,EACX,GAAG,KAAK,EACT,EAAE,qBAAqB,GAAG,YAAY,CAkBtC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type CoreFileUploadErrorTextProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
import type { LucideIconOrElement } from "@qualcomm-ui/react-core/lucide";
|
|
4
|
+
export interface FileInputErrorTextProps extends CoreFileUploadErrorTextProps {
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
/**
|
|
7
|
+
* Optional error indicator icon.
|
|
8
|
+
*/
|
|
9
|
+
icon?: LucideIconOrElement;
|
|
10
|
+
}
|
|
11
|
+
export declare function FileInputErrorText({ children, icon, ...props }: FileInputErrorTextProps): ReactElement;
|
|
12
|
+
//# sourceMappingURL=file-input-error-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-error-text.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-error-text.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAIlD,OAAO,EAEL,KAAK,4BAA4B,EAClC,MAAM,qCAAqC,CAAA;AAC5C,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAGvE,MAAM,WAAW,uBAAwB,SAAQ,4BAA4B;IAC3E,QAAQ,CAAC,EAAE,SAAS,CAAA;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,IAAI,EACJ,GAAG,KAAK,EACT,EAAE,uBAAuB,GAAG,YAAY,CAUxC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadHiddenInputProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileInputHiddenInputProps extends CoreFileUploadHiddenInputProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileInputHiddenInput(props: FileInputHiddenInputProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-input-hidden-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-hidden-input.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-hidden-input.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,8BAA8B,EACpC,MAAM,qCAAqC,CAAA;AAE5C,MAAM,WAAW,yBAA0B,SAAQ,8BAA8B;CAAG;AAEpF,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,yBAAyB,GAC/B,YAAY,CAEd"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type CoreFileUploadLabelProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileInputLabelProps extends CoreFileUploadLabelProps {
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
}
|
|
6
|
+
export declare function FileInputLabel({ children, ...props }: FileInputLabelProps): ReactElement;
|
|
7
|
+
//# sourceMappingURL=file-input-label.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-label.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-label.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAMlD,OAAO,EAEL,KAAK,wBAAwB,EAE9B,MAAM,qCAAqC,CAAA;AAG5C,MAAM,WAAW,mBAAoB,SAAQ,wBAAwB;IACnE,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,wBAAgB,cAAc,CAAC,EAC7B,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,mBAAmB,GAAG,YAAY,CAiBpC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ReactElement } from "react";
|
|
2
|
+
import { type QdsReactInputApiProps } from "@qualcomm-ui/react/input";
|
|
3
|
+
import { type CoreFileUploadRootProps } from "@qualcomm-ui/react-core/file-upload";
|
|
4
|
+
export interface FileInputRootProps extends CoreFileUploadRootProps, QdsReactInputApiProps {
|
|
5
|
+
}
|
|
6
|
+
export declare function FileInputRoot({ endIcon, invalid, size, startIcon, ...props }: FileInputRootProps): ReactElement;
|
|
7
|
+
//# sourceMappingURL=file-input-root.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input-root.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input-root.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAC,KAAK,YAAY,EAAU,MAAM,OAAO,CAAA;AAKhD,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,qCAAqC,CAAA;AAI5C,MAAM,WAAW,kBACf,SAAQ,uBAAuB,EAAE,qBAAqB;CAAG;AAE3D,wBAAgB,aAAa,CAAC,EAC5B,OAAO,EACP,OAAO,EACP,IAAI,EACJ,SAAS,EACT,GAAG,KAAK,EACT,EAAE,kBAAkB,GAAG,YAAY,CAkBnC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type FileInputClearTriggerProps } from "./file-input-clear-trigger";
|
|
3
|
+
import { type FileInputControlProps } from "./file-input-control";
|
|
4
|
+
import { type FileInputDisplayProps } from "./file-input-display";
|
|
5
|
+
import { type FileInputErrorTextProps } from "./file-input-error-text";
|
|
6
|
+
import { type FileInputHiddenInputProps } from "./file-input-hidden-input";
|
|
7
|
+
import { type FileInputLabelProps } from "./file-input-label";
|
|
8
|
+
import { type FileInputRootProps } from "./file-input-root";
|
|
9
|
+
export interface FileInputProps extends FileInputRootProps {
|
|
10
|
+
/**
|
|
11
|
+
* The simple FileInput doesn't support children.
|
|
12
|
+
*/
|
|
13
|
+
children?: never;
|
|
14
|
+
/**
|
|
15
|
+
* When `true`, renders a clear button that resets the selected file on click.
|
|
16
|
+
* The button only appears when a file has been selected.
|
|
17
|
+
*
|
|
18
|
+
* @default true
|
|
19
|
+
*/
|
|
20
|
+
clearable?: boolean;
|
|
21
|
+
clearTriggerProps?: FileInputClearTriggerProps;
|
|
22
|
+
/**
|
|
23
|
+
* Props applied to the visible input-like control.
|
|
24
|
+
*/
|
|
25
|
+
controlProps?: FileInputControlProps;
|
|
26
|
+
/**
|
|
27
|
+
* Props applied to the selected file name display.
|
|
28
|
+
*/
|
|
29
|
+
displayProps?: FileInputDisplayProps;
|
|
30
|
+
/**
|
|
31
|
+
* Optional error message that describes the element when {@link invalid} is true.
|
|
32
|
+
*/
|
|
33
|
+
errorText?: ReactNode;
|
|
34
|
+
/**
|
|
35
|
+
* Props applied to the error text element.
|
|
36
|
+
*/
|
|
37
|
+
errorTextProps?: FileInputErrorTextProps;
|
|
38
|
+
/**
|
|
39
|
+
* Props applied to the hidden file input element.
|
|
40
|
+
*/
|
|
41
|
+
hiddenInputProps?: FileInputHiddenInputProps;
|
|
42
|
+
/**
|
|
43
|
+
* Optional label describing the file input. This element is automatically
|
|
44
|
+
* associated with the hidden file input for accessibility.
|
|
45
|
+
*/
|
|
46
|
+
label?: ReactNode;
|
|
47
|
+
/**
|
|
48
|
+
* Props applied to the label element.
|
|
49
|
+
*/
|
|
50
|
+
labelProps?: FileInputLabelProps;
|
|
51
|
+
/**
|
|
52
|
+
* Text shown when no file has been selected.
|
|
53
|
+
*/
|
|
54
|
+
placeholder?: ReactNode;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @since 1.22.0
|
|
58
|
+
*/
|
|
59
|
+
export declare function FileInput({ clearable, clearTriggerProps, controlProps, displayProps, errorText, errorTextProps, hiddenInputProps, label, labelProps, placeholder, ...props }: FileInputProps): ReactElement;
|
|
60
|
+
//# sourceMappingURL=file-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-input.d.ts","sourceRoot":"","sources":["../../src/file-input/file-input.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAIlD,OAAO,EAEL,KAAK,0BAA0B,EAChC,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,yBAAyB,CAAA;AAChC,OAAO,EAEL,KAAK,yBAAyB,EAC/B,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAiB,KAAK,mBAAmB,EAAC,MAAM,oBAAoB,CAAA;AAC3E,OAAO,EAAgB,KAAK,kBAAkB,EAAC,MAAM,mBAAmB,CAAA;AAExE,MAAM,WAAW,cAAe,SAAQ,kBAAkB;IACxD;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAA;IAEhB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB,iBAAiB,CAAC,EAAE,0BAA0B,CAAA;IAE9C;;OAEG;IACH,YAAY,CAAC,EAAE,qBAAqB,CAAA;IAEpC;;OAEG;IACH,YAAY,CAAC,EAAE,qBAAqB,CAAA;IAEpC;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;IAErB;;OAEG;IACH,cAAc,CAAC,EAAE,uBAAuB,CAAA;IAExC;;OAEG;IACH,gBAAgB,CAAC,EAAE,yBAAyB,CAAA;IAE5C;;;OAGG;IACH,KAAK,CAAC,EAAE,SAAS,CAAA;IAEjB;;OAEG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAA;IAEhC;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAA;CACxB;AAED;;GAEG;AACH,wBAAgB,SAAS,CAAC,EACxB,SAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,YAAY,EACZ,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,KAAK,EACL,UAAU,EACV,WAAW,EACX,GAAG,KAAK,EACT,EAAE,cAAc,GAAG,YAAY,CAqC/B"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { FunctionComponent } from "react";
|
|
2
|
+
import { type FileInputProps, FileInput as SimpleFileInput } from "./file-input";
|
|
3
|
+
import { type FileInputClearTriggerProps } from "./file-input-clear-trigger";
|
|
4
|
+
import { type FileInputControlProps } from "./file-input-control";
|
|
5
|
+
import { type FileInputDisplayProps } from "./file-input-display";
|
|
6
|
+
import { type FileInputErrorTextProps } from "./file-input-error-text";
|
|
7
|
+
import { type FileInputHiddenInputProps } from "./file-input-hidden-input";
|
|
8
|
+
import { type FileInputLabelProps } from "./file-input-label";
|
|
9
|
+
import { type FileInputRootProps } from "./file-input-root";
|
|
10
|
+
export type { FileInputClearTriggerProps, FileInputLabelProps, FileInputControlProps, FileInputHiddenInputProps, FileInputRootProps, FileInputErrorTextProps, FileInputDisplayProps, FileInputProps, };
|
|
11
|
+
type FileInputComponent = typeof SimpleFileInput & {
|
|
12
|
+
ClearTrigger: FunctionComponent<FileInputClearTriggerProps>;
|
|
13
|
+
Control: FunctionComponent<FileInputControlProps>;
|
|
14
|
+
Display: FunctionComponent<FileInputDisplayProps>;
|
|
15
|
+
ErrorText: FunctionComponent<FileInputErrorTextProps>;
|
|
16
|
+
HiddenInput: FunctionComponent<FileInputHiddenInputProps>;
|
|
17
|
+
Label: FunctionComponent<FileInputLabelProps>;
|
|
18
|
+
Root: FunctionComponent<FileInputRootProps>;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @since 1.22.0
|
|
22
|
+
*/
|
|
23
|
+
export declare const FileInput: FileInputComponent;
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/file-input/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,OAAO,CAAA;AAE5C,OAAO,EAAC,KAAK,cAAc,EAAE,SAAS,IAAI,eAAe,EAAC,MAAM,cAAc,CAAA;AAC9E,OAAO,EAEL,KAAK,0BAA0B,EAChC,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,yBAAyB,CAAA;AAChC,OAAO,EAEL,KAAK,yBAAyB,EAC/B,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAiB,KAAK,mBAAmB,EAAC,MAAM,oBAAoB,CAAA;AAC3E,OAAO,EAAgB,KAAK,kBAAkB,EAAC,MAAM,mBAAmB,CAAA;AAExE,YAAY,EACV,0BAA0B,EAC1B,mBAAmB,EACnB,qBAAqB,EACrB,yBAAyB,EACzB,kBAAkB,EAClB,uBAAuB,EACvB,qBAAqB,EACrB,cAAc,GACf,CAAA;AAED,KAAK,kBAAkB,GAAG,OAAO,eAAe,GAAG;IACjD,YAAY,EAAE,iBAAiB,CAAC,0BAA0B,CAAC,CAAA;IAC3D,OAAO,EAAE,iBAAiB,CAAC,qBAAqB,CAAC,CAAA;IACjD,OAAO,EAAE,iBAAiB,CAAC,qBAAqB,CAAC,CAAA;IACjD,SAAS,EAAE,iBAAiB,CAAC,uBAAuB,CAAC,CAAA;IACrD,WAAW,EAAE,iBAAiB,CAAC,yBAAyB,CAAC,CAAA;IACzD,KAAK,EAAE,iBAAiB,CAAC,mBAAmB,CAAC,CAAA;IAC7C,IAAI,EAAE,iBAAiB,CAAC,kBAAkB,CAAC,CAAA;CAC5C,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,kBACe,CAAA"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import{jsx as jsx8,jsxs as jsxs4}from"react/jsx-runtime";import{useControlledId}from"@qualcomm-ui/react-core/state";import{c as _c}from"react/compiler-runtime";import{jsx}from"react/jsx-runtime";import{X}from"lucide-react";import{InlineIconButton}from"@qualcomm-ui/react/inline-icon-button";import{useQdsInputContext}from"@qualcomm-ui/react/input";import{useFileUploadContext}from"@qualcomm-ui/react-core/file-upload";import{mergeProps}from"@qualcomm-ui/utils/merge-props";function FileInputClearTrigger(props){let $=_c(4),fileUploadContext=useFileUploadContext(),qdsContext=useQdsInputContext(),t0;if($[0]!==fileUploadContext||$[1]!==props||$[2]!==qdsContext){let mergedProps=mergeProps(fileUploadContext.getClearTriggerBindings(),qdsContext.getClearTriggerBindings(),props);t0=jsx(InlineIconButton,{icon:X,size:qdsContext.size,variant:"scale",...mergedProps}),$[0]=fileUploadContext,$[1]=props,$[2]=qdsContext,$[3]=t0}else t0=$[3];return t0}import{jsx as jsx2,jsxs}from"react/jsx-runtime";import{InputEndIcon,InputStartIcon,useQdsInputContext as useQdsInputContext2}from"@qualcomm-ui/react/input";import{useFileUploadContext as useFileUploadContext2}from"@qualcomm-ui/react-core/file-upload";import{PolymorphicElement}from"@qualcomm-ui/react-core/system";import{mergeProps as mergeProps2}from"@qualcomm-ui/utils/merge-props";function FileInputControl(t0){let{children,...props}=t0,fileUploadContext=useFileUploadContext2(),qdsContext=useQdsInputContext2(),mergedProps=mergeProps2(qdsContext.getGroupBindings(),fileUploadContext.getDropzoneBindings(),props);return jsxs(PolymorphicElement,{as:"div",...mergedProps,children:[qdsContext.startIcon?jsx2(InputStartIcon,{icon:qdsContext.startIcon}):null,children,qdsContext.endIcon?jsx2(InputEndIcon,{icon:qdsContext.endIcon}):null]})}import{jsx as jsx3}from"react/jsx-runtime";import{useQdsFileUploadContext}from"@qualcomm-ui/react/file-upload";import{useQdsInputContext as useQdsInputContext3}from"@qualcomm-ui/react/input";import{useFileUploadContext as useFileUploadContext3}from"@qualcomm-ui/react-core/file-upload";import{PolymorphicElement as PolymorphicElement2}from"@qualcomm-ui/react-core/system";import{mergeProps as mergeProps3}from"@qualcomm-ui/utils/merge-props";function FileInputDisplay(t0){let{placeholder,...props}=t0,fileUploadContext=useFileUploadContext3(),qdsFileUploadContext=useQdsFileUploadContext(),qdsInputContext=useQdsInputContext3(),fileName=fileUploadContext.acceptedFiles[0]?.name??fileUploadContext.rejectedFiles[0]?.file.name,mergedProps=mergeProps3(qdsFileUploadContext.getInputDisplayBindings(),qdsInputContext.getInputBindings(),props);return jsx3(PolymorphicElement2,{as:"span",...mergedProps,children:fileName??placeholder})}import{jsx as jsx4,jsxs as jsxs2}from"react/jsx-runtime";import{IconOrNode}from"@qualcomm-ui/react/icon";import{useQdsInputContext as useQdsInputContext4}from"@qualcomm-ui/react/input";import{CoreFileUpload}from"@qualcomm-ui/react-core/file-upload";import{mergeProps as mergeProps4}from"@qualcomm-ui/utils/merge-props";function FileInputErrorText(t0){let{children,icon,...props}=t0,qdsContext=useQdsInputContext4(),mergedProps=mergeProps4(qdsContext.getErrorTextBindings(),props);return jsxs2(CoreFileUpload.ErrorText,{...mergedProps,children:[icon?jsx4(IconOrNode,{icon}):null,children]})}import{jsx as jsx5}from"react/jsx-runtime";import{CoreFileUpload as CoreFileUpload2}from"@qualcomm-ui/react-core/file-upload";function FileInputHiddenInput(props){return jsx5(CoreFileUpload2.HiddenInput,{...props})}import{jsx as jsx6,jsxs as jsxs3}from"react/jsx-runtime";import{Asterisk}from"lucide-react";import{Icon}from"@qualcomm-ui/react/icon";import{useQdsInputContext as useQdsInputContext5}from"@qualcomm-ui/react/input";import{CoreFileUpload as CoreFileUpload3,useFileUploadContext as useFileUploadContext4}from"@qualcomm-ui/react-core/file-upload";import{mergeProps as mergeProps5}from"@qualcomm-ui/utils/merge-props";function FileInputLabel(t0){let{children,...props}=t0,fileUploadContext=useFileUploadContext4(),qdsContext=useQdsInputContext5(),mergedProps=mergeProps5(qdsContext.getLabelBindings(),props);return jsxs3(CoreFileUpload3.Label,{...mergedProps,children:[children,fileUploadContext.required?jsx6(Icon,{...qdsContext.getRequiredIndicatorBindings(),icon:Asterisk,size:"xs"}):null]})}import{c as _c2}from"react/compiler-runtime";import{jsx as jsx7}from"react/jsx-runtime";import"react";import{createQdsFileUploadApi}from"@qualcomm-ui/qds-core/file-upload";import{createQdsInputApi}from"@qualcomm-ui/qds-core/input";import{QdsFileUploadContextProvider}from"@qualcomm-ui/react/file-upload";import{QdsInputContextProvider}from"@qualcomm-ui/react/input";import{CoreFileUpload as CoreFileUpload4}from"@qualcomm-ui/react-core/file-upload";import{normalizeProps}from"@qualcomm-ui/react-core/machine";import{mergeProps as mergeProps6}from"@qualcomm-ui/utils/merge-props";function FileInputRoot(t0){let $=_c2(8),t1;if($[0]!==t0){let{endIcon,invalid,size,startIcon,...props}=t0,t2;$[2]!==endIcon||$[3]!==size||$[4]!==startIcon?(t2=createQdsInputApi({endIcon,size,startIcon},normalizeProps),$[2]=endIcon,$[3]=size,$[4]=startIcon,$[5]=t2):t2=$[5];let qdsContext=t2,t3;$[6]!==size?(t3=createQdsFileUploadApi({size},normalizeProps),$[6]=size,$[7]=t3):t3=$[7];let qdsFileUploadContext=t3,mergedProps=mergeProps6(qdsContext.getRootBindings(),props);t1=jsx7(QdsInputContextProvider,{value:qdsContext,children:jsx7(QdsFileUploadContextProvider,{value:qdsFileUploadContext,children:jsx7(CoreFileUpload4.Root,{...mergedProps,invalid})})}),$[0]=t0,$[1]=t1}else t1=$[1];return t1}function FileInput(t0){let{clearable:t1,clearTriggerProps,controlProps,displayProps,errorText,errorTextProps,hiddenInputProps,label,labelProps,placeholder,...props}=t0,clearable=t1===void 0?!0:t1,labelContent=label||labelProps?.children,errorTextContent=errorText||errorTextProps?.children,ids={clearTrigger:useControlledId(clearTriggerProps?.id),errorText:useControlledId(errorTextProps?.id),hiddenInput:useControlledId(hiddenInputProps?.id),label:useControlledId(labelProps?.id),root:useControlledId(props.id),...props.ids};return jsxs4(FileInputRoot,{...props,id:ids.root,ids,children:[labelContent?jsx8(FileInputLabel,{...labelProps,id:ids.label,children:labelContent}):null,jsxs4(FileInputControl,{...controlProps,children:[jsx8(FileInputDisplay,{placeholder,...displayProps}),clearable?jsx8(FileInputClearTrigger,{...clearTriggerProps,id:ids.clearTrigger}):null]}),jsx8(FileInputHiddenInput,{...hiddenInputProps,id:ids.hiddenInput}),errorTextContent?jsx8(FileInputErrorText,{...errorTextProps,id:ids.errorText,children:errorTextContent}):null]})}var FileInput2=FileInput;FileInput2.ClearTrigger=FileInputClearTrigger;FileInput2.Label=FileInputLabel;FileInput2.Control=FileInputControl;FileInput2.HiddenInput=FileInputHiddenInput;FileInput2.Root=FileInputRoot;FileInput2.ErrorText=FileInputErrorText;FileInput2.Display=FileInputDisplay;export{FileInput2 as FileInput};
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/file-input/file-input.tsx", "../../src/file-input/file-input-clear-trigger.tsx", "../../src/file-input/file-input-control.tsx", "../../src/file-input/file-input-display.tsx", "../../src/file-input/file-input-error-text.tsx", "../../src/file-input/file-input-hidden-input.tsx", "../../src/file-input/file-input-label.tsx", "../../src/file-input/file-input-root.tsx", "../../src/file-input/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { useControlledId } from \"@qualcomm-ui/react-core/state\";\nimport { FileInputClearTrigger } from \"./file-input-clear-trigger\";\nimport { FileInputControl } from \"./file-input-control\";\nimport { FileInputDisplay } from \"./file-input-display\";\nimport { FileInputErrorText } from \"./file-input-error-text\";\nimport { FileInputHiddenInput } from \"./file-input-hidden-input\";\nimport { FileInputLabel } from \"./file-input-label\";\nimport { FileInputRoot } from \"./file-input-root\";\nexport function FileInput(t0) {\n const {\n clearable: t1,\n clearTriggerProps,\n controlProps,\n displayProps,\n errorText,\n errorTextProps,\n hiddenInputProps,\n label,\n labelProps,\n placeholder,\n ...props\n } = t0;\n const clearable = t1 === undefined ? true : t1;\n const labelContent = label || labelProps?.children;\n const errorTextContent = errorText || errorTextProps?.children;\n const ids = {\n clearTrigger: useControlledId(clearTriggerProps?.id),\n errorText: useControlledId(errorTextProps?.id),\n hiddenInput: useControlledId(hiddenInputProps?.id),\n label: useControlledId(labelProps?.id),\n root: useControlledId(props.id),\n ...props.ids\n };\n return jsxs(FileInputRoot, {\n ...props,\n id: ids.root,\n ids,\n children: [labelContent ? jsx(FileInputLabel, {\n ...labelProps,\n id: ids.label,\n children: labelContent\n }) : null, jsxs(FileInputControl, {\n ...controlProps,\n children: [jsx(FileInputDisplay, {\n placeholder,\n ...displayProps\n }), clearable ? jsx(FileInputClearTrigger, {\n ...clearTriggerProps,\n id: ids.clearTrigger\n }) : null]\n }), jsx(FileInputHiddenInput, {\n ...hiddenInputProps,\n id: ids.hiddenInput\n }), errorTextContent ? jsx(FileInputErrorText, {\n ...errorTextProps,\n id: ids.errorText,\n children: errorTextContent\n }) : null]\n });\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { X } from \"lucide-react\";\nimport { InlineIconButton } from \"@qualcomm-ui/react/inline-icon-button\";\nimport { useQdsInputContext } from \"@qualcomm-ui/react/input\";\nimport { useFileUploadContext } from \"@qualcomm-ui/react-core/file-upload\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputClearTrigger(props) {\n const $ = _c(4);\n const fileUploadContext = useFileUploadContext();\n const qdsContext = useQdsInputContext();\n let t0;\n if ($[0] !== fileUploadContext || $[1] !== props || $[2] !== qdsContext) {\n const mergedProps = mergeProps(fileUploadContext.getClearTriggerBindings(), qdsContext.getClearTriggerBindings(), props);\n t0 = jsx(InlineIconButton, {\n icon: X,\n size: qdsContext.size,\n variant: \"scale\",\n ...mergedProps\n });\n $[0] = fileUploadContext;\n $[1] = props;\n $[2] = qdsContext;\n $[3] = t0;\n } else {\n t0 = $[3];\n }\n return t0;\n}", "import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { InputEndIcon, InputStartIcon, useQdsInputContext } from \"@qualcomm-ui/react/input\";\nimport { useFileUploadContext } from \"@qualcomm-ui/react-core/file-upload\";\nimport { PolymorphicElement } from \"@qualcomm-ui/react-core/system\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputControl(t0) {\n const {\n children,\n ...props\n } = t0;\n const fileUploadContext = useFileUploadContext();\n const qdsContext = useQdsInputContext();\n const mergedProps = mergeProps(qdsContext.getGroupBindings(), fileUploadContext.getDropzoneBindings(), props);\n return jsxs(PolymorphicElement, {\n as: \"div\",\n ...mergedProps,\n children: [qdsContext.startIcon ? jsx(InputStartIcon, {\n icon: qdsContext.startIcon\n }) : null, children, qdsContext.endIcon ? jsx(InputEndIcon, {\n icon: qdsContext.endIcon\n }) : null]\n });\n}", "import { jsx } from \"react/jsx-runtime\";\nimport { useQdsFileUploadContext } from \"@qualcomm-ui/react/file-upload\";\nimport { useQdsInputContext } from \"@qualcomm-ui/react/input\";\nimport { useFileUploadContext } from \"@qualcomm-ui/react-core/file-upload\";\nimport { PolymorphicElement } from \"@qualcomm-ui/react-core/system\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputDisplay(t0) {\n const {\n placeholder,\n ...props\n } = t0;\n const fileUploadContext = useFileUploadContext();\n const qdsFileUploadContext = useQdsFileUploadContext();\n const qdsInputContext = useQdsInputContext();\n const fileName = fileUploadContext.acceptedFiles[0]?.name ?? fileUploadContext.rejectedFiles[0]?.file.name;\n const mergedProps = mergeProps(qdsFileUploadContext.getInputDisplayBindings(), qdsInputContext.getInputBindings(), props);\n return jsx(PolymorphicElement, {\n as: \"span\",\n ...mergedProps,\n children: fileName ?? placeholder\n });\n}", "import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { IconOrNode } from \"@qualcomm-ui/react/icon\";\nimport { useQdsInputContext } from \"@qualcomm-ui/react/input\";\nimport { CoreFileUpload } from \"@qualcomm-ui/react-core/file-upload\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputErrorText(t0) {\n const {\n children,\n icon,\n ...props\n } = t0;\n const qdsContext = useQdsInputContext();\n const mergedProps = mergeProps(qdsContext.getErrorTextBindings(), props);\n return jsxs(CoreFileUpload.ErrorText, {\n ...mergedProps,\n children: [icon ? jsx(IconOrNode, {\n icon\n }) : null, children]\n });\n}", "import { jsx } from \"react/jsx-runtime\";\nimport { CoreFileUpload } from \"@qualcomm-ui/react-core/file-upload\";\nexport function FileInputHiddenInput(props) {\n return /* @__PURE__ */jsx(CoreFileUpload.HiddenInput, {\n ...props\n });\n}", "import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { Asterisk } from \"lucide-react\";\nimport { Icon } from \"@qualcomm-ui/react/icon\";\nimport { useQdsInputContext } from \"@qualcomm-ui/react/input\";\nimport { CoreFileUpload, useFileUploadContext } from \"@qualcomm-ui/react-core/file-upload\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputLabel(t0) {\n const {\n children,\n ...props\n } = t0;\n const fileUploadContext = useFileUploadContext();\n const qdsContext = useQdsInputContext();\n const mergedProps = mergeProps(qdsContext.getLabelBindings(), props);\n return jsxs(CoreFileUpload.Label, {\n ...mergedProps,\n children: [children, fileUploadContext.required ? jsx(Icon, {\n ...qdsContext.getRequiredIndicatorBindings(),\n icon: Asterisk,\n size: \"xs\"\n }) : null]\n });\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { useMemo } from \"react\";\nimport { createQdsFileUploadApi } from \"@qualcomm-ui/qds-core/file-upload\";\nimport { createQdsInputApi } from \"@qualcomm-ui/qds-core/input\";\nimport { QdsFileUploadContextProvider } from \"@qualcomm-ui/react/file-upload\";\nimport { QdsInputContextProvider } from \"@qualcomm-ui/react/input\";\nimport { CoreFileUpload } from \"@qualcomm-ui/react-core/file-upload\";\nimport { normalizeProps } from \"@qualcomm-ui/react-core/machine\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function FileInputRoot(t0) {\n const $ = _c(8);\n let t1;\n if ($[0] !== t0) {\n const {\n endIcon,\n invalid,\n size,\n startIcon,\n ...props\n } = t0;\n let t2;\n if ($[2] !== endIcon || $[3] !== size || $[4] !== startIcon) {\n t2 = createQdsInputApi({\n endIcon,\n size,\n startIcon\n }, normalizeProps);\n $[2] = endIcon;\n $[3] = size;\n $[4] = startIcon;\n $[5] = t2;\n } else {\n t2 = $[5];\n }\n const qdsContext = t2;\n let t3;\n if ($[6] !== size) {\n t3 = createQdsFileUploadApi({\n size\n }, normalizeProps);\n $[6] = size;\n $[7] = t3;\n } else {\n t3 = $[7];\n }\n const qdsFileUploadContext = t3;\n const mergedProps = mergeProps(qdsContext.getRootBindings(), props);\n t1 = jsx(QdsInputContextProvider, {\n value: qdsContext,\n children: jsx(QdsFileUploadContextProvider, {\n value: qdsFileUploadContext,\n children: jsx(CoreFileUpload.Root, {\n ...mergedProps,\n invalid\n })\n })\n });\n $[0] = t0;\n $[1] = t1;\n } else {\n t1 = $[1];\n }\n return t1;\n}", "import { FileInput as SimpleFileInput } from \"./file-input\";\nimport { FileInputClearTrigger } from \"./file-input-clear-trigger\";\nimport { FileInputControl } from \"./file-input-control\";\nimport { FileInputDisplay } from \"./file-input-display\";\nimport { FileInputErrorText } from \"./file-input-error-text\";\nimport { FileInputHiddenInput } from \"./file-input-hidden-input\";\nimport { FileInputLabel } from \"./file-input-label\";\nimport { FileInputRoot } from \"./file-input-root\";\nexport const FileInput = SimpleFileInput;\nFileInput.ClearTrigger = FileInputClearTrigger;\nFileInput.Label = FileInputLabel;\nFileInput.Control = FileInputControl;\nFileInput.HiddenInput = FileInputHiddenInput;\nFileInput.Root = FileInputRoot;\nFileInput.ErrorText = FileInputErrorText;\nFileInput.Display = FileInputDisplay;"],
|
|
5
|
+
"mappings": ";AAAA,OAAS,OAAAA,KAAK,QAAAC,UAAY,oBAC1B,OAAS,oBAAuB,gCCDhC,OAAS,KAAK,OAAU,yBACxB,OAAS,QAAW,oBACpB,OAAS,MAAS,eAClB,OAAS,qBAAwB,wCACjC,OAAS,uBAA0B,2BACnC,OAAS,yBAA4B,sCACrC,OAAS,eAAkB,iCACpB,SAAS,sBAAsB,MAAO,CAC3C,IAAM,EAAI,GAAG,CAAC,EACR,kBAAoB,qBAAqB,EACzC,WAAa,mBAAmB,EAClC,GACJ,GAAI,EAAE,CAAC,IAAM,mBAAqB,EAAE,CAAC,IAAM,OAAS,EAAE,CAAC,IAAM,WAAY,CACvE,IAAM,YAAc,WAAW,kBAAkB,wBAAwB,EAAG,WAAW,wBAAwB,EAAG,KAAK,EACvH,GAAK,IAAI,iBAAkB,CACzB,KAAM,EACN,KAAM,WAAW,KACjB,QAAS,QACT,GAAG,WACL,CAAC,EACD,EAAE,CAAC,EAAI,kBACP,EAAE,CAAC,EAAI,MACP,EAAE,CAAC,EAAI,WACP,EAAE,CAAC,EAAI,EACT,MACE,GAAK,EAAE,CAAC,EAEV,OAAO,EACT,CC5BA,OAAS,OAAAC,KAAK,SAAY,oBAC1B,OAAS,aAAc,eAAgB,sBAAAC,wBAA0B,2BACjE,OAAS,wBAAAC,0BAA4B,sCACrC,OAAS,uBAA0B,iCACnC,OAAS,cAAAC,gBAAkB,iCACpB,SAAS,iBAAiB,GAAI,CACnC,GAAM,CACJ,SACA,GAAG,KACL,EAAI,GACE,kBAAoBD,sBAAqB,EACzC,WAAaD,oBAAmB,EAChC,YAAcE,YAAW,WAAW,iBAAiB,EAAG,kBAAkB,oBAAoB,EAAG,KAAK,EAC5G,OAAO,KAAK,mBAAoB,CAC9B,GAAI,MACJ,GAAG,YACH,SAAU,CAAC,WAAW,UAAYH,KAAI,eAAgB,CACpD,KAAM,WAAW,SACnB,CAAC,EAAI,KAAM,SAAU,WAAW,QAAUA,KAAI,aAAc,CAC1D,KAAM,WAAW,OACnB,CAAC,EAAI,IAAI,CACX,CAAC,CACH,CCtBA,OAAS,OAAAI,SAAW,oBACpB,OAAS,4BAA+B,iCACxC,OAAS,sBAAAC,wBAA0B,2BACnC,OAAS,wBAAAC,0BAA4B,sCACrC,OAAS,sBAAAC,wBAA0B,iCACnC,OAAS,cAAAC,gBAAkB,iCACpB,SAAS,iBAAiB,GAAI,CACnC,GAAM,CACJ,YACA,GAAG,KACL,EAAI,GACE,kBAAoBF,sBAAqB,EACzC,qBAAuB,wBAAwB,EAC/C,gBAAkBD,oBAAmB,EACrC,SAAW,kBAAkB,cAAc,CAAC,GAAG,MAAQ,kBAAkB,cAAc,CAAC,GAAG,KAAK,KAChG,YAAcG,YAAW,qBAAqB,wBAAwB,EAAG,gBAAgB,iBAAiB,EAAG,KAAK,EACxH,OAAOJ,KAAIG,oBAAoB,CAC7B,GAAI,OACJ,GAAG,YACH,SAAU,UAAY,WACxB,CAAC,CACH,CCrBA,OAAS,OAAAE,KAAK,QAAAC,UAAY,oBAC1B,OAAS,eAAkB,0BAC3B,OAAS,sBAAAC,wBAA0B,2BACnC,OAAS,mBAAsB,sCAC/B,OAAS,cAAAC,gBAAkB,iCACpB,SAAS,mBAAmB,GAAI,CACrC,GAAM,CACJ,SACA,KACA,GAAG,KACL,EAAI,GACE,WAAaD,oBAAmB,EAChC,YAAcC,YAAW,WAAW,qBAAqB,EAAG,KAAK,EACvE,OAAOF,MAAK,eAAe,UAAW,CACpC,GAAG,YACH,SAAU,CAAC,KAAOD,KAAI,WAAY,CAChC,IACF,CAAC,EAAI,KAAM,QAAQ,CACrB,CAAC,CACH,CCnBA,OAAS,OAAAI,SAAW,oBACpB,OAAS,kBAAAC,oBAAsB,sCACxB,SAAS,qBAAqB,MAAO,CAC1C,OAAsBD,KAAIC,gBAAe,YAAa,CACpD,GAAG,KACL,CAAC,CACH,CCNA,OAAS,OAAAC,KAAK,QAAAC,UAAY,oBAC1B,OAAS,aAAgB,eACzB,OAAS,SAAY,0BACrB,OAAS,sBAAAC,wBAA0B,2BACnC,OAAS,kBAAAC,gBAAgB,wBAAAC,0BAA4B,sCACrD,OAAS,cAAAC,gBAAkB,iCACpB,SAAS,eAAe,GAAI,CACjC,GAAM,CACJ,SACA,GAAG,KACL,EAAI,GACE,kBAAoBD,sBAAqB,EACzC,WAAaF,oBAAmB,EAChC,YAAcG,YAAW,WAAW,iBAAiB,EAAG,KAAK,EACnE,OAAOJ,MAAKE,gBAAe,MAAO,CAChC,GAAG,YACH,SAAU,CAAC,SAAU,kBAAkB,SAAWH,KAAI,KAAM,CAC1D,GAAG,WAAW,6BAA6B,EAC3C,KAAM,SACN,KAAM,IACR,CAAC,EAAI,IAAI,CACX,CAAC,CACH,CCtBA,OAAS,KAAKM,QAAU,yBACxB,OAAS,OAAAC,SAAW,oBACpB,MAAwB,QACxB,OAAS,2BAA8B,oCACvC,OAAS,sBAAyB,8BAClC,OAAS,iCAAoC,iCAC7C,OAAS,4BAA+B,2BACxC,OAAS,kBAAAC,oBAAsB,sCAC/B,OAAS,mBAAsB,kCAC/B,OAAS,cAAAC,gBAAkB,iCACpB,SAAS,cAAc,GAAI,CAChC,IAAM,EAAIH,IAAG,CAAC,EACV,GACJ,GAAI,EAAE,CAAC,IAAM,GAAI,CACf,GAAM,CACJ,QACA,QACA,KACA,UACA,GAAG,KACL,EAAI,GACA,GACA,EAAE,CAAC,IAAM,SAAW,EAAE,CAAC,IAAM,MAAQ,EAAE,CAAC,IAAM,WAChD,GAAK,kBAAkB,CACrB,QACA,KACA,SACF,EAAG,cAAc,EACjB,EAAE,CAAC,EAAI,QACP,EAAE,CAAC,EAAI,KACP,EAAE,CAAC,EAAI,UACP,EAAE,CAAC,EAAI,IAEP,GAAK,EAAE,CAAC,EAEV,IAAM,WAAa,GACf,GACA,EAAE,CAAC,IAAM,MACX,GAAK,uBAAuB,CAC1B,IACF,EAAG,cAAc,EACjB,EAAE,CAAC,EAAI,KACP,EAAE,CAAC,EAAI,IAEP,GAAK,EAAE,CAAC,EAEV,IAAM,qBAAuB,GACvB,YAAcG,YAAW,WAAW,gBAAgB,EAAG,KAAK,EAClE,GAAKF,KAAI,wBAAyB,CAChC,MAAO,WACP,SAAUA,KAAI,6BAA8B,CAC1C,MAAO,qBACP,SAAUA,KAAIC,gBAAe,KAAM,CACjC,GAAG,YACH,OACF,CAAC,CACH,CAAC,CACH,CAAC,EACD,EAAE,CAAC,EAAI,GACP,EAAE,CAAC,EAAI,EACT,MACE,GAAK,EAAE,CAAC,EAEV,OAAO,EACT,CPvDO,SAAS,UAAU,GAAI,CAC5B,GAAM,CACJ,UAAW,GACX,kBACA,aACA,aACA,UACA,eACA,iBACA,MACA,WACA,YACA,GAAG,KACL,EAAI,GACE,UAAY,KAAO,OAAY,GAAO,GACtC,aAAe,OAAS,YAAY,SACpC,iBAAmB,WAAa,gBAAgB,SAChD,IAAM,CACV,aAAc,gBAAgB,mBAAmB,EAAE,EACnD,UAAW,gBAAgB,gBAAgB,EAAE,EAC7C,YAAa,gBAAgB,kBAAkB,EAAE,EACjD,MAAO,gBAAgB,YAAY,EAAE,EACrC,KAAM,gBAAgB,MAAM,EAAE,EAC9B,GAAG,MAAM,GACX,EACA,OAAOE,MAAK,cAAe,CACzB,GAAG,MACH,GAAI,IAAI,KACR,IACA,SAAU,CAAC,aAAeC,KAAI,eAAgB,CAC5C,GAAG,WACH,GAAI,IAAI,MACR,SAAU,YACZ,CAAC,EAAI,KAAMD,MAAK,iBAAkB,CAChC,GAAG,aACH,SAAU,CAACC,KAAI,iBAAkB,CAC/B,YACA,GAAG,YACL,CAAC,EAAG,UAAYA,KAAI,sBAAuB,CACzC,GAAG,kBACH,GAAI,IAAI,YACV,CAAC,EAAI,IAAI,CACX,CAAC,EAAGA,KAAI,qBAAsB,CAC5B,GAAG,iBACH,GAAI,IAAI,WACV,CAAC,EAAG,iBAAmBA,KAAI,mBAAoB,CAC7C,GAAG,eACH,GAAI,IAAI,UACR,SAAU,gBACZ,CAAC,EAAI,IAAI,CACX,CAAC,CACH,CQpDO,IAAMC,WAAY,UACzBA,WAAU,aAAe,sBACzBA,WAAU,MAAQ,eAClBA,WAAU,QAAU,iBACpBA,WAAU,YAAc,qBACxBA,WAAU,KAAO,cACjBA,WAAU,UAAY,mBACtBA,WAAU,QAAU",
|
|
6
|
+
"names": ["jsx", "jsxs", "jsx", "useQdsInputContext", "useFileUploadContext", "mergeProps", "jsx", "useQdsInputContext", "useFileUploadContext", "PolymorphicElement", "mergeProps", "jsx", "jsxs", "useQdsInputContext", "mergeProps", "jsx", "CoreFileUpload", "jsx", "jsxs", "useQdsInputContext", "CoreFileUpload", "useFileUploadContext", "mergeProps", "_c", "jsx", "CoreFileUpload", "mergeProps", "jsxs", "jsx", "FileInput"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import type { ElementRenderProp } from "@qualcomm-ui/react-core/system";
|
|
3
|
+
export interface FileUploadBrowseTextProps extends ElementRenderProp<"span"> {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadBrowseText(props: FileUploadBrowseTextProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-browse-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-browse-text.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-browse-text.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAKvC,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAA;AAKrE,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB,CAAC,MAAM,CAAC;CAAG;AAE/E,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,yBAAyB,GAC/B,YAAY,CAgBd"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadClearTriggerProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadClearTriggerProps extends CoreFileUploadClearTriggerProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadClearTrigger(props: FileUploadClearTriggerProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-clear-trigger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-clear-trigger.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-clear-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,+BAA+B,EACrC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,2BAA4B,SAAQ,+BAA+B;CAAG;AAEvF,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,2BAA2B,GACjC,YAAY,CAId"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadContextProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadContextProps extends CoreFileUploadContextProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadContext(props: FileUploadContextProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-context.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-context.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,0BAA0B,EAChC,MAAM,qCAAqC,CAAA;AAE5C,MAAM,WAAW,sBAAuB,SAAQ,0BAA0B;CAAG;AAE7E,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,GAAG,YAAY,CAE7E"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type ElementRenderProp } from "@qualcomm-ui/react-core/system";
|
|
3
|
+
export interface FileUploadDropzoneHintProps extends ElementRenderProp<"span"> {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadDropzoneHint(props: FileUploadDropzoneHintProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-dropzone-hint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-dropzone-hint.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-dropzone-hint.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAKvC,MAAM,WAAW,2BAA4B,SAAQ,iBAAiB,CAAC,MAAM,CAAC;CAAG;AAEjF,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,2BAA2B,GACjC,YAAY,CAId"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type IconOrNodeProps } from "@qualcomm-ui/react/icon";
|
|
3
|
+
import type { LucideIconOrElement } from "@qualcomm-ui/react-core/lucide";
|
|
4
|
+
export interface FileUploadDropzoneIconProps extends Omit<IconOrNodeProps, "icon" | "size"> {
|
|
5
|
+
/**
|
|
6
|
+
* Lucide-react icon or JSX element.
|
|
7
|
+
*
|
|
8
|
+
* @default Upload
|
|
9
|
+
*/
|
|
10
|
+
icon?: LucideIconOrElement;
|
|
11
|
+
}
|
|
12
|
+
export declare function FileUploadDropzoneIcon(props: FileUploadDropzoneIconProps): ReactElement;
|
|
13
|
+
//# sourceMappingURL=file-upload-dropzone-icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-dropzone-icon.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-dropzone-icon.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAIvC,OAAO,EAAa,KAAK,eAAe,EAAC,MAAM,yBAAyB,CAAA;AACxE,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAKvE,MAAM,WAAW,2BAA4B,SAAQ,IAAI,CACvD,eAAe,EACf,MAAM,GAAG,MAAM,CAChB;IACC;;;;OAIG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,2BAA2B,GACjC,YAAY,CAKd"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type ElementRenderProp } from "@qualcomm-ui/react-core/system";
|
|
3
|
+
export interface FileUploadDropzoneTextProps extends ElementRenderProp<"span"> {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadDropzoneText(props: FileUploadDropzoneTextProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-dropzone-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-dropzone-text.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-dropzone-text.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAKvC,MAAM,WAAW,2BAA4B,SAAQ,iBAAiB,CAAC,MAAM,CAAC;CAAG;AAEjF,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,2BAA2B,GACjC,YAAY,CAId"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadDropzoneProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadDropzoneProps extends CoreFileUploadDropzoneProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadDropzone(props: FileUploadDropzoneProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-dropzone.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-dropzone.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-dropzone.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,2BAA2B,EACjC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,uBAAwB,SAAQ,2BAA2B;CAAG;AAE/E,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,uBAAuB,GAC7B,YAAY,CAId"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type CoreFileUploadErrorTextProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
import type { LucideIconOrElement } from "@qualcomm-ui/react-core/lucide";
|
|
4
|
+
export interface FileUploadErrorTextProps extends CoreFileUploadErrorTextProps {
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
/**
|
|
7
|
+
* Optional error indicator icon.
|
|
8
|
+
*/
|
|
9
|
+
icon?: LucideIconOrElement;
|
|
10
|
+
}
|
|
11
|
+
export declare function FileUploadErrorText({ children, icon, ...props }: FileUploadErrorTextProps): ReactElement;
|
|
12
|
+
//# sourceMappingURL=file-upload-error-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-error-text.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-error-text.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAGlD,OAAO,EAEL,KAAK,4BAA4B,EAClC,MAAM,qCAAqC,CAAA;AAC5C,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAKvE,MAAM,WAAW,wBAAyB,SAAQ,4BAA4B;IAC5E,QAAQ,CAAC,EAAE,SAAS,CAAA;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,wBAAgB,mBAAmB,CAAC,EAClC,QAAQ,EACR,IAAI,EACJ,GAAG,KAAK,EACT,EAAE,wBAAwB,GAAG,YAAY,CAUzC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadHiddenInputProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadHiddenInputProps extends CoreFileUploadHiddenInputProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadHiddenInput(props: FileUploadHiddenInputProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-hidden-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-hidden-input.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-hidden-input.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,8BAA8B,EACpC,MAAM,qCAAqC,CAAA;AAE5C,MAAM,WAAW,0BAA2B,SAAQ,8BAA8B;CAAG;AAErF,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,0BAA0B,GAChC,YAAY,CAEd"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemDeleteTriggerProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
import type { LucideIconOrElement } from "@qualcomm-ui/react-core/lucide";
|
|
4
|
+
export interface FileUploadItemDeleteButtonProps extends CoreFileUploadItemDeleteTriggerProps {
|
|
5
|
+
/**
|
|
6
|
+
* Lucide-react icon or JSX element
|
|
7
|
+
*
|
|
8
|
+
* @default Trash2
|
|
9
|
+
*/
|
|
10
|
+
icon?: LucideIconOrElement;
|
|
11
|
+
}
|
|
12
|
+
export declare function FileUploadItemDeleteButton({ render, ...props }: FileUploadItemDeleteButtonProps): ReactElement;
|
|
13
|
+
//# sourceMappingURL=file-upload-item-delete-button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-delete-button.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-delete-button.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAKvC,OAAO,EAEL,KAAK,oCAAoC,EAC1C,MAAM,qCAAqC,CAAA;AAC5C,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAKvE,MAAM,WAAW,+BAAgC,SAAQ,oCAAoC;IAC3F;;;;OAIG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,wBAAgB,0BAA0B,CAAC,EACzC,MAAM,EACN,GAAG,KAAK,EACT,EAAE,+BAA+B,GAAG,YAAY,CAqBhD"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemGroupProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemGroupProps extends CoreFileUploadItemGroupProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItemGroup(props: FileUploadItemGroupProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item-group.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-group.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-group.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,4BAA4B,EAClC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,wBAAyB,SAAQ,4BAA4B;CAAG;AAEjF,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,wBAAwB,GAC9B,YAAY,CAId"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemNameProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemNameProps extends CoreFileUploadItemNameProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItemName(props: FileUploadItemNameProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item-name.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-name.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-name.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,2BAA2B,EAEjC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,uBAAwB,SAAQ,2BAA2B;CAAG;AAE/E,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,uBAAuB,GAC7B,YAAY,CAUd"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemPreviewImageProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemPreviewImageProps extends CoreFileUploadItemPreviewImageProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItemPreviewImage(props: FileUploadItemPreviewImageProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item-preview-image.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-preview-image.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-preview-image.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,mCAAmC,EACzC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,+BAAgC,SAAQ,mCAAmC;CAAG;AAE/F,wBAAgB,0BAA0B,CACxC,KAAK,EAAE,+BAA+B,GACrC,YAAY,CAOd"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemPreviewProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemPreviewProps extends CoreFileUploadItemPreviewProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item-preview.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-preview.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-preview.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,8BAA8B,EACpC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,0BAA2B,SAAQ,8BAA8B;CAAG;AAErF,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,0BAA0B,GAChC,YAAY,CAId"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemSizeTextProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemSizeTextProps extends CoreFileUploadItemSizeTextProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItemSizeText(props: FileUploadItemSizeTextProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item-size-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item-size-text.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item-size-text.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,+BAA+B,EAGrC,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,2BAA4B,SAAQ,+BAA+B;CAAG;AAEvF,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,2BAA2B,GACjC,YAAY,CAgBd"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadItemProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadItemProps extends CoreFileUploadItemProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadItem(props: FileUploadItemProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-item.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-item.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-item.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;CAAG;AAEvE,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,GAAG,YAAY,CAIvE"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ReactElement, ReactNode } from "react";
|
|
2
|
+
import { type CoreFileUploadLabelProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadLabelProps extends CoreFileUploadLabelProps {
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
}
|
|
6
|
+
export declare function FileUploadLabel({ children, ...props }: FileUploadLabelProps): ReactElement;
|
|
7
|
+
//# sourceMappingURL=file-upload-label.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-label.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-label.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAKlD,OAAO,EAEL,KAAK,wBAAwB,EAE9B,MAAM,qCAAqC,CAAA;AAK5C,MAAM,WAAW,oBAAqB,SAAQ,wBAAwB;IACpE,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,wBAAgB,eAAe,CAAC,EAC9B,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,oBAAoB,GAAG,YAAY,CAiBrC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ReactElement } from "react";
|
|
2
|
+
import { type QdsFileUploadApiProps } from "@qualcomm-ui/qds-core/file-upload";
|
|
3
|
+
import { type CoreFileUploadRootProps } from "@qualcomm-ui/react-core/file-upload";
|
|
4
|
+
export interface FileUploadRootProps extends CoreFileUploadRootProps, QdsFileUploadApiProps {
|
|
5
|
+
}
|
|
6
|
+
export declare function FileUploadRoot({ size, ...props }: FileUploadRootProps): ReactElement;
|
|
7
|
+
//# sourceMappingURL=file-upload-root.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-root.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-root.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAC,KAAK,YAAY,EAAU,MAAM,OAAO,CAAA;AAEhD,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,qCAAqC,CAAA;AAM5C,MAAM,WAAW,mBACf,SAAQ,uBAAuB,EAAE,qBAAqB;CAAG;AAE3D,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,GAAG,KAAK,EACT,EAAE,mBAAmB,GAAG,YAAY,CAapC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReactElement } from "react";
|
|
2
|
+
import { type CoreFileUploadTriggerProps } from "@qualcomm-ui/react-core/file-upload";
|
|
3
|
+
export interface FileUploadTriggerProps extends CoreFileUploadTriggerProps {
|
|
4
|
+
}
|
|
5
|
+
export declare function FileUploadTrigger(props: FileUploadTriggerProps): ReactElement;
|
|
6
|
+
//# sourceMappingURL=file-upload-trigger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-upload-trigger.d.ts","sourceRoot":"","sources":["../../src/file-upload/file-upload-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,0BAA0B,EAChC,MAAM,qCAAqC,CAAA;AAE5C,MAAM,WAAW,sBAAuB,SAAQ,0BAA0B;CAAG;AAE7E,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,GAAG,YAAY,CAE7E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/file-upload/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import{createGuardedContext}from"@qualcomm-ui/react-core/context";var[QdsFileUploadContextProvider,useQdsFileUploadContext]=createGuardedContext({hookName:"useQdsFileUploadContext",providerName:"<QdsFileUploadContextProvider>",strict:!0});export{QdsFileUploadContextProvider,useQdsFileUploadContext};
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/file-upload/qds-file-upload-context.ts"],
|
|
4
|
+
"sourcesContent": ["import { createGuardedContext } from \"@qualcomm-ui/react-core/context\";\nexport const [QdsFileUploadContextProvider, useQdsFileUploadContext] = createGuardedContext({\n hookName: \"useQdsFileUploadContext\",\n providerName: \"<QdsFileUploadContextProvider>\",\n strict: true\n});"],
|
|
5
|
+
"mappings": ";AAAA,OAAS,yBAA4B,kCAC9B,GAAM,CAAC,6BAA8B,uBAAuB,EAAI,qBAAqB,CAC1F,SAAU,0BACV,aAAc,iCACd,OAAQ,EACV,CAAC",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { QdsFileUploadApi } from "@qualcomm-ui/qds-core/file-upload";
|
|
2
|
+
export declare const QdsFileUploadContextProvider: import("react").Provider<QdsFileUploadApi>, useQdsFileUploadContext: (requireContext?: boolean) => QdsFileUploadApi;
|
|
3
|
+
//# sourceMappingURL=qds-file-upload-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"qds-file-upload-context.d.ts","sourceRoot":"","sources":["../../src/file-upload/qds-file-upload-context.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,mCAAmC,CAAA;AAGvE,eAAO,MAAO,4BAA4B,8CAAE,uBAAuB,gDAK/D,CAAA"}
|
package/dist/link/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import{jsx,jsxs}from"react/jsx-runtime";import{createQdsLinkApi}from"@qualcomm-ui/qds-core/link";import{IconOrNode}from"@qualcomm-ui/react/icon";import{normalizeProps}from"@qualcomm-ui/react-core/machine";import{PolymorphicElement}from"@qualcomm-ui/react-core/system";import{mergeProps}from"@qualcomm-ui/utils/merge-props";function Link({children,dir,disabled,emphasis,endIcon,size,startIcon,...props}){let api=createQdsLinkApi({dir,disabled,emphasis,size},normalizeProps),mergedProps=mergeProps(api.getRootBindings(),props);return jsxs(PolymorphicElement,{as:"a",...mergedProps,children:[startIcon?jsx(IconOrNode,{icon:startIcon,...api.getStartIconBindings()}):null,children,endIcon?jsx(IconOrNode,{icon:endIcon,...api.getEndIconBindings()}):null]})}export{Link};
|
|
2
|
+
import{jsx,jsxs}from"react/jsx-runtime";import{createQdsLinkApi}from"@qualcomm-ui/qds-core/link";import{IconOrNode}from"@qualcomm-ui/react/icon";import{normalizeProps}from"@qualcomm-ui/react-core/machine";import{PolymorphicElement}from"@qualcomm-ui/react-core/system";import{mergeProps}from"@qualcomm-ui/utils/merge-props";function Link({children,dir,disabled,emphasis,endIcon,inheritFontSize,size,startIcon,...props}){let api=createQdsLinkApi({dir,disabled,emphasis,inheritFontSize,size},normalizeProps),mergedProps=mergeProps(api.getRootBindings(),props);return jsxs(PolymorphicElement,{as:"a",...mergedProps,children:[startIcon?jsx(IconOrNode,{icon:startIcon,...api.getStartIconBindings()}):null,children,endIcon?jsx(IconOrNode,{icon:endIcon,...api.getEndIconBindings()}):null]})}export{Link};
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/link/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/link/link.tsx"],
|
|
4
|
-
"sourcesContent": ["import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { createQdsLinkApi } from \"@qualcomm-ui/qds-core/link\";\nimport { IconOrNode } from \"@qualcomm-ui/react/icon\";\nimport { normalizeProps } from \"@qualcomm-ui/react-core/machine\";\nimport { PolymorphicElement } from \"@qualcomm-ui/react-core/system\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function Link({\n children,\n dir,\n disabled,\n emphasis,\n endIcon,\n size,\n startIcon,\n ...props\n}) {\n const api = createQdsLinkApi({\n dir,\n disabled,\n emphasis,\n size\n }, normalizeProps);\n const mergedProps = mergeProps(api.getRootBindings(), props);\n return /* @__PURE__ */jsxs(PolymorphicElement, {\n as: \"a\",\n ...mergedProps,\n children: [startIcon ? /* @__PURE__ */jsx(IconOrNode, {\n icon: startIcon,\n ...api.getStartIconBindings()\n }) : null, children, endIcon ? /* @__PURE__ */jsx(IconOrNode, {\n icon: endIcon,\n ...api.getEndIconBindings()\n }) : null]\n });\n}"],
|
|
5
|
-
"mappings": ";AAAA,OAAS,IAAK,SAAY,oBAC1B,OAAS,qBAAwB,6BACjC,OAAS,eAAkB,0BAC3B,OAAS,mBAAsB,kCAC/B,OAAS,uBAA0B,iCACnC,OAAS,eAAkB,iCACpB,SAAS,KAAK,CACnB,SACA,IACA,SACA,SACA,QACA,KACA,UACA,GAAG,KACL,EAAG,CACD,IAAM,IAAM,iBAAiB,CAC3B,IACA,SACA,SACA,IACF,EAAG,cAAc,EACX,YAAc,WAAW,IAAI,gBAAgB,EAAG,KAAK,EAC3D,OAAsB,KAAK,mBAAoB,CAC7C,GAAI,IACJ,GAAG,YACH,SAAU,CAAC,UAA2B,IAAI,WAAY,CACpD,KAAM,UACN,GAAG,IAAI,qBAAqB,CAC9B,CAAC,EAAI,KAAM,SAAU,QAAyB,IAAI,WAAY,CAC5D,KAAM,QACN,GAAG,IAAI,mBAAmB,CAC5B,CAAC,EAAI,IAAI,CACX,CAAC,CACH",
|
|
4
|
+
"sourcesContent": ["import { jsx, jsxs } from \"react/jsx-runtime\";\nimport { createQdsLinkApi } from \"@qualcomm-ui/qds-core/link\";\nimport { IconOrNode } from \"@qualcomm-ui/react/icon\";\nimport { normalizeProps } from \"@qualcomm-ui/react-core/machine\";\nimport { PolymorphicElement } from \"@qualcomm-ui/react-core/system\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nexport function Link({\n children,\n dir,\n disabled,\n emphasis,\n endIcon,\n inheritFontSize,\n size,\n startIcon,\n ...props\n}) {\n const api = createQdsLinkApi({\n dir,\n disabled,\n emphasis,\n inheritFontSize,\n size\n }, normalizeProps);\n const mergedProps = mergeProps(api.getRootBindings(), props);\n return /* @__PURE__ */jsxs(PolymorphicElement, {\n as: \"a\",\n ...mergedProps,\n children: [startIcon ? /* @__PURE__ */jsx(IconOrNode, {\n icon: startIcon,\n ...api.getStartIconBindings()\n }) : null, children, endIcon ? /* @__PURE__ */jsx(IconOrNode, {\n icon: endIcon,\n ...api.getEndIconBindings()\n }) : null]\n });\n}"],
|
|
5
|
+
"mappings": ";AAAA,OAAS,IAAK,SAAY,oBAC1B,OAAS,qBAAwB,6BACjC,OAAS,eAAkB,0BAC3B,OAAS,mBAAsB,kCAC/B,OAAS,uBAA0B,iCACnC,OAAS,eAAkB,iCACpB,SAAS,KAAK,CACnB,SACA,IACA,SACA,SACA,QACA,gBACA,KACA,UACA,GAAG,KACL,EAAG,CACD,IAAM,IAAM,iBAAiB,CAC3B,IACA,SACA,SACA,gBACA,IACF,EAAG,cAAc,EACX,YAAc,WAAW,IAAI,gBAAgB,EAAG,KAAK,EAC3D,OAAsB,KAAK,mBAAoB,CAC7C,GAAI,IACJ,GAAG,YACH,SAAU,CAAC,UAA2B,IAAI,WAAY,CACpD,KAAM,UACN,GAAG,IAAI,qBAAqB,CAC9B,CAAC,EAAI,KAAM,SAAU,QAAyB,IAAI,WAAY,CAC5D,KAAM,QACN,GAAG,IAAI,mBAAmB,CAC5B,CAAC,EAAI,IAAI,CACX,CAAC,CACH",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/link/link.d.ts
CHANGED
|
@@ -23,5 +23,5 @@ export interface LinkProps extends QdsLinkApiProps, Omit<ElementRenderProp<"a">,
|
|
|
23
23
|
/**
|
|
24
24
|
* A link to another page or resource. Renders an `<a>` element by default.
|
|
25
25
|
*/
|
|
26
|
-
export declare function Link({ children, dir, disabled, emphasis, endIcon, size, startIcon, ...props }: LinkProps): ReactElement;
|
|
26
|
+
export declare function Link({ children, dir, disabled, emphasis, endIcon, inheritFontSize, size, startIcon, ...props }: LinkProps): ReactElement;
|
|
27
27
|
//# sourceMappingURL=link.d.ts.map
|
package/dist/link/link.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["../../src/link/link.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAElD,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,4BAA4B,CAAA;AAEnC,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAEvE,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAIvC,MAAM,WAAW,SACf,SAAQ,eAAe,EAAE,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC;IAC5D;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAA;IAEpB;;;;OAIG;IACH,OAAO,CAAC,EAAE,mBAAmB,CAAA;IAE7B;;;;OAIG;IACH,SAAS,CAAC,EAAE,mBAAmB,CAAA;CAChC;AAED;;GAEG;AACH,wBAAgB,IAAI,CAAC,EACnB,QAAQ,EACR,GAAG,EACH,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,IAAI,EACJ,SAAS,EACT,GAAG,KAAK,EACT,EAAE,SAAS,GAAG,YAAY,
|
|
1
|
+
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["../../src/link/link.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,OAAO,CAAA;AAElD,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,4BAA4B,CAAA;AAEnC,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AAEvE,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAIvC,MAAM,WAAW,SACf,SAAQ,eAAe,EAAE,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC;IAC5D;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAA;IAEpB;;;;OAIG;IACH,OAAO,CAAC,EAAE,mBAAmB,CAAA;IAE7B;;;;OAIG;IACH,SAAS,CAAC,EAAE,mBAAmB,CAAA;CAChC;AAED;;GAEG;AACH,wBAAgB,IAAI,CAAC,EACnB,QAAQ,EACR,GAAG,EACH,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,eAAe,EACf,IAAI,EACJ,SAAS,EACT,GAAG,KAAK,EACT,EAAE,SAAS,GAAG,YAAY,CAwB1B"}
|