@sdata/web-vue 3.13.0 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. package/dist/sd.css +167 -114
  2. package/dist/sd.min.css +2 -2
  3. package/es/_components/input-label/input-label.d.ts +2 -0
  4. package/es/_components/input-label/input-label.js +4 -2
  5. package/es/_components/input-label/style/index.css +2 -2
  6. package/es/_components/picker/style/index.scss +8 -2
  7. package/es/_components/resize-observer.js +1 -1
  8. package/es/_components/resize-trigger.vue_vue_type_script_setup_true_lang.js +13 -3
  9. package/es/_components/select-view/select-view.d.ts +2 -0
  10. package/es/_components/select-view/select-view.js +7 -1
  11. package/es/_components/select-view/style/index.css +5 -5
  12. package/es/_hooks/use-focus-trap.d.ts +10 -0
  13. package/es/_hooks/use-focus-trap.js +115 -0
  14. package/es/_utils/dom.js +1 -10
  15. package/es/_utils/keyboard.d.ts +4 -0
  16. package/es/_utils/keyboard.js +21 -2
  17. package/es/alert/alert.vue.d.ts +2 -2
  18. package/es/alert/alert.vue_vue_type_script_setup_true_lang.js +16 -4
  19. package/es/alert/index.d.ts +5 -5
  20. package/es/alert/style/index.css +1 -1
  21. package/es/alert/style/index.scss +1 -1
  22. package/es/anchor/anchor-link.vue_vue_type_script_setup_true_lang.js +3 -1
  23. package/es/anchor/anchor.vue_vue_type_script_setup_true_lang.js +6 -1
  24. package/es/anchor/style/index.css +1 -1
  25. package/es/anchor/style/index.scss +3 -1
  26. package/es/auto-complete/auto-complete.js +8 -0
  27. package/es/avatar/avatar.vue_vue_type_script_setup_true_lang.js +8 -2
  28. package/es/avatar/style/index.css +2 -2
  29. package/es/avatar/style/index.scss +2 -2
  30. package/es/back-top/back-top.vue_vue_type_script_setup_true_lang.js +8 -1
  31. package/es/back-top/style/index.css +1 -1
  32. package/es/back-top/style/index.scss +2 -1
  33. package/es/badge/badge.js +4 -1
  34. package/es/badge/style/index.css +3 -3
  35. package/es/badge/style/index.scss +3 -3
  36. package/es/basic-crud-table/basic-crud-modal.js +5 -0
  37. package/es/basic-crud-table/basic-crud-modal.vue.d.ts +264 -0
  38. package/es/basic-crud-table/basic-crud-modal.vue_vue_type_script_setup_true_lang.js +139 -0
  39. package/es/basic-crud-table/basic-crud-table.js +5 -0
  40. package/es/basic-crud-table/basic-crud-table.vue.d.ts +935 -0
  41. package/es/basic-crud-table/basic-crud-table.vue_vue_type_script_setup_true_lang.js +510 -0
  42. package/es/basic-crud-table/index.d.ts +2722 -0
  43. package/es/basic-crud-table/index.js +9 -0
  44. package/es/basic-crud-table/style/css.js +2 -0
  45. package/es/basic-crud-table/style/index.css +42 -0
  46. package/es/basic-crud-table/style/index.d.ts +2 -0
  47. package/es/basic-crud-table/style/index.js +2 -0
  48. package/es/basic-crud-table/style/index.scss +33 -0
  49. package/es/basic-crud-table/style/token.scss +8 -0
  50. package/es/basic-crud-table/types.d.ts +69 -0
  51. package/es/breadcrumb/breadcrumb-item.js +4 -2
  52. package/es/breadcrumb/breadcrumb.js +3 -0
  53. package/es/button/button.vue_vue_type_script_setup_true_lang.js +10 -5
  54. package/es/button/style/index.css +15 -6
  55. package/es/button/style/index.scss +25 -7
  56. package/es/calendar/components/event.vue_vue_type_script_setup_true_lang.js +1 -1
  57. package/es/calendar/components/headings-bar.vue_vue_type_script_setup_true_lang.js +1 -1
  58. package/es/calendar/style/event.scss +2 -2
  59. package/es/calendar/style/index.css +2 -2
  60. package/es/card/style/index.css +3 -3
  61. package/es/card/style/index.scss +3 -3
  62. package/es/carousel/carousel-arrow.vue.d.ts +4 -4
  63. package/es/carousel/carousel-arrow.vue_vue_type_script_setup_true_lang.js +25 -5
  64. package/es/carousel/carousel-indicator.vue_vue_type_script_setup_true_lang.js +25 -4
  65. package/es/carousel/carousel-item.vue_vue_type_script_setup_true_lang.js +11 -2
  66. package/es/carousel/carousel.js +20 -1
  67. package/es/carousel/style/index.css +1 -1
  68. package/es/carousel/style/index.scss +1 -1
  69. package/es/cascader/cascader-option.js +1 -1
  70. package/es/cascader/cascader.vue_vue_type_script_setup_true_lang.js +13 -4
  71. package/es/cascader/style/index.css +2 -2
  72. package/es/cascader/style/index.scss +3 -1
  73. package/es/checkbox/checkbox-group.js +4 -1
  74. package/es/checkbox/checkbox.d.ts +9 -0
  75. package/es/checkbox/checkbox.js +14 -0
  76. package/es/checkbox/index.d.ts +15 -0
  77. package/es/checkbox/style/index.css +1 -1
  78. package/es/checkbox/style/index.scss +1 -1
  79. package/es/collapse/collapse-item.js +21 -3
  80. package/es/collapse/context.d.ts +1 -1
  81. package/es/color-picker/color-picker.js +6 -0
  82. package/es/color-picker/panel.js +5 -3
  83. package/es/components.d.ts +1 -0
  84. package/es/copy/copy.vue_vue_type_script_setup_true_lang.js +11 -3
  85. package/es/date-picker/hooks/use-provide-datepicker-transform.js +1 -1
  86. package/es/date-picker/panels/body.vue_vue_type_script_setup_true_lang.js +14 -1
  87. package/es/date-picker/panels/header.vue_vue_type_script_setup_true_lang.js +1 -1
  88. package/es/date-picker/picker.vue_vue_type_script_setup_true_lang.js +4 -3
  89. package/es/date-picker/range-picker.vue_vue_type_script_setup_true_lang.js +2 -2
  90. package/es/date-picker/style/index.css +5 -5
  91. package/es/date-picker/style/index.scss +4 -3
  92. package/es/drawer/drawer.vue.d.ts +1 -1
  93. package/es/drawer/drawer.vue_vue_type_script_setup_true_lang.js +31 -9
  94. package/es/drawer/index.d.ts +3 -3
  95. package/es/dropdown/dropdown-button.vue_vue_type_script_setup_true_lang.js +1 -1
  96. package/es/dropdown/dropdown-option.vue_vue_type_script_setup_true_lang.js +5 -1
  97. package/es/dropdown/dropdown-panel.vue.d.ts +9 -0
  98. package/es/dropdown/dropdown-panel.vue_vue_type_script_setup_true_lang.js +76 -3
  99. package/es/dropdown/dropdown-submenu.vue_vue_type_script_setup_true_lang.js +6 -3
  100. package/es/dropdown/dropdown.vue_vue_type_script_setup_true_lang.js +4 -2
  101. package/es/dropdown/style/index.css +1 -1
  102. package/es/dropdown/style/index.scss +3 -1
  103. package/es/file-previewer/file-previewer.vue.d.ts +1 -1
  104. package/es/file-previewer/file-previewer.vue_vue_type_script_setup_true_lang.js +18 -10
  105. package/es/file-previewer/index.d.ts +3 -3
  106. package/es/form/context.d.ts +1 -0
  107. package/es/form/form-item.vue_vue_type_script_setup_true_lang.js +7 -3
  108. package/es/form/index.js +1 -1
  109. package/es/form/style/index.css +2 -2
  110. package/es/form/style/index.scss +2 -2
  111. package/es/grid/grid-col.vue_vue_type_script_setup_true_lang.js +1 -1
  112. package/es/grid/grid-item.vue_vue_type_script_setup_true_lang.js +1 -1
  113. package/es/grid/grid-row.vue_vue_type_script_setup_true_lang.js +1 -1
  114. package/es/grid/grid.vue_vue_type_script_setup_true_lang.js +1 -1
  115. package/es/image/image.vue_vue_type_script_setup_true_lang.js +1 -1
  116. package/es/image/preview-arrow.vue_vue_type_script_setup_true_lang.js +1 -1
  117. package/es/image/preview.vue.d.ts +1 -1
  118. package/es/image/preview.vue_vue_type_script_setup_true_lang.js +2 -2
  119. package/es/index.css +167 -114
  120. package/es/index.d.ts +2 -0
  121. package/es/index.js +55 -54
  122. package/es/index.scss +1 -0
  123. package/es/input/input.js +18 -2
  124. package/es/input/style/index.css +2 -2
  125. package/es/input/style/input.scss +4 -4
  126. package/es/input-number/input-number.js +9 -3
  127. package/es/input-number/style/index.css +3 -3
  128. package/es/input-number/style/index.scss +5 -1
  129. package/es/input-tag/index.d.ts +3 -0
  130. package/es/input-tag/input-tag.d.ts +2 -0
  131. package/es/input-tag/input-tag.js +34 -30
  132. package/es/input-tag/style/index.css +8 -8
  133. package/es/input-tag/style/index.scss +11 -5
  134. package/es/json-form/style/index.css +0 -3
  135. package/es/json-form/style/index.scss +4 -3
  136. package/es/json-form/utils.js +4 -4
  137. package/es/layout/sider.vue_vue_type_script_setup_true_lang.js +34 -7
  138. package/es/layout/style/index.css +2 -2
  139. package/es/layout/style/index.scss +4 -2
  140. package/es/link/link.vue_vue_type_script_setup_true_lang.js +1 -1
  141. package/es/link/style/index.css +1 -1
  142. package/es/link/style/index.scss +3 -1
  143. package/es/list/list.js +1 -1
  144. package/es/locale/interface.d.ts +39 -0
  145. package/es/locale/lang/ar-eg.js +38 -0
  146. package/es/locale/lang/de-de.js +38 -0
  147. package/es/locale/lang/en-us.js +38 -0
  148. package/es/locale/lang/es-es.js +38 -0
  149. package/es/locale/lang/fr-fr.js +38 -0
  150. package/es/locale/lang/id-id.js +38 -0
  151. package/es/locale/lang/it-it.js +38 -0
  152. package/es/locale/lang/ja-jp.js +38 -0
  153. package/es/locale/lang/km-kh.js +38 -0
  154. package/es/locale/lang/ko-kr.js +38 -0
  155. package/es/locale/lang/ms-my.js +38 -0
  156. package/es/locale/lang/nl-nl.js +38 -0
  157. package/es/locale/lang/pt-pt.js +38 -0
  158. package/es/locale/lang/ru-ru.js +38 -0
  159. package/es/locale/lang/th-th.js +38 -0
  160. package/es/locale/lang/vi-vn.js +38 -0
  161. package/es/locale/lang/zh-cn.js +38 -0
  162. package/es/locale/lang/zh-tw.js +38 -0
  163. package/es/mention/mention.js +8 -0
  164. package/es/menu/base-menu.vue_vue_type_script_setup_true_lang.js +29 -3
  165. package/es/menu/item.d.ts +1 -1
  166. package/es/menu/item.js +14 -1
  167. package/es/menu/style/index.css +6 -6
  168. package/es/menu/style/index.scss +5 -3
  169. package/es/message/style/index.css +3 -3
  170. package/es/message/style/index.scss +5 -3
  171. package/es/modal/index.d.ts +3 -3
  172. package/es/modal/modal.vue.d.ts +1 -1
  173. package/es/modal/modal.vue_vue_type_script_setup_true_lang.js +31 -15
  174. package/es/modal/style/index.css +2 -2
  175. package/es/modal/style/index.scss +3 -2
  176. package/es/notification/style/index.css +3 -3
  177. package/es/notification/style/index.scss +11 -3
  178. package/es/overflow-list/overflow-list.js +1 -1
  179. package/es/page-header/page-header.vue.d.ts +6 -6
  180. package/es/page-header/page-header.vue_vue_type_script_setup_true_lang.js +19 -2
  181. package/es/pagination/page-item-ellipsis.vue_vue_type_script_setup_true_lang.js +15 -2
  182. package/es/pagination/page-item-step.vue.d.ts +2 -2
  183. package/es/pagination/page-item-step.vue_vue_type_script_setup_true_lang.js +23 -4
  184. package/es/pagination/page-item.vue.d.ts +2 -2
  185. package/es/pagination/page-item.vue_vue_type_script_setup_true_lang.js +21 -3
  186. package/es/pagination/pagination.js +5 -1
  187. package/es/pagination/style/index.css +6 -1
  188. package/es/pagination/style/index.scss +9 -3
  189. package/es/popconfirm/popconfirm.vue_vue_type_script_setup_true_lang.js +3 -1
  190. package/es/popover/popover.vue_vue_type_script_setup_true_lang.js +2 -0
  191. package/es/progress/style/index.css +2 -2
  192. package/es/progress/style/index.scss +5 -3
  193. package/es/qr-code/qr-code-status.vue_vue_type_script_setup_true_lang.js +5 -1
  194. package/es/qr-code/qr-code.vue_vue_type_script_setup_true_lang.js +13 -6
  195. package/es/radio/context.d.ts +1 -0
  196. package/es/radio/radio-group.js +6 -2
  197. package/es/radio/radio.js +1 -0
  198. package/es/radio/style/index.css +2 -2
  199. package/es/radio/style/index.scss +4 -2
  200. package/es/rate/rate.js +27 -1
  201. package/es/resize-box/resize-box.vue.d.ts +4 -4
  202. package/es/resize-box/resize-box.vue_vue_type_script_setup_true_lang.js +30 -1
  203. package/es/result/result.vue_vue_type_script_setup_true_lang.js +7 -4
  204. package/es/sd-vue.js +54 -52
  205. package/es/secret/secret.vue_vue_type_script_setup_true_lang.js +3 -1
  206. package/es/select/index.d.ts +124 -0
  207. package/es/select/select-dropdown.vue_vue_type_script_setup_true_lang.js +4 -1
  208. package/es/select/select.d.ts +62 -0
  209. package/es/select/select.js +20 -4
  210. package/es/select/style/index.css +1 -1
  211. package/es/select/style/index.scss +3 -1
  212. package/es/selectable-card/style/index.css +2 -2
  213. package/es/selectable-card/style/index.scss +5 -5
  214. package/es/skeleton/skeleton.vue_vue_type_script_setup_true_lang.js +5 -1
  215. package/es/slider/slider-button.vue.d.ts +2 -0
  216. package/es/slider/slider-button.vue_vue_type_script_setup_true_lang.js +7 -2
  217. package/es/slider/slider.vue_vue_type_script_setup_true_lang.js +23 -2
  218. package/es/slider/style/index.css +1 -1
  219. package/es/slider/style/index.scss +3 -1
  220. package/es/spin/spin.js +7 -2
  221. package/es/spin/style/index.css +1 -1
  222. package/es/spin/style/index.scss +1 -1
  223. package/es/split/split.vue.d.ts +4 -4
  224. package/es/split/split.vue_vue_type_script_setup_true_lang.js +27 -3
  225. package/es/statistic/statistic.vue_vue_type_script_setup_true_lang.js +1 -1
  226. package/es/steps/context.d.ts +1 -0
  227. package/es/steps/step.vue_vue_type_script_setup_true_lang.js +15 -2
  228. package/es/steps/steps.vue_vue_type_script_setup_true_lang.js +10 -2
  229. package/es/steps/style/index.css +1 -1
  230. package/es/steps/style/index.scss +1 -1
  231. package/es/style/animation/index.scss +1 -0
  232. package/es/style/animation/reduced-motion.scss +22 -0
  233. package/es/style/animation/zoom.scss +7 -6
  234. package/es/style/icon.scss +9 -1
  235. package/es/switch/style/index.css +1 -1
  236. package/es/switch/style/index.scss +4 -1
  237. package/es/switch/switch.vue_vue_type_script_setup_true_lang.js +6 -1
  238. package/es/table/index.d.ts +4 -4
  239. package/es/table/style/index.css +8 -8
  240. package/es/table/style/index.scss +11 -8
  241. package/es/table/table-operation-td.d.ts +15 -0
  242. package/es/table/table-operation-td.js +3 -3
  243. package/es/table/table-operation-th.js +1 -1
  244. package/es/table/table-tbody.js +4 -1
  245. package/es/table/table-td.js +2 -1
  246. package/es/table/table-th.d.ts +1 -1
  247. package/es/table/table-th.js +7 -5
  248. package/es/table/table-thead.js +4 -1
  249. package/es/table/table-tr.js +4 -1
  250. package/es/table/table.d.ts +1 -1
  251. package/es/table/table.js +8 -4
  252. package/es/tabs/context.d.ts +1 -0
  253. package/es/tabs/style/index.css +5 -5
  254. package/es/tabs/style/index.scss +7 -7
  255. package/es/tabs/tab-pane.vue_vue_type_script_setup_true_lang.js +21 -2
  256. package/es/tabs/tabs-button.js +1 -1
  257. package/es/tabs/tabs-nav.js +34 -1
  258. package/es/tabs/tabs-tab.vue_vue_type_script_setup_true_lang.js +27 -4
  259. package/es/tabs/tabs.js +4 -2
  260. package/es/tag/index.d.ts +5 -5
  261. package/es/tag/style/index.css +1 -1
  262. package/es/tag/style/index.scss +3 -1
  263. package/es/tag/tag.vue.d.ts +2 -2
  264. package/es/tag/tag.vue_vue_type_script_setup_true_lang.js +27 -4
  265. package/es/tag-group/tag-group.vue_vue_type_script_setup_true_lang.js +2 -2
  266. package/es/textarea/style/index.css +2 -2
  267. package/es/textarea/textarea.vue_vue_type_script_setup_true_lang.js +18 -3
  268. package/es/time-picker/time-column.vue_vue_type_script_setup_true_lang.js +11 -3
  269. package/es/time-picker/time-picker.vue_vue_type_script_setup_true_lang.js +6 -3
  270. package/es/toolbar/index.d.ts +3 -3
  271. package/es/toolbar/toolbar.vue.d.ts +2 -2
  272. package/es/toolbar/toolbar.vue_vue_type_script_setup_true_lang.js +5 -5
  273. package/es/tooltip/tooltip.vue_vue_type_script_setup_true_lang.js +1 -0
  274. package/es/transfer/style/index.css +1 -1
  275. package/es/transfer/style/index.scss +1 -1
  276. package/es/transfer/transfer-list-item.js +18 -2
  277. package/es/transfer/transfer.vue_vue_type_script_setup_true_lang.js +7 -5
  278. package/es/tree/base-node.vue_vue_type_script_setup_true_lang.js +28 -8
  279. package/es/tree/context.d.ts +2 -0
  280. package/es/tree/node-switcher.vue_vue_type_script_lang.js +1 -1
  281. package/es/tree/style/index.css +1 -1
  282. package/es/tree/style/index.scss +1 -1
  283. package/es/tree/tree.vue_vue_type_script_setup_true_lang.js +81 -2
  284. package/es/tree-select/tree-select.vue_vue_type_script_setup_true_lang.js +10 -1
  285. package/es/trigger/index.d.ts +45 -0
  286. package/es/trigger/trigger.d.ts +27 -0
  287. package/es/trigger/trigger.js +47 -5
  288. package/es/typography/edit-content.vue_vue_type_script_setup_true_lang.js +17 -8
  289. package/es/typography/operations.vue_vue_type_script_setup_true_lang.js +38 -6
  290. package/es/typography/style/index.css +2 -2
  291. package/es/typography/style/index.scss +2 -2
  292. package/es/upload/style/index.css +9 -9
  293. package/es/upload/style/index.scss +15 -9
  294. package/es/upload/upload-list-item.js +18 -5
  295. package/es/upload/upload-picture-item.js +27 -3
  296. package/es/verification-code/verification-code.js +8 -1
  297. package/json/vetur-attributes.json +15 -0
  298. package/json/vetur-tags.json +9 -2
  299. package/json/web-types.json +39 -1
  300. package/package.json +1 -1
