docthub-core-components 2.49.0 → 2.51.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 +16 -15
- package/dist/index.d.ts +0 -2
- package/dist/index.esm.js +0 -4411
- package/dist/src/components/overrides/ui/auto-complete.d.ts +0 -51
- package/dist/src/components/overrides/ui/autocomplete-checkbox.d.ts +0 -84
- package/dist/src/components/overrides/ui/chips/doct-chip.d.ts +0 -27
- package/dist/src/components/overrides/ui/circular-progress.d.ts +0 -8
- package/dist/src/components/overrides/ui/composed/address-form-section.d.ts +0 -10
- package/dist/src/components/overrides/ui/composed/contact-form-section.d.ts +0 -11
- package/dist/src/components/overrides/ui/composed/search-filter-section.d.ts +0 -24
- package/dist/src/components/overrides/ui/composed/user-registration-section.d.ts +0 -11
- package/dist/src/components/overrides/ui/currencyInput/currency-input.d.ts +0 -10
- package/dist/src/components/overrides/ui/doct-animation-loader.d.ts +0 -9
- package/dist/src/components/overrides/ui/expandable-card.d.ts +0 -17
- package/dist/src/components/overrides/ui/inputs/labeled-input.d.ts +0 -26
- package/dist/src/components/overrides/ui/inputs/otp-input.d.ts +0 -16
- package/dist/src/components/overrides/ui/inputs/password-input.d.ts +0 -18
- package/dist/src/components/overrides/ui/pickers/date-picker-field.d.ts +0 -31
- package/dist/src/components/overrides/ui/pickers/select-field.d.ts +0 -32
- package/dist/src/components/overrides/ui/search/auto-complete.d.ts +0 -15
- package/dist/src/components/overrides/ui/search/search-input.d.ts +0 -11
- package/dist/src/components/overrides/ui/showcase/component-section.d.ts +0 -15
- package/dist/src/components/ui/alert.d.ts +0 -19
- package/dist/src/components/ui/avatar.d.ts +0 -12
- package/dist/src/components/ui/badge.d.ts +0 -9
- package/dist/src/components/ui/breadcrumb.d.ts +0 -19
- package/dist/src/components/ui/button.d.ts +0 -20
- package/dist/src/components/ui/calendar.d.ts +0 -8
- package/dist/src/components/ui/checkbox.d.ts +0 -7
- package/dist/src/components/ui/collapsible.d.ts +0 -6
- package/dist/src/components/ui/command.d.ts +0 -80
- package/dist/src/components/ui/dialog.d.ts +0 -39
- package/dist/src/components/ui/drawer.d.ts +0 -22
- package/dist/src/components/ui/dropdown-menu.d.ts +0 -27
- package/dist/src/components/ui/input.d.ts +0 -7
- package/dist/src/components/ui/label.d.ts +0 -5
- package/dist/src/components/ui/popover.d.ts +0 -7
- package/dist/src/components/ui/progress.d.ts +0 -22
- package/dist/src/components/ui/radio-group.d.ts +0 -5
- package/dist/src/components/ui/select.d.ts +0 -13
- package/dist/src/components/ui/separator.d.ts +0 -4
- package/dist/src/components/ui/sheet.d.ts +0 -25
- package/dist/src/components/ui/sidebar.d.ts +0 -80
- package/dist/src/components/ui/skeleton.d.ts +0 -15
- package/dist/src/components/ui/spinner.d.ts +0 -3
- package/dist/src/components/ui/tabs.d.ts +0 -12
- package/dist/src/components/ui/textarea.d.ts +0 -14
- package/dist/src/components/ui/timeline.d.ts +0 -41
- package/dist/src/components/ui/toast.d.ts +0 -20
- package/dist/src/components/ui/tooltip.d.ts +0 -17
- package/dist/src/components/ui/typography.d.ts +0 -13
- package/dist/src/hooks/use-exclusive-dropdown.d.ts +0 -13
- package/dist/src/hooks/use-mobile.d.ts +0 -1
- package/dist/src/hooks/useAutocompleteCheckbox.d.ts +0 -56
- package/dist/src/index.d.ts +0 -41
- package/dist/src/lib/dropdown-manager.d.ts +0 -4
- package/dist/src/lib/utils.d.ts +0 -2
- package/dist/src/setupTests.d.ts +0 -0
- package/dist/src/util/getInputClasses.d.ts +0 -5
- package/dist/src/vite-env.d.ts +0 -1
- package/dist/style.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docthub-core-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.51.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -53,17 +53,28 @@
|
|
|
53
53
|
"dev": "vite",
|
|
54
54
|
"build": "npm run build:css && vite build",
|
|
55
55
|
"build:css": "postcss src/index.css -o dist/style.css --verbose",
|
|
56
|
-
"lint": "
|
|
56
|
+
"lint": "biome lint .",
|
|
57
|
+
"lint:fix": "biome lint --write .",
|
|
58
|
+
"format": "biome format --write .",
|
|
59
|
+
"format:check": "biome format .",
|
|
60
|
+
"check": "biome check .",
|
|
61
|
+
"check:fix": "biome check --write .",
|
|
62
|
+
"check:fix:unsafe": "biome check --write --unsafe .",
|
|
63
|
+
"biome:staged": "biome check --staged .",
|
|
64
|
+
"biome:staged:write": "biome check --staged --write .",
|
|
57
65
|
"type-check": "tsc -p tsconfig.typecheck.json",
|
|
58
66
|
"preview": "vite preview",
|
|
59
67
|
"storybook": "storybook dev -p 6006",
|
|
60
68
|
"build-storybook": "storybook build",
|
|
61
69
|
"postinstall": "node node_modules/esbuild/install.js || echo esbuild-install-skipped",
|
|
70
|
+
"prepare": "husky",
|
|
62
71
|
"test": "vitest",
|
|
72
|
+
"test:run": "vitest run",
|
|
63
73
|
"analyze": "vite build --config vite.analyze.config.ts",
|
|
64
74
|
"build:registry": "node scripts/build-registry.mjs",
|
|
65
75
|
"copy:registry": "node scripts/copy-registry.mjs",
|
|
66
|
-
"sync:registry": "node scripts/build-and-sync-registry.mjs"
|
|
76
|
+
"sync:registry": "node scripts/build-and-sync-registry.mjs",
|
|
77
|
+
"check-branch": "sh scripts/check-branch-name.sh"
|
|
67
78
|
},
|
|
68
79
|
"dependencies": {
|
|
69
80
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
@@ -96,7 +107,7 @@
|
|
|
96
107
|
},
|
|
97
108
|
"devDependencies": {
|
|
98
109
|
"@babel/preset-env": "^7.28.5",
|
|
99
|
-
"@
|
|
110
|
+
"@biomejs/biome": "^2.3.11",
|
|
100
111
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
101
112
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
102
113
|
"@radix-ui/react-collapsible": "^1.1.11",
|
|
@@ -130,11 +141,7 @@
|
|
|
130
141
|
"cssnano": "^7.1.1",
|
|
131
142
|
"dayjs": "1.11.13",
|
|
132
143
|
"esbuild": "^0.19.12",
|
|
133
|
-
"
|
|
134
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
135
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
136
|
-
"eslint-plugin-storybook": "9.1.10",
|
|
137
|
-
"globals": "^15.14.0",
|
|
144
|
+
"husky": "^9.1.7",
|
|
138
145
|
"jsdom": "^26.1.0",
|
|
139
146
|
"lucide-react": "^0.474.0",
|
|
140
147
|
"picocolors": "^1.0.0",
|
|
@@ -153,16 +160,10 @@
|
|
|
153
160
|
"tailwindcss": "^3.4.16",
|
|
154
161
|
"tailwindcss-animate": "^1.0.7",
|
|
155
162
|
"typescript": "~5.6.2",
|
|
156
|
-
"typescript-eslint": "^8.18.2",
|
|
157
163
|
"vaul": "^1.1.2",
|
|
158
164
|
"vite": "^5.4.11",
|
|
159
165
|
"vite-plugin-dts": "^4.5.4",
|
|
160
166
|
"vite-tsconfig-paths": "^5.1.4",
|
|
161
167
|
"vitest": "^2.1.4"
|
|
162
|
-
},
|
|
163
|
-
"eslintConfig": {
|
|
164
|
-
"extends": [
|
|
165
|
-
"plugin:storybook/recommended"
|
|
166
|
-
]
|
|
167
168
|
}
|
|
168
169
|
}
|
package/dist/index.d.ts
DELETED