brd-ui-kit 0.1.3 → 0.1.5

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.
package/package.json CHANGED
@@ -1,21 +1,8 @@
1
1
  {
2
2
  "name": "brd-ui-kit",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "private": false,
6
- "scripts": {
7
- "lint": "eslint .",
8
- "lint:fix": "eslint . --fix",
9
- "format": "prettier . --write",
10
- "format:check": "prettier . --check",
11
- "fix": "npm run lint:fix && npm run format",
12
- "check": "npm run lint && npm run format:check",
13
- "build": "vite build",
14
- "preview": "vite preview",
15
- "storybook": "storybook dev -p 6006",
16
- "build-storybook": "storybook build",
17
- "prepublishOnly": "npm run build"
18
- },
19
6
  "main": "dist/index.cjs",
20
7
  "module": "dist/index.js",
21
8
  "types": "dist/index.d.ts",
@@ -28,14 +15,6 @@
28
15
  "./styles.css": {
29
16
  "import": "./dist/brd-ui-kit.css",
30
17
  "require": "./dist/brd-ui-kit.css"
31
- },
32
- "./style.css": {
33
- "import": "./dist/brd-ui-kit.css",
34
- "require": "./dist/brd-ui-kit.css"
35
- },
36
- "./src/styles/globals.css": {
37
- "import": "./dist/brd-ui-kit.css",
38
- "require": "./dist/brd-ui-kit.css"
39
18
  }
40
19
  },
41
20
  "publishConfig": {
@@ -43,7 +22,8 @@
43
22
  },
44
23
  "files": [
45
24
  "dist",
46
- "README.md"
25
+ "README.md",
26
+ "./dist/brd-ui-kit.css"
47
27
  ],
48
28
  "peerDependencies": {
49
29
  "react": "^18.0.0 || ^19.0.0",
@@ -99,5 +79,17 @@
99
79
  "typescript-eslint": "^8.48.0",
100
80
  "vite": "^7.3.1",
101
81
  "vite-plugin-dts": "^4.5.4"
82
+ },
83
+ "scripts": {
84
+ "lint": "eslint .",
85
+ "lint:fix": "eslint . --fix",
86
+ "format": "prettier . --write",
87
+ "format:check": "prettier . --check",
88
+ "fix": "npm run lint:fix && npm run format",
89
+ "check": "npm run lint && npm run format:check",
90
+ "build": "vite build",
91
+ "preview": "vite preview",
92
+ "storybook": "storybook dev -p 6006",
93
+ "build-storybook": "storybook build"
102
94
  }
103
- }
95
+ }
@@ -1,14 +0,0 @@
1
- import { Meta, StoryObj } from '@storybook/react-vite';
2
- type TooltipPreviewProps = {
3
- text: string;
4
- place?: "left" | "top" | "bottom" | "right";
5
- arrow?: boolean;
6
- color?: "dark" | "light";
7
- tooltipItemsLimit?: number;
8
- };
9
- declare function BasicTooltipPreview({ text, place, arrow, color, tooltipItemsLimit, }: TooltipPreviewProps): import("react/jsx-runtime").JSX.Element;
10
- declare const meta: Meta<typeof BasicTooltipPreview>;
11
- export default meta;
12
- type Story = StoryObj<typeof meta>;
13
- export declare const Overview: Story;
14
- export declare const Playground: Story;