@langchain/untitled-ui-icons 1.0.10 → 1.0.11

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/README.md CHANGED
@@ -16,6 +16,12 @@ GitHub Actions will automatically:
16
16
 
17
17
  The workflow will validate the version, update `package.json`, build, publish to npm, commit, tag, and create a GitHub Release.
18
18
 
19
+ ### Secrets
20
+
21
+ The release workflow requires an `NPM_TOKEN` secret ([repo settings](https://github.com/langchain-ai/langchain-untitled-ui-icons/settings/secrets/actions)). This is a granular access token from npm scoped to `@langchain/untitled-ui-icons` with read/write permissions. Rotate it every 90 days.
22
+
23
+ > **Note:** npm Trusted Publishing (OIDC) is not available because this is an internal repo. Only public repos are supported.
24
+
19
25
  ## Local Development
20
26
 
21
27
  ```bash
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const Bird: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { Bird };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const Bird = (props) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, className: "lucide lucide-bird-icon lucide-bird", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: [_jsx("path", { d: "M16 7h.01M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" }), _jsx("path", { d: "m20 7 2 .5-2 .5M10 18v3M14 17.75V21M7 18a6 6 0 0 0 3.84-10.61" })] }));
3
+ export { Bird };
package/dist/index.d.ts CHANGED
@@ -155,6 +155,7 @@ export { BellRinging04 as BellRinging04Icon } from "./components/BellRinging04";
155
155
  export { BezierCurve01 as BezierCurve01Icon } from "./components/BezierCurve01";
156
156
  export { BezierCurve02 as BezierCurve02Icon } from "./components/BezierCurve02";
157
157
  export { BezierCurve03 as BezierCurve03Icon } from "./components/BezierCurve03";
158
+ export { Bird as BirdIcon } from "./components/Bird";
158
159
  export { BluetoothConnect as BluetoothConnectIcon } from "./components/BluetoothConnect";
159
160
  export { BluetoothOff as BluetoothOffIcon } from "./components/BluetoothOff";
160
161
  export { BluetoothOn as BluetoothOnIcon } from "./components/BluetoothOn";
package/dist/index.js CHANGED
@@ -156,6 +156,7 @@ export { BellRinging04 as BellRinging04Icon } from "./components/BellRinging04";
156
156
  export { BezierCurve01 as BezierCurve01Icon } from "./components/BezierCurve01";
157
157
  export { BezierCurve02 as BezierCurve02Icon } from "./components/BezierCurve02";
158
158
  export { BezierCurve03 as BezierCurve03Icon } from "./components/BezierCurve03";
159
+ export { Bird as BirdIcon } from "./components/Bird";
159
160
  export { BluetoothConnect as BluetoothConnectIcon } from "./components/BluetoothConnect";
160
161
  export { BluetoothOff as BluetoothOffIcon } from "./components/BluetoothOff";
161
162
  export { BluetoothOn as BluetoothOnIcon } from "./components/BluetoothOn";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/untitled-ui-icons",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "icons from untitled ui for langsmith and langgraph frontend",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",