@croquiscom/pds 16.29.0-next.1 → 16.29.0
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 +2 -2
- package/package.json +1 -1
- package/bundle-report.html +0 -4842
- package/dist/components/banner/NormalBanner.d.ts +0 -29
- package/dist/components/banner/NormalBanner.stories.d.ts +0 -10
- package/dist/components/category-selector/ChipsDropdown.d.ts +0 -28
- package/dist/components/icons/generated/Picking.d.ts +0 -4
- package/dist/components/icons/generated/PickingOut.d.ts +0 -4
- package/dist/components/lotties/generated/Complete.d.ts +0 -4
- package/dist/components/lotties/generated/ZigzinIntro.d.ts +0 -4
- package/dist/components/lotties/generated/index.d.ts +0 -8
- package/dist/components/popover/PopoverBase.d.ts +0 -5
- package/dist/components/table/TableHeader.d.ts +0 -9
- package/dist/components/table/TableRows.d.ts +0 -11
- package/dist/components/tree/useTreeRover.d.ts +0 -18
- package/dist/components/tree/useTreeSearch.d.ts +0 -13
- package/dist/plugin/hook/useGithubClient.d.ts +0 -16
- package/dist/plugin/plugin.d.ts +0 -1
- package/dist/plugin/types.d.ts +0 -40
- package/dist/plugin/ui/index.d.ts +0 -1
- package/dist/plugin/utils.d.ts +0 -9
- package/locales/en.d.ts +0 -89
- package/locales/en.esm.d.ts +0 -89
- package/locales/ja.d.ts +0 -89
- package/locales/ja.esm.d.ts +0 -89
- package/locales/ko.d.ts +0 -92
- package/locales/ko.esm.d.ts +0 -92
- package/plugin/plugin.js +0 -1
- package/plugin/ui.html +0 -102
- package/plugin/ui.js +0 -89
- package/repomix-output.md +0 -31243
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import React, { ReactNode } from 'react';
|
|
2
|
-
import { IconProps } from '../icons/generated';
|
|
3
|
-
export type NormalBannerKind = 'neutral' | 'info' | 'error' | 'success';
|
|
4
|
-
export type NormalBannerSize = 'small' | 'medium';
|
|
5
|
-
export interface NormalBannerProps {
|
|
6
|
-
className?: string;
|
|
7
|
-
/**
|
|
8
|
-
* @default info
|
|
9
|
-
*/
|
|
10
|
-
kind?: NormalBannerKind;
|
|
11
|
-
/**
|
|
12
|
-
* @default medium
|
|
13
|
-
*/
|
|
14
|
-
size?: NormalBannerSize;
|
|
15
|
-
/**
|
|
16
|
-
* title 좌측에 렌더링 될 아이콘 요소
|
|
17
|
-
* - title이 없을 경우 렌더되지 않습니다.
|
|
18
|
-
* - Icon 컴포넌트 color props가 있더라도 kind 따라 currentColor가 지정됩니다.
|
|
19
|
-
* - Icon 컴포넌트 size props가 있더라도 Icon 사이즈는 banner size 'medium'일경우 16, 'small'일경우 12로 고정됩니다.
|
|
20
|
-
*/
|
|
21
|
-
iconComponent?: React.ComponentType<IconProps>;
|
|
22
|
-
/**
|
|
23
|
-
* @default true
|
|
24
|
-
*/
|
|
25
|
-
showIcon?: boolean;
|
|
26
|
-
title?: string;
|
|
27
|
-
message?: ReactNode;
|
|
28
|
-
}
|
|
29
|
-
export declare const NormalBanner: ({ className, kind, size, iconComponent, showIcon, title, message, }: NormalBannerProps) => JSX.Element;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ComponentMeta } from '@storybook/react';
|
|
3
|
-
declare const _default: ComponentMeta<({ className, kind, size, iconComponent, showIcon, title, message, }: import("./NormalBanner").NormalBannerProps) => JSX.Element>;
|
|
4
|
-
export default _default;
|
|
5
|
-
export declare const Base: any;
|
|
6
|
-
export declare const NoTitle: any;
|
|
7
|
-
export declare const NoIcon: any;
|
|
8
|
-
export declare const Kind: () => JSX.Element;
|
|
9
|
-
export declare const Size: () => JSX.Element;
|
|
10
|
-
export declare const CustomIcon: () => JSX.Element;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import React, { PropsWithChildren } from 'react';
|
|
2
|
-
import { CSSValueWithLength } from '../../styles';
|
|
3
|
-
import { DropdownLabelProps } from '../dropdown/DropdownLabel';
|
|
4
|
-
import { InputSize } from '../input/types';
|
|
5
|
-
export interface ChipsDropdownOption<OptionValue> {
|
|
6
|
-
label: string;
|
|
7
|
-
value: OptionValue;
|
|
8
|
-
}
|
|
9
|
-
export interface ChipsDropdownProps<OptionValue> {
|
|
10
|
-
/**
|
|
11
|
-
* Input 너비를 지정할 수 있습니다.
|
|
12
|
-
* @default 240
|
|
13
|
-
*/
|
|
14
|
-
width?: CSSValueWithLength;
|
|
15
|
-
/**
|
|
16
|
-
* 기본값으로 [ZIndexOrder](https://github.com/croquiscom/pds/blob/main/src/styles/zIndex.ts) 규칙을 적용합니다.
|
|
17
|
-
* @default 1030
|
|
18
|
-
*/
|
|
19
|
-
zIndex?: number;
|
|
20
|
-
/** @default large */
|
|
21
|
-
size?: InputSize;
|
|
22
|
-
disabled?: boolean;
|
|
23
|
-
selectedOptions: Array<ChipsDropdownOption<OptionValue>>;
|
|
24
|
-
onOptionValuesChange?: (values: Array<OptionValue>) => void;
|
|
25
|
-
placeholder?: string;
|
|
26
|
-
status?: DropdownLabelProps['status'];
|
|
27
|
-
}
|
|
28
|
-
export declare const ChipsDropdown: <OptionValue extends string | number>({ children, width, zIndex, disabled, selectedOptions, onOptionValuesChange, placeholder, status, size: sizeProp, }: React.PropsWithChildren<ChipsDropdownProps<OptionValue>>) => React.JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export interface LottieProps extends React.SVGProps<SVGSVGElement> {
|
|
3
|
-
size?: number;
|
|
4
|
-
initialSegment?: [number, number];
|
|
5
|
-
onComplete?: () => void;
|
|
6
|
-
}
|
|
7
|
-
export { default as LottieComplete } from './Complete';
|
|
8
|
-
export { default as LottieZigzinIntro } from './ZigzinIntro';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const PopoverBase: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
theme?: import("@emotion/react").Theme;
|
|
4
|
-
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>;
|
|
5
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { SelectRowsAction, TableRowsType } from './types';
|
|
3
|
-
import { TableProps } from './Table';
|
|
4
|
-
export interface TableHeaderProps<DataType> extends Pick<TableProps<DataType>, 'columns' | 'rows' | 'stickyHeader' | 'sortBy' | 'sortDirection' | 'onSortBy' | 'selectableRows' | 'hideSelectAll' | 'resize'> {
|
|
5
|
-
allSelected?: boolean;
|
|
6
|
-
selectedRows?: TableRowsType<DataType>;
|
|
7
|
-
onSelectedRows?: (action: SelectRowsAction<DataType>) => void;
|
|
8
|
-
}
|
|
9
|
-
export declare const TableHeader: <DataType extends object = any>({ columns, rows, stickyHeader, sortBy, sortDirection, allSelected, selectedRows, selectableRows, hideSelectAll, resize, onSelectedRows, onSortBy, }: TableHeaderProps<DataType>) => JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { TableProps } from './Table';
|
|
3
|
-
import { TableRowsType, SelectRowAction } from './types';
|
|
4
|
-
interface TableRowsProps<DataType> extends Pick<TableProps<DataType>, 'columns' | 'rows' | 'noDataText' | 'loading' | 'selectableRows' | 'clickableRows' | 'cellHoverStyle' | 'resize'> {
|
|
5
|
-
tableContainerAttribute: number;
|
|
6
|
-
allSelected?: boolean;
|
|
7
|
-
selectedRows?: TableRowsType<DataType>;
|
|
8
|
-
onSelectedRow?: (action: SelectRowAction<DataType>) => void;
|
|
9
|
-
}
|
|
10
|
-
export declare const TableRows: <DataType extends object = any>({ columns, rows, loading, selectableRows, clickableRows, selectedRows, noDataText, cellHoverStyle, tableContainerAttribute, resize, onSelectedRow, }: TableRowsProps<DataType>) => JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { TreeEntry } from './types';
|
|
3
|
-
export interface UseTreeRoverProps {
|
|
4
|
-
onKeyDown: (e: React.KeyboardEvent) => void;
|
|
5
|
-
onFocus: (e: React.FocusEvent) => void;
|
|
6
|
-
tabIndex: number;
|
|
7
|
-
ref: React.RefCallback<HTMLElement>;
|
|
8
|
-
}
|
|
9
|
-
export interface UseTreeRover {
|
|
10
|
-
getRoverItemProps(item: TreeEntry, path: TreeEntry[]): UseTreeRoverProps;
|
|
11
|
-
}
|
|
12
|
-
export interface UseTreeRoverOptions {
|
|
13
|
-
items: TreeEntry[];
|
|
14
|
-
expandedIds: Set<string>;
|
|
15
|
-
onSelect: (item: TreeEntry, path: TreeEntry[]) => void;
|
|
16
|
-
onExpand: (item: TreeEntry, path: TreeEntry[]) => void;
|
|
17
|
-
}
|
|
18
|
-
export declare function useTreeRover(options: UseTreeRoverOptions): UseTreeRover;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TreeEntry } from './types';
|
|
2
|
-
export interface UseTreeSearch {
|
|
3
|
-
expandedIds: Set<string>;
|
|
4
|
-
onExpand: (item: TreeEntry) => void;
|
|
5
|
-
items: TreeEntry[];
|
|
6
|
-
}
|
|
7
|
-
export interface UseTreeSearchOptions {
|
|
8
|
-
searchKeyword?: string;
|
|
9
|
-
expandedIds?: string[];
|
|
10
|
-
defaultExpandedIds?: string[];
|
|
11
|
-
items: TreeEntry[];
|
|
12
|
-
}
|
|
13
|
-
export declare function useTreeSearch({ searchKeyword, expandedIds, defaultExpandedIds, items, }: UseTreeSearchOptions): UseTreeSearch;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
interface GithubClientOptions {
|
|
2
|
-
repoOwner: string;
|
|
3
|
-
repoName: string;
|
|
4
|
-
accessToken: string;
|
|
5
|
-
}
|
|
6
|
-
interface CreateSettingPRResponse {
|
|
7
|
-
success: boolean;
|
|
8
|
-
message: string;
|
|
9
|
-
prUrl?: string;
|
|
10
|
-
status?: number;
|
|
11
|
-
}
|
|
12
|
-
export declare function useGithubClient({ repoOwner, repoName, accessToken }: GithubClientOptions): (title: 'icons' | 'images', svgFiles: {
|
|
13
|
-
name: string;
|
|
14
|
-
content: string;
|
|
15
|
-
}[]) => Promise<CreateSettingPRResponse>;
|
|
16
|
-
export {};
|
package/dist/plugin/plugin.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/plugin/types.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
export type PluginActionType = 'EXTRACT_SVG' | 'GET_FIGMA_ACCESS_TOKEN' | 'GET_GITHUB_ACCESS_TOKEN' | 'SET_FIGMA_ACCESS_TOKEN' | 'SET_GITHUB_ACCESS_TOKEN' | 'SYNC_COMPLETE_ACCESS_TOKEN';
|
|
2
|
-
export interface node {
|
|
3
|
-
id: string;
|
|
4
|
-
name: string;
|
|
5
|
-
}
|
|
6
|
-
export interface ExtractSvgPlugin {
|
|
7
|
-
type: 'EXTRACT_SVG';
|
|
8
|
-
payload: {
|
|
9
|
-
fileKey: string;
|
|
10
|
-
nodes: node[];
|
|
11
|
-
ids: string;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
export interface GetFigmaAccessTokenPlugin {
|
|
15
|
-
type: 'GET_FIGMA_ACCESS_TOKEN';
|
|
16
|
-
payload: string;
|
|
17
|
-
}
|
|
18
|
-
export interface GetGithubAccessTokenPlugin {
|
|
19
|
-
type: 'GET_GITHUB_ACCESS_TOKEN';
|
|
20
|
-
payload: string;
|
|
21
|
-
}
|
|
22
|
-
export interface SetFigmaAccessTokenPlugin {
|
|
23
|
-
type: 'SET_FIGMA_ACCESS_TOKEN';
|
|
24
|
-
payload: string;
|
|
25
|
-
}
|
|
26
|
-
export interface SetGithubAccessTokenPlugin {
|
|
27
|
-
type: 'SET_GITHUB_ACCESS_TOKEN';
|
|
28
|
-
payload: string;
|
|
29
|
-
}
|
|
30
|
-
export interface SyncCompleteAccessTokenPlugin {
|
|
31
|
-
type: 'SYNC_COMPLETE_ACCESS_TOKEN';
|
|
32
|
-
payload: {
|
|
33
|
-
token: string;
|
|
34
|
-
type: 'SET_FIGMA_ACCESS_TOKEN' | 'SET_GITHUB_ACCESS_TOKEN';
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export type FigmaMessagePlugin = ExtractSvgPlugin | GetFigmaAccessTokenPlugin | GetGithubAccessTokenPlugin | SetFigmaAccessTokenPlugin | SetGithubAccessTokenPlugin | SyncCompleteAccessTokenPlugin;
|
|
38
|
-
export interface FigmaMessageEvent {
|
|
39
|
-
pluginMessage: FigmaMessagePlugin;
|
|
40
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/plugin/utils.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="@figma/plugin-typings/plugin-api" />
|
|
2
|
-
export declare const pascalCaseRegex: RegExp;
|
|
3
|
-
export declare const svgRegex: RegExp;
|
|
4
|
-
export declare const removeGetPrefix: (str: string) => string;
|
|
5
|
-
export declare const removeSetPrefix: (str: string) => string;
|
|
6
|
-
export declare const isComponentNode: (node: SceneNode) => node is ComponentNode;
|
|
7
|
-
export declare const findAllTargetNode: (rootNode: SceneNode) => ComponentNode[];
|
|
8
|
-
export declare const isInValidateSvgTag: (content: string[]) => boolean;
|
|
9
|
-
export declare const isInValidateSvgName: (nodeNames: string[]) => boolean;
|
package/locales/en.d.ts
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
export declare const en: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
filterPlaceholder: string;
|
|
30
|
-
};
|
|
31
|
-
DropdownFilter: {
|
|
32
|
-
reset: string;
|
|
33
|
-
confirm: string;
|
|
34
|
-
all: string;
|
|
35
|
-
};
|
|
36
|
-
DatePicker: {
|
|
37
|
-
placeholder: string;
|
|
38
|
-
footer: {
|
|
39
|
-
now: string;
|
|
40
|
-
today: string;
|
|
41
|
-
ok: string;
|
|
42
|
-
clear: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
DatePickerRange: {
|
|
46
|
-
placeholder: string[];
|
|
47
|
-
dataPreset: {
|
|
48
|
-
today: string;
|
|
49
|
-
'1-week': string;
|
|
50
|
-
'1-month': string;
|
|
51
|
-
'3-month': string;
|
|
52
|
-
'6-month': string;
|
|
53
|
-
'1-year': string;
|
|
54
|
-
all: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
TimePicker: {
|
|
58
|
-
placeholder: string;
|
|
59
|
-
footer: {
|
|
60
|
-
ok: string;
|
|
61
|
-
clear: string;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
TimeRangePicker: {
|
|
65
|
-
placeholder: string[];
|
|
66
|
-
};
|
|
67
|
-
FileUpload: {
|
|
68
|
-
label: string;
|
|
69
|
-
};
|
|
70
|
-
ImageUpload: {
|
|
71
|
-
label: string;
|
|
72
|
-
fail: string;
|
|
73
|
-
};
|
|
74
|
-
Table: {
|
|
75
|
-
noDataText: string;
|
|
76
|
-
};
|
|
77
|
-
ColumnViewController: {
|
|
78
|
-
noFixedItemsText: string;
|
|
79
|
-
fixedSectionTitle: string;
|
|
80
|
-
listSectionTitle: string;
|
|
81
|
-
max: string;
|
|
82
|
-
items: string;
|
|
83
|
-
};
|
|
84
|
-
CategorySelector: {
|
|
85
|
-
levelCategory: string;
|
|
86
|
-
selectParentCategoryLine1: string;
|
|
87
|
-
selectParentCategoryLine2: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
package/locales/en.esm.d.ts
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
export declare const en: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
filterPlaceholder: string;
|
|
30
|
-
};
|
|
31
|
-
DropdownFilter: {
|
|
32
|
-
reset: string;
|
|
33
|
-
confirm: string;
|
|
34
|
-
all: string;
|
|
35
|
-
};
|
|
36
|
-
DatePicker: {
|
|
37
|
-
placeholder: string;
|
|
38
|
-
footer: {
|
|
39
|
-
now: string;
|
|
40
|
-
today: string;
|
|
41
|
-
ok: string;
|
|
42
|
-
clear: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
DatePickerRange: {
|
|
46
|
-
placeholder: string[];
|
|
47
|
-
dataPreset: {
|
|
48
|
-
today: string;
|
|
49
|
-
'1-week': string;
|
|
50
|
-
'1-month': string;
|
|
51
|
-
'3-month': string;
|
|
52
|
-
'6-month': string;
|
|
53
|
-
'1-year': string;
|
|
54
|
-
all: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
TimePicker: {
|
|
58
|
-
placeholder: string;
|
|
59
|
-
footer: {
|
|
60
|
-
ok: string;
|
|
61
|
-
clear: string;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
TimeRangePicker: {
|
|
65
|
-
placeholder: string[];
|
|
66
|
-
};
|
|
67
|
-
FileUpload: {
|
|
68
|
-
label: string;
|
|
69
|
-
};
|
|
70
|
-
ImageUpload: {
|
|
71
|
-
label: string;
|
|
72
|
-
fail: string;
|
|
73
|
-
};
|
|
74
|
-
Table: {
|
|
75
|
-
noDataText: string;
|
|
76
|
-
};
|
|
77
|
-
ColumnViewController: {
|
|
78
|
-
noFixedItemsText: string;
|
|
79
|
-
fixedSectionTitle: string;
|
|
80
|
-
listSectionTitle: string;
|
|
81
|
-
max: string;
|
|
82
|
-
items: string;
|
|
83
|
-
};
|
|
84
|
-
CategorySelector: {
|
|
85
|
-
levelCategory: string;
|
|
86
|
-
selectParentCategoryLine1: string;
|
|
87
|
-
selectParentCategoryLine2: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
package/locales/ja.d.ts
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
export declare const ja: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
filterPlaceholder: string;
|
|
30
|
-
};
|
|
31
|
-
DropdownFilter: {
|
|
32
|
-
reset: string;
|
|
33
|
-
confirm: string;
|
|
34
|
-
all: string;
|
|
35
|
-
};
|
|
36
|
-
DatePicker: {
|
|
37
|
-
placeholder: string;
|
|
38
|
-
footer: {
|
|
39
|
-
now: string;
|
|
40
|
-
today: string;
|
|
41
|
-
ok: string;
|
|
42
|
-
clear: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
DatePickerRange: {
|
|
46
|
-
placeholder: string[];
|
|
47
|
-
dataPreset: {
|
|
48
|
-
today: string;
|
|
49
|
-
'1-week': string;
|
|
50
|
-
'1-month': string;
|
|
51
|
-
'3-month': string;
|
|
52
|
-
'6-month': string;
|
|
53
|
-
'1-year': string;
|
|
54
|
-
all: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
TimePicker: {
|
|
58
|
-
placeholder: string;
|
|
59
|
-
footer: {
|
|
60
|
-
ok: string;
|
|
61
|
-
clear: string;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
TimeRangePicker: {
|
|
65
|
-
placeholder: string[];
|
|
66
|
-
};
|
|
67
|
-
FileUpload: {
|
|
68
|
-
label: string;
|
|
69
|
-
};
|
|
70
|
-
ImageUpload: {
|
|
71
|
-
label: string;
|
|
72
|
-
fail: string;
|
|
73
|
-
};
|
|
74
|
-
Table: {
|
|
75
|
-
noDataText: string;
|
|
76
|
-
};
|
|
77
|
-
ColumnViewController: {
|
|
78
|
-
noFixedItemsText: string;
|
|
79
|
-
fixedSectionTitle: string;
|
|
80
|
-
listSectionTitle: string;
|
|
81
|
-
max: string;
|
|
82
|
-
items: string;
|
|
83
|
-
};
|
|
84
|
-
CategorySelector: {
|
|
85
|
-
levelCategory: string;
|
|
86
|
-
selectParentCategoryLine1: string;
|
|
87
|
-
selectParentCategoryLine2: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
package/locales/ja.esm.d.ts
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
export declare const ja: {
|
|
2
|
-
lang: string;
|
|
3
|
-
accessibility: {
|
|
4
|
-
info: string;
|
|
5
|
-
success: string;
|
|
6
|
-
warning: string;
|
|
7
|
-
error: string;
|
|
8
|
-
close: string;
|
|
9
|
-
page: string;
|
|
10
|
-
prev: string;
|
|
11
|
-
next: string;
|
|
12
|
-
back: string;
|
|
13
|
-
};
|
|
14
|
-
ConfirmModal: {
|
|
15
|
-
title: string;
|
|
16
|
-
confirmText: string;
|
|
17
|
-
cancelText: string;
|
|
18
|
-
};
|
|
19
|
-
AlertModal: {
|
|
20
|
-
title: string;
|
|
21
|
-
confirmText: string;
|
|
22
|
-
};
|
|
23
|
-
NoticeModal: {
|
|
24
|
-
closeText: string;
|
|
25
|
-
checkReplayText: string;
|
|
26
|
-
};
|
|
27
|
-
Dropdown: {
|
|
28
|
-
placeholder: string;
|
|
29
|
-
filterPlaceholder: string;
|
|
30
|
-
};
|
|
31
|
-
DropdownFilter: {
|
|
32
|
-
reset: string;
|
|
33
|
-
confirm: string;
|
|
34
|
-
all: string;
|
|
35
|
-
};
|
|
36
|
-
DatePicker: {
|
|
37
|
-
placeholder: string;
|
|
38
|
-
footer: {
|
|
39
|
-
now: string;
|
|
40
|
-
today: string;
|
|
41
|
-
ok: string;
|
|
42
|
-
clear: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
DatePickerRange: {
|
|
46
|
-
placeholder: string[];
|
|
47
|
-
dataPreset: {
|
|
48
|
-
today: string;
|
|
49
|
-
'1-week': string;
|
|
50
|
-
'1-month': string;
|
|
51
|
-
'3-month': string;
|
|
52
|
-
'6-month': string;
|
|
53
|
-
'1-year': string;
|
|
54
|
-
all: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
TimePicker: {
|
|
58
|
-
placeholder: string;
|
|
59
|
-
footer: {
|
|
60
|
-
ok: string;
|
|
61
|
-
clear: string;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
TimeRangePicker: {
|
|
65
|
-
placeholder: string[];
|
|
66
|
-
};
|
|
67
|
-
FileUpload: {
|
|
68
|
-
label: string;
|
|
69
|
-
};
|
|
70
|
-
ImageUpload: {
|
|
71
|
-
label: string;
|
|
72
|
-
fail: string;
|
|
73
|
-
};
|
|
74
|
-
Table: {
|
|
75
|
-
noDataText: string;
|
|
76
|
-
};
|
|
77
|
-
ColumnViewController: {
|
|
78
|
-
noFixedItemsText: string;
|
|
79
|
-
fixedSectionTitle: string;
|
|
80
|
-
listSectionTitle: string;
|
|
81
|
-
max: string;
|
|
82
|
-
items: string;
|
|
83
|
-
};
|
|
84
|
-
CategorySelector: {
|
|
85
|
-
levelCategory: string;
|
|
86
|
-
selectParentCategoryLine1: string;
|
|
87
|
-
selectParentCategoryLine2: string;
|
|
88
|
-
};
|
|
89
|
-
};
|