@croquiscom/pds 8.6.0 → 8.8.1

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,23 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2a56ba7: PanelTab 숫자 표기 규칙 추가
8
+
9
+ ## 8.8.0
10
+
11
+ ### Minor Changes
12
+
13
+ - b3bcc77: ColumnViewController disabled 적용
14
+
15
+ ## 8.7.0
16
+
17
+ ### Minor Changes
18
+
19
+ - d2524d4: Popover placement에 bottom-end 추가
20
+
3
21
  ## 8.6.0
4
22
 
5
23
  ### Minor Changes
@@ -1,8 +1,10 @@
1
- import { ComponentMeta } from '@storybook/react';
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
2
2
  import React from 'react';
3
+ import { ColumnViewController } from './ColumnViewController';
3
4
  declare const _default: ComponentMeta<(<T>({ children, columns, onChange, width, canFixed, pullsFixed, maxFixedCount, noFixedItemsText, fixedSectionTitle, listSectionTitle, }: React.PropsWithChildren<import("./ColumnViewController").ColumnViewControllerProps<T>>) => JSX.Element)>;
4
5
  export default _default;
5
6
  export declare const Base: any;
6
7
  export declare const PullsFixed: any;
7
8
  export declare const MaxFixedCount: any;
8
9
  export declare const NoFixed: any;
10
+ export declare const Disabled: ComponentStory<typeof ColumnViewController>;
@@ -59,6 +59,10 @@ export type DataTableColumnBase = {
59
59
  * @default left
60
60
  */
61
61
  cellAlign?: ColumnAlign;
62
+ /**
63
+ * 노출과 순서 조정 불가 여부
64
+ */
65
+ disabled?: boolean;
62
66
  };
63
67
  export interface DataTableColumnType<DataType> extends DataTableColumnBase {
64
68
  id: Extract<keyof DataType, string>;
@@ -9,5 +9,6 @@ export interface PanelTabProps extends Omit<HTMLAttributes<HTMLButtonElement>, '
9
9
  highlight?: boolean;
10
10
  caption?: string;
11
11
  disabled?: boolean;
12
+ locale?: 'ko-KR' | 'en-US';
12
13
  }
13
- export declare const PanelTab: ({ id, onClick, className, caption, highlight, helperIcon, suffix, title, number, disabled, ...props }: PanelTabProps) => JSX.Element;
14
+ export declare const PanelTab: ({ id, onClick, className, caption, highlight, helperIcon, suffix, title, number, disabled, locale, ...props }: PanelTabProps) => JSX.Element;
@@ -1,5 +1,7 @@
1
1
  /// <reference types="react" />
2
- import { ComponentMeta } from '@storybook/react';
3
- declare const _default: ComponentMeta<({ id, onClick, className, caption, highlight, helperIcon, suffix, title, number, disabled, ...props }: import("./PanelTab").PanelTabProps) => JSX.Element>;
2
+ import { ComponentStory, ComponentMeta } from '@storybook/react';
3
+ import { PanelTab } from './PanelTab';
4
+ declare const _default: ComponentMeta<({ id, onClick, className, caption, highlight, helperIcon, suffix, title, number, disabled, locale, ...props }: import("./PanelTab").PanelTabProps) => JSX.Element>;
4
5
  export default _default;
5
6
  export declare const Base: any;
7
+ export declare const Abbreviation: ComponentStory<typeof PanelTab>;
@@ -18,7 +18,7 @@ export interface TooltipProps extends TooltipBaseProps {
18
18
  /** @default hover */
19
19
  openerTriggerEvent?: OpenerTriggerEvent;
20
20
  /** @default top */
21
- placement?: Placement;
21
+ placement?: Exclude<Placement, 'bottom-end'>;
22
22
  /**
23
23
  * 기본값으로 [ZIndexOrder](https://github.com/croquiscom/pds/blob/main/src/styles/zIndex.ts) 규칙을 적용합니다.
24
24
  * @default 1070