@croquiscom/pds 4.1.1 → 4.1.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 4.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 3cc58d1: RadioGroup width 속성 RadioBaseType 제거
8
+ - 6b1d56f: Table No Data의 아이콘과 텍스트 크기 수정
9
+
10
+ ## 4.1.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 8c4ae92: - ConfirmModal이 연속해서 사용하는 경우 후속 모달이 사라지는 이슈 수정 - fixes #406
15
+ - Message, Notification, Toast와 DatePicker 내 순환참조 이슈 수정
16
+ - rollup babelHelper 옵션의 명시적 사용 권고에 따라 수정
17
+
3
18
  ## 4.1.1
4
19
 
5
20
  ### Patch Changes
@@ -6,9 +6,6 @@ import { InputSize } from '../input/types';
6
6
  export type DisplayTimeFormat = 'hourMinute' | 'hourMinuteSecond';
7
7
  export type DisplayMode = 'popover' | 'bottomSheet';
8
8
  export type CaptionLabelType = 'month' | 'year';
9
- export declare const DATE_FORMAT = "yyyy.MM.dd";
10
- export declare const DATE_HOUR_MINUTE_FORMAT = "yyyy.MM.dd HH:mm";
11
- export declare const DATE_HOUR_MINUTE_SECOND_FORMAT = "yyyy.MM.dd HH:mm:ss";
12
9
  export interface DatePickerBaseProps {
13
10
  /**
14
11
  * Input 너비를 지정할 수 있습니다.
@@ -0,0 +1,3 @@
1
+ export declare const DATE_FORMAT = "yyyy.MM.dd";
2
+ export declare const DATE_HOUR_MINUTE_FORMAT = "yyyy.MM.dd HH:mm";
3
+ export declare const DATE_HOUR_MINUTE_SECOND_FORMAT = "yyyy.MM.dd HH:mm:ss";
@@ -1,2 +1,3 @@
1
1
  export * from './DatePicker';
2
2
  export * from './DateRangePicker';
3
+ export * from './constants';
@@ -1,6 +1,6 @@
1
1
  import { FunctionComponent } from 'react';
2
- import { NotificationComponentProps } from '../notification';
3
- import { ToastComponentProps } from '../toast';
2
+ import { NotificationComponentProps } from '../notification/Notification';
3
+ import { ToastComponentProps } from '../toast/Toast';
4
4
  import type { MessageDirection, MessagePositionType } from './types';
5
5
  export interface MessageContainerProps {
6
6
  /**
@@ -5,3 +5,4 @@ declare const _default: ComponentMeta<({ title, width, zIndex, dense, fill, text
5
5
  export default _default;
6
6
  export declare const Base: ComponentStory<typeof ConfirmModal>;
7
7
  export declare const Dense: ComponentStory<typeof ConfirmModal>;
8
+ export declare const ContinuosOpen: ComponentStory<typeof ConfirmModal>;
@@ -1,7 +1,7 @@
1
1
  import React, { InputHTMLAttributes } from 'react';
2
2
  import { AriaFocusProps } from '../../types/common';
3
3
  import { RadioCategoryType, RadioItemType, RadioWidthType } from './RadioGroup';
4
- interface RadioBaseType extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'>, AriaFocusProps {
4
+ interface RadioBaseType extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'size' | 'width'>, AriaFocusProps {
5
5
  }
6
6
  export interface RadioProps extends RadioBaseType, RadioCategoryType<RadioItemType> {
7
7
  /**