@scglab/admin-ui 0.1.4 → 0.1.5
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/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -1
- package/dist/index.d.ts +28 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -208,6 +208,26 @@ interface EmailInputProps {
|
|
|
208
208
|
}
|
|
209
209
|
declare const EmailInput: React__default.FC<EmailInputProps>;
|
|
210
210
|
|
|
211
|
+
interface SelectOption$1 {
|
|
212
|
+
value: string | number | null;
|
|
213
|
+
label: string;
|
|
214
|
+
disabled?: boolean;
|
|
215
|
+
icon?: React.ReactNode;
|
|
216
|
+
description?: string;
|
|
217
|
+
divider?: boolean;
|
|
218
|
+
}
|
|
219
|
+
interface Paging$1 {
|
|
220
|
+
totalCount: number;
|
|
221
|
+
pageNo: number;
|
|
222
|
+
fetchCount: number;
|
|
223
|
+
totalPageCount: number;
|
|
224
|
+
}
|
|
225
|
+
interface OriginalObject {
|
|
226
|
+
id: string | number | null;
|
|
227
|
+
name: string;
|
|
228
|
+
partnerName?: string;
|
|
229
|
+
[key: string]: unknown;
|
|
230
|
+
}
|
|
211
231
|
type Direction = "row" | "col" | "grid";
|
|
212
232
|
interface CommonFormDataProps {
|
|
213
233
|
isDot?: boolean;
|
|
@@ -226,6 +246,13 @@ interface CommonFormDataProps {
|
|
|
226
246
|
error?: string;
|
|
227
247
|
tooltip?: string | React.ReactNode;
|
|
228
248
|
}
|
|
249
|
+
interface TreeData {
|
|
250
|
+
id: number;
|
|
251
|
+
children?: TreeData[];
|
|
252
|
+
name: string;
|
|
253
|
+
seq: number;
|
|
254
|
+
level: number;
|
|
255
|
+
}
|
|
229
256
|
|
|
230
257
|
interface InputProps extends React__default.InputHTMLAttributes<HTMLInputElement>, CommonFormDataProps {
|
|
231
258
|
type?: string;
|
|
@@ -497,4 +524,4 @@ interface WarningBoxProps extends React__default.HTMLAttributes<HTMLDivElement>
|
|
|
497
524
|
}
|
|
498
525
|
declare const WarningBox: React__default.FC<WarningBoxProps>;
|
|
499
526
|
|
|
500
|
-
export { type AlignSelfType, type AlignType, BorderRadiusBox, type BorderRadiusBoxProps, BulletText, type BulletTextProps, Button, type ButtonProps, type ButtonVariantType, Checkbox, type CheckboxProps, type ColorType, type ColumnAlign, type ColumnDef, type ColumnType, CommonTable, type CommonTableProps, type DirectionType, Divider, type DividerProps, EmailInput, type EmailInputProps, type FontSizeType, type FontWeightType, Input, type InputProps, type JustifySelfType, type JustifyType, Label, type LabelProps, MultiSelectCheckbox, type MultiSelectCheckboxProps, Paging, type PagingProps, Radio, type RadioProps, RequiredDot, SelectBox, type SelectBoxProps, Stack, type StackProps, Table, type TableProps, TableTop, type TableTopProps, Tag, TagInput, type TagProps, Text, TextArea, type TextAreaProps, TextButton, type TextButtonProps, type TextProps, Toggle, type ToggleProps, ToolTipBox, type ToolTipBoxProps, Tooltip, TooltipInfo, type TooltipInfoProps, type TooltipProps, WarningBox, type WarningBoxProps, alignSelfs, aligns, colors, directions, fontSize, fontWeight, justifies, justifySelfs, lineHeightSize };
|
|
527
|
+
export { type AlignSelfType, type AlignType, BorderRadiusBox, type BorderRadiusBoxProps, BulletText, type BulletTextProps, Button, type ButtonProps, type ButtonVariantType, Checkbox, type CheckboxProps, type ColorType, type ColumnAlign, type ColumnDef, type ColumnType, type CommonFormDataProps, CommonTable, type CommonTableProps, type Direction, type DirectionType, Divider, type DividerProps, EmailInput, type EmailInputProps, type FontSizeType, type FontWeightType, Input, type InputProps, type JustifySelfType, type JustifyType, Label, type LabelProps, MultiSelectCheckbox, type MultiSelectCheckboxProps, type OriginalObject, Paging, type PagingProps, type Paging$1 as PagingType, Radio, type RadioProps, RequiredDot, SelectBox, type SelectBoxProps, type SelectOption$1 as SelectOption, Stack, type StackProps, Table, type TableProps, TableTop, type TableTopProps, Tag, TagInput, type TagProps, Text, TextArea, type TextAreaProps, TextButton, type TextButtonProps, type TextProps, Toggle, type ToggleProps, ToolTipBox, type ToolTipBoxProps, Tooltip, TooltipInfo, type TooltipInfoProps, type TooltipProps, type TreeData, WarningBox, type WarningBoxProps, alignSelfs, aligns, colors, directions, fontSize, fontWeight, justifies, justifySelfs, lineHeightSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -208,6 +208,26 @@ interface EmailInputProps {
|
|
|
208
208
|
}
|
|
209
209
|
declare const EmailInput: React__default.FC<EmailInputProps>;
|
|
210
210
|
|
|
211
|
+
interface SelectOption$1 {
|
|
212
|
+
value: string | number | null;
|
|
213
|
+
label: string;
|
|
214
|
+
disabled?: boolean;
|
|
215
|
+
icon?: React.ReactNode;
|
|
216
|
+
description?: string;
|
|
217
|
+
divider?: boolean;
|
|
218
|
+
}
|
|
219
|
+
interface Paging$1 {
|
|
220
|
+
totalCount: number;
|
|
221
|
+
pageNo: number;
|
|
222
|
+
fetchCount: number;
|
|
223
|
+
totalPageCount: number;
|
|
224
|
+
}
|
|
225
|
+
interface OriginalObject {
|
|
226
|
+
id: string | number | null;
|
|
227
|
+
name: string;
|
|
228
|
+
partnerName?: string;
|
|
229
|
+
[key: string]: unknown;
|
|
230
|
+
}
|
|
211
231
|
type Direction = "row" | "col" | "grid";
|
|
212
232
|
interface CommonFormDataProps {
|
|
213
233
|
isDot?: boolean;
|
|
@@ -226,6 +246,13 @@ interface CommonFormDataProps {
|
|
|
226
246
|
error?: string;
|
|
227
247
|
tooltip?: string | React.ReactNode;
|
|
228
248
|
}
|
|
249
|
+
interface TreeData {
|
|
250
|
+
id: number;
|
|
251
|
+
children?: TreeData[];
|
|
252
|
+
name: string;
|
|
253
|
+
seq: number;
|
|
254
|
+
level: number;
|
|
255
|
+
}
|
|
229
256
|
|
|
230
257
|
interface InputProps extends React__default.InputHTMLAttributes<HTMLInputElement>, CommonFormDataProps {
|
|
231
258
|
type?: string;
|
|
@@ -497,4 +524,4 @@ interface WarningBoxProps extends React__default.HTMLAttributes<HTMLDivElement>
|
|
|
497
524
|
}
|
|
498
525
|
declare const WarningBox: React__default.FC<WarningBoxProps>;
|
|
499
526
|
|
|
500
|
-
export { type AlignSelfType, type AlignType, BorderRadiusBox, type BorderRadiusBoxProps, BulletText, type BulletTextProps, Button, type ButtonProps, type ButtonVariantType, Checkbox, type CheckboxProps, type ColorType, type ColumnAlign, type ColumnDef, type ColumnType, CommonTable, type CommonTableProps, type DirectionType, Divider, type DividerProps, EmailInput, type EmailInputProps, type FontSizeType, type FontWeightType, Input, type InputProps, type JustifySelfType, type JustifyType, Label, type LabelProps, MultiSelectCheckbox, type MultiSelectCheckboxProps, Paging, type PagingProps, Radio, type RadioProps, RequiredDot, SelectBox, type SelectBoxProps, Stack, type StackProps, Table, type TableProps, TableTop, type TableTopProps, Tag, TagInput, type TagProps, Text, TextArea, type TextAreaProps, TextButton, type TextButtonProps, type TextProps, Toggle, type ToggleProps, ToolTipBox, type ToolTipBoxProps, Tooltip, TooltipInfo, type TooltipInfoProps, type TooltipProps, WarningBox, type WarningBoxProps, alignSelfs, aligns, colors, directions, fontSize, fontWeight, justifies, justifySelfs, lineHeightSize };
|
|
527
|
+
export { type AlignSelfType, type AlignType, BorderRadiusBox, type BorderRadiusBoxProps, BulletText, type BulletTextProps, Button, type ButtonProps, type ButtonVariantType, Checkbox, type CheckboxProps, type ColorType, type ColumnAlign, type ColumnDef, type ColumnType, type CommonFormDataProps, CommonTable, type CommonTableProps, type Direction, type DirectionType, Divider, type DividerProps, EmailInput, type EmailInputProps, type FontSizeType, type FontWeightType, Input, type InputProps, type JustifySelfType, type JustifyType, Label, type LabelProps, MultiSelectCheckbox, type MultiSelectCheckboxProps, type OriginalObject, Paging, type PagingProps, type Paging$1 as PagingType, Radio, type RadioProps, RequiredDot, SelectBox, type SelectBoxProps, type SelectOption$1 as SelectOption, Stack, type StackProps, Table, type TableProps, TableTop, type TableTopProps, Tag, TagInput, type TagProps, Text, TextArea, type TextAreaProps, TextButton, type TextButtonProps, type TextProps, Toggle, type ToggleProps, ToolTipBox, type ToolTipBoxProps, Tooltip, TooltipInfo, type TooltipInfoProps, type TooltipProps, type TreeData, WarningBox, type WarningBoxProps, alignSelfs, aligns, colors, directions, fontSize, fontWeight, justifies, justifySelfs, lineHeightSize };
|