@megha-ui/react 1.2.185 → 1.2.186

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.
@@ -295,7 +295,7 @@ const Dropdown = ({ options, selectedValues, onChange, placeholder = "Select..."
295
295
  ? "1.5rem"
296
296
  : compactDisplay
297
297
  ? "2rem"
298
- : density === "ultra-compact"
298
+ : density === "ultraCompact"
299
299
  ? "1.5rem"
300
300
  : density === "compact"
301
301
  ? "2rem"
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- export type DensityMode = "normal" | "compact" | "ultra-compact";
2
+ export type DensityMode = "normal" | "compact" | "ultraCompact";
3
3
  type DensityContextValue = {
4
4
  density: DensityMode;
5
5
  setDensity: (d: DensityMode) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.185",
3
+ "version": "1.2.186",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -9,9 +9,9 @@
9
9
  "build": "tsc",
10
10
  "prepublishOnly": "npm run build",
11
11
  "test": "jest",
12
- "release:patch": "npm version patch && npm publish --access public",
13
- "release:minor": "npm version minor && npm publish --access public",
14
- "release:major": "npm version major && npm publish --access public"
12
+ "publish:patch": "npm version patch && npm publish --access public",
13
+ "publish:minor": "npm version minor && npm publish --access public",
14
+ "publish:major": "npm version major && npm publish --access public"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",