Skip to content

Commit e645f93

Browse files
committed
test: update snapshot
1 parent a8847f0 commit e645f93

File tree

14 files changed

+51
-51
lines changed

14 files changed

+51
-51
lines changed

.dumirc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { defineConfig } from 'dumi';
44
export default defineConfig({
55
favicons: ['https://avatars0.githubusercontent.com/u/9441414?s=200&v=4'],
66
themeConfig: {
7-
name: 'rc-progress',
7+
name: '@rc-component/progress',
88
logo: 'https://avatars0.githubusercontent.com/u/9441414?s=200&v=4',
99
},
1010
exportStatic: {},

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# rc-progress
1+
# @rc-component/progress
22

33
Progress Bar.
44

55
[![NPM version][npm-image]][npm-url] [![dumi](https://img.shields.io/badge/docs%20by-dumi-blue?style=flat-square)](https://github.com/umijs/dumi) [![build status][github-actions-image]][github-actions-url] [![Test coverage][coveralls-image]][coveralls-url] [![npm download][download-image]][download-url] [![bundle size][bundlephobia-image]][bundlephobia-url]
66

7-
[npm-image]: http://img.shields.io/npm/v/rc-progress.svg?style=flat-square
8-
[npm-url]: http://npmjs.org/package/rc-progress
7+
[npm-image]: http://img.shields.io/npm/v/@rc-component/progress.svg?style=flat-square
8+
[npm-url]: http://npmjs.org/package/@rc-component/progress
99
[github-actions-image]: https://github.com/react-component/progress/workflows/CI/badge.svg
1010
[github-actions-url]: https://github.com/react-component/progress/actions
1111
[circleci-image]: https://img.shields.io/circleci/react-component/progress/master?style=flat-square
@@ -16,10 +16,10 @@ Progress Bar.
1616
[david-image]: https://david-dm.org/react-component/progress/status.svg?style=flat-square
1717
[david-dev-url]: https://david-dm.org/react-component/progress?type=dev
1818
[david-dev-image]: https://david-dm.org/react-component/progress/dev-status.svg?style=flat-square
19-
[download-image]: https://img.shields.io/npm/dm/rc-progress.svg?style=flat-square
20-
[download-url]: https://npmjs.org/package/rc-progress
21-
[bundlephobia-url]: https://bundlephobia.com/result?p=rc-progress
22-
[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/rc-progress
19+
[download-image]: https://img.shields.io/npm/dm/@rc-component/progress.svg?style=flat-square
20+
[download-url]: https://npmjs.org/package/@rc-component/progress
21+
[bundlephobia-url]: https://bundlephobia.com/result?p=@rc-component/progress
22+
[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/@rc-component/progress
2323

2424
## Example
2525

@@ -35,12 +35,12 @@ https://progress.react-component.vercel.app/
3535

3636
## Install
3737

38-
[![rc-progress](https://nodei.co/npm/rc-progress.png)](https://npmjs.org/package/rc-progress)
38+
[![@rc-component/progress](https://nodei.co/npm/@rc-component/progress.png)](https://npmjs.org/package/@rc-component/progress)
3939

4040
## Usage
4141

4242
```js
43-
import { Line, Circle } from 'rc-progress';
43+
import { Line, Circle } from '@rc-component/progress';
4444

4545
export default () => (
4646
<>
@@ -148,7 +148,7 @@ export default () => (
148148
## Installation
149149

150150
```
151-
npm install --save rc-progress
151+
npm install --save @rc-component/progress
152152
```
153153

154154
## Development
@@ -160,4 +160,4 @@ npm start
160160

161161
## License
162162

163-
rc-progress is released under the MIT license.
163+
@rc-component/progress is released under the MIT license.

docs/examples/fast-progress.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
2-
import { Line, Circle } from 'rc-progress';
3-
import type { ProgressProps } from 'rc-progress';
2+
import { Line, Circle } from '@rc-component/progress';
3+
import type { ProgressProps } from '@rc-component/progress';
44

55
class App extends React.Component<ProgressProps, any> {
66
constructor(props: ProgressProps) {

docs/examples/gap.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
2-
import { Circle } from 'rc-progress';
3-
import type { ProgressProps } from 'rc-progress';
2+
import { Circle } from '@rc-component/progress';
3+
import type { ProgressProps } from '@rc-component/progress';
44

55
const colorMap = ['#3FC7FA', '#85D262', '#FE8C6A', '#FF5959', '#BC3FFA'];
66

docs/examples/gradient-circle.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 { Circle } from 'rc-progress';
2+
import { Circle } from '@rc-component/progress';
33

44
const circleContainerStyle: React.CSSProperties = {
55
width: 250,

docs/examples/loading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from 'react';
2-
import { Line, Circle } from 'rc-progress';
2+
import { Line, Circle } from '@rc-component/progress';
33

44
const Loading = () => {
55
return (

docs/examples/simple.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
2-
import { Line, Circle } from 'rc-progress';
3-
import type { ProgressProps } from 'rc-progress';
2+
import { Line, Circle } from '@rc-component/progress';
3+
import type { ProgressProps } from '@rc-component/progress';
44

55
class Example extends React.Component<ProgressProps, any> {
66
constructor(props: ProgressProps) {

docs/examples/steps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState } from 'react';
2-
import { Circle } from 'rc-progress';
2+
import { Circle } from '@rc-component/progress';
33

44
const Example: React.FC = () => {
55
const [percent, setPercent] = useState<number>(30);

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
hero:
3-
title: rc-progress
3+
title: '@rc-component/progress'
44
description: React Progress Component
55
---
66

now.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": 2,
3-
"name": "rc-progress",
3+
"name": "@rc-component/progress",
44
"builds": [
55
{
66
"src": "package.json",

0 commit comments

Comments
 (0)