@xwadex/fesd-next 0.1.0 → 0.1.2
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/{src/fesd → fesd}/components/Anchors/Anchor.Controller.tsx +1 -1
- package/{src/fesd → fesd}/components/Anchors/Anchor.Target.tsx +1 -1
- package/{src/fesd → fesd}/components/Anchors/Anchor.Wrapper.tsx +2 -2
- package/{src/fesd → fesd}/components/Modals/Modals.tsx +2 -2
- package/{src/fesd → fesd}/components/Overlay/Overlay.tsx +2 -2
- package/{src/fesd → fesd}/hooks/useAnchor4/Anchor4.ts +2 -2
- package/{src/fesd → fesd}/hooks/useAnchor4/useAnchor4.tsx +1 -1
- package/package.json +4 -3
- /package/{src/fesd → fesd}/components/Anchors/Anchor.Offseter.tsx +0 -0
- /package/{src/fesd → fesd}/components/Anchors/Anchors.tsx +0 -0
- /package/{src/fesd → fesd}/components/Anchors/index.ts +0 -0
- /package/{src/fesd → fesd}/components/Articles/Article.Basic.tsx +0 -0
- /package/{src/fesd → fesd}/components/Articles/Article.Figure.tsx +0 -0
- /package/{src/fesd → fesd}/components/Articles/ArticleBasic.module.scss +0 -0
- /package/{src/fesd → fesd}/components/Articles/ArticleFigure.module.scss +0 -0
- /package/{src/fesd → fesd}/components/Articles/index.ts +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.Body.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.Container.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.Head.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.Wrapper.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.module.scss +0 -0
- /package/{src/fesd → fesd}/components/Collapse/Collapse.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/CollapseContext.tsx +0 -0
- /package/{src/fesd → fesd}/components/Collapse/index.ts +0 -0
- /package/{src/fesd → fesd}/components/Modals/Modals.module.scss +0 -0
- /package/{src/fesd → fesd}/components/Modals/Modals.types.ts +0 -0
- /package/{src/fesd → fesd}/components/Modals/index.ts +0 -0
- /package/{src/fesd → fesd}/components/Overlay/Overlay.module.scss +0 -0
- /package/{src/fesd → fesd}/components/Overlay/Overlay.types.ts +0 -0
- /package/{src/fesd → fesd}/components/Overlay/index.ts +0 -0
- /package/{src/fesd → fesd}/components/index.ts +0 -0
- /package/{src/fesd → fesd}/hooks/index.ts +0 -0
- /package/{src/fesd → fesd}/hooks/useAnchor4/index.ts +0 -0
- /package/{src/fesd → fesd}/hooks/useDragScroll4.tsx +0 -0
- /package/{src/fesd → fesd}/hooks/useTransitionend.tsx +0 -0
- /package/{src/fesd → fesd}/methods/Easing4/Easing4.ts +0 -0
- /package/{src/fesd → fesd}/methods/Easing4/index.ts +0 -0
- /package/{src/fesd → fesd}/methods/index.ts +0 -0
- /package/{src/fesd → fesd}/tools.ts +0 -0
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"use client"
|
|
4
4
|
|
|
5
5
|
import { Fragment, useRef } from "react"
|
|
6
|
-
import { useAnchor4, useAnchor4Type } from "@/fesd/hooks"
|
|
7
6
|
import { useRouter } from "next/navigation"
|
|
7
|
+
import { useAnchor4, useAnchor4Type } from "../../hooks"
|
|
8
8
|
|
|
9
9
|
interface PropsType extends
|
|
10
10
|
useAnchor4Type,
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"use client"
|
|
4
4
|
|
|
5
5
|
import { useEffect, useRef } from "react"
|
|
6
|
-
import { useAnchor4, useAnchor4Type, useDragScroll4 } from "
|
|
7
|
-
import { off, on, delay as timeout } from "
|
|
6
|
+
import { useAnchor4, useAnchor4Type, useDragScroll4 } from "../../hooks"
|
|
7
|
+
import { off, on, delay as timeout } from "../../tools"
|
|
8
8
|
import { usePathname } from "next/navigation"
|
|
9
9
|
|
|
10
10
|
interface PropsType extends
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
import * as React from "react"
|
|
5
5
|
import { createPortal } from 'react-dom'
|
|
6
|
-
import { Overlay } from "
|
|
7
|
-
import { mergeClassName, delay } from "
|
|
6
|
+
import { Overlay } from "../"
|
|
7
|
+
import { mergeClassName, delay } from "../../tools"
|
|
8
8
|
import { ModalsTypes } from "./Modals.types"
|
|
9
9
|
import styles from "./Modals.module.scss"
|
|
10
10
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
|
|
3
3
|
import * as React from "react"
|
|
4
|
-
import { delay, mergeClassName } from "
|
|
5
|
-
import { OverlayType } from "
|
|
4
|
+
import { delay, mergeClassName } from "../../tools"
|
|
5
|
+
import { OverlayType } from ".."
|
|
6
6
|
import styles from "./Overlay.module.scss"
|
|
7
7
|
|
|
8
8
|
const Overlay: React.FC<OverlayType> = ({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* 2024.06.10 */
|
|
2
2
|
"use client"
|
|
3
3
|
|
|
4
|
-
import { Easing4, Easing4Type } from "
|
|
5
|
-
import { debug, isElement, delay as timeout } from "
|
|
4
|
+
import { Easing4, Easing4Type } from "../../methods"
|
|
5
|
+
import { debug, isElement, delay as timeout } from "../../tools"
|
|
6
6
|
|
|
7
7
|
export type EventCallback = (
|
|
8
8
|
event: string,
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xwadex/fesd-next",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./fesd",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "next dev --turbo",
|
|
@@ -11,11 +11,12 @@
|
|
|
11
11
|
"lint": "next lint"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"
|
|
14
|
+
"fesd"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@types/react": "npm:types-react@rc",
|
|
18
18
|
"@types/react-dom": "npm:types-react-dom@rc",
|
|
19
|
+
"@xwadex/fesd-next": "^0.1.1",
|
|
19
20
|
"ag-grid-community": "~31.3.1",
|
|
20
21
|
"ag-grid-enterprise": "~31.3.1",
|
|
21
22
|
"ag-grid-react": "~31.3.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|