@@ -22,7 +22,4 @@
22
22
  width: 100%;
23
23
  min-width: 0;
24
24
  border-radius: 4px;
25
- }
26
- .sd-json-form-control--inline {
27
- min-width: 0;
28
25
  }
@@ -15,7 +15,8 @@ $json-form-prefix-cls: string.unquote('#{theme.$prefix}-json-form');
15
15
  border-radius: $json-form-border-radius-control;
16
16
  }
17
17
 
18
- &-control--inline {
19
- min-width: 0;
20
- }
18
+ // 行内控件(switch / checkbox / radio / rate ...)保留组件自身的固有尺寸:
19
+ // 不要在这里设 min-width,否则会覆盖 switch 这类靠 min-width 撑开根元素
20
+ // (滑块绝对定位、无文档流内容)的控件,把它压成 0 宽度。min-width: 0 只留在
21
+ // 撑满型 &-control 上,用于在 flex 容器里收缩防溢出。
21
22
  }
@@ -3,21 +3,21 @@ import input_password_default from "../input/input-password.js";
3
3
  import input_search_default from "../input/input-search.js";
4
4
  import Input from "../input/index.js";
5
5
  import AutoComplete from "../auto-complete/index.js";
6
+ import InputNumber from "../input-number/index.js";
6
7
  import checkbox_group_default from "../checkbox/checkbox-group.js";
