chore: Dependency updates
This commit is contained in:
parent
c8ac9a2d6a
commit
76fbc5f6a4
182 changed files with 6949 additions and 1697 deletions
|
@ -21,7 +21,7 @@
|
|||
</a><a
|
||||
href="#contributors-"
|
||||
title="All Contributors"
|
||||
><img src="https://img.shields.io/badge/all_contributors-129-pink.svg"
|
||||
><img src="https://img.shields.io/badge/all_contributors-131-pink.svg"
|
||||
alt="All Contributors"/>
|
||||
</a></p><p align='center'><a
|
||||
href="https://twitter.com/freesewing_org"
|
||||
|
|
|
@ -18,23 +18,12 @@
|
|||
"freesewing"
|
||||
],
|
||||
"type": "module",
|
||||
"module": "src/index.mjs",
|
||||
"module": "dist/index.mjs",
|
||||
"exports": {
|
||||
".": {
|
||||
"internal": "./src/index.mjs",
|
||||
"default": "./src/index.mjs"
|
||||
},
|
||||
"./pattern": "./src/pattern/index.mjs",
|
||||
"./xray": "./src/pattern-xray/index.mjs",
|
||||
"./editor": "./src/editor/index.mjs",
|
||||
"./icons": "./src/editor/swizzle/components/icons.mjs",
|
||||
"./linedrawings": "./src/linedrawings/index.mjs",
|
||||
"./popout": "./src/popout.mjs",
|
||||
"./methods": "./src/editor/swizzle/methods/index.mjs"
|
||||
},
|
||||
"imports": {
|
||||
"#components": "./src/editor/swizzle/components/index.mjs",
|
||||
"#methods": "./src/editor/swizzle/methods/index.mjs"
|
||||
"default": "./dist/index.mjs"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node build.mjs",
|
||||
|
@ -54,7 +43,7 @@
|
|||
"react": "^18.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "1.7.4",
|
||||
"axios": "1.7.2",
|
||||
"html-react-parser": "^5.0.7",
|
||||
"nuqs": "^1.17.6",
|
||||
"react-markdown": "^9.0.1",
|
||||
|
|
|
@ -2,6 +2,7 @@ import React from 'react'
|
|||
import { mergeProps } from './utils.mjs'
|
||||
import { Popout as SwizzledPopout } from './editor/swizzle/components/popout.mjs'
|
||||
import { CloseIcon } from './editor/swizzle/components/icons.mjs'
|
||||
import { t } from '#methods'
|
||||
|
||||
const t = (id) => id
|
||||
|
||||
export const Popout = (props) => <SwizzledPopout {...mergeProps(props, { CloseIcon }, { t })} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue