renusify 2.1.7 → 2.1.8

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 (222) hide show
  1. package/components/codeEditor/index.vue +9 -9
  2. package/components/codeEditor/run.vue +3 -3
  3. package/components/form/checkboxInput/index.vue +6 -2
  4. package/components/form/groupInput/index.vue +5 -2
  5. package/components/form/switchInput/index.vue +3 -1
  6. package/components/form/timeInput/range.vue +6 -6
  7. package/components/img/index.vue +1 -1
  8. package/components/message/index.vue +1 -1
  9. package/docs/.browserslistrc +4 -0
  10. package/docs/.editorconfig +5 -0
  11. package/docs/babel.config.js +3 -0
  12. package/docs/jsconfig.json +19 -0
  13. package/docs/package-lock.json +23358 -0
  14. package/docs/package.json +34 -0
  15. package/docs/public/404.jpg +0 -0
  16. package/docs/public/index.html +18 -0
  17. package/docs/public/logo.jpg +0 -0
  18. package/docs/public/manifest.json +23 -0
  19. package/docs/public/pwa/android-chrome-192x192.png +0 -0
  20. package/docs/public/pwa/android-chrome-256x256.png +0 -0
  21. package/docs/public/pwa/apple-touch-icon.png +0 -0
  22. package/docs/public/pwa/favicon-16x16.png +0 -0
  23. package/docs/public/pwa/favicon-32x32.png +0 -0
  24. package/docs/public/pwa/favicon.ico +0 -0
  25. package/docs/public/pwa/mstile-150x150.png +0 -0
  26. package/docs/public/pwa/safari-pinned-tab.svg +17 -0
  27. package/docs/public/robots.txt +2 -0
  28. package/docs/src/Index.vue +17 -0
  29. package/docs/src/components/buttomNextPage.vue +72 -0
  30. package/docs/src/components/sideBar.vue +141 -0
  31. package/docs/src/components/tableEvents.vue +36 -0
  32. package/docs/src/components/tableProps.vue +36 -0
  33. package/docs/src/components/treeElement.vue +21 -0
  34. package/docs/src/index.js +26 -0
  35. package/docs/src/layouts/renusify.vue +215 -0
  36. package/docs/src/plugins/axios.js +54 -0
  37. package/docs/src/registerServiceWorker.js +47 -0
  38. package/docs/src/router/index.js +43 -0
  39. package/docs/src/views/index/notFound/en.vue +36 -0
  40. package/docs/src/views/index/notFound/fa.vue +35 -0
  41. package/docs/src/views/index/notFound/index.vue +26 -0
  42. package/docs/src/views/index/pages.vue +50 -0
  43. package/docs/src/views/index/v1/component/app/en.vue +61 -0
  44. package/docs/src/views/index/v1/component/app/fa.vue +66 -0
  45. package/docs/src/views/index/v1/component/avatar/en.vue +184 -0
  46. package/docs/src/views/index/v1/component/avatar/fa.vue +208 -0
  47. package/docs/src/views/index/v1/component/bar/bottomNavigation/en.vue +181 -0
  48. package/docs/src/views/index/v1/component/bar/bottomNavigation/fa.vue +180 -0
  49. package/docs/src/views/index/v1/component/bar/bottomNavigationCircle/en.vue +100 -0
  50. package/docs/src/views/index/v1/component/bar/bottomNavigationCircle/fa.vue +98 -0
  51. package/docs/src/views/index/v1/component/bar/toolbar/en.vue +231 -0
  52. package/docs/src/views/index/v1/component/bar/toolbar/fa.vue +232 -0
  53. package/docs/src/views/index/v1/component/breadcrumbs/en.vue +84 -0
  54. package/docs/src/views/index/v1/component/breadcrumbs/fa.vue +86 -0
  55. package/docs/src/views/index/v1/component/button/btn/en.vue +282 -0
  56. package/docs/src/views/index/v1/component/button/btn/fa.vue +286 -0
  57. package/docs/src/views/index/v1/component/button/btn_confirm/en.vue +155 -0
  58. package/docs/src/views/index/v1/component/button/btn_confirm/fa.vue +154 -0
  59. package/docs/src/views/index/v1/component/button/btn_group/en.vue +118 -0
  60. package/docs/src/views/index/v1/component/button/btn_group/fa.vue +117 -0
  61. package/docs/src/views/index/v1/component/calendar/en.vue +286 -0
  62. package/docs/src/views/index/v1/component/calendar/fa.vue +274 -0
  63. package/docs/src/views/index/v1/component/card/en.vue +283 -0
  64. package/docs/src/views/index/v1/component/card/fa.vue +294 -0
  65. package/docs/src/views/index/v1/component/chart/en.vue +113 -0
  66. package/docs/src/views/index/v1/component/chart/fa.vue +113 -0
  67. package/docs/src/views/index/v1/component/chart/worldMap/en.vue +112 -0
  68. package/docs/src/views/index/v1/component/chart/worldMap/fa.vue +114 -0
  69. package/docs/src/views/index/v1/component/chat/en.vue +153 -0
  70. package/docs/src/views/index/v1/component/chat/fa.vue +153 -0
  71. package/docs/src/views/index/v1/component/chip/en.vue +341 -0
  72. package/docs/src/views/index/v1/component/chip/fa.vue +340 -0
  73. package/docs/src/views/index/v1/component/codeEditor/en.vue +84 -0
  74. package/docs/src/views/index/v1/component/codeEditor/fa.vue +83 -0
  75. package/docs/src/views/index/v1/component/confirm/en.vue +441 -0
  76. package/docs/src/views/index/v1/component/confirm/fa.vue +434 -0
  77. package/docs/src/views/index/v1/component/container/col/en.vue +68 -0
  78. package/docs/src/views/index/v1/component/container/col/fa.vue +67 -0
  79. package/docs/src/views/index/v1/component/container/divider/en.vue +133 -0
  80. package/docs/src/views/index/v1/component/container/divider/fa.vue +130 -0
  81. package/docs/src/views/index/v1/component/container/en.vue +136 -0
  82. package/docs/src/views/index/v1/component/container/fa.vue +135 -0
  83. package/docs/src/views/index/v1/component/container/row/en.vue +157 -0
  84. package/docs/src/views/index/v1/component/container/row/fa.vue +157 -0
  85. package/docs/src/views/index/v1/component/container/spacer/en.vue +40 -0
  86. package/docs/src/views/index/v1/component/container/spacer/fa.vue +38 -0
  87. package/docs/src/views/index/v1/component/content/en.vue +61 -0
  88. package/docs/src/views/index/v1/component/content/fa.vue +59 -0
  89. package/docs/src/views/index/v1/component/count_down/en.vue +111 -0
  90. package/docs/src/views/index/v1/component/count_down/fa.vue +116 -0
  91. package/docs/src/views/index/v1/component/cropper/en.vue +97 -0
  92. package/docs/src/views/index/v1/component/cropper/fa.vue +97 -0
  93. package/docs/src/views/index/v1/component/float/en.vue +220 -0
  94. package/docs/src/views/index/v1/component/float/fa.vue +222 -0
  95. package/docs/src/views/index/v1/component/form/address_input/en.vue +237 -0
  96. package/docs/src/views/index/v1/component/form/address_input/fa.vue +237 -0
  97. package/docs/src/views/index/v1/component/form/cam_input/en.vue +244 -0
  98. package/docs/src/views/index/v1/component/form/cam_input/fa.vue +247 -0
  99. package/docs/src/views/index/v1/component/form/check_input/en.vue +221 -0
  100. package/docs/src/views/index/v1/component/form/check_input/fa.vue +221 -0
  101. package/docs/src/views/index/v1/component/form/checkbox_input/en.vue +453 -0
  102. package/docs/src/views/index/v1/component/form/checkbox_input/fa.vue +453 -0
  103. package/docs/src/views/index/v1/component/form/color_input/en.vue +121 -0
  104. package/docs/src/views/index/v1/component/form/color_input/fa.vue +120 -0
  105. package/docs/src/views/index/v1/component/form/date_input/en.vue +242 -0
  106. package/docs/src/views/index/v1/component/form/date_input/fa.vue +242 -0
  107. package/docs/src/views/index/v1/component/form/file_input/en.vue +123 -0
  108. package/docs/src/views/index/v1/component/form/file_input/fa.vue +133 -0
  109. package/docs/src/views/index/v1/component/form/form/en.vue +120 -0
  110. package/docs/src/views/index/v1/component/form/form/fa.vue +111 -0
  111. package/docs/src/views/index/v1/component/form/group_input/en.vue +369 -0
  112. package/docs/src/views/index/v1/component/form/group_input/fa.vue +368 -0
  113. package/docs/src/views/index/v1/component/form/input/en.vue +586 -0
  114. package/docs/src/views/index/v1/component/form/input/fa.vue +589 -0
  115. package/docs/src/views/index/v1/component/form/json_input/en.vue +280 -0
  116. package/docs/src/views/index/v1/component/form/json_input/fa.vue +285 -0
  117. package/docs/src/views/index/v1/component/form/mask_input/en.vue +249 -0
  118. package/docs/src/views/index/v1/component/form/mask_input/fa.vue +247 -0
  119. package/docs/src/views/index/v1/component/form/number_input/en.vue +319 -0
  120. package/docs/src/views/index/v1/component/form/number_input/fa.vue +363 -0
  121. package/docs/src/views/index/v1/component/form/password_input/en.vue +351 -0
  122. package/docs/src/views/index/v1/component/form/password_input/fa.vue +352 -0
  123. package/docs/src/views/index/v1/component/form/radio_input/en.vue +251 -0
  124. package/docs/src/views/index/v1/component/form/radio_input/fa.vue +262 -0
  125. package/docs/src/views/index/v1/component/form/range_input/en.vue +302 -0
  126. package/docs/src/views/index/v1/component/form/range_input/fa.vue +310 -0
  127. package/docs/src/views/index/v1/component/form/rating_input/en.vue +318 -0
  128. package/docs/src/views/index/v1/component/form/rating_input/fa.vue +286 -0
  129. package/docs/src/views/index/v1/component/form/select_input/en.vue +293 -0
  130. package/docs/src/views/index/v1/component/form/select_input/fa.vue +297 -0
  131. package/docs/src/views/index/v1/component/form/switch_input/en.vue +138 -0
  132. package/docs/src/views/index/v1/component/form/switch_input/fa.vue +139 -0
  133. package/docs/src/views/index/v1/component/form/tel_input/en.vue +195 -0
  134. package/docs/src/views/index/v1/component/form/tel_input/fa.vue +194 -0
  135. package/docs/src/views/index/v1/component/form/text_area/en.vue +189 -0
  136. package/docs/src/views/index/v1/component/form/text_area/fa.vue +191 -0
  137. package/docs/src/views/index/v1/component/form/text_editor/en.vue +143 -0
  138. package/docs/src/views/index/v1/component/form/text_editor/fa.vue +143 -0
  139. package/docs/src/views/index/v1/component/form/text_editor/text_editor_preview/en.vue +72 -0
  140. package/docs/src/views/index/v1/component/form/text_editor/text_editor_preview/fa.vue +78 -0
  141. package/docs/src/views/index/v1/component/form/text_input/en.vue +146 -0
  142. package/docs/src/views/index/v1/component/form/text_input/fa.vue +149 -0
  143. package/docs/src/views/index/v1/component/form/time_input/en.vue +138 -0
  144. package/docs/src/views/index/v1/component/form/time_input/fa.vue +137 -0
  145. package/docs/src/views/index/v1/component/form/time_range_input/en.vue +115 -0
  146. package/docs/src/views/index/v1/component/form/time_range_input/fa.vue +113 -0
  147. package/docs/src/views/index/v1/component/form/unique_input/en.vue +107 -0
  148. package/docs/src/views/index/v1/component/form/unique_input/fa.vue +106 -0
  149. package/docs/src/views/index/v1/component/form/unit_input/en.vue +200 -0
  150. package/docs/src/views/index/v1/component/form/unit_input/fa.vue +203 -0
  151. package/docs/src/views/index/v1/component/form_creator/en.vue +181 -0
  152. package/docs/src/views/index/v1/component/form_creator/fa.vue +179 -0
  153. package/docs/src/views/index/v1/component/html2pdf/en.vue +215 -0
  154. package/docs/src/views/index/v1/component/html2pdf/fa.vue +226 -0
  155. package/docs/src/views/index/v1/component/html2pdf/html2pdf_page_break/en.vue +37 -0
  156. package/docs/src/views/index/v1/component/html2pdf/html2pdf_page_break/fa.vue +36 -0
  157. package/docs/src/views/index/v1/component/icon/en.vue +231 -0
  158. package/docs/src/views/index/v1/component/icon/fa.vue +230 -0
  159. package/docs/src/views/index/v1/component/img/en.vue +511 -0
  160. package/docs/src/views/index/v1/component/img/fa.vue +510 -0
  161. package/docs/src/views/index/v1/component/infinite/infinite_box/en.vue +107 -0
  162. package/docs/src/views/index/v1/component/infinite/infinite_box/fa.vue +106 -0
  163. package/docs/src/views/index/v1/component/infinite/infinite_div/en.vue +87 -0
  164. package/docs/src/views/index/v1/component/infinite/infinite_div/fa.vue +83 -0
  165. package/docs/src/views/index/v1/component/infinite/infinite_page/en.vue +76 -0
  166. package/docs/src/views/index/v1/component/infinite/infinite_page/fa.vue +76 -0
  167. package/docs/src/views/index/v1/component/list/en.vue +477 -0
  168. package/docs/src/views/index/v1/component/list/fa.vue +475 -0
  169. package/docs/src/views/index/v1/component/map/en.vue +243 -0
  170. package/docs/src/views/index/v1/component/map/fa.vue +256 -0
  171. package/docs/src/views/index/v1/component/map/map_route/en.vue +176 -0
  172. package/docs/src/views/index/v1/component/map/map_route/fa.vue +177 -0
  173. package/docs/src/views/index/v1/component/map/map_select/en.vue +85 -0
  174. package/docs/src/views/index/v1/component/map/map_select/fa.vue +87 -0
  175. package/docs/src/views/index/v1/component/menu/en.vue +160 -0
  176. package/docs/src/views/index/v1/component/menu/fa.vue +158 -0
  177. package/docs/src/views/index/v1/component/message/en.vue +135 -0
  178. package/docs/src/views/index/v1/component/message/fa.vue +134 -0
  179. package/docs/src/views/index/v1/component/meta/en.vue +74 -0
  180. package/docs/src/views/index/v1/component/meta/fa.vue +73 -0
  181. package/docs/src/views/index/v1/component/modal/en.vue +432 -0
  182. package/docs/src/views/index/v1/component/modal/fa.vue +433 -0
  183. package/docs/src/views/index/v1/component/notify/en.vue +116 -0
  184. package/docs/src/views/index/v1/component/notify/fa.vue +116 -0
  185. package/docs/src/views/index/v1/component/progress/progress_circle/en.vue +202 -0
  186. package/docs/src/views/index/v1/component/progress/progress_circle/fa.vue +201 -0
  187. package/docs/src/views/index/v1/component/progress/progress_line/en.vue +216 -0
  188. package/docs/src/views/index/v1/component/progress/progress_line/fa.vue +214 -0
  189. package/docs/src/views/index/v1/component/search_box/en.vue +185 -0
  190. package/docs/src/views/index/v1/component/search_box/fa.vue +178 -0
  191. package/docs/src/views/index/v1/component/slider/en.vue +428 -0
  192. package/docs/src/views/index/v1/component/slider/fa.vue +427 -0
  193. package/docs/src/views/index/v1/component/swiper/en.vue +291 -0
  194. package/docs/src/views/index/v1/component/swiper/fa.vue +289 -0
  195. package/docs/src/views/index/v1/component/table/en.vue +711 -0
  196. package/docs/src/views/index/v1/component/table/fa.vue +709 -0
  197. package/docs/src/views/index/v1/component/table/table_crud/en.vue +218 -0
  198. package/docs/src/views/index/v1/component/table/table_crud/fa.vue +219 -0
  199. package/docs/src/views/index/v1/component/tabs/en.vue +289 -0
  200. package/docs/src/views/index/v1/component/tabs/fa.vue +289 -0
  201. package/docs/src/views/index/v1/component/time_ago/en.vue +98 -0
  202. package/docs/src/views/index/v1/component/time_ago/fa.vue +102 -0
  203. package/docs/src/views/index/v1/component/timeline/en.vue +140 -0
  204. package/docs/src/views/index/v1/component/timeline/fa.vue +138 -0
  205. package/docs/src/views/index/v1/component/tour/en.vue +125 -0
  206. package/docs/src/views/index/v1/component/tour/fa.vue +129 -0
  207. package/docs/src/views/index/v1/component/tree/en.vue +213 -0
  208. package/docs/src/views/index/v1/component/tree/fa.vue +213 -0
  209. package/docs/src/views/index/v1/features/breakpoint/fa.vue +136 -0
  210. package/docs/src/views/index/v1/features/direction/fa.vue +57 -0
  211. package/docs/src/views/index/v1/features/internationalization/fa.vue +186 -0
  212. package/docs/src/views/index/v1/features/theme/fa.vue +148 -0
  213. package/docs/src/views/index/v1/getting_started/browserSupport/fa.vue +33 -0
  214. package/docs/src/views/index/v1/getting_started/installation/fa.vue +110 -0
  215. package/docs/src/views/index/v1/introduction/support/fa.vue +58 -0
  216. package/docs/src/views/index/v1/introduction/whyRenusify/fa.vue +49 -0
  217. package/docs/src/views/index/v1/menu/en.json +1040 -0
  218. package/docs/src/views/index/v1/menu/fa.json +1040 -0
  219. package/docs/src/views/index/v1/mixins/root/fa.vue +131 -0
  220. package/docs/vue.config.js +39 -0
  221. package/package.json +1 -1
  222. package/tools/helper.js +1 -1