7
8
  import Checkbox from "../checkbox/index.js";
8
9
  import radio_group_default from "../radio/radio-group.js";
9
10
  import Radio from "../radio/index.js";
11
+ import grid_row_default from "../grid/grid-row.js";
12
+ import { JSON_FORM_COMPONENT_TYPES } from "./types.js";
10
13
  import InputTag from "../input-tag/index.js";
11
14
  import Cascader from "../cascader/index.js";
12
- import InputNumber from "../input-number/index.js";
13
- import Select from "../select/index.js";
14
15
  import range_picker_default from "../date-picker/range-picker.js";
15
16
  import DatePicker from "../date-picker/index.js";
16
- import grid_row_default from "../grid/grid-row.js";
17
- import { JSON_FORM_COMPONENT_TYPES } from "./types.js";
18
17
  import Textarea from "../textarea/index.js";
19
18
  import Mention from "../mention/index.js";
20
19
  import Rate from "../rate/index.js";
20
+ import Select from "../select/index.js";
21
21
  import Slider from "../slider/index.js";
22
22
  import Switch from "../switch/index.js";
23
23
  import TimePicker from "../time-picker/index.js";
@@ -1,16 +1,21 @@
1
1
  import { configProviderInjectionKey } from "../config-provider/context.js";
2
2
  import { _objectSpread2 } from "../_virtual/_@oxc-project_runtime@0.133.0/helpers/esm/objectSpread2.js";
