myoperator-ui 0.0.204-beta.8 → 0.0.204

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.
Files changed (2) hide show
  1. package/dist/index.js +19 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7613,6 +7613,17 @@ export interface EventItemComponentProps {
7613
7613
  /** Callback when selection changes */
7614
7614
  onSelectionChange: (selected: boolean) => void;
7615
7615
  }
7616
+ `, prefix)
7617
+ },
7618
+ {
7619
+ name: "index.ts",
7620
+ content: prefixTailwindClasses(`export { EventSelector } from "./event-selector";
7621
+ export type {
7622
+ EventSelectorProps,
7623
+ EventItem,
7624
+ EventGroup,
7625
+ EventCategory,
7626
+ } from "./types";
7616
7627
  `, prefix)
7617
7628
  }
7618
7629
  ]
@@ -8047,6 +8058,12 @@ export interface KeyValueRowProps {
8047
8058
  /** Callback when row is deleted */
8048
8059
  onDelete: (id: string) => void;
8049
8060
  }
8061
+ `, prefix)
8062
+ },
8063
+ {
8064
+ name: "index.ts",
8065
+ content: prefixTailwindClasses(`export { KeyValueInput } from "./key-value-input";
8066
+ export type { KeyValueInputProps, KeyValuePair } from "./types";
8050
8067
  `, prefix)
8051
8068
  }
8052
8069
  ]
@@ -13602,7 +13619,7 @@ export const CreateFunctionModal = React.forwardRef<
13602
13619
  Function Name{" "}
13603
13620
  <span className="text-semantic-error-primary">*</span>
13604
13621
  </label>
13605
- <div className="relative">
13622
+ <div className={cn("relative")}>
13606
13623
  <input
13607
13624
  id="fn-name"
13608
13625
  type="text"
@@ -13733,7 +13750,7 @@ export const CreateFunctionModal = React.forwardRef<
13733
13750
  <span className="text-xs text-semantic-text-muted">
13734
13751
  Body
13735
13752
  </span>
13736
- <div className="relative">
13753
+ <div className={cn("relative")}>
13737
13754
  <textarea
13738
13755
  value={body}
13739
13756
  maxLength={BODY_MAX}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.204-beta.8",
3
+ "version": "0.0.204",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",