myoperator-ui 0.0.76 → 0.0.78
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/dist/index.js +1 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -3207,7 +3207,6 @@ export interface PageHeaderProps
|
|
|
3207
3207
|
const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
3208
3208
|
({
|
|
3209
3209
|
className,
|
|
3210
|
-
variant,
|
|
3211
3210
|
title,
|
|
3212
3211
|
description,
|
|
3213
3212
|
icon,
|
|
@@ -3247,7 +3246,7 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
3247
3246
|
<div
|
|
3248
3247
|
ref={ref}
|
|
3249
3248
|
className={cn(
|
|
3250
|
-
pageHeaderVariants(
|
|
3249
|
+
pageHeaderVariants(),
|
|
3251
3250
|
"h-[76px] px-4",
|
|
3252
3251
|
className
|
|
3253
3252
|
)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myoperator-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.78",
|
|
4
4
|
"description": "CLI for adding myOperator UI components to your project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./dist/index.js",
|
|
@@ -17,13 +17,14 @@
|
|
|
17
17
|
"verify-build": "node scripts/verify-build.js",
|
|
18
18
|
"integrity:snapshot": "node scripts/check-integrity.js snapshot",
|
|
19
19
|
"integrity:verify": "node scripts/check-integrity.js verify",
|
|
20
|
+
"validate-types": "node scripts/validate-types.js",
|
|
20
21
|
"build": "npm run generate-registry && npm run validate:prefix && tsup src/index.ts --format esm --dts && npm run verify-build",
|
|
21
22
|
"build:safe": "npm run integrity:snapshot && npm run build",
|
|
22
23
|
"dev": "tsup src/index.ts --format esm --watch",
|
|
23
24
|
"typecheck": "tsc --noEmit",
|
|
24
25
|
"test": "vitest run",
|
|
25
26
|
"test:watch": "vitest",
|
|
26
|
-
"prepublishOnly": "npm run build && npm run validate-registry"
|
|
27
|
+
"prepublishOnly": "npm run validate-types && npm run build && npm run validate-registry"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"chalk": "^5.3.0",
|