3
3
  import { getPrefixCls } from "../_utils/global-config.js";
4
+ import { isActivationKey } from "../_utils/keyboard.js";
5
+ import { useI18n } from "../locale/index.js";
4
6
  import { useScrollbar } from "../_hooks/use-scrollbar.js";
5
7
  import Scrollbar from "../scrollbar/index.js";
8
+ import IconLeft from "../icon/icon-left/index.js";
6
9
  import IconRight from "../icon/icon-right/index.js";
7
10
  import { useThemeMode } from "../_hooks/use-theme-mode.js";
8
- import IconLeft from "../icon/icon-left/index.js";
9
11
  import Drawer from "../drawer/index.js";
10
12
  import { LayoutContextInjectionKey, SiderContextInjectionKey } from "./context.js";
11
13
  import IconMenu from "../icon/icon-menu/index.js";
12
14
  import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createVNode, defineComponent, inject, mergeProps, normalizeClass, normalizeStyle, onMounted, onUnmounted, openBlock, provide, reactive, ref, renderSlot, resolveDynamicComponent, toRef, unref, watch, withCtx } from "vue";
13
15
  //#region components/layout/sider.vue?vue&type=script&setup=true&lang.ts
16
+ var _hoisted_1 = ["aria-expanded", "aria-label"];
17
+ var _hoisted_2 = ["aria-expanded", "aria-label"];
18
+ var _hoisted_3 = ["aria-expanded", "aria-label"];
14
19
  var sider_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComponent(_objectSpread2(_objectSpread2({}, { name: "LayoutSider" }), {}, {
15
20
  __name: "sider",
16
21
  props: {
@@ -157,6 +162,7 @@ var sider_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComp
157
162
  };
158
163
  const props = __props;
159
164
  const emit = __emit;
165
+ const { t } = useI18n();
160
166
  const prefixCls = getPrefixCls("layout-sider");
161
167
  const dimensionMaxMap = {
162
168
  xs: "479.98px",
@@ -182,6 +188,12 @@ var sider_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComp
182
188
  const toggle = () => {
183
189
  handleSetCollapsed(!mergedCollapsed.value, "clickTrigger");
184
190
  };
191
+ const handleTriggerKeydown = (ev) => {
192
+ if (isActivationKey(ev)) {
193
+ ev.preventDefault();
194
+ toggle();
195
+ }
196
+ };
185
197
  const below = ref(false);
186
198
  const setupResponsive = () => {
187
199
  const { breakpoint } = props;
@@ -369,8 +381,13 @@ var sider_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComp
369
381
  }, 16, ["visible"]), renderTrigger.value ? (openBlock(), createElementBlock("span", {
370
382
  key: 0,
371
383
  class: normalizeClass(`${unref(prefixCls)}-temporary-trigger`),
372
- onClick: toggle
373
- }, [renderSlot(_ctx.$slots, "trigger", {}, () => [createVNode(unref(IconMenu))])], 2)) : createCommentVNode("", true)], 64)) : __props.rail ? (openBlock(), createElementBlock("div", {
384
+ role: "button",
385
+ tabindex: "0",
386
+ "aria-expanded": !mergedCollapsed.value,
387
+ "aria-label": unref(t)("a11y.toggleSidebar"),
388
+ onClick: toggle,
389
+ onKeydown: handleTriggerKeydown
390
+ }, [renderSlot(_ctx.$slots, "trigger", {}, () => [createVNode(unref(IconMenu))])], 42, _hoisted_1)) : createCommentVNode("", true)], 64)) : __props.rail ? (openBlock(), createElementBlock("div", {
374
391
  key: 1,
375
392
  class: normalizeClass(railOverlayCls.value),
376
393
  style: normalizeStyle(railOverlayStyle.value)
@@ -405,13 +422,23 @@ var sider_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComp
405
422
  key: 0,
406
423
  class: normalizeClass([`${unref(prefixCls)}-zero-width-trigger`, `${unref(prefixCls)}-zero-width-trigger-${__props.reverseArrow ? "right" : "left"}`]),
407
424
  style: normalizeStyle(__props.zeroWidthTriggerStyle),
408
- onClick: toggle
409
- }, [renderSlot(_ctx.$slots, "trigger", {}, () => [createVNode(unref(IconMenu))])], 6)) : (openBlock(), createElementBlock("div", {
425
+ role: "button",
426
+ tabindex: "0",
427
+ "aria-expanded": !mergedCollapsed.value,
428
+ "aria-label": unref(t)("a11y.toggleSidebar"),
429
+ onClick: toggle,
430
+ onKeydown: handleTriggerKeydown
431
+ }, [renderSlot(_ctx.$slots, "trigger", {}, () => [createVNode(unref(IconMenu))])], 46, _hoisted_2)) : (openBlock(), createElementBlock("div", {
410
432
  key: 1,
411
433
  class: normalizeClass(`${unref(prefixCls)}-trigger`),
412
434
  style: normalizeStyle({ width: siderWidth.value }),
413
- onClick: toggle
414
- }, [renderSlot(_ctx.$slots, "trigger", {}, () => [(openBlock(), createBlock(resolveDynamicComponent(defaultTriggerComponent.value)))])], 6))], 64)) : createCommentVNode("", true)
435
+ role: "button",
436
+ tabindex: "0",
437
+ "aria-expanded": !mergedCollapsed.value,
438
+ "aria-label": unref(t)("a11y.toggleSidebar"),
439
+ onClick: toggle,
440
+ onKeydown: handleTriggerKeydown
441
+ }, [renderSlot(_ctx.$slots, "trigger", {}, () => [(openBlock(), createBlock(resolveDynamicComponent(defaultTriggerComponent.value)))])], 46, _hoisted_3))], 64)) : createCommentVNode("", true)
415
442
  ], 64))], 38);
