@versini/ui-icons 1.7.0 → 1.8.0

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 (31) hide show
  1. package/dist/chunks/{index.DOm6YBml.js → index.D-iPm0Zj.js} +1 -1
  2. package/dist/components/Icons/IconAdd.js +18 -19
  3. package/dist/components/Icons/IconBack.js +17 -24
  4. package/dist/components/Icons/IconBrightness.js +18 -25
  5. package/dist/components/Icons/IconChart.js +17 -24
  6. package/dist/components/Icons/IconClose.js +1 -1
  7. package/dist/components/Icons/IconCopied.js +14 -21
  8. package/dist/components/Icons/IconCopy.js +16 -23
  9. package/dist/components/Icons/IconDelete.js +18 -25
  10. package/dist/components/Icons/IconDog.js +1 -1
  11. package/dist/components/Icons/IconDown.js +19 -26
  12. package/dist/components/Icons/IconEdit.js +19 -26
  13. package/dist/components/Icons/IconGitHub.js +1 -1
  14. package/dist/components/Icons/IconHide.js +14 -21
  15. package/dist/components/Icons/IconHistory.js +14 -21
  16. package/dist/components/Icons/IconInfo.js +19 -26
  17. package/dist/components/Icons/IconNext.js +17 -24
  18. package/dist/components/Icons/IconPrevious.js +17 -24
  19. package/dist/components/Icons/IconProfile.js +18 -25
  20. package/dist/components/Icons/IconRestore.js +17 -24
  21. package/dist/components/Icons/IconSettings.js +1 -1
  22. package/dist/components/Icons/IconShow.js +17 -24
  23. package/dist/components/Icons/IconSort.js +13 -20
  24. package/dist/components/Icons/IconSortDown.js +34 -0
  25. package/dist/components/Icons/IconSortUp.js +34 -0
  26. package/dist/components/Icons/IconStarInCircle.js +14 -21
  27. package/dist/components/Icons/IconUp.js +16 -23
  28. package/dist/components/Icons/IconUser.js +16 -23
  29. package/dist/index.d.ts +5 -1
  30. package/dist/index.js +31 -27
  31. package/package.json +2 -2
