@langchain/untitled-ui-icons 1.0.9 → 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
@@ -9,11 +9,18 @@ GitHub Actions will automatically:
9
9
  2. Update `src/index.ts` with the export
10
10
  3. Build and deploy the docs site to GitHub Pages
11
11
 
12
- ## Publishing to NPM (Manual)
12
+ ## Releasing
13
13
 
14
- After icons are auto-generated and pushed:
15
- 1. Bump version in `package.json`
16
- 2. Run `npm publish`
14
+ 1. Go to [**Actions Release → Run workflow**](https://github.com/langchain-ai/langchain-untitled-ui-icons/actions/workflows/release.yml)
15
+ 2. Enter the new version (e.g. `1.1.0`)
16
+
17
+ The workflow will validate the version, update `package.json`, build, publish to npm, commit, tag, and create a GitHub Release.
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.
17
24
 
18
25
  ## Local Development
19
26
 
@@ -35,5 +42,4 @@ View available icons at: https://ideal-adventure-kgrlqgn.pages.github.io/
35
42
  ## TODO
36
43
 
37
44
  - Better handling of unexpected cases, malformed SVGs, incorrect naming convention, etc.
38
- - Tagging ([example](https://github.com/clipboard-history-io/extension/blob/main/.github/workflows/upgrade.yml)) + publishing ([example](https://github.com/clipboard-history-io/extension/blob/main/.github/workflows/release.yml)) with CI
39
45
  - Protect main.
@@ -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.9",
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",