gov-ui-core 0.2.6-beta.12 → 0.2.6-beta.13

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.
@@ -20,6 +20,5 @@ 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 './tailwind.css';
24
23
  export { AppendTable, Button, Calendar, Carousel, ContentHeader, Directory, DropdownButton, EmptyBox, Form, Icons, Input, ErrorMessage, OverlayLoading, SwitchButton, Table, TableBase, ThemeProvider, AutoTooltip, Menu, IntlText, defaultTheme, };
25
24
  export type { Methods };
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import 'react-toastify/dist/ReactToastify.css';
3
+ interface IToastSampleProps {
4
+ }
5
+ declare const ToastSampleSample: React.FC<IToastSampleProps>;
6
+ export default ToastSampleSample;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gov-ui-core",
3
- "version": "0.2.6-beta.12",
3
+ "version": "0.2.6-beta.13",
4
4
  "main": "./build/index.js",
5
5
  "module": "./build/index.js",
6
6
  "types": "./build/modules.d.ts",
@@ -65,6 +65,7 @@
65
65
  "react-refresh": "^0.11.0",
66
66
  "react-router-dom": "^6.22.3",
67
67
  "react-slick": "^0.30.2",
68
+ "react-toastify": "^11.0.3",
68
69
  "resolve": "^1.20.0",
69
70
  "resolve-url-loader": "^4.0.0",
70
71
  "semver": "^7.3.5",
@@ -82,13 +83,13 @@
82
83
  "workbox-webpack-plugin": "^6.4.1"
83
84
  },
84
85
  "scripts": {
85
- "start": "node scripts/start.js",
86
+ "start": "node scripts/start.js --PORT 3004",
86
87
  "types": "tsc --emitDeclarationOnly && tscpaths -p ./tsconfig.json -s ./src -o ./build",
87
- "build": "npx tailwindcss -i ./src/index.scss -o ./src/tailwind.css && node scripts/build.js && npm run types",
88
+ "build": "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",
91
- "deploy-storybook": "gh-pages -d storybook-static -r https://github.com/nexr/neb-ui.git",
92
+ "deploy-storybook": "gh-pages -d storybook-static -r https://gzithub.com/nexr/neb-ui.git",
92
93
  "lint": "eslint ./src/**/*.{ts,tsx}",
93
94
  "lint:css": "stylelint --ignore-path .gitignore '**/*.scss'",
94
95
  "prepare": "husky install",