@up-packages/ui 0.9.14-qa → 0.11.0-qa
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/components/UpxTextarea/UpxTextarea.vue.d.ts +69 -0
- package/dist/components/UpxTextarea/index.d.ts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/install.d.ts +2 -1
- package/dist/up-ui.css +1 -1
- package/dist/uplexis-ui.js +5522 -5186
- package/dist/uplexis-ui.js.map +1 -1
- package/dist/uplexis-ui.umd.cjs +3 -3
- package/dist/uplexis-ui.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export interface UpxTextareaProps {
|
|
2
|
+
modelValue?: string;
|
|
3
|
+
id?: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
hint?: string;
|
|
7
|
+
persistentHint?: boolean;
|
|
8
|
+
variant?: "outlined" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | "plain";
|
|
9
|
+
density?: "default" | "comfortable" | "compact";
|
|
10
|
+
color?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
readonly?: boolean;
|
|
13
|
+
loading?: boolean;
|
|
14
|
+
clearable?: boolean;
|
|
15
|
+
prependIcon?: string;
|
|
16
|
+
prependInnerIcon?: string;
|
|
17
|
+
appendIcon?: string;
|
|
18
|
+
appendInnerIcon?: string;
|
|
19
|
+
rules?: Array<(value: any) => boolean | string>;
|
|
20
|
+
errorMessages?: string | string[];
|
|
21
|
+
counter?: true | number | string;
|
|
22
|
+
maxlength?: number | string;
|
|
23
|
+
rounded?: string | number | true;
|
|
24
|
+
rows?: number | string;
|
|
25
|
+
maxRows?: number | string;
|
|
26
|
+
autoGrow?: boolean;
|
|
27
|
+
noResize?: boolean;
|
|
28
|
+
hideDetails?: boolean | "auto";
|
|
29
|
+
}
|
|
30
|
+
declare var __VLS_12: {}, __VLS_14: {}, __VLS_16: {}, __VLS_18: {};
|
|
31
|
+
type __VLS_Slots = {} & {
|
|
32
|
+
prepend?: (props: typeof __VLS_12) => any;
|
|
33
|
+
} & {
|
|
34
|
+
'prepend-inner'?: (props: typeof __VLS_14) => any;
|
|
35
|
+
} & {
|
|
36
|
+
append?: (props: typeof __VLS_16) => any;
|
|
37
|
+
} & {
|
|
38
|
+
'append-inner'?: (props: typeof __VLS_18) => any;
|
|
39
|
+
};
|
|
40
|
+
declare const __VLS_component: import("vue").DefineComponent<UpxTextareaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
41
|
+
"update:modelValue": (value: string) => any;
|
|
42
|
+
focus: (event: FocusEvent) => any;
|
|
43
|
+
blur: (event: FocusEvent) => any;
|
|
44
|
+
}, string, import("vue").PublicProps, Readonly<UpxTextareaProps> & Readonly<{
|
|
45
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
46
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
47
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
48
|
+
}>, {
|
|
49
|
+
rounded: string | number | true;
|
|
50
|
+
variant: "outlined" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | "plain";
|
|
51
|
+
density: "default" | "comfortable" | "compact";
|
|
52
|
+
color: string;
|
|
53
|
+
loading: boolean;
|
|
54
|
+
disabled: boolean;
|
|
55
|
+
readonly: boolean;
|
|
56
|
+
persistentHint: boolean;
|
|
57
|
+
hideDetails: boolean | "auto";
|
|
58
|
+
clearable: boolean;
|
|
59
|
+
rows: number | string;
|
|
60
|
+
autoGrow: boolean;
|
|
61
|
+
noResize: boolean;
|
|
62
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
63
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
64
|
+
export default _default;
|
|
65
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
66
|
+
new (): {
|
|
67
|
+
$slots: S;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { UpxButton } from "./UpxButton";
|
|
2
2
|
export { UpxTextField } from "./UpxTextField";
|
|
3
|
+
export { UpxTextarea } from "./UpxTextarea";
|
|
3
4
|
export { UpxSelect } from "./UpxSelect";
|
|
4
5
|
export { UpxRadio } from "./UpxRadio";
|
|
5
6
|
export { UpxSwitch } from "./UpxSwitch";
|
|
@@ -26,6 +27,7 @@ export { UpxTooltip } from "./UpxTooltip";
|
|
|
26
27
|
export { UpxWindow } from "./UpxWindow";
|
|
27
28
|
export type { UpxButtonProps } from "./UpxButton";
|
|
28
29
|
export type { UpxTextFieldProps } from "./UpxTextField";
|
|
30
|
+
export type { UpxTextareaProps } from "./UpxTextarea";
|
|
29
31
|
export type { UpxSelectProps } from "./UpxSelect";
|
|
30
32
|
export type { UpxRadioProps, UpxRadioOption } from "./UpxRadio";
|
|
31
33
|
export type { UpxSwitchProps } from "./UpxSwitch";
|
package/dist/install.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { UpxRadio } from "./components/UpxRadio";
|
|
|
33
33
|
import { UpxResizablePanelGroup, UpxResizablePanel, UpxResizableHandle } from "./components/UpxResizable";
|
|
34
34
|
import { UpxRiskLevel, UpxRiskCard, UpxRiskCriteria, UpxRiskScore, UpxRiskFinding } from "./components/UpxRiskLevel";
|
|
35
35
|
import { UpxSelect } from "./components/UpxSelect";
|
|
36
|
+
import { UpxTextarea } from "./components/UpxTextarea";
|
|
36
37
|
import { UpxSideBar } from "./components/UpxSideBar";
|
|
37
38
|
import { UpxSkeleton } from "./components/UpxSkeleton";
|
|
38
39
|
import { UpxStepper } from "./components/UpxStepper";
|
|
@@ -49,4 +50,4 @@ declare const _default: {
|
|
|
49
50
|
}): void;
|
|
50
51
|
};
|
|
51
52
|
export default _default;
|
|
52
|
-
export { UpxAccordion, UpxAlert, UpxAlertTitle, UpxAlertDescription, UpxAlertDialog, UpxAlertDialogHeader, UpxAlertDialogTitle, UpxAlertDialogDescription, UpxAlertDialogFooter, UpxAlertDialogAction, UpxAlertDialogCancel, UpxAspectRatio, UpxAvatar, UpxBadge, UpxBreadcrumb, UpxBreadcrumbList, UpxBreadcrumbItem, UpxBreadcrumbLink, UpxBreadcrumbPage, UpxBreadcrumbSeparator, UpxBreadcrumbEllipsis, UpxButton, UpxCalendar, UpxCarousel, UpxCarouselItem, UpxCarouselContent, UpxCard, UpxCardSimple, UpxCardHeader, UpxCardTitle, UpxCardDescription, UpxCardContent, UpxCardFooter, UpxCardAction, UpxCell, UpxCheckbox, UpxCollapsible, UpxCollapsibleTrigger, UpxCollapsibleContent, UpxCommand, UpxCommandDialog, UpxCommandInput, UpxCommandList, UpxCommandItem, UpxCommandGroup, UpxCommandEmpty, UpxCommandSeparator, UpxCommandShortcut, UpxContextMenu, UpxContextMenuItem, UpxContextMenuLabel, UpxContextMenuSeparator, UpxDataTable, UpxDatePicker, UpxDialog, UpxDialogHeader, UpxDialogTitle, UpxDialogDescription, UpxDialogContent, UpxDialogFooter, UpxDivider, UpxDrawer, UpxDrawerHeader, UpxDrawerTitle, UpxDrawerDescription, UpxDrawerContent, UpxDrawerFooter, UpxDrawerClose, UpxDropdownMenu, UpxDropdownMenuItem, UpxDropdownMenuLabel, UpxDropdownMenuSeparator, UpxEnvironmentBadge, UpxFloatMenu, UpxNotification, UpxPagination, UpxPopover, UpxProduct, UpxProgress, UpxRadio, UpxResizablePanelGroup, UpxResizablePanel, UpxResizableHandle, UpxRiskLevel, UpxRiskCard, UpxRiskCriteria, UpxRiskScore, UpxRiskFinding, UpxSelect, UpxSideBar, UpxSkeleton, UpxStepper, UpxSwitch, UpxTab, UpxTextField, UpxTitleBar, UpxToast, UpxTooltip, UpxWindow, };
|
|
53
|
+
export { UpxAccordion, UpxAlert, UpxAlertTitle, UpxAlertDescription, UpxAlertDialog, UpxAlertDialogHeader, UpxAlertDialogTitle, UpxAlertDialogDescription, UpxAlertDialogFooter, UpxAlertDialogAction, UpxAlertDialogCancel, UpxAspectRatio, UpxAvatar, UpxBadge, UpxBreadcrumb, UpxBreadcrumbList, UpxBreadcrumbItem, UpxBreadcrumbLink, UpxBreadcrumbPage, UpxBreadcrumbSeparator, UpxBreadcrumbEllipsis, UpxButton, UpxCalendar, UpxCarousel, UpxCarouselItem, UpxCarouselContent, UpxCard, UpxCardSimple, UpxCardHeader, UpxCardTitle, UpxCardDescription, UpxCardContent, UpxCardFooter, UpxCardAction, UpxCell, UpxCheckbox, UpxCollapsible, UpxCollapsibleTrigger, UpxCollapsibleContent, UpxCommand, UpxCommandDialog, UpxCommandInput, UpxCommandList, UpxCommandItem, UpxCommandGroup, UpxCommandEmpty, UpxCommandSeparator, UpxCommandShortcut, UpxContextMenu, UpxContextMenuItem, UpxContextMenuLabel, UpxContextMenuSeparator, UpxDataTable, UpxDatePicker, UpxDialog, UpxDialogHeader, UpxDialogTitle, UpxDialogDescription, UpxDialogContent, UpxDialogFooter, UpxDivider, UpxDrawer, UpxDrawerHeader, UpxDrawerTitle, UpxDrawerDescription, UpxDrawerContent, UpxDrawerFooter, UpxDrawerClose, UpxDropdownMenu, UpxDropdownMenuItem, UpxDropdownMenuLabel, UpxDropdownMenuSeparator, UpxEnvironmentBadge, UpxFloatMenu, UpxNotification, UpxPagination, UpxPopover, UpxProduct, UpxProgress, UpxRadio, UpxResizablePanelGroup, UpxResizablePanel, UpxResizableHandle, UpxRiskLevel, UpxRiskCard, UpxRiskCriteria, UpxRiskScore, UpxRiskFinding, UpxSelect, UpxSideBar, UpxSkeleton, UpxStepper, UpxSwitch, UpxTab, UpxTextField, UpxTextarea, UpxTitleBar, UpxToast, UpxTooltip, UpxWindow, };
|