@shoplflow/base 0.31.8 → 0.31.10
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 +1492 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +150 -3
- package/dist/index.d.ts +150 -3
- package/dist/index.js +1492 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
package/dist/index.d.cts
CHANGED
|
@@ -12,6 +12,8 @@ export { arrow, flip, hide, inline, offset, shift, size } from '@floating-ui/rea
|
|
|
12
12
|
import { Middleware } from '@floating-ui/react-dom';
|
|
13
13
|
import { OffsetOptions } from '@floating-ui/core';
|
|
14
14
|
import { positionValues } from 'react-custom-scrollbars-2';
|
|
15
|
+
import { DatePickerProps, ReactDatePickerCustomHeaderProps } from 'react-datepicker';
|
|
16
|
+
import { Locale } from 'react-datepicker/dist/date_utils';
|
|
15
17
|
|
|
16
18
|
declare type DomainType = 'SHOPL' | 'HADA';
|
|
17
19
|
|
|
@@ -614,7 +616,7 @@ declare type ButtonComponent = <T extends ElementType = 'button'>(props: ButtonP
|
|
|
614
616
|
ref?: ComponentPropsWithRef<T>['ref'];
|
|
615
617
|
}) => ReactElement | null;
|
|
616
618
|
|
|
617
|
-
declare const Button:
|
|
619
|
+
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps<ElementType<any>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
618
620
|
|
|
619
621
|
declare const IconButtonSizeVariants: {
|
|
620
622
|
readonly S: "S";
|
|
@@ -634,7 +636,7 @@ declare type IconButtonComponent = <T extends ElementType = 'button'>(props: Ico
|
|
|
634
636
|
ref?: ComponentPropsWithRef<T>['ref'];
|
|
635
637
|
}) => ReactElement | null;
|
|
636
638
|
|
|
637
|
-
declare const IconButton:
|
|
639
|
+
declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps<ElementType<any>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
638
640
|
|
|
639
641
|
declare const CalloutTypes: {
|
|
640
642
|
readonly INFORMATION: "INFORMATION";
|
|
@@ -1259,4 +1261,149 @@ declare const ToggleButton: {
|
|
|
1259
1261
|
InnerRadio: React__default.ForwardRefExoticComponent<ToggleButtonInnerRadioProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1260
1262
|
};
|
|
1261
1263
|
|
|
1262
|
-
|
|
1264
|
+
declare const DayDatepickerSizeVariants: {
|
|
1265
|
+
readonly S: "S";
|
|
1266
|
+
readonly M: "M";
|
|
1267
|
+
};
|
|
1268
|
+
/**
|
|
1269
|
+
* single, multiple, range union type (캘린더의 형태)
|
|
1270
|
+
*/
|
|
1271
|
+
declare type DayCalendarType = {
|
|
1272
|
+
type: 'single';
|
|
1273
|
+
handleDayChange: (date: Date | null) => void;
|
|
1274
|
+
} | {
|
|
1275
|
+
type: 'multiple';
|
|
1276
|
+
handleMutlipleDaysChange: (date: Date[] | null) => void;
|
|
1277
|
+
} | {
|
|
1278
|
+
type: 'range';
|
|
1279
|
+
handleDayRangeChange: (dates: [Date | null, Date | null]) => void;
|
|
1280
|
+
};
|
|
1281
|
+
declare type DayDatepickerSizeVariantType = $Values<typeof DayDatepickerSizeVariants>;
|
|
1282
|
+
declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay'> & DayDatepickerOptionProps;
|
|
1283
|
+
declare type DayDatepickerOptionProps = {
|
|
1284
|
+
/**
|
|
1285
|
+
* 캘린더 타입
|
|
1286
|
+
*/
|
|
1287
|
+
calendarType: DayCalendarType;
|
|
1288
|
+
minDate?: Date;
|
|
1289
|
+
maxDate?: Date;
|
|
1290
|
+
locale?: Locale;
|
|
1291
|
+
} & SizeVariantProps<DayDatepickerSizeVariantType>;
|
|
1292
|
+
declare type DayDatepickerHeaderCustomProps = ReactDatePickerCustomHeaderProps & {
|
|
1293
|
+
minDate?: Date;
|
|
1294
|
+
maxDate?: Date;
|
|
1295
|
+
locale?: Locale;
|
|
1296
|
+
};
|
|
1297
|
+
|
|
1298
|
+
declare const DayDatepicker: ({ sizeVar, children, calendarType, ...rest }: DayDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1299
|
+
|
|
1300
|
+
declare type MonthClickDateInfo = {
|
|
1301
|
+
startDate?: Date;
|
|
1302
|
+
endDate?: Date;
|
|
1303
|
+
selectedMonthRange: number;
|
|
1304
|
+
};
|
|
1305
|
+
declare type MonthDatepickerProps = {
|
|
1306
|
+
/**
|
|
1307
|
+
* 선택된 시작 날짜
|
|
1308
|
+
*/
|
|
1309
|
+
initStartDate?: Date;
|
|
1310
|
+
/**
|
|
1311
|
+
* 선택된 마지막 날짜
|
|
1312
|
+
*/
|
|
1313
|
+
initEndDate?: Date;
|
|
1314
|
+
handleMonthClick: (dateInfo: MonthClickDateInfo) => void;
|
|
1315
|
+
/**
|
|
1316
|
+
* 최소 선택 가능 날짜
|
|
1317
|
+
*/
|
|
1318
|
+
minDate?: Date;
|
|
1319
|
+
/**
|
|
1320
|
+
* 최대 선택 가능 날짜
|
|
1321
|
+
*/
|
|
1322
|
+
maxDate?: Date;
|
|
1323
|
+
/**
|
|
1324
|
+
* 하나의 월만 선택 여부
|
|
1325
|
+
*/
|
|
1326
|
+
onlySingleMonth?: boolean;
|
|
1327
|
+
};
|
|
1328
|
+
declare type MonthDatepickerStyleType = {
|
|
1329
|
+
inRange: boolean;
|
|
1330
|
+
isStart: boolean;
|
|
1331
|
+
isEnd: boolean;
|
|
1332
|
+
disabled: boolean;
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
declare const MonthDatepicker: ({ handleMonthClick, initStartDate, initEndDate, minDate, maxDate, onlySingleMonth, }: MonthDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1336
|
+
|
|
1337
|
+
declare type AnnualDatepickerProps = {
|
|
1338
|
+
currentYear?: number;
|
|
1339
|
+
startYear?: number;
|
|
1340
|
+
endYear?: number;
|
|
1341
|
+
handleYearClick: (year: number) => void;
|
|
1342
|
+
};
|
|
1343
|
+
|
|
1344
|
+
declare const AnnualDatepicker: ({ startYear, endYear, currentYear, handleYearClick, }: AnnualDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1345
|
+
|
|
1346
|
+
declare type WeekClickDateInfo = {
|
|
1347
|
+
startWeek?: number;
|
|
1348
|
+
startYear?: number;
|
|
1349
|
+
startDate?: Date;
|
|
1350
|
+
endWeek?: number;
|
|
1351
|
+
endYear?: number;
|
|
1352
|
+
endDate?: Date;
|
|
1353
|
+
/**
|
|
1354
|
+
* 선택된 주차 범위 (ex: 4주)
|
|
1355
|
+
*/
|
|
1356
|
+
selectedWeeksRange: number;
|
|
1357
|
+
};
|
|
1358
|
+
declare type WeekDatepickerProps = {
|
|
1359
|
+
/**
|
|
1360
|
+
* 선택된 시작 날짜
|
|
1361
|
+
*/
|
|
1362
|
+
initStartDate?: Date;
|
|
1363
|
+
/**
|
|
1364
|
+
* 선택된 마지막 날짜
|
|
1365
|
+
*/
|
|
1366
|
+
initEndDate?: Date;
|
|
1367
|
+
/**
|
|
1368
|
+
* @param dateInfo
|
|
1369
|
+
*/
|
|
1370
|
+
handleWeekClick: (dateInfo: WeekClickDateInfo) => void;
|
|
1371
|
+
/**
|
|
1372
|
+
* 최소 선택 가능 날짜
|
|
1373
|
+
*/
|
|
1374
|
+
minDate?: Date;
|
|
1375
|
+
/**
|
|
1376
|
+
* 최대 선택 가능 날짜
|
|
1377
|
+
*/
|
|
1378
|
+
maxDate?: Date;
|
|
1379
|
+
/**
|
|
1380
|
+
* 하나의 주만 선택 여부
|
|
1381
|
+
*/
|
|
1382
|
+
onlySingleWeek?: boolean;
|
|
1383
|
+
};
|
|
1384
|
+
declare type WeekDatepickerStyleType = {
|
|
1385
|
+
inRange: boolean;
|
|
1386
|
+
isStart: boolean;
|
|
1387
|
+
isEnd: boolean;
|
|
1388
|
+
disabled: boolean;
|
|
1389
|
+
};
|
|
1390
|
+
|
|
1391
|
+
declare const WeekDatepicker: ({ handleWeekClick, initStartDate, initEndDate, minDate, maxDate, onlySingleWeek, }: WeekDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1392
|
+
|
|
1393
|
+
declare type YearSelectProps = {
|
|
1394
|
+
optionList: Array<{
|
|
1395
|
+
value: number;
|
|
1396
|
+
label: string;
|
|
1397
|
+
}>;
|
|
1398
|
+
className?: string;
|
|
1399
|
+
parentClassName?: string;
|
|
1400
|
+
activeValue?: number;
|
|
1401
|
+
maxHeight?: string;
|
|
1402
|
+
onClose?: () => void;
|
|
1403
|
+
onClick: (item: {
|
|
1404
|
+
value: number;
|
|
1405
|
+
label: string;
|
|
1406
|
+
}) => void;
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
export { AnnualDatepicker, AnnualDatepickerProps, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, Dropdown, DropdownButtonProps, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, DropdownProps, DropdownSizeVariantType, FontWeightTokens, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, SpacingTokens, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, TREE_SYMBOL_KEY, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useHandleModal, useModalValue, useTabs };
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export { arrow, flip, hide, inline, offset, shift, size } from '@floating-ui/rea
|
|
|
12
12
|
import { Middleware } from '@floating-ui/react-dom';
|
|
13
13
|
import { OffsetOptions } from '@floating-ui/core';
|
|
14
14
|
import { positionValues } from 'react-custom-scrollbars-2';
|
|
15
|
+
import { DatePickerProps, ReactDatePickerCustomHeaderProps } from 'react-datepicker';
|
|
16
|
+
import { Locale } from 'react-datepicker/dist/date_utils';
|
|
15
17
|
|
|
16
18
|
declare type DomainType = 'SHOPL' | 'HADA';
|
|
17
19
|
|
|
@@ -614,7 +616,7 @@ declare type ButtonComponent = <T extends ElementType = 'button'>(props: ButtonP
|
|
|
614
616
|
ref?: ComponentPropsWithRef<T>['ref'];
|
|
615
617
|
}) => ReactElement | null;
|
|
616
618
|
|
|
617
|
-
declare const Button:
|
|
619
|
+
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps<ElementType<any>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
618
620
|
|
|
619
621
|
declare const IconButtonSizeVariants: {
|
|
620
622
|
readonly S: "S";
|
|
@@ -634,7 +636,7 @@ declare type IconButtonComponent = <T extends ElementType = 'button'>(props: Ico
|
|
|
634
636
|
ref?: ComponentPropsWithRef<T>['ref'];
|
|
635
637
|
}) => ReactElement | null;
|
|
636
638
|
|
|
637
|
-
declare const IconButton:
|
|
639
|
+
declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps<ElementType<any>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
638
640
|
|
|
639
641
|
declare const CalloutTypes: {
|
|
640
642
|
readonly INFORMATION: "INFORMATION";
|
|
@@ -1259,4 +1261,149 @@ declare const ToggleButton: {
|
|
|
1259
1261
|
InnerRadio: React__default.ForwardRefExoticComponent<ToggleButtonInnerRadioProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1260
1262
|
};
|
|
1261
1263
|
|
|
1262
|
-
|
|
1264
|
+
declare const DayDatepickerSizeVariants: {
|
|
1265
|
+
readonly S: "S";
|
|
1266
|
+
readonly M: "M";
|
|
1267
|
+
};
|
|
1268
|
+
/**
|
|
1269
|
+
* single, multiple, range union type (캘린더의 형태)
|
|
1270
|
+
*/
|
|
1271
|
+
declare type DayCalendarType = {
|
|
1272
|
+
type: 'single';
|
|
1273
|
+
handleDayChange: (date: Date | null) => void;
|
|
1274
|
+
} | {
|
|
1275
|
+
type: 'multiple';
|
|
1276
|
+
handleMutlipleDaysChange: (date: Date[] | null) => void;
|
|
1277
|
+
} | {
|
|
1278
|
+
type: 'range';
|
|
1279
|
+
handleDayRangeChange: (dates: [Date | null, Date | null]) => void;
|
|
1280
|
+
};
|
|
1281
|
+
declare type DayDatepickerSizeVariantType = $Values<typeof DayDatepickerSizeVariants>;
|
|
1282
|
+
declare type DayDatepickerProps = Pick<DatePickerProps, 'highlightDates' | 'startDate' | 'endDate' | 'locale' | 'selectedDates' | 'selected' | 'children' | 'excludeDates' | 'calendarStartDay'> & DayDatepickerOptionProps;
|
|
1283
|
+
declare type DayDatepickerOptionProps = {
|
|
1284
|
+
/**
|
|
1285
|
+
* 캘린더 타입
|
|
1286
|
+
*/
|
|
1287
|
+
calendarType: DayCalendarType;
|
|
1288
|
+
minDate?: Date;
|
|
1289
|
+
maxDate?: Date;
|
|
1290
|
+
locale?: Locale;
|
|
1291
|
+
} & SizeVariantProps<DayDatepickerSizeVariantType>;
|
|
1292
|
+
declare type DayDatepickerHeaderCustomProps = ReactDatePickerCustomHeaderProps & {
|
|
1293
|
+
minDate?: Date;
|
|
1294
|
+
maxDate?: Date;
|
|
1295
|
+
locale?: Locale;
|
|
1296
|
+
};
|
|
1297
|
+
|
|
1298
|
+
declare const DayDatepicker: ({ sizeVar, children, calendarType, ...rest }: DayDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1299
|
+
|
|
1300
|
+
declare type MonthClickDateInfo = {
|
|
1301
|
+
startDate?: Date;
|
|
1302
|
+
endDate?: Date;
|
|
1303
|
+
selectedMonthRange: number;
|
|
1304
|
+
};
|
|
1305
|
+
declare type MonthDatepickerProps = {
|
|
1306
|
+
/**
|
|
1307
|
+
* 선택된 시작 날짜
|
|
1308
|
+
*/
|
|
1309
|
+
initStartDate?: Date;
|
|
1310
|
+
/**
|
|
1311
|
+
* 선택된 마지막 날짜
|
|
1312
|
+
*/
|
|
1313
|
+
initEndDate?: Date;
|
|
1314
|
+
handleMonthClick: (dateInfo: MonthClickDateInfo) => void;
|
|
1315
|
+
/**
|
|
1316
|
+
* 최소 선택 가능 날짜
|
|
1317
|
+
*/
|
|
1318
|
+
minDate?: Date;
|
|
1319
|
+
/**
|
|
1320
|
+
* 최대 선택 가능 날짜
|
|
1321
|
+
*/
|
|
1322
|
+
maxDate?: Date;
|
|
1323
|
+
/**
|
|
1324
|
+
* 하나의 월만 선택 여부
|
|
1325
|
+
*/
|
|
1326
|
+
onlySingleMonth?: boolean;
|
|
1327
|
+
};
|
|
1328
|
+
declare type MonthDatepickerStyleType = {
|
|
1329
|
+
inRange: boolean;
|
|
1330
|
+
isStart: boolean;
|
|
1331
|
+
isEnd: boolean;
|
|
1332
|
+
disabled: boolean;
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
declare const MonthDatepicker: ({ handleMonthClick, initStartDate, initEndDate, minDate, maxDate, onlySingleMonth, }: MonthDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1336
|
+
|
|
1337
|
+
declare type AnnualDatepickerProps = {
|
|
1338
|
+
currentYear?: number;
|
|
1339
|
+
startYear?: number;
|
|
1340
|
+
endYear?: number;
|
|
1341
|
+
handleYearClick: (year: number) => void;
|
|
1342
|
+
};
|
|
1343
|
+
|
|
1344
|
+
declare const AnnualDatepicker: ({ startYear, endYear, currentYear, handleYearClick, }: AnnualDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1345
|
+
|
|
1346
|
+
declare type WeekClickDateInfo = {
|
|
1347
|
+
startWeek?: number;
|
|
1348
|
+
startYear?: number;
|
|
1349
|
+
startDate?: Date;
|
|
1350
|
+
endWeek?: number;
|
|
1351
|
+
endYear?: number;
|
|
1352
|
+
endDate?: Date;
|
|
1353
|
+
/**
|
|
1354
|
+
* 선택된 주차 범위 (ex: 4주)
|
|
1355
|
+
*/
|
|
1356
|
+
selectedWeeksRange: number;
|
|
1357
|
+
};
|
|
1358
|
+
declare type WeekDatepickerProps = {
|
|
1359
|
+
/**
|
|
1360
|
+
* 선택된 시작 날짜
|
|
1361
|
+
*/
|
|
1362
|
+
initStartDate?: Date;
|
|
1363
|
+
/**
|
|
1364
|
+
* 선택된 마지막 날짜
|
|
1365
|
+
*/
|
|
1366
|
+
initEndDate?: Date;
|
|
1367
|
+
/**
|
|
1368
|
+
* @param dateInfo
|
|
1369
|
+
*/
|
|
1370
|
+
handleWeekClick: (dateInfo: WeekClickDateInfo) => void;
|
|
1371
|
+
/**
|
|
1372
|
+
* 최소 선택 가능 날짜
|
|
1373
|
+
*/
|
|
1374
|
+
minDate?: Date;
|
|
1375
|
+
/**
|
|
1376
|
+
* 최대 선택 가능 날짜
|
|
1377
|
+
*/
|
|
1378
|
+
maxDate?: Date;
|
|
1379
|
+
/**
|
|
1380
|
+
* 하나의 주만 선택 여부
|
|
1381
|
+
*/
|
|
1382
|
+
onlySingleWeek?: boolean;
|
|
1383
|
+
};
|
|
1384
|
+
declare type WeekDatepickerStyleType = {
|
|
1385
|
+
inRange: boolean;
|
|
1386
|
+
isStart: boolean;
|
|
1387
|
+
isEnd: boolean;
|
|
1388
|
+
disabled: boolean;
|
|
1389
|
+
};
|
|
1390
|
+
|
|
1391
|
+
declare const WeekDatepicker: ({ handleWeekClick, initStartDate, initEndDate, minDate, maxDate, onlySingleWeek, }: WeekDatepickerProps) => react_jsx_runtime.JSX.Element;
|
|
1392
|
+
|
|
1393
|
+
declare type YearSelectProps = {
|
|
1394
|
+
optionList: Array<{
|
|
1395
|
+
value: number;
|
|
1396
|
+
label: string;
|
|
1397
|
+
}>;
|
|
1398
|
+
className?: string;
|
|
1399
|
+
parentClassName?: string;
|
|
1400
|
+
activeValue?: number;
|
|
1401
|
+
maxHeight?: string;
|
|
1402
|
+
onClose?: () => void;
|
|
1403
|
+
onClick: (item: {
|
|
1404
|
+
value: number;
|
|
1405
|
+
label: string;
|
|
1406
|
+
}) => void;
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
export { AnnualDatepicker, AnnualDatepickerProps, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, Dropdown, DropdownButtonProps, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, DropdownProps, DropdownSizeVariantType, FontWeightTokens, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, SpacingTokens, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, TREE_SYMBOL_KEY, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useHandleModal, useModalValue, useTabs };
|