Skip to content

Commit 2dc39f1

Browse files
authored
chore: update deps (#285)
1 parent 41a3e6a commit 2dc39f1

18 files changed

+38
-32
lines changed

.dumirc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const name = 'mentions';
66
export default defineConfig({
77
favicons: ['https://avatars0.githubusercontent.com/u/9441414?s=200&v=4'],
88
themeConfig: {
9-
name: 'rc-mentions',
9+
name: '@rc-component/mentions',
1010
logo: 'https://avatars0.githubusercontent.com/u/9441414?s=200&v=4',
1111
},
1212
outputPath: '.doc',

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
* inline: true
5353
*/
54-
import Mentions from 'rc-mentions';
54+
import Mentions from '@rc-component/mentions';
5555
// Import the default styles
5656
import './index.less';
5757

docs/examples/allowClear.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Mentions from 'rc-mentions';
1+
import Mentions from '@rc-component/mentions';
22
import React, { useState } from 'react';
33

44
export default function App() {

docs/examples/basic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44

55
const onSelect = (option, prefix) => {

docs/examples/debug.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44

55
export default () => (

docs/examples/dynamic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44
import './dynamic.less';
55

docs/examples/filter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44

55
function filterOption(input, { key }) {

docs/examples/multiple-prefix.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44

55
const OPTIONS = {

docs/examples/onScroll.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44
import './onScroll.less';
55

docs/examples/split.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Mentions from 'rc-mentions';
2+
import Mentions from '@rc-component/mentions';
33
import '../../assets/index.less';
44

55
const { Option } = Mentions;

0 commit comments

Comments
 (0)