@canmingir/link 1.1.8 → 1.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canmingir/link",
3
- "version": "1.1.8",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -1,7 +1,9 @@
1
+ import { HEADER, NAV } from "../config-layout";
2
+
1
3
  import AccountPopover from "../common/account-popover";
2
4
  import AppBar from "@mui/material/AppBar";
3
5
  import IconButton from "@mui/material/IconButton";
4
- import Iconify from "../../../minimal/src/components/iconify";
6
+ import Iconify from "../../components/Iconify";
5
7
  import Logo from "../../components/logo";
6
8
  import NotificationsPopover from "../common/notifications-popover";
7
9
  import ProjectBar from "../common/ProjectBar";
@@ -16,10 +18,6 @@ import { useResponsive } from "../../hooks/use-responsive";
16
18
  import { useSettingsContext } from "../../components/settings";
17
19
  import { useTheme } from "@mui/material/styles";
18
20
 
19
- import { HEADER, NAV } from "../config-layout";
20
-
21
- // ----------------------------------------------------------------------
22
-
23
21
  export default function Header({ onOpenNav }) {
24
22
  const theme = useTheme();
25
23
  const settings = useSettingsContext();
@@ -1,12 +1,12 @@
1
+ import { Dialog, Stack } from "@mui/material";
2
+
1
3
  import Avatar from "@mui/material/Avatar";
2
4
  import IconButton from "@mui/material/IconButton";
3
- import { Iconify } from "../Iconify";
5
+ import Iconify from "../Iconify";
4
6
  import Icons from "../lib/Icons";
5
7
  import Picker from "@emoji-mart/react";
6
8
  import React from "react";
7
- import { SvgColor } from "../SvgColor";
8
-
9
- import { Dialog, Stack } from "@mui/material";
9
+ import SvgColor from "../SvgColor";
10
10
 
11
11
  export default function IconSelector({
12
12
  handleEmojiSelect,
@@ -1,13 +1,13 @@
1
+ import { useEffect, useState } from "react";
2
+
1
3
  import Dialog from "@mui/material/Dialog";
2
4
  import DialogContent from "@mui/material/DialogContent";
3
5
  import DialogTitle from "@mui/material/DialogTitle";
4
- import ItemSummary from "../ItemSummary/ItemSummary";
6
+ import ItemSummary from "./ItemSummary/ItemSummary";
5
7
  import React from "react";
6
- import SelectAvatar from "../IconSelector/IconSelector";
7
- import SparkleInput from "../SparkleInput/SparkleInput";
8
- import StepComponent from "../StepComponent/StepComponent";
9
-
10
- import { useEffect, useState } from "react";
8
+ import SelectAvatar from "./IconSelector/IconSelector";
9
+ import SparkleInput from "./SparkleInput/SparkleInput";
10
+ import StepComponent from "./StepComponent/StepComponent";
11
11
 
12
12
  function ProjectWizard({
13
13
  itemProperties,
@@ -1,9 +1,3 @@
1
- import Iconify from "../../minimal/src/components/iconify";
2
- import config from "../config/config";
3
- import { useEvent } from "@nucleoidai/react-event";
4
- import useSettings from "../hooks/useSettings";
5
- import { useUser } from "../hooks/use-user";
6
-
7
1
  import {
8
2
  Avatar,
9
3
  Box,
@@ -26,6 +20,12 @@ import {
26
20
  import { Button, Dialog, DialogActions, DialogContent } from "@mui/material";
27
21
  import React, { useEffect, useState } from "react";
28
22
 
23
+ import Iconify from "../components/Iconify";
24
+ import config from "../config/config";
25
+ import { useEvent } from "@nucleoidai/react-event";
26
+ import useSettings from "../hooks/useSettings";
27
+ import { useUser } from "../hooks/use-user";
28
+
29
29
  function a11yProps(index) {
30
30
  return {
31
31
  id: `vertical-tab-${index}`,