@scglab/admin-ui 0.1.4 → 0.1.6
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/README.md +100 -0
- package/dist/index.cjs +52 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +57 -30
- package/dist/index.d.ts +57 -30
- package/dist/index.js +52 -30
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +55 -40
- package/package.json +20 -8
package/dist/styles/index.css
CHANGED
|
@@ -1659,8 +1659,10 @@
|
|
|
1659
1659
|
}
|
|
1660
1660
|
|
|
1661
1661
|
.focus\:ring-2:focus {
|
|
1662
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset, 0 0 0 0)
|
|
1663
|
-
|
|
1662
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset, 0 0 0 0)
|
|
1663
|
+
var(--tw-ring-offset-color);
|
|
1664
|
+
--tw-ring-shadow: var(--tw-ring-inset, 0 0 0 calc(2px + 0))
|
|
1665
|
+
var(--tw-ring-color);
|
|
1664
1666
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
|
|
1665
1667
|
}
|
|
1666
1668
|
|
|
@@ -1815,14 +1817,20 @@ body {
|
|
|
1815
1817
|
line-height: 1.5;
|
|
1816
1818
|
}
|
|
1817
1819
|
|
|
1818
|
-
h1,
|
|
1820
|
+
h1,
|
|
1821
|
+
h2,
|
|
1822
|
+
h3,
|
|
1823
|
+
h4,
|
|
1824
|
+
h5,
|
|
1825
|
+
h6 {
|
|
1819
1826
|
margin: 0;
|
|
1820
1827
|
padding: 0;
|
|
1821
1828
|
font-size: inherit;
|
|
1822
1829
|
font-weight: inherit;
|
|
1823
1830
|
}
|
|
1824
1831
|
|
|
1825
|
-
ul,
|
|
1832
|
+
ul,
|
|
1833
|
+
ol {
|
|
1826
1834
|
list-style: none;
|
|
1827
1835
|
margin: 0;
|
|
1828
1836
|
padding: 0;
|
|
@@ -1871,7 +1879,14 @@ table {
|
|
|
1871
1879
|
border-spacing: 0;
|
|
1872
1880
|
}
|
|
1873
1881
|
|
|
1874
|
-
p,
|
|
1882
|
+
p,
|
|
1883
|
+
blockquote,
|
|
1884
|
+
pre,
|
|
1885
|
+
address,
|
|
1886
|
+
hr,
|
|
1887
|
+
dl,
|
|
1888
|
+
dd,
|
|
1889
|
+
figure {
|
|
1875
1890
|
margin: 0;
|
|
1876
1891
|
padding: 0;
|
|
1877
1892
|
}
|
|
@@ -1889,46 +1904,46 @@ legend {
|
|
|
1889
1904
|
:root {
|
|
1890
1905
|
--color-white: #ffffff;
|
|
1891
1906
|
--color-black: #000000;
|
|
1892
|
-
--color-gray: #
|
|
1893
|
-
--color-primary: #
|
|
1894
|
-
--color-primary10: #
|
|
1895
|
-
--color-primary5: #
|
|
1896
|
-
--color-primary3: #
|
|
1907
|
+
--color-gray: #6b7280;
|
|
1908
|
+
--color-primary: #3083ff;
|
|
1909
|
+
--color-primary10: #eaf3ff;
|
|
1910
|
+
--color-primary5: #f5f9ff;
|
|
1911
|
+
--color-primary3: #f9fbff;
|
|
1897
1912
|
--color-primary3Border: rgba(48, 131, 255, 0.3019607843);
|
|
1898
|
-
--color-primaryLight: #
|
|
1913
|
+
--color-primaryLight: #eaf3ff;
|
|
1899
1914
|
--color-primaryText: #111928;
|
|
1900
1915
|
--color-text: #637381;
|
|
1901
|
-
--color-textLight: #
|
|
1902
|
-
--color-secondary: #
|
|
1903
|
-
--color-secondaryLight: #
|
|
1904
|
-
--color-secondaryText: #
|
|
1905
|
-
--color-stroke: #
|
|
1906
|
-
--color-line: #
|
|
1907
|
-
--color-dark2: #
|
|
1916
|
+
--color-textLight: #f3f4f6;
|
|
1917
|
+
--color-secondary: #18ff82;
|
|
1918
|
+
--color-secondaryLight: #e8fff3;
|
|
1919
|
+
--color-secondaryText: #8899a8;
|
|
1920
|
+
--color-stroke: #dfe4ea;
|
|
1921
|
+
--color-line: #e7ecf3;
|
|
1922
|
+
--color-dark2: #1f2a37;
|
|
1908
1923
|
--color-dark3: #374151;
|
|
1909
|
-
--color-dark4: #
|
|
1910
|
-
--color-dark5: #
|
|
1911
|
-
--color-dark6: #
|
|
1912
|
-
--color-dark7: #
|
|
1913
|
-
--color-dark8: #
|
|
1914
|
-
--color-gray1: #
|
|
1915
|
-
--color-gray2: #
|
|
1916
|
-
--color-gray3: #
|
|
1917
|
-
--color-gray4: #
|
|
1918
|
-
--color-gray5: #
|
|
1919
|
-
--color-gray6: #
|
|
1920
|
-
--color-gray7: #
|
|
1924
|
+
--color-dark4: #4b5563;
|
|
1925
|
+
--color-dark5: #6b7280;
|
|
1926
|
+
--color-dark6: #9ca3af;
|
|
1927
|
+
--color-dark7: #d1d5db;
|
|
1928
|
+
--color-dark8: #e5e7eb;
|
|
1929
|
+
--color-gray1: #f9fafb;
|
|
1930
|
+
--color-gray2: #f3f4f6;
|
|
1931
|
+
--color-gray3: #e5e7eb;
|
|
1932
|
+
--color-gray4: #dee2e6;
|
|
1933
|
+
--color-gray5: #ced4da;
|
|
1934
|
+
--color-gray6: #ced4da;
|
|
1935
|
+
--color-gray7: #ced4da;
|
|
1921
1936
|
--color-green: #016630;
|
|
1922
|
-
--color-greenLight: #
|
|
1923
|
-
--color-red: #
|
|
1924
|
-
--color-red5: #
|
|
1925
|
-
--color-redLight: #
|
|
1926
|
-
--color-orange: #
|
|
1927
|
-
--color-orangeLight: #
|
|
1928
|
-
--color-blue: #
|
|
1929
|
-
--color-blueLight: #
|
|
1930
|
-
--color-warning: #
|
|
1931
|
-
--color-warningLight: #
|
|
1937
|
+
--color-greenLight: #dcfce7;
|
|
1938
|
+
--color-red: #9f0712;
|
|
1939
|
+
--color-red5: #fef6f6;
|
|
1940
|
+
--color-redLight: #ffe2e2;
|
|
1941
|
+
--color-orange: #9f2d00;
|
|
1942
|
+
--color-orangeLight: #ffedd4;
|
|
1943
|
+
--color-blue: #193cb8;
|
|
1944
|
+
--color-blueLight: #dbeafe;
|
|
1945
|
+
--color-warning: #f15050;
|
|
1946
|
+
--color-warningLight: #fef6f6;
|
|
1932
1947
|
}
|
|
1933
1948
|
|
|
1934
1949
|
body {
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scglab/admin-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "React 기반 SCGLab 어드민 UI 컴포넌트 라이브러리",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"ui",
|
|
8
|
+
"component-library",
|
|
9
|
+
"admin",
|
|
10
|
+
"scglab",
|
|
11
|
+
"typescript"
|
|
12
|
+
],
|
|
6
13
|
"author": "SCGLab",
|
|
7
14
|
"license": "MIT",
|
|
8
15
|
"repository": {
|
|
@@ -21,7 +28,10 @@
|
|
|
21
28
|
},
|
|
22
29
|
"./styles": "./dist/styles/index.css"
|
|
23
30
|
},
|
|
24
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
25
35
|
"peerDependencies": {
|
|
26
36
|
"react": "^18.0.0",
|
|
27
37
|
"react-dom": "^18.0.0"
|
|
@@ -31,16 +41,17 @@
|
|
|
31
41
|
"build:css": "sass src/styles/index.scss dist/styles/index.css --no-source-map",
|
|
32
42
|
"dev": "tsup --watch",
|
|
33
43
|
"sb": "storybook dev -p 6006",
|
|
34
|
-
"build-storybook": "storybook build"
|
|
44
|
+
"build-storybook": "storybook build",
|
|
45
|
+
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
|
|
46
|
+
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
|
|
35
47
|
},
|
|
36
48
|
"dependencies": {
|
|
37
|
-
"clsx": "^2.1.1",
|
|
38
|
-
"moment": "^2.30.1",
|
|
39
49
|
"@dnd-kit/core": "^6.3.1",
|
|
40
50
|
"@dnd-kit/sortable": "^10.0.0",
|
|
41
51
|
"@dnd-kit/utilities": "^3.2.2",
|
|
52
|
+
"clsx": "^2.1.1",
|
|
53
|
+
"moment": "^2.30.1",
|
|
42
54
|
"react-datepicker": "^8.3.0"
|
|
43
|
-
|
|
44
55
|
},
|
|
45
56
|
"devDependencies": {
|
|
46
57
|
"@storybook/addon-essentials": "^8.5.1",
|
|
@@ -52,9 +63,10 @@
|
|
|
52
63
|
"@storybook/test": "^8.5.1",
|
|
53
64
|
"@types/react": "^18.2.79",
|
|
54
65
|
"@types/react-dom": "^18.2.25",
|
|
66
|
+
"esbuild-sass-plugin": "^3.3.1",
|
|
67
|
+
"prettier": "^3.8.1",
|
|
55
68
|
"react": "^18.2.0",
|
|
56
69
|
"react-dom": "^18.2.0",
|
|
57
|
-
"esbuild-sass-plugin": "^3.3.1",
|
|
58
70
|
"sass": "^1.77.0",
|
|
59
71
|
"storybook": "^8.5.1",
|
|
60
72
|
"tsup": "^8.5.1",
|