gov-ui-core 0.2.6-beta.8 → 0.2.6-beta.9

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.
@@ -16,10 +16,9 @@ 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 TailwindTest from './components/TailwindTest';
20
19
  import ThemeProvider from './components/ThemeProvider';
21
20
  import { Methods } from './components/Form';
22
21
  import defaultTheme from './theme';
23
- import './css/tailwind.css';
24
- export { AppendTable, Button, Calendar, Carousel, ContentHeader, Directory, DropdownButton, EmptyBox, Form, Icons, Input, ErrorMessage, OverlayLoading, SwitchButton, Table, TableBase, ThemeProvider, AutoTooltip, IntlText, TailwindTest, defaultTheme, };
22
+ import './index.scss';
23
+ export { AppendTable, Button, Calendar, Carousel, ContentHeader, Directory, DropdownButton, EmptyBox, Form, Icons, Input, ErrorMessage, OverlayLoading, SwitchButton, Table, TableBase, ThemeProvider, AutoTooltip, IntlText, defaultTheme, };
25
24
  export type { Methods };
@@ -0,0 +1,6 @@
1
+ import React, { ReactNode } from 'react';
2
+ interface IChipSampleProps {
3
+ children?: ReactNode;
4
+ }
5
+ declare const ChipSample: React.FC<IChipSampleProps>;
6
+ export default ChipSample;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gov-ui-core",
3
- "version": "0.2.6-beta.8",
3
+ "version": "0.2.6-beta.9",
4
4
  "main": "./build/index.js",
5
5
  "module": "./build/index.js",
6
6
  "types": "./build/modules.d.ts",
@@ -84,7 +84,8 @@
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": "npx tailwindcss -i ./src/css/globals.css -o ./src/css/tailwind.css && node scripts/build.js && npm run types",
87
+ "build": "npx tailwindcss -i ./src/index.scss -o ./src/css/tailwind2.css && node scripts/build.js && npm run types",
88
+ "build2": "node scripts/build.js && npm run types",
88
89
  "test": "node node scripts/test.js",
89
90
  "storybook": "storybook dev -p 6006",
90
91
  "build-storybook": "storybook build",
@@ -1,6 +0,0 @@
1
- import React, { ReactNode } from 'react';
2
- interface ITailwindTestProps {
3
- children?: ReactNode;
4
- }
5
- declare const TailwindTest: React.FC<ITailwindTestProps>;
6
- export default TailwindTest;