hight-orchestratorbot-components 1.0.0 → 1.1.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.
package/package.json CHANGED
@@ -1,27 +1,78 @@
1
1
  {
2
2
  "name": "hight-orchestratorbot-components",
3
3
  "description": "Hight OrchestratorBot Components",
4
- "version": "1.0.0",
4
+ "version": "1.1.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
8
8
  "build": "tsc && vite build",
9
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10
- "preview": "vite preview",
11
- "prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
9
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
10
+ "preview": "vite preview"
12
11
  },
13
12
  "author": "nikolay@hight.io",
14
13
  "license": "ISC",
15
14
  "files": [
16
- "dist"
15
+ "/dist"
17
16
  ],
18
- "main": "./dist/my-lib.umd.js",
19
- "module": "./dist/my-lib.es.js",
20
- "types": "./dist/index.d.ts",
17
+ "main": "dist/my-lib.umd.js",
18
+ "module": "dist/my-lib.es.js",
19
+ "types": "dist/index.d.ts",
21
20
  "exports": {
22
21
  ".": {
23
22
  "import": "./dist/my-lib.es.js",
24
- "require": "./dist/my-lib.umd.js"
23
+ "require": "./dist/my-lib.umd.js",
24
+ "types": "./dist/index.d.ts"
25
25
  }
26
+ },
27
+ "dependencies": {
28
+ "@mdi/js": "^7.4.47",
29
+ "@mdi/react": "^1.6.1",
30
+ "@mdi/svg": "^7.4.47",
31
+ "@radix-ui/react-accordion": "^1.1.2",
32
+ "@radix-ui/react-checkbox": "^1.0.4",
33
+ "@radix-ui/react-collapsible": "^1.0.3",
34
+ "@radix-ui/react-context-menu": "^2.1.5",
35
+ "@radix-ui/react-dialog": "^1.0.5",
36
+ "@radix-ui/react-dropdown-menu": "^2.0.6",
37
+ "@radix-ui/react-hover-card": "^1.0.7",
38
+ "@radix-ui/react-icons": "^1.3.0",
39
+ "@radix-ui/react-label": "^2.0.2",
40
+ "@radix-ui/react-navigation-menu": "^1.1.4",
41
+ "@radix-ui/react-popover": "^1.0.7",
42
+ "@radix-ui/react-radio-group": "^1.1.3",
43
+ "@radix-ui/react-scroll-area": "^1.0.5",
44
+ "@radix-ui/react-select": "^2.0.0",
45
+ "@radix-ui/react-separator": "^1.0.3",
46
+ "@radix-ui/react-slot": "^1.0.2",
47
+ "@radix-ui/react-switch": "^1.0.3",
48
+ "@radix-ui/react-tabs": "^1.0.4",
49
+ "@radix-ui/react-toast": "^1.1.5",
50
+ "@radix-ui/react-tooltip": "^1.0.7",
51
+ "class-variance-authority": "^0.7.0",
52
+ "cmdk": "^1.0.0",
53
+ "react": "^18",
54
+ "react-colorful": "^5.6.1",
55
+ "react-dom": "^18",
56
+ "sonner": "^1.4.3",
57
+ "swiper": "^11.0.7",
58
+ "tailwindcss-animate": "^1.0.7"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^20.12.2",
62
+ "@types/react": "^18",
63
+ "@types/react-dom": "^18",
64
+ "@typescript-eslint/eslint-plugin": "^7.5.0",
65
+ "@vitejs/plugin-react": "^4.2.1",
66
+ "autoprefixer": "^10.4.17",
67
+ "eslint": "^8",
68
+ "eslint-config-next": "14.1.0",
69
+ "eslint-plugin-react-refresh": "^0.4.6",
70
+ "postcss": "^8.4.35",
71
+ "style-loader": "^3.3.4",
72
+ "tailwind-merge": "^2.2.1",
73
+ "tailwindcss": "^3.4.1",
74
+ "typescript": "^5",
75
+ "vite": "^5.2.8",
76
+ "vite-plugin-dts": "^3.8.1"
26
77
  }
27
78
  }
package/dist/App.d.ts DELETED
@@ -1,3 +0,0 @@
1
-
2
- declare function App(): import("react/jsx-runtime").JSX.Element;
3
- export default App;
@@ -1,26 +0,0 @@
1
- import { default as BrandAutocomplete } from './Base/BrandAutocomplete';
2
- import { default as BrandTextarea } from './Base/BrandTextarea';
3
- import { default as BrandTabSwitcher } from './Base/BrandTabSwitcher';
4
- import { default as BrandStepper } from './Base/BrandStepper';
5
- import { default as BrandTabs } from './Base/BrandTabs';
6
- import { default as BrandDialog } from './Base/BrandDialog';
7
- import { default as Chip } from './Base/Chip';
8
- import { default as BrandMenu } from './Base/BrandMenu';
9
- import { default as BrandCheckbox } from './Base/BrandCheckbox';
10
- import { default as BrandAlert } from './Base/BrandAlert';
11
- import { default as Spacing } from './Base/Spacing';
12
- import { default as Autocomplete } from './Base/Autocomplete';
13
- import { default as BrandInput } from './Base/BrandInput';
14
- import { default as BrandButton } from './Base/BrandButton';
15
- import { default as BrandLink } from './Base/BrandLink';
16
- import { default as BrandSection } from './Base/BrandSection';
17
- import { default as BrandSelect } from './Base/BrandSelect';
18
- import { default as BrandTooltip } from './Base/BrandTooltip';
19
- import { default as BrandAccordion } from './Base/BrandAccordion';
20
- import { default as Typography } from './Base/Typography';
21
- import { default as BrandCard } from './Base/BrandCard';
22
- import { default as BrandDrawer } from './Base/BrandDrawer';
23
- import { default as IconLoader } from './Base/IconLoader';
24
- import { default as Divider } from './Base/Divider';
25
-
26
- export { Divider, Spacing, BrandDrawer, BrandCard, IconLoader, Typography, BrandAccordion, BrandTooltip, BrandSection, BrandSelect, BrandLink, BrandButton, BrandInput, Autocomplete, BrandAlert, BrandCheckbox, BrandMenu, Chip, BrandDialog, BrandTabs, BrandStepper, BrandTabSwitcher, BrandTextarea, BrandAutocomplete, };
package/dist/main.d.ts DELETED
@@ -1 +0,0 @@
1
-