@monolith-forensics/monolith-ui 1.1.22 → 1.1.24

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.
@@ -8,7 +8,6 @@ const styled_components_1 = __importDefault(require("styled-components"));
8
8
  const react_1 = require("react");
9
9
  const fa_1 = require("react-icons/fa");
10
10
  const CheckBox = (0, styled_components_1.default)(({ className, defaultValue = false, value, partialCheck = false, onChange = () => { }, }) => {
11
- console.log("defaultValue", defaultValue);
12
11
  const [checkedState, setCheckedState] = (0, react_1.useState)(defaultValue);
13
12
  const handleChange = (e) => {
14
13
  e.stopPropagation();
@@ -19,7 +19,6 @@ const MonolithUIProvider = ({ children, theme = {}, defaultColorScheme = "dark",
19
19
  const defaultTheme = (0, theme_1.default)(colorScheme);
20
20
  // override default theme with the provided theme
21
21
  const _theme = (0, deepmerge_1.default)(defaultTheme, theme);
22
- console.log(_theme);
23
22
  return ((0, jsx_runtime_1.jsx)(exports.MonolithUIContext.Provider, { value: {
24
23
  theme: _theme,
25
24
  colorScheme,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolith-forensics/monolith-ui",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Matt Danner (Monolith Forensics LLC)",
@@ -13,8 +13,9 @@
13
13
  "dist/"
14
14
  ],
15
15
  "scripts": {
16
- "prepublish": "rm -r ./dist && tsc",
17
- "release": "yarn prepublish"
16
+ "clean": "rm -r ./dist",
17
+ "build": "tsc",
18
+ "release": "yarn version --minor --deferred && yarn build && npm publish && yarn clean"
18
19
  },
19
20
  "dependencies": {
20
21
  "@floating-ui/react": "^0.26.16",