@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.
Files changed (39) hide show
  1. package/{src/fesd → fesd}/components/Anchors/Anchor.Controller.tsx +1 -1
  2. package/{src/fesd → fesd}/components/Anchors/Anchor.Target.tsx +1 -1
  3. package/{src/fesd → fesd}/components/Anchors/Anchor.Wrapper.tsx +2 -2
  4. package/{src/fesd → fesd}/components/Modals/Modals.tsx +2 -2
  5. package/{src/fesd → fesd}/components/Overlay/Overlay.tsx +2 -2
  6. package/{src/fesd → fesd}/hooks/useAnchor4/Anchor4.ts +2 -2
  7. package/{src/fesd → fesd}/hooks/useAnchor4/useAnchor4.tsx +1 -1
  8. package/package.json +4 -3
  9. /package/{src/fesd → fesd}/components/Anchors/Anchor.Offseter.tsx +0 -0
  10. /package/{src/fesd → fesd}/components/Anchors/Anchors.tsx +0 -0
  11. /package/{src/fesd → fesd}/components/Anchors/index.ts +0 -0
  12. /package/{src/fesd → fesd}/components/Articles/Article.Basic.tsx +0 -0
  13. /package/{src/fesd → fesd}/components/Articles/Article.Figure.tsx +0 -0
  14. /package/{src/fesd → fesd}/components/Articles/ArticleBasic.module.scss +0 -0
  15. /package/{src/fesd → fesd}/components/Articles/ArticleFigure.module.scss +0 -0
  16. /package/{src/fesd → fesd}/components/Articles/index.ts +0 -0
  17. /package/{src/fesd → fesd}/components/Collapse/Collapse.Body.tsx +0 -0
  18. /package/{src/fesd → fesd}/components/Collapse/Collapse.Container.tsx +0 -0
  19. /package/{src/fesd → fesd}/components/Collapse/Collapse.Head.tsx +0 -0
  20. /package/{src/fesd → fesd}/components/Collapse/Collapse.Wrapper.tsx +0 -0
  21. /package/{src/fesd → fesd}/components/Collapse/Collapse.module.scss +0 -0
  22. /package/{src/fesd → fesd}/components/Collapse/Collapse.tsx +0 -0
  23. /package/{src/fesd → fesd}/components/Collapse/CollapseContext.tsx +0 -0
  24. /package/{src/fesd → fesd}/components/Collapse/index.ts +0 -0
  25. /package/{src/fesd → fesd}/components/Modals/Modals.module.scss +0 -0
  26. /package/{src/fesd → fesd}/components/Modals/Modals.types.ts +0 -0
  27. /package/{src/fesd → fesd}/components/Modals/index.ts +0 -0
  28. /package/{src/fesd → fesd}/components/Overlay/Overlay.module.scss +0 -0
  29. /package/{src/fesd → fesd}/components/Overlay/Overlay.types.ts +0 -0
  30. /package/{src/fesd → fesd}/components/Overlay/index.ts +0 -0
  31. /package/{src/fesd → fesd}/components/index.ts +0 -0
  32. /package/{src/fesd → fesd}/hooks/index.ts +0 -0
  33. /package/{src/fesd → fesd}/hooks/useAnchor4/index.ts +0 -0
  34. /package/{src/fesd → fesd}/hooks/useDragScroll4.tsx +0 -0
  35. /package/{src/fesd → fesd}/hooks/useTransitionend.tsx +0 -0
  36. /package/{src/fesd → fesd}/methods/Easing4/Easing4.ts +0 -0
  37. /package/{src/fesd → fesd}/methods/Easing4/index.ts +0 -0
  38. /package/{src/fesd → fesd}/methods/index.ts +0 -0
  39. /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,7 +3,7 @@
3
3
  "use client"
4
4
 
5
5
  import { useRef, Fragment, useEffect, useCallback } from 'react';
6
- import { useAnchor4, useAnchor4Type } from '@/fesd/hooks';
6
+ import { useAnchor4, useAnchor4Type } from '../../hooks';
7
7
 
8
8
  interface PropsType extends
9
9
  useAnchor4Type,
@@ -3,8 +3,8 @@
3
3
  "use client"
4
4
 
5
5
  import { useEffect, useRef } from "react"
6
- import { useAnchor4, useAnchor4Type, useDragScroll4 } from "@/fesd/hooks"
7
- import { off, on, delay as timeout } from "@/fesd/tools"
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 "@/fesd/components"
7
- import { mergeClassName, delay } from "@/fesd/tools"
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 "@/fesd/tools"
5
- import { OverlayType } from "@/fesd/components"
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 "@/fesd/methods"
5
- import { debug, isElement, delay as timeout } from "@/fesd/tools"
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,
@@ -3,7 +3,7 @@
3
3
 
4
4
  import * as React from "react"
5
5
  import { Anchor4, Anchor4OptionsType } from "./Anchor4"
6
- import { query, queryAll } from "@/fesd/tools"
6
+ import { query, queryAll } from "../../tools"
7
7
 
8
8
  export interface useAnchor4Type extends
9
9
  Anchor4OptionsType {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@xwadex/fesd-next",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
- "main": "./src/fesd",
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
- "src/fesd"
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