416
443
  };
417
444
  }
@@ -124,7 +124,7 @@
124
124
  line-height: 44px;
125
125
  text-align: center;
126
126
  cursor: pointer;
127
- transition: all 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
127
+ transition: color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1), background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
128
128
  }
129
129
  .sd-layout-sider-zero-width-trigger {
130
130
  position: absolute;
@@ -147,7 +147,7 @@
147
147
  position: absolute;
148
148
  inset: 0;
149
149
  background: transparent;
150
- transition: all 0.3s;
150
+ transition: background-color 0.3s ease;
151
151
  content: "";
152
152
  }
153
153
  .sd-layout-sider-zero-width-trigger:hover::after {
@@ -123,7 +123,9 @@ $text-color: var(string.unquote('#{theme.$sd-cssvars-prefix}-color-text-1'));
123
123
  line-height: $layout-sider-trigger-height;
124
124
  text-align: center;
125
125
  cursor: pointer;
126
- transition: all $layout-motion-duration-mid theme.$transition-timing-function-standard;
126
+ transition:
127
+ color $layout-motion-duration-mid theme.$transition-timing-function-standard,
128
+ background-color $layout-motion-duration-mid theme.$transition-timing-function-standard;
127
129
  }
128
130
 
129
131
  &-zero-width-trigger {
@@ -147,7 +149,7 @@ $text-color: var(string.unquote('#{theme.$sd-cssvars-prefix}-color-text-1'));
147
149
  position: absolute;
148
150
  inset: 0;
149
151
  background: transparent;
150
- transition: all $layout-motion-duration-slow;
152
+ transition: background-color $layout-motion-duration-slow ease;
151
153
  content: '';
152
154
  }
153
155
 
@@ -2,8 +2,8 @@ import { _objectSpread2 } from "../_virtual/_@oxc-project_runtime@0.133.0/helper
2
2
  import { getPrefixCls } from "../_utils/global-config.js";
3
3
  import IconLoading from "../icon/icon-loading/index.js";
4
4
  import Tooltip from "../tooltip/index.js";
5
- import { PerformantEllipsis } from "../ellipsis/index.js";
6
5
  import { hasPropOrSlot } from "../_utils/use-prop-or-slot.js";
6
+ import { PerformantEllipsis } from "../ellipsis/index.js";
7
7
  import IconLink from "../icon/icon-link/index.js";
