gov-ui-core 0.2.6-beta.1 → 0.2.6-beta.11
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/.stylelintrc.json +3 -0
- package/@types/styles.d.ts +10 -0
- package/build/20d0d451f31ed3b5c15f.woff +1 -0
- package/build/39285e8af490890e2df4.otf +0 -0
- package/build/3965b6176d1ce958b445.woff +1 -0
- package/build/508d69efb37042551458.woff +1 -0
- package/build/72ba455576ce8174ffa8.otf +0 -0
- package/build/a9ba4978d441af03cd27.woff +1 -0
- package/build/components/Badge/index.d.ts +8 -0
- package/build/components/Badge/styled.d.ts +1 -0
- package/build/components/Breadcrumb/index.d.ts +6 -0
- package/build/components/Breadcrumb/styled.d.ts +2 -0
- package/build/components/Button/SwitchButton.d.ts +6 -3
- package/build/components/Button/styled.d.ts +4 -1
- package/build/components/Card/index.d.ts +12 -0
- package/build/components/Chip/constants.d.ts +9 -0
- package/build/components/Chip/index.d.ts +12 -0
- package/build/components/Input/Checkbox.d.ts +4 -1
- package/build/components/Input/Input.d.ts +1 -0
- package/build/components/Input/Radio.d.ts +3 -1
- package/build/components/Input/Select.d.ts +1 -0
- package/build/components/Input/TextArea.d.ts +3 -0
- package/build/components/Input/styled.d.ts +8 -5
- package/build/components/Menu/index.d.ts +25 -0
- package/build/components/Sliders/index.d.ts +7 -0
- package/build/components/Sliders/styled.d.ts +4 -0
- package/build/components/Table/styled.d.ts +2 -1
- package/build/components/Tabs/TabContent.d.ts +8 -0
- package/build/components/Tabs/index.d.ts +19 -0
- package/build/components/Tabs/styled.d.ts +11 -0
- package/build/components/Tooltips/index.d.ts +13 -0
- package/build/e65c7edcd47e3e9f5c99.otf +0 -0
- package/build/f7a8dce8dfc249d7e12b.otf +0 -0
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/modules.d.ts +3 -3
- package/build/pages/BreadcrumbSample.d.ts +5 -0
- package/build/pages/CardSample.d.ts +5 -0
- package/build/pages/CheckboxSample.d.ts +6 -0
- package/build/pages/ChipSample.d.ts +6 -0
- package/build/pages/RadioSample.d.ts +6 -0
- package/build/pages/SlidersSample.d.ts +5 -0
- package/build/pages/TabsSample.d.ts +6 -0
- package/build/pages/TooltipsSample.d.ts +5 -0
- package/package.json +2 -2
- package/postcss.config.js +3 -1
- package/tailwind.config.js +5 -4
- package/build/1588accceb3200a24f55.svg +0 -1
- package/build/components/TailwindTest/index.d.ts +0 -6
- package/build/pages/CreateTable.d.ts +0 -20
package/build/modules.d.ts
CHANGED
|
@@ -16,10 +16,10 @@ import TableBase from './components/Table/TableBase';
|
|
|
16
16
|
import Calendar from './components/Calendar';
|
|
17
17
|
import IntlText from './components/IntlText';
|
|
18
18
|
import AppendTable from './components/Table/AppendTable';
|
|
19
|
-
import
|
|
19
|
+
import Menu from './components/Menu';
|
|
20
20
|
import ThemeProvider from './components/ThemeProvider';
|
|
21
21
|
import { Methods } from './components/Form';
|
|
22
22
|
import defaultTheme from './theme';
|
|
23
|
-
import './
|
|
24
|
-
export { AppendTable, Button, Calendar, Carousel, ContentHeader, Directory, DropdownButton, EmptyBox, Form, Icons, Input, ErrorMessage, OverlayLoading, SwitchButton, Table, TableBase, ThemeProvider, AutoTooltip,
|
|
23
|
+
import './tailwind.css';
|
|
24
|
+
export { AppendTable, Button, Calendar, Carousel, ContentHeader, Directory, DropdownButton, EmptyBox, Form, Icons, Input, ErrorMessage, OverlayLoading, SwitchButton, Table, TableBase, ThemeProvider, AutoTooltip, Menu, IntlText, defaultTheme, };
|
|
25
25
|
export type { Methods };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gov-ui-core",
|
|
3
|
-
"version": "0.2.6-beta.
|
|
3
|
+
"version": "0.2.6-beta.11",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"module": "./build/index.js",
|
|
6
6
|
"types": "./build/modules.d.ts",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"scripts": {
|
|
85
85
|
"start": "node scripts/start.js",
|
|
86
86
|
"types": "tsc --emitDeclarationOnly && tscpaths -p ./tsconfig.json -s ./src -o ./build",
|
|
87
|
-
"build": "node scripts/build.js && npm run types",
|
|
87
|
+
"build": "npx tailwindcss -i ./src/index.scss -o ./src/tailwind.css && node scripts/build.js && npm run types",
|
|
88
88
|
"test": "node node scripts/test.js",
|
|
89
89
|
"storybook": "storybook dev -p 6006",
|
|
90
90
|
"build-storybook": "storybook build",
|
package/postcss.config.js
CHANGED
package/tailwind.config.js
CHANGED
|
@@ -89,10 +89,11 @@ module.exports = {
|
|
|
89
89
|
fontFamily: {
|
|
90
90
|
sans: ['Graphik', 'sans-serif'],
|
|
91
91
|
serif: ['Merriweather', 'serif'],
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
92
|
+
default: ['sans-serif', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto'],
|
|
93
|
+
NotoSans: ['NotoSans'],
|
|
94
|
+
NotoSansKR: ['NotoSansKR'],
|
|
95
|
+
NotoSansMono: ['NotoSansMono'],
|
|
96
|
+
},
|
|
96
97
|
/*dropShadow: {
|
|
97
98
|
'table': ['0px 0px 4px rgba(0,0,0,0.1)', '0px 5px 10px rgba(0,0,0,0.1)'],
|
|
98
99
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJtNCw5LjM1bDUuMzMsLTUuMzNsMC42NywwLjY3bC01LjMzLDUuMzNsLTAuNjcsLTAuNjd6IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjMiLz4KICA8cGF0aCBkPSJtMCw5LjM1bDkuMzMsLTkuMzNsMC42NywwLjY3bC05LjMzLDkuMzNsLTAuNjcsLTAuNjd6IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjMiLz4KPC9zdmc+Cg=="
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
interface ICreateTableProps {
|
|
3
|
-
}
|
|
4
|
-
export declare const FormItemBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5
|
-
width?: number | undefined;
|
|
6
|
-
gap?: number | undefined;
|
|
7
|
-
fullHeight?: boolean | undefined;
|
|
8
|
-
}, never>;
|
|
9
|
-
export declare const DATASOURCE_TYPE: {
|
|
10
|
-
ICEBERG: string;
|
|
11
|
-
JDBC: string;
|
|
12
|
-
ORC: string;
|
|
13
|
-
PARQUET: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const DATASOURCE_TYPE_OPTIONS: {
|
|
16
|
-
label: string;
|
|
17
|
-
value: string;
|
|
18
|
-
}[];
|
|
19
|
-
declare const CreateTable: React.FC<ICreateTableProps>;
|
|
20
|
-
export default CreateTable;
|