@oc-digital/react-component-library 4.3.2-beta.2 → 4.8.2-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.
@@ -0,0 +1,2 @@
1
+ export declare const novelTheme: import("@mui/material/styles").Theme;
2
+ export declare const partnersTheme: import("@mui/material/styles").Theme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oc-digital/react-component-library",
3
- "version": "4.3.2-beta.2",
3
+ "version": "4.8.2-0",
4
4
  "description": "React component library for Optimal Compliance",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -13,8 +13,8 @@
13
13
  "build:watch": "npx rollup -c -w",
14
14
  "prepublishOnly": "npm run build",
15
15
  "test": "echo \"Error: no test specified\" && exit 1",
16
- "storybook": "start-storybook -p 6006",
17
- "build-storybook": "build-storybook",
16
+ "storybook": "storybook dev -p 6006",
17
+ "build-storybook": "storybook build",
18
18
  "beta": "npm publish --tag beta",
19
19
  "lint": "eslint ./",
20
20
  "tsc": "tsc --skipLibCheck"
@@ -23,19 +23,25 @@
23
23
  "license": "ISC",
24
24
  "devDependencies": {
25
25
  "@babel/core": "^7.15.5",
26
+ "@babel/preset-env": "^7.23.9",
27
+ "@babel/preset-react": "^7.23.3",
28
+ "@babel/preset-typescript": "^7.23.3",
26
29
  "@date-io/date-fns": "^1.3.13",
27
30
  "@emotion/react": "^11.11.1",
28
31
  "@emotion/styled": "^11.11.0",
32
+ "@fontsource/roboto": "^5.0.8",
29
33
  "@mui/icons-material": "^5.14.12",
30
34
  "@mui/material": "^5.14.12",
31
35
  "@mui/styles": "^5.14.12",
32
36
  "@mui/x-date-pickers": "^6.16.1",
33
37
  "@rollup/plugin-commonjs": "^20.0.0",
34
38
  "@rollup/plugin-node-resolve": "^13.0.4",
35
- "@storybook/addon-actions": "^6.3.8",
36
- "@storybook/addon-essentials": "^6.3.8",
37
- "@storybook/addon-links": "^6.3.8",
38
- "@storybook/react": "^6.3.8",
39
+ "@storybook/addon-actions": "^7.6.12",
40
+ "@storybook/addon-essentials": "^7.6.12",
41
+ "@storybook/addon-links": "^7.6.12",
42
+ "@storybook/addon-themes": "^7.6.12",
43
+ "@storybook/react": "^7.6.12",
44
+ "@storybook/react-webpack5": "^7.6.12",
39
45
  "@types/react": "^17.0.21",
40
46
  "@types/react-table": "^7.7.8",
41
47
  "@typescript-eslint/eslint-plugin": "^4.31.1",
@@ -66,6 +72,7 @@
66
72
  "rollup-plugin-peer-deps-external": "^2.2.4",
67
73
  "rollup-plugin-terser": "^7.0.2",
68
74
  "rollup-plugin-typescript2": "^0.34.1",
75
+ "storybook": "^7.6.12",
69
76
  "tslib": "^2.3.1",
70
77
  "typescript": "^4.4.3",
71
78
  "yup": "^0.32.11"
@@ -1,3 +0,0 @@
1
- import React from "react";
2
- import type { AutoSaveSelectFieldProps } from "./AutoSave.types";
3
- export declare const AutoSaveSelectField: React.FC<AutoSaveSelectFieldProps>;
@@ -1,3 +0,0 @@
1
- import React from "react";
2
- import { AutoSaveTextFieldProps } from "./AutoSave.types";
3
- export declare const AutoSaveTextField: React.FC<AutoSaveTextFieldProps>;
@@ -1,5 +0,0 @@
1
- import React, { ReactNode } from "react";
2
- declare const Theme: ({ children }: {
3
- children: ReactNode;
4
- }) => React.JSX.Element;
5
- export default Theme;
@@ -1 +0,0 @@
1
- export declare const theme: import("@mui/material/styles").Theme;