8
8
  import { computed, createBlock, createCommentVNode, createElementBlock, createSlots, createVNode, defineComponent, normalizeClass, openBlock, renderSlot, unref, useSlots, withCtx } from "vue";
9
9
  //#region components/link/link.vue?vue&type=script&setup=true&lang.ts
@@ -27,7 +27,7 @@
27
27
  background-color: transparent;
28
28
  border-radius: var(--sd-border-radius-small);
29
29
  cursor: pointer;
30
- transition: all 0.1s cubic-bezier(0, 0, 1, 1);
30
+ transition: color 0.1s cubic-bezier(0.34, 0.69, 0.1, 1), background-color 0.1s cubic-bezier(0.34, 0.69, 0.1, 1);
31
31
  }
32
32
  .sd-link:hover {
33
33
  color: rgb(var(--sd-link-6));
@@ -17,7 +17,9 @@ $link-prefix-cls: string.unquote('#{theme.$prefix}-link');
17
17
  background-color: global.$color-transparent;
18
18
  border-radius: $link-border-radius;
19
19
  cursor: pointer;
20
- transition: all theme.$transition-duration-1 theme.$transition-timing-function-linear;
20
+ transition:
21
+ color theme.$transition-duration-1 theme.$transition-timing-function-standard,
22
+ background-color theme.$transition-duration-1 theme.$transition-timing-function-standard;
21
23
 
22
24
  &:hover {
23
25
  color: $link-color-text_hover;
package/es/list/list.js CHANGED
@@ -10,8 +10,8 @@ import { useScrollbar } from "../_hooks/use-scrollbar.js";
10
10
  import Scrollbar from "../scrollbar/index.js";
11
11
  import Spin from "../spin/index.js";
12
12
  import Empty from "../empty/index.js";
13
- import Grid from "../grid/index.js";
14
13
  import Pagination from "../pagination/index.js";
14
+ import Grid from "../grid/index.js";
15
15
  import { usePagination } from "./use-pagination.js";
16
16
  import { Fragment, computed, createVNode, defineComponent, inject, isVNode, mergeProps, onMounted, ref, toRefs } from "vue";
17
17
  //#region components/list/list.tsx
@@ -114,6 +114,44 @@ export interface ValidateMessage {
114
114
  false: string;
115
115
  };
116
116
  }
117
+ export interface SdA11yLang {
118
+ close: string;
119
+ back: string;
120
+ backToTop: string;
121
+ clear: string;
122
+ remove: string;
123
+ preview: string;
124
+ retryUpload: string;
125
+ increase: string;
126
+ decrease: string;
127
+ resize: string;
128
+ editText: string;
129
+ pagination: string;
130
+ breadcrumb: string;
131
+ breadcrumbEllipsis: string;
132
+ anchorNav: string;
133
+ carousel: string;
134
+ steps: string;
135
+ verificationCode: string;
136
+ rating: string;
137
+ toggleSidebar: string;
138
+ filePreview: string;
139
+ loading: string;
140
+ nextPage: string;
141
+ prevPage: string;
142
+ morePages: string;
143
+ prevSlide: string;
144
+ nextSlide: string;
145
+ moveSelectedRight: string;
146
+ moveSelectedLeft: string;
147
+ secretShow: string;
148
+ secretHide: string;
149
+ selectColor: string;
150
+ slideOf: string;
151
+ goToSlide: string;
152
+ characterOf: string;
153
+ qrCode: string;
154
+ }
117
155
  export interface SdLang {
118
156
  locale: string;
119
157
  readonlyTip?: string;
@@ -207,5 +245,6 @@ export interface SdLang {
207
245
  preset: string;
208
246
  empty: string;
209
247
  };
248
+ a11y: SdA11yLang;
210
249
  }
211
250
  export type SdI18nMessages = Record<string, SdLang>;
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "ألوان تاريخية",
197
197
  preset: "ألوان النظام المضبوطة مسبقاً",
198
198
  empty: "غير متوفرة"
199
+ },
200
+ a11y: {
201
+ close: "إغلاق",
202
+ back: "رجوع",
203
+ backToTop: "العودة للأعلى",
204
+ clear: "مسح",
205
+ remove: "إزالة",
206
+ preview: "معاينة",
207
+ retryUpload: "إعادة الرفع",
208
+ increase: "زيادة",
209
+ decrease: "إنقاص",
210
+ resize: "تغيير الحجم",
211
+ editText: "تحرير النص",
212
+ pagination: "ترقيم الصفحات",
213
+ breadcrumb: "مسار التنقل",
214
+ breadcrumbEllipsis: "المزيد من عناصر مسار التنقل",
215
+ anchorNav: "تنقل المراسي",
216
+ carousel: "كاروسيل",
217
+ steps: "الخطوات",
218
+ verificationCode: "رمز التحقق",
219
+ rating: "التقييم",
220
+ toggleSidebar: "تبديل الشريط الجانبي",
221
+ filePreview: "معاينة الملف",
222
+ loading: "جار التحميل",
223
+ nextPage: "الصفحة التالية",
224
+ prevPage: "الصفحة السابقة",
225
+ morePages: "المزيد من الصفحات",
226
+ prevSlide: "الشريحة السابقة",
227
+ nextSlide: "الشريحة التالية",
228
+ moveSelectedRight: "نقل المحدد إلى اليمين",
229
+ moveSelectedLeft: "نقل المحدد إلى اليسار",
230
+ secretShow: "إظهار المعلومات الحساسة",
231
+ secretHide: "إخفاء المعلومات الحساسة",
232
+ selectColor: "اختر اللون {0}",
233
+ slideOf: "الشريحة {0} من {1}",
234
+ goToSlide: "الانتقال إلى الشريحة {0}",
235
+ characterOf: "الحرف {0} من {1}",
236
+ qrCode: "رمز QR: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "Historische Farben",
197
197
  preset: "Standardfarbe des Systems",
198
198
  empty: "Noch keine"
199
+ },
200
+ a11y: {
201
+ close: "Schließen",
202
+ back: "Zurück",
203
+ backToTop: "Nach oben",
204
+ clear: "Leeren",
205
+ remove: "Entfernen",
206
+ preview: "Vorschau",
207
+ retryUpload: "Erneut hochladen",
208
+ increase: "Erhöhen",
209
+ decrease: "Verringern",
210
+ resize: "Größe ändern",
211
+ editText: "Text bearbeiten",
212
+ pagination: "Seitennavigation",
213
+ breadcrumb: "Brotkrümelnavigation",
214
+ breadcrumbEllipsis: "Weitere Brotkrümel",
215
+ anchorNav: "Anker-Navigation",
216
+ carousel: "Karussell",
217
+ steps: "Schritte",
218
+ verificationCode: "Bestätigungscode",
219
+ rating: "Bewertung",
220
+ toggleSidebar: "Seitenleiste umschalten",
221
+ filePreview: "Dateivorschau",
222
+ loading: "Laden",
223
+ nextPage: "Nächste Seite",
224
+ prevPage: "Vorherige Seite",
225
+ morePages: "Weitere Seiten",
226
+ prevSlide: "Vorherige Folie",
227
+ nextSlide: "Nächste Folie",
228
+ moveSelectedRight: "Auswahl nach rechts verschieben",
229
+ moveSelectedLeft: "Auswahl nach links verschieben",
230
+ secretShow: "Sensible Informationen anzeigen",
231
+ secretHide: "Sensible Informationen ausblenden",
232
+ selectColor: "Farbe auswählen {0}",
233
+ slideOf: "Folie {0} von {1}",
234
+ goToSlide: "Zu Folie {0}",
235
+ characterOf: "Zeichen {0} von {1}",
236
+ qrCode: "QR-Code: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -153,6 +153,44 @@ var lang = {
153
153
  history: "History Colors",
154
154
  preset: "Preset Colors",
155
155
  empty: "Empty"
156
+ },
157
+ a11y: {
158
+ close: "Close",
159
+ back: "Back",
160
+ backToTop: "Back to top",
161
+ clear: "Clear",
162
+ remove: "Remove",
163
+ preview: "Preview",
164
+ retryUpload: "Retry upload",
165
+ increase: "Increase",
166
+ decrease: "Decrease",
167
+ resize: "Resize",
168
+ editText: "Edit text",
169
+ pagination: "Pagination",
170
+ breadcrumb: "Breadcrumb",
171
+ breadcrumbEllipsis: "More breadcrumb items",
172
+ anchorNav: "Anchor navigation",
173
+ carousel: "Carousel",
174
+ steps: "Steps",
175
+ verificationCode: "Verification code",
176
+ rating: "Rating",
177
+ toggleSidebar: "Toggle sidebar",
178
+ filePreview: "File preview",
179
+ loading: "Loading",
180
+ nextPage: "Next page",
181
+ prevPage: "Previous page",
182
+ morePages: "More pages",
183
+ prevSlide: "Previous slide",
184
+ nextSlide: "Next slide",
185
+ moveSelectedRight: "Move selected right",
186
+ moveSelectedLeft: "Move selected left",
187
+ secretShow: "Show sensitive information",
188
+ secretHide: "Hide sensitive information",
189
+ selectColor: "Select color {0}",
190
+ slideOf: "Slide {0} of {1}",
191
+ goToSlide: "Go to slide {0}",
192
+ characterOf: "Character {0} of {1}",
193
+ qrCode: "QR code: {0}"
156
194
  }