@@ -1,39 +1,32 @@
1
- import { jsxs as m, jsx as a } from "react/jsx-runtime";
2
- import { S as c } from "../../chunks/index.DOm6YBml.js";
1
+ import { jsxs as m, jsx as s } from "react/jsx-runtime";
2
+ import { S as i } from "../../chunks/index.D-iPm0Zj.js";
3
3
  const p = ({
4
- className: s,
5
- viewBox: e,
6
- spacing: o,
7
- title: r,
4
+ className: t,
5
+ viewBox: a,
6
+ spacing: e,
7
+ title: o,
8
8
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
9
- monotone: i,
10
- ...t
9
+ monotone: z,
10
+ ...r
11
11
  }) => /* @__PURE__ */ m(
12
- c,
12
+ i,
13
13
  {
14
14
  defaultViewBox: "0 0 512 512",
15
15
  defaultClassName: "size-5",
16
- viewBox: e,
17
- className: s,
18
- spacing: o,
19
- title: r || "User",
20
- ...t,
16
+ viewBox: a,
17
+ className: t,
18
+ spacing: e,
19
+ title: o || "User",
20
+ ...r,
21
21
  children: [
22
- /* @__PURE__ */ a(
22
+ /* @__PURE__ */ s(
23
23
  "path",
24
24
  {
25
- className: "fa-secondary",
26
25
  opacity: "0.4",
27
26
  d: "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"
28
27
  }
29
28
  ),
30
- /* @__PURE__ */ a(
31
- "path",
32
- {
33
- className: "fa-primary",
34
- d: "M176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"
35
- }
36
- )
29
+ /* @__PURE__ */ s("path", { d: "M176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" })
37
30
  ]
38
31
  }
39
32
  );
package/dist/index.d.ts CHANGED
@@ -66,10 +66,14 @@ declare const IconShow: ({ className, viewBox, spacing, title, monotone, ...rest
66
66
 
67
67
  declare const IconSort: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
68
68
 
69
+ declare const IconSortDown: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
70
+
71
+ declare const IconSortUp: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
72
+
69
73
  declare const IconStarInCircle: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
70
74
 
71
75
  declare const IconUp: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
72
76
 
73
77
  declare const IconUser: ({ className, viewBox, spacing, title, monotone, ...rest }: IconsProps) => react_jsx_runtime.JSX.Element;
74
78
 
75
- export { IconAdd, IconBack, IconBrightness, IconChart, IconClose, IconCopied, IconCopy, IconDelete, IconDog, IconDown, IconEdit, IconGitHub, IconHide, IconHistory, IconInfo, IconNext, IconPrevious, IconProfile, IconRestore, IconSettings, IconShow, IconSort, IconStarInCircle, IconUp, IconUser };
79
+ export { IconAdd, IconBack, IconBrightness, IconChart, IconClose, IconCopied, IconCopy, IconDelete, IconDog, IconDown, IconEdit, IconGitHub, IconHide, IconHistory, IconInfo, IconNext, IconPrevious, IconProfile, IconRestore, IconSettings, IconShow, IconSort, IconSortDown, IconSortUp, IconStarInCircle, IconUp, IconUser };
package/dist/index.js CHANGED
@@ -4,33 +4,35 @@ import { IconBrightness as p } from "./components/Icons/IconBrightness.js";
4
4
  import { IconChart as f } from "./components/Icons/IconChart.js";
5
5
  import { IconClose as i } from "./components/Icons/IconClose.js";
6
6
  import { IconCopied as _ } from "./components/Icons/IconCopied.js";
7
- import { IconCopy as S } from "./components/Icons/IconCopy.js";
8
- import { IconDelete as C } from "./components/Icons/IconDelete.js";
9
- import { IconDog as l } from "./components/Icons/IconDog.js";
7
+ import { IconCopy as d } from "./components/Icons/IconCopy.js";
8
+ import { IconDelete as w } from "./components/Icons/IconDelete.js";
9
+ import { IconDog as a } from "./components/Icons/IconDog.js";
10
10
  import { IconDown as g } from "./components/Icons/IconDown.js";
11
- import { IconEdit as N } from "./components/Icons/IconEdit.js";
12
- import { IconGitHub as E } from "./components/Icons/IconGitHub.js";
11
+ import { IconEdit as D } from "./components/Icons/IconEdit.js";
12
+ import { IconGitHub as U } from "./components/Icons/IconGitHub.js";
13
13
  import { IconHide as b } from "./components/Icons/IconHide.js";
14
14
  import { IconHistory as y } from "./components/Icons/IconHistory.js";
15
- import { IconInfo as P } from "./components/Icons/IconInfo.js";
16
- import { IconNext as T } from "./components/Icons/IconNext.js";
15
+ import { IconInfo as R } from "./components/Icons/IconInfo.js";
16
+ import { IconNext as A } from "./components/Icons/IconNext.js";
17
17
  import { IconPrevious as M } from "./components/Icons/IconPrevious.js";
18
- import { IconProfile as V } from "./components/Icons/IconProfile.js";
19
- import { IconRestore as A } from "./components/Icons/IconRestore.js";
18
+ import { IconProfile as P } from "./components/Icons/IconProfile.js";
19
+ import { IconRestore as k } from "./components/Icons/IconRestore.js";
20
20
  import { IconSettings as j } from "./components/Icons/IconSettings.js";
21
21
  import { IconShow as z } from "./components/Icons/IconShow.js";
22
22
  import { IconSort as J } from "./components/Icons/IconSort.js";
23
- import { IconStarInCircle as L } from "./components/Icons/IconStarInCircle.js";
24
- import { IconUp as W } from "./components/Icons/IconUp.js";
25
- import { IconUser as Y } from "./components/Icons/IconUser.js";
23
+ import { IconSortDown as L } from "./components/Icons/IconSortDown.js";
24
+ import { IconSortUp as W } from "./components/Icons/IconSortUp.js";
25
+ import { IconStarInCircle as Y } from "./components/Icons/IconStarInCircle.js";
26
+ import { IconUp as $ } from "./components/Icons/IconUp.js";
27
+ import { IconUser as ro } from "./components/Icons/IconUser.js";
26
28
  /*!
27
- @versini/ui-icons v1.7.0
29
+ @versini/ui-icons v1.8.0
28
30
  © 2024 gizmette.com
29
31
  */
30
32
  try {
31
33
  window.__VERSINI_UI_ICONS__ || (window.__VERSINI_UI_ICONS__ = {
32
- version: "1.7.0",
33
- buildTime: "04/16/2024 04:38 PM EDT",
34
+ version: "1.8.0",
35
+ buildTime: "04/17/2024 10:00 AM EDT",
34
36
  homepage: "https://github.com/aversini/ui-components",
35
37
  license: "MIT"
36
38
  });
@@ -43,23 +45,25 @@ export {
43
45
  f as IconChart,
44
46
  i as IconClose,
45
47
  _ as IconCopied,
46
- S as IconCopy,
47
- C as IconDelete,
48
- l as IconDog,
48
+ d as IconCopy,
49
+ w as IconDelete,
50
+ a as IconDog,
49
51
  g as IconDown,
50
- N as IconEdit,
51
- E as IconGitHub,
52
+ D as IconEdit,
53
+ U as IconGitHub,
52
54
  b as IconHide,
53
55
  y as IconHistory,
54
- P as IconInfo,
55
- T as IconNext,
56
+ R as IconInfo,
57
+ A as IconNext,
56
58
  M as IconPrevious,
57
- V as IconProfile,
58
- A as IconRestore,
59
+ P as IconProfile,
60
+ k as IconRestore,
59
61
  j as IconSettings,
60
62
  z as IconShow,
61
63
  J as IconSort,
62
- L as IconStarInCircle,
63
- W as IconUp,
64
- Y as IconUser
64
+ L as IconSortDown,
65
+ W as IconSortUp,
66
+ Y as IconStarInCircle,
67
+ $ as IconUp,
68
+ ro as IconUser
65
69
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-icons",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -47,5 +47,5 @@
47
47
  "sideEffects": [
48
48
  "**/*.css"
49
49
  ],
50
- "gitHead": "90529e8d711c6cd72ad2a9137fd42b0019bbea26"
50
+ "gitHead": "2d4b605da057debfc559bc182b495bf9db9065fa"
51
51
  }