@croquiscom/pds 8.0.0 → 8.1.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 +14 -0
- package/dist/components/table/styles.d.ts +14 -0
- package/dist/foundation/colors.d.ts +11 -0
- package/dist/foundation/semantic_colors.d.ts +26 -0
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/table/migrate-table.ts +60 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 8.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d9be52c: ## 신규 색상 추가
|
|
8
|
+
- `colors`에 zigzag_pink_new 컬러가 추가 되었습니다
|
|
9
|
+
- `semantic_colors`에 graph 컬러가 추가 되었습니다
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0b1735a: TableCol 스타일만 참조하도록 변경
|
|
14
|
+
|
|
15
|
+
Table 마이그레이션 스크립트변경 안되는 케이스추가
|
|
16
|
+
|
|
3
17
|
## 8.0.0
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ColumnAlign } from './types';
|
|
3
|
+
export declare const StyledTableCol: import("@emotion/styled").StyledComponent<{
|
|
4
|
+
theme?: import("@emotion/react").Theme;
|
|
5
|
+
as?: import("react").ElementType<any>;
|
|
6
|
+
} & {
|
|
7
|
+
fixed?: boolean;
|
|
8
|
+
fixedColWidth?: number;
|
|
9
|
+
stickyHeader?: boolean;
|
|
10
|
+
groupColumn?: boolean;
|
|
11
|
+
sortable?: boolean;
|
|
12
|
+
resize?: boolean;
|
|
13
|
+
align?: ColumnAlign;
|
|
14
|
+
}, import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, {}>;
|
|
@@ -20,6 +20,17 @@ export declare const colors: {
|
|
|
20
20
|
zigzag_pink700: string;
|
|
21
21
|
zigzag_pink800: string;
|
|
22
22
|
zigzag_pink900: string;
|
|
23
|
+
zigzag_pink_new50: string;
|
|
24
|
+
zigzag_pink_new100: string;
|
|
25
|
+
zigzag_pink_new150: string;
|
|
26
|
+
zigzag_pink_new200: string;
|
|
27
|
+
zigzag_pink_new300: string;
|
|
28
|
+
zigzag_pink_new400: string;
|
|
29
|
+
zigzag_pink_new500: string;
|
|
30
|
+
zigzag_pink_new600: string;
|
|
31
|
+
zigzag_pink_new700: string;
|
|
32
|
+
zigzag_pink_new800: string;
|
|
33
|
+
zigzag_pink_new900: string;
|
|
23
34
|
blue50: string;
|
|
24
35
|
blue100: string;
|
|
25
36
|
blue200: string;
|
|
@@ -42,4 +42,30 @@ export declare const semantic_colors: {
|
|
|
42
42
|
negative_light: string;
|
|
43
43
|
negative_disabled: string;
|
|
44
44
|
};
|
|
45
|
+
graph: {
|
|
46
|
+
red_light: string;
|
|
47
|
+
red: string;
|
|
48
|
+
red_dark: string;
|
|
49
|
+
blue_light: string;
|
|
50
|
+
blue: string;
|
|
51
|
+
blue_dark: string;
|
|
52
|
+
orange_light: string;
|
|
53
|
+
orange: string;
|
|
54
|
+
orange_dark: string;
|
|
55
|
+
purple_light: string;
|
|
56
|
+
purple: string;
|
|
57
|
+
purple_dark: string;
|
|
58
|
+
yellow_light: string;
|
|
59
|
+
yellow: string;
|
|
60
|
+
yellow_dark: string;
|
|
61
|
+
pink_light: string;
|
|
62
|
+
pink: string;
|
|
63
|
+
pink_dark: string;
|
|
64
|
+
green_light: string;
|
|
65
|
+
green: string;
|
|
66
|
+
green_dark: string;
|
|
67
|
+
sky_blue_light: string;
|
|
68
|
+
sky_blue: string;
|
|
69
|
+
sky_blue_dark: string;
|
|
70
|
+
};
|
|
45
71
|
};
|