157
195
  };
158
196
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "Colores históricos",
197
197
  preset: "Colores predefinidos del sistema",
198
198
  empty: "No hay datos"
199
+ },
200
+ a11y: {
201
+ close: "Cerrar",
202
+ back: "Volver",
203
+ backToTop: "Volver arriba",
204
+ clear: "Limpiar",
205
+ remove: "Eliminar",
206
+ preview: "Vista previa",
207
+ retryUpload: "Reintentar carga",
208
+ increase: "Aumentar",
209
+ decrease: "Disminuir",
210
+ resize: "Cambiar tamaño",
211
+ editText: "Editar texto",
212
+ pagination: "Paginación",
213
+ breadcrumb: "Migas de pan",
214
+ breadcrumbEllipsis: "Más elementos de migas de pan",
215
+ anchorNav: "Navegación de anclas",
216
+ carousel: "Carrusel",
217
+ steps: "Pasos",
218
+ verificationCode: "Código de verificación",
219
+ rating: "Calificación",
220
+ toggleSidebar: "Alternar barra lateral",
221
+ filePreview: "Vista previa de archivo",
222
+ loading: "Cargando",
223
+ nextPage: "Página siguiente",
224
+ prevPage: "Página anterior",
225
+ morePages: "Más páginas",
226
+ prevSlide: "Diapositiva anterior",
227
+ nextSlide: "Diapositiva siguiente",
228
+ moveSelectedRight: "Mover selección a la derecha",
229
+ moveSelectedLeft: "Mover selección a la izquierda",
230
+ secretShow: "Mostrar información confidencial",
231
+ secretHide: "Ocultar información confidencial",
232
+ selectColor: "Seleccionar color {0}",
233
+ slideOf: "Diapositiva {0} de {1}",
234
+ goToSlide: "Ir a la diapositiva {0}",
235
+ characterOf: "Carácter {0} de {1}",
236
+ qrCode: "Código QR: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "Couleurs historiques",
197
197
  preset: "Couleurs prédéfinies par le système",
198
198
  empty: "Aucune donnée"
199
+ },
200
+ a11y: {
201
+ close: "Fermer",
202
+ back: "Retour",
203
+ backToTop: "Haut de page",
204
+ clear: "Effacer",
205
+ remove: "Supprimer",
206
+ preview: "Aperçu",
207
+ retryUpload: "Réessayer le téléversement",
208
+ increase: "Augmenter",
209
+ decrease: "Diminuer",
210
+ resize: "Redimensionner",
211
+ editText: "Modifier le texte",
212
+ pagination: "Pagination",
213
+ breadcrumb: "Fil d'Ariane",
214
+ breadcrumbEllipsis: "Plus d'éléments du fil d'Ariane",
215
+ anchorNav: "Navigation d'ancrage",
216
+ carousel: "Carrousel",
217
+ steps: "Étapes",
218
+ verificationCode: "Code de vérification",
219
+ rating: "Évaluation",
220
+ toggleSidebar: "Basculer la barre latérale",
221
+ filePreview: "Aperçu du fichier",
222
+ loading: "Chargement",
223
+ nextPage: "Page suivante",
224
+ prevPage: "Page précédente",
225
+ morePages: "Plus de pages",
226
+ prevSlide: "Diapositive précédente",
227
+ nextSlide: "Diapositive suivante",
228
+ moveSelectedRight: "Déplacer la sélection vers la droite",
229
+ moveSelectedLeft: "Déplacer la sélection vers la gauche",
230
+ secretShow: "Afficher les informations sensibles",
231
+ secretHide: "Masquer les informations sensibles",
232
+ selectColor: "Sélectionner la couleur {0}",
233
+ slideOf: "Diapositive {0} sur {1}",
234
+ goToSlide: "Aller à la diapositive {0}",
235
+ characterOf: "Caractère {0} sur {1}",
236
+ qrCode: "Code QR : {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "Warna sejarah",
197
197
  preset: "Sistem preset warna",
198
198
  empty: "Tidak ada data"
199
+ },
200
+ a11y: {
201
+ close: "Tutup",
202
+ back: "Kembali",
203
+ backToTop: "Kembali ke atas",
204
+ clear: "Bersihkan",
205
+ remove: "Hapus",
206
+ preview: "Pratinjau",
207
+ retryUpload: "Unggah ulang",
208
+ increase: "Tambah",
209
+ decrease: "Kurangi",
210
+ resize: "Ubah ukuran",
211
+ editText: "Edit teks",
212
+ pagination: "Paginasi",
213
+ breadcrumb: "Breadcrumb",
214
+ breadcrumbEllipsis: "Lebih banyak item breadcrumb",
215
+ anchorNav: "Navigasi jangkar",
216
+ carousel: "Carousel",
217
+ steps: "Langkah",
218
+ verificationCode: "Kode verifikasi",
219
+ rating: "Rating",
220
+ toggleSidebar: "Alihkan bilah sisi",
221
+ filePreview: "Pratinjau berkas",
222
+ loading: "Memuat",
223
+ nextPage: "Halaman berikutnya",
224
+ prevPage: "Halaman sebelumnya",
225
+ morePages: "Halaman lainnya",
226
+ prevSlide: "Slide sebelumnya",
227
+ nextSlide: "Slide berikutnya",
228
+ moveSelectedRight: "Pindahkan terpilih ke kanan",
229
+ moveSelectedLeft: "Pindahkan terpilih ke kiri",
230
+ secretShow: "Tampilkan informasi sensitif",
231
+ secretHide: "Sembunyikan informasi sensitif",
232
+ selectColor: "Pilih warna {0}",
233
+ slideOf: "Slide {0} dari {1}",
234
+ goToSlide: "Ke slide {0}",
235
+ characterOf: "Karakter {0} dari {1}",
236
+ qrCode: "Kode QR: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "Colori storici",
197
197
  preset: "Colori preimpostati dal sistema",
198
198
  empty: "Nessun dato"
199
+ },
200
+ a11y: {
201
+ close: "Chiudi",
202
+ back: "Indietro",
203
+ backToTop: "Torna su",
204
+ clear: "Cancella",
205
+ remove: "Rimuovi",
206
+ preview: "Anteprima",
207
+ retryUpload: "Riprova caricamento",
208
+ increase: "Aumenta",
209
+ decrease: "Diminuisci",
210
+ resize: "Ridimensiona",
211
+ editText: "Modifica testo",
212
+ pagination: "Impaginazione",
213
+ breadcrumb: "Briciole di pane",
214
+ breadcrumbEllipsis: "Altri elementi briciole di pane",
215
+ anchorNav: "Navigazione ancora",
216
+ carousel: "Carosello",
217
+ steps: "Passaggi",
218
+ verificationCode: "Codice di verifica",
219
+ rating: "Valutazione",
220
+ toggleSidebar: "Attiva/disattiva barra laterale",
221
+ filePreview: "Anteprima file",
222
+ loading: "Caricamento",
223
+ nextPage: "Pagina successiva",
224
+ prevPage: "Pagina precedente",
225
+ morePages: "Altre pagine",
226
+ prevSlide: "Diapositiva precedente",
227
+ nextSlide: "Diapositiva successiva",
228
+ moveSelectedRight: "Sposta selezione a destra",
229
+ moveSelectedLeft: "Sposta selezione a sinistra",
230
+ secretShow: "Mostra informazioni sensibili",
231
+ secretHide: "Nascondi informazioni sensibili",
232
+ selectColor: "Seleziona colore {0}",
233
+ slideOf: "Diapositiva {0} di {1}",
234
+ goToSlide: "Vai alla diapositiva {0}",
235
+ characterOf: "Carattere {0} di {1}",
236
+ qrCode: "Codice QR: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion
@@ -196,6 +196,44 @@ var lang = {
196
196
  history: "最近使用した色",
197
197
  preset: "システムのデフォルトの色",
198
198
  empty: "空の"
199
+ },
200
+ a11y: {
201
+ close: "閉じる",
202
+ back: "戻る",
203
+ backToTop: "トップへ戻る",
204
+ clear: "クリア",
205
+ remove: "削除",
206
+ preview: "プレビュー",
207
+ retryUpload: "再アップロード",
208
+ increase: "増やす",
209
+ decrease: "減らす",
210
+ resize: "サイズ変更",
211
+ editText: "テキストを編集",
212
+ pagination: "ページネーション",
213
+ breadcrumb: "パンくずリスト",
214
+ breadcrumbEllipsis: "省略されたパンくず項目",
215
+ anchorNav: "アンカーナビゲーション",
216
+ carousel: "カルーセル",
217
+ steps: "ステップ",
218
+ verificationCode: "認証コード",
219
+ rating: "評価",
220
+ toggleSidebar: "サイドバーを切り替え",
221
+ filePreview: "ファイルプレビュー",
222
+ loading: "読み込み中",
223
+ nextPage: "次のページ",
224
+ prevPage: "前のページ",
225
+ morePages: "さらにページ",
226
+ prevSlide: "前のスライド",
227
+ nextSlide: "次のスライド",
228
+ moveSelectedRight: "選択項目を右へ移動",
229
+ moveSelectedLeft: "選択項目を左へ移動",
230
+ secretShow: "機密情報を表示",
231
+ secretHide: "機密情報を非表示",
232
+ selectColor: "色を選択 {0}",
233
+ slideOf: "スライド {0} / {1}",
234
+ goToSlide: "スライド {0} へ移動",
235
+ characterOf: "文字 {0} / {1}",
236
+ qrCode: "QR コード: {0}"
199
237
  }
200
238
  };
201
239
  //#endregion