@@ -0,0 +1,1040 @@
1
+ [
2
+ {
3
+ "name": "معرفی",
4
+ "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M21 4H3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M3 19V6h8v13H3m18 0h-8V6h8v13m-7-9.5h6V11h-6V9.5m0 2.5h6v1.5h-6V12m0 2.5h6V16h-6v-1.5Z\"/></svg>",
5
+ "childs": [
6
+ {
7
+ "name": "چرا رنوسیفای؟",
8
+ "to": {
9
+ "name": "pages",
10
+ "params": {
11
+ "lang": "fa",
12
+ "version": "v1",
13
+ "path": "introduction-whyRenusify"
14
+ }
15
+ }
16
+ },
17
+ {
18
+ "name": "پشتیبانی",
19
+ "to": {
20
+ "name": "pages",
21
+ "params": {
22
+ "lang": "fa",
23
+ "version": "v1",
24
+ "path": "introduction-support"
25
+ }
26
+ }
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "name": "شروع کار",
32
+ "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M12 12q-.425 0-.713-.288T11 11V3q0-.425.288-.713T12 2q.425 0 .713.288T13 3v8q0 .425-.288.713T12 12Zm0 9q-1.875 0-3.513-.713t-2.85-1.924q-1.212-1.213-1.924-2.85T3 12q0-1.525.5-2.963T4.95 6.4q.275-.35.7-.338t.75.338q.275.275.25.675t-.275.75Q5.7 8.725 5.35 9.8T5 12q0 2.925 2.038 4.963T12 19q2.925 0 4.963-2.038T19 12q0-1.15-.338-2.238T17.6 7.775q-.25-.325-.275-.713t.25-.662q.3-.3.725-.313t.7.313q.975 1.2 1.488 2.625T21 12q0 1.875-.713 3.513t-1.924 2.85q-1.213 1.212-2.85 1.925T12 21Z\"/></svg>",
33
+ "childs": [
34
+ {
35
+ "name": "نصب",
36
+ "to": {
37
+ "name": "pages",
38
+ "params": {
39
+ "lang": "fa",
40
+ "version": "v1",
41
+ "path": "getting_started-installation"
42
+ }
43
+ }
44
+ },
45
+ {
46
+ "name": "مرورگرها",
47
+ "to": {
48
+ "name": "pages",
49
+ "params": {
50
+ "lang": "fa",
51
+ "version": "v1",
52
+ "path": "getting_started-browserSupport"
53
+ }
54
+ }
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "name": "امکانات",
60
+ "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M13 9V3h8v6h-8ZM3 13V3h8v10H3Zm10 8V11h8v10h-8ZM3 21v-6h8v6H3Z\"/></svg>",
61
+ "childs": [
62
+ {
63
+ "name": "جهت ها",
64
+ "to": {
65
+ "name": "pages",
66
+ "params": {
67
+ "lang": "fa",
68
+ "version": "v1",
69
+ "path": "features-direction"
70
+ }
71
+ }
72
+ },
73
+ {
74
+ "name": "نقاط شکست",
75
+ "to": {
76
+ "name": "pages",
77
+ "params": {
78
+ "lang": "fa",
79
+ "version": "v1",
80
+ "path": "features-breakpoint"
81
+ }
82
+ }
83
+ },
84
+ {
85
+ "name": "بین المللی",
86
+ "to": {
87
+ "name": "pages",
88
+ "params": {
89
+ "lang": "fa",
90
+ "version": "v1",
91
+ "path": "features-internationalization"
92
+ }
93
+ }
94
+ },
95
+ {
96
+ "name": "تم",
97
+ "to": {
98
+ "name": "pages",
99
+ "params": {
100
+ "lang": "fa",
101
+ "version": "v1",
102
+ "path": "features-theme"
103
+ }
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "name": "کمپوننت",
110
+ "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 2048 2048\"><path fill=\"currentColor\" d=\"M1024 1024h768v896H128V256h896v768zM256 384v640h640V384H256zm640 1408v-640H256v640h640zm768 0v-640h-640v640h640zM1280 0h768v768h-768V0zm640 640V128h-512v512h512z\"/></svg>",
111
+ "childs": [
112
+ {
113
+ "name": "app",
114
+ "to": {
115
+ "name": "pages",
116
+ "params": {
117
+ "lang": "fa",
118
+ "version": "v1",
119
+ "path": "component-app"
120
+ }
121
+ }
122
+ },
123
+ {
124
+ "name": "avatar",
125
+ "to": {
126
+ "name": "pages",
127
+ "params": {
128
+ "lang": "fa",
129
+ "version": "v1",
130
+ "path": "component-avatar"
131
+ }
132
+ }
133
+ },
134
+ {
135
+ "name": "bar",
136
+ "childs": [
137
+ {
138
+ "name": "bottom navigation",
139
+ "to": {
140
+ "name": "pages",
141
+ "params": {
142
+ "lang": "fa",
143
+ "version": "v1",
144
+ "path": "component-bar-bottomNavigation"
145
+ }
146
+ }
147
+ },
148
+ {
149
+ "name": "bottom navigation circle",
150
+ "to": {
151
+ "name": "pages",
152
+ "params": {
153
+ "lang": "fa",
154
+ "version": "v1",
155
+ "path": "component-bar-bottomNavigationCircle"
156
+ }
157
+ }
158
+ },
159
+ {
160
+ "name": "toolbar",
161
+ "to": {
162
+ "name": "pages",
163
+ "params": {
164
+ "lang": "fa",
165
+ "version": "v1",
166
+ "path": "component-bar-toolbar"
167
+ }
168
+ }
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "name": "breadcrumbs",
174
+ "to": {
175
+ "name": "pages",
176
+ "params": {
177
+ "lang": "fa",
178
+ "version": "v1",
179
+ "path": "component-breadcrumbs"
180
+ }
181
+ }
182
+ },
183
+ {
184
+ "name": "button",
185
+ "childs": [
186
+ {
187
+ "name": "btn",
188
+ "to": {
189
+ "name": "pages",
190
+ "params": {
191
+ "lang": "fa",
192
+ "version": "v1",
193
+ "path": "component-button-btn"
194
+ }
195
+ }
196
+ },
197
+ {
198
+ "name": "btn confirm",
199
+ "to": {
200
+ "name": "pages",
201
+ "params": {
202
+ "lang": "fa",
203
+ "version": "v1",
204
+ "path": "component-button-btn_confirm"
205
+ }
206
+ }
207
+ },
208
+ {
209
+ "name": "btn group",
210
+ "to": {
211
+ "name": "pages",
212
+ "params": {
213
+ "lang": "fa",
214
+ "version": "v1",
215
+ "path": "component-button-btn_group"
216
+ }
217
+ }
218
+ }
219
+ ]
220
+ },
221
+ {
222
+ "name": "calendar",
223
+ "to": {
224
+ "name": "pages",
225
+ "params": {
226
+ "lang": "fa",
227
+ "version": "v1",
228
+ "path": "component-calendar"
229
+ }
230
+ }
231
+ },
232
+ {
233
+ "name": "card",
234
+ "to": {
235
+ "name": "pages",
236
+ "params": {
237
+ "lang": "fa",
238
+ "version": "v1",
239
+ "path": "component-card"
240
+ }
241
+ }
242
+ },
243
+ {
244
+ "name": "chart",
245
+ "to": {
246
+ "name": "pages",
247
+ "params": {
248
+ "lang": "fa",
249
+ "version": "v1",
250
+ "path": "component-chart"
251
+ }
252
+ }
253
+ },
254
+ {
255
+ "name": "world Map",
256
+ "to": {
257
+ "name": "pages",
258
+ "params": {
259
+ "lang": "fa",
260
+ "version": "v1",
261
+ "path": "component-chart-worldMap"
262
+ }
263
+ }
264
+ },
265
+ {
266
+ "name": "chat",
267
+ "to": {
268
+ "name": "pages",
269
+ "params": {
270
+ "lang": "fa",
271
+ "version": "v1",
272
+ "path": "component-chat"
273
+ }
274
+ }
275
+ },
276
+ {
277
+ "name": "chip",
278
+ "to": {
279
+ "name": "pages",
280
+ "params": {
281
+ "lang": "fa",
282
+ "version": "v1",
283
+ "path": "component-chip"
284
+ }
285
+ }
286
+ },
287
+ {
288
+ "name": "code editor",
289
+ "to": {
290
+ "name": "pages",
291
+ "params": {
292
+ "lang": "fa",
293
+ "version": "v1",
294
+ "path": "component-codeEditor"
295
+ }
296
+ }
297
+ },
298
+ {
299
+ "name": "confirm",
300
+ "to": {
301
+ "name": "pages",
302
+ "params": {
303
+ "lang": "fa",
304
+ "version": "v1",
305
+ "path": "component-confirm"
306
+ }
307
+ }
308
+ },
309
+ {
310
+ "name": "grid",
311
+ "childs": [
312
+ {
313
+ "name": "container",
314
+ "to": {
315
+ "name": "pages",
316
+ "params": {
317
+ "lang": "fa",
318
+ "version": "v1",
319
+ "path": "component-container"
320
+ }
321
+ }
322
+ },
323
+ {
324
+ "name": "row",
325
+ "to": {
326
+ "name": "pages",
327
+ "params": {
328
+ "lang": "fa",
329
+ "version": "v1",
330
+ "path": "component-container-row"
331
+ }
332
+ }
333
+ },
334
+ {
335
+ "name": "col",
336
+ "to": {
337
+ "name": "pages",
338
+ "params": {
339
+ "lang": "fa",
340
+ "version": "v1",
341
+ "path": "component-container-col"
342
+ }
343
+ }
344
+ },
345
+ {
346
+ "name": "divider",
347
+ "to": {
348
+ "name": "pages",
349
+ "params": {
350
+ "lang": "fa",
351
+ "version": "v1",
352
+ "path": "component-container-divider"
353
+ }
354
+ }
355
+ },
356
+ {
357
+ "name": "spacer",
358
+ "to": {
359
+ "name": "pages",
360
+ "params": {
361
+ "lang": "fa",
362
+ "version": "v1",
363
+ "path": "component-container-spacer"
364
+ }
365
+ }
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "name": "content",
371
+ "to": {
372
+ "name": "pages",
373
+ "params": {
374
+ "lang": "fa",
375
+ "version": "v1",
376
+ "path": "component-content"
377
+ }
378
+ }
379
+ },
380
+ {
381
+ "name": "count down",
382
+ "to": {
383
+ "name": "pages",
384
+ "params": {
385
+ "lang": "fa",
386
+ "version": "v1",
387
+ "path": "component-count_down"
388
+ }
389
+ }
390
+ },
391
+ {
392
+ "name": "cropper",
393
+ "to": {
394
+ "name": "pages",
395
+ "params": {
396
+ "lang": "fa",
397
+ "version": "v1",
398
+ "path": "component-cropper"
399
+ }
400
+ }
401
+ },
402
+ {
403
+ "name": "float",
404
+ "to": {
405
+ "name": "pages",
406
+ "params": {
407
+ "lang": "fa",
408
+ "version": "v1",
409
+ "path": "component-float"
410
+ }
411
+ }
412
+ },
413
+ {
414
+ "name": "form",
415
+ "childs": [
416
+ {
417
+ "name": "form",
418
+ "to": {
419
+ "name": "pages",
420
+ "params": {
421
+ "lang": "fa",
422
+ "version": "v1",
423
+ "path": "component-form-form"
424
+ }
425
+ }
426
+ },
427
+ {
428
+ "name": "address input",
429
+ "to": {
430
+ "name": "pages",
431
+ "params": {
432
+ "lang": "fa",
433
+ "version": "v1",
434
+ "path": "component-form-address_input"
435
+ }
436
+ }
437
+ },
438
+ {
439
+ "name": "camera input",
440
+ "to": {
441
+ "name": "pages",
442
+ "params": {
443
+ "lang": "fa",
444
+ "version": "v1",
445
+ "path": "component-form-cam_input"
446
+ }
447
+ }
448
+ },
449
+ {
450
+ "name": "checkbox input",
451
+ "to": {
452
+ "name": "pages",
453
+ "params": {
454
+ "lang": "fa",
455
+ "version": "v1",
456
+ "path": "component-form-checkbox_input"
457
+ }
458
+ }
459
+ },
460
+ {
461
+ "name": "check input",
462
+ "to": {
463
+ "name": "pages",
464
+ "params": {
465
+ "lang": "fa",
466
+ "version": "v1",
467
+ "path": "component-form-check_input"
468
+ }
469
+ }
470
+ },
471
+ {
472
+ "name": "color input",
473
+ "to": {
474
+ "name": "pages",
475
+ "params": {
476
+ "lang": "fa",
477
+ "version": "v1",
478
+ "path": "component-form-color_input"
479
+ }
480
+ }
481
+ },
482
+ {
483
+ "name": "date input",
484
+ "to": {
485
+ "name": "pages",
486
+ "params": {
487
+ "lang": "fa",
488
+ "version": "v1",
489
+ "path": "component-form-date_input"
490
+ }
491
+ }
492
+ },
493
+ {
494
+ "name": "file input",
495
+ "to": {
496
+ "name": "pages",
497
+ "params": {
498
+ "lang": "fa",
499
+ "version": "v1",
500
+ "path": "component-form-file_input"
501
+ }
502
+ }
503
+ },
504
+ {
505
+ "name": "group input",
506
+ "to": {
507
+ "name": "pages",
508
+ "params": {
509
+ "lang": "fa",
510
+ "version": "v1",
511
+ "path": "component-form-group_input"
512
+ }
513
+ }
514
+ },
515
+ {
516
+ "name": "input",
517
+ "to": {
518
+ "name": "pages",
519
+ "params": {
520
+ "lang": "fa",
521
+ "version": "v1",
522
+ "path": "component-form-input"
523
+ }
524
+ }
525
+ },
526
+ {
527
+ "name": "json input",
528
+ "to": {
529
+ "name": "pages",
530
+ "params": {
531
+ "lang": "fa",
532
+ "version": "v1",
533
+ "path": "component-form-json_input"
534
+ }
535
+ }
536
+ },
537
+ {
538
+ "name": "mask input",
539
+ "to": {
540
+ "name": "pages",
541
+ "params": {
542
+ "lang": "fa",
543
+ "version": "v1",
544
+ "path": "component-form-mask_input"
545
+ }
546
+ }
547
+ },
548
+ {
549
+ "name": "number input",
550
+ "to": {
551
+ "name": "pages",
552
+ "params": {
553
+ "lang": "fa",
554
+ "version": "v1",
555
+ "path": "component-form-number_input"
556
+ }
557
+ }
558
+ },
559
+ {
560
+ "name": "password input",
561
+ "to": {
562
+ "name": "pages",
563
+ "params": {
564
+ "lang": "fa",
565
+ "version": "v1",
566
+ "path": "component-form-password_input"
567
+ }
568
+ }
569
+ },
570
+ {
571
+ "name": "radio input",
572
+ "to": {
573
+ "name": "pages",
574
+ "params": {
575
+ "lang": "fa",
576
+ "version": "v1",
577
+ "path": "component-form-radio_input"
578
+ }
579
+ }
580
+ },
581
+ {
582
+ "name": "range input",
583
+ "to": {
584
+ "name": "pages",
585
+ "params": {
586
+ "lang": "fa",
587
+ "version": "v1",
588
+ "path": "component-form-range_input"
589
+ }
590
+ }
591
+ },
592
+ {
593
+ "name": "rating input",
594
+ "to": {
595
+ "name": "pages",
596
+ "params": {
597
+ "lang": "fa",
598
+ "version": "v1",
599
+ "path": "component-form-rating_input"
600
+ }
601
+ }
602
+ },
603
+ {
604
+ "name": "select input",
605
+ "to": {
606
+ "name": "pages",
607
+ "params": {
608
+ "lang": "fa",
609
+ "version": "v1",
610
+ "path": "component-form-select_input"
611
+ }
612
+ }
613
+ },
614
+ {
615
+ "name": "switch input",
616
+ "to": {
617
+ "name": "pages",
618
+ "params": {
619
+ "lang": "fa",
620
+ "version": "v1",
621
+ "path": "component-form-switch_input"
622
+ }
623
+ }
624
+ },
625
+ {
626
+ "name": "tel input",
627
+ "to": {
628
+ "name": "pages",
629
+ "params": {
630
+ "lang": "fa",
631
+ "version": "v1",
632
+ "path": "component-form-tel_input"
633
+ }
634
+ }
635
+ },
636
+ {
637
+ "name": "text area",
638
+ "to": {
639
+ "name": "pages",
640
+ "params": {
641
+ "lang": "fa",
642
+ "version": "v1",
643
+ "path": "component-form-text_area"
644
+ }
645
+ }
646
+ },
647
+ {
648
+ "name": "text editor",
649
+ "to": {
650
+ "name": "pages",
651
+ "params": {
652
+ "lang": "fa",
653
+ "version": "v1",
654
+ "path": "component-form-text_editor"
655
+ }
656
+ }
657
+ },
658
+ {
659
+ "name": "text editor preview",
660
+ "to": {
661
+ "name": "pages",
662
+ "params": {
663
+ "lang": "fa",
664
+ "version": "v1",
665
+ "path": "component-form-text_editor-text_editor_preview"
666
+ }
667
+ }
668
+ },
669
+ {
670
+ "name": "text input",
671
+ "to": {
672
+ "name": "pages",
673
+ "params": {
674
+ "lang": "fa",
675
+ "version": "v1",
676
+ "path": "component-form-text_input"
677
+ }
678
+ }
679
+ },
680
+ {
681
+ "name": "time input",
682
+ "to": {
683
+ "name": "pages",
684
+ "params": {
685
+ "lang": "fa",
686
+ "version": "v1",
687
+ "path": "component-form-time_input"
688
+ }
689
+ }
690
+ },
691
+ {
692
+ "name": "time range input",
693
+ "to": {
694
+ "name": "pages",
695
+ "params": {
696
+ "lang": "fa",
697
+ "version": "v1",
698
+ "path": "component-form-time_range_input"
699
+ }
700
+ }
701
+ },
702
+ {
703
+ "name": "unique input",
704
+ "to": {
705
+ "name": "pages",
706
+ "params": {
707
+ "lang": "fa",
708
+ "version": "v1",
709
+ "path": "component-form-unique_input"
710
+ }
711
+ }
712
+ },
713
+ {
714
+ "name": "unit input",
715
+ "to": {
716
+ "name": "pages",
717
+ "params": {
718
+ "lang": "fa",
719
+ "version": "v1",
720
+ "path": "component-form-unit_input"
721
+ }
722
+ }
723
+ }
724
+ ]
725
+ },
726
+ {
727
+ "name": "form creator",
728
+ "to": {
729
+ "name": "pages",
730
+ "params": {
731
+ "lang": "fa",
732
+ "version": "v1",
733
+ "path": "component-form_creator"
734
+ }
735
+ }
736
+ },
737
+ {
738
+ "name": "icon",
739
+ "to": {
740
+ "name": "pages",
741
+ "params": {
742
+ "lang": "fa",
743
+ "version": "v1",
744
+ "path": "component-icon"
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "img",
750
+ "to": {
751
+ "name": "pages",
752
+ "params": {
753
+ "lang": "fa",
754
+ "version": "v1",
755
+ "path": "component-img"
756
+ }
757
+ }
758
+ },
759
+ {
760
+ "name": "infinite",
761
+ "childs": [
762
+ {
763
+ "name": "infinite box",
764
+ "to": {
765
+ "name": "pages",
766
+ "params": {
767
+ "lang": "fa",
768
+ "version": "v1",
769
+ "path": "component-infinite-infinite_box"
770
+ }
771
+ }
772
+ },
773
+ {
774
+ "name": "infinite div",
775
+ "to": {
776
+ "name": "pages",
777
+ "params": {
778
+ "lang": "fa",
779
+ "version": "v1",
780
+ "path": "component-infinite-infinite_div"
781
+ }
782
+ }
783
+ },
784
+ {
785
+ "name": "infinite page",
786
+ "to": {
787
+ "name": "pages",
788
+ "params": {
789
+ "lang": "fa",
790
+ "version": "v1",
791
+ "path": "component-infinite-infinite_page"
792
+ }
793
+ }
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "name": "list",
799
+ "to": {
800
+ "name": "pages",
801
+ "params": {
802
+ "lang": "fa",
803
+ "version": "v1",
804
+ "path": "component-list"
805
+ }
806
+ }
807
+ },
808
+ {
809
+ "name": "map",
810
+ "childs": [
811
+ {
812
+ "name": "map",
813
+ "to": {
814
+ "name": "pages",
815
+ "params": {
816
+ "lang": "fa",
817
+ "version": "v1",
818
+ "path": "component-map"
819
+ }
820
+ }
821
+ },
822
+ {
823
+ "name": "map route",
824
+ "to": {
825
+ "name": "pages",
826
+ "params": {
827
+ "lang": "fa",
828
+ "version": "v1",
829
+ "path": "component-map-map_route"
830
+ }
831
+ }
832
+ },
833
+ {
834
+ "name": "map select",
835
+ "to": {
836
+ "name": "pages",
837
+ "params": {
838
+ "lang": "fa",
839
+ "version": "v1",
840
+ "path": "component-map-map_select"
841
+ }
842
+ }
843
+ }
844
+ ]
845
+ },
846
+ {
847
+ "name": "menu",
848
+ "to": {
849
+ "name": "pages",
850
+ "params": {
851
+ "lang": "fa",
852
+ "version": "v1",
853
+ "path": "component-menu"
854
+ }
855
+ }
856
+ },
857
+ {
858
+ "name": "message",
859
+ "to": {
860
+ "name": "pages",
861
+ "params": {
862
+ "lang": "fa",
863
+ "version": "v1",
864
+ "path": "component-message"
865
+ }
866
+ }
867
+ },
868
+ {
869
+ "name": "meta",
870
+ "to": {
871
+ "name": "pages",
872
+ "params": {
873
+ "lang": "fa",
874
+ "version": "v1",
875
+ "path": "component-meta"
876
+ }
877
+ }
878
+ },
879
+ {
880
+ "name": "modal",
881
+ "to": {
882
+ "name": "pages",
883
+ "params": {
884
+ "lang": "fa",
885
+ "version": "v1",
886
+ "path": "component-modal"
887
+ }
888
+ }
889
+ },
890
+ {
891
+ "name": "notify",
892
+ "to": {
893
+ "name": "pages",
894
+ "params": {
895
+ "lang": "fa",
896
+ "version": "v1",
897
+ "path": "component-notify"
898
+ }
899
+ }
900
+ },
901
+ {
902
+ "name": "progress",
903
+ "childs": [
904
+ {
905
+ "name": "progress circle",
906
+ "to": {
907
+ "name": "pages",
908
+ "params": {
909
+ "lang": "fa",
910
+ "version": "v1",
911
+ "path": "component-progress-progress_circle"
912
+ }
913
+ }
914
+ },
915
+ {
916
+ "name": "progress line",
917
+ "to": {
918
+ "name": "pages",
919
+ "params": {
920
+ "lang": "fa",
921
+ "version": "v1",
922
+ "path": "component-progress-progress_line"
923
+ }
924
+ }
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "name": "search box",
930
+ "to": {
931
+ "name": "pages",
932
+ "params": {
933
+ "lang": "fa",
934
+ "version": "v1",
935
+ "path": "component-search_box"
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "name": "slider",
941
+ "to": {
942
+ "name": "pages",
943
+ "params": {
944
+ "lang": "fa",
945
+ "version": "v1",
946
+ "path": "component-slider"
947
+ }
948
+ }
949
+ },
950
+ {
951
+ "name": "swiper",
952
+ "to": {
953
+ "name": "pages",
954
+ "params": {
955
+ "lang": "fa",
956
+ "version": "v1",
957
+ "path": "component-swiper"
958
+ }
959
+ }
960
+ },
961
+ {
962
+ "name": "table",
963
+ "to": {
964
+ "name": "pages",
965
+ "params": {
966
+ "lang": "fa",
967
+ "version": "v1",
968
+ "path": "component-table"
969
+ }
970
+ }
971
+ },
972
+ {
973
+ "name": "table crud",
974
+ "to": {
975
+ "name": "pages",
976
+ "params": {
977
+ "lang": "fa",
978
+ "version": "v1",
979
+ "path": "component-table-table_crud"
980
+ }
981
+ }
982
+ },
983
+ {
984
+ "name": "tabs",
985
+ "to": {
986
+ "name": "pages",
987
+ "params": {
988
+ "lang": "fa",
989
+ "version": "v1",
990
+ "path": "component-tabs"
991
+ }
992
+ }
993
+ },
994
+ {
995
+ "name": "timeline",
996
+ "to": {
997
+ "name": "pages",
998
+ "params": {
999
+ "lang": "fa",
1000
+ "version": "v1",
1001
+ "path": "component-timeline"
1002
+ }
1003
+ }
1004
+ },
1005
+ {
1006
+ "name": "time ago",
1007
+ "to": {
1008
+ "name": "pages",
1009
+ "params": {
1010
+ "lang": "fa",
1011
+ "version": "v1",
1012
+ "path": "component-time_ago"
1013
+ }
1014
+ }
1015
+ },
1016
+ {
1017
+ "name": "tour",
1018
+ "to": {
1019
+ "name": "pages",
1020
+ "params": {
1021
+ "lang": "fa",
1022
+ "version": "v1",
1023
+ "path": "component-tour"
1024
+ }
1025
+ }
1026
+ },
1027
+ {
1028
+ "name": "tree",
1029
+ "to": {
1030
+ "name": "pages",
1031
+ "params": {
1032
+ "lang": "fa",
1033
+ "version": "v1",
1034
+ "path": "component-tree"
1035
+ }
1036
+ }
1037
+ }
1038
+ ]
1039
+ }
1040
+ ]