myoperator-ui 0.0.89 → 0.0.91
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 +6 -6
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -3654,9 +3654,9 @@ export const EventSelector = React.forwardRef<HTMLDivElement, EventSelectorProps
|
|
|
3654
3654
|
{/* Header */}
|
|
3655
3655
|
<div className="flex items-start justify-between mb-4">
|
|
3656
3656
|
<div>
|
|
3657
|
-
<h3 className="text-base font-semibold text-[#333333]">{title}</h3>
|
|
3657
|
+
<h3 className="m-0 text-base font-semibold text-[#333333]">{title}</h3>
|
|
3658
3658
|
{description && (
|
|
3659
|
-
<p className="text-sm text-[#6B7280] mt-1">{description}</p>
|
|
3659
|
+
<p className="m-0 text-sm text-[#6B7280] mt-1">{description}</p>
|
|
3660
3660
|
)}
|
|
3661
3661
|
</div>
|
|
3662
3662
|
<span className="text-sm font-medium text-[#333333]">
|
|
@@ -3773,7 +3773,7 @@ export const EventGroupComponent = React.forwardRef<
|
|
|
3773
3773
|
/>
|
|
3774
3774
|
<div className="flex-1 min-w-0">
|
|
3775
3775
|
<span className="font-medium text-[#333333]">{event.name}</span>
|
|
3776
|
-
<p className="text-sm text-[#6B7280] mt-0.5">{event.description}</p>
|
|
3776
|
+
<p className="m-0 text-sm text-[#6B7280] mt-0.5">{event.description}</p>
|
|
3777
3777
|
</div>
|
|
3778
3778
|
</div>
|
|
3779
3779
|
</div>
|
|
@@ -4166,9 +4166,9 @@ export const KeyValueInput = React.forwardRef<
|
|
|
4166
4166
|
<div ref={ref} className={cn("w-full", className)} {...props}>
|
|
4167
4167
|
{/* Header */}
|
|
4168
4168
|
<div className="mb-3">
|
|
4169
|
-
<h3 className="text-base font-semibold text-[#333333]">{title}</h3>
|
|
4169
|
+
<h3 className="m-0 text-base font-semibold text-[#333333]">{title}</h3>
|
|
4170
4170
|
{description && (
|
|
4171
|
-
<p className="text-sm text-[#6B7280] mt-1">{description}</p>
|
|
4171
|
+
<p className="m-0 text-sm text-[#6B7280] mt-1">{description}</p>
|
|
4172
4172
|
)}
|
|
4173
4173
|
</div>
|
|
4174
4174
|
|
|
@@ -4226,7 +4226,7 @@ export const KeyValueInput = React.forwardRef<
|
|
|
4226
4226
|
|
|
4227
4227
|
{/* Limit indicator */}
|
|
4228
4228
|
{isAtLimit && (
|
|
4229
|
-
<p className="text-xs text-[#6B7280] mt-2 text-center">
|
|
4229
|
+
<p className="m-0 text-xs text-[#6B7280] mt-2 text-center">
|
|
4230
4230
|
Maximum of {maxItems} items reached
|
|
4231
4231
|
</p>
|
|
4232
4232
|
)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myoperator-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.91",
|
|
4
4
|
"description": "CLI for adding myOperator UI components to your project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./dist/index.js",
|
|
@@ -15,11 +15,12 @@
|
|
|
15
15
|
"validate-registry": "node scripts/validate-registry.js",
|
|
16
16
|
"validate:prefix": "node scripts/validate-prefix-output.js",
|
|
17
17
|
"validate:coverage": "node scripts/validate-prefix-coverage.js",
|
|
18
|
+
"validate:bootstrap": "node scripts/validate-bootstrap-resets.js",
|
|
18
19
|
"verify-build": "node scripts/verify-build.js",
|
|
19
20
|
"integrity:snapshot": "node scripts/check-integrity.js snapshot",
|
|
20
21
|
"integrity:verify": "node scripts/check-integrity.js verify",
|
|
21
22
|
"validate-types": "node scripts/validate-types.js",
|
|
22
|
-
"build": "npm run generate-registry && npm run validate:prefix && tsup src/index.ts --format esm --dts && npm run verify-build",
|
|
23
|
+
"build": "npm run generate-registry && npm run validate:prefix && npm run validate:bootstrap && tsup src/index.ts --format esm --dts && npm run verify-build",
|
|
23
24
|
"build:safe": "npm run integrity:snapshot && npm run build",
|
|
24
25
|
"dev": "tsup src/index.ts --format esm --watch",
|
|
25
26
|
"typecheck": "tsc --noEmit",
|