diff --git a/db/TDesign.db b/db/TDesign.db index a7c71b6c3..8da8478b0 100644 Binary files a/db/TDesign.db and b/db/TDesign.db differ diff --git a/packages/products/tdesign-miniprogram/packages/components/cascader/README.en-US.md b/packages/products/tdesign-miniprogram/packages/components/cascader/README.en-US.md index 3e9752116..fe2467d64 100644 --- a/packages/products/tdesign-miniprogram/packages/components/cascader/README.en-US.md +++ b/packages/products/tdesign-miniprogram/packages/components/cascader/README.en-US.md @@ -12,7 +12,7 @@ check-strictly | Boolean | false | \- | N close-btn | Boolean | true | \- | N keys | Object | - | Typescript: `CascaderKeysType` `type CascaderKeysType = TreeKeysType`。[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/common/common.ts)。[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/cascader/type.ts) | N options | Array | [] | Typescript: `Array` | N -placeholder | String | 选择选项 | \- | N +placeholder | String | - | \- | N sub-titles | Array | [] | Typescript: `Array` | N theme | String | step | options: step/tab | N title | String | - | \- | N diff --git a/packages/products/tdesign-miniprogram/packages/components/cascader/README.md b/packages/products/tdesign-miniprogram/packages/components/cascader/README.md index cd06b651b..f5d460644 100644 --- a/packages/products/tdesign-miniprogram/packages/components/cascader/README.md +++ b/packages/products/tdesign-miniprogram/packages/components/cascader/README.md @@ -12,7 +12,7 @@ check-strictly | Boolean | false | 父子节点选中状态不再关联,可各 close-btn | Boolean | true | 关闭按钮 | N keys | Object | - | 用来定义 value / label / children / disabled 在 `options` 中对应的字段别名。TS 类型:`CascaderKeysType` `type CascaderKeysType = TreeKeysType`。[通用类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/common/common.ts)。[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/cascader/type.ts) | N options | Array | [] | 可选项数据源。TS 类型:`Array` | N -placeholder | String | 选择选项 | 未选中时的提示文案 | N +placeholder | String | - | 未选中时的提示文案。组件内置默认值为:'选择选项' | N sub-titles | Array | [] | 每级展示的次标题。TS 类型:`Array` | N theme | String | step | 展示风格。可选项:step/tab | N title | String | - | 标题 | N diff --git a/packages/products/tdesign-miniprogram/packages/components/cascader/props.ts b/packages/products/tdesign-miniprogram/packages/components/cascader/props.ts index 5221fd1bf..c4f805994 100644 --- a/packages/products/tdesign-miniprogram/packages/components/cascader/props.ts +++ b/packages/products/tdesign-miniprogram/packages/components/cascader/props.ts @@ -25,10 +25,10 @@ const props: TdCascaderProps = { type: Array, value: [], }, - /** 未选中时的提示文案 */ + /** 未选中时的提示文案。组件内置默认值为:'选择选项' */ placeholder: { type: String, - value: '选择选项', + value: '', }, /** 每级展示的次标题 */ subTitles: { diff --git a/packages/products/tdesign-miniprogram/packages/components/cascader/type.ts b/packages/products/tdesign-miniprogram/packages/components/cascader/type.ts index 27ef49224..2fa8e0c62 100644 --- a/packages/products/tdesign-miniprogram/packages/components/cascader/type.ts +++ b/packages/products/tdesign-miniprogram/packages/components/cascader/type.ts @@ -39,8 +39,8 @@ export interface TdCascaderProps; }; /** - * 未选中时的提示文案 - * @default 选择选项 + * 未选中时的提示文案。组件内置默认值为:'选择选项' + * @default '' */ placeholder?: { type: StringConstructor; diff --git a/packages/products/tdesign-miniprogram/packages/components/config-provider/README.en-US.md b/packages/products/tdesign-miniprogram/packages/components/config-provider/README.en-US.md new file mode 100644 index 000000000..e1ed26f06 --- /dev/null +++ b/packages/products/tdesign-miniprogram/packages/components/config-provider/README.en-US.md @@ -0,0 +1,151 @@ +:: BASE_DOC :: + +## API + + +### ConfigProvider Props + +name | type | default | description | required +-- | -- | -- | -- | -- +style | Object | - | CSS(Cascading Style Sheets) | N +custom-style | Object | - | CSS(Cascading Style Sheets),used to set style on virtual component | N +global-config | Object | - | global config。Typescript: `GlobalConfigProvider` | N +theme-vars | Object | - | theme Variables | N + +### GlobalConfigProvider + +name | type | default | description | required +-- | -- | -- | -- | -- +action-sheet | Object | - | ActionSheet global configs。Typescript: `ActionSheetConfig` | N +calendar | Object | - | Calendar global configs。Typescript: `CalendarConfig` | N +cascader | Object | - | Cascader global configs。Typescript: `CascaderConfig` | N +class-prefix | String | t | \- | N +date-time-picker | Object | - | DateTimePicker global configs。Typescript: `DateTimePickerConfig` | N +dropdown-menu | Object | - | DropdownMenu global configs。Typescript: `DropdownMenuConfig` | N +guide | Object | - | Guide global configs。Typescript: `GuideConfig` | N +picker | Object | - | Picker global configs。Typescript: `PickerConfig` | N +pull-down-refresh | Object | - | PullDownRefresh global configs。Typescript: `PullDownRefreshConfig` | N +qrcode | Object | - | QRCode global configs。Typescript: `QRCodeConfig` | N +rate | Object | - | Rate global configs。Typescript: `RateConfig` | N +tab-bar | Object | - | TabBar global configs。Typescript: `TabBarConfig` | N +upload | Object | - | Upload global configs。Typescript: `UploadConfig` | N + +### ActionSheetConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +cancel | String | - | cancel text | N + +### CalendarConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +confirm | String | - | confirm text | N +month-title | String | - | \- | N +months | Array | - | Typescript: `string[]` | N +title | String | - | \- | N +weekdays | Array | - | Typescript: `string[]` | N + +### CascaderConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +placeholder | String | - | \- | N +title | String | - | \- | N + +### DateTimePickerConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +cancel | String | - | \- | N +confirm | String | - | \- | N +date-label | String | - | \- | N +format | String | 'YYYY-MM-DD HH:mm:ss' | \- | N +hour-label | String | - | \- | N +minute-label | String | - | \- | N +month-label | String | - | \- | N +second-label | String | - | \- | N +title | String | - | \- | N +year-label | String | - | \- | N + +### DropdownMenuConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +confirm | String | - | confirm text | N +reset | String | - | reset text | N + +### GuideConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +back | String | - | \- | N +finish | String | - | \- | N +next | String | - | \- | N +skip | String | - | \- | N + +### ImageConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +error-text | String | - | loading text, default value is "Error" | N +loading-text | String | - | loading text, default value is "loading" | N +replace-image-src | Function | - | replace all `src` attribute of images。Typescript: `(params: ImageProps) => string`,[Image API Documents](./image?tab=api)。[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/config-provider/type.ts) | N + +### InputConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +placeholder | String | - | \- | N + +### PickerConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +cancel | String | - | cancel text | N +confirm | String | - | confirm text | N + +### PullDownRefreshConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +loading-texts | Array | - | Typescript: `string[]` | N + +### QRCodeConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +expired-text | String | - | Language configuration, "QR code expired" description text | N +refresh-text | String | - | Language configuration, "QR code refresh" description text | N +scanned-text | String | - | Language configuration, "QR code scanned" description text | N + +### RateConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +no-value-text | String | - | \- | N +value-text | String | - | \- | N + +### TabBarConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +have-more-news-aria-label | String | - | \- | N +have-news-aria-label | String | - | \- | N +more-news-aria-label | String | - | \- | N +news-aria-label | String | - | \- | N + +### UploadConfig + +name | type | default | description | required +-- | -- | -- | -- | -- +progress | Object | - | Typescript: `UploadConfigProgress` | N + +### UploadConfigProgress + +name | type | default | description | required +-- | -- | -- | -- | -- +fail-text | String | - | \- | N +success-text | String | - | \- | N +uploading-text | String | - | \- | N +waiting-text | String | - | \- | N diff --git a/packages/products/tdesign-miniprogram/packages/components/config-provider/README.md b/packages/products/tdesign-miniprogram/packages/components/config-provider/README.md new file mode 100644 index 000000000..9216d271c --- /dev/null +++ b/packages/products/tdesign-miniprogram/packages/components/config-provider/README.md @@ -0,0 +1,151 @@ +:: BASE_DOC :: + +## API + + +### ConfigProvider Props + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +style | Object | - | 样式 | N +custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场景 | N +global-config | Object | - | 全局配置。TS 类型:`GlobalConfigProvider` | N +theme-vars | Object | - | 全局配置 | N + +### GlobalConfigProvider + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +action-sheet | Object | - | 动作面板全局配置。TS 类型:`ActionSheetConfig` | N +calendar | Object | - | 日历组件全局配置。TS 类型:`CalendarConfig` | N +cascader | Object | - | 级联选择器全局配置。TS 类型:`CascaderConfig` | N +class-prefix | String | t | CSS 类名前缀 | N +date-time-picker | Object | - | 时间选择器全局配置。TS 类型:`DateTimePickerConfig` | N +dropdown-menu | Object | - | 下拉菜单全局配置。TS 类型:`DropdownMenuConfig` | N +guide | Object | - | 引导全局配置。TS 类型:`GuideConfig` | N +picker | Object | - | 选择器全局配置。TS 类型:`PickerConfig` | N +pull-down-refresh | Object | - | 下拉刷新全局配置。TS 类型:`PullDownRefreshConfig` | N +qrcode | Object | - | 二维码全局配置。TS 类型:`QRCodeConfig` | N +rate | Object | - | 评分全局配置。TS 类型:`RateConfig` | N +tab-bar | Object | - | 标签栏全局配置。TS 类型:`TabBarConfig` | N +upload | Object | - | 上传组件全局配置。TS 类型:`UploadConfig` | N + +### ActionSheetConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +cancel | String | - | 语言配置,“取消” 按钮描述文本 | N + +### CalendarConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +confirm | String | - | 语言配置,“确定” 按钮描述文本 | N +month-title | String | - | 语言配置,日期月面板标题描述文本。示例:“{year} / {month}” | N +months | Array | - | 月文本描述,默认值:['1 月', '2 月', '3 月', '4 月', '5 月', '6 月', '7 月', '8 月', '9 月', '10 月', '11 月', '12 月']。TS 类型:`string[]` | N +title | String | - | 语言配置,组件标题“请选择日期”描述文本 | N +weekdays | Array | - | 星期文本描述,默认值:['日', '一', '二', '三', '四', '五', '六']。TS 类型:`string[]` | N + +### CascaderConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +placeholder | String | - | 语言配置,未选中时的提示文案“选择选项”描述文本 | N +title | String | - | 语言配置,组件标题“选择地址”描述文本 | N + +### DateTimePickerConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +cancel | String | - | 语言配置,“取消”按钮描述文本 | N +confirm | String | - | 语言配置,“确定”按钮描述文本 | N +date-label | String | - | 语言配置,“日” 描述文本 | N +format | String | 'YYYY-MM-DD HH:mm:ss' | 日期格式化规则 | N +hour-label | String | - | 语言配置,“时” 描述文本 | N +minute-label | String | - | 语言配置,“分” 描述文本 | N +month-label | String | - | 语言配置,“月” 描述文本 | N +second-label | String | - | 语言配置,“秒” 描述文本 | N +title | String | - | 语言配置,组件标题“选择时间”描述文本 | N +year-label | String | - | 语言配置,“年” 描述文本 | N + +### DropdownMenuConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +confirm | String | - | 语言配置,“确定” 按钮描述文本 | N +reset | String | - | 语言配置,“重置” 按钮描述文本 | N + +### GuideConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +back | String | - | 语言配置, “返回” 描述文本 | N +finish | String | - | 语言配置, “完成” 描述文本 | N +next | String | - | 语言配置, “下一步” 描述文本 | N +skip | String | - | 语言配置, “跳过” 描述文本 | N + +### ImageConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +error-text | String | - | 图片加载失败显示的文本,中文默认为“图片无法显示” | N +loading-text | String | - | 图片加载中显示的文本,中文默认为“图片加载中” | N +replace-image-src | Function | - | 统一替换图片 `src` 地址,参数为组件的全部属性,返回值为新的图片地址。TS 类型:`(params: ImageProps) => string`,[Image API Documents](./image?tab=api)。[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/config-provider/type.ts) | N + +### InputConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +placeholder | String | - | 语言配置,“请输入”占位符描述文本 | N + +### PickerConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +cancel | String | - | 语言配置,“取消” 按钮描述文本 | N +confirm | String | - | 语言配置,“确认” 按钮描述文本 | N + +### PullDownRefreshConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +loading-texts | Array | - | 提示文本描述,默认值:['下拉刷新', '松手刷新', '正在刷新', '刷新完成']。TS 类型:`string[]` | N + +### QRCodeConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +expired-text | String | - | 语言配置,“二维码过期”描述文本 | N +refresh-text | String | - | 语言配置,“点击刷新”描述文本 | N +scanned-text | String | - | 语言配置,“已扫描”描述文本 | N + +### RateConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +no-value-text | String | - | 语言配置,“未评分”描述文本 | N +value-text | String | - | 语言配置,评分值描述文本。示例:“{value} 分” | N + +### TabBarConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +have-more-news-aria-label | String | - | 语言配置,“有n+条新的消息”描述文本。示例:“有 {value}+ 条消息” | N +have-news-aria-label | String | - | 语言配置,“有n条新的消息”描述文本。示例:“有 {value} 条消息” | N +more-news-aria-label | String | - | 语言配置,“有很多消息”描述文本 | N +news-aria-label | String | - | 语言配置,“有新的消息”描述文本 | N + +### UploadConfig + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +progress | Object | - | 语言配置,上传进度相关。示例:{ uploadText: '上传中', waitingText: '待上传', 'failText': '上传失败', successText: '上传成功' }。TS 类型:`UploadConfigProgress` | N + +### UploadConfigProgress + +名称 | 类型 | 默认值 | 描述 | 必传 +-- | -- | -- | -- | -- +fail-text | String | - | 语言配置,“上传失败”文本描述 | N +success-text | String | - | 语言配置,“上传成功”文本描述 | N +uploading-text | String | - | 语言配置,“上传中”文本描述 | N +waiting-text | String | - | 语言配置,“待上传”文本描述 | N diff --git a/packages/products/tdesign-miniprogram/packages/components/config-provider/props.ts b/packages/products/tdesign-miniprogram/packages/components/config-provider/props.ts new file mode 100644 index 000000000..979d2fcc4 --- /dev/null +++ b/packages/products/tdesign-miniprogram/packages/components/config-provider/props.ts @@ -0,0 +1,19 @@ +/* eslint-disable */ + +/** + * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC + * */ + +import { TdConfigProviderProps } from './type'; +const props: TdConfigProviderProps = { + /** 全局配置 */ + globalConfig: { + type: Object, + }, + /** 全局配置 */ + themeVars: { + type: Object, + }, +}; + +export default props; diff --git a/packages/products/tdesign-miniprogram/packages/components/config-provider/type.ts b/packages/products/tdesign-miniprogram/packages/components/config-provider/type.ts new file mode 100644 index 000000000..e6517aa2f --- /dev/null +++ b/packages/products/tdesign-miniprogram/packages/components/config-provider/type.ts @@ -0,0 +1,345 @@ +/* eslint-disable */ + +/** + * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC + * */ + +import { ImageProps } from '../image/index'; + +export interface TdConfigProviderProps { + /** + * 全局配置 + */ + globalConfig?: { + type: ObjectConstructor; + value?: GlobalConfigProvider; + }; + /** + * 全局配置 + */ + themeVars?: { + type: ObjectConstructor; + value?: object; + }; +} + +export interface GlobalConfigProvider { + /** + * 动作面板全局配置 + */ + actionSheet?: ActionSheetConfig; + /** + * 日历组件全局配置 + */ + calendar?: CalendarConfig; + /** + * 级联选择器全局配置 + */ + cascader?: CascaderConfig; + /** + * CSS 类名前缀 + * @default t + */ + classPrefix?: string; + /** + * 时间选择器全局配置 + */ + dateTimePicker?: DateTimePickerConfig; + /** + * 下拉菜单全局配置 + */ + dropdownMenu?: DropdownMenuConfig; + /** + * 引导全局配置 + */ + guide?: GuideConfig; + /** + * 选择器全局配置 + */ + picker?: PickerConfig; + /** + * 下拉刷新全局配置 + */ + pullDownRefresh?: PullDownRefreshConfig; + /** + * 二维码全局配置 + */ + qrcode?: QRCodeConfig; + /** + * 评分全局配置 + */ + rate?: RateConfig; + /** + * 标签栏全局配置 + */ + tabBar?: TabBarConfig; + /** + * 上传组件全局配置 + */ + upload?: UploadConfig; +} + +export interface ActionSheetConfig { + /** + * 语言配置,“取消” 按钮描述文本 + * @default '' + */ + cancel?: string; +} + +export interface CalendarConfig { + /** + * 语言配置,“确定” 按钮描述文本 + * @default '' + */ + confirm?: string; + /** + * 语言配置,日期月面板标题描述文本。示例:“{year} / {month}” + * @default '' + */ + monthTitle?: string; + /** + * 月文本描述,默认值:['1 月', '2 月', '3 月', '4 月', '5 月', '6 月', '7 月', '8 月', '9 月', '10 月', '11 月', '12 月'] + */ + months?: string[]; + /** + * 语言配置,组件标题“请选择日期”描述文本 + * @default '' + */ + title?: string; + /** + * 星期文本描述,默认值:['日', '一', '二', '三', '四', '五', '六'] + */ + weekdays?: string[]; +} + +export interface CascaderConfig { + /** + * 语言配置,未选中时的提示文案“选择选项”描述文本 + * @default '' + */ + placeholder?: string; + /** + * 语言配置,组件标题“选择地址”描述文本 + * @default '' + */ + title?: string; +} + +export interface DateTimePickerConfig { + /** + * 语言配置,“取消”按钮描述文本 + * @default '' + */ + cancel?: string; + /** + * 语言配置,“确定”按钮描述文本 + * @default '' + */ + confirm?: string; + /** + * 语言配置,“日” 描述文本 + * @default '' + */ + dateLabel?: string; + /** + * 日期格式化规则 + * @default 'YYYY-MM-DD HH:mm:ss' + */ + format?: string; + /** + * 语言配置,“时” 描述文本 + * @default '' + */ + hourLabel?: string; + /** + * 语言配置,“分” 描述文本 + * @default '' + */ + minuteLabel?: string; + /** + * 语言配置,“月” 描述文本 + * @default '' + */ + monthLabel?: string; + /** + * 语言配置,“秒” 描述文本 + * @default '' + */ + secondLabel?: string; + /** + * 语言配置,组件标题“选择时间”描述文本 + * @default '' + */ + title?: string; + /** + * 语言配置,“年” 描述文本 + * @default '' + */ + yearLabel?: string; +} + +export interface DropdownMenuConfig { + /** + * 语言配置,“确定” 按钮描述文本 + * @default '' + */ + confirm?: string; + /** + * 语言配置,“重置” 按钮描述文本 + * @default '' + */ + reset?: string; +} + +export interface GuideConfig { + /** + * 语言配置, “返回” 描述文本 + * @default '' + */ + back?: string; + /** + * 语言配置, “完成” 描述文本 + * @default '' + */ + finish?: string; + /** + * 语言配置, “下一步” 描述文本 + * @default '' + */ + next?: string; + /** + * 语言配置, “跳过” 描述文本 + * @default '' + */ + skip?: string; +} + +export interface ImageConfig { + /** + * 图片加载失败显示的文本,中文默认为“图片无法显示” + * @default '' + */ + errorText?: string; + /** + * 图片加载中显示的文本,中文默认为“图片加载中” + * @default '' + */ + loadingText?: string; + /** + * 统一替换图片 `src` 地址,参数为组件的全部属性,返回值为新的图片地址 + */ + replaceImageSrc?: (params: ImageProps) => string; +} + +export interface InputConfig { + /** + * 语言配置,“请输入”占位符描述文本 + * @default '' + */ + placeholder?: string; +} + +export interface PickerConfig { + /** + * 语言配置,“取消” 按钮描述文本 + * @default '' + */ + cancel?: string; + /** + * 语言配置,“确认” 按钮描述文本 + * @default '' + */ + confirm?: string; +} + +export interface PullDownRefreshConfig { + /** + * 提示文本描述,默认值:['下拉刷新', '松手刷新', '正在刷新', '刷新完成'] + */ + loadingTexts?: string[]; +} + +export interface QRCodeConfig { + /** + * 语言配置,“二维码过期”描述文本 + * @default '' + */ + expiredText?: string; + /** + * 语言配置,“点击刷新”描述文本 + * @default '' + */ + refreshText?: string; + /** + * 语言配置,“已扫描”描述文本 + * @default '' + */ + scannedText?: string; +} + +export interface RateConfig { + /** + * 语言配置,“未评分”描述文本 + * @default '' + */ + noValueText?: string; + /** + * 语言配置,评分值描述文本。示例:“{value} 分” + * @default '' + */ + valueText?: string; +} + +export interface TabBarConfig { + /** + * 语言配置,“有n+条新的消息”描述文本。示例:“有 {value}+ 条消息” + * @default '' + */ + haveMoreNewsAriaLabel?: string; + /** + * 语言配置,“有n条新的消息”描述文本。示例:“有 {value} 条消息” + * @default '' + */ + haveNewsAriaLabel?: string; + /** + * 语言配置,“有很多消息”描述文本 + * @default '' + */ + moreNewsAriaLabel?: string; + /** + * 语言配置,“有新的消息”描述文本 + * @default '' + */ + newsAriaLabel?: string; +} + +export interface UploadConfig { + /** + * 语言配置,上传进度相关。示例:{ uploadText: '上传中', waitingText: '待上传', 'failText': '上传失败', successText: '上传成功' } + */ + progress?: UploadConfigProgress; +} + +export interface UploadConfigProgress { + /** + * 语言配置,“上传失败”文本描述 + * @default '' + */ + failText?: string; + /** + * 语言配置,“上传成功”文本描述 + * @default '' + */ + successText?: string; + /** + * 语言配置,“上传中”文本描述 + * @default '' + */ + uploadingText?: string; + /** + * 语言配置,“待上传”文本描述 + * @default '' + */ + waitingText?: string; +} diff --git a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.en-US.md b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.en-US.md index 2b939622a..c2f3993f9 100644 --- a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.en-US.md +++ b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.en-US.md @@ -11,7 +11,7 @@ custom-style | Object | - | CSS(Cascading Style Sheets),used to set style on v auto-close | Boolean | false | \- | N cancel-btn | String | 取消 | \- | N confirm-btn | String | - | \- | N -custom-locale | String | zh | \- | N +custom-locale | String | zh | `deprecated` | N end | String / Number | - | \- | N filter | Function | - | Typescript: `(type: TimeModeValues, columns: DateTimePickerColumn) => DateTimePickerColumn` `type DateTimePickerColumn = DateTimePickerColumnItem[]` `interface DateTimePickerColumnItem { label: string,value: string}`。[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/date-time-picker/type.ts) | N format | String | 'YYYY-MM-DD HH:mm:ss' | \- | N diff --git a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.md b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.md index 04e81399a..b7adb33eb 100644 --- a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.md +++ b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/README.md @@ -11,7 +11,7 @@ custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场 auto-close | Boolean | false | 自动关闭;在确认、取消、点击遮罩层自动关闭,不需要手动设置 visible | N cancel-btn | String | 取消 | 取消按钮文字 | N confirm-btn | String | - | 确定按钮文字 | N -custom-locale | String | zh | 组件国际化语言,目前支持: 简体中文(zh)、(tc)、英文(en)、日语(ja)、韩语(ko)、俄语(ru)等六种语言 | N +custom-locale | String | zh | 已废弃。 组件国际化语言,目前支持: 简体中文(zh)、(tc)、英文(en)、日语(ja)、韩语(ko)、俄语(ru)等六种语言 | N end | String / Number | - | 选择器的最大可选时间,默认为当前时间+10年 | N filter | Function | - | 列选项过滤函数,支持自定义列内容。(type 值可为: year, month, date, hour, minute, second)。TS 类型:`(type: TimeModeValues, columns: DateTimePickerColumn) => DateTimePickerColumn` `type DateTimePickerColumn = DateTimePickerColumnItem[]` `interface DateTimePickerColumnItem { label: string,value: string}`。[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/packages/components/date-time-picker/type.ts) | N format | String | 'YYYY-MM-DD HH:mm:ss' | 用于格式化 pick、change、confirm 事件返回的值,[详细文档](https://day.js.org/docs/en/display/format) | N diff --git a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/props.ts b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/props.ts index 43e07e56b..ffae8c3cf 100644 --- a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/props.ts +++ b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/props.ts @@ -21,11 +21,6 @@ const props: TdDateTimePickerProps = { type: String, value: '', }, - /** 组件国际化语言,目前支持: 简体中文(zh)、(tc)、英文(en)、日语(ja)、韩语(ko)、俄语(ru)等六种语言 */ - customLocale: { - type: String, - value: 'zh', - }, /** 选择器的最大可选时间,默认为当前时间+10年 */ end: { type: null, diff --git a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/type.ts b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/type.ts index 6a155dbf4..91e82eab2 100644 --- a/packages/products/tdesign-miniprogram/packages/components/date-time-picker/type.ts +++ b/packages/products/tdesign-miniprogram/packages/components/date-time-picker/type.ts @@ -31,14 +31,6 @@ export interface TdDateTimePickerProps { type: StringConstructor; value?: string; }; - /** - * 组件国际化语言,目前支持: 简体中文(zh)、(tc)、英文(en)、日语(ja)、韩语(ko)、俄语(ru)等六种语言 - * @default zh - */ - customLocale?: { - type: StringConstructor; - value?: string; - }; /** * 选择器的最大可选时间,默认为当前时间+10年 */ diff --git a/packages/scripts/api.json b/packages/scripts/api.json index 72a346490..5d476bc60 100644 --- a/packages/scripts/api.json +++ b/packages/scripts/api.json @@ -3324,7 +3324,8 @@ "id": 1741182503, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "ActionSheetConfig", "field_category": 1, @@ -3353,7 +3354,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -19037,7 +19039,8 @@ "id": 1741183085, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CalendarConfig", "field_category": 1, @@ -19066,7 +19069,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -19312,7 +19316,8 @@ "id": 1741183537, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CalendarConfig", "field_category": 1, @@ -19341,7 +19346,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -19351,7 +19357,8 @@ "id": 1741190561, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CalendarConfig", "field_category": 1, @@ -19380,7 +19387,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Array" @@ -19468,7 +19476,8 @@ "id": 1741183315, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CalendarConfig", "field_category": 1, @@ -19497,7 +19506,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -19585,7 +19595,8 @@ "id": 1741183385, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CalendarConfig", "field_category": 1, @@ -19614,7 +19625,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Array" @@ -22328,9 +22340,9 @@ "field_type": [ "1" ], - "field_default_value": "选择选项", + "field_default_value": "", "field_enum": "", - "field_desc_zh": "未选中时的提示文案", + "field_desc_zh": "未选中时的提示文案。组件内置默认值为:'选择选项'", "field_desc_en": null, "field_required": 0, "event_input": "", @@ -23971,7 +23983,8 @@ "id": 1741183832, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CascaderConfig", "field_category": 1, @@ -24000,7 +24013,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -24010,7 +24024,8 @@ "id": 1741183804, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "CascaderConfig", "field_category": 1, @@ -24039,7 +24054,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -28939,9 +28955,9 @@ "field_type": [ "1" ], - "field_default_value": "请输入消息...", + "field_default_value": "", "field_enum": "", - "field_desc_zh": "输入框默认文案", + "field_desc_zh": "输入框默认文案。组件内置默认值为:'请输入消息...'", "field_desc_en": null, "field_required": 0, "event_input": "", @@ -36969,7 +36985,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "ConfigProvider", "field_category": 1, @@ -37000,7 +37017,45 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" + ], + "field_type_text": [ + "Object" + ] + }, + { + "id": 1770278274, + "platform_framework": [ + "64" + ], + "component": "ConfigProvider", + "field_category": 1, + "field_name": "themeVars", + "field_type": [ + "8" + ], + "field_default_value": "", + "field_enum": "", + "field_desc_zh": "全局配置", + "field_desc_en": "theme Variables", + "field_required": 0, + "event_input": "", + "create_time": "2026-02-05 07:57:54", + "update_time": "2026-02-05 07:57:54", + "event_output": null, + "custom_field_type": null, + "syntactic_sugar": null, + "readonly": 1, + "html_attribute": 0, + "trigger_elements": "", + "deprecated": 0, + "version": "", + "test_description": null, + "support_default_value": 0, + "field_category_text": "Props", + "platform_framework_text": [ + "Miniprogram" ], "field_type_text": [ "Object" @@ -42650,7 +42705,7 @@ "readonly": 1, "html_attribute": 0, "trigger_elements": "", - "deprecated": 0, + "deprecated": 1, "version": "", "test_description": null, "support_default_value": 0, @@ -43829,7 +43884,8 @@ "id": 1741184344, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -43858,7 +43914,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -43868,7 +43925,8 @@ "id": 1741184367, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -43897,7 +43955,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -43907,7 +43966,8 @@ "id": 1741184498, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -43936,7 +43996,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -43946,7 +44007,8 @@ "id": 1741184408, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -43975,7 +44037,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -43985,7 +44048,8 @@ "id": 1741184520, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44014,7 +44078,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -44024,7 +44089,8 @@ "id": 1741184535, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44053,7 +44119,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -44063,7 +44130,8 @@ "id": 1741184463, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44092,7 +44160,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -44102,7 +44171,8 @@ "id": 1741184543, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44131,7 +44201,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -44141,7 +44212,8 @@ "id": 1741184308, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44170,7 +44242,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -44180,7 +44253,8 @@ "id": 1741184432, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DateTimePickerConfig", "field_category": 1, @@ -44209,7 +44283,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -54340,7 +54415,8 @@ "id": 1741184034, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DropdownMenuConfig", "field_category": 1, @@ -54369,7 +54445,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -54379,7 +54456,8 @@ "id": 1741184082, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "DropdownMenuConfig", "field_category": 1, @@ -54408,7 +54486,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -60975,7 +61054,8 @@ "id": 1741187123, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61004,7 +61084,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -61215,7 +61296,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61246,7 +61328,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -61258,7 +61341,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61289,7 +61373,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -61422,7 +61507,8 @@ "id": 1741187493, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61451,7 +61537,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -61578,7 +61665,8 @@ "id": 1741187326, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61607,7 +61695,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -61701,7 +61790,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -61732,7 +61822,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -62056,7 +62147,8 @@ "id": 1741187708, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -62085,7 +62177,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -62134,7 +62227,8 @@ "id": 1741187753, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -62163,7 +62257,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -62220,7 +62315,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -62251,7 +62347,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -62339,7 +62436,8 @@ "id": 1741187827, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -62368,7 +62466,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -62657,7 +62756,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "GlobalConfigProvider", "field_category": 1, @@ -62688,7 +62788,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -65286,7 +65387,8 @@ "id": 1741223709, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GuideConfig", "field_category": 1, @@ -65315,7 +65417,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -65325,7 +65428,8 @@ "id": 1741223681, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GuideConfig", "field_category": 1, @@ -65354,7 +65458,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -65403,7 +65508,8 @@ "id": 1741223638, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GuideConfig", "field_category": 1, @@ -65432,7 +65538,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -65520,7 +65627,8 @@ "id": 1741223667, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "GuideConfig", "field_category": 1, @@ -65549,7 +65657,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -89754,7 +89863,8 @@ "id": 1741185484, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "PickerConfig", "field_category": 1, @@ -89783,7 +89893,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -89793,7 +89904,8 @@ "id": 1741185505, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "PickerConfig", "field_category": 1, @@ -89822,7 +89934,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -102712,7 +102825,8 @@ "id": 1741186556, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "RateConfig", "field_category": 1, @@ -102741,7 +102855,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -102790,7 +102905,8 @@ "id": 1741186536, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "RateConfig", "field_category": 1, @@ -102819,7 +102935,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -121425,7 +121542,8 @@ "id": 1741186773, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "TabBarConfig", "field_category": 1, @@ -121454,7 +121572,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -121464,7 +121583,8 @@ "id": 1741186793, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "TabBarConfig", "field_category": 1, @@ -121493,7 +121613,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -121503,7 +121624,8 @@ "id": 1741186744, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "TabBarConfig", "field_category": 1, @@ -121532,7 +121654,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -121542,7 +121665,8 @@ "id": 1741186722, "platform_framework": [ "8", - "16" + "16", + "64" ], "component": "TabBarConfig", "field_category": 1, @@ -121571,7 +121695,8 @@ "field_category_text": "Props", "platform_framework_text": [ "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -148046,7 +148171,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "UploadConfig", "field_category": 1, @@ -148077,7 +148203,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "Object" @@ -148479,7 +148606,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "UploadConfigProgress", "field_category": 1, @@ -148510,7 +148638,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -148522,7 +148651,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "UploadConfigProgress", "field_category": 1, @@ -148553,7 +148683,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -148565,7 +148696,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "UploadConfigProgress", "field_category": 1, @@ -148596,7 +148728,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String" @@ -148608,7 +148741,8 @@ "1", "2", "8", - "16" + "16", + "64" ], "component": "UploadConfigProgress", "field_category": 1, @@ -148639,7 +148773,8 @@ "Vue(PC)", "React(PC)", "Vue(Mobile)", - "React(Mobile)" + "React(Mobile)", + "Miniprogram" ], "field_type_text": [ "String"