diff --git a/scripts/analyze-title-relevance.mjs b/scripts/analyze-title-relevance.mjs new file mode 100644 index 0000000000..9e6ab38460 --- /dev/null +++ b/scripts/analyze-title-relevance.mjs @@ -0,0 +1,130 @@ +/** + * @description 用于分析标题或日志与组件的相关性 + */ +import config from '../src/config.json' assert { type: 'json' } + +// 分析标题与组件的相关性 +export function analyzeTitleRelevance(title, componentName, componentNameCN) { + const lowerTitle = title.toLowerCase() + const lowerComponentName = componentName.toLowerCase() + let relevanceScore = 0 + + // 1. 作者指定 (权重: 100) + const commitFormatMatch = title.match(/[\w:]+\((\w+)\):?/) // 修改正则表达式,使其更灵活地匹配组件名 + if ( + commitFormatMatch && + commitFormatMatch[1].toLowerCase() === lowerComponentName + ) { + relevanceScore += 100 + } + + // 2. 完全匹配 (权重: 20) - 提高权重 + if (lowerTitle.includes(lowerComponentName)) { + relevanceScore += 20 + } + if (title.includes(componentNameCN)) { + relevanceScore += 20 + } + + // 3. 检查组件列表 (权重: 15) - 提高权重,支持更多分隔符 + const componentList = lowerTitle + .split(/[,;\s\[\]]+/) + .map((s) => s.trim()) + .filter(Boolean) + if (componentList.includes(lowerComponentName)) { + relevanceScore += 15 + } + + // 4. 部分匹配 (权重: 3) + const componentWords = lowerComponentName + .split(/(?=[A-Z])/) + .map((word) => word.toLowerCase()) + componentWords.forEach((word) => { + if (word.length > 1 && lowerTitle.includes(word)) { + relevanceScore += 3 + } + }) + + // 5. 检查中文关键词匹配 (权重: 3) + const cnKeywords = componentNameCN.split(/[s,,]/).filter(Boolean) + cnKeywords.forEach((keyword) => { + if (title.includes(keyword)) { + relevanceScore += 3 + } + }) + + // 6. 上下文语义分析 (权重: 30) + // 检查是否是组件的主要功能描述 + const isMainFeature = + title.includes(`${componentName}组件`) || + title.includes(`${componentNameCN}组件`) || + (title.includes(componentName) && title.includes('组件')) + if (isMainFeature) { + relevanceScore += 30 + } + + // 相关性阈值 + const RELEVANCE_THRESHOLD = 3 + + return { + score: relevanceScore, + isRelevant: relevanceScore >= RELEVANCE_THRESHOLD, // 只有达到阈值才算相关 + details: { + commitFormat: commitFormatMatch ? commitFormatMatch[1] : null, + exactMatchEn: lowerTitle.includes(lowerComponentName), + exactMatchCn: title.includes(componentNameCN), + partialMatches: componentWords.filter( + (word) => word.length > 1 && lowerTitle.includes(word) + ), + cnMatches: cnKeywords.filter((keyword) => title.includes(keyword)), + }, + } +} + +// 分析标题与所有组件的相关性,返回相关性最高的组件们 + +export function findMostRelevantComponents(title) { + let maxScore = -1 + let mostRelevantComponents = [] + let relevanceDetails = null + + config.nav.forEach((nav) => { + nav.packages.forEach((pkg) => { + const result = analyzeTitleRelevance(title, pkg.name, pkg.cName) + if (result.score > maxScore) { + maxScore = result.score + mostRelevantComponents = [pkg] + relevanceDetails = result + } else if (result.score === maxScore && maxScore > 0) { + mostRelevantComponents.push(pkg) + } + }) + }) + const result = { + components: maxScore >= 15 ? mostRelevantComponents : [], + score: maxScore, + details: relevanceDetails, + } + + if (result.components && result.components.length > 0) { + return result.components.map((pkg) => pkg.name) + } + return [] +} + +const testTitles = [ + 'fix: usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize (#2628) ', + 'fix(dialog): 关闭按钮默认在底部,24px白色图标 (#2118) @irisSong', + 'feat(calendar): support renderBottomButton props (#2645) ', + '希望Dialog组件内置的确认以及取消按钮对异步自带loading或者可以手动设置loading #1202', + '[FR]: getSystemInfoSync 微信小程序从基础库 2.20.1 开始,本接口停止维护,需要兼容新老接口', +] + +// console.log('\n相关性分析结果:') +// testTitles.forEach((title) => { +// console.log('\n标题:', title) +// const result = findMostRelevantComponents(title) +// console.log(`相关组件: ${result})}`) +// console.log(`相关性得分: ${result.score}`) +// console.log('详细信息:', result.details) +// }) diff --git a/scripts/generate-changelog.js b/scripts/generate-changelog.js index 6658292526..7f9ddb2874 100644 --- a/scripts/generate-changelog.js +++ b/scripts/generate-changelog.js @@ -1,12 +1,15 @@ -const fs = require('fs-extra'); -const path = require('path'); -const changelog = fs.readFileSync(path.join(__dirname, '../CHANGELOG.md'), 'utf8'); +const fs = require('fs-extra') +const path = require('path') +const changelog = fs.readFileSync( + path.join(__dirname, '../CHANGELOG.md'), + 'utf8' +) const a = changelog.split('# v') console.log(a[1]) const getLatestRelease = (cl) => { const a = changelog.split('# v') - if(a.length === 0) return '' + if (a.length === 0) return '' return `# v${a[1]}` // const tag1 = cl.indexOf('#') @@ -18,8 +21,8 @@ const getLatestRelease = (cl) => { // } // return '' } -let res = getLatestRelease(changelog); +let res = getLatestRelease(changelog) if (res) { res += `\n> [CHANGELOG](https://github.com/jdf2e/nutui-react/blob/next/CHANGELOG.md)\n` - fs.writeFileSync('.github/changelog.md', res); -} \ No newline at end of file + fs.writeFileSync('.github/changelog.md', res) +} diff --git a/scripts/generate-contribution.mjs b/scripts/generate-contribution.mjs new file mode 100644 index 0000000000..42f8a39a96 --- /dev/null +++ b/scripts/generate-contribution.mjs @@ -0,0 +1,174 @@ +/** + * description: 生成Contribution数据 + * + * 使用说明: + * 1. 在 GitHub 设置中生成 Personal Access Token: + * - 访问 https://github.com/settings/tokens + * - 选择 "Generate new token (classic)" + * - 勾选 "repo" 权限 + * - 生成并复制 token + * 2. 执行命令:export GITHUB_TOKEN=your_token && node scripts/generate-contribution.mjs + */ +import axios from 'axios' +import * as fs from 'fs' +import * as path from 'path' +import { findMostRelevantComponents } from './analyze-title-relevance.mjs' +import { fileURLToPath } from 'url' +import { dirname } from 'path' +import config from '../src/config.json' assert { type: 'json' } +const __filename = fileURLToPath(import.meta.url) +const __dirname = dirname(__filename) + +const GITHUB_API = { + BASE_URL: 'https://api.github.com/repos/jdf2e/nutui-react', + REPO_URL: 'https://github.com/jdf2e/nutui-react/', + HEADERS: { + Accept: 'application/vnd.github.v3+json', + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + }, +} +console.log(`Bearer ${process.env.GITHUB_TOKEN}`) +const headers = GITHUB_API.HEADERS +const coms = config.nav + .map((i) => i.packages) + .flat(Infinity) + .filter((i) => i.show) + +async function generateContribution(componentName) { + try { + const issuesResponse = await axios.get( + 'https://api.github.com/repos/jdf2e/nutui-react/issues', + { + params: { + state: 'closed', + sort: 'updated', + direction: 'desc', + per_page: 1000, + is: 'issue', + }, + headers, + } + ) + + const issues = issuesResponse.data + .filter( + (issue) => + !issue.pull_request && + findMostRelevantComponents(issue.title).includes(componentName) + ) + .slice(0, 5) + .map((issue) => ({ + title: issue.title, + url: issue.html_url, + number: issue.number, + })) + + const releasesResponse = await axios.get( + 'https://api.github.com/repos/jdf2e/nutui-react/releases', + { + params: { + per_page: 100, + }, + headers, + } + ) + + const releases = releasesResponse.data + .reduce((acc, release) => { + const buttonUpdates = release.body + .split('\n') + .filter((line) => { + return findMostRelevantComponents(line).includes(componentName) + }) + .map((line) => { + let processedLine = line.replace(/^[*\s-]*/, '').replace(':art') + let type = 'others' + if (processedLine.includes(':bug:')) { + type = 'fix' + processedLine = processedLine.replace(':bug:', '') + } + if (processedLine.includes(':sparkles:')) { + type = 'feat' + processedLine = processedLine.replace(':sparkles:', '') + } + + const symbols = { + feat: '✨ ', + fix: '🐛 ', + docs: '📖 ', + style: '🎨 ', + perf: '⚡️ ', + others: '💡 ', + } + + let processedContent = processedLine + .trim() + .replace(/^(feat|fix|docs|style|perf):\s*/, '') + + const prMatch = processedContent.match(/#(\d+)/) + if (prMatch) { + const prNumber = prMatch[1] + processedContent = processedContent.replace( + `#${prNumber}`, + `[#${prNumber}](https://github.com/jdf2e/nutui-react/pull/${prNumber})` + ) + } + + // 检查是否已经包含表情符号 + const hasEmoji = /[\u{1F300}-\u{1F9FF}\u{2600}-\u{26FF}\u{2700}-\u{27BF}]/u.test(processedContent) + + return { + version: release.tag_name, + type, + content: hasEmoji ? processedContent : `${symbols[type]}${processedContent}`, + rawContent: processedContent, + tagName: release.tag_name, + } + }) + return [...acc, ...buttonUpdates] + }, []) + .slice(0, 5) + + // 生成结构化数据 + const contributionData = { + issues: { + [componentName]: issues, + }, + logs: { + [componentName]: releases, + }, + } + + return contributionData + } catch (error) { + console.error(error.message) + } +} + +Promise.all(coms.map((i) => generateContribution(i.name))) + .then((results) => { + const allContributions = results.reduce( + (acc, curr, index) => { + if (curr) { + const componentName = coms[index].name + acc.issues[componentName] = curr.issues[componentName] + acc.logs[componentName] = curr.logs[componentName] + } + return acc + }, + { issues: {}, logs: {} } + ) + + // 将数据写入到 JSON 文件 + const outputPath = path.resolve( + __dirname, + '../src/sites/sites-react/doc/components/contribution/contribution.json' + ) + fs.writeFileSync( + outputPath, + JSON.stringify(allContributions, null, 2), + 'utf8' + ) + console.log('已成功写入到:', outputPath) + }) + .catch((error) => console.error('获取贡献数据失败:', error)) diff --git a/src/packages/actionsheet/doc.en-US.md b/src/packages/actionsheet/doc.en-US.md index edbaa827da..8eb4c2b979 100644 --- a/src/packages/actionsheet/doc.en-US.md +++ b/src/packages/actionsheet/doc.en-US.md @@ -89,3 +89,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-actionsheet-item-line-height | item line height | `24px` | | \--nutui-actionsheet-item-color | item color | `$color-title` | | \--nutui-actionsheet-item-danger | item danger color | `$color-primary` | + + diff --git a/src/packages/actionsheet/doc.md b/src/packages/actionsheet/doc.md index 373e7e2def..2c2a93bc21 100644 --- a/src/packages/actionsheet/doc.md +++ b/src/packages/actionsheet/doc.md @@ -98,3 +98,5 @@ import { ActionSheet } from '@nutui/nutui-react' | \--nutui-actionsheet-item-line-height | 列表项行高 | `24px` | | \--nutui-actionsheet-item-color | 列表项字色 | `$color-title` | | \--nutui-actionsheet-item-danger | 列表项danger字色 | `$color-primary` | + + diff --git a/src/packages/actionsheet/doc.taro.md b/src/packages/actionsheet/doc.taro.md index 51bae8f217..b5acfb6c27 100644 --- a/src/packages/actionsheet/doc.taro.md +++ b/src/packages/actionsheet/doc.taro.md @@ -98,3 +98,5 @@ import { ActionSheet } from '@nutui/nutui-react-taro' | \--nutui-actionsheet-item-line-height | 列表项行高 | `24px` | | \--nutui-actionsheet-item-color | 列表项字色 | `$color-title` | | \--nutui-actionsheet-item-danger | 列表项danger字色 | `$color-primary` | + + diff --git a/src/packages/actionsheet/doc.zh-TW.md b/src/packages/actionsheet/doc.zh-TW.md index 1596cf9916..292f95a97c 100644 --- a/src/packages/actionsheet/doc.zh-TW.md +++ b/src/packages/actionsheet/doc.zh-TW.md @@ -98,3 +98,5 @@ import { ActionSheet } from '@nutui/nutui-react' | \--nutui-actionsheet-item-line-height | 列錶項行高 | `24px` | | \--nutui-actionsheet-item-color | 列錶項字色 | `$color-title` | | \--nutui-actionsheet-item-danger | 列錶項danger字色 | `$color-primary` | + + diff --git a/src/packages/address/doc.en-US.md b/src/packages/address/doc.en-US.md index 341987dd05..9f8e235685 100644 --- a/src/packages/address/doc.en-US.md +++ b/src/packages/address/doc.en-US.md @@ -87,3 +87,5 @@ You can get the Address instance and call instance methods through ref. | close | Close address selection | `-` | More properties in Cascader. + + diff --git a/src/packages/address/doc.md b/src/packages/address/doc.md index f85135541d..46066dfd34 100644 --- a/src/packages/address/doc.md +++ b/src/packages/address/doc.md @@ -89,3 +89,5 @@ import { Address } from '@nutui/nutui-react' | close | 关闭地址选择 | `-` | 更多参数可参考 `Cascader` 组件。 + + diff --git a/src/packages/address/doc.taro.md b/src/packages/address/doc.taro.md index 507b2f549a..4ed4987c09 100644 --- a/src/packages/address/doc.taro.md +++ b/src/packages/address/doc.taro.md @@ -89,3 +89,5 @@ import { Address } from '@nutui/nutui-react-taro' | close | 关闭地址选择 | `-` | 更多参数可参考 `Cascader` 组件。 + + diff --git a/src/packages/address/doc.zh-TW.md b/src/packages/address/doc.zh-TW.md index 21542b220a..0559366db6 100644 --- a/src/packages/address/doc.zh-TW.md +++ b/src/packages/address/doc.zh-TW.md @@ -81,3 +81,5 @@ import { Address } from '@nutui/nutui-react' | close | 關閉地址選擇 | `-` | 更多參數可參考 `Cascader` 組件。 + + diff --git a/src/packages/animate/doc.en-US.md b/src/packages/animate/doc.en-US.md index a3f0555acf..109187b24f 100644 --- a/src/packages/animate/doc.en-US.md +++ b/src/packages/animate/doc.en-US.md @@ -52,3 +52,5 @@ import { Animate } from '@nutui/nutui-react' | 9 | jump | jump,It is recommended that loop be true | | 10 | twinkle | twinkle,It is recommended that loop be true | | 11 | flicker | Polish button,It is recommended that loop be true | + + diff --git a/src/packages/animate/doc.md b/src/packages/animate/doc.md index 7107d246fe..9b825b96fa 100644 --- a/src/packages/animate/doc.md +++ b/src/packages/animate/doc.md @@ -52,3 +52,5 @@ import { Animate } from '@nutui/nutui-react' | 9 | jump | 跳跃,建议loop为true | | 10 | twinkle | 水波,建议loop为true | | 11 | flicker | 擦亮按钮,建议loop为true | + + diff --git a/src/packages/animate/doc.taro.md b/src/packages/animate/doc.taro.md index 0a39ff1bca..33b1cb7ff0 100644 --- a/src/packages/animate/doc.taro.md +++ b/src/packages/animate/doc.taro.md @@ -52,3 +52,5 @@ import { Animate } from '@nutui/nutui-react-taro' | 9 | jump | 跳跃,建议loop为true | | 10 | twinkle | 水波,建议loop为true | | 11 | flicker | 擦亮按钮,建议loop为true | + + diff --git a/src/packages/animate/doc.zh-TW.md b/src/packages/animate/doc.zh-TW.md index 502d311bbb..251f012fb8 100644 --- a/src/packages/animate/doc.zh-TW.md +++ b/src/packages/animate/doc.zh-TW.md @@ -52,3 +52,5 @@ import { Animate } from '@nutui/nutui-react' | 9 | jump | 跳躍,建議loop為true | | 10 | twinkle | 水波,建議loop為true | | 11 | flicker | 擦亮按鈕,建議loop為true | + + diff --git a/src/packages/animatingnumbers/doc.en-US.md b/src/packages/animatingnumbers/doc.en-US.md index f9fea38408..66eb9c3b58 100644 --- a/src/packages/animatingnumbers/doc.en-US.md +++ b/src/packages/animatingnumbers/doc.en-US.md @@ -54,3 +54,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-countup-bg-color | background color of item | `inherit` | | \--nutui-countup-color | color of item | `$color-title` | | \--nutui-countup-separator-color | The font color of the separator | `$color-title` | + + diff --git a/src/packages/animatingnumbers/doc.md b/src/packages/animatingnumbers/doc.md index 78c824a6dc..62acf87362 100644 --- a/src/packages/animatingnumbers/doc.md +++ b/src/packages/animatingnumbers/doc.md @@ -54,3 +54,5 @@ import { AnimatingNumbers } from '@nutui/nutui-react' | \--nutui-countup-bg-color | 每个数字块的背景色 | `inherit` | | \--nutui-countup-color | 每个数字块的字色 | `$color-title` | | \--nutui-countup-separator-color | 分隔符的字体颜色 | `$color-title` | + + diff --git a/src/packages/animatingnumbers/doc.taro.md b/src/packages/animatingnumbers/doc.taro.md index 13582470ea..004a1da940 100644 --- a/src/packages/animatingnumbers/doc.taro.md +++ b/src/packages/animatingnumbers/doc.taro.md @@ -54,3 +54,5 @@ import { AnimatingNumbers } from '@nutui/nutui-react-taro' | \--nutui-countup-bg-color | 每个数字块的背景色 | `inherit` | | \--nutui-countup-color | 每个数字块的字色 | `$color-title` | | \--nutui-countup-separator-color | 分隔符的字体颜色 | `$color-title` | + + diff --git a/src/packages/animatingnumbers/doc.zh-TW.md b/src/packages/animatingnumbers/doc.zh-TW.md index 7c7a85f486..49a70329e6 100644 --- a/src/packages/animatingnumbers/doc.zh-TW.md +++ b/src/packages/animatingnumbers/doc.zh-TW.md @@ -54,3 +54,5 @@ import { AnimatingNumbers } from '@nutui/nutui-react' | \--nutui-countup-bg-color | 每個數字塊的背景色 | `inherit` | | \--nutui-countup-color | 每個數字塊的字色 | `$color-title` | | \--nutui-countup-separator-color | 分隔符的字體顏色 | `$color-title` | + + diff --git a/src/packages/audio/doc.en-US.md b/src/packages/audio/doc.en-US.md index ae8092b718..3cf36d0b7a 100644 --- a/src/packages/audio/doc.en-US.md +++ b/src/packages/audio/doc.en-US.md @@ -60,3 +60,5 @@ import { Audio } from '@nutui/nutui-react' | onEnd | The voice playback is complete, loop=false takes effect | `(event:SyntheticEvent) => void` | `-` | | onMute | Mute | `(event:HTMLAudioElement) => void` | `-` | | onCanPlay | Can be triggered when the media can be played | `(event:SyntheticEvent) => void` | `-` | + + diff --git a/src/packages/audio/doc.md b/src/packages/audio/doc.md index 99db0ed528..f0be3b5b10 100644 --- a/src/packages/audio/doc.md +++ b/src/packages/audio/doc.md @@ -60,3 +60,5 @@ import { Audio } from '@nutui/nutui-react' | onEnd | 语音播放完成,loop = false 时生效 | `(event:SyntheticEvent) => void` | `-` | | onMute | 静音回调 | `(event:HTMLAudioElement) => void` | `-` | | onCanPlay | 可以播放媒体时触发 | `(event:SyntheticEvent) => void` | `-` | + + diff --git a/src/packages/audio/doc.taro.md b/src/packages/audio/doc.taro.md index 17eb0330e6..e7f29fb17d 100644 --- a/src/packages/audio/doc.taro.md +++ b/src/packages/audio/doc.taro.md @@ -160,3 +160,5 @@ export default App | onPlayEnd | 语音播放完成,loop=false时生效 | event:HTMLAudioElement | | onMute | 静音回调 | event:HTMLAudioElement | | onCanPlay | 可以播放媒体时触发 | event:HTMLAudioElement | + + diff --git a/src/packages/audio/doc.zh-TW.md b/src/packages/audio/doc.zh-TW.md index cf409e9677..c22de5371e 100644 --- a/src/packages/audio/doc.zh-TW.md +++ b/src/packages/audio/doc.zh-TW.md @@ -60,3 +60,5 @@ import { Audio } from '@nutui/nutui-react' | onEnd | 語音播放完成,loop = false 時生效 | `(event:HTMLAudioElement) => void` | `-` | | onMute | 靜音回調 | `(event:HTMLAudioElement) => void` | `-` | | onCanPlay | 可以播放媒體時觸發 | `(event:HTMLAudioElement) => void` | `-` | + + diff --git a/src/packages/avatar/doc.en-US.md b/src/packages/avatar/doc.en-US.md index 74176a209a..22fd80d518 100644 --- a/src/packages/avatar/doc.en-US.md +++ b/src/packages/avatar/doc.en-US.md @@ -137,3 +137,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-avatar-small-height | The height of small avatars | `32px` | | \--nutui-avatar-normal-width | The width of a normal size avatar | `40px` | | \--nutui-avatar-normal-height | Height of normal size avatar | `40px` | + + diff --git a/src/packages/avatar/doc.md b/src/packages/avatar/doc.md index 3e3093fd1f..78b382731f 100644 --- a/src/packages/avatar/doc.md +++ b/src/packages/avatar/doc.md @@ -137,3 +137,5 @@ Icon 和字符型可以自定义图标颜色及背景色 | \--nutui-avatar-small-height | 小尺寸头像的高度 | `32px` | | \--nutui-avatar-normal-width | 正常尺寸头像的宽度 | `40px` | | \--nutui-avatar-normal-height | 正常尺寸头像的高度 | `40px` | + + diff --git a/src/packages/avatar/doc.taro.md b/src/packages/avatar/doc.taro.md index 609afc3d7a..fcedf5380e 100644 --- a/src/packages/avatar/doc.taro.md +++ b/src/packages/avatar/doc.taro.md @@ -135,3 +135,5 @@ Icon 和字符型可以自定义图标颜色及背景色 | \--nutui-avatar-small-height | 小尺寸头像的高度 | `32px` | | \--nutui-avatar-normal-width | 正常尺寸头像的宽度 | `40px` | | \--nutui-avatar-normal-height | 正常尺寸头像的高度 | `40px` | + + diff --git a/src/packages/avatar/doc.zh-TW.md b/src/packages/avatar/doc.zh-TW.md index 061890cb27..5028798ec5 100644 --- a/src/packages/avatar/doc.zh-TW.md +++ b/src/packages/avatar/doc.zh-TW.md @@ -137,3 +137,5 @@ Icon 和字符型可以自定義圖標顏色及背景色 | \--nutui-avatar-small-height | 小尺寸頭像的高度 | `32px` | | \--nutui-avatar-normal-width | 正常尺寸頭像的寬度 | `40px` | | \--nutui-avatar-normal-height | 正常尺寸頭像的高度 | `40px` | + + diff --git a/src/packages/avatarcropper/doc.en-US.md b/src/packages/avatarcropper/doc.en-US.md index ecc8dda885..9b21fe80bd 100644 --- a/src/packages/avatarcropper/doc.en-US.md +++ b/src/packages/avatarcropper/doc.en-US.md @@ -56,3 +56,5 @@ Set the shape of the crop display, which is still square after the crop, and nee | shape | Crop shape, optional value is:`square` `round` | `string` | `square` | | onConfirm | Click Confirm to trigger after cropping | `(url: string) => void` | `-` | | onCancel | Click cancel trigger | `-` | `-` | + + diff --git a/src/packages/avatarcropper/doc.md b/src/packages/avatarcropper/doc.md index dfe75a6cb1..a5b34b429b 100644 --- a/src/packages/avatarcropper/doc.md +++ b/src/packages/avatarcropper/doc.md @@ -54,3 +54,5 @@ import { AvatarCropper } from '@nutui/nutui-react' | shape | 裁剪形状,可选值为:`square` `round` | `string` | `square` | | onConfirm | 裁剪后点击确认触发 | `(url: string) => void` | `-` | | onCancel | 点击取消触发 | `-` | `-` | + + diff --git a/src/packages/avatarcropper/doc.taro.md b/src/packages/avatarcropper/doc.taro.md index 9358f84786..2ca4785593 100644 --- a/src/packages/avatarcropper/doc.taro.md +++ b/src/packages/avatarcropper/doc.taro.md @@ -56,3 +56,5 @@ import { AvatarCropper } from '@nutui/nutui-react-taro' | shape | 裁剪形状,可选值为:`square` `round` | `string` | `square` | | onConfirm | 裁剪后点击确认触发 | `(url: string) => void` | `-` | | onCancel | 点击取消触发 | `-` | `-` | + + diff --git a/src/packages/avatarcropper/doc.zh-TW.md b/src/packages/avatarcropper/doc.zh-TW.md index 042d883b75..4f8aadf0e9 100644 --- a/src/packages/avatarcropper/doc.zh-TW.md +++ b/src/packages/avatarcropper/doc.zh-TW.md @@ -54,3 +54,5 @@ import { AvatarCropper } from '@nutui/nutui-react' | shape | 裁剪形狀,可選值爲:`square` `round` | `string` | `square` | | onConfirm | 裁剪後點擊確認觸發 | `(url: string) => void` | `-` | | onCancel | 點擊取消觸發 | `-` | `-` | + + diff --git a/src/packages/backtop/doc.en-US.md b/src/packages/backtop/doc.en-US.md index d0e145fd43..2ce809a38a 100644 --- a/src/packages/backtop/doc.en-US.md +++ b/src/packages/backtop/doc.en-US.md @@ -82,3 +82,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default | | --- | --- | --- | | \--nutui-backtop-border-color | border color | `#e0e0e0` | + + diff --git a/src/packages/backtop/doc.md b/src/packages/backtop/doc.md index 4e653248f9..9a4a758c83 100644 --- a/src/packages/backtop/doc.md +++ b/src/packages/backtop/doc.md @@ -71,3 +71,5 @@ import { BackTop } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-backtop-border-color | 边框颜色 | `#e0e0e0` | + + diff --git a/src/packages/backtop/doc.taro.md b/src/packages/backtop/doc.taro.md index bfa5ecd0ea..d203d4256f 100644 --- a/src/packages/backtop/doc.taro.md +++ b/src/packages/backtop/doc.taro.md @@ -73,3 +73,5 @@ import { BackTop } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-backtop-border-color | 边框颜色 | `#e0e0e0` | + + diff --git a/src/packages/backtop/doc.zh-TW.md b/src/packages/backtop/doc.zh-TW.md index 2ba44a46d8..644bf658e2 100644 --- a/src/packages/backtop/doc.zh-TW.md +++ b/src/packages/backtop/doc.zh-TW.md @@ -82,3 +82,5 @@ import { BackTop } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-backtop-border-color | 邊框顏色 | `#e0e0e0` | + + diff --git a/src/packages/badge/doc.en-US.md b/src/packages/badge/doc.en-US.md index ca72b96ac2..c999d87faf 100644 --- a/src/packages/badge/doc.en-US.md +++ b/src/packages/badge/doc.en-US.md @@ -115,3 +115,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-badge-dot-border | The border when the badge is a dot | `1px solid $color-primary-text` | | \--nutui-badge-outline-color | The border when badge is outline text color value | `$color-primary` | | \--nutui-badge-outline-border | The border when badge is outline fill mode | `1px solid $color-primary-text` | + + diff --git a/src/packages/badge/doc.md b/src/packages/badge/doc.md index 17d94c954c..92936706da 100644 --- a/src/packages/badge/doc.md +++ b/src/packages/badge/doc.md @@ -114,3 +114,5 @@ import { Badge } from '@nutui/nutui-react' | \--nutui-badge-dot-border | badge 为圆点时的边框 | `1px solid $color-primary-text` | | \--nutui-badge-outline-color | badge 为 outline 文字色值 | `$color-primary` | | \--nutui-badge-outline-border | badge 为 outline 填充模式时的边框 | `1px solid $color-primary-text` | + + diff --git a/src/packages/badge/doc.taro.md b/src/packages/badge/doc.taro.md index c7aaed3911..1d8000b464 100644 --- a/src/packages/badge/doc.taro.md +++ b/src/packages/badge/doc.taro.md @@ -114,3 +114,5 @@ import { Badge } from '@nutui/nutui-react-taro' | \--nutui-badge-dot-border | badge 为圆点时的边框 | `1px solid $color-primary-text` | | \--nutui-badge-outline-color | badge 为 outline 文字色值 | `$color-primary` | | \--nutui-badge-outline-border | badge 为 outline 填充模式时的边框 | `1px solid $color-primary-text` | + + diff --git a/src/packages/badge/doc.zh-TW.md b/src/packages/badge/doc.zh-TW.md index 947d9ef103..e44280e994 100644 --- a/src/packages/badge/doc.zh-TW.md +++ b/src/packages/badge/doc.zh-TW.md @@ -114,3 +114,5 @@ import { Badge } from '@nutui/nutui-react' | \--nutui-badge-dot-border | badge 為圓點時的邊框 | `1px solid $color-primary-text` | | \--nutui-badge-outline-color | badge 為 outline 文字色值 | `$color-primary` | | \--nutui-badge-outline-border | badge 為 outline 填充模式時的邊框 | `1px solid $color-primary-text` | + + diff --git a/src/packages/barrage/doc.en-US.md b/src/packages/barrage/doc.en-US.md index 2ef1708b7f..a1b2a40c1b 100644 --- a/src/packages/barrage/doc.en-US.md +++ b/src/packages/barrage/doc.en-US.md @@ -36,3 +36,5 @@ import { Barrage } from '@nutui/nutui-react' | Event | Description | Arguments | | --- | --- | --- | | add | Add data | `(word: string) => void` | + + diff --git a/src/packages/barrage/doc.md b/src/packages/barrage/doc.md index 836e05117a..494d176c37 100644 --- a/src/packages/barrage/doc.md +++ b/src/packages/barrage/doc.md @@ -36,3 +36,5 @@ import { Barrage } from '@nutui/nutui-react' | 属性 | 说明 | 类型 | | --- | --- | --- | | add | 添加数据 | `(word: string) => void` | + + diff --git a/src/packages/barrage/doc.taro.md b/src/packages/barrage/doc.taro.md index 0680f9013d..6fd3c40aea 100644 --- a/src/packages/barrage/doc.taro.md +++ b/src/packages/barrage/doc.taro.md @@ -36,3 +36,5 @@ import { Barrage } from '@nutui/nutui-react-taro' | 属性 | 说明 | 类型 | | --- | --- | --- | | add | 添加数据 | `(word: string) => void` | + + diff --git a/src/packages/barrage/doc.zh-TW.md b/src/packages/barrage/doc.zh-TW.md index 5d53232bc0..78ba7e4d2c 100644 --- a/src/packages/barrage/doc.zh-TW.md +++ b/src/packages/barrage/doc.zh-TW.md @@ -36,3 +36,5 @@ import { Barrage } from '@nutui/nutui-react' | 屬性 | 說明 | 類型 | | --- | --- | --- | | add | 添加數據 | `(word: string) => void` | + + diff --git a/src/packages/button/doc.en-US.md b/src/packages/button/doc.en-US.md index 5228a54ed1..54f98dfc4e 100644 --- a/src/packages/button/doc.en-US.md +++ b/src/packages/button/doc.en-US.md @@ -148,3 +148,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-button-mini-font-size | The font size of the button with size mini | `$font-size-xs` | | \--nutui-button-mini-border-radius | The rounded corners of the button with size mini | `6px` | | \--nutui-button-text-icon-margin | Margin of text with icon button | `4px` | + + diff --git a/src/packages/button/doc.md b/src/packages/button/doc.md index 8593e5cc01..708c46e39e 100644 --- a/src/packages/button/doc.md +++ b/src/packages/button/doc.md @@ -147,3 +147,5 @@ import { Button } from '@nutui/nutui-react' | \--nutui-button-mini-font-size | size 为 mini 的按钮的字号 | `$font-size-xs` | | \--nutui-button-mini-border-radius | size 为 mini 的按钮的圆角 | `6px` | | \--nutui-button-text-icon-margin | 带 icon按钮的文本的边距 | `4px` | + + diff --git a/src/packages/button/doc.taro.md b/src/packages/button/doc.taro.md index bb6bd7603a..23c5598269 100644 --- a/src/packages/button/doc.taro.md +++ b/src/packages/button/doc.taro.md @@ -160,3 +160,5 @@ import { Button } from '@nutui/nutui-react-taro' | \--nutui-button-mini-font-size | size 为 mini 的按钮的字号 | `$font-size-xs` | | \--nutui-button-mini-border-radius | size 为 mini 的按钮的圆角 | `6px` | | \--nutui-button-text-icon-margin | 带 icon按钮的文本的边距 | `4px` | + + diff --git a/src/packages/button/doc.zh-TW.md b/src/packages/button/doc.zh-TW.md index 72226ca296..a3e039b083 100644 --- a/src/packages/button/doc.zh-TW.md +++ b/src/packages/button/doc.zh-TW.md @@ -148,3 +148,5 @@ import { Button } from '@nutui/nutui-react' | \--nutui-button-mini-font-size | size 為 mini 的按鈕的字號 | `$font-size-xs` | | \--nutui-button-mini-border-radius | size 為 mini 的按鈕的圓角 | `6px` | | \--nutui-button-text-icon-margin | 有 icon按鈕的文字的邊距 | `4px` | + + diff --git a/src/packages/calendar/doc.en-US.md b/src/packages/calendar/doc.en-US.md index 9cb7d7da14..5e67de3260 100644 --- a/src/packages/calendar/doc.en-US.md +++ b/src/packages/calendar/doc.en-US.md @@ -170,3 +170,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-calendar-day-height | calendar day height | `60px` | | \--nutui-calendar-day-font-weight | calendar day font weight | `500` | | \--nutui-calendar-day-active-border-radius | calendar day active border radius | `4px` | + + diff --git a/src/packages/calendar/doc.md b/src/packages/calendar/doc.md index 11a21c7a8b..74de01f4ca 100644 --- a/src/packages/calendar/doc.md +++ b/src/packages/calendar/doc.md @@ -170,3 +170,5 @@ import { Calendar } from '@nutui/nutui-react' | \--nutui-calendar-day-height | 日历元素高度 | `60px` | | \--nutui-calendar-day-font-weight | 日历元素字重 | `500` | | \--nutui-calendar-day-active-border-radius | 日历选中元素的圆角 | `4px` | + + diff --git a/src/packages/calendar/doc.taro.md b/src/packages/calendar/doc.taro.md index 89419851a8..3c45d68137 100644 --- a/src/packages/calendar/doc.taro.md +++ b/src/packages/calendar/doc.taro.md @@ -170,3 +170,5 @@ import { Calendar } from '@nutui/nutui-react-taro' | \--nutui-calendar-day-height | 日历元素高度 | `60px` | | \--nutui-calendar-day-font-weight | 日历元素字重 | `500` | | \--nutui-calendar-day-active-border-radius | 日历选中元素的圆角 | `4px` | + + diff --git a/src/packages/calendar/doc.zh-TW.md b/src/packages/calendar/doc.zh-TW.md index ec5d1e69eb..f20703ae78 100644 --- a/src/packages/calendar/doc.zh-TW.md +++ b/src/packages/calendar/doc.zh-TW.md @@ -170,3 +170,5 @@ import { Calendar } from '@nutui/nutui-react' | \--nutui-calendar-day-height | 日歴元素高度 | `60px` | | \--nutui-calendar-day-font-weight | 日歴元素字重 | `500` | | \--nutui-calendar-day-active-border-radius | 日歴選中元素的圓角 | `4px` | + + diff --git a/src/packages/calendarcard/doc.en-US.md b/src/packages/calendarcard/doc.en-US.md index cc000fc06d..c6a9ebeda4 100644 --- a/src/packages/calendarcard/doc.en-US.md +++ b/src/packages/calendarcard/doc.en-US.md @@ -151,3 +151,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-calendar-day-width | calendar day width | `14.28%` | | \--nutui-calendar-choose-color | calendar choose color | `$color-primary` | | \--nutui-calendar-day-active-border-radius | calendar day active border radius | `4px` | + + diff --git a/src/packages/calendarcard/doc.md b/src/packages/calendarcard/doc.md index b6e03b5da8..c0aca21397 100644 --- a/src/packages/calendarcard/doc.md +++ b/src/packages/calendarcard/doc.md @@ -151,3 +151,5 @@ import { CalendarCard } from '@nutui/nutui-react' | \--nutui-calendar-day-width | 日历元素宽度 | `14.28%` | | \--nutui-calendar-choose-color | 日历选中元素的字色 | `$color-primary` | | \--nutui-calendar-day-active-border-radius | 日历选中元素的圆角 | `4px` | + + diff --git a/src/packages/calendarcard/doc.taro.md b/src/packages/calendarcard/doc.taro.md index c5bce80cdc..93daf38c00 100644 --- a/src/packages/calendarcard/doc.taro.md +++ b/src/packages/calendarcard/doc.taro.md @@ -151,3 +151,5 @@ import { CalendarCard } from '@nutui/nutui-react-taro' | \--nutui-calendar-day-width | 日历元素宽度 | `14.28%` | | \--nutui-calendar-choose-color | 日历选中元素的字色 | `$color-primary` | | \--nutui-calendar-day-active-border-radius | 日历选中元素的圆角 | `4px` | + + diff --git a/src/packages/calendarcard/doc.zh-TW.md b/src/packages/calendarcard/doc.zh-TW.md index cd92f9bbb4..b73e97ce3c 100644 --- a/src/packages/calendarcard/doc.zh-TW.md +++ b/src/packages/calendarcard/doc.zh-TW.md @@ -151,3 +151,5 @@ import { CalendarCard } from '@nutui/nutui-react' | \--nutui-calendar-day-width | 日歷元素寬度 | `14.28%` | | \--nutui-calendar-choose-color | 日歷選中元素的字色 | `$color-primary` | | \--nutui-calendar-day-active-border-radius | 日歷選中元素的圓角 | `4px` | + + diff --git a/src/packages/card/doc.en-US.md b/src/packages/card/doc.en-US.md index 1873c10066..aa78f37ea1 100644 --- a/src/packages/card/doc.en-US.md +++ b/src/packages/card/doc.en-US.md @@ -85,3 +85,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default | | --- | --- | --- | | \--nutui-card-border-radius | The size of the rounded corners of the card picture and card | `4px` | + + diff --git a/src/packages/card/doc.md b/src/packages/card/doc.md index bfe16e4830..d9c08f8744 100644 --- a/src/packages/card/doc.md +++ b/src/packages/card/doc.md @@ -85,3 +85,5 @@ import { Card } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-card-border-radius | 卡片、图片的圆角大小 | `4px` | + + diff --git a/src/packages/card/doc.taro.md b/src/packages/card/doc.taro.md index b8939972b6..d759136455 100644 --- a/src/packages/card/doc.taro.md +++ b/src/packages/card/doc.taro.md @@ -85,3 +85,5 @@ import { Card } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-card-border-radius | 卡片、图片的圆角大小 | `4px` | + + diff --git a/src/packages/card/doc.zh-TW.md b/src/packages/card/doc.zh-TW.md index 4d7e470820..c13813c2b1 100644 --- a/src/packages/card/doc.zh-TW.md +++ b/src/packages/card/doc.zh-TW.md @@ -85,3 +85,5 @@ import { Card } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-card-border-radius | 卡片、圖片的圓角大小 | `4px` | + + diff --git a/src/packages/cascader/doc.en-US.md b/src/packages/cascader/doc.en-US.md index e382f5d190..3f7fe48bf9 100644 --- a/src/packages/cascader/doc.en-US.md +++ b/src/packages/cascader/doc.en-US.md @@ -117,3 +117,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-cascader-item-color | cascader item color | `$color-title` | | \--nutui-cascader-item-font-size | cascader item font size | `$font-size-base` | | \--nutui-cascader-item-active-color | cascader item active color | `$color-primary` | + + diff --git a/src/packages/cascader/doc.md b/src/packages/cascader/doc.md index 8758db7ea1..ec42cf0a68 100644 --- a/src/packages/cascader/doc.md +++ b/src/packages/cascader/doc.md @@ -117,3 +117,5 @@ import { Cascader } from '@nutui/nutui-react' | \--nutui-cascader-item-color | 级联数据每一条的色值 | `$color-title` | | \--nutui-cascader-item-font-size | 级联数据每一条的字号 | `$font-size-base` | | \--nutui-cascader-item-active-color | 级联数据每一条的选中色值 | `$color-primary` | + + diff --git a/src/packages/cascader/doc.taro.md b/src/packages/cascader/doc.taro.md index 3d729965ff..91a6ca8b0c 100644 --- a/src/packages/cascader/doc.taro.md +++ b/src/packages/cascader/doc.taro.md @@ -117,3 +117,5 @@ import { Cascader } from '@nutui/nutui-react-taro' | \--nutui-cascader-item-color | 级联数据每一条的色值 | `$color-title` | | \--nutui-cascader-item-font-size | 级联数据每一条的字号 | `$font-size-base` | | \--nutui-cascader-item-active-color | 级联数据每一条的选中色值 | `$color-primary` | + + diff --git a/src/packages/cascader/doc.zh-TW.md b/src/packages/cascader/doc.zh-TW.md index 7ac7f7104f..883b998077 100644 --- a/src/packages/cascader/doc.zh-TW.md +++ b/src/packages/cascader/doc.zh-TW.md @@ -117,3 +117,5 @@ import { Cascader } from '@nutui/nutui-react' | \--nutui-cascader-item-color | 級聯數據每一條的色值 | `$color-title` | | \--nutui-cascader-item-font-size | 級聯數據每一條的字號 | `$font-size-base` | | \--nutui-cascader-item-active-color | 級聯數據每一條的選中色值 | `$color-primary` | + + diff --git a/src/packages/cell/doc.en-US.md b/src/packages/cell/doc.en-US.md index 65711adaa1..e8d254a409 100644 --- a/src/packages/cell/doc.en-US.md +++ b/src/packages/cell/doc.en-US.md @@ -126,3 +126,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-cell-group-description-line-height | The description row height of cell group | `16px` | | \--nutui-cell-group-background-color | The background color of the cell group | `$white` | | \--nutui-cell-group-wrap-margin | The margin of the cell group wrap | `10px` | + + diff --git a/src/packages/cell/doc.md b/src/packages/cell/doc.md index 16f162eb49..48b9609734 100644 --- a/src/packages/cell/doc.md +++ b/src/packages/cell/doc.md @@ -128,3 +128,5 @@ import { Cell } from '@nutui/nutui-react' | \--nutui-cell-group-description-line-height | 单元格分组的描述行高 | `16px` | | \--nutui-cell-group-background-color | 单元格分组的背景颜色 | `$white` | | \--nutui-cell-group-wrap-margin | 单元格分组容器的外边距 | `10px` | + + diff --git a/src/packages/cell/doc.taro.md b/src/packages/cell/doc.taro.md index 84f320c97a..ec6de1b881 100644 --- a/src/packages/cell/doc.taro.md +++ b/src/packages/cell/doc.taro.md @@ -127,3 +127,5 @@ import { Cell } from '@nutui/nutui-react-taro' | \--nutui-cell-group-description-line-height | 单元格分组的描述行高 | `16px` | | \--nutui-cell-group-background-color | 单元格分组的背景颜色 | `$white` | | \--nutui-cell-group-wrap-margin | 单元格分组容器的外边距 | `10px` | + + diff --git a/src/packages/cell/doc.zh-TW.md b/src/packages/cell/doc.zh-TW.md index 4ffacb8d1a..f9bcf8f39e 100644 --- a/src/packages/cell/doc.zh-TW.md +++ b/src/packages/cell/doc.zh-TW.md @@ -128,3 +128,5 @@ import { Cell } from '@nutui/nutui-react' | \--nutui-cell-group-description-line-height | 單元格分組的描述行高 | `16px` | | \--nutui-cell-group-background-color | 單元格分組的背景顏色 | `$white` | | \--nutui-cell-group-wrap-margin | 單元格分組容器的外邊距 | `10px` | + + diff --git a/src/packages/checkbox/doc.en-US.md b/src/packages/checkbox/doc.en-US.md index 290d99808d..ff26535e68 100644 --- a/src/packages/checkbox/doc.en-US.md +++ b/src/packages/checkbox/doc.en-US.md @@ -196,3 +196,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-checkbox-list-item-border | List item border | `15px` | | \--nutui-checkbox-list-padding | list padding | `15px` | | \--nutui-checkbox-list-item-padding | padding of list items | `15px` | + + diff --git a/src/packages/checkbox/doc.md b/src/packages/checkbox/doc.md index 32c1053c8e..caa201e58f 100644 --- a/src/packages/checkbox/doc.md +++ b/src/packages/checkbox/doc.md @@ -198,3 +198,5 @@ import { Checkbox } from '@nutui/nutui-react' | \--nutui-checkbox-list-item-border | 列表项的边框 | `15px` | | \--nutui-checkbox-list-padding | 列表的padding | `15px` | | \--nutui-checkbox-list-item-padding | 列表项的padding | `15px` | + + diff --git a/src/packages/checkbox/doc.taro.md b/src/packages/checkbox/doc.taro.md index dd19914884..dc4dc0a066 100644 --- a/src/packages/checkbox/doc.taro.md +++ b/src/packages/checkbox/doc.taro.md @@ -198,3 +198,5 @@ import { Checkbox } from '@nutui/nutui-react-taro' | \--nutui-checkbox-list-item-border | 列表项的边框 | `15px` | | \--nutui-checkbox-list-padding | 列表的padding | `15px` | | \--nutui-checkbox-list-item-padding | 列表项的padding | `15px` | + + diff --git a/src/packages/checkbox/doc.zh-TW.md b/src/packages/checkbox/doc.zh-TW.md index bda025bcad..4718cb33a4 100644 --- a/src/packages/checkbox/doc.zh-TW.md +++ b/src/packages/checkbox/doc.zh-TW.md @@ -198,3 +198,5 @@ import { Checkbox } from '@nutui/nutui-react' | \--nutui-checkbox-list-item-border | 列表项的边框 | `15px` | | \--nutui-checkbox-list-padding | 列表的padding | `15px` | | \--nutui-checkbox-list-item-padding | 列表项的padding | `15px` | + + diff --git a/src/packages/circleprogress/doc.en-US.md b/src/packages/circleprogress/doc.en-US.md index d6d9981544..9bd6fc5059 100644 --- a/src/packages/circleprogress/doc.en-US.md +++ b/src/packages/circleprogress/doc.en-US.md @@ -84,3 +84,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-circleprogress-path-color | The color of the circular progress bar track | `#e5e9f2` | | \--nutui-circleprogress-text-color | The color of the track content area of ​​the circular progress bar | `$color-title` | | \--nutui-circleprogress-text-size | The size of the track content area of ​​the circular progress bar | `$font-size-l` | + + diff --git a/src/packages/circleprogress/doc.md b/src/packages/circleprogress/doc.md index 5832553f73..1b5300e205 100644 --- a/src/packages/circleprogress/doc.md +++ b/src/packages/circleprogress/doc.md @@ -84,3 +84,5 @@ import { CircleProgress } from '@nutui/nutui-react' | \--nutui-circleprogress-path-color | 环形进度条轨道的颜色 | `#e5e9f2` | | \--nutui-circleprogress-text-color | 环形进度条轨道内容区的颜色 | `$color-title` | | \--nutui-circleprogress-text-size | 环形进度条轨道内容区的大小 | `$font-size-l` | + + diff --git a/src/packages/circleprogress/doc.taro.md b/src/packages/circleprogress/doc.taro.md index 8a2b051285..e0ba827b5c 100644 --- a/src/packages/circleprogress/doc.taro.md +++ b/src/packages/circleprogress/doc.taro.md @@ -84,3 +84,5 @@ import { CircleProgress } from '@nutui/nutui-react-taro' | \--nutui-circleprogress-path-color | 环形进度条轨道的颜色 | `#e5e9f2` | | \--nutui-circleprogress-text-color | 环形进度条轨道内容区的颜色 | `$color-title` | | \--nutui-circleprogress-text-size | 环形进度条轨道内容区的大小 | `$font-size-l` | + + diff --git a/src/packages/circleprogress/doc.zh-TW.md b/src/packages/circleprogress/doc.zh-TW.md index cdb53cbf15..40fa5a39f5 100644 --- a/src/packages/circleprogress/doc.zh-TW.md +++ b/src/packages/circleprogress/doc.zh-TW.md @@ -84,3 +84,5 @@ import { CircleProgress } from '@nutui/nutui-react' | \--nutui-circleprogress-path-color | 環形進度條軌道的顏色 | `#e5e9f2` | | \--nutui-circleprogress-text-color | 環形進度條軌道內容區的顏色 | `$color-title` | | \--nutui-circleprogress-text-size | 環形進度條軌道內容區的大小 | `$font-size-l` | + + diff --git a/src/packages/collapse/doc.en-US.md b/src/packages/collapse/doc.en-US.md index cce867ac30..861b549c0d 100644 --- a/src/packages/collapse/doc.en-US.md +++ b/src/packages/collapse/doc.en-US.md @@ -113,3 +113,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-collapse-wrapper-content-font-size | content fontSize | `$font-size-base` | | \--nutui-collapse-wrapper-content-line-height | content lineHeight | `1.5` | | \--nutui-collapse-wrapper-content-padding | content padding | `12px 26px` | + + diff --git a/src/packages/collapse/doc.md b/src/packages/collapse/doc.md index 71894472f9..f0a72bd957 100644 --- a/src/packages/collapse/doc.md +++ b/src/packages/collapse/doc.md @@ -113,3 +113,5 @@ import { Collapse } from '@nutui/nutui-react' | \--nutui-collapse-wrapper-content-font-size | 内容字体大小 | `$font-size-base` | | \--nutui-collapse-wrapper-content-line-height | 内容行高 | `1.5` | | \--nutui-collapse-wrapper-content-padding | 内容内边距 | `12px 26px` | + + diff --git a/src/packages/collapse/doc.taro.md b/src/packages/collapse/doc.taro.md index 1e4f807f36..6e5ac677e7 100644 --- a/src/packages/collapse/doc.taro.md +++ b/src/packages/collapse/doc.taro.md @@ -113,3 +113,5 @@ import { Collapse } from '@nutui/nutui-react-taro' | \--nutui-collapse-wrapper-content-font-size | 内容字体大小 | `$font-size-base` | | \--nutui-collapse-wrapper-content-line-height | 内容行高 | `1.5` | | \--nutui-collapse-wrapper-content-padding | 内容内边距 | `12px 26px` | + + diff --git a/src/packages/collapse/doc.zh-TW.md b/src/packages/collapse/doc.zh-TW.md index 13be92a927..d9a0725d02 100644 --- a/src/packages/collapse/doc.zh-TW.md +++ b/src/packages/collapse/doc.zh-TW.md @@ -113,3 +113,5 @@ import { Collapse } from '@nutui/nutui-react' | \--nutui-collapse-wrapper-content-font-size | 內容字體大小 | `$font-size-base` | | \--nutui-collapse-wrapper-content-line-height | 內容行高 | `1.5` | | \--nutui-collapse-wrapper-content-padding | 內容內邊距 | `12px 26px` | + + diff --git a/src/packages/configprovider/doc.en-US.md b/src/packages/configprovider/doc.en-US.md index 91afea13a5..3495ba20d8 100644 --- a/src/packages/configprovider/doc.en-US.md +++ b/src/packages/configprovider/doc.en-US.md @@ -123,3 +123,5 @@ If you can't find the language pack you need, you are welcome to create a new la | --- | --- | --- | --- | | locale | set the language | `BaseLang` | `zhCN` | | theme | set the theme | `Record` | `-` | + + diff --git a/src/packages/configprovider/doc.md b/src/packages/configprovider/doc.md index ac92f3a18d..8b9159b4dc 100644 --- a/src/packages/configprovider/doc.md +++ b/src/packages/configprovider/doc.md @@ -123,3 +123,5 @@ NutUI-React 提供了 ConfigProvider 组件用于全局配置国际化文案。 | --- | --- | --- | --- | | locale | 设置多语言包 | `BaseLang` | `zhCN` | | theme | 设置主题 | `Record` | `-` | + + diff --git a/src/packages/configprovider/doc.taro.md b/src/packages/configprovider/doc.taro.md index e4b243fb5a..8b9223b399 100644 --- a/src/packages/configprovider/doc.taro.md +++ b/src/packages/configprovider/doc.taro.md @@ -123,3 +123,5 @@ NutUI-React 提供了 ConfigProvider 组件用于全局配置国际化文案。 | --- | --- | --- | --- | | locale | 设置多语言包 | `BaseLang` | `zhCN` | | theme | 设置主题 | `Record` | `-` | + + diff --git a/src/packages/configprovider/doc.zh-TW.md b/src/packages/configprovider/doc.zh-TW.md index 63de7efd33..3d988e07fc 100644 --- a/src/packages/configprovider/doc.zh-TW.md +++ b/src/packages/configprovider/doc.zh-TW.md @@ -123,3 +123,5 @@ NutUI-React 提供了 ConfigProvider 元件用於全域配置國際化文案。 | --- | --- | --- | --- | | locale | 設置多語言包 | `BaseLang` | zhCN | | theme | 設置主題 | `Record` | \- | + + diff --git a/src/packages/countdown/doc.en-US.md b/src/packages/countdown/doc.en-US.md index 433119dc17..d5550639d5 100644 --- a/src/packages/countdown/doc.en-US.md +++ b/src/packages/countdown/doc.en-US.md @@ -147,3 +147,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-countdown-number-primary-color | When type is `primary`, the text color of the countdown time area | `$color-primary-text` | | \--nutui-countdown-primary-background-color | When type is `primary`, the background color of the countdown time area | `$color-primary` | | \--nutui-countdown-primary-border-color | When type is `primary`, the border color of the countdown time area | `$color-primary` | + + diff --git a/src/packages/countdown/doc.md b/src/packages/countdown/doc.md index d26bfec589..956c29fc37 100644 --- a/src/packages/countdown/doc.md +++ b/src/packages/countdown/doc.md @@ -148,3 +148,5 @@ import { CountDown } from '@nutui/nutui-react' | \--nutui-countdown-number-primary-color | type为`primary`时,倒计时的时间区域的文字颜色 | `$color-primary-text` | | \--nutui-countdown-primary-background-color | type为`primary`时,倒计时的时间区域的背景颜色 | `$color-primary` | | \--nutui-countdown-primary-border-color | type为`primary`时,倒计时的时间区域的边框颜色颜色 | `$color-primary` | + + diff --git a/src/packages/countdown/doc.taro.md b/src/packages/countdown/doc.taro.md index 3b492caf8c..04e411323c 100644 --- a/src/packages/countdown/doc.taro.md +++ b/src/packages/countdown/doc.taro.md @@ -148,3 +148,5 @@ import { CountDown } from '@nutui/nutui-react-taro' | \--nutui-countdown-number-primary-color | type为`primary`时,倒计时的时间区域的文字颜色 | `$color-primary-text` | | \--nutui-countdown-primary-background-color | type为`primary`时,倒计时的时间区域的背景颜色 | `$color-primary` | | \--nutui-countdown-primary-border-color | type为`primary`时,倒计时的时间区域的边框颜色颜色 | `$color-primary` | + + diff --git a/src/packages/countdown/doc.zh-TW.md b/src/packages/countdown/doc.zh-TW.md index 458a9aef45..751c2630ec 100644 --- a/src/packages/countdown/doc.zh-TW.md +++ b/src/packages/countdown/doc.zh-TW.md @@ -148,3 +148,5 @@ import { CountDown } from '@nutui/nutui-react' | \--nutui-countdown-number-primary-color | type爲`primary`時,倒計時的時間區域的文字顏色 | `$color-primary-text` | | \--nutui-countdown-primary-background-color | type爲`primary`時,倒計時的時間區域的背景顏色 | `$color-primary` | | \--nutui-countdown-primary-border-color | type爲`primary`時,倒計時的時間區域的邊框顏色顏色 | `$color-primary` | + + diff --git a/src/packages/datepicker/doc.en-US.md b/src/packages/datepicker/doc.en-US.md index f330ddff9d..38e0f69405 100644 --- a/src/packages/datepicker/doc.en-US.md +++ b/src/packages/datepicker/doc.en-US.md @@ -95,3 +95,5 @@ import { DatePicker } from '@nutui/nutui' | onCancel | Emitted when click cancel button. | `() => void` | `-` | | onClose | Emitted when click confirm and cancel button. | `(options, value) => void` | `-` | | onChange | Emitted when current option changed. | `(options, value, index) => void` | `-` | + + diff --git a/src/packages/datepicker/doc.md b/src/packages/datepicker/doc.md index fff8fc49e5..577676f8d3 100644 --- a/src/packages/datepicker/doc.md +++ b/src/packages/datepicker/doc.md @@ -105,3 +105,5 @@ DatetimePicker 通过 type 属性来定义需要选择的时间类型。将 type | onCancel | 点击取消按钮时触发 | `() => void` | `-` | | onClose | 确定和取消时,都触发 | `(options, value) => void` | `-` | | onChange | 选项改变时触发 | `(options, value, index) => void` | `-` | + + diff --git a/src/packages/datepicker/doc.taro.md b/src/packages/datepicker/doc.taro.md index 8328b12d9c..48dd37d1fc 100644 --- a/src/packages/datepicker/doc.taro.md +++ b/src/packages/datepicker/doc.taro.md @@ -105,3 +105,5 @@ DatetimePicker 通过 type 属性来定义需要选择的时间类型。将 type | onCancel | 点击取消按钮时触发 | `() => void` | `-` | | onClose | 确定和取消时,都触发 | `(options, value) => void` | `-` | | onChange | 选项改变时触发 | `(options, value, index) => void` | `-` | + + diff --git a/src/packages/datepicker/doc.zh-TW.md b/src/packages/datepicker/doc.zh-TW.md index 21850c8ebe..1ae28308ca 100644 --- a/src/packages/datepicker/doc.zh-TW.md +++ b/src/packages/datepicker/doc.zh-TW.md @@ -105,3 +105,5 @@ DatetimePicker 通過 type 屬性來定義需要選擇的時間類型。將 type | onCancel | 點擊取消按鈕時觸發 | `() => void` | `-` | | onClose | 確定和取消時,都觸發 | `(options, value) => void` | `-` | | onChange | 選項改變時觸發 | `(options, value, index) => void` | `-` | + + diff --git a/src/packages/dialog/doc.en-US.md b/src/packages/dialog/doc.en-US.md index 975dc2e905..294af11b53 100644 --- a/src/packages/dialog/doc.en-US.md +++ b/src/packages/dialog/doc.en-US.md @@ -168,3 +168,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-dialog-close-top | dialog Closes the top value of the button | `16px` | | \--nutui-dialog-close-left | dialog Closes the left value of the button | `16px` | | \--nutui-dialog-close-right | dialog Closes the right value of the button | `16px` | + + diff --git a/src/packages/dialog/doc.md b/src/packages/dialog/doc.md index f338e1e8ee..e6ff41fcb4 100644 --- a/src/packages/dialog/doc.md +++ b/src/packages/dialog/doc.md @@ -168,3 +168,5 @@ export default function App() { | \--nutui-dialog-close-top | 对话框关闭按钮的top值 | `16px` | | \--nutui-dialog-close-left | 对话框关闭按钮的left值 | `16px` | | \--nutui-dialog-close-right | 对话框关闭按钮的right值 | `16px` | + + diff --git a/src/packages/dialog/doc.taro.md b/src/packages/dialog/doc.taro.md index fbc0fdc24a..05751c41aa 100644 --- a/src/packages/dialog/doc.taro.md +++ b/src/packages/dialog/doc.taro.md @@ -148,3 +148,5 @@ DialogOptions 是 DialogProps 的子集,包含如下属性:title, content, f | \--nutui-dialog-close-top | 对话框关闭按钮的top值 | `16px` | | \--nutui-dialog-close-left | 对话框关闭按钮的left值 | `16px` | | \--nutui-dialog-close-right | 对话框关闭按钮的right值 | `16px` | + + diff --git a/src/packages/dialog/doc.zh-TW.md b/src/packages/dialog/doc.zh-TW.md index c0e14354d5..737096168a 100644 --- a/src/packages/dialog/doc.zh-TW.md +++ b/src/packages/dialog/doc.zh-TW.md @@ -168,3 +168,5 @@ export default function App() { | \--nutui-dialog-close-top | 對話框關閉按鈕的top值 | `16px` | | \--nutui-dialog-close-left | 對話框關閉按鈕的left值 | `16px` | | \--nutui-dialog-close-right | 對話框關閉按鈕的right值 | `16px` | + + diff --git a/src/packages/divider/doc.en-US.md b/src/packages/divider/doc.en-US.md index df1ee5364b..1e4c03e735 100644 --- a/src/packages/divider/doc.en-US.md +++ b/src/packages/divider/doc.en-US.md @@ -91,3 +91,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-divider-spacing | The spacing value between the dividing line of the text | `8px` | | \--nutui-divider-vertical-height | The height of the vertical split line | `12px` | | \--nutui-divider-vertical-margin | The margin value of the vertical split line | `0 8px` | + + diff --git a/src/packages/divider/doc.md b/src/packages/divider/doc.md index 7c727917fa..ac4920f789 100644 --- a/src/packages/divider/doc.md +++ b/src/packages/divider/doc.md @@ -91,3 +91,5 @@ import { Divider } from '@nutui/nutui-react' | \--nutui-divider-spacing | 左边分割线与文案的间隔值 | `8px` | | \--nutui-divider-vertical-height | 垂直分割线的高度 | `12px` | | \--nutui-divider-vertical-margin | 垂直分割线的margin值 | `0 8px` | + + diff --git a/src/packages/divider/doc.taro.md b/src/packages/divider/doc.taro.md index 58bbb332dd..a9027dc3b8 100644 --- a/src/packages/divider/doc.taro.md +++ b/src/packages/divider/doc.taro.md @@ -91,3 +91,5 @@ import { Divider } from '@nutui/nutui-react-taro' | \--nutui-divider-spacing | 左边分割线与文案的间隔值 | `8px` | | \--nutui-divider-vertical-height | 垂直分割线的高度 | `12px` | | \--nutui-divider-vertical-margin | 垂直分割线的margin值 | `0 8px` | + + diff --git a/src/packages/divider/doc.zh-TW.md b/src/packages/divider/doc.zh-TW.md index d0ff06a401..55c78f024d 100644 --- a/src/packages/divider/doc.zh-TW.md +++ b/src/packages/divider/doc.zh-TW.md @@ -91,3 +91,5 @@ import { Divider } from '@nutui/nutui-react' | \--nutui-divider-spacing | 左邊分割線與文案的間隔值 | `8px` | | \--nutui-divider-vertical-height | 垂直分割線的高度 | `12px` | | \--nutui-divider-vertical-margin | 垂直分割線的margin值 | `0 8px` | + + diff --git a/src/packages/drag/doc.en-US.md b/src/packages/drag/doc.en-US.md index 88f62cb52d..2624001b7f 100644 --- a/src/packages/drag/doc.en-US.md +++ b/src/packages/drag/doc.en-US.md @@ -54,3 +54,5 @@ import { Drag } from '@nutui/nutui-react' | onDragStart | Start dragging elements | `() => void` | `-` | | onDrag | Drag element | `(state: { offset: [x: number, y: number] }) => void` | `-` | | onDragEnd | Stop dragging elements | `(state: { offset: [x: number, y: number] }) => void` | `-` | + + diff --git a/src/packages/drag/doc.md b/src/packages/drag/doc.md index c19384c128..25d9e46836 100644 --- a/src/packages/drag/doc.md +++ b/src/packages/drag/doc.md @@ -54,3 +54,5 @@ import { Drag } from '@nutui/nutui-react' | onDragStart | 开始拖拽元素 | `() => void` | `-` | | onDrag | 拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | | onDragEnd | 停止拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | + + diff --git a/src/packages/drag/doc.taro.md b/src/packages/drag/doc.taro.md index 28f27a6db1..488014a77f 100644 --- a/src/packages/drag/doc.taro.md +++ b/src/packages/drag/doc.taro.md @@ -54,3 +54,5 @@ import { Drag } from '@nutui/nutui-react-taro' | onDragStart | 开始拖拽元素 | `() => void` | `-` | | onDrag | 拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | | onDragEnd | 停止拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | + + diff --git a/src/packages/drag/doc.zh-TW.md b/src/packages/drag/doc.zh-TW.md index e833fd5e64..2f91c5d237 100644 --- a/src/packages/drag/doc.zh-TW.md +++ b/src/packages/drag/doc.zh-TW.md @@ -54,3 +54,5 @@ import { Drag } from '@nutui/nutui-react' | onDragStart | 開始拖拽元素 | `() => void` | `-` | | onDrag | 拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | | onDragEnd | 停止拖拽元素 | `(state: { offset: [x: number, y: number] }) => void` | `-` | + + diff --git a/src/packages/elevator/doc.en-US.md b/src/packages/elevator/doc.en-US.md index ca70b7e6c1..1f78d94922 100644 --- a/src/packages/elevator/doc.en-US.md +++ b/src/packages/elevator/doc.en-US.md @@ -108,3 +108,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-elevator-list-fixed-color | Ceiling floor text color | `$color-primary` | | \--nutui-elevator-list-fixed-bg-color | Ceiling floor background color | `$white` | | \--nutui-elevator-list-fixed-box-shadow | Ceiling floor shadow | `0 0 10px #eee` | + + diff --git a/src/packages/elevator/doc.md b/src/packages/elevator/doc.md index 13938d7948..086f7cc288 100644 --- a/src/packages/elevator/doc.md +++ b/src/packages/elevator/doc.md @@ -108,3 +108,5 @@ import { Elevator } from '@nutui/nutui-react' | \--nutui-elevator-list-fixed-color | 吸顶楼层文字颜色 | `$color-primary` | | \--nutui-elevator-list-fixed-bg-color | 吸顶楼层背景颜色 | `$white` | | \--nutui-elevator-list-fixed-box-shadow | 吸顶楼层阴影 | `0 0 10px #eee` | + + diff --git a/src/packages/elevator/doc.taro.md b/src/packages/elevator/doc.taro.md index 1383315877..5cad42673c 100644 --- a/src/packages/elevator/doc.taro.md +++ b/src/packages/elevator/doc.taro.md @@ -108,3 +108,5 @@ import { Elevator } from '@nutui/nutui-react-taro' | \--nutui-elevator-list-fixed-color | 吸顶楼层文字颜色 | `$color-primary` | | \--nutui-elevator-list-fixed-bg-color | 吸顶楼层背景颜色 | `$white` | | \--nutui-elevator-list-fixed-box-shadow | 吸顶楼层阴影 | `0 0 10px #eee` | + + diff --git a/src/packages/elevator/doc.zh-TW.md b/src/packages/elevator/doc.zh-TW.md index 61752216bd..e6c3b4f8b9 100644 --- a/src/packages/elevator/doc.zh-TW.md +++ b/src/packages/elevator/doc.zh-TW.md @@ -108,3 +108,5 @@ import { Elevator } from '@nutui/nutui-react' | \--nutui-elevator-list-fixed-color | 吸頂樓層文字顏色 | `$color-primary` | | \--nutui-elevator-list-fixed-bg-color | 吸頂樓層背景顏色 | `$white` | | \--nutui-elevator-list-fixed-box-shadow | 吸頂樓層陰影 | `0 0 10px #eee` | + + diff --git a/src/packages/ellipsis/doc.en-US.md b/src/packages/ellipsis/doc.en-US.md index 8710416b54..3002b29cee 100644 --- a/src/packages/ellipsis/doc.en-US.md +++ b/src/packages/ellipsis/doc.en-US.md @@ -75,3 +75,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default Value | | --- | --- | --- | | \--nutui-ellipsis-expand-collapse-color | 展示和收起的按钮颜色 | `#3460fa` | + + diff --git a/src/packages/ellipsis/doc.md b/src/packages/ellipsis/doc.md index 335e5a924a..1c4479f9bb 100644 --- a/src/packages/ellipsis/doc.md +++ b/src/packages/ellipsis/doc.md @@ -75,3 +75,5 @@ import { Ellipsis } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-ellipsis-expand-collapse-color | 展示和收起的按钮颜色 | `#3460fa` | + + diff --git a/src/packages/ellipsis/doc.taro.md b/src/packages/ellipsis/doc.taro.md index a772067c10..d4be06a6f1 100644 --- a/src/packages/ellipsis/doc.taro.md +++ b/src/packages/ellipsis/doc.taro.md @@ -83,3 +83,5 @@ import { Ellipsis } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-ellipsis-expand-collapse-color | 展示和收起的按钮颜色 | `#3460fa` | + + diff --git a/src/packages/ellipsis/doc.zh-TW.md b/src/packages/ellipsis/doc.zh-TW.md index 77fea5a859..05c1cd6019 100644 --- a/src/packages/ellipsis/doc.zh-TW.md +++ b/src/packages/ellipsis/doc.zh-TW.md @@ -75,3 +75,5 @@ import { Ellipsis } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-ellipsis-expand-collapse-color | 展示和收起的按鈕顏色 | `#3460fa` | + + diff --git a/src/packages/empty/doc.en-US.md b/src/packages/empty/doc.en-US.md index 5a7f5dec9c..aa6eeebc66 100644 --- a/src/packages/empty/doc.en-US.md +++ b/src/packages/empty/doc.en-US.md @@ -89,3 +89,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-empty-title-line-height | Empty component image title line height | `$font-size-l` | | \--nutui-empty-description-line-height | Empty component image description line height | `1` | | \--nutui-empty-background-color | Empty component background color | `#fff` | + + diff --git a/src/packages/empty/doc.md b/src/packages/empty/doc.md index c27888eae9..76a90bc1ab 100644 --- a/src/packages/empty/doc.md +++ b/src/packages/empty/doc.md @@ -89,3 +89,5 @@ import { Empty } from '@nutui/nutui-react' | \--nutui-empty-title-line-height | Empty组件图片标题行高 | `$font-size-l` | | \--nutui-empty-description-line-height | Empty组件图片描述行高 | `1` | | \--nutui-empty-background-color | Empty组件背景色 | `#fff` | + + diff --git a/src/packages/empty/doc.taro.md b/src/packages/empty/doc.taro.md index eae98b4322..cb738c583f 100644 --- a/src/packages/empty/doc.taro.md +++ b/src/packages/empty/doc.taro.md @@ -89,3 +89,5 @@ import { Empty } from '@nutui/nutui-react-taro' | \--nutui-empty-title-line-height | Empty组件图片标题行高 | `$font-size-l` | | \--nutui-empty-description-line-height | Empty组件图片描述行高 | `1` | | \--nutui-empty-background-color | Empty组件背景色 | `#fff` | + + diff --git a/src/packages/empty/doc.zh-TW.md b/src/packages/empty/doc.zh-TW.md index d51077263b..27d742e484 100644 --- a/src/packages/empty/doc.zh-TW.md +++ b/src/packages/empty/doc.zh-TW.md @@ -89,3 +89,5 @@ import { Empty } from '@nutui/nutui-react' | \--nutui-empty-title-line-height | Empty組件圖片標題行高 | `$font-size-l` | | \--nutui-empty-description-line-height | Empty組件圖片描述行高 | `1` | | \--nutui-empty-background-color | Empty組件背景色 | `#fff` | + + diff --git a/src/packages/fixednav/doc.en-US.md b/src/packages/fixednav/doc.en-US.md index 2f449b3159..2e323b82d7 100644 --- a/src/packages/fixednav/doc.en-US.md +++ b/src/packages/fixednav/doc.en-US.md @@ -80,3 +80,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-fixednav-button-background | button background | `$color-primary-gradient-1` | | \--nutui-fixednav-index | zIndex | `201` | | \--nutui-fixednav-item-active-color | active color | `$color-primary` | + + diff --git a/src/packages/fixednav/doc.md b/src/packages/fixednav/doc.md index 2d362930c5..aa24893671 100644 --- a/src/packages/fixednav/doc.md +++ b/src/packages/fixednav/doc.md @@ -80,3 +80,5 @@ import { FixedNav } from '@nutui/nutui-react' | \--nutui-fixednav-button-background | button 的背景颜色 | `$color-primary-gradient-1` | | \--nutui-fixednav-index | zIndex | `201` | | \--nutui-fixednav-item-active-color | 激活颜色 | `$color-primary` | + + diff --git a/src/packages/fixednav/doc.taro.md b/src/packages/fixednav/doc.taro.md index fd9cdf2bfb..703ac1c59a 100644 --- a/src/packages/fixednav/doc.taro.md +++ b/src/packages/fixednav/doc.taro.md @@ -80,3 +80,5 @@ import { FixedNav } from '@nutui/nutui-react-taro' | \--nutui-fixednav-button-background | button 的背景颜色 | `$color-primary-gradient-1` | | \--nutui-fixednav-index | zIndex | `201` | | \--nutui-fixednav-item-active-color | 激活颜色 | `$color-primary` | + + diff --git a/src/packages/fixednav/doc.zh-TW.md b/src/packages/fixednav/doc.zh-TW.md index 36128b0a98..69277a08c7 100644 --- a/src/packages/fixednav/doc.zh-TW.md +++ b/src/packages/fixednav/doc.zh-TW.md @@ -80,3 +80,5 @@ import { FixedNav } from '@nutui/nutui-react' | \--nutui-fixednav-button-background | button 的背景顏色 | `$color-primary-gradient-1` | | \--nutui-fixednav-index | zIndex | `201` | | \--nutui-fixednav-item-active-color | 激活顏色 | `$color-primary` | + + diff --git a/src/packages/form/doc.en-US.md b/src/packages/form/doc.en-US.md index 36cb759393..9371d3c827 100644 --- a/src/packages/form/doc.en-US.md +++ b/src/packages/form/doc.en-US.md @@ -163,3 +163,5 @@ The component provides the following CSS Variables, which can be used for custom | \--nutui-form-item-body-input-text-align | Text alignment of form item input box | `left` | | \--nutui-form-item-tip-font-size | Font size for error messages | `10px` | | \--nutui-form-item-tip-text-align | Text alignment for error messages | `left` | + + diff --git a/src/packages/form/doc.md b/src/packages/form/doc.md index b4b4d90b09..213e0f8f04 100644 --- a/src/packages/form/doc.md +++ b/src/packages/form/doc.md @@ -162,3 +162,5 @@ import { Form } from '@nutui/nutui-react' | \--nutui-form-item-body-input-text-align | 表单项输入框的文本对齐方式 | `left` | | \--nutui-form-item-tip-font-size | 错误信息的字号 | `10px` | | \--nutui-form-item-tip-text-align | 错误信息的文本对齐方式 | `left` | + + diff --git a/src/packages/form/doc.taro.md b/src/packages/form/doc.taro.md index a2b8e62131..69c7825e6d 100644 --- a/src/packages/form/doc.taro.md +++ b/src/packages/form/doc.taro.md @@ -162,3 +162,5 @@ import { Form } from '@nutui/nutui-react-taro' | \--nutui-form-item-body-input-text-align | 表单项输入框的文本对齐方式 | `left` | | \--nutui-form-item-tip-font-size | 错误信息的字号 | `10px` | | \--nutui-form-item-tip-text-align | 错误信息的文本对齐方式 | `left` | + + diff --git a/src/packages/form/doc.zh-TW.md b/src/packages/form/doc.zh-TW.md index 33e4cd61b8..fbb97df13e 100644 --- a/src/packages/form/doc.zh-TW.md +++ b/src/packages/form/doc.zh-TW.md @@ -162,3 +162,5 @@ import { Form } from '@nutui/nutui-react' | \--nutui-form-item-body-input-text-align | 錶單項輸入框的文本對齊方式 | `left` | | \--nutui-form-item-tip-font-size | 錯誤信息的字號 | `10px` | | \--nutui-form-item-tip-text-align | 錯誤信息的文本對齊方式 | `left` | + + diff --git a/src/packages/grid/doc.en-US.md b/src/packages/grid/doc.en-US.md index 38bf0e99b3..2c40cc135b 100644 --- a/src/packages/grid/doc.en-US.md +++ b/src/packages/grid/doc.en-US.md @@ -131,3 +131,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-grid-item-text-margin | margin | `8px` | | \--nutui-grid-item-text-color | text color | `$color-title` | | \--nutui-grid-item-text-font-size | text font size | `$font-size-s` | + + diff --git a/src/packages/grid/doc.md b/src/packages/grid/doc.md index 9168082ef1..3198dd91d6 100644 --- a/src/packages/grid/doc.md +++ b/src/packages/grid/doc.md @@ -129,3 +129,5 @@ import { Grid } from '@nutui/nutui-react' | \--nutui-grid-item-text-margin | 外边距 | `8px` | | \--nutui-grid-item-text-color | 文字颜色 | `$color-title` | | \--nutui-grid-item-text-font-size | 文字字体大小 | `$font-size-s` | + + diff --git a/src/packages/grid/doc.taro.md b/src/packages/grid/doc.taro.md index 333487a2d1..420d859938 100644 --- a/src/packages/grid/doc.taro.md +++ b/src/packages/grid/doc.taro.md @@ -129,3 +129,5 @@ import { Grid } from '@nutui/nutui-react-taro' | \--nutui-grid-item-text-margin | 外边距 | `8px` | | \--nutui-grid-item-text-color | 文字颜色 | `$color-title` | | \--nutui-grid-item-text-font-size | 文字字体大小 | `$font-size-s` | + + diff --git a/src/packages/grid/doc.zh-TW.md b/src/packages/grid/doc.zh-TW.md index 3b6e275568..aedb2d4a03 100644 --- a/src/packages/grid/doc.zh-TW.md +++ b/src/packages/grid/doc.zh-TW.md @@ -129,3 +129,5 @@ import { Grid } from '@nutui/nutui-react' | \--nutui-grid-item-text-margin | 外邊距 | `8px` | | \--nutui-grid-item-text-color | 文字顏色 | `$color-title` | | \--nutui-grid-item-text-font-size | 文字字體大小 | `$font-size-s` | + + diff --git a/src/packages/hoverbutton/doc.en-US.md b/src/packages/hoverbutton/doc.en-US.md index 82e65aeb18..a3a079bacc 100644 --- a/src/packages/hoverbutton/doc.en-US.md +++ b/src/packages/hoverbutton/doc.en-US.md @@ -88,3 +88,5 @@ The component provides the following CSS variables that can be used for custom s | \--nutui-hoverbutton-item-background-active | Button active background color | `#F6F6F6` | | \--nutui-hoverbutton-item-icon-color | Icon normal color | `#1A1A1A` | | \--nutui-hoverbutton-item-icon-color-active | Icon active color | `#595959` | + + diff --git a/src/packages/hoverbutton/doc.md b/src/packages/hoverbutton/doc.md index 3cc9374aaa..6f5cce496f 100644 --- a/src/packages/hoverbutton/doc.md +++ b/src/packages/hoverbutton/doc.md @@ -96,3 +96,5 @@ import { HoverButton } from '@nutui/nutui-react' | \--nutui-hoverbutton-item-background-active | 按钮背景色-点击态 | `#F6F6F6` | | \--nutui-hoverbutton-item-icon-color | 图标色-正常态 | `#1A1A1A` | | \--nutui-hoverbutton-item-icon-color-active | 图标色-点击态 | `#595959` | + + diff --git a/src/packages/hoverbutton/doc.taro.md b/src/packages/hoverbutton/doc.taro.md index f91cbb9ef5..aac2175825 100644 --- a/src/packages/hoverbutton/doc.taro.md +++ b/src/packages/hoverbutton/doc.taro.md @@ -88,3 +88,5 @@ import { HoverButton } from '@nutui/nutui-react-taro' | \--nutui-hoverbutton-item-background-active | 按钮背景色-点击态 | `#F6F6F6` | | \--nutui-hoverbutton-item-icon-color | 图标色-正常态 | `#1A1A1A` | | \--nutui-hoverbutton-item-icon-color-active | 图标色-点击态 | `#595959` | + + diff --git a/src/packages/hoverbutton/doc.zh-TW.md b/src/packages/hoverbutton/doc.zh-TW.md index 96cdd00313..919804cd94 100644 --- a/src/packages/hoverbutton/doc.zh-TW.md +++ b/src/packages/hoverbutton/doc.zh-TW.md @@ -96,3 +96,5 @@ import { HoverButton } from '@nutui/nutui-react-taro' | \--nutui-hoverbutton-item-background-active | 按鈕背景色-點擊態 | `#F6F6F6` | | \--nutui-hoverbutton-item-icon-color | 圖標色-正常態 | `#1A1A1A` | | \--nutui-hoverbutton-item-icon-color-active | 圖標色-點擊態 | `#595959` | + + diff --git a/src/packages/icon/doc.en-US.md b/src/packages/icon/doc.en-US.md index 29adf55f7c..b32a3bce85 100644 --- a/src/packages/icon/doc.en-US.md +++ b/src/packages/icon/doc.en-US.md @@ -175,3 +175,5 @@ The component provides the following CSS variables, which can be used to customi | \--nut-icon-height | height of iconfont container | `16px` | | \--nut-icon-width | width of iconfont container | `16px` | | \--nut-icon-line-height | iconfont line height | `16px` | + + diff --git a/src/packages/icon/doc.md b/src/packages/icon/doc.md index 0e5a8c51a6..d74058412c 100644 --- a/src/packages/icon/doc.md +++ b/src/packages/icon/doc.md @@ -174,3 +174,5 @@ export default App | \--nut-icon-height | iconfont 容器的高度 | `16px` | | \--nut-icon-width | iconfont 容器的宽度 | `16px` | | \--nut-icon-line-height | iconfont 的行高 | `16px` | + + diff --git a/src/packages/icon/doc.taro.md b/src/packages/icon/doc.taro.md index c4b953e328..c54c3d442a 100644 --- a/src/packages/icon/doc.taro.md +++ b/src/packages/icon/doc.taro.md @@ -177,3 +177,5 @@ export default App | \--nut-icon-height | iconfont 容器的高度 | `16px` | | \--nut-icon-width | iconfont 容器的宽度 | `16px` | | \--nut-icon-line-height | iconfont 的行高 | `16px` | + + diff --git a/src/packages/icon/doc.zh-TW.md b/src/packages/icon/doc.zh-TW.md index a58b25d429..6a91347439 100644 --- a/src/packages/icon/doc.zh-TW.md +++ b/src/packages/icon/doc.zh-TW.md @@ -175,3 +175,5 @@ export default App | \--nut-icon-height | iconfont 容器的高度 | `16px` | | \--nut-icon-width | iconfont 容器的寬度 | `16px` | | \--nut-icon-line-height | iconfont 的行高 | `16px` | + + diff --git a/src/packages/image/doc.en-US.md b/src/packages/image/doc.en-US.md index 20512355ab..b3a1699938 100644 --- a/src/packages/image/doc.en-US.md +++ b/src/packages/image/doc.en-US.md @@ -129,3 +129,5 @@ The Image component provides lazy loading of images, which can be realized by co | right | Align Right | | bottom | Align Bottom | | left | Align Left | + + diff --git a/src/packages/image/doc.md b/src/packages/image/doc.md index 94662ed79c..c1a66a2a74 100644 --- a/src/packages/image/doc.md +++ b/src/packages/image/doc.md @@ -129,3 +129,5 @@ import { Image } from '@nutui/nutui-react' | right | 右侧对齐 | | bottom | 底部对齐 | | left | 左侧对齐 | + + diff --git a/src/packages/image/doc.taro.md b/src/packages/image/doc.taro.md index ad7e176d87..42c08539f6 100644 --- a/src/packages/image/doc.taro.md +++ b/src/packages/image/doc.taro.md @@ -100,3 +100,5 @@ import { Image } from '@nutui/nutui-react-taro' | onError | 图片加载失败后触发 | `() => void` | `-` | ### 直接使用 Taro 现有 Image 组件开发 [参考文档](https://taro-docs.jd.com/docs/components/media/image) + + diff --git a/src/packages/image/doc.zh-TW.md b/src/packages/image/doc.zh-TW.md index a88798973e..d56ba4867d 100644 --- a/src/packages/image/doc.zh-TW.md +++ b/src/packages/image/doc.zh-TW.md @@ -129,3 +129,5 @@ import { Image } from '@nutui/nutui-react' | right | 右側對齊 | | bottom | 底部對齊 | | left | 左側對齊 | + + diff --git a/src/packages/imagepreview/doc.en-US.md b/src/packages/imagepreview/doc.en-US.md index 0457e0d832..81d5951108 100644 --- a/src/packages/imagepreview/doc.en-US.md +++ b/src/packages/imagepreview/doc.en-US.md @@ -86,3 +86,5 @@ import { ImagePreview } from '@nutui/nutui-react' | closeIconPosition | Close Icon Position | `top-right` \| `top-left` \| `bottom` | `top-right` | | onChange | Emitted when swiper changes | `(value:number) => void` | `-` | | onClose | Emitted when closing ImagePreview | `() => void` | `-` | + + diff --git a/src/packages/imagepreview/doc.md b/src/packages/imagepreview/doc.md index 081de7f052..75367d351c 100644 --- a/src/packages/imagepreview/doc.md +++ b/src/packages/imagepreview/doc.md @@ -86,3 +86,5 @@ import { ImagePreview } from '@nutui/nutui-react' | closeIconPosition | 关闭按钮位置 | `top-right` \| `top-left` \| `bottom` | `top-right` | | onChange | 切换时触发 | `(value:number) => void` | `-` | | onClose | 点击遮罩关闭图片预览时触发 | `() => void` | `-` | + + diff --git a/src/packages/imagepreview/doc.taro.md b/src/packages/imagepreview/doc.taro.md index ed0c79e084..cdd40da551 100644 --- a/src/packages/imagepreview/doc.taro.md +++ b/src/packages/imagepreview/doc.taro.md @@ -87,3 +87,5 @@ import { ImagePreview } from '@nutui/nutui-react-taro' | closeIconPosition | 关闭按钮位置 | `top-right` \| `top-left` \| `bottom` | `top-right` | | onChange | 切换时触发 | `(value:number) => void` | `-` | | onClose | 点击遮罩关闭图片预览时触发 | `() => void` | `-` | + + diff --git a/src/packages/imagepreview/doc.zh-TW.md b/src/packages/imagepreview/doc.zh-TW.md index 824ede3180..dd44261d4d 100644 --- a/src/packages/imagepreview/doc.zh-TW.md +++ b/src/packages/imagepreview/doc.zh-TW.md @@ -86,3 +86,5 @@ import { ImagePreview } from '@nutui/nutui-react' | closeIconPosition | 關閉按鈕位置 | `top-right` \| `top-left` \| `bottom` | `top-right` | | onChange | 切換時觸發 | `(value:number) => void` | `-` | | onClose | 點擊遮罩關閉圖片預覽時觸發 | `() => void` | `-` | + + diff --git a/src/packages/indicator/doc.en-US.md b/src/packages/indicator/doc.en-US.md index feb5f3d144..7d735d91f6 100644 --- a/src/packages/indicator/doc.en-US.md +++ b/src/packages/indicator/doc.en-US.md @@ -84,3 +84,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-indicator-dot-active-size | indicator dot active size | `6px` | | \--nutui-indicator-border-radius | indicator active border size | `$radius-xxs` | | \--nutui-indicator-dot-margin | when horizontal, indicator margin | `$spacing-xxxs` | + + diff --git a/src/packages/indicator/doc.md b/src/packages/indicator/doc.md index 16ce2c1dbe..96a2d2bc8e 100644 --- a/src/packages/indicator/doc.md +++ b/src/packages/indicator/doc.md @@ -84,3 +84,5 @@ import { Indicator } from '@nutui/nutui-react' | \--nutui-indicator-dot-active-size | 指示器焦点时尺寸 | `6px` | | \--nutui-indicator-border-radius | 指示器焦点时的border值 | `$radius-xxs` | | \--nutui-indicator-dot-margin | 指示器横向时的margin值 | `$spacing-xxxs` | + + diff --git a/src/packages/indicator/doc.taro.md b/src/packages/indicator/doc.taro.md index c8ea0bbb19..aa5a6b1abb 100644 --- a/src/packages/indicator/doc.taro.md +++ b/src/packages/indicator/doc.taro.md @@ -84,3 +84,5 @@ import { Indicator } from '@nutui/nutui-react-taro' | \--nutui-indicator-dot-active-size | 指示器焦点时尺寸 | `6px` | | \--nutui-indicator-border-radius | 指示器焦点时的border值 | `$radius-xxs` | | \--nutui-indicator-dot-margin | 指示器横向时的margin值 | `$spacing-xxxs` | + + diff --git a/src/packages/indicator/doc.zh-TW.md b/src/packages/indicator/doc.zh-TW.md index 0d170f68a4..cd3b2d935d 100644 --- a/src/packages/indicator/doc.zh-TW.md +++ b/src/packages/indicator/doc.zh-TW.md @@ -84,3 +84,5 @@ import { Indicator } from '@nutui/nutui-react' | \--nutui-indicator-dot-active-size | 指示器焦點時尺寸 | `6px` | | \--nutui-indicator-border-radius | 指示器焦點時的border值 | `$radius-xxs` | | \--nutui-indicator-dot-margin | 指示器橫向時的margin值 | `$spacing-xxxs` | + + diff --git a/src/packages/infiniteloading/doc.en-US.md b/src/packages/infiniteloading/doc.en-US.md index 4ec3d45972..cfdea9e049 100644 --- a/src/packages/infiniteloading/doc.en-US.md +++ b/src/packages/infiniteloading/doc.en-US.md @@ -79,3 +79,5 @@ The component provides the following CSS variables, which can be used to customi | --- | --- | --- | | \--nutui-infiniteloading-color | Swipe to bottom text color | `$color-text-help` | | \--nutui-infiniteloading-icon-size | Swipe to bottom icon size | `24px` | + + diff --git a/src/packages/infiniteloading/doc.md b/src/packages/infiniteloading/doc.md index 67f0d510b6..820c0b9cb0 100644 --- a/src/packages/infiniteloading/doc.md +++ b/src/packages/infiniteloading/doc.md @@ -79,3 +79,5 @@ import { InfiniteLoading } from '@nutui/nutui-react' | --- | --- | --- | | \--nutui-infiniteloading-color | 滑动到底部的文字颜色 | `$color-text-help` | | \--nutui-infiniteloading-icon-size | 滑动到底部的文字颜色 | `24px` | + + diff --git a/src/packages/infiniteloading/doc.taro.md b/src/packages/infiniteloading/doc.taro.md index 12300a386c..ff5948c2b0 100644 --- a/src/packages/infiniteloading/doc.taro.md +++ b/src/packages/infiniteloading/doc.taro.md @@ -70,3 +70,5 @@ import { InfiniteLoading } from '@nutui/nutui-react-taro' | --- | --- | --- | | \--nutui-infiniteloading-color | 滑动到底部的文字颜色 | `$color-text-help` | | \--nutui-infiniteloading-icon-size | 滑动到底部的文字颜色 | `24px` | + + diff --git a/src/packages/infiniteloading/doc.zh-TW.md b/src/packages/infiniteloading/doc.zh-TW.md index 5076668c4b..5fbd19f646 100644 --- a/src/packages/infiniteloading/doc.zh-TW.md +++ b/src/packages/infiniteloading/doc.zh-TW.md @@ -79,3 +79,5 @@ import { InfiniteLoading } from '@nutui/nutui-react' | --- | --- | --- | | \--nutui-infiniteloading-color | 滑動到底部的文字顏色 | `$color-text-help` | | \--nutui-infiniteloading-icon-size | 滑動到底部的文字顏色 | `24px` | + + diff --git a/src/packages/input/doc.en-US.md b/src/packages/input/doc.en-US.md index 959b34a349..3184cb85b5 100644 --- a/src/packages/input/doc.en-US.md +++ b/src/packages/input/doc.en-US.md @@ -165,3 +165,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-input-font-size | font size | `$font-size-base` | | \--nutui-input-lineheight | line height | `$font-size-l` | | \--nutui-input-padding | input padding | `10px 25px` | + + diff --git a/src/packages/input/doc.md b/src/packages/input/doc.md index 76959fe9fa..4afade339a 100644 --- a/src/packages/input/doc.md +++ b/src/packages/input/doc.md @@ -168,3 +168,5 @@ import { Input } from '@nutui/nutui-react' | \--nutui-input-font-size | 文本字号 | `$font-size-base` | | \--nutui-input-lineheight | 行高 | `$font-size-l` | | \--nutui-input-padding | 输入框容器的内边距 | `10px 25px` | + + diff --git a/src/packages/input/doc.taro.md b/src/packages/input/doc.taro.md index 136769fd56..dd30bafc90 100644 --- a/src/packages/input/doc.taro.md +++ b/src/packages/input/doc.taro.md @@ -168,3 +168,5 @@ import { Input } from '@nutui/nutui-react-taro' | \--nutui-input-font-size | 文本字号 | `$font-size-base` | | \--nutui-input-lineheight | 行高 | `$font-size-l` | | \--nutui-input-padding | 输入框容器的内边距 | `10px 25px` | + + diff --git a/src/packages/input/doc.zh-TW.md b/src/packages/input/doc.zh-TW.md index ba64fd7ad0..f430a7406f 100644 --- a/src/packages/input/doc.zh-TW.md +++ b/src/packages/input/doc.zh-TW.md @@ -165,3 +165,5 @@ import { Input } from '@nutui/nutui-react' | \--nutui-input-font-size | 文本字号 | `$font-size-base` | | \--nutui-input-lineheight | 行高 | `$font-size-l` | | \--nutui-input-padding | 输入框容器的内边距 | `10px 25px` | + + diff --git a/src/packages/inputnumber/doc.en-US.md b/src/packages/inputnumber/doc.en-US.md index 7491ec24d3..ece6edb5b7 100644 --- a/src/packages/inputnumber/doc.en-US.md +++ b/src/packages/inputnumber/doc.en-US.md @@ -153,3 +153,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-inputnumber-icon-color | The color of the icon in the number input box | `$color-text` | | \--nutui-inputnumber-icon-size | The size of the icon in the number input box | `8px` | | \--nutui-inputnumber-disabled-color | The color of the disabled status of inputnumber | `$color-text-disabled` | + + diff --git a/src/packages/inputnumber/doc.md b/src/packages/inputnumber/doc.md index a8f17a582e..e46492d6b0 100644 --- a/src/packages/inputnumber/doc.md +++ b/src/packages/inputnumber/doc.md @@ -153,3 +153,5 @@ import { InputNumber } from '@nutui/nutui-react' | \--nutui-inputnumber-icon-color | 数字输入框中icon的颜色 | `$color-text` | | \--nutui-inputnumber-icon-size | 数字输入框中icon的大小 | `8px` | | \--nutui-inputnumber-disabled-color | 数字输入框禁用色 | `$color-text-disabled` | + + diff --git a/src/packages/inputnumber/doc.taro.md b/src/packages/inputnumber/doc.taro.md index cec8fb8f7a..06a13a10b4 100644 --- a/src/packages/inputnumber/doc.taro.md +++ b/src/packages/inputnumber/doc.taro.md @@ -145,3 +145,5 @@ import { InputNumber } from '@nutui/nutui-react-taro' | \--nutui-inputnumber-icon-color | 数字输入框中icon的颜色 | `$color-text` | | \--nutui-inputnumber-icon-size | 数字输入框中icon的大小 | `8px` | | \--nutui-inputnumber-disabled-color | 数字输入框禁用色 | `$color-text-disabled` | + + diff --git a/src/packages/inputnumber/doc.zh-TW.md b/src/packages/inputnumber/doc.zh-TW.md index 53efde519b..952ba80050 100644 --- a/src/packages/inputnumber/doc.zh-TW.md +++ b/src/packages/inputnumber/doc.zh-TW.md @@ -144,3 +144,5 @@ import { InputNumber } from '@nutui/nutui-react' | \--nutui-inputnumber-icon-color | 數字輸入框中icon的顏色 | `$color-text` | | \--nutui-inputnumber-icon-size | 數字輸入框中icon的大小 | `8px` | | \--nutui-inputnumber-disabled-color | 數字輸入框禁用色 | `$color-text-disabled` | + + diff --git a/src/packages/layout/doc.en-US.md b/src/packages/layout/doc.en-US.md index ef523d6446..27f3561455 100644 --- a/src/packages/layout/doc.en-US.md +++ b/src/packages/layout/doc.en-US.md @@ -66,3 +66,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default | | --- | --- | --- | | \--nutui-col-default-margin-bottom | col margin-bottom | `15px` | + + diff --git a/src/packages/layout/doc.md b/src/packages/layout/doc.md index afbd9dcdd5..7c23a8a864 100644 --- a/src/packages/layout/doc.md +++ b/src/packages/layout/doc.md @@ -66,3 +66,5 @@ import { Row, Col } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-col-default-margin-bottom | col 组件的下边距 | `15px` | + + diff --git a/src/packages/layout/doc.taro.md b/src/packages/layout/doc.taro.md index 8e68c9cf07..8099b06782 100644 --- a/src/packages/layout/doc.taro.md +++ b/src/packages/layout/doc.taro.md @@ -66,3 +66,5 @@ import { Row, Col } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-col-default-margin-bottom | col 组件的下边距 | `15px` | + + diff --git a/src/packages/layout/doc.zh-TW.md b/src/packages/layout/doc.zh-TW.md index d7ee4b0f25..3083740154 100644 --- a/src/packages/layout/doc.zh-TW.md +++ b/src/packages/layout/doc.zh-TW.md @@ -66,3 +66,5 @@ import { Row, Col } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-col-default-margin-bottom | col 組件的下邊距 | `15px` | + + diff --git a/src/packages/loading/doc.en-US.md b/src/packages/loading/doc.en-US.md index 3ea9f4944b..fc822e59da 100644 --- a/src/packages/loading/doc.en-US.md +++ b/src/packages/loading/doc.en-US.md @@ -96,3 +96,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-loading-icon-size | icon size | `$font-size-s` | | \--nutui-loading-color | font color | `$color-text-help` | | \--nutui-loading-font-size | font size | `$font-size-s` | + + diff --git a/src/packages/loading/doc.md b/src/packages/loading/doc.md index fec7201f42..0f53b74499 100644 --- a/src/packages/loading/doc.md +++ b/src/packages/loading/doc.md @@ -96,3 +96,5 @@ import { Loading } from '@nutui/nutui-react' | \--nutui-loading-icon-size | icon大小 | `$font-size-s` | | \--nutui-loading-color | 文本色值 | `$color-text-help` | | \--nutui-loading-font-size | 文本字号 | `$font-size-s` | + + diff --git a/src/packages/loading/doc.taro.md b/src/packages/loading/doc.taro.md index 94bd07386a..fc8fa7a7cf 100644 --- a/src/packages/loading/doc.taro.md +++ b/src/packages/loading/doc.taro.md @@ -96,3 +96,5 @@ import { Loading } from '@nutui/nutui-react-taro' | \--nutui-loading-icon-size | icon大小 | `$font-size-s` | | \--nutui-loading-color | 文本色值 | `$color-text-help` | | \--nutui-loading-font-size | 文本字号 | `$font-size-s` | + + diff --git a/src/packages/loading/doc.zh-TW.md b/src/packages/loading/doc.zh-TW.md index 049654d5ee..9f346be447 100644 --- a/src/packages/loading/doc.zh-TW.md +++ b/src/packages/loading/doc.zh-TW.md @@ -96,3 +96,5 @@ import { Loading } from '@nutui/nutui-react' | \--nutui-loading-icon-size | icon大小 | `$font-size-s` | | \--nutui-loading-color | 文本色值 | `$color-text-help` | | \--nutui-loading-font-size | 文本字號 | `$font-size-s` | + + diff --git a/src/packages/lottie/doc.en-US.md b/src/packages/lottie/doc.en-US.md index 0b755b3fa0..124c07bee7 100644 --- a/src/packages/lottie/doc.en-US.md +++ b/src/packages/lottie/doc.en-US.md @@ -60,3 +60,5 @@ import { Lottie } from '@nutui/nutui-react' | playSegments | Play interval frame | `(segments: AnimationSegment \| AnimationSegment[], forceFlag?: boolean) => void` | | destroy | destroy | `() => void` | | getDuration | inFrames If true, returns the duration in frames; inFrames if false, returns the duration in seconds. | `(inFrames?: boolean) => number` | + + diff --git a/src/packages/lottie/doc.md b/src/packages/lottie/doc.md index fdc72a9a43..0013fb47b8 100644 --- a/src/packages/lottie/doc.md +++ b/src/packages/lottie/doc.md @@ -66,3 +66,5 @@ import { Lottie } from '@nutui/nutui-react' | getDuration | inFrames 如果为真,则以帧为单位返回持续时间;inFrames 如果为假,则以秒为单位返回。 | `(inFrames?: boolean) => number` | 详细可以参考 [lottie-react](https://lottiereact.com/) + + diff --git a/src/packages/lottie/doc.taro.md b/src/packages/lottie/doc.taro.md index f2a74f06d0..a2cccab504 100644 --- a/src/packages/lottie/doc.taro.md +++ b/src/packages/lottie/doc.taro.md @@ -68,3 +68,5 @@ import { Lottie } from '@nutui/nutui-react-taro' 详细可以参考 [https://lottiereact.com/](https://lottiereact.com/) | 方法名 | 说明 | 参数 | + + diff --git a/src/packages/lottie/doc.zh-TW.md b/src/packages/lottie/doc.zh-TW.md index 353a93bde9..9ddd951cfd 100644 --- a/src/packages/lottie/doc.zh-TW.md +++ b/src/packages/lottie/doc.zh-TW.md @@ -62,3 +62,5 @@ import { Lottie } from '@nutui/nutui-react-taro' | playSegments | 播放區間訊框 | `(segments: AnimationSegment \| AnimationSegment[], forceFlag?: boolean) => void` | | destroy | 銷毀 | `() => void` | | getDuration | inFrames 若為真,則以幀為單位傳回持續時間;inFrames 若為假,則以秒為單位傳回。 | `(inFrames?: boolean) => number` | + + diff --git a/src/packages/menu/doc.en-US.md b/src/packages/menu/doc.en-US.md index aa87cb88a0..32fc1f67d1 100644 --- a/src/packages/menu/doc.en-US.md +++ b/src/packages/menu/doc.en-US.md @@ -137,3 +137,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-menu-item-disabled-color | Disabled state color | `$color-text-disabled` | | \--nutui-menu-item-padding | padding for menu options | `12px 0` | | \--nutui-menu-item-option-icon-margin | Distance between menu item text and icon | `6px` | + + diff --git a/src/packages/menu/doc.md b/src/packages/menu/doc.md index 37bcaf6295..f4d0e7937f 100644 --- a/src/packages/menu/doc.md +++ b/src/packages/menu/doc.md @@ -137,3 +137,5 @@ import { Menu } from '@nutui/nutui-react' | \--nutui-menu-item-disabled-color | 禁用状态的颜色 | `$color-text-disabled` | | \--nutui-menu-item-padding | 菜单选项的内边距 | `12px 0` | | \--nutui-menu-item-icon-margin | 菜单选项文本与icon的距离 | `8px` | + + diff --git a/src/packages/menu/doc.taro.md b/src/packages/menu/doc.taro.md index a26b854dc7..cff33c79f1 100644 --- a/src/packages/menu/doc.taro.md +++ b/src/packages/menu/doc.taro.md @@ -137,3 +137,5 @@ import { Menu } from '@nutui/nutui-react-taro' | \--nutui-menu-item-disabled-color | 禁用状态的颜色 | `$color-text-disabled` | | \--nutui-menu-item-padding | 菜单选项的内边距 | `12px 0` | | \--nutui-menu-item-icon-margin | 菜单选项文本与icon的距离 | `8px` | + + diff --git a/src/packages/menu/doc.zh-TW.md b/src/packages/menu/doc.zh-TW.md index 6649741a00..35de896dfe 100644 --- a/src/packages/menu/doc.zh-TW.md +++ b/src/packages/menu/doc.zh-TW.md @@ -137,3 +137,5 @@ import { Menu } from '@nutui/nutui-react' | \--nutui-menu-item-disabled-color | 禁用狀態的顏色 | `$color-text-disabled` | | \--nutui-menu-item-padding | 菜單選項的內邊距 | `12px 0` | | \--nutui-menu-item-icon-margin | 菜單選項文本與icon的距離 | `8px` | + + diff --git a/src/packages/navbar/doc.en-US.md b/src/packages/navbar/doc.en-US.md index 56c4aa2f15..58e6e80cff 100644 --- a/src/packages/navbar/doc.en-US.md +++ b/src/packages/navbar/doc.en-US.md @@ -68,3 +68,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-navbar-title-font-size | The font size of the navbar's title | `$font-size-base` | | \--nutui-navbar-title-font-weight | The font weight of the navbar's title | `0` | | \--nutui-navbar-title-font-color | The font color of the navbar's title | `$color-title` | + + diff --git a/src/packages/navbar/doc.md b/src/packages/navbar/doc.md index 971ae1aa16..e0030b682a 100644 --- a/src/packages/navbar/doc.md +++ b/src/packages/navbar/doc.md @@ -68,3 +68,5 @@ import { NavBar } from '@nutui/nutui-react' | \--nutui-navbar-title-font-size | 头部导航标题的字体大小 | `$font-size-base` | | \--nutui-navbar-title-font-weight | 头部导航标题的字体粗细 | `0` | | \--nutui-navbar-title-font-color | 头部导航标题的字体颜色 | `$color-title` | + + diff --git a/src/packages/navbar/doc.taro.md b/src/packages/navbar/doc.taro.md index d0595763c8..ddab5d5eaa 100644 --- a/src/packages/navbar/doc.taro.md +++ b/src/packages/navbar/doc.taro.md @@ -68,3 +68,5 @@ import { NavBar } from '@nutui/nutui-react-taro' | \--nutui-navbar-title-font-size | 头部导航标题的字体大小 | `$font-size-base` | | \--nutui-navbar-title-font-weight | 头部导航标题的字体粗细 | `0` | | \--nutui-navbar-title-font-color | 头部导航标题的字体颜色 | `$color-title` | + + diff --git a/src/packages/navbar/doc.zh-TW.md b/src/packages/navbar/doc.zh-TW.md index 1e9108499c..4f4d565f5e 100644 --- a/src/packages/navbar/doc.zh-TW.md +++ b/src/packages/navbar/doc.zh-TW.md @@ -68,3 +68,5 @@ import { NavBar } from '@nutui/nutui-react' | \--nutui-navbar-title-font-size | 頭部導航標題的字體大小 | `$font-size-base` | | \--nutui-navbar-title-font-weight | 頭部導航標題的字體粗細 | `0` | | \--nutui-navbar-title-font-color | 頭部導航標題的字體顏色 | `$color-title` | + + diff --git a/src/packages/noticebar/doc.en-US.md b/src/packages/noticebar/doc.en-US.md index ce3de95031..5ba674fe7a 100644 --- a/src/packages/noticebar/doc.en-US.md +++ b/src/packages/noticebar/doc.en-US.md @@ -154,3 +154,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-noticebar-icon-gap | gap of icon and text | `4px` | | \--nutui-noticebar-left-icon-width | noticebar left icon width | `16px` | | \--nutui-noticebar-right-icon-width | noticebar right icon width | `16px` | + + diff --git a/src/packages/noticebar/doc.md b/src/packages/noticebar/doc.md index e23cddbdcf..ac3b4ca0a1 100644 --- a/src/packages/noticebar/doc.md +++ b/src/packages/noticebar/doc.md @@ -154,3 +154,5 @@ import { NoticeBar } from '@nutui/nutui-react' | \--nutui-noticebar-icon-gap | icon、text间距 | `4px` | | \--nutui-noticebar-left-icon-width | 左侧icon的宽度和高度的设定 | `16px` | | \--nutui-noticebar-right-icon-width | 右侧icon的宽度和高度的设定 | `16px` | + + diff --git a/src/packages/noticebar/doc.taro.md b/src/packages/noticebar/doc.taro.md index 7d7a2a2ec1..614ff121da 100644 --- a/src/packages/noticebar/doc.taro.md +++ b/src/packages/noticebar/doc.taro.md @@ -154,3 +154,5 @@ import { NoticeBar } from '@nutui/nutui-react-taro' | \--nutui-noticebar-icon-gap | icon、text间距 | `4px` | | \--nutui-noticebar-left-icon-width | 左侧icon的宽度和高度的设定 | `16px` | | \--nutui-noticebar-right-icon-width | 右侧icon的宽度和高度的设定 | `16px` | + + diff --git a/src/packages/noticebar/doc.zh-TW.md b/src/packages/noticebar/doc.zh-TW.md index 1b827a3f84..82ea4ccb18 100644 --- a/src/packages/noticebar/doc.zh-TW.md +++ b/src/packages/noticebar/doc.zh-TW.md @@ -154,3 +154,5 @@ import { NoticeBar } from '@nutui/nutui-react' | \--nutui-noticebar-icon-gap | icon、text間距 | `4px` | | \--nutui-noticebar-left-icon-width | 左側icon的寬度和高度的設定 | `16px` | | \--nutui-noticebar-right-icon-width | 右側icon的寬度和高度的設定 | `16px` | + + diff --git a/src/packages/notify/doc.en-US.md b/src/packages/notify/doc.en-US.md index 773c727a25..94daffabd5 100644 --- a/src/packages/notify/doc.en-US.md +++ b/src/packages/notify/doc.en-US.md @@ -71,3 +71,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-notify-success-background-color | Background color of successful notify | `$color-success` | | \--nutui-notify-danger-background-color | Danger notify background color | `$color-primary` | | \--nutui-notify-warning-background-color | Warning notify background color | `$color-warning` | + + diff --git a/src/packages/notify/doc.md b/src/packages/notify/doc.md index c76968f709..01ecd79ad7 100644 --- a/src/packages/notify/doc.md +++ b/src/packages/notify/doc.md @@ -71,3 +71,5 @@ import { Notify } from '@nutui/nutui-react' | \--nutui-notify-success-background-color | 成功通知的背景颜色 | `$color-success` | | \--nutui-notify-danger-background-color | 危险通知的背景颜色 | `$color-primary` | | \--nutui-notify-warning-background-color | 警告通知的背景颜色 | `$color-warning` | + + diff --git a/src/packages/notify/doc.taro.md b/src/packages/notify/doc.taro.md index ae188107a9..376c6521cb 100644 --- a/src/packages/notify/doc.taro.md +++ b/src/packages/notify/doc.taro.md @@ -115,3 +115,5 @@ export default App | \--nutui-notify-success-background-color | 成功通知的背景颜色 | `$color-success` | | \--nutui-notify-danger-background-color | 危险通知的背景颜色 | `$color-primary` | | \--nutui-notify-warning-background-color | 警告通知的背景颜色 | `$color-warning` | + + diff --git a/src/packages/notify/doc.zh-TW.md b/src/packages/notify/doc.zh-TW.md index 2b08cf4446..a18aa5a1a7 100644 --- a/src/packages/notify/doc.zh-TW.md +++ b/src/packages/notify/doc.zh-TW.md @@ -73,3 +73,5 @@ import { Notify } from '@nutui/nutui-react' | \--nutui-notify-success-background-color | 成功通知的背景顏色 | `$color-success` | | \--nutui-notify-danger-background-color | 危險通知的背景顏色 | `$color-primary` | | \--nutui-notify-warning-background-color | 警告通知的背景顏色 | `$color-warning` | + + diff --git a/src/packages/numberkeyboard/doc.en-US.md b/src/packages/numberkeyboard/doc.en-US.md index 24d137cc6b..3102120ed3 100644 --- a/src/packages/numberkeyboard/doc.en-US.md +++ b/src/packages/numberkeyboard/doc.en-US.md @@ -104,3 +104,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-numberkeyboard-key-confirm-font-color | key confirm fontColor | `#fff` | | \--nutui-numberkeyboard-key-confirm-background-color | key confirm backgroundColor | `$color-primary` | | \--nutui-numberkeyboard-background-color | keyboard container backgroundColor | `$color-background` | + + diff --git a/src/packages/numberkeyboard/doc.md b/src/packages/numberkeyboard/doc.md index cddfb357fb..310bd3f845 100644 --- a/src/packages/numberkeyboard/doc.md +++ b/src/packages/numberkeyboard/doc.md @@ -104,3 +104,5 @@ import { NumberKeyboard } from '@nutui/nutui-react' | \--nutui-numberkeyboard-key-confirm-font-color | 确认按键字体颜色 | `#fff` | | \--nutui-numberkeyboard-key-confirm-background-color | 确认按键背景颜色 | `$color-primary` | | \--nutui-numberkeyboard-background-color | 键盘容器背景色 | `$color-background` | + + diff --git a/src/packages/numberkeyboard/doc.taro.md b/src/packages/numberkeyboard/doc.taro.md index ed05405114..e3cad2fc09 100644 --- a/src/packages/numberkeyboard/doc.taro.md +++ b/src/packages/numberkeyboard/doc.taro.md @@ -104,3 +104,5 @@ import { NumberKeyboard } from '@nutui/nutui-react-taro' | \--nutui-numberkeyboard-key-confirm-font-color | 确认按键字体颜色 | `#fff` | | \--nutui-numberkeyboard-key-confirm-background-color | 确认按键背景颜色 | `$color-primary` | | \--nutui-numberkeyboard-background-color | 键盘容器背景色 | `$color-background` | + + diff --git a/src/packages/numberkeyboard/doc.zh-TW.md b/src/packages/numberkeyboard/doc.zh-TW.md index c0996eebb0..73d328481e 100644 --- a/src/packages/numberkeyboard/doc.zh-TW.md +++ b/src/packages/numberkeyboard/doc.zh-TW.md @@ -104,3 +104,5 @@ import { NumberKeyboard } from '@nutui/nutui-react' | \--nutui-numberkeyboard-key-confirm-font-color | 確認按鍵字體顏色 | `#fff` | | \--nutui-numberkeyboard-key-confirm-background-color | 確認按鍵背景顏色 | `$color-primary` | | \--nutui-numberkeyboard-background-color | 鍵盤容器背景色 | `$color-background` | + + diff --git a/src/packages/overlay/doc.en-US.md b/src/packages/overlay/doc.en-US.md index 4ffa427617..c489d7f502 100644 --- a/src/packages/overlay/doc.en-US.md +++ b/src/packages/overlay/doc.en-US.md @@ -86,3 +86,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-overlay-content-bg-color | Mask layer nested content background color | `$white` | | \--nutui-overlay-content-color | Mask layer nested content font color | `$color-title` | | \--nutui-overlay-animation-duration | Mask layer nested content animation duration | `0.3s` | + + diff --git a/src/packages/overlay/doc.md b/src/packages/overlay/doc.md index 57f13c1229..fca8b2d9e4 100644 --- a/src/packages/overlay/doc.md +++ b/src/packages/overlay/doc.md @@ -86,3 +86,5 @@ import { Overlay } from '@nutui/nutui-react' | \--nutui-overlay-content-bg-color | 遮罩层嵌套内容背景颜色 | `$white` | | \--nutui-overlay-content-color | 遮罩层嵌套内容字体颜色 | `$color-title` | | \--nutui-overlay-animation-duration | 遮罩层动画延时的时长 | `0.3s` | + + diff --git a/src/packages/overlay/doc.taro.md b/src/packages/overlay/doc.taro.md index 645682d93b..50e6f8d852 100644 --- a/src/packages/overlay/doc.taro.md +++ b/src/packages/overlay/doc.taro.md @@ -86,3 +86,5 @@ import { Overlay } from '@nutui/nutui-react-taro' | \--nutui-overlay-content-bg-color | 遮罩层嵌套内容背景颜色 | `$white` | | \--nutui-overlay-content-color | 遮罩层嵌套内容字体颜色 | `$color-title` | | \--nutui-overlay-animation-duration | 遮罩层动画延时的时长 | `0.3s` | + + diff --git a/src/packages/overlay/doc.zh-TW.md b/src/packages/overlay/doc.zh-TW.md index 929acff1af..8298a0ab4f 100644 --- a/src/packages/overlay/doc.zh-TW.md +++ b/src/packages/overlay/doc.zh-TW.md @@ -86,3 +86,5 @@ import { Overlay } from '@nutui/nutui-react' | \--nutui-overlay-content-bg-color | 遮罩層嵌套內容背景顏色 | `$white` | | \--nutui-overlay-content-color | 遮罩層嵌套內容字體顏色 | `$color-title` | | \--nutui-overlay-animation-duration | 遮罩層動畫延時的時長 | `0.3s` | + + diff --git a/src/packages/pagination/doc.en-US.md b/src/packages/pagination/doc.en-US.md index 5de67bf3fe..9e18c0da91 100644 --- a/src/packages/pagination/doc.en-US.md +++ b/src/packages/pagination/doc.en-US.md @@ -108,3 +108,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-pagination-lite-radius | lite mode radius | `12px` | | \--nutui-pagination-lite-background-color | lite mode background color | `var(--nutui-black-7)` | | \--nutui-pagination-lite-active-background-color | lite mode background color of current page | `var(--nutui-black-5)` | + + diff --git a/src/packages/pagination/doc.md b/src/packages/pagination/doc.md index 643f20eea3..35a9ff883c 100644 --- a/src/packages/pagination/doc.md +++ b/src/packages/pagination/doc.md @@ -108,3 +108,5 @@ import { Pagination } from '@nutui/nutui-react' | \--nutui-pagination-lite-radius | lite模式下的圆角 | `12px` | | \--nutui-pagination-lite-background-color | lite模式下的默认背景色 | `var(--nutui-black-7)` | | \--nutui-pagination-lite-active-background-color | lite模式下的当前选中的背景色 | `var(--nutui-black-5)` | + + diff --git a/src/packages/pagination/doc.taro.md b/src/packages/pagination/doc.taro.md index e16865b836..9a16ec5189 100644 --- a/src/packages/pagination/doc.taro.md +++ b/src/packages/pagination/doc.taro.md @@ -108,3 +108,5 @@ import { Pagination } from '@nutui/nutui-react-taro' | \--nutui-pagination-lite-radius | lite模式下的圆角 | `12px` | | \--nutui-pagination-lite-background-color | lite模式下的默认背景色 | `var(--nutui-black-7)` | | \--nutui-pagination-lite-active-background-color | lite模式下的当前选中的背景色 | `var(--nutui-black-5)` | + + diff --git a/src/packages/pagination/doc.zh-TW.md b/src/packages/pagination/doc.zh-TW.md index 68a3bbcd7f..d1b1e78ccb 100644 --- a/src/packages/pagination/doc.zh-TW.md +++ b/src/packages/pagination/doc.zh-TW.md @@ -108,3 +108,5 @@ import { Pagination } from '@nutui/nutui-react' | \--nutui-pagination-lite-radius | lite模式下的圓角 | `12px` | | \--nutui-pagination-lite-background-color | lite模式下的默認背景色 | `var(--nutui-black-7)` | | \--nutui-pagination-lite-active-background-color | lite模式下的當前選中的背景色 | `var(--nutui-black-5)` | + + diff --git a/src/packages/picker/doc.en-US.md b/src/packages/picker/doc.en-US.md index 53c7004f06..9ea82974cf 100644 --- a/src/packages/picker/doc.en-US.md +++ b/src/packages/picker/doc.en-US.md @@ -122,3 +122,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-picker-item-text-color | picker pannel item text color | `$color-title` | | \--nutui-picker-item-text-font-size | picker pannel item text font size | `14px` | | \--nutui-picker-item-active-line-border | picker pannel item active line border | `1px solid #d8d8d8` | + + diff --git a/src/packages/picker/doc.md b/src/packages/picker/doc.md index 38554d701e..3218f14b8f 100644 --- a/src/packages/picker/doc.md +++ b/src/packages/picker/doc.md @@ -122,3 +122,5 @@ import { Picker } from '@nutui/nutui-react' | \--nutui-picker-item-text-color | 面板每一条数据的字色 | `$color-title` | | \--nutui-picker-item-text-font-size | 面板每条数据字号 | `14px` | | \--nutui-picker-item-active-line-border | 面板当前选中的border值 | `1px solid #d8d8d8` | + + diff --git a/src/packages/picker/doc.taro.md b/src/packages/picker/doc.taro.md index 6d07ec41cb..dcec4ec499 100644 --- a/src/packages/picker/doc.taro.md +++ b/src/packages/picker/doc.taro.md @@ -122,3 +122,5 @@ import { Picker } from '@nutui/nutui-react-taro' | \--nutui-picker-item-text-color | 面板每一条数据的字色 | `$color-title` | | \--nutui-picker-item-text-font-size | 面板每条数据字号 | `14px` | | \--nutui-picker-item-active-line-border | 面板当前选中的border值 | `1px solid #d8d8d8` | + + diff --git a/src/packages/picker/doc.zh-TW.md b/src/packages/picker/doc.zh-TW.md index 354e679eb9..f0e5d4fb4c 100644 --- a/src/packages/picker/doc.zh-TW.md +++ b/src/packages/picker/doc.zh-TW.md @@ -122,3 +122,5 @@ import { Picker } from '@nutui/nutui-react' | \--nutui-picker-item-text-color | 面板每一條數據的字色 | `$color-title` | | \--nutui-picker-item-text-font-size | 面板每條數據字號 | `14px` | | \--nutui-picker-item-active-line-border | 面板當前選中的border值 | `1px solid #d8d8d8` | + + diff --git a/src/packages/pickerview/doc.en-US.md b/src/packages/pickerview/doc.en-US.md index 0193489639..e338c5c11d 100644 --- a/src/packages/pickerview/doc.en-US.md +++ b/src/packages/pickerview/doc.en-US.md @@ -92,3 +92,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-picker-item-text-font-size | The font size of each piece of data in the panel | `$font-size-base` | | \--nutui-picker-item-active-line-border | The border value currently selected by the panel | `1px solid $color-border` | | \--nut-picker-mask-background | Panel shade gradient value | `linear-gradient(180deg, var(--nutui-white-12), var(--nutui-white-7)),linear-gradient(0deg, var(--nutui-white-12), var(--nutui-white-7))` | + + diff --git a/src/packages/pickerview/doc.md b/src/packages/pickerview/doc.md index 378d917da3..7aaf10c4e4 100644 --- a/src/packages/pickerview/doc.md +++ b/src/packages/pickerview/doc.md @@ -92,3 +92,5 @@ import { PickerView } from '@nutui/nutui-react' | \--nutui-picker-item-text-font-size | 面板每条数据的字号 | `$font-size-base` | | \--nutui-picker-item-active-line-border | 面板当前选中的border值 | `1px solid $color-border` | | \--nut-picker-mask-background | 面板遮挡区渐变值 | `linear-gradient(180deg, var(--nutui-white-12), var(--nutui-white-7)),linear-gradient(0deg, var(--nutui-white-12), var(--nutui-white-7))` | + + diff --git a/src/packages/pickerview/doc.taro.md b/src/packages/pickerview/doc.taro.md index de7507dc6f..0f539263f9 100644 --- a/src/packages/pickerview/doc.taro.md +++ b/src/packages/pickerview/doc.taro.md @@ -92,3 +92,5 @@ import { PickerView } from '@nutui/nutui-react-taro' | \--nutui-picker-item-text-font-size | 面板每条数据的字号 | `$font-size-base` | | \--nutui-picker-item-active-line-border | 面板当前选中的border值 | `1px solid $color-border` | | \--nut-picker-mask-background | 面板遮挡区渐变值 | `linear-gradient(180deg, var(--nutui-white-12), var(--nutui-white-7)),linear-gradient(0deg, var(--nutui-white-12), var(--nutui-white-7))` | + + diff --git a/src/packages/pickerview/doc.zh-TW.md b/src/packages/pickerview/doc.zh-TW.md index cfe5e7360e..c12e0b7e15 100644 --- a/src/packages/pickerview/doc.zh-TW.md +++ b/src/packages/pickerview/doc.zh-TW.md @@ -92,3 +92,5 @@ import { PickerView } from '@nutui/nutui-react-taro' | \--nutui-picker-item-text-font-size | 面闆每條數據的字號 | `$font-size-base` | | \--nutui-picker-item-active-line-border | 面闆當前選中的border值 | `1px solid $color-border` | | \--nut-picker-mask-background | 面闆遮擋區漸變值 | `linear-gradient(180deg, var(--nutui-white-12), var(--nutui-white-7)),linear-gradient(0deg, var(--nutui-white-12), var(--nutui-white-7))` | + + diff --git a/src/packages/popover/doc.en-US.md b/src/packages/popover/doc.en-US.md index 2a40cedeef..b74f299d7e 100644 --- a/src/packages/popover/doc.en-US.md +++ b/src/packages/popover/doc.en-US.md @@ -166,3 +166,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-popover-disable-color | Option Disabled Colors | `$color-text-disabled` | | \--nutui-popover-menu-item-padding | The padding value of each item in the option area menu | `8px` | | \--nutui-popover-menu-item-width | The width value of each item in the options | `160px` | + + diff --git a/src/packages/popover/doc.md b/src/packages/popover/doc.md index d9c18016d1..d95440c0ed 100644 --- a/src/packages/popover/doc.md +++ b/src/packages/popover/doc.md @@ -168,3 +168,5 @@ PopoverList 属性是一个由对象构成的数组,数组中的每个对象 | \--nutui-popover-disable-color | 选项禁用的颜色 | `$color-text-disabled` | | \--nutui-popover-menu-item-padding | 选项区菜单每一项的 padding 值 | `8px` | | \--nutui-popover-menu-item-width | 选项区菜单每一项宽度值,超过宽度值后,会折行展示,保障信息的完整性 | `160px` | + + diff --git a/src/packages/popover/doc.taro.md b/src/packages/popover/doc.taro.md index fd5d185396..fab25e83ab 100644 --- a/src/packages/popover/doc.taro.md +++ b/src/packages/popover/doc.taro.md @@ -159,3 +159,5 @@ PopoverList 属性是一个由对象构成的数组,数组中的每个对象 | \--nutui-popover-disable-color | 选项禁用的颜色 | `$color-text-disabled` | | \--nutui-popover-menu-item-padding | 选项区菜单每一项的 padding 值 | `8px` | | \--nutui-popover-menu-item-width | 选项区菜单每一项宽度值,超过宽度值后,会折行展示,保障信息的完整性 | `160px` | + + diff --git a/src/packages/popover/doc.zh-TW.md b/src/packages/popover/doc.zh-TW.md index 8dfac8902c..f82646bc76 100644 --- a/src/packages/popover/doc.zh-TW.md +++ b/src/packages/popover/doc.zh-TW.md @@ -168,3 +168,5 @@ PopoverList 屬性是一個由對象構成的數組,數組中的每個對象 | \--nutui-popover-disable-color | 選項禁用的顏色 | `$color-text-disabled` | | \--nutui-popover-menu-item-padding | 選項區菜單每一項的 padding 值 | `8px` | | \--nutui-popover-menu-item-width | 選項區菜單每一項寬度值,超過寬度值後,會折行展示,保障信息的完整性 | `160px` | + + diff --git a/src/packages/popup/doc.en-US.md b/src/packages/popup/doc.en-US.md index d33af625bc..5a70366469 100644 --- a/src/packages/popup/doc.en-US.md +++ b/src/packages/popup/doc.en-US.md @@ -117,3 +117,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-popup-title-height | popup's title height | `50px` | | \--nutui-popup-title-border-bottom | popup's title border-bottom | `0` | | \--nutui-popup-animation-duration | lose icon's animation duration | `0.3s` | + + diff --git a/src/packages/popup/doc.md b/src/packages/popup/doc.md index 9e3d46d18d..8c23ec4402 100644 --- a/src/packages/popup/doc.md +++ b/src/packages/popup/doc.md @@ -117,3 +117,5 @@ import { Popup } from '@nutui/nutui-react' | \--nutui-popup-title-height | 标题栏的高度 | `50px` | | \--nutui-popup-title-border-bottom | 标题栏底部边框 | `0` | | \--nutui-popup-animation-duration | 弹框动画的延时 | `0.3s` | + + diff --git a/src/packages/popup/doc.taro.md b/src/packages/popup/doc.taro.md index 33a1f4807b..bda19db26e 100644 --- a/src/packages/popup/doc.taro.md +++ b/src/packages/popup/doc.taro.md @@ -131,3 +131,5 @@ import { Popup } from '@nutui/nutui-react-taro' ## FAQ 在 iOS 下,有时候 `lockScroll` 可能不生效,此刻在打开 `popup` 时,可将宿主页面的样式增加 `overflow: hidden;`,关闭弹层时,再重置样式。 + + diff --git a/src/packages/popup/doc.zh-TW.md b/src/packages/popup/doc.zh-TW.md index 773133790e..deac6ce84f 100644 --- a/src/packages/popup/doc.zh-TW.md +++ b/src/packages/popup/doc.zh-TW.md @@ -117,3 +117,5 @@ import { Popup } from '@nutui/nutui-react' | \--nutui-popup-title-height | 標題欄的高度 | `50px` | | \--nutui-popup-title-border-bottom | 標題欄底部邊框 | `0` | | \--nutui-popup-animation-duration | 彈框動畫的延時 | `0.3s` | + + diff --git a/src/packages/price/doc.en-US.md b/src/packages/price/doc.en-US.md index 6efc166c41..5f5bd6a92e 100644 --- a/src/packages/price/doc.en-US.md +++ b/src/packages/price/doc.en-US.md @@ -122,3 +122,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-price-symbol-small-size | small size symbol font size | `12px` | | \--nutui-price-integer-small-size | small Size integer part font size | `12px` | | \--nutui-price-decimal-small-size | small Size decimal part font size | `12px` | + + diff --git a/src/packages/price/doc.md b/src/packages/price/doc.md index f19ad0b34f..69a0dd5a06 100644 --- a/src/packages/price/doc.md +++ b/src/packages/price/doc.md @@ -122,3 +122,5 @@ import { Price } from '@nutui/nutui-react' | \--nutui-price-symbol-small-size | small 尺寸符号字体大小 | `12px` | | \--nutui-price-integer-small-size | small 尺寸整数部分字体大小 | `12px` | | \--nutui-price-decimal-small-size | small 尺寸小数部分字体大小 | `12px` | + + diff --git a/src/packages/price/doc.taro.md b/src/packages/price/doc.taro.md index 2ca6dc6736..9b9032ad3e 100644 --- a/src/packages/price/doc.taro.md +++ b/src/packages/price/doc.taro.md @@ -121,3 +121,5 @@ import { Price } from '@nutui/nutui-react-taro' | \--nutui-price-symbol-small-size | small 尺寸符号字体大小 | `12px` | | \--nutui-price-integer-small-size | small 尺寸整数部分字体大小 | `12px` | | \--nutui-price-decimal-small-size | small 尺寸小数部分字体大小 | `12px` | + + diff --git a/src/packages/price/doc.zh-TW.md b/src/packages/price/doc.zh-TW.md index 6d27fe12a8..898ee311eb 100644 --- a/src/packages/price/doc.zh-TW.md +++ b/src/packages/price/doc.zh-TW.md @@ -122,3 +122,5 @@ import { Price } from '@nutui/nutui-react' | \--nutui-price-symbol-small-size | small 尺寸符號字體大小 | `12px` | | \--nutui-price-integer-small-size | small 尺寸整數部分字體大小 | `12px` | | \--nutui-price-decimal-small-size | small 尺寸小數部分字體大小 | `12px` | + + diff --git a/src/packages/progress/doc.en-US.md b/src/packages/progress/doc.en-US.md index 9bc71c5f72..5f3b032a54 100644 --- a/src/packages/progress/doc.en-US.md +++ b/src/packages/progress/doc.en-US.md @@ -108,3 +108,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-progress-text-position-bottom | text bottom | `-4px` | | \--nutui-progress-text-border-radius | text borderRadius | `5px` | | \--nutui-progress-text-background | text background | `$progress-color` | + + diff --git a/src/packages/progress/doc.md b/src/packages/progress/doc.md index dd950dc861..447bbd3baa 100644 --- a/src/packages/progress/doc.md +++ b/src/packages/progress/doc.md @@ -108,3 +108,5 @@ import { Progress } from '@nutui/nutui-react' | \--nutui-progress-text-position-bottom | 文本定位 bottom | `-4px` | | \--nutui-progress-text-border-radius | 文本边框圆角 | `5px` | | \--nutui-progress-text-background | 文本背景颜色 | `$progress-color` | + + diff --git a/src/packages/progress/doc.taro.md b/src/packages/progress/doc.taro.md index 6d876efafd..402264bb9f 100644 --- a/src/packages/progress/doc.taro.md +++ b/src/packages/progress/doc.taro.md @@ -108,3 +108,5 @@ import { Progress } from '@nutui/nutui-react-taro' | \--nutui-progress-text-position-bottom | 文本定位 bottom | `-4px` | | \--nutui-progress-text-border-radius | 文本边框圆角 | `5px` | | \--nutui-progress-text-background | 文本背景颜色 | `$progress-color` | + + diff --git a/src/packages/progress/doc.zh-TW.md b/src/packages/progress/doc.zh-TW.md index 75017082f1..34ce57ef2f 100644 --- a/src/packages/progress/doc.zh-TW.md +++ b/src/packages/progress/doc.zh-TW.md @@ -108,3 +108,5 @@ import { Progress } from '@nutui/nutui-react' | \--nutui-progress-text-position-bottom | 文本定位 bottom | `-4px` | | \--nutui-progress-text-border-radius | 文本邊框圓角 | `5px` | | \--nutui-progress-text-background | 文本背景顏色 | `$progress-color` | + + diff --git a/src/packages/pulltorefresh/doc.en-US.md b/src/packages/pulltorefresh/doc.en-US.md index ad73ae61d5..8d3da763ad 100644 --- a/src/packages/pulltorefresh/doc.en-US.md +++ b/src/packages/pulltorefresh/doc.en-US.md @@ -55,3 +55,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-pulltorefresh-icon-width | Swipe to icon width | `36px` | | \--nutui-pulltorefresh-icon-height | Swipe to icon height | `26px` | | \--nutui-pulltorefresh-color-primary | When background is deep | `$color-primay` | + + diff --git a/src/packages/pulltorefresh/doc.md b/src/packages/pulltorefresh/doc.md index fa99ed8c5d..66240cae44 100644 --- a/src/packages/pulltorefresh/doc.md +++ b/src/packages/pulltorefresh/doc.md @@ -55,3 +55,5 @@ import { PullToRefresh } from '@nutui/nutui-react' | \--nutui-pulltorefresh-icon-width | 下拉时icon宽度 | `36px` | | \--nutui-pulltorefresh-icon-height | 下拉时icon高度 | `26px` | | \--nutui-pulltorefresh-color-primary | 深色背景模式 | `$color-primay` | + + diff --git a/src/packages/pulltorefresh/doc.taro.md b/src/packages/pulltorefresh/doc.taro.md index f87497af99..428244afd0 100644 --- a/src/packages/pulltorefresh/doc.taro.md +++ b/src/packages/pulltorefresh/doc.taro.md @@ -66,3 +66,5 @@ import { PullToRefresh } from '@nutui/nutui-react-taro' | \--nutui-pulltorefresh-icon-width | 下拉时icon宽度 | `36px` | | \--nutui-pulltorefresh-icon-height | 下拉时icon高度 | `26px` | | \--nutui-pulltorefresh-color-primary | 深色背景模式 | `$color-primay` | + + diff --git a/src/packages/pulltorefresh/doc.zh-TW.md b/src/packages/pulltorefresh/doc.zh-TW.md index d31df3f823..5efadeae03 100644 --- a/src/packages/pulltorefresh/doc.zh-TW.md +++ b/src/packages/pulltorefresh/doc.zh-TW.md @@ -55,3 +55,5 @@ import { PullToRefresh } from '@nutui/nutui-react' | \--nutui-pulltorefresh-icon-width | 下拉時icon寬度 | `36px` | | \--nutui-pulltorefresh-icon-height | 下拉時icon高度 | `26px` | | \--nutui-pulltorefresh-color-primary | 深色背景模式 | `$color-primay` | + + diff --git a/src/packages/radio/doc.en-US.md b/src/packages/radio/doc.en-US.md index 1bb01caaf3..f0e8648bbf 100644 --- a/src/packages/radio/doc.en-US.md +++ b/src/packages/radio/doc.en-US.md @@ -161,3 +161,5 @@ The component provides the following CSS Variables, which can be used for custom | \--nutui-radiogroup-radio-margin | Margin Right of each radio in Group mode | `20px` | | \--nutui-radiogroup-radio-margin-bottom | Margin Bottom of each radio in Group mode | `5px` | | \--nutui-radiogroup-radio-label-margin | Label margin in each radio in Group mode | `0 5px 0 5px` | + + diff --git a/src/packages/radio/doc.md b/src/packages/radio/doc.md index 7ac49858d8..5456777a93 100644 --- a/src/packages/radio/doc.md +++ b/src/packages/radio/doc.md @@ -161,3 +161,5 @@ import { Radio } from '@nutui/nutui-react' | \--nutui-radiogroup-radio-margin | Group模式下每个 radio 的右侧边距 | `20px` | | \--nutui-radiogroup-radio-margin-bottom | Group模式下每个 radio 的底部边距 | `5px` | | \--nutui-radiogroup-radio-label-margin | Group模式下每个 radio 中的 label 外边距 | `0 5px 0 5px` | + + diff --git a/src/packages/radio/doc.taro.md b/src/packages/radio/doc.taro.md index 21178df905..7eebb16daa 100644 --- a/src/packages/radio/doc.taro.md +++ b/src/packages/radio/doc.taro.md @@ -161,3 +161,5 @@ import { Radio } from '@nutui/nutui-react-taro' | \--nutui-radiogroup-radio-margin | Group模式下每个 radio 的右侧边距 | `20px` | | \--nutui-radiogroup-radio-margin-bottom | Group模式下每个 radio 的底部边距 | `5px` | | \--nutui-radiogroup-radio-label-margin | Group模式下每个 radio 中的 label 外边距 | `0 5px 0 5px` | + + diff --git a/src/packages/radio/doc.zh-TW.md b/src/packages/radio/doc.zh-TW.md index 3b95884b74..fe83112e86 100644 --- a/src/packages/radio/doc.zh-TW.md +++ b/src/packages/radio/doc.zh-TW.md @@ -160,3 +160,5 @@ import { Radio } from '@nutui/nutui-react' | \--nutui-radio-button-border-radius | shape為button的圓角 | `15px` | | \--nutui-radiogroup-radio-margin | Group模式下每個 radio 的外邊距 | `0 20px 5px 0` | | \--nutui-radiogroup-radio-label-margin | Group模式下每個 radio 中的 label 外邊距 | `0 5px 0 5px` | + + diff --git a/src/packages/range/doc.en-US.md b/src/packages/range/doc.en-US.md index 4cac4ac8a4..f5e9092ae4 100644 --- a/src/packages/range/doc.en-US.md +++ b/src/packages/range/doc.en-US.md @@ -154,3 +154,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-range-button-width | button width | `24px` | | \--nutui-range-button-height | button height | `24px` | | \--nutui-range-button-border | button border | `1px solid $color-primary` | + + diff --git a/src/packages/range/doc.md b/src/packages/range/doc.md index 4f60fcf98b..b836d2cc24 100644 --- a/src/packages/range/doc.md +++ b/src/packages/range/doc.md @@ -154,3 +154,5 @@ import { Range } from '@nutui/nutui-react' | \--nutui-range-button-width | 按钮宽度 | `24px` | | \--nutui-range-button-height | 按钮高度 | `24px` | | \--nutui-range-button-border | 按钮边框 | `1px solid $color-primary` | + + diff --git a/src/packages/range/doc.taro.md b/src/packages/range/doc.taro.md index 16dad755f6..55ea0f7f73 100644 --- a/src/packages/range/doc.taro.md +++ b/src/packages/range/doc.taro.md @@ -154,3 +154,5 @@ import { Range } from '@nutui/nutui-react-taro' | \--nutui-range-button-width | 按钮宽度 | `24px` | | \--nutui-range-button-height | 按钮高度 | `24px` | | \--nutui-range-button-border | 按钮边框 | `1px solid $color-primary` | + + diff --git a/src/packages/range/doc.zh-TW.md b/src/packages/range/doc.zh-TW.md index a0046a5630..3fe2c7b88f 100644 --- a/src/packages/range/doc.zh-TW.md +++ b/src/packages/range/doc.zh-TW.md @@ -154,3 +154,5 @@ import { Range } from '@nutui/nutui-react' | \--nutui-range-button-width | 按鈕寬度 | `24px` | | \--nutui-range-button-height | 按鈕高度 | `24px` | | \--nutui-range-button-border | 按鈕邊框 | `1px solid $color-primary` | + + diff --git a/src/packages/rate/doc.en-US.md b/src/packages/rate/doc.en-US.md index fa90b6072d..029e68a4fa 100644 --- a/src/packages/rate/doc.en-US.md +++ b/src/packages/rate/doc.en-US.md @@ -141,3 +141,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-rate-icon-size | icon size | `12px` | | \--nutui-rate-font-color | Rating font color | `$color-primary-icon` | | \--nutui-rate-font-size | Rating font size | `12px` | + + diff --git a/src/packages/rate/doc.md b/src/packages/rate/doc.md index d9d1c69c8f..c058dbb949 100644 --- a/src/packages/rate/doc.md +++ b/src/packages/rate/doc.md @@ -141,3 +141,5 @@ import { Rate } from '@nutui/nutui-react' | \--nutui-rate-icon-size | icon 尺寸 | `12px` | | \--nutui-rate-font-color | 评分字体颜色 | `$color-primary-icon` | | \--nutui-rate-font-size | 评分字体大小 | `12px` | + + diff --git a/src/packages/rate/doc.taro.md b/src/packages/rate/doc.taro.md index 1709373b14..a113354b92 100644 --- a/src/packages/rate/doc.taro.md +++ b/src/packages/rate/doc.taro.md @@ -141,3 +141,5 @@ import { Rate } from '@nutui/nutui-react-taro' | \--nutui-rate-icon-size | icon 尺寸 | `12px` | | \--nutui-rate-font-color | 评分字体颜色 | `$color-primary-icon` | | \--nutui-rate-font-size | 评分字体大小 | `12px` | + + diff --git a/src/packages/rate/doc.zh-TW.md b/src/packages/rate/doc.zh-TW.md index e64b1ee237..67b7d6690f 100644 --- a/src/packages/rate/doc.zh-TW.md +++ b/src/packages/rate/doc.zh-TW.md @@ -141,3 +141,5 @@ import { Rate } from '@nutui/nutui-react' | \--nutui-rate-icon-size | icon 尺寸 | `12px` | | \--nutui-rate-font-color | 評分字體顏色 | `$color-primary-icon` | | \--nutui-rate-font-size | 評分字體大小 | `12px` | + + diff --git a/src/packages/resultpage/doc.en-US.md b/src/packages/resultpage/doc.en-US.md index 4709a4d4b6..247630d092 100644 --- a/src/packages/resultpage/doc.en-US.md +++ b/src/packages/resultpage/doc.en-US.md @@ -82,3 +82,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-resultpage-description-color | Describe the text color | `$color-text` | | \--nutui-resultpage-description-line-height | Describe the line height | `20px` | | \--nutui-resultpage-actions-margin-topt | The margin-top value of the operation area | `16px` | + + diff --git a/src/packages/resultpage/doc.md b/src/packages/resultpage/doc.md index 71b174aab4..e6c63a901a 100644 --- a/src/packages/resultpage/doc.md +++ b/src/packages/resultpage/doc.md @@ -82,3 +82,5 @@ import { ResultPage } from '@nutui/nutui-react' | \--nutui-resultpage-description-color | 描述的文字颜色 | `$color-text` | | \--nutui-resultpage-description-line-height | 描述的行高 | `20px` | | \--nutui-resultpage-actions-margin-topt | 操作区域的margin-top值 | `16px` | + + diff --git a/src/packages/resultpage/doc.taro.md b/src/packages/resultpage/doc.taro.md index a58442854d..ce65ad7a5f 100644 --- a/src/packages/resultpage/doc.taro.md +++ b/src/packages/resultpage/doc.taro.md @@ -82,3 +82,5 @@ import { ResultPage } from '@nutui/nutui-react-taro' | \--nutui-resultpage-description-color | 描述的文字颜色 | `$color-text` | | \--nutui-resultpage-description-line-height | 描述的行高 | `20px` | | \--nutui-resultpage-actions-margin-top | 操作区域的margin-top值 | `16px` | + + diff --git a/src/packages/resultpage/doc.zh-TW.md b/src/packages/resultpage/doc.zh-TW.md index a244df17cd..5a14973b13 100644 --- a/src/packages/resultpage/doc.zh-TW.md +++ b/src/packages/resultpage/doc.zh-TW.md @@ -82,3 +82,5 @@ import { ResultPage } from '@nutui/nutui-react' | \--nutui-resultpage-description-color | 描述的文字顏色 | `$color-text` | | \--nutui-resultpage-description-line-height | 描述的行高 | `20px` | | \--nutui-resultpage-actions-margin-topt | 操作區域的margin-top值 | `16px` | + + diff --git a/src/packages/safearea/doc.en-US.md b/src/packages/safearea/doc.en-US.md index a279c77c35..95ef2e6f17 100644 --- a/src/packages/safearea/doc.en-US.md +++ b/src/packages/safearea/doc.en-US.md @@ -35,3 +35,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default Value | | --- | --- | --- | | \--nutui-safe-area-multiple | Displayed multiple | `1` | + + diff --git a/src/packages/safearea/doc.md b/src/packages/safearea/doc.md index 681cae5786..687a9c8451 100644 --- a/src/packages/safearea/doc.md +++ b/src/packages/safearea/doc.md @@ -35,3 +35,5 @@ import { SafeArea } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-safe-area-multiple | 显示的倍数 | `1` | + + diff --git a/src/packages/safearea/doc.taro.md b/src/packages/safearea/doc.taro.md index 2277f31b79..b1b2832d7e 100644 --- a/src/packages/safearea/doc.taro.md +++ b/src/packages/safearea/doc.taro.md @@ -35,3 +35,5 @@ import { SafeArea } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-safe-area-multiple | 显示的倍数 | `1` | + + diff --git a/src/packages/safearea/doc.zh-TW.md b/src/packages/safearea/doc.zh-TW.md index 339e2af5be..c2bef67c5c 100644 --- a/src/packages/safearea/doc.zh-TW.md +++ b/src/packages/safearea/doc.zh-TW.md @@ -35,3 +35,5 @@ import { SafeArea } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-safe-area-multiple | 显示的倍数 | `1` | + + diff --git a/src/packages/searchbar/doc.en-US.md b/src/packages/searchbar/doc.en-US.md index ca862411f1..acdd99af30 100644 --- a/src/packages/searchbar/doc.en-US.md +++ b/src/packages/searchbar/doc.en-US.md @@ -130,3 +130,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-searchbar-input-text-color | searchbar input text color | `$color-title` | | \--nutui-searchbar-input-curror-color | searchbar input curror color | `$color-title` | | \--nutui-searchbar-input-text-align | searchbar input text align | `left` | + + diff --git a/src/packages/searchbar/doc.md b/src/packages/searchbar/doc.md index c0f20da75a..2e27cc0dbd 100644 --- a/src/packages/searchbar/doc.md +++ b/src/packages/searchbar/doc.md @@ -129,3 +129,5 @@ import { SearchBar } from '@nutui/nutui-react' | \--nutui-searchbar-input-text-color | 搜索框输入区字色 | `$color-title` | | \--nutui-searchbar-input-curror-color | 搜索框输入区输入色 | `$color-title` | | \--nutui-searchbar-input-text-align | 搜索框输入区对齐方式 | `left` | + + diff --git a/src/packages/searchbar/doc.taro.md b/src/packages/searchbar/doc.taro.md index d52a065fd8..8de25fb373 100644 --- a/src/packages/searchbar/doc.taro.md +++ b/src/packages/searchbar/doc.taro.md @@ -129,3 +129,5 @@ import { SearchBar } from '@nutui/nutui-react-taro' | \--nutui-searchbar-input-text-color | 搜索框输入区字色 | `$color-title` | | \--nutui-searchbar-input-curror-color | 搜索框输入区输入色 | `$color-title` | | \--nutui-searchbar-input-text-align | 搜索框输入区对齐方式 | `left` | + + diff --git a/src/packages/searchbar/doc.zh-TW.md b/src/packages/searchbar/doc.zh-TW.md index 9bd3205684..9e2ec4a93a 100644 --- a/src/packages/searchbar/doc.zh-TW.md +++ b/src/packages/searchbar/doc.zh-TW.md @@ -129,3 +129,5 @@ import { SearchBar } from '@nutui/nutui-react' | \--nutui-searchbar-input-text-color | 搜索框輸入區字色 | `$color-title` | | \--nutui-searchbar-input-curror-color | 搜索框輸入區輸入色 | `$color-title` | | \--nutui-searchbar-input-text-align | 搜索框輸入區對齊方式 | `left` | + + diff --git a/src/packages/segmented/doc.en-US.md b/src/packages/segmented/doc.en-US.md index acc286277f..a7192279d8 100644 --- a/src/packages/segmented/doc.en-US.md +++ b/src/packages/segmented/doc.en-US.md @@ -72,3 +72,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-segmented-item-color | Text color for options in the segmented selector | `$color-primary-text` | | \--nutui-segmented-active-background | Background color for selected options in the segmented selector | `$color-mask-part` | | \--nutui-segmented-icon-margin-right | Spacing between options in the segmented selector | `$color-mask-part` | + + diff --git a/src/packages/segmented/doc.md b/src/packages/segmented/doc.md index bd7d7bd3f0..9eb21e6e83 100644 --- a/src/packages/segmented/doc.md +++ b/src/packages/segmented/doc.md @@ -72,3 +72,5 @@ import { Segmented } from '@nutui/nutui-react' | \--nutui-segmented-item-color | 分段选择器选项文本颜色 | `$color-primary-text` | | \--nutui-segmented-active-background | 分段选择器选项选中的背景颜色 | `$color-mask-part` | | \--nutui-segmented-icon-margin-right | 分段选择器选项选间距 | `$color-mask-part` | + + diff --git a/src/packages/segmented/doc.taro.md b/src/packages/segmented/doc.taro.md index baa117d2db..f41463fac8 100644 --- a/src/packages/segmented/doc.taro.md +++ b/src/packages/segmented/doc.taro.md @@ -72,3 +72,5 @@ import { Segmented } from '@nutui/nutui-react-taro' | \--nutui-segmented-item-color | 分段选择器选项文本颜色 | `$color-primary-text` | | \--nutui-segmented-active-background | 分段选择器选项选中的背景颜色 | `$color-mask-part` | | \--nutui-segmented-icon-margin-right | 分段选择器选项选间距 | `$color-mask-part` | + + diff --git a/src/packages/segmented/doc.zh-TW.md b/src/packages/segmented/doc.zh-TW.md index af4a447c43..92ef8242cf 100644 --- a/src/packages/segmented/doc.zh-TW.md +++ b/src/packages/segmented/doc.zh-TW.md @@ -72,3 +72,5 @@ import { Segmented } from '@nutui/nutui-react' | \--nutui-segmented-item-color | 分段選擇器選項文字顏色 | `$color-primary-text` | | \--nutui-segmented-active-background | 分段選擇器選項選取的背景顏色 | `$color-mask-part` | | \--nutui-segmented-icon-margin-right | 分段選擇器選項選間距 | `$color-mask-part` | + + diff --git a/src/packages/shortpassword/doc.en-US.md b/src/packages/shortpassword/doc.en-US.md index 19029a4704..ebb54dec99 100644 --- a/src/packages/shortpassword/doc.en-US.md +++ b/src/packages/shortpassword/doc.en-US.md @@ -94,3 +94,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-shortpassword-border-color | border color | `#ddd` | | \--nutui-shortpassword-error | error color | `$color-primary` | | \--nutui-shortpassword-forget | forget color | `rgba(128, 128, 128, 1)` | + + diff --git a/src/packages/shortpassword/doc.md b/src/packages/shortpassword/doc.md index 1af6f1d8cf..a62910d9be 100644 --- a/src/packages/shortpassword/doc.md +++ b/src/packages/shortpassword/doc.md @@ -94,3 +94,5 @@ import { ShortPassword } from '@nutui/nutui-react' | \--nutui-shortpassword-border-color | 边框颜色 | `#ddd` | | \--nutui-shortpassword-error | 错误提示字体颜色 | `$color-primary` | | \--nutui-shortpassword-forget | 忘记密码字体颜色 | `rgba(128, 128, 128, 1)` | + + diff --git a/src/packages/shortpassword/doc.taro.md b/src/packages/shortpassword/doc.taro.md index 1b87117f1b..a8221ff075 100644 --- a/src/packages/shortpassword/doc.taro.md +++ b/src/packages/shortpassword/doc.taro.md @@ -94,3 +94,5 @@ import { ShortPassword } from '@nutui/nutui-react-taro' | \--nutui-shortpassword-border-color | 边框颜色 | `#ddd` | | \--nutui-shortpassword-error | 错误提示字体颜色 | `$color-primary` | | \--nutui-shortpassword-forget | 忘记密码字体颜色 | `rgba(128, 128, 128, 1)` | + + diff --git a/src/packages/shortpassword/doc.zh-TW.md b/src/packages/shortpassword/doc.zh-TW.md index 0db6e9272e..066b596012 100644 --- a/src/packages/shortpassword/doc.zh-TW.md +++ b/src/packages/shortpassword/doc.zh-TW.md @@ -94,3 +94,5 @@ import { ShortPassword } from '@nutui/nutui-react' | \--nutui-shortpassword-border-color | 邊框顏色 | `#ddd` | | \--nutui-shortpassword-error | 錯誤提示字體顏色 | `$color-primary` | | \--nutui-shortpassword-forget | 忘記密碼字體顏色 | `rgba(128, 128, 128, 1)` | + + diff --git a/src/packages/sidebar/doc.en-US.md b/src/packages/sidebar/doc.en-US.md index a3fc90f201..e81ba704af 100644 --- a/src/packages/sidebar/doc.en-US.md +++ b/src/packages/sidebar/doc.en-US.md @@ -92,3 +92,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-sidebar-active-color | Font color in active state | `$color-primary` | | \--nutui-sidebar-item-background | The background color of the content area | `$white` | | \--nutui-sidebar-item-padding | Padding of the content area | `24px 20px` | + + diff --git a/src/packages/sidebar/doc.md b/src/packages/sidebar/doc.md index 6e720a5e82..f841c3548e 100644 --- a/src/packages/sidebar/doc.md +++ b/src/packages/sidebar/doc.md @@ -92,3 +92,5 @@ import { SideBar } from '@nutui/nutui-react' | \--nutui-sidebar-active-color | 激活状态下的字体颜色 | `$color-primary` | | \--nutui-sidebar-item-background | 内容区域的背景色 | `$white` | | \--nutui-sidebar-item-padding | 内容区域的内边距 | `24px 20px` | + + diff --git a/src/packages/sidebar/doc.taro.md b/src/packages/sidebar/doc.taro.md index b51fbdf7b0..94f5f2687a 100644 --- a/src/packages/sidebar/doc.taro.md +++ b/src/packages/sidebar/doc.taro.md @@ -92,3 +92,5 @@ import { SideBar } from '@nutui/nutui-react-taro' | \--nutui-sidebar-active-color | 激活状态下的字体颜色 | `$color-primary` | | \--nutui-sidebar-item-background | 内容区域的背景色 | `$white` | | \--nutui-sidebar-item-padding | 内容区域的内边距 | `24px 20px` | + + diff --git a/src/packages/sidebar/doc.zh-TW.md b/src/packages/sidebar/doc.zh-TW.md index 52cb9ed793..27a6720d60 100644 --- a/src/packages/sidebar/doc.zh-TW.md +++ b/src/packages/sidebar/doc.zh-TW.md @@ -92,3 +92,5 @@ import { SideBar } from '@nutui/nutui-react' | \--nutui-sidebar-active-color | 激活狀態下的字體顏色 | `$color-primary` | | \--nutui-sidebar-item-background | 內容區域的背景色 | `$white` | | \--nutui-sidebar-item-padding | 內容區域的內邊距 | `24px 20px` | + + diff --git a/src/packages/sidenavbar/doc.en-US.md b/src/packages/sidenavbar/doc.en-US.md new file mode 100644 index 0000000000..a4bb8fd0e0 --- /dev/null +++ b/src/packages/sidenavbar/doc.en-US.md @@ -0,0 +1,84 @@ +# SideNavBar组件 + +> **⚠️ Note:** This component is deprecated and will be removed in the future. Please use [SideBar](#/en-US/component/sidebar) instead. + +For content selection and switching + +## Import + +```tsx +import { SideNavBar, SubSideNavBar, SideNavBarItem } from '@nutui/nutui-react' +``` + +## Demo + +### Basic Usage + +:::demo + + + +::: + +### Navigation Nesting (Up To Three Levels Recommended) + +:::demo + + + +::: + +## SideNavBar + +### Props + +| Property | Description | Type | Default | +| --- | --- | --- | --- | +| visible | whether the component is visible | `boolean` | `false` | +| title | overall title | `string` | `-` | +| width | mask width in percentage | `string` | `80%` | +| position | popup position | `left` \| `right` | `left` | +| indent | indent width | `number` | `20` | +| onClose | Triggered when the mask is closed | `-` | `-` | + +## SubSideNavBar + +### Props + +| Property | Description | Type | Default | +| --- | --- | --- | --- | +| value | unique identifier for navigation | `string` \| `number` | `-` | +| title | overall title | `string` | `-` | +| open | whether the navigation is expanded by default | `boolean` | `true` | +| onClick | Navigation click | `({title: string, value: string \| number, isShow: boolean}) => void` | `-` | + +## SideNavBarItem + +### Props + +| Property | Description | Type | Default | +| --- | --- | --- | --- | +| value | unique identifier for navigation | `string` \| `number` | `-` | +| title | overall title | `string` | `-` | +| onClick | Navigation click | `({title: string, value: string \| number}) => void` | `-` | + +## Theming + +### CSS Variables + +The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/component/configprovider). + +| Name | Description | Default | +| --- | --- | --- | +| \--nutui-sidenavbar-content-bg-color | sidebar navigation background color | `$white` | +| \--nutui-sidenavbar-item-height | The height of each item in the sidebar | `40px` | +| \--nutui-sidenavbar-title-padding | padding for title | `10px 8px 10px 20px` | +| \--nutui-sidenavbar-title-background | The background color of the title | `$color-background` | +| \--nutui-sidenavbar-title-color | The font color of the title | `$color-title` | +| \--nutui-sidenavbar-sub-title-padding | Padding of subtitle | `10px 8px 10px 35px` | +| \--nutui-sidenavbar-sub-title-background | Subtitle background color | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-title-color | Subtitle font color | `$color-title` | +| \--nutui-sidenavbar-sub-list-background | option list background color | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-list-color | option list font color | `$color-title` | + + diff --git a/src/packages/sidenavbar/doc.md b/src/packages/sidenavbar/doc.md new file mode 100644 index 0000000000..f11f619223 --- /dev/null +++ b/src/packages/sidenavbar/doc.md @@ -0,0 +1,84 @@ +# SideNavBar组件 + +> **⚠️ 注意:** 该组件即将被废弃。请使用 [SideBar](#/zh-CN/component/sidebar) 代替。 + +用于内容选择和切换 + +## 引入 + +```tsx +import { SideNavBar, SubSideNavBar, SideNavBarItem } from '@nutui/nutui-react' +``` + +## 示例代码 + +### 基础用法 + +:::demo + + + +::: + +### 导航嵌套(建议最多三层) + +:::demo + + + +::: + +## SideNavBar + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| visible | 组件是否显示 | `boolean` | `false` | +| title | 整体标题 | `string` | `-` | +| width | 遮罩宽度百分比 | `string` | `80%` | +| position | 弹出位置 | `left` \| `right` | `left` | +| indent | 缩进宽度 | `number` | `20` | +| onClose | 关闭遮罩时触发 | `-` | `-` | + +## SubSideNavBar + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| value | 导航唯一标识 | `string` \| `number` | `-` | +| title | 整体标题 | `string` | `-` | +| open | 导航是否默认展开 | `boolean` | `true` | +| onClick | 导航点击 | `({title: string, value: string \| number, isShow: boolean}) => void` | `-` | + +## SideNavBarItem + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| value | 导航唯一标识 | `string` \| `number` | `-` | +| title | 整体标题 | `string` | `-` | +| onClick | 导航点击 | `({title: string, value: string \| number}) => void` | `-` | + +## 主题定制 + +### 样式变量 + +组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/component/configprovider)。 + +| 名称 | 说明 | 默认值 | +| --- | --- | --- | +| \--nutui-sidenavbar-content-bg-color | 侧边栏导航背景色 | `$white` | +| \--nutui-sidenavbar-item-height | 侧边栏每项的高度 | `40px` | +| \--nutui-sidenavbar-title-padding | 标题的内边距 | `10px 8px 10px 20px` | +| \--nutui-sidenavbar-title-background | 标题的背景色 | `$color-background` | +| \--nutui-sidenavbar-title-color | 标题的字体颜色 | `$color-title` | +| \--nutui-sidenavbar-sub-title-padding | 子标题的内边距 | `10px 8px 10px 35px` | +| \--nutui-sidenavbar-sub-title-background | 子标题背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-title-color | 子标题字体颜色 | `$color-title` | +| \--nutui-sidenavbar-sub-list-background | 选项列表背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-list-color | 选项列表字体颜色 | `$color-title` | + + diff --git a/src/packages/sidenavbar/doc.taro.md b/src/packages/sidenavbar/doc.taro.md new file mode 100644 index 0000000000..f5cfd9eb06 --- /dev/null +++ b/src/packages/sidenavbar/doc.taro.md @@ -0,0 +1,87 @@ +# SideNavBar组件 + +> **⚠️ 注意:** 该组件即将被废弃。请使用 [SideBar](#/zh-CN/component/sidebar) 代替。 +> 用于内容选择和切换 + +## 引入 + +```tsx +import { + SideNavBar, + SubSideNavBar, + SideNavBarItem, +} from '@nutui/nutui-react-taro' +``` + +## 示例代码 + +### 基础用法 + +:::demo + + + +::: + +### 嵌套及回调 + +:::demo + + + +::: + +## SideNavBar + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| visible | 组件是否显示 | `boolean` | `false` | +| title | 整体标题 | `string` | `-` | +| width | 遮罩宽度百分比 | `string` | `80%` | +| position | 弹出位置 | `left` \| `right` | `left` | +| indent | 缩进宽度 | `number` | `20` | +| onClose | 关闭遮罩时触发 | `-` | `-` | + +## SubSideNavBar + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| key | 导航唯一标识 | `string` \| `number` | `-` | +| title | 整体标题 | `string` | `-` | +| open | 导航是否默认展开 | `boolean` | `true` | +| onClick | 导航点击 | `({title: string, value: string \| number, isShow: boolean}) => void` | `-` | + +## SideNavBarItem + +### Props + +| 属性 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| key | 导航唯一标识 | `string` \| `number` | `-` | +| title | 整体标题 | `string` | `-` | +| onClick | 导航点击 | `({title: string, value: string \| number}) => void` | `-` | + +## 主题定制 + +### 样式变量 + +组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/component/configprovider)。 + +| 名称 | 说明 | 默认值 | +| --- | --- | --- | +| \--nutui-sidenavbar-content-bg-color | 侧边栏导航背景色 | `$white` | +| \--nutui-sidenavbar-item-height | 侧边栏每项的高度 | `40px` | +| \--nutui-sidenavbar-title-padding | 标题的内边距 | `10px 8px 10px 20px` | +| \--nutui-sidenavbar-title-background | 标题的背景色 | `$color-background` | +| \--nutui-sidenavbar-title-color | 标题的字体颜色 | `$color-title` | +| \--nutui-sidenavbar-sub-title-padding | 子标题的内边距 | `10px 8px 10px 35px` | +| \--nutui-sidenavbar-sub-title-background | 子标题背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-title-color | 子标题字体颜色 | `$color-title` | +| \--nutui-sidenavbar-sub-list-background | 选项列表背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-list-color | 选项列表字体颜色 | `$color-title` | + + diff --git a/src/packages/sidenavbar/doc.zh-TW.md b/src/packages/sidenavbar/doc.zh-TW.md new file mode 100644 index 0000000000..e4592447f2 --- /dev/null +++ b/src/packages/sidenavbar/doc.zh-TW.md @@ -0,0 +1,84 @@ +# SideNavBar組件 + +> **⚠️ 注意:** 該組件即將被廢棄。請使用 [SideBar](#/zh-CN/component/sidebar) 代替。 + +用於內容選擇和切換 + +## 引入 + +```tsx +import { SideNavBar, SubSideNavBar, SideNavBarItem } from '@nutui/nutui-react' +``` + +## 示例代碼 + +### 基礎用法 + +:::demo + + + +::: + +### 導航嵌套(建議最多三層) + +:::demo + + + +::: + +## SideNavBar + +### Props + +| 屬性 | 說明 | 類型 | 默認值 | +| --- | --- | --- | --- | +| visible | 組件是否顯示 | `boolean` | `false` | +| title | 整體標題 | `string` | `-` | +| width | 遮罩寬度百分比 | `string` | `80%` | +| position | 彈出位置 | `left` \| `right` | `left` | +| offset | 縮進寬度 | `number` | `20` | +| onClose | 關閉遮罩時觸發 | `-` | `-` | + +## SubSideNavBar + +### Props + +| 屬性 | 說明 | 類型 | 默認值 | +| --- | --- | --- | --- | +| value | 導航唯一標識 | `string` \| `number` | `-` | +| title | 整體標題 | `string` | `-` | +| open | 導航是否默認展開 | `boolean` | `true` | +| onClick | 導航點擊 | `({title: string, value: string \| number, isShow: boolean}) => void` | `-` | + +## SideNavBarItem + +### Props + +| 屬性 | 說明 | 類型 | 默認值 | +| --- | --- | --- | --- | +| value | 導航唯一標識 | `string` \| `number` | `-` | +| title | 整體標題 | `string` | `-` | +| onClick | 導航點擊 | `({title: string, value: string \| number}) => void` | `-` | + +## 主題定制 + +### 樣式變量 + +組件提供了下列 CSS 變量,可用於自定義樣式,使用方法請參考 [ConfigProvider 組件](#/zh-CN/component/configprovider)。 + +| 名稱 | 說明 | 默認值 | +| --- | --- | --- | +| \--nutui-sidenavbar-content-bg-color | 側邊欄導航背景色 | `$white` | +| \--nutui-sidenavbar-item-height | 側邊欄每項的高度 | `40px` | +| \--nutui-sidenavbar-title-padding | 標題的內邊距 | `10px 8px 10px 20px` | +| \--nutui-sidenavbar-title-background | 標題的背景色 | `$color-background` | +| \--nutui-sidenavbar-title-color | 標題的字體顏色 | `$color-title` | +| \--nutui-sidenavbar-sub-title-padding | 子標題的內邊距 | `10px 8px 10px 35px` | +| \--nutui-sidenavbar-sub-title-background | 子標題背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-title-color | 子標題字體顏色 | `$color-title` | +| \--nutui-sidenavbar-sub-list-background | 選項列表背景色 | `$color-background-sunken` | +| \--nutui-sidenavbar-sub-list-color | 選項列表字體顏色 | `$color-title` | + + diff --git a/src/packages/signature/doc.en-US.md b/src/packages/signature/doc.en-US.md index 52632b5410..92457f1d52 100644 --- a/src/packages/signature/doc.en-US.md +++ b/src/packages/signature/doc.en-US.md @@ -57,3 +57,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-signature-border-width | Signature border width | `1px` | | \--nutui-signature-background-color | Signature background color | `$white` | | \--nutui-signature-font-size | Signature text size | `$font-size-base` | + + diff --git a/src/packages/signature/doc.md b/src/packages/signature/doc.md index cccb86996d..51c30a1e89 100644 --- a/src/packages/signature/doc.md +++ b/src/packages/signature/doc.md @@ -57,3 +57,5 @@ import { Signature } from '@nutui/nutui-react' | \--nutui-signature-border-width | 签名边框宽度 | `1px` | | \--nutui-signature-background-color | 签名背景颜色 | `$white` | | \--nutui-signature-font-size | 签名文字字号 | `$font-size-base` | + + diff --git a/src/packages/signature/doc.taro.md b/src/packages/signature/doc.taro.md index 2b1f767c2e..38a9790a83 100644 --- a/src/packages/signature/doc.taro.md +++ b/src/packages/signature/doc.taro.md @@ -57,3 +57,5 @@ import { Signature } from '@nutui/nutui-react-taro' | \--nutui-signature-border-width | 签名边框宽度 | `1px` | | \--nutui-signature-background-color | 签名背景颜色 | `$white` | | \--nutui-signature-font-size | 签名文字字号 | `$font-size-base` | + + diff --git a/src/packages/signature/doc.zh-TW.md b/src/packages/signature/doc.zh-TW.md index e4c19c4f2e..47bb04adec 100644 --- a/src/packages/signature/doc.zh-TW.md +++ b/src/packages/signature/doc.zh-TW.md @@ -57,3 +57,5 @@ import { Signature } from '@nutui/nutui-react' | \--nutui-signature-border-width | 簽名邊框寬度 | `1px` | | \--nutui-signature-background-color | 簽名背景顏色 | `$white` | | \--nutui-signature-font-size | 簽名文字字號 | `$font-size-base` | + + diff --git a/src/packages/skeleton/doc.en-US.md b/src/packages/skeleton/doc.en-US.md index 6061e71dea..9db2a753ba 100644 --- a/src/packages/skeleton/doc.en-US.md +++ b/src/packages/skeleton/doc.en-US.md @@ -76,3 +76,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-skeleton-line-width | line width | `100%` | | \--nutui-skeleton-line-height | line height | `15px` | | \--nutui-skeleton-line-border-radius | line borderRadius | `0` | + + diff --git a/src/packages/skeleton/doc.md b/src/packages/skeleton/doc.md index ccb03e836e..f5cec48596 100644 --- a/src/packages/skeleton/doc.md +++ b/src/packages/skeleton/doc.md @@ -76,3 +76,5 @@ import { Skeleton } from '@nutui/nutui-react' | \--nutui-skeleton-line-width | 线条宽度 | `100%` | | \--nutui-skeleton-line-height | 线条高度 | `15px` | | \--nutui-skeleton-line-border-radius | 线条边框圆角 | `0` | + + diff --git a/src/packages/skeleton/doc.taro.md b/src/packages/skeleton/doc.taro.md index f1f1a07560..f8d50aa3e1 100644 --- a/src/packages/skeleton/doc.taro.md +++ b/src/packages/skeleton/doc.taro.md @@ -76,3 +76,5 @@ import { Skeleton } from '@nutui/nutui-react-taro' | \--nutui-skeleton-line-width | 线条宽度 | `100%` | | \--nutui-skeleton-line-height | 线条高度 | `15px` | | \--nutui-skeleton-line-border-radius | 线条边框圆角 | `0` | + + diff --git a/src/packages/skeleton/doc.zh-TW.md b/src/packages/skeleton/doc.zh-TW.md index f5c5e36eed..4aeeb342ef 100644 --- a/src/packages/skeleton/doc.zh-TW.md +++ b/src/packages/skeleton/doc.zh-TW.md @@ -76,3 +76,5 @@ import { Skeleton } from '@nutui/nutui-react' | \--nutui-skeleton-line-width | 線條寬度 | `100%` | | \--nutui-skeleton-line-height | 線條高度 | `15px` | | \--nutui-skeleton-line-border-radius | 線條邊框圓角 | `0` | + + diff --git a/src/packages/space/doc.en-US.md b/src/packages/space/doc.en-US.md index 1d1fa6ce4d..4b368ad47f 100644 --- a/src/packages/space/doc.en-US.md +++ b/src/packages/space/doc.en-US.md @@ -79,3 +79,5 @@ to [ConfigProvider component](#/en-US/component/configprovider). | Name | Description | Default | | --- | --- | --- | | \--nutui-space-gap | `8px` | spacing size | + + diff --git a/src/packages/space/doc.md b/src/packages/space/doc.md index a6cc915ff1..0fb69d4703 100644 --- a/src/packages/space/doc.md +++ b/src/packages/space/doc.md @@ -80,3 +80,5 @@ import { Space } from '@nutui/nutui-react' | 名称 | 默认值 | 描述 | | --- | --- | --- | | \--nutui-space-gap | `8px` | 间距大小 | + + diff --git a/src/packages/space/doc.taro.md b/src/packages/space/doc.taro.md index 3ec527ca1a..e9ba1781a0 100644 --- a/src/packages/space/doc.taro.md +++ b/src/packages/space/doc.taro.md @@ -80,3 +80,5 @@ import { Space } from '@nutui/nutui-react-taro' | 名称 | 默认值 | 描述 | | --- | --- | --- | | \--nutui-space-gap | `8px` | 间距大小 | + + diff --git a/src/packages/space/doc.zh-TW.md b/src/packages/space/doc.zh-TW.md index ad23ba0cb4..f1cdef2e72 100644 --- a/src/packages/space/doc.zh-TW.md +++ b/src/packages/space/doc.zh-TW.md @@ -80,3 +80,5 @@ import { Space } from '@nutui/nutui-react' | 名稱 | 默認值 | 說明 | | --- | --- | --- | | \--nutui-space-gap | `8px` | 间距大小 | + + diff --git a/src/packages/steps/doc.en-US.md b/src/packages/steps/doc.en-US.md index baec445fd8..b84b4e5769 100644 --- a/src/packages/steps/doc.en-US.md +++ b/src/packages/steps/doc.en-US.md @@ -144,3 +144,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-steps-dot-icon-border | Dot progress bar dot border | `2px solid $color-primary-text` | | \--nutui-steps-dot-head-margin | Dot progress bar dot margin | `7px 0 0 0` | | \--nutui-steps-process-icon-before-bg-color | The color of the outer border of the dot progress bar in progress | `$color-primary-stop-2` | + + diff --git a/src/packages/steps/doc.md b/src/packages/steps/doc.md index 7e946e936b..69215972fc 100644 --- a/src/packages/steps/doc.md +++ b/src/packages/steps/doc.md @@ -146,3 +146,5 @@ import { Steps } from '@nutui/nutui-react' | \--nutui-steps-dot-icon-border | 点状进度条点的边框 | `2px solid $white` | | \--nutui-steps-dot-head-margin | 点状进度条点的外边距 | `7px 0 0 0` | | \--nutui-steps-process-icon-before-bg-color | 进行中点状进度条点的外边颜色 | `$color-primary-stop-2` | + + diff --git a/src/packages/steps/doc.taro.md b/src/packages/steps/doc.taro.md index b7bfb39e28..9a281309b8 100644 --- a/src/packages/steps/doc.taro.md +++ b/src/packages/steps/doc.taro.md @@ -145,3 +145,5 @@ import { Steps } from '@nutui/nutui-react-taro' | \--nutui-steps-dot-icon-border | 点状进度条点的边框 | `2px solid $white` | | \--nutui-steps-dot-head-margin | 点状进度条点的外边距 | `7px 0 0 0` | | \--nutui-steps-process-icon-before-bg-color | 进行中点状进度条点的外边颜色 | `$color-primary-stop-2` | + + diff --git a/src/packages/steps/doc.zh-TW.md b/src/packages/steps/doc.zh-TW.md index b72bcad573..c9a88b0fcf 100644 --- a/src/packages/steps/doc.zh-TW.md +++ b/src/packages/steps/doc.zh-TW.md @@ -145,3 +145,5 @@ import { Steps } from '@nutui/nutui-react' | \--nutui-steps-dot-icon-border | 點狀進度條點的邊框 | `2px solid $white` | | \--nutui-steps-dot-head-margin | 點狀進度條點的外邊距 | `7px 0 0 0` | | \--nutui-steps-process-icon-before-bg-color | 進行中點狀進度條點的外邊顏色 | `$color-primary-stop-2` | + + diff --git a/src/packages/sticky/doc.en-US.md b/src/packages/sticky/doc.en-US.md index 907f4a41c0..e528ba304f 100644 --- a/src/packages/sticky/doc.en-US.md +++ b/src/packages/sticky/doc.en-US.md @@ -53,3 +53,5 @@ import { Sticky } from '@nutui/nutui-react' | zIndex | The level when snapping | `number` | `2000` | | container | the container's ref | `React.RefObject` | `-` | | onChange | Triggered when the snap state changes | `(val: boolean) => void` | `-` | + + diff --git a/src/packages/sticky/doc.md b/src/packages/sticky/doc.md index e805a616e3..fb79a47c36 100644 --- a/src/packages/sticky/doc.md +++ b/src/packages/sticky/doc.md @@ -53,3 +53,5 @@ import { Sticky } from '@nutui/nutui-react' | zIndex | 吸附时的层级 | `number` | `2000` | | container | 容器的 ref | `React.RefObject` | `-` | | onChange | 吸附状态改变时触发 | `(val: boolean) => void` | `-` | + + diff --git a/src/packages/sticky/doc.taro.md b/src/packages/sticky/doc.taro.md index cc8dbdaf52..3c795c5bae 100644 --- a/src/packages/sticky/doc.taro.md +++ b/src/packages/sticky/doc.taro.md @@ -55,3 +55,5 @@ import { Sticky } from '@nutui/nutui-react-taro' | zIndex | 吸附时的层级 | `number` | `2000` | | container | 容器的 ref | `React.RefObject` | `-` | | onChange | 吸附状态改变时触发 | `(val: boolean) => void` | `-` | + + diff --git a/src/packages/sticky/doc.zh-TW.md b/src/packages/sticky/doc.zh-TW.md index 1d2eaec673..d5229cc5f0 100644 --- a/src/packages/sticky/doc.zh-TW.md +++ b/src/packages/sticky/doc.zh-TW.md @@ -53,3 +53,5 @@ import { Sticky } from '@nutui/nutui-react' | zIndex | 吸附時的層級 | `number` | `2000` | | container | 容器的 ref | `React.RefObject` | `-` | | onChange | 吸附狀態改變時觸發 | `(val: boolean) => void` | `-` | + + diff --git a/src/packages/swipe/doc.en-US.md b/src/packages/swipe/doc.en-US.md index 9d22b40eaa..00f7ec93df 100644 --- a/src/packages/swipe/doc.en-US.md +++ b/src/packages/swipe/doc.en-US.md @@ -371,3 +371,5 @@ export default App | --- | --- | --- | | open | open the cell sidebar, the default value of `side` is `right` | `(side?: 'left' \| 'right') => void` | | close | collapse the cell sidebar | `() => void` | + + diff --git a/src/packages/swipe/doc.md b/src/packages/swipe/doc.md index c6093f5306..e439c13b8c 100644 --- a/src/packages/swipe/doc.md +++ b/src/packages/swipe/doc.md @@ -366,3 +366,5 @@ export default App | --- | --- | --- | | open | 打开单元格侧边栏,`side`参数默认为`right` | `(side?: 'left' \| 'right') => void` | | close | 收起单元格侧边栏 | `() => void` | + + diff --git a/src/packages/swipe/doc.taro.md b/src/packages/swipe/doc.taro.md index a0a669787e..fb205d00c5 100644 --- a/src/packages/swipe/doc.taro.md +++ b/src/packages/swipe/doc.taro.md @@ -418,3 +418,5 @@ export default App | --- | --- | --- | | open | 打开单元格侧边栏,`side`参数默认为`right` | `(side?: 'left' \| 'right') => void` | | close | 收起单元格侧边栏 | `() => void` | + + diff --git a/src/packages/swipe/doc.zh-TW.md b/src/packages/swipe/doc.zh-TW.md index bb36949e81..e1bec33b2a 100644 --- a/src/packages/swipe/doc.zh-TW.md +++ b/src/packages/swipe/doc.zh-TW.md @@ -366,3 +366,5 @@ export default App | --- | --- | --- | | open | 打開單元格側邊欄,`side`參數默認為`right` | `(side?: 'left' \| 'right') => void` | | close | 收起單元格側邊欄 | `() => void` | + + diff --git a/src/packages/swiper/doc.en-US.md b/src/packages/swiper/doc.en-US.md index eb5f675b94..21931ead0d 100644 --- a/src/packages/swiper/doc.en-US.md +++ b/src/packages/swiper/doc.en-US.md @@ -451,3 +451,5 @@ The component provides the following CSS variables, which can be used to customi | --- | --- | --- | | \--nutui-swiper-pagination-bottom | The distance from the bottom of the pager | `12px` | | \--swiper-offset | Offset of the carouse | `0` | + + diff --git a/src/packages/swiper/doc.md b/src/packages/swiper/doc.md index f53c422562..d0631b552e 100644 --- a/src/packages/swiper/doc.md +++ b/src/packages/swiper/doc.md @@ -450,3 +450,5 @@ export default App | --- | --- | --- | | \--nutui-swiper-pagination-bottom | 分页器距离底部的距离 | `12px` | | \--swiper-offset | 轮播容器的偏移 | `0` | + + diff --git a/src/packages/swiper/doc.taro.md b/src/packages/swiper/doc.taro.md index 81b02525db..8160fc0c61 100644 --- a/src/packages/swiper/doc.taro.md +++ b/src/packages/swiper/doc.taro.md @@ -128,3 +128,5 @@ import { Swiper } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-swiper-pagination-bottom | 分页器距离底部的距离 | `12px` | + + diff --git a/src/packages/swiper/doc.zh-TW.md b/src/packages/swiper/doc.zh-TW.md index 64cdf63c86..3656f0a717 100644 --- a/src/packages/swiper/doc.zh-TW.md +++ b/src/packages/swiper/doc.zh-TW.md @@ -450,3 +450,5 @@ export default App | --- | --- | --- | | \--nutui-swiper-pagination-bottom | 分頁器距離底部的距離 | `12px` | | \--swiper-offset | 輪播容器的偏移 | `0` | + + diff --git a/src/packages/switch/doc.en-US.md b/src/packages/switch/doc.en-US.md index e58dc881d3..77a2603de2 100644 --- a/src/packages/switch/doc.en-US.md +++ b/src/packages/switch/doc.en-US.md @@ -102,3 +102,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-switch-label-text-color | Switch internal text color | `$color-primary-text` | | \--nutui-switch-label-font-size | Switch internal text size | `$font-size-s` | | \--nutui-switch-inactive-disabled-label-text-color | Turn off and disable internal text color | `$color-text-disabled` | + + diff --git a/src/packages/switch/doc.md b/src/packages/switch/doc.md index 5afd82e0eb..35f78c57b1 100644 --- a/src/packages/switch/doc.md +++ b/src/packages/switch/doc.md @@ -102,3 +102,5 @@ import { Switch } from '@nutui/nutui-react' | \--nutui-switch-label-text-color | 开关内部文字颜色 | `$color-primary-text` | | \--nutui-switch-label-font-size | 开关内部文字大小 | `$font-size-s` | | \--nutui-switch-inactive-disabled-label-text-color | 开关关闭禁用内部文字颜色 | `$color-text-disabled` | + + diff --git a/src/packages/switch/doc.taro.md b/src/packages/switch/doc.taro.md index 9ead4a5a25..5ff506aa74 100644 --- a/src/packages/switch/doc.taro.md +++ b/src/packages/switch/doc.taro.md @@ -102,3 +102,5 @@ import { Switch } from '@nutui/nutui-react-taro' | \--nutui-switch-label-text-color | 开关内部文字颜色 | `$color-primary-text` | | \--nutui-switch-label-font-size | 开关内部文字大小 | `$font-size-s` | | \--nutui-switch-inactive-disabled-label-text-color | 开关关闭禁用内部文字颜色 | `$color-text-disabled` | + + diff --git a/src/packages/switch/doc.zh-TW.md b/src/packages/switch/doc.zh-TW.md index f0663524df..e6ccd1f303 100644 --- a/src/packages/switch/doc.zh-TW.md +++ b/src/packages/switch/doc.zh-TW.md @@ -102,3 +102,5 @@ import { Switch } from '@nutui/nutui-react' | \--nutui-switch-label-text-color | 開關內部文字顏色 | `$color-primary-text` | | \--nutui-switch-label-font-size | 開關內部文字大小 | `$font-size-s` | | \--nutui-switch-inactive-disabled-label-text-color | 開關關閉禁用內部文字顏色 | `$color-text-disabled` | + + diff --git a/src/packages/tabbar/doc.en-US.md b/src/packages/tabbar/doc.en-US.md index b63b33d5d9..60982b9f24 100644 --- a/src/packages/tabbar/doc.en-US.md +++ b/src/packages/tabbar/doc.en-US.md @@ -129,3 +129,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-tabbar-text-large-font-weight | title fontWeight when icon is null | `$font-weight` | | \--nutui-tabbar-text-line-height | title lineHeight | `initial` | | \--nutui-tabbar-text-margin-top | title marginTop | `3px` | + + diff --git a/src/packages/tabbar/doc.md b/src/packages/tabbar/doc.md index 2eda5f95a3..c703950d6a 100644 --- a/src/packages/tabbar/doc.md +++ b/src/packages/tabbar/doc.md @@ -129,3 +129,5 @@ import { Tabbar } from '@nutui/nutui-react' | \--nutui-tabbar-text-large-font-weight | 无图标时标题字体粗细 | `$font-weight` | | \--nutui-tabbar-text-line-height | 字体行高 | `initial` | | \--nutui-tabbar-text-margin-top | 标题上外边距 | `3px` | + + diff --git a/src/packages/tabbar/doc.taro.md b/src/packages/tabbar/doc.taro.md index 7a7c4ae421..da8682648f 100644 --- a/src/packages/tabbar/doc.taro.md +++ b/src/packages/tabbar/doc.taro.md @@ -129,3 +129,5 @@ import { Tabbar } from '@nutui/nutui-react-taro' | \--nutui-tabbar-text-large-font-weight | 无图标时标题字体粗细 | `$font-weight` | | \--nutui-tabbar-text-line-height | 字体行高 | `initial` | | \--nutui-tabbar-text-margin-top | 标题上外边距 | `3px` | + + diff --git a/src/packages/tabbar/doc.zh-TW.md b/src/packages/tabbar/doc.zh-TW.md index aec46a246f..6f6ad8b846 100644 --- a/src/packages/tabbar/doc.zh-TW.md +++ b/src/packages/tabbar/doc.zh-TW.md @@ -129,3 +129,5 @@ import { Tabbar } from '@nutui/nutui-react' | \--nutui-tabbar-text-large-font-weight | 無圖標時標題字體粗細 | `$font-weight` | | \--nutui-tabbar-text-line-height | 字體行高 | `initial` | | \--nutui-tabbar-text-margin-top | 標題上外邊距 | `3px` | + + diff --git a/src/packages/table/doc.en-US.md b/src/packages/table/doc.en-US.md index df33010640..fab4466089 100644 --- a/src/packages/table/doc.en-US.md +++ b/src/packages/table/doc.en-US.md @@ -156,3 +156,5 @@ The component provides the following CSS variables, which can be used for custom | \--nutui-table-tr-odd-background-color | Background color of odd table rows | `$white` | | \--nutui-table-sticky-left-shadow | Shadow on the fixed left side of the table | `4px 0 8px 0 rgba(0, 0, 0, 0.1)` | | \--nutui-table-sticky-right-shadow | Shadow on the fixed right side of the table | `-4px 0 8px 0 rgba(0, 0, 0, 0.1)` | + + diff --git a/src/packages/table/doc.md b/src/packages/table/doc.md index 71fb239c86..188d136f57 100644 --- a/src/packages/table/doc.md +++ b/src/packages/table/doc.md @@ -156,3 +156,5 @@ import { Table } from '@nutui/nutui-react' | \--nutui-table-tr-odd-background-color | 表格奇数行的背景色 | `$white` | | \--nutui-table-sticky-left-shadow | 表格左侧固定阴影 | `4px 0 8px 0 rgba(0, 0, 0, 0.1)` | | \--nutui-table-sticky-right-shadow | 表格右侧固定阴影 | `-4px 0 8px 0 rgba(0, 0, 0, 0.1)` | + + diff --git a/src/packages/table/doc.taro.md b/src/packages/table/doc.taro.md index 751832b058..7de550159b 100644 --- a/src/packages/table/doc.taro.md +++ b/src/packages/table/doc.taro.md @@ -156,3 +156,5 @@ import { Table } from '@nutui/nutui-react-taro' | \--nutui-table-tr-odd-background-color | 表格奇数行的背景色 | `$white` | | \--nutui-table-sticky-left-shadow | 表格左侧固定阴影 | `4px 0 8px 0 rgba(0, 0, 0, 0.1)` | | \--nutui-table-sticky-right-shadow | 表格右侧固定阴影 | `-4px 0 8px 0 rgba(0, 0, 0, 0.1)` | + + diff --git a/src/packages/table/doc.zh-TW.md b/src/packages/table/doc.zh-TW.md index a239359081..7c4f8db466 100644 --- a/src/packages/table/doc.zh-TW.md +++ b/src/packages/table/doc.zh-TW.md @@ -156,3 +156,5 @@ import { Table } from '@nutui/nutui-react' | \--nutui-table-tr-odd-background-color | 表格奇數行的背景色 | `$white` | | \--nutui-table-sticky-left-shadow | 表格左側固定陰影 | `4px 0 8px 0 rgba(0, 0, 0, 0.1)` | | \--nutui-table-sticky-right-shadow | 表格右側固定陰影 | `-4px 0 8px 0 rgba(0, 0, 0, 0.1)` | + + diff --git a/src/packages/tabs/doc.en-US.md b/src/packages/tabs/doc.en-US.md index fd66b26721..a5c0a1864f 100644 --- a/src/packages/tabs/doc.en-US.md +++ b/src/packages/tabs/doc.en-US.md @@ -260,3 +260,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-tabs-vertical-tab-line-height | The height of the vertical title line | `12px` | | \--nutui-tabs-tabpane-padding | Padding of the Tabpane content | `24px 20px` | | \--nutui-tabs-tabpane-backgroundColor | BackgroundColor of the Tabpane content | `#fff` | + + diff --git a/src/packages/tabs/doc.md b/src/packages/tabs/doc.md index e1677c9116..086d689bf2 100644 --- a/src/packages/tabs/doc.md +++ b/src/packages/tabs/doc.md @@ -260,3 +260,5 @@ import { Tabs } from '@nutui/nutui-react' | \--nutui-tabs-vertical-tab-line-height | 垂直方向标题线条的高度 | `12px` | | \--nutui-tabs-tabpane-padding | Tabpane 的内边距 | `24px 20px` | | \--nutui-tabs-tabpane-backgroundColor | Tabpane 的背景色 | `#fff` | + + diff --git a/src/packages/tabs/doc.taro.md b/src/packages/tabs/doc.taro.md index 82f5706924..4b29a14e1d 100644 --- a/src/packages/tabs/doc.taro.md +++ b/src/packages/tabs/doc.taro.md @@ -258,3 +258,5 @@ import { Tabs } from '@nutui/nutui-react-taro' | \--nutui-tabs-vertical-tab-line-height | 垂直方向标题线条的高度 | `12px` | | \--nutui-tabs-tabpane-padding | Tabpane 的内边距 | `24px 20px` | | \--nutui-tabs-tabpane-backgroundColor | Tabpane 的背景色 | `#fff` | + + diff --git a/src/packages/tabs/doc.zh-TW.md b/src/packages/tabs/doc.zh-TW.md index 2211e055a7..62a5f20638 100644 --- a/src/packages/tabs/doc.zh-TW.md +++ b/src/packages/tabs/doc.zh-TW.md @@ -258,3 +258,5 @@ import { Tabs } from '@nutui/nutui-react' | \--nutui-tabs-vertical-tab-line-height | 垂直方向標題線條的高度 | `12px` | | \--nutui-tabs-tabpane-padding | Tabpane 的內邊距 | `24px 20px` | | \--nutui-tabs-tabpane-backgroundColor | Tabpane 的背景色 | `#fff` | + + diff --git a/src/packages/tag/doc.en-US.md b/src/packages/tag/doc.en-US.md index 587729d4d0..0b9777cc99 100644 --- a/src/packages/tag/doc.en-US.md +++ b/src/packages/tag/doc.en-US.md @@ -81,3 +81,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-tag-danger-background-color | danger background color | `$color-primary` | | \--nutui-tag-round-border-radius | round border radius | `8px` | | \--nutui-tag-mark-border-radius | mark border radius | `0 8px 8px 0` | + + diff --git a/src/packages/tag/doc.md b/src/packages/tag/doc.md index 573c2f822a..c1feb0bbe0 100644 --- a/src/packages/tag/doc.md +++ b/src/packages/tag/doc.md @@ -81,3 +81,5 @@ import { Tag } from '@nutui/nutui-react' | \--nutui-tag-danger-background-color | 危险背景色 | `$color-primary` | | \--nutui-tag-round-border-radius | round模式下的圆角 | `8px` | | \--nutui-tag-mark-border-radius | mark模式下的圆角 | `0 8px 8px 0` | + + diff --git a/src/packages/tag/doc.taro.md b/src/packages/tag/doc.taro.md index 8d27999fdc..c49421e7d3 100644 --- a/src/packages/tag/doc.taro.md +++ b/src/packages/tag/doc.taro.md @@ -81,3 +81,5 @@ import { Tag } from '@nutui/nutui-react-taro' | \--nutui-tag-danger-background-color | 危险背景色 | `$color-primary` | | \--nutui-tag-round-border-radius | round模式下的圆角 | `8px` | | \--nutui-tag-mark-border-radius | mark模式下的圆角 | `0 8px 8px 0` | + + diff --git a/src/packages/tag/doc.zh-TW.md b/src/packages/tag/doc.zh-TW.md index 93b7a1f558..d015a7db04 100644 --- a/src/packages/tag/doc.zh-TW.md +++ b/src/packages/tag/doc.zh-TW.md @@ -81,3 +81,5 @@ import { Tag } from '@nutui/nutui-react' | \--nutui-tag-danger-background-color | 危險背景色 | `$color-primary` | | \--nutui-tag-round-border-radius | round模式下的圓角 | `8px` | | \--nutui-tag-mark-border-radius | mark模式下的圓角 | `0 8px 8px 0` | + + diff --git a/src/packages/textarea/doc.en-US.md b/src/packages/textarea/doc.en-US.md index 36d8dc28fd..135a6061a4 100644 --- a/src/packages/textarea/doc.en-US.md +++ b/src/packages/textarea/doc.en-US.md @@ -106,3 +106,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-textarea-padding | padding | `10px 25px` | | \--nutui-textarea-text-color | text color | `$color-title` | | \--nutui-textarea-text-curror-color | caret color | `$color-title` | + + diff --git a/src/packages/textarea/doc.md b/src/packages/textarea/doc.md index ee0e7c9a57..a0d6979f2f 100644 --- a/src/packages/textarea/doc.md +++ b/src/packages/textarea/doc.md @@ -106,3 +106,5 @@ import { TextArea } from '@nutui/nutui-react' | \--nutui-textarea-padding | 内边距 | `10px 25px` | | \--nutui-textarea-text-color | 文本颜色 | `$color-title` | | \--nutui-textarea-text-curror-color | 光标颜色 | `$color-primary` | + + diff --git a/src/packages/textarea/doc.taro.md b/src/packages/textarea/doc.taro.md index fd3939cc67..e8d62792f2 100644 --- a/src/packages/textarea/doc.taro.md +++ b/src/packages/textarea/doc.taro.md @@ -106,3 +106,5 @@ import { TextArea } from '@nutui/nutui-react-taro' | \--nutui-textarea-padding | 内边距 | `10px 25px` | | \--nutui-textarea-text-color | 文本颜色 | `$color-title` | | \--nutui-textarea-text-curror-color | 光标颜色 | `$color-title` | + + diff --git a/src/packages/textarea/doc.zh-TW.md b/src/packages/textarea/doc.zh-TW.md index 241be06395..b3c633436d 100644 --- a/src/packages/textarea/doc.zh-TW.md +++ b/src/packages/textarea/doc.zh-TW.md @@ -105,3 +105,5 @@ import { TextArea } from '@nutui/nutui-react' | \--nutui-textarea-padding | 內邊距 | `10px 25px` | | \--nutui-textarea-text-color | 文本顏色 | `$color-title` | | \--nutui-textarea-text-curror-color | 光標顏色 | `$color-title` | + + diff --git a/src/packages/timeselect/doc.en-US.md b/src/packages/timeselect/doc.en-US.md index 6dc2bbc515..e6a72e32c7 100644 --- a/src/packages/timeselect/doc.en-US.md +++ b/src/packages/timeselect/doc.en-US.md @@ -92,3 +92,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-timeselect-time-height | time height | `50px` | | \--nutui-timeselect-time-margin | time margin | `0 10px 10px 0` | | \--nutui-timeselect-time-background | time background | `$color-background` | + + diff --git a/src/packages/timeselect/doc.md b/src/packages/timeselect/doc.md index ae88380cf8..49cc7af2d6 100644 --- a/src/packages/timeselect/doc.md +++ b/src/packages/timeselect/doc.md @@ -92,3 +92,5 @@ import { TimeSelect } from '@nutui/nutui-react' | \--nutui-timeselect-time-height | time 高度 | `50px` | | \--nutui-timeselect-time-margin | time 外边距 | `0 10px 10px 0` | | \--nutui-timeselect-time-background | time 背景 | `$color-background` | + + diff --git a/src/packages/timeselect/doc.taro.md b/src/packages/timeselect/doc.taro.md index 3a0fa9f1fe..f6d68d10f0 100644 --- a/src/packages/timeselect/doc.taro.md +++ b/src/packages/timeselect/doc.taro.md @@ -92,3 +92,5 @@ import { TimeSelect } from '@nutui/nutui-react-taro' | \--nutui-timeselect-time-height | time 高度 | `50px` | | \--nutui-timeselect-time-margin | time 外边距 | `0 10px 10px 0` | | \--nutui-timeselect-time-background | time 背景 | `$color-background` | + + diff --git a/src/packages/timeselect/doc.zh-TW.md b/src/packages/timeselect/doc.zh-TW.md index 749ca52475..62142f4d36 100644 --- a/src/packages/timeselect/doc.zh-TW.md +++ b/src/packages/timeselect/doc.zh-TW.md @@ -92,3 +92,5 @@ import { TimeSelect } from '@nutui/nutui-react' | \--nutui-timeselect-time-height | time 高度 | `50px` | | \--nutui-timeselect-time-margin | time 外边距 | `0 10px 10px 0` | | \--nutui-timeselect-time-background | time 背景 | `$color-background` | + + diff --git a/src/packages/toast/doc.en-US.md b/src/packages/toast/doc.en-US.md index b8a9bac995..7da1b6d3fb 100644 --- a/src/packages/toast/doc.en-US.md +++ b/src/packages/toast/doc.en-US.md @@ -104,3 +104,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-toast-inner-bg-color | the background color of toast content | `$color-mask` | | \--nutui-toast-inner-border-radius | the border-radius value of toast content | `$radius-xl` | | \--nutui-toast-inner-text-align | the text alignment of toast | `center` | + + diff --git a/src/packages/toast/doc.md b/src/packages/toast/doc.md index 8e79977684..3d6d32771e 100644 --- a/src/packages/toast/doc.md +++ b/src/packages/toast/doc.md @@ -102,3 +102,5 @@ Toast.config({ className: 'demo', contentClassName: 'content-demo' }) | \--nutui-toast-inner-bg-color | `toast`内容区背景色 | `$color-mask` | | \--nutui-toast-inner-border-radius | `toast`内容区圆角值 | `$radius-xl` | | \--nutui-toast-inner-text-align | `toast`内容区文本对齐方式 | `center` | + + diff --git a/src/packages/toast/doc.taro.md b/src/packages/toast/doc.taro.md index e812421ca3..6c0ee67967 100644 --- a/src/packages/toast/doc.taro.md +++ b/src/packages/toast/doc.taro.md @@ -98,3 +98,5 @@ ToastOptions 是 ToastProps 的子集,包含如下属性:msg, title, type, d | \--nutui-toast-inner-bg-color | `toast`内容区背景色 | `$color-mask` | | \--nutui-toast-inner-border-radius | `toast`内容区圆角值 | `$radius-xl` | | \--nutui-toast-inner-text-align | `toast`内容区文本对齐方式 | `center` | + + diff --git a/src/packages/toast/doc.zh-TW.md b/src/packages/toast/doc.zh-TW.md index 3a33f2a283..783a2b99c2 100644 --- a/src/packages/toast/doc.zh-TW.md +++ b/src/packages/toast/doc.zh-TW.md @@ -101,3 +101,5 @@ Toast.config({ className: 'demo', contentClassName: 'content-demo' }) | \--nutui-toast-inner-bg-color | `toast`內容區背景色 | `$color-mask` | | \--nutui-toast-inner-border-radius | `toast`內容區圓角值 | `$radius-xl` | | \--nutui-toast-inner-text-align | `toast`內容區文本對齊方式 | `center` | + + diff --git a/src/packages/tour/doc.en-US.md b/src/packages/tour/doc.en-US.md index 0df6effc1a..8cc3829a35 100644 --- a/src/packages/tour/doc.en-US.md +++ b/src/packages/tour/doc.en-US.md @@ -103,3 +103,5 @@ The component provides the following CSS variables, which can be used to customi | \--nutui-tour-content-bottom-btn-padding | The padding value of the button at the bottom of the content area | `2px 4px` | | \--nutui-tour-content-bottom-btn-font-size | The font-size value of the button at the bottom of the content area | `12px` | | \--nutui-tour-content-bottom-btn-border-radius | The border-radius value of the button at the bottom of the content area | `4px` | + + diff --git a/src/packages/tour/doc.md b/src/packages/tour/doc.md index 5401bb4f9b..6af54b5af9 100644 --- a/src/packages/tour/doc.md +++ b/src/packages/tour/doc.md @@ -103,3 +103,5 @@ import { Tour } from '@nutui/nutui-react' | \--nutui-tour-content-bottom-btn-padding | 内容区底部按钮的padding值 | `2px 4px` | | \--nutui-tour-content-bottom-btn-font-size | 内容区底部按钮的font-size值 | `12px` | | \--nutui-tour-content-bottom-btn-border-radius | 内容区底部按钮的border-radius值 | `4px` | + + diff --git a/src/packages/tour/doc.taro.md b/src/packages/tour/doc.taro.md index 644272c194..0d59f179ff 100644 --- a/src/packages/tour/doc.taro.md +++ b/src/packages/tour/doc.taro.md @@ -103,3 +103,5 @@ import { Tour } from '@nutui/nutui-react-taro' | \--nutui-tour-content-bottom-btn-padding | 内容区底部按钮的padding值 | `2px 4px` | | \--nutui-tour-content-bottom-btn-font-size | 内容区底部按钮的font-size值 | `12px` | | \--nutui-tour-content-bottom-btn-border-radius | 内容区底部按钮的border-radius值 | `4px` | + + diff --git a/src/packages/tour/doc.zh-TW.md b/src/packages/tour/doc.zh-TW.md index 0abce70349..8eba2a1176 100644 --- a/src/packages/tour/doc.zh-TW.md +++ b/src/packages/tour/doc.zh-TW.md @@ -103,3 +103,5 @@ import { Tour } from '@nutui/nutui-react' | \--nutui-tour-content-bottom-btn-padding | 內容區底部按鈕的padding值 | `2px 4px` | | \--nutui-tour-content-bottom-btn-font-size | 內容區底部按鈕的font-size值 | `12px` | | \--nutui-tour-content-bottom-btn-border-radius | 內容區底部按鈕的border-radius值 | `4px` | + + diff --git a/src/packages/trendarrow/doc.en-US.md b/src/packages/trendarrow/doc.en-US.md index 2d427aab1b..a989ec5cd7 100644 --- a/src/packages/trendarrow/doc.en-US.md +++ b/src/packages/trendarrow/doc.en-US.md @@ -102,3 +102,5 @@ The component provides the following CSS variables, which can be used to customi | --- | --- | --- | | \--nutui-trendarrow-font-size | Trend arrow text size | `14px` | | \--nutui-trendarrow-icon-margin | Trend arrow Specifies the spacing between text and icon | `4px` | + + diff --git a/src/packages/trendarrow/doc.md b/src/packages/trendarrow/doc.md index 8ae4e9e083..790f6ba541 100644 --- a/src/packages/trendarrow/doc.md +++ b/src/packages/trendarrow/doc.md @@ -102,3 +102,5 @@ import { TrendArrow } from '@nutui/nutui-react' | --- | --- | --- | | \--nutui-trendarrow-font-size | 指标趋势的文字大小 | `14px` | | \--nutui-trendarrow-icon-margin | 指标趋势的文字与图标间距 | `4px` | + + diff --git a/src/packages/trendarrow/doc.taro.md b/src/packages/trendarrow/doc.taro.md index 1266351cc4..78e513cb6a 100644 --- a/src/packages/trendarrow/doc.taro.md +++ b/src/packages/trendarrow/doc.taro.md @@ -102,3 +102,5 @@ import { TrendArrow } from '@nutui/nutui-react-taro' | --- | --- | --- | | \--nutui-trendarrow-font-size | 指标趋势的文字大小 | `14px` | | \--nutui-trendarrow-icon-margin | 指标趋势的文字与图标间距 | `4px` | + + diff --git a/src/packages/trendarrow/doc.zh-TW.md b/src/packages/trendarrow/doc.zh-TW.md index e424324d22..1a7a2e88c3 100644 --- a/src/packages/trendarrow/doc.zh-TW.md +++ b/src/packages/trendarrow/doc.zh-TW.md @@ -102,3 +102,5 @@ import { TrendArrow } from '@nutui/nutui-react' | --- | --- | --- | | \--nutui-trendarrow-font-size | 指標趨勢的文字大小 | `14px` | | \--nutui-trendarrow-icon-margin | 指標趨勢的文字與圖標間距 | `4px` | + + diff --git a/src/packages/uploader/doc.en-US.md b/src/packages/uploader/doc.en-US.md index afade42f4f..21edcf69d0 100644 --- a/src/packages/uploader/doc.en-US.md +++ b/src/packages/uploader/doc.en-US.md @@ -169,3 +169,5 @@ The component provides the following CSS variables that can be used to customize | \--nutui-uploader-preview-tips-padding | Padding value under uploaded image preview tips | `0 5px` | | \--nutui-uploader-preview-close-right | The right value under the upload image's close button | `0px` | | \--nutui-uploader-preview-close-top | The top value of the uploader's close button | `0px` | + + diff --git a/src/packages/uploader/doc.md b/src/packages/uploader/doc.md index 824a6202c4..58ff3fa0ae 100644 --- a/src/packages/uploader/doc.md +++ b/src/packages/uploader/doc.md @@ -174,3 +174,5 @@ import { Uploader } from '@nutui/nutui-react' | \--nutui-uploader-preview-tips-padding | 上传图片预览tips下的padding值 | `0 5px` | | \--nutui-uploader-preview-close-right | 上传图片关闭按钮的right值 | `0px` | | \--nutui-uploader-preview-close-top | 上传图片关闭按钮的top值 | `0px` | + + diff --git a/src/packages/uploader/doc.taro.md b/src/packages/uploader/doc.taro.md index d3ab136d29..9339399120 100644 --- a/src/packages/uploader/doc.taro.md +++ b/src/packages/uploader/doc.taro.md @@ -167,3 +167,5 @@ import { Uploader } from '@nutui/nutui-react-taro' | \--nutui-uploader-preview-tips-padding | 上传图片预览tips下的padding值 | `0 5px` | | \--nutui-uploader-preview-close-right | 上传图片关闭按钮的right值 | `0px` | | \--nutui-uploader-preview-close-top | 上传图片关闭按钮的top值 | `0px` | + + diff --git a/src/packages/uploader/doc.zh-TW.md b/src/packages/uploader/doc.zh-TW.md index f213febfd6..190499f558 100644 --- a/src/packages/uploader/doc.zh-TW.md +++ b/src/packages/uploader/doc.zh-TW.md @@ -174,3 +174,5 @@ import { Uploader } from '@nutui/nutui-react' | \--nutui-uploader-preview-tips-padding | 上傳圖片預覽tips下的padding值 | `0 5px` | | \--nutui-uploader-preview-close-right | 上傳圖片關閉按鈕的right值 | `0px` | | \--nutui-uploader-preview-close-top | 上傳圖片關閉按鈕的top值 | `0px` | + + diff --git a/src/packages/video/doc.en-US.md b/src/packages/video/doc.en-US.md index c7074ab176..f69611ac83 100644 --- a/src/packages/video/doc.en-US.md +++ b/src/packages/video/doc.en-US.md @@ -102,3 +102,5 @@ Reset the video when the video address changes | --- | --- | --- | | play | play | `-` | | pause | pause | `-` | + + diff --git a/src/packages/video/doc.md b/src/packages/video/doc.md index b44b6c6b86..7fa8b67d44 100644 --- a/src/packages/video/doc.md +++ b/src/packages/video/doc.md @@ -102,3 +102,5 @@ playsinline 属性设置移动端视频行内播放,阻止新打开页面播 | --- | --- | --- | | play | 播放 | `-` | | pause | 暂停 | `-` | + + diff --git a/src/packages/video/doc.taro.md b/src/packages/video/doc.taro.md index 19c2aed1a2..3d8a0c0923 100644 --- a/src/packages/video/doc.taro.md +++ b/src/packages/video/doc.taro.md @@ -95,3 +95,5 @@ playsinline 属性设置移动端视频行内播放,阻止新打开页面播 | onPlay | 播放 | `(event: BaseEventOrig) => void` | `-` | | onPause | 暂停 | `(event: BaseEventOrig) => void` | `-` | | onPlayEnd | 播放完成回调 | `(event: BaseEventOrig) => void` | `-` | + + diff --git a/src/packages/video/doc.zh-TW.md b/src/packages/video/doc.zh-TW.md index cb1850f8bf..473e8d23ce 100644 --- a/src/packages/video/doc.zh-TW.md +++ b/src/packages/video/doc.zh-TW.md @@ -102,3 +102,5 @@ playsinline 屬性設置移動端視頻行內播放,阻止新打開頁面播 | --- | --- | --- | | play | 播放 | `-` | | pause | 暫停 | `-` | + + diff --git a/src/packages/virtuallist/doc.en-US.md b/src/packages/virtuallist/doc.en-US.md index 52640ff73e..ca0194f6ea 100644 --- a/src/packages/virtuallist/doc.en-US.md +++ b/src/packages/virtuallist/doc.en-US.md @@ -57,3 +57,5 @@ import { Virtuallist } from '@nutui/nutui-react' | key | the key name of item in list, index as default | `string` | `-` | | direction | horizontal or vertical | `string` | `vertical` | | onScroll | scroll to end | `() => void` | `-` | + + diff --git a/src/packages/virtuallist/doc.md b/src/packages/virtuallist/doc.md index 36a8fb1767..341c33a64b 100644 --- a/src/packages/virtuallist/doc.md +++ b/src/packages/virtuallist/doc.md @@ -57,3 +57,5 @@ import { VirtualList } from '@nutui/nutui-react' | key | 用于指定 list 数据每一项的唯一 key 的字段名,默认取下标 | `string` | `-` | | direction | `vertical`、`horizontal` | `string` | `vertical` | | onScroll | 滑动到底(右)的事件,可以实现无限滚动 | `() => void` | `-` | + + diff --git a/src/packages/virtuallist/doc.taro.md b/src/packages/virtuallist/doc.taro.md index 1e409ade57..def838de47 100644 --- a/src/packages/virtuallist/doc.taro.md +++ b/src/packages/virtuallist/doc.taro.md @@ -40,3 +40,5 @@ import { VirtualList } from '@nutui/nutui-react-taro' | overscan | 除了视窗里面默认的元素, 还需要额外渲染的 item 个数 | `number` | `2` | | key | 用于指定 list 数据每一项的唯一 key 的字段名,默认取下标 | `string` | `-` | | onScroll | 滑动到底的事件,可以实现无限滚动 | `() => void` | `-` | + + diff --git a/src/packages/virtuallist/doc.zh-TW.md b/src/packages/virtuallist/doc.zh-TW.md index 48e0bb4757..56b7476c07 100644 --- a/src/packages/virtuallist/doc.zh-TW.md +++ b/src/packages/virtuallist/doc.zh-TW.md @@ -57,3 +57,5 @@ import { VirtualList } from '@nutui/nutui-react' | key | 用於指定 list 數據每一項的唯一 key 的字段名,默認取下標 | `string` | `-` | | direction | `vertical`、`horizontal` | `string` | `vertical` | | onScroll | 滑動到底(右)的事件,可以實現無限滾動 | `() => void` | `-` | + + diff --git a/src/packages/watermark/doc.en-US.md b/src/packages/watermark/doc.en-US.md index d7a0e539be..691c6d7bfb 100644 --- a/src/packages/watermark/doc.en-US.md +++ b/src/packages/watermark/doc.en-US.md @@ -60,3 +60,5 @@ The component provides the following CSS variables, which can be used to customi | Name | Description | Default | | --- | --- | --- | | \--nutui-watermark-z-index | zIndex | `$mask-content-z-index` | + + diff --git a/src/packages/watermark/doc.md b/src/packages/watermark/doc.md index 4a56c26d82..d0a3f6b08d 100644 --- a/src/packages/watermark/doc.md +++ b/src/packages/watermark/doc.md @@ -60,3 +60,5 @@ import { WaterMark } from '@nutui/nutui-react' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-watermark-z-index | zIndex | `$mask-content-z-index` | + + diff --git a/src/packages/watermark/doc.taro.md b/src/packages/watermark/doc.taro.md index 59667ae5a0..c5e0123330 100644 --- a/src/packages/watermark/doc.taro.md +++ b/src/packages/watermark/doc.taro.md @@ -60,3 +60,5 @@ import { Watermark } from '@nutui/nutui-react-taro' | 名称 | 说明 | 默认值 | | --- | --- | --- | | \--nutui-watermark-z-index | zIndex | `$mask-content-z-index` | + + diff --git a/src/packages/watermark/doc.zh-TW.md b/src/packages/watermark/doc.zh-TW.md index fb1f9c1f40..cc8d4b18a9 100644 --- a/src/packages/watermark/doc.zh-TW.md +++ b/src/packages/watermark/doc.zh-TW.md @@ -60,3 +60,5 @@ import { WaterMark } from '@nutui/nutui-react' | 名稱 | 說明 | 默認值 | | --- | --- | --- | | \--nutui-watermark-z-index | zIndex | `$mask-content-z-index` | + + diff --git a/src/sites/sites-react/doc-taro/App.tsx b/src/sites/sites-react/doc-taro/App.tsx index ccaf89769f..a912e86eaf 100644 --- a/src/sites/sites-react/doc-taro/App.tsx +++ b/src/sites/sites-react/doc-taro/App.tsx @@ -13,7 +13,7 @@ import loadable from '@loadable/component' import CodeBlock from '../doc/components/demoblock/codeblock' import { BackTop } from '../../../packages/backtop/backtop' import { Navigate } from 'react-router-dom' - +import Contribution from '../doc/components/contribution' const Title = () => { console.log(routers) let location = useLocation() @@ -64,6 +64,7 @@ const Title = () => { const components = { CodeBlock, + Contribution, } const Content = () => { diff --git a/src/sites/sites-react/doc/App.tsx b/src/sites/sites-react/doc/App.tsx index b82c72b8b8..573f2ea55c 100644 --- a/src/sites/sites-react/doc/App.tsx +++ b/src/sites/sites-react/doc/App.tsx @@ -18,7 +18,7 @@ import { routes as routers, guideEnRoutes, guideRoutes } from './router' import loadable from '@loadable/component' import CodeBlock from './components/demoblock/codeblock' import { BackTop } from '../../../packages/backtop/backtop' - +import Contribution from './components/contribution' const Title = () => { let location = useLocation() const isTaro = window.location.pathname.includes('taro') @@ -68,6 +68,7 @@ const Title = () => { const components = { CodeBlock, + Contribution } const Content = () => { diff --git a/src/sites/sites-react/doc/components/contribution/contribution.json b/src/sites/sites-react/doc/components/contribution/contribution.json new file mode 100644 index 0000000000..76a90247c7 --- /dev/null +++ b/src/sites/sites-react/doc/components/contribution/contribution.json @@ -0,0 +1,2999 @@ +{ + "issues": { + "Button": [], + "Cell": [], + "ConfigProvider": [], + "Icon": [], + "Image": [], + "Overlay": [], + "Divider": [], + "Grid": [], + "Layout": [], + "SafeArea": [], + "Space": [], + "Sticky": [], + "BackTop": [], + "Elevator": [], + "FixedNav": [], + "HoverButton": [], + "NavBar": [], + "SideBar": [], + "Tabbar": [], + "Tabs": [ + { + "title": "Tabs 数量多,滚动操作时有bug", + "url": "https://github.com/jdf2e/nutui-react/issues/2653", + "number": 2653 + }, + { + "title": "[FR]: Tabs增加控制自定义内部ScrollIntoView的方法", + "url": "https://github.com/jdf2e/nutui-react/issues/2923", + "number": 2923 + }, + { + "title": "Tabs 选项卡 数量多横向切换滚动位置bug", + "url": "https://github.com/jdf2e/nutui-react/issues/2930", + "number": 2930 + } + ], + "Address": [], + "Calendar": [ + { + "title": "Calendar 底部确认按钮样式错位", + "url": "https://github.com/jdf2e/nutui-react/issues/2909", + "number": 2909 + } + ], + "CalendarCard": [], + "Cascader": [], + "Checkbox": [], + "DatePicker": [], + "DatePickerView": [], + "Form": [], + "Input": [ + { + "title": "iOS端,Input在有值的情况下点击聚焦,光标会置于最左边,而不是最右边", + "url": "https://github.com/jdf2e/nutui-react/issues/1240", + "number": 1240 + } + ], + "InputNumber": [], + "Menu": [], + "NumberKeyboard": [], + "Picker": [], + "PickerView": [], + "Radio": [], + "Range": [], + "Rate": [], + "SearchBar": [], + "ShortPassword": [], + "Signature": [], + "Switch": [], + "TextArea": [], + "Uploader": [ + { + "title": " Uploader 上传组件上传成功后 onSuccess 参数里面放files 数组是空的,没有对应上传后的文件列表,从12-15测试都有这个问题 ", + "url": "https://github.com/jdf2e/nutui-react/issues/2506", + "number": 2506 + } + ], + "ActionSheet": [], + "Badge": [], + "Dialog": [ + { + "title": "在taro4版本中用函数方式调用toast和Dialog等没有反应也不出弹出", + "url": "https://github.com/jdf2e/nutui-react/issues/2584", + "number": 2584 + } + ], + "Drag": [], + "Empty": [], + "InfiniteLoading": [], + "Loading": [], + "NoticeBar": [], + "Notify": [], + "Popover": [], + "Popup": [], + "PullToRefresh": [], + "ResultPage": [], + "Skeleton": [], + "Swipe": [], + "Toast": [ + { + "title": "在taro4版本中用函数方式调用toast和Dialog等没有反应也不出弹出", + "url": "https://github.com/jdf2e/nutui-react/issues/2584", + "number": 2584 + } + ], + "Animate": [], + "AnimatingNumbers": [], + "Audio": [], + "Avatar": [], + "CircleProgress": [], + "Collapse": [], + "CountDown": [], + "Ellipsis": [], + "ImagePreview": [], + "Indicator": [], + "Lottie": [], + "Pagination": [], + "Price": [], + "Progress": [], + "Segmented": [], + "Steps": [], + "Swiper": [], + "Table": [], + "Tag": [], + "Tour": [], + "Video": [], + "VirtualList": [], + "AvatarCropper": [], + "Barrage": [], + "Card": [], + "TimeSelect": [], + "TrendArrow": [], + "WaterMark": [] + }, + "logs": { + "Button": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: calender footer button css ([#2971](https://github.com/jdf2e/nutui-react/pull/2971))`", + "rawContent": "`fix: calender footer button css ([#2971](https://github.com/jdf2e/nutui-react/pull/2971))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(button): v15 ([#2737](https://github.com/jdf2e/nutui-react/pull/2737))`", + "rawContent": "`feat(button): v15 ([#2737](https://github.com/jdf2e/nutui-react/pull/2737))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.3", + "type": "fix", + "content": "🐛 支持 button block ([#2853](https://github.com/jdf2e/nutui-react/pull/2853))", + "rawContent": "支持 button block ([#2853](https://github.com/jdf2e/nutui-react/pull/2853))", + "tagName": "v2.7.3" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "rawContent": "usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.8", + "type": "feat", + "content": "✨ feat(button): 新增 button 原始类型属性 ([#2195](https://github.com/jdf2e/nutui-react/pull/2195)) @Jiankian", + "rawContent": "feat(button): 新增 button 原始类型属性 ([#2195](https://github.com/jdf2e/nutui-react/pull/2195)) @Jiankian", + "tagName": "v2.6.8" + } + ], + "Cell": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(cell): update Icon ([#2716](https://github.com/jdf2e/nutui-react/pull/2716))`", + "rawContent": "`fix(cell): update Icon ([#2716](https://github.com/jdf2e/nutui-react/pull/2716))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.17", + "type": "feat", + "content": "✨ feat(cell): add clickable prop to support click style feedback ([#2527](https://github.com/jdf2e/nutui-react/pull/2527))", + "rawContent": "feat(cell): add clickable prop to support click style feedback ([#2527](https://github.com/jdf2e/nutui-react/pull/2527))", + "tagName": "v2.6.17" + }, + { + "version": "v2.4.0", + "type": "fix", + "content": "🐛 fix(cell): unify the demos of Cell ([#1998](https://github.com/jdf2e/nutui-react/pull/1998)) @Alex.huxiyang", + "rawContent": "fix(cell): unify the demos of Cell ([#1998](https://github.com/jdf2e/nutui-react/pull/1998)) @Alex.huxiyang", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.7", + "type": "fix", + "content": "🐛 fix(cell): doc、demo一致化改进 ([#1877](https://github.com/jdf2e/nutui-react/pull/1877)) @Alex.huxiyang", + "rawContent": "fix(cell): doc、demo一致化改进 ([#1877](https://github.com/jdf2e/nutui-react/pull/1877)) @Alex.huxiyang", + "tagName": "v2.3.7" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor(cell): 修订类名 ([#1722](https://github.com/jdf2e/nutui-react/pull/1722)) @xiaoyatong", + "rawContent": "🛠 refactor(cell): 修订类名 ([#1722](https://github.com/jdf2e/nutui-react/pull/1722)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "ConfigProvider": [ + { + "version": "v2.7.8", + "type": "others", + "content": "📖 docs(configprovider): 优化文档中的主题配置描述 ([#2959](https://github.com/jdf2e/nutui-react/pull/2959))", + "rawContent": "📖 docs(configprovider): 优化文档中的主题配置描述 ([#2959](https://github.com/jdf2e/nutui-react/pull/2959))", + "tagName": "v2.7.8" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(configProvidder): demo拆解与自动替换脚本&configProvider规范统一 ([#2005](https://github.com/jdf2e/nutui-react/pull/2005)) @Alex-huxiyang", + "rawContent": "fix(configProvidder): demo拆解与自动替换脚本&configProvider规范统一 ([#2005](https://github.com/jdf2e/nutui-react/pull/2005)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.12", + "type": "others", + "content": "🛠 refactor: adjust build target to ES6, reduce size of configprovider ([#1949](https://github.com/jdf2e/nutui-react/pull/1949)) @oasis-cloud", + "rawContent": "🛠 refactor: adjust build target to ES6, reduce size of configprovider ([#1949](https://github.com/jdf2e/nutui-react/pull/1949)) @oasis-cloud", + "tagName": "v2.3.12" + }, + { + "version": "v2.3.8", + "type": "others", + "content": "📖 docs(configprovider): 文档可读性优化 ([#1882](https://github.com/jdf2e/nutui-react/pull/1882)) @Alex.huxiyang", + "rawContent": "📖 docs(configprovider): 文档可读性优化 ([#1882](https://github.com/jdf2e/nutui-react/pull/1882)) @Alex.huxiyang", + "tagName": "v2.3.8" + }, + { + "version": "v2.0.5", + "type": "feat", + "content": "✨ configProvider 组件性能优化 ([#1230](https://github.com/jdf2e/nutui-react/pull/1230)) @大喵", + "rawContent": "configProvider 组件性能优化 ([#1230](https://github.com/jdf2e/nutui-react/pull/1230)) @大喵", + "tagName": "v2.0.5" + } + ], + "Icon": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: 恢复icon,简化demo ([#2725](https://github.com/jdf2e/nutui-react/pull/2725))`", + "rawContent": "`fix: 恢复icon,简化demo ([#2725](https://github.com/jdf2e/nutui-react/pull/2725))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: fix icon svg ([#2742](https://github.com/jdf2e/nutui-react/pull/2742))`", + "rawContent": "`refactor: fix icon svg ([#2742](https://github.com/jdf2e/nutui-react/pull/2742))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat: icons 的替换方案优化,支持无法可用 icon 映射的情况 ([#2922](https://github.com/jdf2e/nutui-react/pull/2922))`", + "rawContent": "`feat: icons 的替换方案优化,支持无法可用 icon 映射的情况 ([#2922](https://github.com/jdf2e/nutui-react/pull/2922))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.0", + "type": "feat", + "content": "✨ feat(replace icon): jmapp icon ([#2672](https://github.com/jdf2e/nutui-react/pull/2672))", + "rawContent": "feat(replace icon): jmapp icon ([#2672](https://github.com/jdf2e/nutui-react/pull/2672))", + "tagName": "v2.7.0" + }, + { + "version": "v2.7.0", + "type": "feat", + "content": "✨ add plugin to replace icons ([#2671](https://github.com/jdf2e/nutui-react/pull/2671))", + "rawContent": "add plugin to replace icons ([#2671](https://github.com/jdf2e/nutui-react/pull/2671))", + "tagName": "v2.7.0" + } + ], + "Image": [ + { + "version": "v2.7.7", + "type": "fix", + "content": "🐛 imageSize=0无效 ([#2937](https://github.com/jdf2e/nutui-react/pull/2937))", + "rawContent": "imageSize=0无效 ([#2937](https://github.com/jdf2e/nutui-react/pull/2937))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.2", + "type": "fix", + "content": "🐛 Uploade 组件无法预览图片 ([#2822](https://github.com/jdf2e/nutui-react/pull/2822))", + "rawContent": "Uploade 组件无法预览图片 ([#2822](https://github.com/jdf2e/nutui-react/pull/2822))", + "tagName": "v2.7.2" + }, + { + "version": "v2.6.17", + "type": "feat", + "content": "✨ feat(image-preview): 增加索引字段,用于预览内容排序 ([#2519](https://github.com/jdf2e/nutui-react/pull/2519))", + "rawContent": "feat(image-preview): 增加索引字段,用于预览内容排序 ([#2519](https://github.com/jdf2e/nutui-react/pull/2519))", + "tagName": "v2.6.17" + }, + { + "version": "v2.6.5", + "type": "others", + "content": "🏡 chore(image): 官网taro的demo显示与h5不一致 ([#2244](https://github.com/jdf2e/nutui-react/pull/2244)) @Alex-huxiyang", + "rawContent": "🏡 chore(image): 官网taro的demo显示与h5不一致 ([#2244](https://github.com/jdf2e/nutui-react/pull/2244)) @Alex-huxiyang", + "tagName": "v2.6.5" + }, + { + "version": "v2.6.4", + "type": "others", + "content": "🏡 chore(image): demo代码风格优化 ([#2220](https://github.com/jdf2e/nutui-react/pull/2220)) @Alex-huxiyang", + "rawContent": "🏡 chore(image): demo代码风格优化 ([#2220](https://github.com/jdf2e/nutui-react/pull/2220)) @Alex-huxiyang", + "tagName": "v2.6.4" + } + ], + "Overlay": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: fixed overlay zIndex is not effective, and extract types of compnoents ([#2954](https://github.com/jdf2e/nutui-react/pull/2954))`", + "rawContent": "`refactor: fixed overlay zIndex is not effective, and extract types of compnoents ([#2954](https://github.com/jdf2e/nutui-react/pull/2954))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.23", + "type": "fix", + "content": "🐛 fix(overlay): tour position offset in tour.taro ([#2631](https://github.com/jdf2e/nutui-react/pull/2631))", + "rawContent": "fix(overlay): tour position offset in tour.taro ([#2631](https://github.com/jdf2e/nutui-react/pull/2631))", + "tagName": "v2.6.23" + }, + { + "version": "v2.5.0", + "type": "others", + "content": "📖 docs(overlay): fix typo @eiinu", + "rawContent": "📖 docs(overlay): fix typo @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(overlay): demo拆解与规范 ([#2012](https://github.com/jdf2e/nutui-react/pull/2012)) @Alex-huxiyang", + "rawContent": "fix(overlay): demo拆解与规范 ([#2012](https://github.com/jdf2e/nutui-react/pull/2012)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.8", + "type": "fix", + "content": "🐛 fix(overlay): 文档可读性优化 ([#1894](https://github.com/jdf2e/nutui-react/pull/1894)) @Alex.huxiyang", + "rawContent": "fix(overlay): 文档可读性优化 ([#1894](https://github.com/jdf2e/nutui-react/pull/1894)) @Alex.huxiyang", + "tagName": "v2.3.8" + } + ], + "Divider": [ + { + "version": "v2.7.0", + "type": "fix", + "content": "🐛 optimize vertical type syntax for divider ([#2664](https://github.com/jdf2e/nutui-react/pull/2664))", + "rawContent": "optimize vertical type syntax for divider ([#2664](https://github.com/jdf2e/nutui-react/pull/2664))", + "tagName": "v2.7.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(divider): demo拆解与规范 ([#2013](https://github.com/jdf2e/nutui-react/pull/2013)) @Alex-huxiyang", + "rawContent": "fix(divider): demo拆解与规范 ([#2013](https://github.com/jdf2e/nutui-react/pull/2013)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.2.0", + "type": "others", + "content": "🌈 style: divider css 修改, 修改部分css变量 ([#1669](https://github.com/jdf2e/nutui-react/pull/1669)) @xiaoyatong", + "rawContent": "🌈 style: divider css 修改, 修改部分css变量 ([#1669](https://github.com/jdf2e/nutui-react/pull/1669)) @xiaoyatong", + "tagName": "v2.2.0" + }, + { + "version": "v2.0.11", + "type": "others", + "content": "📖 docs: divider 组件的 styles 属性示例改为 style ([#1290](https://github.com/jdf2e/nutui-react/pull/1290)) @oasis-cloud", + "rawContent": "📖 docs: divider 组件的 styles 属性示例改为 style ([#1290](https://github.com/jdf2e/nutui-react/pull/1290)) @oasis-cloud", + "tagName": "v2.0.11" + } + ], + "Grid": [ + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(grid): demo拆解与规范 ([#2014](https://github.com/jdf2e/nutui-react/pull/2014)) @Alex-huxiyang", + "rawContent": "fix(grid): demo拆解与规范 ([#2014](https://github.com/jdf2e/nutui-react/pull/2014)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.8", + "type": "others", + "content": "📖 docs(grid): 文档可读性优化 ([#1903](https://github.com/jdf2e/nutui-react/pull/1903)) @Alex.huxiyang", + "rawContent": "📖 docs(grid): 文档可读性优化 ([#1903](https://github.com/jdf2e/nutui-react/pull/1903)) @Alex.huxiyang", + "tagName": "v2.3.8" + }, + { + "version": "v2.2.0", + "type": "feat", + "content": "✨ feat(grid): 增加 demo ([#1660](https://github.com/jdf2e/nutui-react/pull/1660)) @xiaoyatong", + "rawContent": "feat(grid): 增加 demo ([#1660](https://github.com/jdf2e/nutui-react/pull/1660)) @xiaoyatong", + "tagName": "v2.2.0" + }, + { + "version": "v1.5.12", + "type": "fix", + "content": "🐛 修复gridItem组件外部传入样式为空时冲掉组件内置样式问题 ([#1214](https://github.com/jdf2e/nutui-react/pull/1214)) @cuicuiworld", + "rawContent": "修复gridItem组件外部传入样式为空时冲掉组件内置样式问题 ([#1214](https://github.com/jdf2e/nutui-react/pull/1214)) @cuicuiworld", + "tagName": "v1.5.12" + } + ], + "Layout": [ + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(layout): demo拆解与规范 & 修复脚本在不同操作系统的正则匹配出错 ([#2016](https://github.com/jdf2e/nutui-react/pull/2016)) @Alex-huxiyang", + "rawContent": "fix(layout): demo拆解与规范 & 修复脚本在不同操作系统的正则匹配出错 ([#2016](https://github.com/jdf2e/nutui-react/pull/2016)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.9", + "type": "others", + "content": "📖 docs(layout): 文档可读性优化 ([#1904](https://github.com/jdf2e/nutui-react/pull/1904)) @Alex.huxiyang", + "rawContent": "📖 docs(layout): 文档可读性优化 ([#1904](https://github.com/jdf2e/nutui-react/pull/1904)) @Alex.huxiyang", + "tagName": "v2.3.9" + }, + { + "version": "v2.0.0-alpha.17", + "type": "others", + "content": "📖 docs: 修改布局文档相关 @hanyuxinting", + "rawContent": "📖 docs: 修改布局文档相关 @hanyuxinting", + "tagName": "v2.0.0-alpha.17" + }, + { + "version": "v2.0.0-alpha.17", + "type": "others", + "content": "📖 docs: 文档走查及问题修复-基础&布局组件([#1117](https://github.com/jdf2e/nutui-react/pull/1117)) @Eiinu", + "rawContent": "📖 docs: 文档走查及问题修复-基础&布局组件([#1117](https://github.com/jdf2e/nutui-react/pull/1117)) @Eiinu", + "tagName": "v2.0.0-alpha.17" + } + ], + "SafeArea": [ + { + "version": "v2.6.8", + "type": "fix", + "content": "🐛 safearea for ac ([#2293](https://github.com/jdf2e/nutui-react/pull/2293)) @xiaoyatong", + "rawContent": "safearea for ac ([#2293](https://github.com/jdf2e/nutui-react/pull/2293)) @xiaoyatong", + "tagName": "v2.6.8" + }, + { + "version": "v2.1.0", + "type": "feat", + "content": "✨ feat(safearea): 新增安全区组件 ([#1642](https://github.com/jdf2e/nutui-react/pull/1642)) @oasis-cloud", + "rawContent": "feat(safearea): 新增安全区组件 ([#1642](https://github.com/jdf2e/nutui-react/pull/1642)) @oasis-cloud", + "tagName": "v2.1.0" + } + ], + "Space": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: space harmony ([#2817](https://github.com/jdf2e/nutui-react/pull/2817))`", + "rawContent": "`fix: space harmony ([#2817](https://github.com/jdf2e/nutui-react/pull/2817))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(space): demo拆解与规范 ([#2021](https://github.com/jdf2e/nutui-react/pull/2021)) @Alex-huxiyang", + "rawContent": "fix(space): demo拆解与规范 ([#2021](https://github.com/jdf2e/nutui-react/pull/2021)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.7", + "type": "fix", + "content": "🐛 fix(space): 主/交叉轴的 demo 与国际化改进 ([#1867](https://github.com/jdf2e/nutui-react/pull/1867)) @Alex.huxiyang", + "rawContent": "fix(space): 主/交叉轴的 demo 与国际化改进 ([#1867](https://github.com/jdf2e/nutui-react/pull/1867)) @Alex.huxiyang", + "tagName": "v2.3.7" + }, + { + "version": "v2.3.6", + "type": "feat", + "content": "✨ feat(space): update demos and docs of justify and align ([#1856](https://github.com/jdf2e/nutui-react/pull/1856)) @Alex.huxiyang", + "rawContent": "feat(space): update demos and docs of justify and align ([#1856](https://github.com/jdf2e/nutui-react/pull/1856)) @Alex.huxiyang", + "tagName": "v2.3.6" + }, + { + "version": "v2.0.13", + "type": "feat", + "content": "✨ 提取 Taro 的 Demo 到 workspace ([#1302](https://github.com/jdf2e/nutui-react/pull/1302)) @oasis-cloud", + "rawContent": "提取 Taro 的 Demo 到 workspace ([#1302](https://github.com/jdf2e/nutui-react/pull/1302)) @oasis-cloud", + "tagName": "v2.0.13" + } + ], + "Sticky": [ + { + "version": "v2.6.18", + "type": "fix", + "content": "🐛 fix(sticky): should rerender when zIndex changes ([#2572](https://github.com/jdf2e/nutui-react/pull/2572))", + "rawContent": "fix(sticky): should rerender when zIndex changes ([#2572](https://github.com/jdf2e/nutui-react/pull/2572))", + "tagName": "v2.6.18" + }, + { + "version": "v2.6.18", + "type": "fix", + "content": "🐛 fix(sticky): rerender sticky when threshold change ([#2564](https://github.com/jdf2e/nutui-react/pull/2564))", + "rawContent": "fix(sticky): rerender sticky when threshold change ([#2564](https://github.com/jdf2e/nutui-react/pull/2564))", + "tagName": "v2.6.18" + }, + { + "version": "v2.6.15", + "type": "fix", + "content": "🐛 sticky 构建时类型错误 @oasis-cloud", + "rawContent": "sticky 构建时类型错误 @oasis-cloud", + "tagName": "v2.6.15" + }, + { + "version": "v2.6.15", + "type": "others", + "content": "💡 🪵 refactor: sticky ([#2468](https://github.com/jdf2e/nutui-react/pull/2468)) @oasis-cloud", + "rawContent": "🪵 refactor: sticky ([#2468](https://github.com/jdf2e/nutui-react/pull/2468)) @oasis-cloud", + "tagName": "v2.6.15" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(sticky): demo拆解与规范 ([#2024](https://github.com/jdf2e/nutui-react/pull/2024)) @Alex-huxiyang", + "rawContent": "fix(sticky): demo拆解与规范 ([#2024](https://github.com/jdf2e/nutui-react/pull/2024)) @Alex-huxiyang", + "tagName": "v2.4.2" + } + ], + "BackTop": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: backtop using hoverbutton and v15 adaption ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "rawContent": "`refactor: backtop using hoverbutton and v15 adaption ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(backtop): v15 ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "rawContent": "`feat(backtop): v15 ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.5", + "type": "fix", + "content": "🐛 update backtop demos ([#2865](https://github.com/jdf2e/nutui-react/pull/2865))", + "rawContent": "update backtop demos ([#2865](https://github.com/jdf2e/nutui-react/pull/2865))", + "tagName": "v2.7.5" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(backtop & menu): lint, code simplification, deprecated pageYOffset removed ([#2633](https://github.com/jdf2e/nutui-react/pull/2633))", + "rawContent": "fix(backtop & menu): lint, code simplification, deprecated pageYOffset removed ([#2633](https://github.com/jdf2e/nutui-react/pull/2633))", + "tagName": "v2.6.22" + }, + { + "version": "v2.4.2", + "type": "feat", + "content": "✨ feat(backtop): rtl ([#2051](https://github.com/jdf2e/nutui-react/pull/2051)) @xiaoyatong", + "rawContent": "feat(backtop): rtl ([#2051](https://github.com/jdf2e/nutui-react/pull/2051)) @xiaoyatong", + "tagName": "v2.4.2" + } + ], + "Elevator": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(elevator): harmony适配 ([#2836](https://github.com/jdf2e/nutui-react/pull/2836))`", + "rawContent": "`fix(elevator): harmony适配 ([#2836](https://github.com/jdf2e/nutui-react/pull/2836))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.2", + "type": "feat", + "content": "✨ feat(elevator): 采用唯一ID,避免未传入 className 导致的报错 ([#2834](https://github.com/jdf2e/nutui-react/pull/2834))", + "rawContent": "feat(elevator): 采用唯一ID,避免未传入 className 导致的报错 ([#2834](https://github.com/jdf2e/nutui-react/pull/2834))", + "tagName": "v2.7.2" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(elevator): demo拆解与规范 ([#2030](https://github.com/jdf2e/nutui-react/pull/2030)) @Alex-huxiyang", + "rawContent": "fix(elevator): demo拆解与规范 ([#2030](https://github.com/jdf2e/nutui-react/pull/2030)) @Alex-huxiyang", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.12", + "type": "fix", + "content": "🐛 fix(elevator): 修复增加页码的逻辑 ([#1960](https://github.com/jdf2e/nutui-react/pull/1960)) @oasis-cloud", + "rawContent": "fix(elevator): 修复增加页码的逻辑 ([#1960](https://github.com/jdf2e/nutui-react/pull/1960)) @oasis-cloud", + "tagName": "v2.3.12" + }, + { + "version": "v2.3.12", + "type": "fix", + "content": "🐛 fix(elevator): 解决部分安卓手机右侧导航高亮偏差问题 ([#1966](https://github.com/jdf2e/nutui-react/pull/1966)) @songsong", + "rawContent": "fix(elevator): 解决部分安卓手机右侧导航高亮偏差问题 ([#1966](https://github.com/jdf2e/nutui-react/pull/1966)) @songsong", + "tagName": "v2.3.12" + } + ], + "FixedNav": [ + { + "version": "v2.6.11", + "type": "fix", + "content": "🐛 fix(fixednav): 可拖拽元素样式缺失 ([#2391](https://github.com/jdf2e/nutui-react/pull/2391)) @oasis-cloud", + "rawContent": "fix(fixednav): 可拖拽元素样式缺失 ([#2391](https://github.com/jdf2e/nutui-react/pull/2391)) @oasis-cloud", + "tagName": "v2.6.11" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(fixedNav): demo拆解与规范 ([#2048](https://github.com/jdf2e/nutui-react/pull/2048)) @Alex-huxiyang", + "rawContent": "fix(fixedNav): demo拆解与规范 ([#2048](https://github.com/jdf2e/nutui-react/pull/2048)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.2", + "type": "feat", + "content": "✨ feat(fixednav): add the list icon for ReactNode ([#1786](https://github.com/jdf2e/nutui-react/pull/1786)) @sunsunmonkey", + "rawContent": "feat(fixednav): add the list icon for ReactNode ([#1786](https://github.com/jdf2e/nutui-react/pull/1786)) @sunsunmonkey", + "tagName": "v2.3.2" + }, + { + "version": "v2.3.2", + "type": "others", + "content": "🛠 refactor: 类型文件统一为 types,增加 fixednavitem 类型 ([#1789](https://github.com/jdf2e/nutui-react/pull/1789)) @oasis-cloud", + "rawContent": "🛠 refactor: 类型文件统一为 types,增加 fixednavitem 类型 ([#1789](https://github.com/jdf2e/nutui-react/pull/1789)) @oasis-cloud", + "tagName": "v2.3.2" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(fixednav): 废弃 bem 规范, 修订 css 变量 ([#1702](https://github.com/jdf2e/nutui-react/pull/1702)) @xiaoyatong", + "rawContent": "style(fixednav): 废弃 bem 规范, 修订 css 变量 ([#1702](https://github.com/jdf2e/nutui-react/pull/1702)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "HoverButton": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 hoverbutton h5 border ([#3053](https://github.com/jdf2e/nutui-react/pull/3053))", + "rawContent": "hoverbutton h5 border ([#3053](https://github.com/jdf2e/nutui-react/pull/3053))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: backtop using hoverbutton and v15 adaption ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "rawContent": "`refactor: backtop using hoverbutton and v15 adaption ([#2866](https://github.com/jdf2e/nutui-react/pull/2866))`", + "tagName": "v3.0.0" + } + ], + "NavBar": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(navbar): 居左展示时,副标题居左 ([#3049](https://github.com/jdf2e/nutui-react/pull/3049))", + "rawContent": "fix(navbar): 居左展示时,副标题居左 ([#3049](https://github.com/jdf2e/nutui-react/pull/3049))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(navbar): tabpane 展示控制只限于 navbar ([#3048](https://github.com/jdf2e/nutui-react/pull/3048))", + "rawContent": "fix(navbar): tabpane 展示控制只限于 navbar ([#3048](https://github.com/jdf2e/nutui-react/pull/3048))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(navbar): v15 ([#2881](https://github.com/jdf2e/nutui-react/pull/2881))`", + "rawContent": "`feat(navbar): v15 ([#2881](https://github.com/jdf2e/nutui-react/pull/2881))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(navbar): safearea displays abnormal when safeAreaInsetTop has been set true ([#2632](https://github.com/jdf2e/nutui-react/pull/2632))", + "rawContent": "fix(navbar): safearea displays abnormal when safeAreaInsetTop has been set true ([#2632](https://github.com/jdf2e/nutui-react/pull/2632))", + "tagName": "v2.6.22" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(navbar): demo拆解与规范 ([#2055](https://github.com/jdf2e/nutui-react/pull/2055)) @Alex-huxiyang", + "rawContent": "fix(navbar): demo拆解与规范 ([#2055](https://github.com/jdf2e/nutui-react/pull/2055)) @Alex-huxiyang", + "tagName": "v2.4.2" + } + ], + "SideBar": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat: sidebar 组件 ([#2868](https://github.com/jdf2e/nutui-react/pull/2868))`", + "rawContent": "`feat: sidebar 组件 ([#2868](https://github.com/jdf2e/nutui-react/pull/2868))`", + "tagName": "v3.0.0" + } + ], + "Tabbar": [ + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(tabbar): demo拆解与规范&脚本增强 ([#2059](https://github.com/jdf2e/nutui-react/pull/2059)) @Alex-huxiyang", + "rawContent": "fix(tabbar): demo拆解与规范&脚本增强 ([#2059](https://github.com/jdf2e/nutui-react/pull/2059)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.9", + "type": "others", + "content": "📖 docs(tabbar): 文档可读性优化 ([#1921](https://github.com/jdf2e/nutui-react/pull/1921)) @Alex.huxiyang", + "rawContent": "📖 docs(tabbar): 文档可读性优化 ([#1921](https://github.com/jdf2e/nutui-react/pull/1921)) @Alex.huxiyang", + "tagName": "v2.3.9" + }, + { + "version": "v2.3.4", + "type": "others", + "content": "🐛 fix(tabbar): fix icon color ([#1816](https://github.com/jdf2e/nutui-react/pull/1816)) @xiaoyatong", + "rawContent": "🐛 fix(tabbar): fix icon color ([#1816](https://github.com/jdf2e/nutui-react/pull/1816)) @xiaoyatong", + "tagName": "v2.3.4" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(tabbar): add css variable ([#1742](https://github.com/jdf2e/nutui-react/pull/1742)) @xiaoyatong", + "rawContent": "style(tabbar): add css variable ([#1742](https://github.com/jdf2e/nutui-react/pull/1742)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.21", + "type": "others", + "content": "📖 docs(tabbar): Correct module names of tabbar component ([#1539](https://github.com/jdf2e/nutui-react/pull/1539)) @HUMORCE", + "rawContent": "📖 docs(tabbar): Correct module names of tabbar component ([#1539](https://github.com/jdf2e/nutui-react/pull/1539)) @HUMORCE", + "tagName": "v2.0.21" + } + ], + "Tabs": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 merge tabs 2.x, 修复第一个项目无法滚动到视图的问题 ([#3043](https://github.com/jdf2e/nutui-react/pull/3043))", + "rawContent": "merge tabs 2.x, 修复第一个项目无法滚动到视图的问题 ([#3043](https://github.com/jdf2e/nutui-react/pull/3043))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: tabs 适配鸿蒙 ([#2820](https://github.com/jdf2e/nutui-react/pull/2820))`", + "rawContent": "`refactor: tabs 适配鸿蒙 ([#2820](https://github.com/jdf2e/nutui-react/pull/2820))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(tabs): v15 ([#2820](https://github.com/jdf2e/nutui-react/pull/2820))`", + "rawContent": "`feat(tabs): v15 ([#2820](https://github.com/jdf2e/nutui-react/pull/2820))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.7", + "type": "fix", + "content": "🐛 tabs 代码简化,调整部分样式 ([#2949](https://github.com/jdf2e/nutui-react/pull/2949))", + "rawContent": "tabs 代码简化,调整部分样式 ([#2949](https://github.com/jdf2e/nutui-react/pull/2949))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.6", + "type": "fix", + "content": "🐛 fix(tabs): 修复意外地出现了滚动条 ([#2912](https://github.com/jdf2e/nutui-react/pull/2912))", + "rawContent": "fix(tabs): 修复意外地出现了滚动条 ([#2912](https://github.com/jdf2e/nutui-react/pull/2912))", + "tagName": "v2.7.6" + } + ], + "Address": [ + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 修复address组件onChange参数透传问题 ([#2110](https://github.com/jdf2e/nutui-react/pull/2110)) @DreamSeeker321", + "rawContent": "修复address组件onChange参数透传问题 ([#2110](https://github.com/jdf2e/nutui-react/pull/2110)) @DreamSeeker321", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(address): demo拆解与规范 ([#2068](https://github.com/jdf2e/nutui-react/pull/2068)) @Alex-huxiyang", + "rawContent": "fix(address): demo拆解与规范 ([#2068](https://github.com/jdf2e/nutui-react/pull/2068)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "📖 docs: address and collapse doc icons ([#1692](https://github.com/jdf2e/nutui-react/pull/1692)) @xiaoyatong", + "rawContent": "📖 docs: address and collapse doc icons ([#1692](https://github.com/jdf2e/nutui-react/pull/1692)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.3.0", + "type": "fix", + "content": "🐛 address close icon cannot be customed ([#1685](https://github.com/jdf2e/nutui-react/pull/1685)) @xiaoyatong", + "rawContent": "address close icon cannot be customed ([#1685](https://github.com/jdf2e/nutui-react/pull/1685)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.3.0", + "type": "fix", + "content": "🐛 picker 和 address 在 form 中使用,未阻止冒泡,导致取消和确认无法关闭 ([#1710](https://github.com/jdf2e/nutui-react/pull/1710)) @oasis-cloud", + "rawContent": "picker 和 address 在 form 中使用,未阻止冒泡,导致取消和确认无法关闭 ([#1710](https://github.com/jdf2e/nutui-react/pull/1710)) @oasis-cloud", + "tagName": "v2.3.0" + } + ], + "Calendar": [ + { + "version": "v2.7.8", + "type": "others", + "content": "💡 🪵 refactor: calendar ([#2983](https://github.com/jdf2e/nutui-react/pull/2983))", + "rawContent": "🪵 refactor: calendar ([#2983](https://github.com/jdf2e/nutui-react/pull/2983))", + "tagName": "v2.7.8" + }, + { + "version": "v2.7.5", + "type": "fix", + "content": "🐛 调整日历日期 ([#2914](https://github.com/jdf2e/nutui-react/pull/2914))", + "rawContent": "调整日历日期 ([#2914](https://github.com/jdf2e/nutui-react/pull/2914))", + "tagName": "v2.7.5" + }, + { + "version": "v2.6.23", + "type": "feat", + "content": "✨ feat(calendar): support renderBottomButton props ([#2645](https://github.com/jdf2e/nutui-react/pull/2645))", + "rawContent": "feat(calendar): support renderBottomButton props ([#2645](https://github.com/jdf2e/nutui-react/pull/2645))", + "tagName": "v2.6.23" + }, + { + "version": "v2.6.23", + "type": "feat", + "content": "✨ feat(calendar): support deleteIcon props ([#2644](https://github.com/jdf2e/nutui-react/pull/2644))", + "rawContent": "feat(calendar): support deleteIcon props ([#2644](https://github.com/jdf2e/nutui-react/pull/2644))", + "tagName": "v2.6.23" + }, + { + "version": "v2.6.15", + "type": "fix", + "content": "🐛 修复日历进行快捷选择日期时 点击确认获取的是上一次的日期 ([#2436](https://github.com/jdf2e/nutui-react/pull/2436)) @yangqianlu", + "rawContent": "修复日历进行快捷选择日期时 点击确认获取的是上一次的日期 ([#2436](https://github.com/jdf2e/nutui-react/pull/2436)) @yangqianlu", + "tagName": "v2.6.15" + } + ], + "CalendarCard": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(calendarcard): v15 ([#2732](https://github.com/jdf2e/nutui-react/pull/2732))`", + "rawContent": "`feat(calendarcard): v15 ([#2732](https://github.com/jdf2e/nutui-react/pull/2732))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.5.2", + "type": "fix", + "content": "🐛 fix(calendarcard): 直接抛出ondayclick ([#2150](https://github.com/jdf2e/nutui-react/pull/2150)) @oasis-cloud", + "rawContent": "fix(calendarcard): 直接抛出ondayclick ([#2150](https://github.com/jdf2e/nutui-react/pull/2150)) @oasis-cloud", + "tagName": "v2.5.2" + }, + { + "version": "v2.5.0", + "type": "others", + "content": "🏡 chore(calendarcard): demo 拆解与规范 ([#2026](https://github.com/jdf2e/nutui-react/pull/2026)) @eiinu", + "rawContent": "🏡 chore(calendarcard): demo 拆解与规范 ([#2026](https://github.com/jdf2e/nutui-react/pull/2026)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(calendarcard): 修复受控模式 ([#2063](https://github.com/jdf2e/nutui-react/pull/2063)) @eiinu", + "rawContent": "fix(calendarcard): 修复受控模式 ([#2063](https://github.com/jdf2e/nutui-react/pull/2063)) @eiinu", + "tagName": "v2.4.2" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(calendarcard): 选择范围时支持仅选择单个日期 ([#2009](https://github.com/jdf2e/nutui-react/pull/2009)) @eiinu", + "rawContent": "fix(calendarcard): 选择范围时支持仅选择单个日期 ([#2009](https://github.com/jdf2e/nutui-react/pull/2009)) @eiinu", + "tagName": "v2.4.1" + } + ], + "Cascader": [ + { + "version": "v2.6.19", + "type": "fix", + "content": "🐛 fix(cascader): 受控状态下 value 变化时同步组件选中状态 ([#2591](https://github.com/jdf2e/nutui-react/pull/2591))", + "rawContent": "fix(cascader): 受控状态下 value 变化时同步组件选中状态 ([#2591](https://github.com/jdf2e/nutui-react/pull/2591))", + "tagName": "v2.6.19" + }, + { + "version": "v2.6.14", + "type": "fix", + "content": "🐛 fix(cascader): 初始化设置value未成功选中 ([#2435](https://github.com/jdf2e/nutui-react/pull/2435)) @Alex-huxiyang", + "rawContent": "fix(cascader): 初始化设置value未成功选中 ([#2435](https://github.com/jdf2e/nutui-react/pull/2435)) @Alex-huxiyang", + "tagName": "v2.6.14" + }, + { + "version": "v2.6.8", + "type": "fix", + "content": "🐛 fix(cascader): onPathChange is not a function ([#2308](https://github.com/jdf2e/nutui-react/pull/2308)) @oasis-cloud", + "rawContent": "fix(cascader): onPathChange is not a function ([#2308](https://github.com/jdf2e/nutui-react/pull/2308)) @oasis-cloud", + "tagName": "v2.6.8" + }, + { + "version": "v2.5.2", + "type": "others", + "content": "🏡 chore(cascader): demo拆解与规范 ([#2144](https://github.com/jdf2e/nutui-react/pull/2144)) @Alex.huxiyang", + "rawContent": "🏡 chore(cascader): demo拆解与规范 ([#2144](https://github.com/jdf2e/nutui-react/pull/2144)) @Alex.huxiyang", + "tagName": "v2.5.2" + }, + { + "version": "v2.3.3", + "type": "fix", + "content": "🐛 fix(cascader): 增加 ref 上的 open 和 close 方法,支持 form 中使用 ([#1799](https://github.com/jdf2e/nutui-react/pull/1799)) @oasis-cloud", + "rawContent": "fix(cascader): 增加 ref 上的 open 和 close 方法,支持 form 中使用 ([#1799](https://github.com/jdf2e/nutui-react/pull/1799)) @oasis-cloud", + "tagName": "v2.3.3" + } + ], + "Checkbox": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(checkbox): v15 ([#2730](https://github.com/jdf2e/nutui-react/pull/2730))`", + "rawContent": "`feat(checkbox): v15 ([#2730](https://github.com/jdf2e/nutui-react/pull/2730))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.5", + "type": "fix", + "content": "🐛 关于checkbox&tabs的doc与demo修改 ([#2253](https://github.com/jdf2e/nutui-react/pull/2253)) @Alex-huxiyang", + "rawContent": "关于checkbox&tabs的doc与demo修改 ([#2253](https://github.com/jdf2e/nutui-react/pull/2253)) @Alex-huxiyang", + "tagName": "v2.6.5" + }, + { + "version": "v2.5.2", + "type": "others", + "content": "🏡 chore(checkbox): demo拆解与规范 ([#2146](https://github.com/jdf2e/nutui-react/pull/2146)) @Alex.huxiyang", + "rawContent": "🏡 chore(checkbox): demo拆解与规范 ([#2146](https://github.com/jdf2e/nutui-react/pull/2146)) @Alex.huxiyang", + "tagName": "v2.5.2" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(checkbox): list model ([#1957](https://github.com/jdf2e/nutui-react/pull/1957)) @oasis-cloud", + "rawContent": "feat(checkbox): list model ([#1957](https://github.com/jdf2e/nutui-react/pull/1957)) @oasis-cloud", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.7", + "type": "feat", + "content": "✨ feat(checkbox): 增加至少选择项数量的设置功能 ([#1859](https://github.com/jdf2e/nutui-react/pull/1859)) @oasis-cloud", + "rawContent": "feat(checkbox): 增加至少选择项数量的设置功能 ([#1859](https://github.com/jdf2e/nutui-react/pull/1859)) @oasis-cloud", + "tagName": "v2.3.7" + } + ], + "DatePicker": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 解决按需引入picker和datepicker没有样式问题 ([#3064](https://github.com/jdf2e/nutui-react/pull/3064))", + "rawContent": "解决按需引入picker和datepicker没有样式问题 ([#3064](https://github.com/jdf2e/nutui-react/pull/3064))", + "tagName": "v3.0.2" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: datepicker ([#3023](https://github.com/jdf2e/nutui-react/pull/3023))`", + "rawContent": "`refactor: datepicker ([#3023](https://github.com/jdf2e/nutui-react/pull/3023))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.19", + "type": "fix", + "content": "🐛 fix(datepicker): show zero on page ([#2582](https://github.com/jdf2e/nutui-react/pull/2582))", + "rawContent": "fix(datepicker): show zero on page ([#2582](https://github.com/jdf2e/nutui-react/pull/2582))", + "tagName": "v2.6.19" + }, + { + "version": "v2.6.2", + "type": "fix", + "content": "🐛 fix(datepicker): 修复受控方式下选项联动更新问题 ([#2201](https://github.com/jdf2e/nutui-react/pull/2201)) @eiinu", + "rawContent": "fix(datepicker): 修复受控方式下选项联动更新问题 ([#2201](https://github.com/jdf2e/nutui-react/pull/2201)) @eiinu", + "tagName": "v2.6.2" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(datepicker): 修复 datepicker 类型为hour-minutes/time时选中值无法回显的问题 ([#2141](https://github.com/jdf2e/nutui-react/pull/2141)) @yeyu98", + "rawContent": "fix(datepicker): 修复 datepicker 类型为hour-minutes/time时选中值无法回显的问题 ([#2141](https://github.com/jdf2e/nutui-react/pull/2141)) @yeyu98", + "tagName": "v2.5.1" + } + ], + "DatePickerView": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 datepickerview ([#3026](https://github.com/jdf2e/nutui-react/pull/3026))", + "rawContent": "datepickerview ([#3026](https://github.com/jdf2e/nutui-react/pull/3026))", + "tagName": "v3.0.1" + } + ], + "Form": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 feat(form): 同步 2.x 的功能 ([#2976](https://github.com/jdf2e/nutui-react/pull/2976))", + "rawContent": "feat(form): 同步 2.x 的功能 ([#2976](https://github.com/jdf2e/nutui-react/pull/2976))", + "tagName": "v3.0.2" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(form): replace with Taro Form and add the rest property for passt… ([#3016](https://github.com/jdf2e/nutui-react/pull/3016))`", + "rawContent": "`fix(form): replace with Taro Form and add the rest property for passt… ([#3016](https://github.com/jdf2e/nutui-react/pull/3016))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.7", + "type": "feat", + "content": "✨ feat(form): resetFields 增加 namepath 参数,用于重置指定的字段 ([#2953](https://github.com/jdf2e/nutui-react/pull/2953))", + "rawContent": "feat(form): resetFields 增加 namepath 参数,用于重置指定的字段 ([#2953](https://github.com/jdf2e/nutui-react/pull/2953))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.7", + "type": "feat", + "content": "✨ feat(form): add useWatch ([#2932](https://github.com/jdf2e/nutui-react/pull/2932))", + "rawContent": "feat(form): add useWatch ([#2932](https://github.com/jdf2e/nutui-react/pull/2932))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.7", + "type": "fix", + "content": "🐛 fix(form): 修复 formitem 的值如果是对象会自动重置为空对象的问题 ([#2952](https://github.com/jdf2e/nutui-react/pull/2952))", + "rawContent": "fix(form): 修复 formitem 的值如果是对象会自动重置为空对象的问题 ([#2952](https://github.com/jdf2e/nutui-react/pull/2952))", + "tagName": "v2.7.7" + } + ], + "Input": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 fix(input): style 属性设置为 CSSProperties 类型的值 ([#3059](https://github.com/jdf2e/nutui-react/pull/3059))", + "rawContent": "fix(input): style 属性设置为 CSSProperties 类型的值 ([#3059](https://github.com/jdf2e/nutui-react/pull/3059))", + "tagName": "v3.0.2" + }, + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(input): 显示设置 placeholder 字体颜色 ([#3050](https://github.com/jdf2e/nutui-react/pull/3050))", + "rawContent": "fix(input): 显示设置 placeholder 字体颜色 ([#3050](https://github.com/jdf2e/nutui-react/pull/3050))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(input): v15 ([#2889](https://github.com/jdf2e/nutui-react/pull/2889))`", + "rawContent": "`feat(input): v15 ([#2889](https://github.com/jdf2e/nutui-react/pull/2889))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(input): v15 ([#2711](https://github.com/jdf2e/nutui-react/pull/2711))`", + "rawContent": "`feat(input): v15 ([#2711](https://github.com/jdf2e/nutui-react/pull/2711))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `perf: input ([#2978](https://github.com/jdf2e/nutui-react/pull/2978))`", + "rawContent": "`perf: input ([#2978](https://github.com/jdf2e/nutui-react/pull/2978))`", + "tagName": "v3.0.0" + } + ], + "InputNumber": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(inputnumber): icon 适配 && 修改icon宽度和设定的--nut-icon-width一致 ([#2707](https://github.com/jdf2e/nutui-react/pull/2707))`", + "rawContent": "`fix(inputnumber): icon 适配 && 修改icon宽度和设定的--nut-icon-width一致 ([#2707](https://github.com/jdf2e/nutui-react/pull/2707))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(inputNumber): v15 ([#2823](https://github.com/jdf2e/nutui-react/pull/2823))`", + "rawContent": "`feat(inputNumber): v15 ([#2823](https://github.com/jdf2e/nutui-react/pull/2823))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.8", + "type": "fix", + "content": "🐛 fix(InputNumber): 扩大点击区域 ([#2302](https://github.com/jdf2e/nutui-react/pull/2302)) @xiaoyatong", + "rawContent": "fix(InputNumber): 扩大点击区域 ([#2302](https://github.com/jdf2e/nutui-react/pull/2302)) @xiaoyatong", + "tagName": "v2.6.8" + }, + { + "version": "v2.6.2", + "type": "fix", + "content": "🐛 fix(inputnumber): 修复设置`InputNumber`组件className不生效的问题 ([#2188](https://github.com/jdf2e/nutui-react/pull/2188)) @kurisu994", + "rawContent": "fix(inputnumber): 修复设置`InputNumber`组件className不生效的问题 ([#2188](https://github.com/jdf2e/nutui-react/pull/2188)) @kurisu994", + "tagName": "v2.6.2" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(inputnumber): update UI ([#1989](https://github.com/jdf2e/nutui-react/pull/1989)) @oasis-cloud", + "rawContent": "feat(inputnumber): update UI ([#1989](https://github.com/jdf2e/nutui-react/pull/1989)) @oasis-cloud", + "tagName": "v2.4.0" + } + ], + "Menu": [ + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(backtop & menu): lint, code simplification, deprecated pageYOffset removed ([#2633](https://github.com/jdf2e/nutui-react/pull/2633))", + "rawContent": "fix(backtop & menu): lint, code simplification, deprecated pageYOffset removed ([#2633](https://github.com/jdf2e/nutui-react/pull/2633))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.15", + "type": "feat", + "content": "✨ feat(menu): allow custom classnames for Menu and dynamic titles ([#2480](https://github.com/jdf2e/nutui-react/pull/2480)) @Alex-huxiyang", + "rawContent": "feat(menu): allow custom classnames for Menu and dynamic titles ([#2480](https://github.com/jdf2e/nutui-react/pull/2480)) @Alex-huxiyang", + "tagName": "v2.6.15" + }, + { + "version": "v2.6.5", + "type": "fix", + "content": "🐛 fix(menu): 选项文字很多时右侧箭头展示异常 ([#2252](https://github.com/jdf2e/nutui-react/pull/2252)) @Alex-huxiyang", + "rawContent": "fix(menu): 选项文字很多时右侧箭头展示异常 ([#2252](https://github.com/jdf2e/nutui-react/pull/2252)) @Alex-huxiyang", + "tagName": "v2.6.5" + }, + { + "version": "v2.6.0", + "type": "others", + "content": "🏡 chore(menu): demo拆解与规范 ([#2153](https://github.com/jdf2e/nutui-react/pull/2153)) @Alex-huxiyang", + "rawContent": "🏡 chore(menu): demo拆解与规范 ([#2153](https://github.com/jdf2e/nutui-react/pull/2153)) @Alex-huxiyang", + "tagName": "v2.6.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(menu): 优化css变量命名,修改className 类名 ([#1746](https://github.com/jdf2e/nutui-react/pull/1746)) @xiaoyatong", + "rawContent": "style(menu): 优化css变量命名,修改className 类名 ([#1746](https://github.com/jdf2e/nutui-react/pull/1746)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "NumberKeyboard": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(numberkeyboard): v15 ([#2799](https://github.com/jdf2e/nutui-react/pull/2799))`", + "rawContent": "`feat(numberkeyboard): v15 ([#2799](https://github.com/jdf2e/nutui-react/pull/2799))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(numberkeyboard): demo拆解与规范 ([#2123](https://github.com/jdf2e/nutui-react/pull/2123)) @ZissyW", + "rawContent": "fix(numberkeyboard): demo拆解与规范 ([#2123](https://github.com/jdf2e/nutui-react/pull/2123)) @ZissyW", + "tagName": "v2.5.1" + }, + { + "version": "v2.3.7", + "type": "feat", + "content": "✨ feat(numberkeyboard): add title right actions ([#1881](https://github.com/jdf2e/nutui-react/pull/1881)) @xiaoyatong", + "rawContent": "feat(numberkeyboard): add title right actions ([#1881](https://github.com/jdf2e/nutui-react/pull/1881)) @xiaoyatong", + "tagName": "v2.3.7" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor(numberkeyboard): 修订类名和样式变量 ([#1719](https://github.com/jdf2e/nutui-react/pull/1719)) @xiaoyatong", + "rawContent": "🛠 refactor(numberkeyboard): 修订类名和样式变量 ([#1719](https://github.com/jdf2e/nutui-react/pull/1719)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.11", + "type": "fix", + "content": "🐛 numberkeyboard 设置标题后,完成按钮应该触发 onConfirm 事件 ([#1285](https://github.com/jdf2e/nutui-react/pull/1285)) @oasis-cloud", + "rawContent": "numberkeyboard 设置标题后,完成按钮应该触发 onConfirm 事件 ([#1285](https://github.com/jdf2e/nutui-react/pull/1285)) @oasis-cloud", + "tagName": "v2.0.11" + } + ], + "Picker": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 解决按需引入picker和datepicker没有样式问题 ([#3064](https://github.com/jdf2e/nutui-react/pull/3064))", + "rawContent": "解决按需引入picker和datepicker没有样式问题 ([#3064](https://github.com/jdf2e/nutui-react/pull/3064))", + "tagName": "v3.0.2" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: picker ([#2990](https://github.com/jdf2e/nutui-react/pull/2990))`", + "rawContent": "`refactor: picker ([#2990](https://github.com/jdf2e/nutui-react/pull/2990))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.8", + "type": "fix", + "content": "🐛 fix(picker): 函数调用之前检查 locale 是否已经定义 ([#2259](https://github.com/jdf2e/nutui-react/pull/2259)) @Alex-huxiyang", + "rawContent": "fix(picker): 函数调用之前检查 locale 是否已经定义 ([#2259](https://github.com/jdf2e/nutui-react/pull/2259)) @Alex-huxiyang", + "tagName": "v2.6.8" + }, + { + "version": "v2.6.4", + "type": "fix", + "content": "🐛 fix(picker): 修复连续多次打开 picker 时显示值错误 ([#2222](https://github.com/jdf2e/nutui-react/pull/2222)) @eiinu", + "rawContent": "fix(picker): 修复连续多次打开 picker 时显示值错误 ([#2222](https://github.com/jdf2e/nutui-react/pull/2222)) @eiinu", + "tagName": "v2.6.4" + }, + { + "version": "v2.6.0", + "type": "others", + "content": "🏡 chore(picker): demo拆解与规范 ([#2157](https://github.com/jdf2e/nutui-react/pull/2157)) @Alex-huxiyang", + "rawContent": "🏡 chore(picker): demo拆解与规范 ([#2157](https://github.com/jdf2e/nutui-react/pull/2157)) @Alex-huxiyang", + "tagName": "v2.6.0" + } + ], + "PickerView": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat: pickerview 组件 ([#2986](https://github.com/jdf2e/nutui-react/pull/2986))`", + "rawContent": "`feat: pickerview 组件 ([#2986](https://github.com/jdf2e/nutui-react/pull/2986))`", + "tagName": "v3.0.0" + } + ], + "Radio": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: radio type ([#2735](https://github.com/jdf2e/nutui-react/pull/2735))`", + "rawContent": "`fix: radio type ([#2735](https://github.com/jdf2e/nutui-react/pull/2735))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(radio): v15 ([#2721](https://github.com/jdf2e/nutui-react/pull/2721))`", + "rawContent": "`feat(radio): v15 ([#2721](https://github.com/jdf2e/nutui-react/pull/2721))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(radio): lint fixed ([#2635](https://github.com/jdf2e/nutui-react/pull/2635))", + "rawContent": "fix(radio): lint fixed ([#2635](https://github.com/jdf2e/nutui-react/pull/2635))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.0", + "type": "others", + "content": "🏡 chore(radio): demo拆解与规范 ([#2158](https://github.com/jdf2e/nutui-react/pull/2158)) @3042503122", + "rawContent": "🏡 chore(radio): demo拆解与规范 ([#2158](https://github.com/jdf2e/nutui-react/pull/2158)) @3042503122", + "tagName": "v2.6.0" + }, + { + "version": "v2.5.2", + "type": "fix", + "content": "🐛 fix(radio): 样式变量修复(issue) ([#2149](https://github.com/jdf2e/nutui-react/pull/2149)) @Alex.huxiyang", + "rawContent": "fix(radio): 样式变量修复(issue) ([#2149](https://github.com/jdf2e/nutui-react/pull/2149)) @Alex.huxiyang", + "tagName": "v2.5.2" + } + ], + "Range": [ + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(range): usememo ([#2638](https://github.com/jdf2e/nutui-react/pull/2638))", + "rawContent": "fix(range): usememo ([#2638](https://github.com/jdf2e/nutui-react/pull/2638))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(range): refactor & lint fixed ([#2637](https://github.com/jdf2e/nutui-react/pull/2637))", + "rawContent": "fix(range): refactor & lint fixed ([#2637](https://github.com/jdf2e/nutui-react/pull/2637))", + "tagName": "v2.6.22" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(range): demo拆解与规范 ([#2139](https://github.com/jdf2e/nutui-react/pull/2139)) @ShuchenEason", + "rawContent": "fix(range): demo拆解与规范 ([#2139](https://github.com/jdf2e/nutui-react/pull/2139)) @ShuchenEason", + "tagName": "v2.5.1" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(range): touchmove 回调中 rect 获取失败时终止 ([#2029](https://github.com/jdf2e/nutui-react/pull/2029)) @eiinu", + "rawContent": "fix(range): touchmove 回调中 rect 获取失败时终止 ([#2029](https://github.com/jdf2e/nutui-react/pull/2029)) @eiinu", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.12", + "type": "feat", + "content": "✨ feat(rtl): support progress & range ([#1961](https://github.com/jdf2e/nutui-react/pull/1961)) @Eiinu", + "rawContent": "feat(rtl): support progress & range ([#1961](https://github.com/jdf2e/nutui-react/pull/1961)) @Eiinu", + "tagName": "v2.3.12" + } + ], + "Rate": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 refactor: migrate site to nutui-react ([#2955](https://github.com/jdf2e/nutui-react/pull/2955))", + "rawContent": "refactor: migrate site to nutui-react ([#2955](https://github.com/jdf2e/nutui-react/pull/2955))", + "tagName": "v3.0.2" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: adjust pr-label strategy ([#2984](https://github.com/jdf2e/nutui-react/pull/2984))`", + "rawContent": "`fix: adjust pr-label strategy ([#2984](https://github.com/jdf2e/nutui-react/pull/2984))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: new components are generated automatically ([#2940](https://github.com/jdf2e/nutui-react/pull/2940))`", + "rawContent": "`refactor: new components are generated automatically ([#2940](https://github.com/jdf2e/nutui-react/pull/2940))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.2", + "type": "others", + "content": "🏡 chore: migrate to v3", + "rawContent": "🏡 chore: migrate to v3", + "tagName": "v2.7.2" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(rate): demo拆解与规范 ([#2045](https://github.com/jdf2e/nutui-react/pull/2045)) @sandra66888", + "rawContent": "fix(rate): demo拆解与规范 ([#2045](https://github.com/jdf2e/nutui-react/pull/2045)) @sandra66888", + "tagName": "v2.4.2" + } + ], + "SearchBar": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(searchbar): 多端适配 ([#2657](https://github.com/jdf2e/nutui-react/pull/2657))`", + "rawContent": "`fix(searchbar): 多端适配 ([#2657](https://github.com/jdf2e/nutui-react/pull/2657))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.9", + "type": "fix", + "content": "🐛 fix(searchbar): 修复 clear 时未触发 change 的问题 ([#2262](https://github.com/jdf2e/nutui-react/pull/2262)) @eiinu", + "rawContent": "fix(searchbar): 修复 clear 时未触发 change 的问题 ([#2262](https://github.com/jdf2e/nutui-react/pull/2262)) @eiinu", + "tagName": "v2.6.9" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(SearchBar): demo拆解与规范 ([#2064](https://github.com/jdf2e/nutui-react/pull/2064)) @joyfully-W", + "rawContent": "fix(SearchBar): demo拆解与规范 ([#2064](https://github.com/jdf2e/nutui-react/pull/2064)) @joyfully-W", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.1", + "type": "fix", + "content": "🐛 fix(searchbar): 小程序环境不支持 * 选择器,将 * 展开为 div、span、svg ([#1777](https://github.com/jdf2e/nutui-react/pull/1777)) @oasis-cloud", + "rawContent": "fix(searchbar): 小程序环境不支持 * 选择器,将 * 展开为 div、span、svg ([#1777](https://github.com/jdf2e/nutui-react/pull/1777)) @oasis-cloud", + "tagName": "v2.3.1" + }, + { + "version": "v2.3.0", + "type": "feat", + "content": "✨ feat(searchbar): 增加属性 backable 可返回,简化css变量 ([#1736](https://github.com/jdf2e/nutui-react/pull/1736)) @xiaoyatong", + "rawContent": "feat(searchbar): 增加属性 backable 可返回,简化css变量 ([#1736](https://github.com/jdf2e/nutui-react/pull/1736)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "ShortPassword": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 feat(shortpassword): harmony ([#3017](https://github.com/jdf2e/nutui-react/pull/3017))", + "rawContent": "feat(shortpassword): harmony ([#3017](https://github.com/jdf2e/nutui-react/pull/3017))", + "tagName": "v3.0.1" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(shortpassword): demo拆解与规范 ([#2102](https://github.com/jdf2e/nutui-react/pull/2102)) @Alex-huxiyang", + "rawContent": "fix(shortpassword): demo拆解与规范 ([#2102](https://github.com/jdf2e/nutui-react/pull/2102)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.10", + "type": "feat", + "content": "✨ feat(shortpassword): support ref for form ([#1930](https://github.com/jdf2e/nutui-react/pull/1930)) @oasis-cloud", + "rawContent": "feat(shortpassword): support ref for form ([#1930](https://github.com/jdf2e/nutui-react/pull/1930)) @oasis-cloud", + "tagName": "v2.3.10" + }, + { + "version": "v2.3.7", + "type": "others", + "content": "📖 docs(shortpassword): 增加onComplete的demo及文档 ([#1860](https://github.com/jdf2e/nutui-react/pull/1860)) @xiaoyatong", + "rawContent": "📖 docs(shortpassword): 增加onComplete的demo及文档 ([#1860](https://github.com/jdf2e/nutui-react/pull/1860)) @xiaoyatong", + "tagName": "v2.3.7" + }, + { + "version": "v2.0.0-alpha.12", + "type": "others", + "content": "🛠 refactor: shortPassword ([#1046](https://github.com/jdf2e/nutui-react/pull/1046)) @Eiinu", + "rawContent": "🛠 refactor: shortPassword ([#1046](https://github.com/jdf2e/nutui-react/pull/1046)) @Eiinu", + "tagName": "v2.0.0-alpha.12" + } + ], + "Signature": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 fix(signature): 解决taro h5不能绘制问题 ([#3060](https://github.com/jdf2e/nutui-react/pull/3060))", + "rawContent": "fix(signature): 解决taro h5不能绘制问题 ([#3060](https://github.com/jdf2e/nutui-react/pull/3060))", + "tagName": "v3.0.2" + }, + { + "version": "v2.6.7", + "type": "feat", + "content": "✨ 签名组件增加当没有签名或已清空的情况下的参数暴露 ([#2288](https://github.com/jdf2e/nutui-react/pull/2288)) @xiaoyatong", + "rawContent": "签名组件增加当没有签名或已清空的情况下的参数暴露 ([#2288](https://github.com/jdf2e/nutui-react/pull/2288)) @xiaoyatong", + "tagName": "v2.6.7" + }, + { + "version": "v2.6.2", + "type": "fix", + "content": "🐛 fix(signature): 调整清空时机并更新demo ([#2190](https://github.com/jdf2e/nutui-react/pull/2190)) @Alex-huxiyang", + "rawContent": "fix(signature): 调整清空时机并更新demo ([#2190](https://github.com/jdf2e/nutui-react/pull/2190)) @Alex-huxiyang", + "tagName": "v2.6.2" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(signature): demo拆解与规范 ([#2099](https://github.com/jdf2e/nutui-react/pull/2099)) @Alex-huxiyang", + "rawContent": "fix(signature): demo拆解与规范 ([#2099](https://github.com/jdf2e/nutui-react/pull/2099)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.0.4", + "type": "fix", + "content": "🐛 signature组件提取样式变量+修复taro h5 demo签字时滚动问题 ([#1220](https://github.com/jdf2e/nutui-react/pull/1220)) @songsong", + "rawContent": "signature组件提取样式变量+修复taro h5 demo签字时滚动问题 ([#1220](https://github.com/jdf2e/nutui-react/pull/1220)) @songsong", + "tagName": "v2.0.4" + } + ], + "Switch": [ + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(switch):switch组件demo代码重构 ([#2033](https://github.com/jdf2e/nutui-react/pull/2033)) @jiangjin3323", + "rawContent": "fix(switch):switch组件demo代码重构 ([#2033](https://github.com/jdf2e/nutui-react/pull/2033)) @jiangjin3323", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor(switch): 修改样式名称及样式变量,添加相应demo ([#1714](https://github.com/jdf2e/nutui-react/pull/1714)) @xiaoyatong", + "rawContent": "🛠 refactor(switch): 修改样式名称及样式变量,添加相应demo ([#1714](https://github.com/jdf2e/nutui-react/pull/1714)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "TextArea": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 textarea 鸿蒙适配 ([#3037](https://github.com/jdf2e/nutui-react/pull/3037))", + "rawContent": "textarea 鸿蒙适配 ([#3037](https://github.com/jdf2e/nutui-react/pull/3037))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(textarea): v15 ([#2887](https://github.com/jdf2e/nutui-react/pull/2887))`", + "rawContent": "`feat(textarea): v15 ([#2887](https://github.com/jdf2e/nutui-react/pull/2887))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.5", + "type": "fix", + "content": "🐛 fix(textarea): 字数限制文本遮挡输入框的内容 ([#2910](https://github.com/jdf2e/nutui-react/pull/2910))", + "rawContent": "fix(textarea): 字数限制文本遮挡输入框的内容 ([#2910](https://github.com/jdf2e/nutui-react/pull/2910))", + "tagName": "v2.7.5" + }, + { + "version": "v2.7.1", + "type": "fix", + "content": "🐛 fix(textarea): handle undefined placeholder explicitly ([#2748](https://github.com/jdf2e/nutui-react/pull/2748))", + "rawContent": "fix(textarea): handle undefined placeholder explicitly ([#2748](https://github.com/jdf2e/nutui-react/pull/2748))", + "tagName": "v2.7.1" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(textarea): demo拆解与规范 ([#2132](https://github.com/jdf2e/nutui-react/pull/2132)) @Amylee9712", + "rawContent": "fix(textarea): demo拆解与规范 ([#2132](https://github.com/jdf2e/nutui-react/pull/2132)) @Amylee9712", + "tagName": "v2.5.1" + } + ], + "Uploader": [ + { + "version": "v2.7.5", + "type": "feat", + "content": "✨ feat(uploader): suppport chooseMedia in web ([#2902](https://github.com/jdf2e/nutui-react/pull/2902))", + "rawContent": "feat(uploader): suppport chooseMedia in web ([#2902](https://github.com/jdf2e/nutui-react/pull/2902))", + "tagName": "v2.7.5" + }, + { + "version": "v2.7.2", + "type": "others", + "content": "🏡 chore(uploader): use scss variable ([#2825](https://github.com/jdf2e/nutui-react/pull/2825))", + "rawContent": "🏡 chore(uploader): use scss variable ([#2825](https://github.com/jdf2e/nutui-react/pull/2825))", + "tagName": "v2.7.2" + }, + { + "version": "v2.7.2", + "type": "fix", + "content": "🐛 fix(uploader): 修复选择多个文件上传只会上传一个文件的问题 ([#2807](https://github.com/jdf2e/nutui-react/pull/2807))", + "rawContent": "fix(uploader): 修复选择多个文件上传只会上传一个文件的问题 ([#2807](https://github.com/jdf2e/nutui-react/pull/2807))", + "tagName": "v2.7.2" + }, + { + "version": "v2.6.21", + "type": "feat", + "content": "✨ feat(Uploader): add support for deleteIcon prop customization ([#2618](https://github.com/jdf2e/nutui-react/pull/2618))", + "rawContent": "feat(Uploader): add support for deleteIcon prop customization ([#2618](https://github.com/jdf2e/nutui-react/pull/2618))", + "tagName": "v2.6.21" + }, + { + "version": "v2.6.17", + "type": "fix", + "content": "🐛 fix(uploader): beforeUpload should trigger every time before uploading ([#2553](https://github.com/jdf2e/nutui-react/pull/2553))", + "rawContent": "fix(uploader): beforeUpload should trigger every time before uploading ([#2553](https://github.com/jdf2e/nutui-react/pull/2553))", + "tagName": "v2.6.17" + } + ], + "ActionSheet": [ + { + "version": "v2.6.7", + "type": "fix", + "content": "🐛 ActionSheet 增加安全区处理 ([#2286](https://github.com/jdf2e/nutui-react/pull/2286)) @xiaoyatong", + "rawContent": "ActionSheet 增加安全区处理 ([#2286](https://github.com/jdf2e/nutui-react/pull/2286)) @xiaoyatong", + "tagName": "v2.6.7" + }, + { + "version": "v2.6.7", + "type": "fix", + "content": "🐛 fix(actionsheet): 去掉无意义的 padding,popup 已不再暴露 ([#2285](https://github.com/jdf2e/nutui-react/pull/2285)) @xiaoyatong", + "rawContent": "fix(actionsheet): 去掉无意义的 padding,popup 已不再暴露 ([#2285](https://github.com/jdf2e/nutui-react/pull/2285)) @xiaoyatong", + "tagName": "v2.6.7" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(actionsheet): demo拆解与规范 ([#2124](https://github.com/jdf2e/nutui-react/pull/2124)) @ZissyW", + "rawContent": "fix(actionsheet): demo拆解与规范 ([#2124](https://github.com/jdf2e/nutui-react/pull/2124)) @ZissyW", + "tagName": "v2.5.1" + }, + { + "version": "v2.3.11", + "type": "fix", + "content": "🐛 fix(actionsheet): 关闭弹窗后内容显示在页面,优化 popup 相关属性传递 ([#1954](https://github.com/jdf2e/nutui-react/pull/1954)) @onlyling", + "rawContent": "fix(actionsheet): 关闭弹窗后内容显示在页面,优化 popup 相关属性传递 ([#1954](https://github.com/jdf2e/nutui-react/pull/1954)) @onlyling", + "tagName": "v2.3.11" + }, + { + "version": "v2.0.0-alpha.12", + "type": "others", + "content": "🛠 refactor: actionSheet ([#1053](https://github.com/jdf2e/nutui-react/pull/1053)) @xiaoyatong", + "rawContent": "🛠 refactor: actionSheet ([#1053](https://github.com/jdf2e/nutui-react/pull/1053)) @xiaoyatong", + "tagName": "v2.0.0-alpha.12" + } + ], + "Badge": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: badge harmony ([#3001](https://github.com/jdf2e/nutui-react/pull/3001))`", + "rawContent": "`fix: badge harmony ([#3001](https://github.com/jdf2e/nutui-react/pull/3001))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(badge): v15 ([#2826](https://github.com/jdf2e/nutui-react/pull/2826))`", + "rawContent": "`feat(badge): v15 ([#2826](https://github.com/jdf2e/nutui-react/pull/2826))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.2", + "type": "others", + "content": "💡 undefined: style(badge): jdesign badge 样式 ([#2164](https://github.com/jdf2e/nutui-react/pull/2164)) @zhehu1", + "rawContent": "undefined: style(badge): jdesign badge 样式 ([#2164](https://github.com/jdf2e/nutui-react/pull/2164)) @zhehu1", + "tagName": "v2.6.2" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(badge): demo拆解与规范 ([#2060](https://github.com/jdf2e/nutui-react/pull/2060)) @wanglihuaya", + "rawContent": "fix(badge): demo拆解与规范 ([#2060](https://github.com/jdf2e/nutui-react/pull/2060)) @wanglihuaya", + "tagName": "v2.4.2" + }, + { + "version": "v2.4.1", + "type": "feat", + "content": "✨ feat(badge): 新增 fill 属性 ([#2042](https://github.com/jdf2e/nutui-react/pull/2042)) @eiinu", + "rawContent": "feat(badge): 新增 fill 属性 ([#2042](https://github.com/jdf2e/nutui-react/pull/2042)) @eiinu", + "tagName": "v2.4.1" + } + ], + "Dialog": [ + { + "version": "v2.6.23", + "type": "fix", + "content": "🐛 fix(dialog): remove defaultprops ([#2639](https://github.com/jdf2e/nutui-react/pull/2639))", + "rawContent": "fix(dialog): remove defaultprops ([#2639](https://github.com/jdf2e/nutui-react/pull/2639))", + "tagName": "v2.6.23" + }, + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 fix(dialog): revert defaultprops", + "rawContent": "fix(dialog): revert defaultprops", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.18", + "type": "feat", + "content": "✨ demos for popup & dialog ([#2574](https://github.com/jdf2e/nutui-react/pull/2574))", + "rawContent": "demos for popup & dialog ([#2574](https://github.com/jdf2e/nutui-react/pull/2574))", + "tagName": "v2.6.18" + }, + { + "version": "v2.6.18", + "type": "fix", + "content": "🐛 dialog", + "rawContent": "dialog", + "tagName": "v2.6.18" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(dialog): 关闭按钮默认在底部,24px白色图标 ([#2118](https://github.com/jdf2e/nutui-react/pull/2118)) @irisSong", + "rawContent": "fix(dialog): 关闭按钮默认在底部,24px白色图标 ([#2118](https://github.com/jdf2e/nutui-react/pull/2118)) @irisSong", + "tagName": "v2.5.0" + } + ], + "Drag": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(drag): 解决 taro 不能滑动问题 ([#3054](https://github.com/jdf2e/nutui-react/pull/3054))", + "rawContent": "fix(drag): 解决 taro 不能滑动问题 ([#3054](https://github.com/jdf2e/nutui-react/pull/3054))", + "tagName": "v3.0.1" + }, + { + "version": "v2.6.13", + "type": "feat", + "content": "✨ feat(drag): add the ability to support onDrag, onDragStart, onDragEnd callbacks ([#2418](https://github.com/jdf2e/nutui-react/pull/2418)) @Alex-huxiyang", + "rawContent": "feat(drag): add the ability to support onDrag, onDragStart, onDragEnd callbacks ([#2418](https://github.com/jdf2e/nutui-react/pull/2418)) @Alex-huxiyang", + "tagName": "v2.6.13" + }, + { + "version": "v2.6.9", + "type": "fix", + "content": "🐛 解决Drag组件拖拽后会在原地留一个遮挡元素问题+解决weapp/taro-h5多个demo拖拽位置不正确问题 ([#2330](https://github.com/jdf2e/nutui-react/pull/2330)) @irisSong", + "rawContent": "解决Drag组件拖拽后会在原地留一个遮挡元素问题+解决weapp/taro-h5多个demo拖拽位置不正确问题 ([#2330](https://github.com/jdf2e/nutui-react/pull/2330)) @irisSong", + "tagName": "v2.6.9" + }, + { + "version": "v2.6.0", + "type": "fix", + "content": "🐛 fix(drag): demo拆解与规范 ([#2163](https://github.com/jdf2e/nutui-react/pull/2163)) @eiinu", + "rawContent": "fix(drag): demo拆解与规范 ([#2163](https://github.com/jdf2e/nutui-react/pull/2163)) @eiinu", + "tagName": "v2.6.0" + }, + { + "version": "v2.3.0", + "type": "fix", + "content": "🐛 change drag demo radius value of button ([#1701](https://github.com/jdf2e/nutui-react/pull/1701)) @xiaoyatong", + "rawContent": "change drag demo radius value of button ([#1701](https://github.com/jdf2e/nutui-react/pull/1701)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "Empty": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(empty): correct css and docs ([#2819](https://github.com/jdf2e/nutui-react/pull/2819))`", + "rawContent": "`fix(empty): correct css and docs ([#2819](https://github.com/jdf2e/nutui-react/pull/2819))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.3", + "type": "fix", + "content": "🐛 fix(empty): actions add support for events ([#2854](https://github.com/jdf2e/nutui-react/pull/2854))", + "rawContent": "fix(empty): actions add support for events ([#2854](https://github.com/jdf2e/nutui-react/pull/2854))", + "tagName": "v2.7.3" + }, + { + "version": "v2.6.14", + "type": "feat", + "content": "✨ feat(empty): add css variable nutui-empty-background-color ([#2451](https://github.com/jdf2e/nutui-react/pull/2451)) @Alex-huxiyang", + "rawContent": "feat(empty): add css variable nutui-empty-background-color ([#2451](https://github.com/jdf2e/nutui-react/pull/2451)) @Alex-huxiyang", + "tagName": "v2.6.14" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(Empty): 调整默认图片为jd图片 ([#2032](https://github.com/jdf2e/nutui-react/pull/2032)) @xiaoyatong", + "rawContent": "fix(Empty): 调整默认图片为jd图片 ([#2032](https://github.com/jdf2e/nutui-react/pull/2032)) @xiaoyatong", + "tagName": "v2.4.1" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(empty): 图片变更 ([#1988](https://github.com/jdf2e/nutui-react/pull/1988)) @xiaoyatong", + "rawContent": "feat(empty): 图片变更 ([#1988](https://github.com/jdf2e/nutui-react/pull/1988)) @xiaoyatong", + "tagName": "v2.4.0" + } + ], + "InfiniteLoading": [ + { + "version": "v2.7.2", + "type": "others", + "content": "📖 docs(infiniteloading): remove deprecated usage ([#2801](https://github.com/jdf2e/nutui-react/pull/2801))", + "rawContent": "📖 docs(infiniteloading): remove deprecated usage ([#2801](https://github.com/jdf2e/nutui-react/pull/2801))", + "tagName": "v2.7.2" + }, + { + "version": "v2.7.1", + "type": "others", + "content": "📖 docs(infiniteLoading): optimize target description ([#2770](https://github.com/jdf2e/nutui-react/pull/2770))", + "rawContent": "📖 docs(infiniteLoading): optimize target description ([#2770](https://github.com/jdf2e/nutui-react/pull/2770))", + "tagName": "v2.7.1" + }, + { + "version": "v2.6.15", + "type": "fix", + "content": "🐛 fix(infiniteLoading): rest 导致事件无法触发 ([#2474](https://github.com/jdf2e/nutui-react/pull/2474)) @oasis-cloud", + "rawContent": "fix(infiniteLoading): rest 导致事件无法触发 ([#2474](https://github.com/jdf2e/nutui-react/pull/2474)) @oasis-cloud", + "tagName": "v2.6.15" + }, + { + "version": "v2.6.14", + "type": "feat", + "content": "✨ feat(infiniteLoading): 继承 scrollView 的 props 类型 ([#2441](https://github.com/jdf2e/nutui-react/pull/2441)) @oasis-cloud", + "rawContent": "feat(infiniteLoading): 继承 scrollView 的 props 类型 ([#2441](https://github.com/jdf2e/nutui-react/pull/2441)) @oasis-cloud", + "tagName": "v2.6.14" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(infiniteLoading): demo拆解与规范+增加joy logo的demo ([#2081](https://github.com/jdf2e/nutui-react/pull/2081)) @irisSong", + "rawContent": "fix(infiniteLoading): demo拆解与规范+增加joy logo的demo ([#2081](https://github.com/jdf2e/nutui-react/pull/2081)) @irisSong", + "tagName": "v2.4.2" + } + ], + "Loading": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: loading ([#2733](https://github.com/jdf2e/nutui-react/pull/2733))`", + "rawContent": "`fix: loading ([#2733](https://github.com/jdf2e/nutui-react/pull/2733))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.9", + "type": "others", + "content": "📖 docs(loading): 主题变量修正 ([#3008](https://github.com/jdf2e/nutui-react/pull/3008))", + "rawContent": "📖 docs(loading): 主题变量修正 ([#3008](https://github.com/jdf2e/nutui-react/pull/3008))", + "tagName": "v2.7.9" + }, + { + "version": "v2.6.0", + "type": "others", + "content": "🏡 chore(loading): demo拆解与规范 ([#2155](https://github.com/jdf2e/nutui-react/pull/2155)) @Alex-huxiyang", + "rawContent": "🏡 chore(loading): demo拆解与规范 ([#2155](https://github.com/jdf2e/nutui-react/pull/2155)) @Alex-huxiyang", + "tagName": "v2.6.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(loading): 修订css变量名,补充css变量文档 ([#1721](https://github.com/jdf2e/nutui-react/pull/1721)) @xiaoyatong", + "rawContent": "style(loading): 修订css变量名,补充css变量文档 ([#1721](https://github.com/jdf2e/nutui-react/pull/1721)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.10", + "type": "feat", + "content": "✨ loading 组件 ([#1204](https://github.com/jdf2e/nutui-react/pull/1204)) @mike8625", + "rawContent": "loading 组件 ([#1204](https://github.com/jdf2e/nutui-react/pull/1204)) @mike8625", + "tagName": "v2.0.10" + } + ], + "NoticeBar": [ + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(noticebar): fix docs ([#2119](https://github.com/jdf2e/nutui-react/pull/2119)) @xiaoyatong", + "rawContent": "fix(noticebar): fix docs ([#2119](https://github.com/jdf2e/nutui-react/pull/2119)) @xiaoyatong", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.2", + "type": "feat", + "content": "✨ feat(NoticeBar): 增加right 属性,支持更多可自定义内容 @xiaoyatong", + "rawContent": "feat(NoticeBar): 增加right 属性,支持更多可自定义内容 @xiaoyatong", + "tagName": "v2.4.2" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(noticebar): supports the center layout ([#1972](https://github.com/jdf2e/nutui-react/pull/1972)) @irisSong", + "rawContent": "feat(noticebar): supports the center layout ([#1972](https://github.com/jdf2e/nutui-react/pull/1972)) @irisSong", + "tagName": "v2.4.0" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(rtl): noticebar ([#1984](https://github.com/jdf2e/nutui-react/pull/1984)) @Eiinu", + "rawContent": "feat(rtl): noticebar ([#1984](https://github.com/jdf2e/nutui-react/pull/1984)) @Eiinu", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(noticebar): 修订类名和css变量 ([#1751](https://github.com/jdf2e/nutui-react/pull/1751)) @xiaoyatong", + "rawContent": "style(noticebar): 修订类名和css变量 ([#1751](https://github.com/jdf2e/nutui-react/pull/1751)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "Notify": [ + { + "version": "v2.6.0", + "type": "others", + "content": "🏡 chore(notify): demo拆解与规范 ([#2151](https://github.com/jdf2e/nutui-react/pull/2151)) @Alex-huxiyang", + "rawContent": "🏡 chore(notify): demo拆解与规范 ([#2151](https://github.com/jdf2e/nutui-react/pull/2151)) @Alex-huxiyang", + "tagName": "v2.6.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(notify): 优化样式布局 ([#1762](https://github.com/jdf2e/nutui-react/pull/1762)) @xiaoyatong", + "rawContent": "style(notify): 优化样式布局 ([#1762](https://github.com/jdf2e/nutui-react/pull/1762)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.18", + "type": "fix", + "content": "🐛 fix(Notify): type NotifyType incorrectly spelling warning as waring ([#1441](https://github.com/jdf2e/nutui-react/pull/1441)) @Katz", + "rawContent": "fix(Notify): type NotifyType incorrectly spelling warning as waring ([#1441](https://github.com/jdf2e/nutui-react/pull/1441)) @Katz", + "tagName": "v2.0.18" + }, + { + "version": "v2.0.9", + "type": "feat", + "content": "✨ feat(notify): 支持函数调用的展开和关闭 ([#1271](https://github.com/jdf2e/nutui-react/pull/1271)) @oasis-cloud", + "rawContent": "feat(notify): 支持函数调用的展开和关闭 ([#1271](https://github.com/jdf2e/nutui-react/pull/1271)) @oasis-cloud", + "tagName": "v2.0.9" + }, + { + "version": "v2.0.0-alpha.9", + "type": "others", + "content": "🛠 refactor: notify ([#983](https://github.com/jdf2e/nutui-react/pull/983)) @拧巴的猫", + "rawContent": "🛠 refactor: notify ([#983](https://github.com/jdf2e/nutui-react/pull/983)) @拧巴的猫", + "tagName": "v2.0.0-alpha.9" + } + ], + "Popover": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix: popover dark and maxwidth`", + "rawContent": "`fix: popover dark and maxwidth`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.3", + "type": "feat", + "content": "✨ feat(popover): 增加最大宽度设置,支持文本超过最大宽度时,换行展示 ([#2851](https://github.com/jdf2e/nutui-react/pull/2851))", + "rawContent": "feat(popover): 增加最大宽度设置,支持文本超过最大宽度时,换行展示 ([#2851](https://github.com/jdf2e/nutui-react/pull/2851))", + "tagName": "v2.7.3" + }, + { + "version": "v2.5.1", + "type": "feat", + "content": "✨ feat(popover): rtl ([#2121](https://github.com/jdf2e/nutui-react/pull/2121)) @xiaoyatong", + "rawContent": "feat(popover): rtl ([#2121](https://github.com/jdf2e/nutui-react/pull/2121)) @xiaoyatong", + "tagName": "v2.5.1" + }, + { + "version": "v2.5.0", + "type": "feat", + "content": "✨ feat(Popover): 新增单条数据的demo展示 ([#2117](https://github.com/jdf2e/nutui-react/pull/2117)) @xiaoyatong", + "rawContent": "feat(Popover): 新增单条数据的demo展示 ([#2117](https://github.com/jdf2e/nutui-react/pull/2117)) @xiaoyatong", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(popover): 调整demo ([#2043](https://github.com/jdf2e/nutui-react/pull/2043)) @xiaoyatong", + "rawContent": "fix(popover): 调整demo ([#2043](https://github.com/jdf2e/nutui-react/pull/2043)) @xiaoyatong", + "tagName": "v2.4.1" + } + ], + "Popup": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 popup 鸿蒙下层级问题修复,dialog 的适配做了调整,日历卡片调整了 demo ([#3038](https://github.com/jdf2e/nutui-react/pull/3038))", + "rawContent": "popup 鸿蒙下层级问题修复,dialog 的适配做了调整,日历卡片调整了 demo ([#3038](https://github.com/jdf2e/nutui-react/pull/3038))", + "tagName": "v3.0.1" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: popup 优化代码 ([#2944](https://github.com/jdf2e/nutui-react/pull/2944))`", + "rawContent": "`refactor: popup 优化代码 ([#2944](https://github.com/jdf2e/nutui-react/pull/2944))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `refactor: popup 优化代码 ([#2944](https://github.com/jdf2e/nutui-react/pull/2944))`", + "rawContent": "`refactor: popup 优化代码 ([#2944](https://github.com/jdf2e/nutui-react/pull/2944))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.7", + "type": "others", + "content": "📖 docs: popup 使用说明描述优化([#2943](https://github.com/jdf2e/nutui-react/pull/2943))", + "rawContent": "📖 docs: popup 使用说明描述优化([#2943](https://github.com/jdf2e/nutui-react/pull/2943))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.1", + "type": "fix", + "content": "🐛 fix(popup): display should not trigger the scrollview to update ([#2773](https://github.com/jdf2e/nutui-react/pull/2773))", + "rawContent": "fix(popup): display should not trigger the scrollview to update ([#2773](https://github.com/jdf2e/nutui-react/pull/2773))", + "tagName": "v2.7.1" + } + ], + "PullToRefresh": [ + { + "version": "v2.6.17", + "type": "fix", + "content": "🐛 fix(PullToRefresh): 修复PullToRefresh组件disabled属性在taro中无效的问题 ([#2538](https://github.com/jdf2e/nutui-react/pull/2538))", + "rawContent": "fix(PullToRefresh): 修复PullToRefresh组件disabled属性在taro中无效的问题 ([#2538](https://github.com/jdf2e/nutui-react/pull/2538))", + "tagName": "v2.6.17" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(pulltorefresh): demo中下拉图标修改为joy logo ([#2084](https://github.com/jdf2e/nutui-react/pull/2084)) @irisSong", + "rawContent": "fix(pulltorefresh): demo中下拉图标修改为joy logo ([#2084](https://github.com/jdf2e/nutui-react/pull/2084)) @irisSong", + "tagName": "v2.4.2" + }, + { + "version": "v2.4.1", + "type": "feat", + "content": "✨ feat(pulltorefresh): 增加 type 属性,支持深色背景设置 ([#2044](https://github.com/jdf2e/nutui-react/pull/2044)) @xiaoyatong", + "rawContent": "feat(pulltorefresh): 增加 type 属性,支持深色背景设置 ([#2044](https://github.com/jdf2e/nutui-react/pull/2044)) @xiaoyatong", + "tagName": "v2.4.1" + }, + { + "version": "v2.3.5", + "type": "fix", + "content": "🐛 fix(pulltorefresh): 修复安卓小程序下拉卡顿问题 ([#1830](https://github.com/jdf2e/nutui-react/pull/1830)) @NickH", + "rawContent": "fix(pulltorefresh): 修复安卓小程序下拉卡顿问题 ([#1830](https://github.com/jdf2e/nutui-react/pull/1830)) @NickH", + "tagName": "v2.3.5" + }, + { + "version": "v2.3.3", + "type": "fix", + "content": "🐛 fix(pulltorefresh): icon 部分拆到demo中 ([#1812](https://github.com/jdf2e/nutui-react/pull/1812)) @xiaoyatong", + "rawContent": "fix(pulltorefresh): icon 部分拆到demo中 ([#1812](https://github.com/jdf2e/nutui-react/pull/1812)) @xiaoyatong", + "tagName": "v2.3.3" + } + ], + "ResultPage": [], + "Skeleton": [ + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(skeleton): demo拆解与规范 ([#2047](https://github.com/jdf2e/nutui-react/pull/2047)) @wanglihuaya", + "rawContent": "fix(skeleton): demo拆解与规范 ([#2047](https://github.com/jdf2e/nutui-react/pull/2047)) @wanglihuaya", + "tagName": "v2.4.2" + }, + { + "version": "v2.0.13", + "type": "others", + "content": "📖 docs: 删除了skeleton文档中无用的props(width,height) ([#1303](https://github.com/jdf2e/nutui-react/pull/1303)) @ivan-My", + "rawContent": "📖 docs: 删除了skeleton文档中无用的props(width,height) ([#1303](https://github.com/jdf2e/nutui-react/pull/1303)) @ivan-My", + "tagName": "v2.0.13" + }, + { + "version": "v2.0.0-alpha.11", + "type": "others", + "content": "🛠 refactor: Skeleton ([#1036](https://github.com/jdf2e/nutui-react/pull/1036)) @Eiinu", + "rawContent": "🛠 refactor: Skeleton ([#1036](https://github.com/jdf2e/nutui-react/pull/1036)) @Eiinu", + "tagName": "v2.0.0-alpha.11" + } + ], + "Swipe": [ + { + "version": "v3.0.2", + "type": "others", + "content": "💡 feat(swipe): harmony ([#3039](https://github.com/jdf2e/nutui-react/pull/3039))", + "rawContent": "feat(swipe): harmony ([#3039](https://github.com/jdf2e/nutui-react/pull/3039))", + "tagName": "v3.0.2" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(swipe): 修改demo文案 ([#2106](https://github.com/jdf2e/nutui-react/pull/2106)) @xiaoyatong", + "rawContent": "fix(swipe): 修改demo文案 ([#2106](https://github.com/jdf2e/nutui-react/pull/2106)) @xiaoyatong", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix swipe slide element get rect width error ([#2017](https://github.com/jdf2e/nutui-react/pull/2017)) @awefeng", + "rawContent": "fix swipe slide element get rect width error ([#2017](https://github.com/jdf2e/nutui-react/pull/2017)) @awefeng", + "tagName": "v2.4.1" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(swipe): 增加自定义高度的demo ([#1996](https://github.com/jdf2e/nutui-react/pull/1996)) @xiaoyatong", + "rawContent": "feat(swipe): 增加自定义高度的demo ([#1996](https://github.com/jdf2e/nutui-react/pull/1996)) @xiaoyatong", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor(swipe): 修订className类名 ([#1715](https://github.com/jdf2e/nutui-react/pull/1715)) @xiaoyatong", + "rawContent": "🛠 refactor(swipe): 修订className类名 ([#1715](https://github.com/jdf2e/nutui-react/pull/1715)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "Toast": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(toast): svg color ([#2775](https://github.com/jdf2e/nutui-react/pull/2775))`", + "rawContent": "`fix(toast): svg color ([#2775](https://github.com/jdf2e/nutui-react/pull/2775))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(Toast): v15 ([#2299](https://github.com/jdf2e/nutui-react/pull/2299))`", + "rawContent": "`feat(Toast): v15 ([#2299](https://github.com/jdf2e/nutui-react/pull/2299))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.7", + "type": "others", + "content": "📖 docs(toast): 修复文档中的函数式例子 ([#2957](https://github.com/jdf2e/nutui-react/pull/2957))", + "rawContent": "📖 docs(toast): 修复文档中的函数式例子 ([#2957](https://github.com/jdf2e/nutui-react/pull/2957))", + "tagName": "v2.7.7" + }, + { + "version": "v2.7.1", + "type": "fix", + "content": "🐛 fix(toast): load dependent CSS ([#2776](https://github.com/jdf2e/nutui-react/pull/2776))", + "rawContent": "fix(toast): load dependent CSS ([#2776](https://github.com/jdf2e/nutui-react/pull/2776))", + "tagName": "v2.7.1" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(Toast): demo拆解与规范 ([#2073](https://github.com/jdf2e/nutui-react/pull/2073)) @OrdinarySF", + "rawContent": "fix(Toast): demo拆解与规范 ([#2073](https://github.com/jdf2e/nutui-react/pull/2073)) @OrdinarySF", + "tagName": "v2.5.1" + } + ], + "Animate": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `perf: 优化 animate ([#2968](https://github.com/jdf2e/nutui-react/pull/2968))`", + "rawContent": "`perf: 优化 animate ([#2968](https://github.com/jdf2e/nutui-react/pull/2968))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.8", + "type": "others", + "content": "💡 zap: perf: animate ([#2969](https://github.com/jdf2e/nutui-react/pull/2969))", + "rawContent": "zap: perf: animate ([#2969](https://github.com/jdf2e/nutui-react/pull/2969))", + "tagName": "v2.7.8" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(animate): demo拆解与规范 ([#2085](https://github.com/jdf2e/nutui-react/pull/2085)) @eiinu", + "rawContent": "fix(animate): demo拆解与规范 ([#2085](https://github.com/jdf2e/nutui-react/pull/2085)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 animatenumbers number css ([#1681](https://github.com/jdf2e/nutui-react/pull/1681)) @xiaoyatong", + "rawContent": "animatenumbers number css ([#1681](https://github.com/jdf2e/nutui-react/pull/1681)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "AnimatingNumbers": [ + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "rawContent": "usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "tagName": "v2.6.22" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(animatingnumbers): demo拆解与规范 ([#2109](https://github.com/jdf2e/nutui-react/pull/2109)) @Alex-huxiyang", + "rawContent": "fix(animatingnumbers): demo拆解与规范 ([#2109](https://github.com/jdf2e/nutui-react/pull/2109)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(animatingNumbers): support rtl ([#1985](https://github.com/jdf2e/nutui-react/pull/1985)) @irisSong", + "rawContent": "feat(animatingNumbers): support rtl ([#1985](https://github.com/jdf2e/nutui-react/pull/1985)) @irisSong", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.7", + "type": "fix", + "content": "🐛 fix(animatingnumbers): 修复单元测试问题 ([#1878](https://github.com/jdf2e/nutui-react/pull/1878)) @Eiinu", + "rawContent": "fix(animatingnumbers): 修复单元测试问题 ([#1878](https://github.com/jdf2e/nutui-react/pull/1878)) @Eiinu", + "tagName": "v2.3.7" + }, + { + "version": "v2.0.0-alpha.13", + "type": "others", + "content": "🛠 refactor: animatingNumbers ([#1048](https://github.com/jdf2e/nutui-react/pull/1048)) @拧巴的猫", + "rawContent": "🛠 refactor: animatingNumbers ([#1048](https://github.com/jdf2e/nutui-react/pull/1048)) @拧巴的猫", + "tagName": "v2.0.0-alpha.13" + } + ], + "Audio": [ + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "rawContent": "usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "tagName": "v2.6.22" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(audio): demo拆解与规范 ([#2111](https://github.com/jdf2e/nutui-react/pull/2111)) @Alex-huxiyang", + "rawContent": "fix(audio): demo拆解与规范 ([#2111](https://github.com/jdf2e/nutui-react/pull/2111)) @Alex-huxiyang", + "tagName": "v2.5.0" + } + ], + "Avatar": [ + { + "version": "v2.6.22", + "type": "fix", + "content": "🐛 usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "rawContent": "usecallback to fix render too many times, button,animatingnumbers,avatar,audio; and fix avatargroup when length > maxsize ([#2628](https://github.com/jdf2e/nutui-react/pull/2628))", + "tagName": "v2.6.22" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(avatar): demo规范与调整 ([#2071](https://github.com/jdf2e/nutui-react/pull/2071)) @Alex-huxiyang", + "rawContent": "fix(avatar): demo规范与调整 ([#2071](https://github.com/jdf2e/nutui-react/pull/2071)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.7", + "type": "others", + "content": "📖 docs(avatar): add list display mode ([#1862](https://github.com/jdf2e/nutui-react/pull/1862)) @oasis-cloud", + "rawContent": "📖 docs(avatar): add list display mode ([#1862](https://github.com/jdf2e/nutui-react/pull/1862)) @oasis-cloud", + "tagName": "v2.3.7" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "📖 docs(avatar): 修改demo值,改为可支持变量 ([#1752](https://github.com/jdf2e/nutui-react/pull/1752)) @xiaoyatong", + "rawContent": "📖 docs(avatar): 修改demo值,改为可支持变量 ([#1752](https://github.com/jdf2e/nutui-react/pull/1752)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.12", + "type": "fix", + "content": "🐛 fix(Avatar): 解决在小程序环境下,使用Avatar.Group无法正常展示头像问题 ([#1296](https://github.com/jdf2e/nutui-react/pull/1296)) @Tralafalgar Wang", + "rawContent": "fix(Avatar): 解决在小程序环境下,使用Avatar.Group无法正常展示头像问题 ([#1296](https://github.com/jdf2e/nutui-react/pull/1296)) @Tralafalgar Wang", + "tagName": "v2.0.12" + } + ], + "CircleProgress": [ + { + "version": "v2.6.5", + "type": "fix", + "content": "🐛 fix(circleprogress): update demo ([#2260](https://github.com/jdf2e/nutui-react/pull/2260)) @eiinu", + "rawContent": "fix(circleprogress): update demo ([#2260](https://github.com/jdf2e/nutui-react/pull/2260)) @eiinu", + "tagName": "v2.6.5" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(circleprogress): demo拆解与规范 ([#2091](https://github.com/jdf2e/nutui-react/pull/2091)) @Alex-huxiyang", + "rawContent": "fix(circleprogress): demo拆解与规范 ([#2091](https://github.com/jdf2e/nutui-react/pull/2091)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.7", + "type": "others", + "content": "🛠 refactor(circleprogress): optimize animation duration ([#1861](https://github.com/jdf2e/nutui-react/pull/1861)) @oasis-cloud", + "rawContent": "🛠 refactor(circleprogress): optimize animation duration ([#1861](https://github.com/jdf2e/nutui-react/pull/1861)) @oasis-cloud", + "tagName": "v2.3.7" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(circleprogress): docs 优化,修订 css 变量 ([#1699](https://github.com/jdf2e/nutui-react/pull/1699)) @xiaoyatong", + "rawContent": "style(circleprogress): docs 优化,修订 css 变量 ([#1699](https://github.com/jdf2e/nutui-react/pull/1699)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.24", + "type": "fix", + "content": "🐛 fix(circleprogress): 计算出现 NaN 导致组件展示为 100% 的情况 ([#1602](https://github.com/jdf2e/nutui-react/pull/1602)) @oasis-cloud", + "rawContent": "fix(circleprogress): 计算出现 NaN 导致组件展示为 100% 的情况 ([#1602](https://github.com/jdf2e/nutui-react/pull/1602)) @oasis-cloud", + "tagName": "v2.0.24" + } + ], + "Collapse": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(collapse): 去掉 demo 顶部留白 ([#3041](https://github.com/jdf2e/nutui-react/pull/3041))", + "rawContent": "fix(collapse): 去掉 demo 顶部留白 ([#3041](https://github.com/jdf2e/nutui-react/pull/3041))", + "tagName": "v3.0.1" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(collapse): demo拆解与规范 ([#2094](https://github.com/jdf2e/nutui-react/pull/2094)) @eiinu", + "rawContent": "fix(collapse): demo拆解与规范 ([#2094](https://github.com/jdf2e/nutui-react/pull/2094)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.0", + "type": "feat", + "content": "✨ feat(rtl): collapse ([#1981](https://github.com/jdf2e/nutui-react/pull/1981)) @Eiinu", + "rawContent": "feat(rtl): collapse ([#1981](https://github.com/jdf2e/nutui-react/pull/1981)) @Eiinu", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "📖 docs: address and collapse doc icons ([#1692](https://github.com/jdf2e/nutui-react/pull/1692)) @xiaoyatong", + "rawContent": "📖 docs: address and collapse doc icons ([#1692](https://github.com/jdf2e/nutui-react/pull/1692)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(collapse): add border-bottom as an item ([#1698](https://github.com/jdf2e/nutui-react/pull/1698)) @xiaoyatong", + "rawContent": "style(collapse): add border-bottom as an item ([#1698](https://github.com/jdf2e/nutui-react/pull/1698)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "CountDown": [ + { + "version": "v2.5.2", + "type": "others", + "content": "🏡 chore(countdown): demo拆解与规范 ([#2147](https://github.com/jdf2e/nutui-react/pull/2147)) @Alex.huxiyang", + "rawContent": "🏡 chore(countdown): demo拆解与规范 ([#2147](https://github.com/jdf2e/nutui-react/pull/2147)) @Alex.huxiyang", + "tagName": "v2.5.2" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "📖 docs(countdown): 修复文档中的文案多语言化 ([#1723](https://github.com/jdf2e/nutui-react/pull/1723)) @xiaoyatong", + "rawContent": "📖 docs(countdown): 修复文档中的文案多语言化 ([#1723](https://github.com/jdf2e/nutui-react/pull/1723)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.4", + "type": "fix", + "content": "🐛 countdown手动控制demo展示样式优化 ([#1229](https://github.com/jdf2e/nutui-react/pull/1229)) @songsong", + "rawContent": "countdown手动控制demo展示样式优化 ([#1229](https://github.com/jdf2e/nutui-react/pull/1229)) @songsong", + "tagName": "v2.0.4" + }, + { + "version": "v1.5.9", + "type": "feat", + "content": "✨ countdown 支持剩余时间 ([#1120](https://github.com/jdf2e/nutui-react/pull/1120)) @xiaoyatong", + "rawContent": "countdown 支持剩余时间 ([#1120](https://github.com/jdf2e/nutui-react/pull/1120)) @xiaoyatong", + "tagName": "v1.5.9" + }, + { + "version": "v2.0.0-alpha.12", + "type": "others", + "content": "🛠 refactor: countdown ([#1040](https://github.com/jdf2e/nutui-react/pull/1040)) @拧巴的猫", + "rawContent": "🛠 refactor: countdown ([#1040](https://github.com/jdf2e/nutui-react/pull/1040)) @拧巴的猫", + "tagName": "v2.0.0-alpha.12" + } + ], + "Ellipsis": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(Ellipsis): Correction of text ([#2778](https://github.com/jdf2e/nutui-react/pull/2778))`", + "rawContent": "`fix(Ellipsis): Correction of text ([#2778](https://github.com/jdf2e/nutui-react/pull/2778))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.2", + "type": "fix", + "content": "🐛 fix(ellipsis): 部分场景下的ref报错 ([#2200](https://github.com/jdf2e/nutui-react/pull/2200)) @Alex-huxiyang", + "rawContent": "fix(ellipsis): 部分场景下的ref报错 ([#2200](https://github.com/jdf2e/nutui-react/pull/2200)) @Alex-huxiyang", + "tagName": "v2.6.2" + }, + { + "version": "v2.5.1", + "type": "feat", + "content": "✨ feat(ellipsis): rtl ([#2128](https://github.com/jdf2e/nutui-react/pull/2128)) @irisSong", + "rawContent": "feat(ellipsis): rtl ([#2128](https://github.com/jdf2e/nutui-react/pull/2128)) @irisSong", + "tagName": "v2.5.1" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(Ellipsis): 修复小程序环境下给Ellipsis设置字号后工作不正常的问题 ([#2078](https://github.com/jdf2e/nutui-react/pull/2078)) @FPG-Alan", + "rawContent": "fix(Ellipsis): 修复小程序环境下给Ellipsis设置字号后工作不正常的问题 ([#2078](https://github.com/jdf2e/nutui-react/pull/2078)) @FPG-Alan", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.1", + "type": "fix", + "content": "🐛 fix(ellipsis): 修复设置行数超过内容高度时只显示一行内容的问题 ([#2028](https://github.com/jdf2e/nutui-react/pull/2028)) @boiboif", + "rawContent": "fix(ellipsis): 修复设置行数超过内容高度时只显示一行内容的问题 ([#2028](https://github.com/jdf2e/nutui-react/pull/2028)) @boiboif", + "tagName": "v2.4.1" + } + ], + "ImagePreview": [ + { + "version": "v2.6.13", + "type": "fix", + "content": "🐛 fix(imagepreview): 无法在预期情景正确关闭图片的异常 ([#2421](https://github.com/jdf2e/nutui-react/pull/2421)) @Alex-huxiyang", + "rawContent": "fix(imagepreview): 无法在预期情景正确关闭图片的异常 ([#2421](https://github.com/jdf2e/nutui-react/pull/2421)) @Alex-huxiyang", + "tagName": "v2.6.13" + }, + { + "version": "v2.6.12", + "type": "feat", + "content": "✨ add pagination whether to show pages in imagepreview ([#2411](https://github.com/jdf2e/nutui-react/pull/2411)) @xiaoyatong", + "rawContent": "add pagination whether to show pages in imagepreview ([#2411](https://github.com/jdf2e/nutui-react/pull/2411)) @xiaoyatong", + "tagName": "v2.6.12" + }, + { + "version": "v2.6.6", + "type": "fix", + "content": "🐛 fix(imagepreview): 阻止冒泡,防止点击图片关闭 ([#2281](https://github.com/jdf2e/nutui-react/pull/2281)) @Alex-huxiyang", + "rawContent": "fix(imagepreview): 阻止冒泡,防止点击图片关闭 ([#2281](https://github.com/jdf2e/nutui-react/pull/2281)) @Alex-huxiyang", + "tagName": "v2.6.6" + }, + { + "version": "v2.6.4", + "type": "fix", + "content": "🐛 fix(imagePreview): 阻止关闭预览事件对父结构的非必要影响 ([#2227](https://github.com/jdf2e/nutui-react/pull/2227)) @Alex-huxiyang", + "rawContent": "fix(imagePreview): 阻止关闭预览事件对父结构的非必要影响 ([#2227](https://github.com/jdf2e/nutui-react/pull/2227)) @Alex-huxiyang", + "tagName": "v2.6.4" + }, + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(imagepreview): demo拆解与规范 ([#2134](https://github.com/jdf2e/nutui-react/pull/2134)) @Alex-huxiyang", + "rawContent": "fix(imagepreview): demo拆解与规范 ([#2134](https://github.com/jdf2e/nutui-react/pull/2134)) @Alex-huxiyang", + "tagName": "v2.5.1" + } + ], + "Indicator": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(indicator): v15 ([#2746](https://github.com/jdf2e/nutui-react/pull/2746))`", + "rawContent": "`feat(indicator): v15 ([#2746](https://github.com/jdf2e/nutui-react/pull/2746))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(indicator): demo拆解与规范 ([#2090](https://github.com/jdf2e/nutui-react/pull/2090)) @eiinu", + "rawContent": "fix(indicator): demo拆解与规范 ([#2090](https://github.com/jdf2e/nutui-react/pull/2090)) @eiinu", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.0", + "type": "fix", + "content": "🐛 fix(indicator): 修订样式名称和样式变量 ([#1712](https://github.com/jdf2e/nutui-react/pull/1712)) @xiaoyatong", + "rawContent": "fix(indicator): 修订样式名称和样式变量 ([#1712](https://github.com/jdf2e/nutui-react/pull/1712)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.1.0", + "type": "fix", + "content": "🐛 picker and datepicker theme config at taro and indicator css at taro ([#1615](https://github.com/jdf2e/nutui-react/pull/1615)) @xiaoyatong", + "rawContent": "picker and datepicker theme config at taro and indicator css at taro ([#1615](https://github.com/jdf2e/nutui-react/pull/1615)) @xiaoyatong", + "tagName": "v2.1.0" + }, + { + "version": "v2.0.24", + "type": "fix", + "content": "🐛 swiper indicator zindex at taro ([#1586](https://github.com/jdf2e/nutui-react/pull/1586)) @xiaoyatong", + "rawContent": "swiper indicator zindex at taro ([#1586](https://github.com/jdf2e/nutui-react/pull/1586)) @xiaoyatong", + "tagName": "v2.0.24" + } + ], + "Lottie": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat: lottie 组件 ([#2867](https://github.com/jdf2e/nutui-react/pull/2867))`", + "rawContent": "`feat: lottie 组件 ([#2867](https://github.com/jdf2e/nutui-react/pull/2867))`", + "tagName": "v3.0.0" + } + ], + "Pagination": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(pagination): color of icon ([#2769](https://github.com/jdf2e/nutui-react/pull/2769))`", + "rawContent": "`fix(pagination): color of icon ([#2769](https://github.com/jdf2e/nutui-react/pull/2769))`", + "tagName": "v3.0.0" + }, + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(pagination): v15 ([#2712](https://github.com/jdf2e/nutui-react/pull/2712))`", + "rawContent": "`feat(pagination): v15 ([#2712](https://github.com/jdf2e/nutui-react/pull/2712))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.6.12", + "type": "feat", + "content": "✨ add pagination whether to show pages in imagepreview ([#2411](https://github.com/jdf2e/nutui-react/pull/2411)) @xiaoyatong", + "rawContent": "add pagination whether to show pages in imagepreview ([#2411](https://github.com/jdf2e/nutui-react/pull/2411)) @xiaoyatong", + "tagName": "v2.6.12" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(pagination): demo拆解与规范 ([#2079](https://github.com/jdf2e/nutui-react/pull/2079)) @Alex-huxiyang", + "rawContent": "fix(pagination): demo拆解与规范 ([#2079](https://github.com/jdf2e/nutui-react/pull/2079)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.0", + "type": "feat", + "content": "✨ feat(pagination): add lite mode and css variable ([#1743](https://github.com/jdf2e/nutui-react/pull/1743)) @xiaoyatong", + "rawContent": "feat(pagination): add lite mode and css variable ([#1743](https://github.com/jdf2e/nutui-react/pull/1743)) @xiaoyatong", + "tagName": "v2.3.0" + } + ], + "Price": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(price): v15 ([#2885](https://github.com/jdf2e/nutui-react/pull/2885))`", + "rawContent": "`feat(price): v15 ([#2885](https://github.com/jdf2e/nutui-react/pull/2885))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(price): demo拆解与规范 ([#2082](https://github.com/jdf2e/nutui-react/pull/2082)) @Alex-huxiyang", + "rawContent": "fix(price): demo拆解与规范 ([#2082](https://github.com/jdf2e/nutui-react/pull/2082)) @Alex-huxiyang", + "tagName": "v2.4.2" + }, + { + "version": "v2.0.0-alpha.9", + "type": "others", + "content": "🛠 refactor: price ([#989](https://github.com/jdf2e/nutui-react/pull/989)) @拧巴的猫", + "rawContent": "🛠 refactor: price ([#989](https://github.com/jdf2e/nutui-react/pull/989)) @拧巴的猫", + "tagName": "v2.0.0-alpha.9" + } + ], + "Progress": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(progress): fix style & support icon demo ([#2729](https://github.com/jdf2e/nutui-react/pull/2729))`", + "rawContent": "`fix(progress): fix style & support icon demo ([#2729](https://github.com/jdf2e/nutui-react/pull/2729))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.5.1", + "type": "feat", + "content": "✨ feat(progress): Taro新增lazy属性 ([#2108](https://github.com/jdf2e/nutui-react/pull/2108)) @Alex-huxiyang", + "rawContent": "feat(progress): Taro新增lazy属性 ([#2108](https://github.com/jdf2e/nutui-react/pull/2108)) @Alex-huxiyang", + "tagName": "v2.5.1" + }, + { + "version": "v2.5.0", + "type": "feat", + "content": "✨ feat(progress): 支持taro的lazy属性 & demo拆解与规范 ([#2086](https://github.com/jdf2e/nutui-react/pull/2086)) @Alex-huxiyang", + "rawContent": "feat(progress): 支持taro的lazy属性 & demo拆解与规范 ([#2086](https://github.com/jdf2e/nutui-react/pull/2086)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.5.0", + "type": "others", + "content": "🚦 Revert \"feat(progress): 支持taro的lazy属性 & demo拆解与规范 ([#2086](https://github.com/jdf2e/nutui-react/pull/2086))\" @oasis-cloud", + "rawContent": "🚦 Revert \"feat(progress): 支持taro的lazy属性 & demo拆解与规范 ([#2086](https://github.com/jdf2e/nutui-react/pull/2086))\" @oasis-cloud", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.12", + "type": "feat", + "content": "✨ feat(rtl): support progress & range ([#1961](https://github.com/jdf2e/nutui-react/pull/1961)) @Eiinu", + "rawContent": "feat(rtl): support progress & range ([#1961](https://github.com/jdf2e/nutui-react/pull/1961)) @Eiinu", + "tagName": "v2.3.12" + } + ], + "Segmented": [], + "Steps": [ + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(steps): demo拆解与规范 ([#2105](https://github.com/jdf2e/nutui-react/pull/2105)) @eiinu", + "rawContent": "fix(steps): demo拆解与规范 ([#2105](https://github.com/jdf2e/nutui-react/pull/2105)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.8", + "type": "fix", + "content": "🐛 fix(steps): 小程序的真机情况下出现的换行的情况 ([#1899](https://github.com/jdf2e/nutui-react/pull/1899)) @xiaoyatong", + "rawContent": "fix(steps): 小程序的真机情况下出现的换行的情况 ([#1899](https://github.com/jdf2e/nutui-react/pull/1899)) @xiaoyatong", + "tagName": "v2.3.8" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(steps): 优化steps样式结构,改进css变量名 ([#1741](https://github.com/jdf2e/nutui-react/pull/1741)) @xiaoyatong", + "rawContent": "style(steps): 优化steps样式结构,改进css变量名 ([#1741](https://github.com/jdf2e/nutui-react/pull/1741)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.0-alpha.10", + "type": "others", + "content": "🛠 refactor: steps ([#1021](https://github.com/jdf2e/nutui-react/pull/1021)) @oasis-cloud", + "rawContent": "🛠 refactor: steps ([#1021](https://github.com/jdf2e/nutui-react/pull/1021)) @oasis-cloud", + "tagName": "v2.0.0-alpha.10" + } + ], + "Swiper": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(swiper): 设置横向轮播后,手势无法触发页面的滚动 ([#3004](https://github.com/jdf2e/nutui-react/pull/3004))`", + "rawContent": "`fix(swiper): 设置横向轮播后,手势无法触发页面的滚动 ([#3004](https://github.com/jdf2e/nutui-react/pull/3004))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.7.9", + "type": "fix", + "content": "🐛 fix(swiper): 设置横向轮播后,手势无法触发页面的滚动 ([#3003](https://github.com/jdf2e/nutui-react/pull/3003))", + "rawContent": "fix(swiper): 设置横向轮播后,手势无法触发页面的滚动 ([#3003](https://github.com/jdf2e/nutui-react/pull/3003))", + "tagName": "v2.7.9" + }, + { + "version": "v2.7.6", + "type": "fix", + "content": "🐛 fix(swiper): 修复duration不生效 ([#2913](https://github.com/jdf2e/nutui-react/pull/2913))", + "rawContent": "fix(swiper): 修复duration不生效 ([#2913](https://github.com/jdf2e/nutui-react/pull/2913))", + "tagName": "v2.7.6" + }, + { + "version": "v2.6.22", + "type": "others", + "content": "📖 docs: swiper 可通过 css 的 touch-action 设置用户操作行为 ([#2630](https://github.com/jdf2e/nutui-react/pull/2630))", + "rawContent": "📖 docs: swiper 可通过 css 的 touch-action 设置用户操作行为 ([#2630](https://github.com/jdf2e/nutui-react/pull/2630))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.14", + "type": "fix", + "content": "🐛 fix(swiper): display abnormal when dir = 'rtl' ([#2454](https://github.com/jdf2e/nutui-react/pull/2454)) @Alex-huxiyang", + "rawContent": "fix(swiper): display abnormal when dir = 'rtl' ([#2454](https://github.com/jdf2e/nutui-react/pull/2454)) @Alex-huxiyang", + "tagName": "v2.6.14" + } + ], + "Table": [ + { + "version": "v2.7.2", + "type": "fix", + "content": "🐛 fix(Table): 给个默认背景色,解决在小程序中固定列与滚动内列混合 ([#2789](https://github.com/jdf2e/nutui-react/pull/2789))", + "rawContent": "fix(Table): 给个默认背景色,解决在小程序中固定列与滚动内列混合 ([#2789](https://github.com/jdf2e/nutui-react/pull/2789))", + "tagName": "v2.7.2" + }, + { + "version": "v2.6.22", + "type": "others", + "content": "🏡 chore(demo): display bound dispatchSetState in demo8 of table demos ([#2626](https://github.com/jdf2e/nutui-react/pull/2626))", + "rawContent": "🏡 chore(demo): display bound dispatchSetState in demo8 of table demos ([#2626](https://github.com/jdf2e/nutui-react/pull/2626))", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.15", + "type": "others", + "content": "🏡 chore: run md-table-format when git commit changes ([#2484](https://github.com/jdf2e/nutui-react/pull/2484)) @Alex-huxiyang", + "rawContent": "🏡 chore: run md-table-format when git commit changes ([#2484](https://github.com/jdf2e/nutui-react/pull/2484)) @Alex-huxiyang", + "tagName": "v2.6.15" + }, + { + "version": "v2.6.15", + "type": "others", + "content": "💡 🪵 refactor: table ([#2473](https://github.com/jdf2e/nutui-react/pull/2473)) @zanyuki-jd", + "rawContent": "🪵 refactor: table ([#2473](https://github.com/jdf2e/nutui-react/pull/2473)) @zanyuki-jd", + "tagName": "v2.6.15" + }, + { + "version": "v2.6.11", + "type": "feat", + "content": "✨ feat(table): table新增自定义行 ([#2390](https://github.com/jdf2e/nutui-react/pull/2390)) @zanyuki-jd", + "rawContent": "feat(table): table新增自定义行 ([#2390](https://github.com/jdf2e/nutui-react/pull/2390)) @zanyuki-jd", + "tagName": "v2.6.11" + } + ], + "Tag": [ + { + "version": "v2.6.22", + "type": "others", + "content": "📖 docs: 文档构建出现未闭合标签的错误提示", + "rawContent": "📖 docs: 文档构建出现未闭合标签的错误提示", + "tagName": "v2.6.22" + }, + { + "version": "v2.6.6", + "type": "others", + "content": "🏡 chore(tag): css样式变量修复 ([#2279](https://github.com/jdf2e/nutui-react/pull/2279)) @Alex-huxiyang", + "rawContent": "🏡 chore(tag): css样式变量修复 ([#2279](https://github.com/jdf2e/nutui-react/pull/2279)) @Alex-huxiyang", + "tagName": "v2.6.6" + }, + { + "version": "v2.6.2", + "type": "others", + "content": "📖 docs(tag):修复demo描述错误 ([#2204](https://github.com/jdf2e/nutui-react/pull/2204)) @jianhuagao", + "rawContent": "📖 docs(tag):修复demo描述错误 ([#2204](https://github.com/jdf2e/nutui-react/pull/2204)) @jianhuagao", + "tagName": "v2.6.2" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(tag): taro 下自定义icon无法展示 ([#2088](https://github.com/jdf2e/nutui-react/pull/2088)) @eiinu", + "rawContent": "fix(tag): taro 下自定义icon无法展示 ([#2088](https://github.com/jdf2e/nutui-react/pull/2088)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.12", + "type": "others", + "content": "🛠 refactor(docs): 文档支持通过标签使用已有的 demo 代码 ([#1950](https://github.com/jdf2e/nutui-react/pull/1950)) @Alex.huxiyang", + "rawContent": "🛠 refactor(docs): 文档支持通过标签使用已有的 demo 代码 ([#1950](https://github.com/jdf2e/nutui-react/pull/1950)) @Alex.huxiyang", + "tagName": "v2.3.12" + } + ], + "Tour": [ + { + "version": "v2.5.1", + "type": "fix", + "content": "🐛 fix(tour): demo拆解与规范 ([#2130](https://github.com/jdf2e/nutui-react/pull/2130)) @Alex-huxiyang", + "rawContent": "fix(tour): demo拆解与规范 ([#2130](https://github.com/jdf2e/nutui-react/pull/2130)) @Alex-huxiyang", + "tagName": "v2.5.1" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "📖 docs(tour): fix tour demo ([#1759](https://github.com/jdf2e/nutui-react/pull/1759)) @xiaoyatong", + "rawContent": "📖 docs(tour): fix tour demo ([#1759](https://github.com/jdf2e/nutui-react/pull/1759)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.11", + "type": "feat", + "content": "✨ 新增 tour 引导组件 ([#1279](https://github.com/jdf2e/nutui-react/pull/1279)) @junjun666", + "rawContent": "新增 tour 引导组件 ([#1279](https://github.com/jdf2e/nutui-react/pull/1279)) @junjun666", + "tagName": "v2.0.11" + } + ], + "Video": [ + { + "version": "v2.7.3", + "type": "feat", + "content": "✨ feat(Video): web h5 下支持 ref 调用 ([#2852](https://github.com/jdf2e/nutui-react/pull/2852))", + "rawContent": "feat(Video): web h5 下支持 ref 调用 ([#2852](https://github.com/jdf2e/nutui-react/pull/2852))", + "tagName": "v2.7.3" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(video): demo拆解与规范 ([#2104](https://github.com/jdf2e/nutui-react/pull/2104)) @eiinu", + "rawContent": "fix(video): demo拆解与规范 ([#2104](https://github.com/jdf2e/nutui-react/pull/2104)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.8", + "type": "feat", + "content": "✨ feat(video): support passing through attributes for Taro Video ([#1890](https://github.com/jdf2e/nutui-react/pull/1890)) @xiaoyatong", + "rawContent": "feat(video): support passing through attributes for Taro Video ([#1890](https://github.com/jdf2e/nutui-react/pull/1890)) @xiaoyatong", + "tagName": "v2.3.8" + }, + { + "version": "v2.1.0", + "type": "feat", + "content": "✨ uploader taro h5 支持 video ([#1605](https://github.com/jdf2e/nutui-react/pull/1605)) @xiaoyatong", + "rawContent": "uploader taro h5 支持 video ([#1605](https://github.com/jdf2e/nutui-react/pull/1605)) @xiaoyatong", + "tagName": "v2.1.0" + }, + { + "version": "v2.0.0-alpha.13", + "type": "others", + "content": "🛠 refactor: video ([#1034](https://github.com/jdf2e/nutui-react/pull/1034)) @junjun666", + "rawContent": "🛠 refactor: video ([#1034](https://github.com/jdf2e/nutui-react/pull/1034)) @junjun666", + "tagName": "v2.0.0-alpha.13" + } + ], + "VirtualList": [ + { + "version": "v2.6.4", + "type": "fix", + "content": "🐛 fix(virtualList): 修复部分场景onScroll不触发 ([#2221](https://github.com/jdf2e/nutui-react/pull/2221)) @Alex-huxiyang", + "rawContent": "fix(virtualList): 修复部分场景onScroll不触发 ([#2221](https://github.com/jdf2e/nutui-react/pull/2221)) @Alex-huxiyang", + "tagName": "v2.6.4" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(virtuallist): demo拆解与规范 ([#2116](https://github.com/jdf2e/nutui-react/pull/2116)) @eiinu", + "rawContent": "fix(virtuallist): demo拆解与规范 ([#2116](https://github.com/jdf2e/nutui-react/pull/2116)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.4.0", + "type": "fix", + "content": "🐛 fix(virtuallist): 修复 vitrual list 组件 Taro 下获取窗口高度不正确的问题 ([#1993](https://github.com/jdf2e/nutui-react/pull/1993)) @CDog34", + "rawContent": "fix(virtuallist): 修复 vitrual list 组件 Taro 下获取窗口高度不正确的问题 ([#1993](https://github.com/jdf2e/nutui-react/pull/1993)) @CDog34", + "tagName": "v2.4.0" + }, + { + "version": "v2.3.4", + "type": "others", + "content": "🐛 fix(virtualList): 等高模式下的抖动处理, 不定高模式快速滑动白屏 ([#1825](https://github.com/jdf2e/nutui-react/pull/1825)) @oasis-cloud", + "rawContent": "🐛 fix(virtualList): 等高模式下的抖动处理, 不定高模式快速滑动白屏 ([#1825](https://github.com/jdf2e/nutui-react/pull/1825)) @oasis-cloud", + "tagName": "v2.3.4" + }, + { + "version": "v2.0.24", + "type": "fix", + "content": "🐛 virtuallist key at taro ([#1584](https://github.com/jdf2e/nutui-react/pull/1584)) @xiaoyatong", + "rawContent": "virtuallist key at taro ([#1584](https://github.com/jdf2e/nutui-react/pull/1584)) @xiaoyatong", + "tagName": "v2.0.24" + } + ], + "AvatarCropper": [ + { + "version": "v2.7.0", + "type": "fix", + "content": "🐛 fix(avatarcropper): multi-language support ([#2666](https://github.com/jdf2e/nutui-react/pull/2666))", + "rawContent": "fix(avatarcropper): multi-language support ([#2666](https://github.com/jdf2e/nutui-react/pull/2666))", + "tagName": "v2.7.0" + }, + { + "version": "v2.6.12", + "type": "fix", + "content": "🐛 fix(avatarcropper): 报错 ([#2364](https://github.com/jdf2e/nutui-react/pull/2364)) @Alex-huxiyang", + "rawContent": "fix(avatarcropper): 报错 ([#2364](https://github.com/jdf2e/nutui-react/pull/2364)) @Alex-huxiyang", + "tagName": "v2.6.12" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(avatarcropper): demo拆解与规范 ([#2103](https://github.com/jdf2e/nutui-react/pull/2103)) @eiinu", + "rawContent": "fix(avatarcropper): demo拆解与规范 ([#2103](https://github.com/jdf2e/nutui-react/pull/2103)) @eiinu", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.5", + "type": "feat", + "content": "✨ feat(avatarcropper): 新增属性shape,可设置裁剪样式为圆形 ([#1842](https://github.com/jdf2e/nutui-react/pull/1842)) @Marvin Gui", + "rawContent": "feat(avatarcropper): 新增属性shape,可设置裁剪样式为圆形 ([#1842](https://github.com/jdf2e/nutui-react/pull/1842)) @Marvin Gui", + "tagName": "v2.3.5" + }, + { + "version": "v2.3.5", + "type": "fix", + "content": "🐛 fix(avatarcropper): fix cannot display when it is development at taro ([#1840](https://github.com/jdf2e/nutui-react/pull/1840)) @xiaoyatong", + "rawContent": "fix(avatarcropper): fix cannot display when it is development at taro ([#1840](https://github.com/jdf2e/nutui-react/pull/1840)) @xiaoyatong", + "tagName": "v2.3.5" + } + ], + "Barrage": [ + { + "version": "v2.6.21", + "type": "fix", + "content": "🐛 修改jd小程序高版本弹幕不滚动问题 ([#2612](https://github.com/jdf2e/nutui-react/pull/2612))", + "rawContent": "修改jd小程序高版本弹幕不滚动问题 ([#2612](https://github.com/jdf2e/nutui-react/pull/2612))", + "tagName": "v2.6.21" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(barrage): 简化demo ([#2100](https://github.com/jdf2e/nutui-react/pull/2100)) @xiaoyatong", + "rawContent": "fix(barrage): 简化demo ([#2100](https://github.com/jdf2e/nutui-react/pull/2100)) @xiaoyatong", + "tagName": "v2.5.0" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(barrage): demo拆解与规范 ([#2098](https://github.com/jdf2e/nutui-react/pull/2098)) @joyfully-W", + "rawContent": "fix(barrage): demo拆解与规范 ([#2098](https://github.com/jdf2e/nutui-react/pull/2098)) @joyfully-W", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.10", + "type": "fix", + "content": "🐛 fix(barrage): 解决新增弹幕重叠问题+不同宽度弹幕滚动速度不一致问题+重构taro版本 ([#1942](https://github.com/jdf2e/nutui-react/pull/1942)) @songsong", + "rawContent": "fix(barrage): 解决新增弹幕重叠问题+不同宽度弹幕滚动速度不一致问题+重构taro版本 ([#1942](https://github.com/jdf2e/nutui-react/pull/1942)) @songsong", + "tagName": "v2.3.10" + }, + { + "version": "v2.1.0", + "type": "fix", + "content": "🐛 日历close样式,可自定义样式;修改弹幕样式;更名CircleClose为Failure、Issue 为 Tips ([#1648](https://github.com/jdf2e/nutui-react/pull/1648)) @xiaoyatong", + "rawContent": "日历close样式,可自定义样式;修改弹幕样式;更名CircleClose为Failure、Issue 为 Tips ([#1648](https://github.com/jdf2e/nutui-react/pull/1648)) @xiaoyatong", + "tagName": "v2.1.0" + } + ], + "Card": [ + { + "version": "v2.6.8", + "type": "feat", + "content": "✨ feat(card): add card hide price and shop usage ([#2292](https://github.com/jdf2e/nutui-react/pull/2292)) @wenlingang", + "rawContent": "feat(card): add card hide price and shop usage ([#2292](https://github.com/jdf2e/nutui-react/pull/2292)) @wenlingang", + "tagName": "v2.6.8" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(Card): demo拆解与规范 ([#2072](https://github.com/jdf2e/nutui-react/pull/2072)) @joyfully-W", + "rawContent": "fix(Card): demo拆解与规范 ([#2072](https://github.com/jdf2e/nutui-react/pull/2072)) @joyfully-W", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor: rename card classname ([#1700](https://github.com/jdf2e/nutui-react/pull/1700)) @xiaoyatong", + "rawContent": "🛠 refactor: rename card classname ([#1700](https://github.com/jdf2e/nutui-react/pull/1700)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.0-alpha.15", + "type": "others", + "content": "🛠 refactor: card ([#1069](https://github.com/jdf2e/nutui-react/pull/1069)) @拧巴的猫", + "rawContent": "🛠 refactor: card ([#1069](https://github.com/jdf2e/nutui-react/pull/1069)) @拧巴的猫", + "tagName": "v2.0.0-alpha.15" + } + ], + "TimeSelect": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `fix(timeselect): harmony适配 ([#2806](https://github.com/jdf2e/nutui-react/pull/2806))`", + "rawContent": "`fix(timeselect): harmony适配 ([#2806](https://github.com/jdf2e/nutui-react/pull/2806))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.5.0", + "type": "fix", + "content": "🐛 fix(timeselect): demo拆解与规范 ([#2087](https://github.com/jdf2e/nutui-react/pull/2087)) @Alex-huxiyang", + "rawContent": "fix(timeselect): demo拆解与规范 ([#2087](https://github.com/jdf2e/nutui-react/pull/2087)) @Alex-huxiyang", + "tagName": "v2.5.0" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "🛠 refactor(timeselect): 优化结构,简化css变量 ([#1732](https://github.com/jdf2e/nutui-react/pull/1732)) @xiaoyatong", + "rawContent": "🛠 refactor(timeselect): 优化结构,简化css变量 ([#1732](https://github.com/jdf2e/nutui-react/pull/1732)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.0-alpha.15", + "type": "others", + "content": "🛠 refactor: TimeSelect ([#1088](https://github.com/jdf2e/nutui-react/pull/1088)) @Eiinu", + "rawContent": "🛠 refactor: TimeSelect ([#1088](https://github.com/jdf2e/nutui-react/pull/1088)) @Eiinu", + "tagName": "v2.0.0-alpha.15" + } + ], + "TrendArrow": [ + { + "version": "v3.0.0", + "type": "others", + "content": "💡 `feat(trendarrow): v15 ([#2540](https://github.com/jdf2e/nutui-react/pull/2540))`", + "rawContent": "`feat(trendarrow): v15 ([#2540](https://github.com/jdf2e/nutui-react/pull/2540))`", + "tagName": "v3.0.0" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(trendarrow): demo拆解与规范 ([#2075](https://github.com/jdf2e/nutui-react/pull/2075)) @sunlanda", + "rawContent": "fix(trendarrow): demo拆解与规范 ([#2075](https://github.com/jdf2e/nutui-react/pull/2075)) @sunlanda", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.0", + "type": "others", + "content": "💡 style(trendarrow): 修订className类名 ([#1716](https://github.com/jdf2e/nutui-react/pull/1716)) @xiaoyatong", + "rawContent": "style(trendarrow): 修订className类名 ([#1716](https://github.com/jdf2e/nutui-react/pull/1716)) @xiaoyatong", + "tagName": "v2.3.0" + }, + { + "version": "v2.0.0-beta.2", + "type": "fix", + "content": "🐛 优化 TrendArrow 组件 props ([#1150](https://github.com/jdf2e/nutui-react/pull/1150)) @songsong", + "rawContent": "优化 TrendArrow 组件 props ([#1150](https://github.com/jdf2e/nutui-react/pull/1150)) @songsong", + "tagName": "v2.0.0-beta.2" + }, + { + "version": "v2.0.0-alpha.13", + "type": "others", + "content": "🛠 refactor: trendArrow ([#1066](https://github.com/jdf2e/nutui-react/pull/1066)) @拧巴的猫", + "rawContent": "🛠 refactor: trendArrow ([#1066](https://github.com/jdf2e/nutui-react/pull/1066)) @拧巴的猫", + "tagName": "v2.0.0-alpha.13" + } + ], + "WaterMark": [ + { + "version": "v3.0.1", + "type": "others", + "content": "💡 fix(watermark): 小程序图片高度未撑开 ([#3040](https://github.com/jdf2e/nutui-react/pull/3040))", + "rawContent": "fix(watermark): 小程序图片高度未撑开 ([#3040](https://github.com/jdf2e/nutui-react/pull/3040))", + "tagName": "v3.0.1" + }, + { + "version": "v2.6.15", + "type": "feat", + "content": "✨ feat(watermark): support multi-line text ([#2477](https://github.com/jdf2e/nutui-react/pull/2477)) @xiaoyatong", + "rawContent": "feat(watermark): support multi-line text ([#2477](https://github.com/jdf2e/nutui-react/pull/2477)) @xiaoyatong", + "tagName": "v2.6.15" + }, + { + "version": "v2.4.2", + "type": "fix", + "content": "🐛 fix(watermark): demo拆解与规范 ([#2083](https://github.com/jdf2e/nutui-react/pull/2083)) @eiinu", + "rawContent": "fix(watermark): demo拆解与规范 ([#2083](https://github.com/jdf2e/nutui-react/pull/2083)) @eiinu", + "tagName": "v2.4.2" + }, + { + "version": "v2.3.4", + "type": "others", + "content": "🐛 fix(watermark): fix demos ([#1817](https://github.com/jdf2e/nutui-react/pull/1817)) @xiaoyatong", + "rawContent": "🐛 fix(watermark): fix demos ([#1817](https://github.com/jdf2e/nutui-react/pull/1817)) @xiaoyatong", + "tagName": "v2.3.4" + }, + { + "version": "v1.5.8", + "type": "fix", + "content": "🐛 fix(watermark): 修复小程序下画布尺寸问题 ([#1073](https://github.com/jdf2e/nutui-react/pull/1073)) @Eiinu", + "rawContent": "fix(watermark): 修复小程序下画布尺寸问题 ([#1073](https://github.com/jdf2e/nutui-react/pull/1073)) @Eiinu", + "tagName": "v1.5.8" + } + ] + } +} \ No newline at end of file diff --git a/src/sites/sites-react/doc/components/contribution/contribution.tsx b/src/sites/sites-react/doc/components/contribution/contribution.tsx new file mode 100644 index 0000000000..e11b0e17c4 --- /dev/null +++ b/src/sites/sites-react/doc/components/contribution/contribution.tsx @@ -0,0 +1,92 @@ +import React, { + FunctionComponent, + useContext, + useEffect, + useState, +} from 'react' +import APPContext from '../../context' +import data from './contribution.json' + +interface ContributionMDXProps { + name: string + children?: React.ReactNode +} + +const Contribution: FunctionComponent = (props) => { + const name = props.name + const { issues, logs } = data + const liStyle = { + cursor: 'pointer', + listStyleType: 'none', + margin: '2px', + position: 'static', + paddingLeft: '5px', + } + return ( + <> +

Bugs & Tips

+ + {issues[name].length > 0 || logs[name].length > 0 && ( +
+ View more resolved + + issues + + and + + releases + + for {name} +
+ )} + + ) +} + +export default Contribution diff --git a/src/sites/sites-react/doc/components/contribution/index.ts b/src/sites/sites-react/doc/components/contribution/index.ts new file mode 100644 index 0000000000..fc22d57309 --- /dev/null +++ b/src/sites/sites-react/doc/components/contribution/index.ts @@ -0,0 +1,3 @@ +import ContributionMDX from './contribution' + +export default ContributionMDX