diff --git a/src/packages/configprovider/demo.taro.tsx b/src/packages/configprovider/demo.taro.tsx
index 9cefae570e..a8fab05c6c 100644
--- a/src/packages/configprovider/demo.taro.tsx
+++ b/src/packages/configprovider/demo.taro.tsx
@@ -11,17 +11,17 @@ import { useTranslate } from '@/sites/assets/locale/taro'
const ConfigProviderDemo = () => {
const [translated] = useTranslate({
'zh-CN': {
- text: 'Textarea 中文与英文',
+ text: 'Pagination 中文与英文',
theme: '默认主题与定制主题',
RTL: harmony() ? 'RTL【暂不支持】' : 'RTL',
},
'zh-TW': {
- text: 'Textarea 中文与英文',
+ text: 'Pagination 中文与英文',
theme: '默認主題与定制主題',
RTL: harmony() ? 'RTL【暂不支持】' : 'RTL',
},
'en-US': {
- text: 'Textarea zh-CN and en-US',
+ text: 'Pagination zh-CN and en-US',
theme: 'Default Theme And Custom Theme',
RTL: harmony() ? 'RTL[Pendding]' : 'RTL',
},
diff --git a/src/packages/configprovider/demo.tsx b/src/packages/configprovider/demo.tsx
index a1d768965f..38980809d7 100644
--- a/src/packages/configprovider/demo.tsx
+++ b/src/packages/configprovider/demo.tsx
@@ -7,15 +7,15 @@ import { useTranslate } from '@/sites/assets/locale'
const ConfigProviderDemo = () => {
const [translated] = useTranslate({
'zh-CN': {
- text: 'Textarea 中文与英文',
+ text: 'Pagination 中文与英文',
theme: '默认主题与定制主题',
},
'zh-TW': {
- text: 'Textarea 中文与英文',
+ text: 'Pagination 中文与英文',
theme: '默認主題与定制主題',
},
'en-US': {
- text: 'Textarea zh-CN and en-US',
+ text: 'Pagination zh-CN and en-US',
theme: 'Default Theme And Custom Theme',
},
})
diff --git a/src/packages/configprovider/demos/h5/demo2.tsx b/src/packages/configprovider/demos/h5/demo2.tsx
index 5fadb894e9..c234bfb747 100644
--- a/src/packages/configprovider/demos/h5/demo2.tsx
+++ b/src/packages/configprovider/demos/h5/demo2.tsx
@@ -1,18 +1,18 @@
import React from 'react'
-import { ConfigProvider, TextArea, Cell } from '@nutui/nutui-react'
-import enUS from '@nutui/nutui-react/dist/es/locale/en-US'
+import { ConfigProvider, Pagination, Cell } from '@nutui/nutui-react'
+import enUS from '@nutui/nutui-react/dist/es/locales/en-US'
const Demo = () => {
return (
<>
|
-
+
|
-
+
|
>
diff --git a/src/packages/configprovider/demos/taro/demo2.tsx b/src/packages/configprovider/demos/taro/demo2.tsx
index 9a8dea6253..cc463158f6 100644
--- a/src/packages/configprovider/demos/taro/demo2.tsx
+++ b/src/packages/configprovider/demos/taro/demo2.tsx
@@ -1,5 +1,5 @@
import React from 'react'
-import { ConfigProvider, TextArea, Cell } from '@nutui/nutui-react-taro'
+import { ConfigProvider, Pagination, Cell } from '@nutui/nutui-react-taro'
import enUS from '@nutui/nutui-react-taro/dist/es/locales/en-US'
const Demo = () => {
@@ -7,12 +7,12 @@ const Demo = () => {
<>
-
+
|
-
+
|
>
diff --git a/src/packages/configprovider/doc.en-US.md b/src/packages/configprovider/doc.en-US.md
index 3b68385c27..e1077acedc 100644
--- a/src/packages/configprovider/doc.en-US.md
+++ b/src/packages/configprovider/doc.en-US.md
@@ -24,8 +24,8 @@ You can override these CSS variables directly in your code, and the styling of t
/* After you add this style, the Primary Button turns green */
:root {
--nutui-color-primary: green;
- --nutui-color-primary-stop1: green;
- --nutui-color-primary-stop2: green;
+ --nutui-color-primary-stop-1: green;
+ --nutui-color-primary-stop-2: green;
}
```
diff --git a/src/packages/configprovider/doc.md b/src/packages/configprovider/doc.md
index 838581e366..c706d125b8 100644
--- a/src/packages/configprovider/doc.md
+++ b/src/packages/configprovider/doc.md
@@ -24,8 +24,8 @@ NutUI-React 可以通过 [CSS 变量](https://developer.mozilla.org/zh-CN/docs/W
/* 添加这段样式后,Primary Button 会变成绿色 */
:root {
--nutui-color-primary: green;
- --nutui-color-primary-stop1: green;
- --nutui-color-primary-stop2: green;
+ --nutui-color-primary-stop-1: green;
+ --nutui-color-primary-stop-2: green;
}
```
diff --git a/src/packages/configprovider/doc.taro.md b/src/packages/configprovider/doc.taro.md
index a8889fc3e8..c64f914d59 100644
--- a/src/packages/configprovider/doc.taro.md
+++ b/src/packages/configprovider/doc.taro.md
@@ -24,8 +24,8 @@ NutUI-React 可以通过 [CSS 变量](https://developer.mozilla.org/zh-CN/docs/W
/* 添加这段样式后,Primary Button 会变成绿色 */
:root {
--nutui-color-primary: green;
- --nutui-color-primary-stop1: green;
- --nutui-color-primary-stop2: green;
+ --nutui-color-primary-stop-1: green;
+ --nutui-color-primary-stop-2: green;
}
```
diff --git a/src/packages/configprovider/doc.zh-TW.md b/src/packages/configprovider/doc.zh-TW.md
index 02ff6571ee..7de72cb25c 100644
--- a/src/packages/configprovider/doc.zh-TW.md
+++ b/src/packages/configprovider/doc.zh-TW.md
@@ -24,8 +24,8 @@ NutUI-React 可以通過 \[CSS 變數\](