@grafana/components 0.0.52 → 0.0.53

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
@@ -77,22 +77,12 @@ other icons.
77
77
 
78
78
  ...
79
79
 
80
- ### Publishing
80
+ ## Building & Publishing
81
81
 
82
- Currently this repo is not configured to automatically publish through CI (the
83
- GH action will report as failing). In order to publish a new version, you will
84
- need to do so locally using 2FA. First log into npmjs.com using this script:
85
-
86
- ```
87
- yarn npm:login
88
- ```
89
-
90
- Once this confirms you are logged in, run this script to build and publish the
91
- package (you will be prompted to enter a 2FA code again):
92
-
93
- ```
94
- yarn build:publish
95
- ```
82
+ At present a temporary publish workflow exists using GitHub Actions. To publish
83
+ a new version of this package, you simply need to merge to the `main` branch,
84
+ ensuring that the version number (following semver) in `package.json` has been
85
+ incremented.
96
86
 
97
87
  [lucide]: https://lucide.dev
98
88
  [lucide-icon-design-principles]: https://lucide.dev/guide/design/icon-design-guide
@@ -3792,6 +3792,12 @@ const ClockPlus = ({ title = "Clock plus", ...props }) => /* @__PURE__ */ jsxRun
3792
3792
  ] });
3793
3793
  ClockPlus.fill = "none";
3794
3794
 
3795
+ const ClockX = ({ title = "Clock x", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
3796
+ title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
3797
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v6l4 2m6-2a9.999 9.999 0 1 0-11 9.95m6 .05 4-4m-4 0 4 4" })
3798
+ ] });
3799
+ ClockX.fill = "none";
3800
+
3795
3801
  const Clock = ({ title = "Clock", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
3796
3802
  title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
3797
3803
  /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v6l4 2" }),
@@ -14461,6 +14467,7 @@ const AllIcons = {
14461
14467
  ClockCheck,
14462
14468
  ClockFading,
14463
14469
  ClockPlus,
14470
+ ClockX,
14464
14471
  Clock,
14465
14472
  ClosedCaption,
14466
14473
  CloudAlert,
@@ -18792,6 +18799,7 @@ const iconMetaData = {
18792
18799
  ClockCheck: ["time", "watch", "alarm"],
18793
18800
  ClockFading: ["time", "watch", "alarm"],
18794
18801
  ClockPlus: ["time", "watch", "alarm", "add", "create", "new"],
18802
+ ClockX: ["time", "watch", "alarm", "schedule", "cross"],
18795
18803
  Clock: ["time", "watch", "alarm"],
18796
18804
  ClosedCaption: [
18797
18805
  "tv",
@@ -26912,6 +26920,7 @@ exports.ClockArrowUp = ClockArrowUp;
26912
26920
  exports.ClockCheck = ClockCheck;
26913
26921
  exports.ClockFading = ClockFading;
26914
26922
  exports.ClockPlus = ClockPlus;
26923
+ exports.ClockX = ClockX;
26915
26924
  exports.ClosedCaption = ClosedCaption;
26916
26925
  exports.Cloud = Cloud;
26917
26926
  exports.CloudAlert = CloudAlert;