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,286 @@
1
+ <template>
2
+ <section>
3
+ <div class="color-white mb-2">
4
+ <h1 class="display-3 font-weight-light color-white ps-4 pb-1 pt-1 br-lg">
5
+ r-calendar
6
+ </h1>
7
+ <p class="font-weight-light ps-4 pb-1 py-4 br-lg">
8
+ The
9
+ <r-btn readonly size="small"> r-calendar</r-btn>
10
+ component is used to display information in a daily, weekly, or monthly
11
+ format.
12
+ </p>
13
+ </div>
14
+
15
+ <table-props :items="props"></table-props>
16
+ <table-events :items="events" class="mt-5"></table-events>
17
+ </section>
18
+
19
+ <section class="mt-10">
20
+ <p class="caption">Press run Button</p>
21
+ <r-code-editor
22
+ runnable
23
+ script='data(){
24
+ return {
25
+ "lang": null,
26
+ "readonly": false,
27
+ "showHeaders": true,
28
+ "isDateDisabled": () => {return false},
29
+ "year": null,
30
+ "month": null
31
+ }
32
+ },
33
+ methods:{
34
+ log(name,e){
35
+ console.log(name,e)
36
+ }
37
+ }'
38
+ template='<r-calendar :lang="lang" :readonly="readonly" :show-Headers="showHeaders" :is-Date-Disabled="isDateDisabled" :year="year" :month="month" @change="log(`change`,$event)" @select="log(`select`,$event)" ></r-calendar>'
39
+ ></r-code-editor>
40
+ </section>
41
+ <div class="color-white mb-2">
42
+ <p class="font-weight-light ps-4 pb-1 py-4 br-lg">
43
+ This is an example of calendar with content in each interval slot and a
44
+ type of month
45
+ </p>
46
+ </div>
47
+ <section class="mt-10">
48
+ <p class="caption">Press run Button</p>
49
+ <r-code-editor
50
+ runnable
51
+ template='<r-calendar :year="2020" :month="7" ></r-calendar>'
52
+ ></r-code-editor>
53
+ </section>
54
+ <br/>
55
+ <br/>
56
+ <section class="pa-3 color-white">
57
+ <section>
58
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-1 br-sm">
59
+ EVENT / <span>SELECT</span>
60
+ </h1>
61
+ <div>
62
+ <p class="title ps-4 pt-1 pb-1 br-sm">
63
+ تاریخ و ساعت را دقیق به شما نشان می دهد.
64
+ </p>
65
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
66
+ {{ d }}
67
+ </h1>
68
+ </div>
69
+ <r-calendar @select="d = $event"></r-calendar>
70
+ </section>
71
+ <p class="caption">Press run Button</p>
72
+ <r-code-editor
73
+ runnable
74
+ script="data(){
75
+ return {
76
+ d:null
77
+ }
78
+ }"
79
+ template='
80
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
81
+ {{ d }}
82
+ </h1>
83
+ <r-calendar @select="d = $event"></r-calendar>'
84
+ ></r-code-editor>
85
+ </section>
86
+ <br/>
87
+ <br/>
88
+ <section class="pa-3 color-white">
89
+ <section>
90
+ <p class="title ps-4 pt-1 pb-1 br-sm">
91
+ تاریخ و ساعت کلیک شده را به شما نشان می دهد.
92
+ </p>
93
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
94
+ {{ $d(new Date(d)) }}
95
+ </h1>
96
+ <r-calendar @select="d = $event"></r-calendar>
97
+ </section>
98
+ <p class="caption">Press run Button</p>
99
+ <r-code-editor
100
+ runnable
101
+ script="data(){
102
+ return {
103
+ d:null
104
+ }
105
+ }"
106
+ template='
107
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
108
+ {{ $d(new Date(d)) }}
109
+ </h1>
110
+ <r-calendar @select="d = $event"></r-calendar>'
111
+ ></r-code-editor>
112
+ </section>
113
+ <br/>
114
+ <br/>
115
+ <section class="pa-3 color-white">
116
+ <section>
117
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-1 br-sm">
118
+ EVENT / <span>CHANGE</span>
119
+ </h1>
120
+ <p class="subtitle-2 ps-4 pt-1 pb-1 br-sm">
121
+ زمانی که کاربر بخواهد ماه را با کلیک های راست و چپ عوض کند فراخوانی می
122
+ شود و اطلاعات جدید را به کاربر می دهد.
123
+ </p>
124
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
125
+ {{ m }}
126
+ </h1>
127
+ <r-calendar @change="m = $event"></r-calendar>
128
+ </section>
129
+ <p class="caption">Press run Button</p>
130
+ <r-code-editor
131
+ runnable
132
+ script="data(){
133
+ return {
134
+ d:null
135
+ }
136
+ }"
137
+ template='
138
+ {{d}}
139
+ <r-calendar @change="d = $event"></r-calendar>'
140
+ ></r-code-editor>
141
+ </section>
142
+ <br/>
143
+ <br/>
144
+ <section class="pa-3 color-white">
145
+ <section>
146
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
147
+ PROP / <span>ShowHeaders</span>
148
+ </h1>
149
+ <p class="title ps-4 pt-1 pb-1 br-sm">هدر تقویت غیر فعال می شود.</p>
150
+
151
+ <r-calendar :showHeaders="false"></r-calendar>
152
+ </section>
153
+ <p class="caption">Press run Button</p>
154
+ <r-code-editor
155
+ runnable
156
+ template=' <r-calendar :showHeaders="false"></r-calendar>'
157
+ ></r-code-editor>
158
+ </section>
159
+ <br/>
160
+ <br/>
161
+ <section class="pa-3 color-white">
162
+ <section>
163
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
164
+ PROP / <span>Year or Month</span>
165
+ </h1>
166
+ <p class="title ps-4 pt-1 pb-1 br-sm">
167
+ تقویم مستقیم به آن سال یا ماه می رود .
168
+ </p>
169
+ <r-calendar :month="6" :year="2020"></r-calendar>
170
+ </section>
171
+ <p class="caption">Press run Button</p>
172
+ <r-code-editor
173
+ runnable
174
+ script="data(){
175
+ return {
176
+ }
177
+ }"
178
+ template=' <r-calendar :year="2020" :month="6"></r-calendar>'
179
+ ></r-code-editor>
180
+ </section>
181
+ <br/>
182
+ <br/>
183
+ <section class="pa-3 color-white">
184
+ <section>
185
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
186
+ PROP / <span>Readonly</span>
187
+ </h1>
188
+ <p class="title ps-4 pt-1 pb-1 br-sm">
189
+ حق کلیک کردن را از کاربر می گیرید.
190
+ </p>
191
+ <r-calendar readonly></r-calendar>
192
+ </section>
193
+ <p class="caption">Press run Button</p>
194
+ <r-code-editor
195
+ runnable
196
+ template="<r-calendar readonly></r-calendar>"
197
+ ></r-code-editor>
198
+ </section>
199
+ <br/>
200
+ <br/>
201
+ <section class="pa-3 color-white">
202
+ <section>
203
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
204
+ PROP / <span>IsDateDisabled</span>
205
+ </h1>
206
+ <p class="subtitle-1 ps-4 pt-1 pb-1 br-sm">
207
+ غیرفعال کردن روزهای خاصی از هفته را برای کاربر انجام می دهد.
208
+ </p>
209
+ {{ $d(new Date(d)) }}
210
+ <r-calendar :isDateDisabled="disable" @select="d = $event"></r-calendar>
211
+ </section>
212
+ <p class="caption">Press run Button</p>
213
+ <r-code-editor
214
+ runnable
215
+ script="
216
+ methods: {
217
+ disable(data) {
218
+ if (data.getDay() !== 1) {
219
+ return false;
220
+ }
221
+ return true;
222
+ },
223
+ }
224
+ "
225
+ template=' <r-calendar :isDateDisabled="disable"></r-calendar>'
226
+ ></r-code-editor>
227
+ </section>
228
+ <br/>
229
+ <br/>
230
+ </template>
231
+ <script>
232
+ export default {
233
+ name: "calendar",
234
+ data() {
235
+ return {
236
+ d: null,
237
+ m: null,
238
+ props: [
239
+ {
240
+ prop: "lang",
241
+ type: "String",
242
+ default: "undefined",
243
+ description: "Language",
244
+ },
245
+ {
246
+ prop: "readonly",
247
+ type: "Boolean",
248
+ default: "null",
249
+ description: "Read Only",
250
+ },
251
+ {
252
+ prop: "showHeaders",
253
+ type: "Boolean",
254
+ default: "true",
255
+ description: "Show Headers",
256
+ },
257
+ {
258
+ prop: "isDateDisabled",
259
+ type: "Function",
260
+ default: "() => false",
261
+ description: "Is Date Disabled",
262
+ },
263
+ {prop: "year", type: "Number", default: "null", description: "Year"},
264
+ {
265
+ prop: "month",
266
+ type: "Number",
267
+ default: "null",
268
+ description: "Month",
269
+ },
270
+ ],
271
+ events: [
272
+ {event: "change", description: ""},
273
+ {event: "select", description: ""},
274
+ ],
275
+ };
276
+ },
277
+ methods: {
278
+ disable(data) {
279
+ if (data.getDay() !== 1) {
280
+ return false;
281
+ }
282
+ return true;
283
+ },
284
+ },
285
+ };
286
+ </script>
@@ -0,0 +1,274 @@
1
+ <template>
2
+ <section>
3
+ <div class="color-white mb-2">
4
+ <h1 class="display-3 font-weight-light color-white ps-4 pb-1 pt-1 br-lg">
5
+ r-calendar
6
+ </h1>
7
+ <p class="font-weight-light ps-4 pb-1 py-4 br-lg">
8
+ کامپوننت
9
+ <r-btn readonly size="small"> r-calendar</r-btn>
10
+ برای نمایش اطلاعات به صورت روزانه، هفتگی یا ماهانه مورد استفاده قرار می
11
+ گیرد.
12
+ </p>
13
+ </div>
14
+ <table-props :items="props"></table-props>
15
+ <table-events :items="events" class="mt-5"></table-events>
16
+ </section>
17
+ <section class="mt-10">
18
+ <p class="caption">Press run Button</p>
19
+ <r-code-editor
20
+ runnable
21
+ script='data(){
22
+ return {
23
+ "lang": null,
24
+ "readonly": false,
25
+ "showHeaders": true,
26
+ "isDateDisabled": () => {return false},
27
+ "year": null,
28
+ "month": null
29
+ }
30
+ },
31
+ methods:{
32
+ log(name,e){
33
+ console.log(name,e)
34
+ }
35
+ }'
36
+ template='<r-calendar :lang="lang" :readonly="readonly" :show-Headers="showHeaders" :is-Date-Disabled="isDateDisabled" :year="year" :month="month" @change="log(`change`,$event)" @select="log(`select`,$event)" ></r-calendar>'
37
+ ></r-code-editor>
38
+ </section>
39
+ <br/>
40
+ <br/>
41
+ <section class="pa-3 color-white">
42
+ <section>
43
+ <r-calendar></r-calendar>
44
+ </section>
45
+ <p class="caption">Press run Button</p>
46
+ <r-code-editor
47
+ runnable
48
+ template="<r-calendar> </r-calendar>"
49
+ ></r-code-editor>
50
+ </section>
51
+ <br/>
52
+ <br/>
53
+ <section class="pa-3 color-white">
54
+ <section>
55
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-1 br-sm">
56
+ EVENT / <span>SELECT</span>
57
+ </h1>
58
+ <div>
59
+ <p class="title ps-4 pt-1 pb-1 br-sm">
60
+ تاریخ و ساعت را دقیق به شما نشان می دهد.
61
+ </p>
62
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
63
+ {{ d }}
64
+ </h1>
65
+ </div>
66
+ <r-calendar @select="d = $event"></r-calendar>
67
+ </section>
68
+ <p class="caption">Press run Button</p>
69
+ <r-code-editor
70
+ runnable
71
+ script="data(){
72
+ return {
73
+ d:null
74
+ }
75
+ }"
76
+ template='
77
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
78
+ {{ d }}
79
+ </h1>
80
+ <r-calendar @select="d = $event"></r-calendar>'
81
+ ></r-code-editor>
82
+ </section>
83
+ <br/>
84
+ <br/>
85
+ <section class="pa-3 color-white">
86
+ <section>
87
+ <p class="title ps-4 pt-1 pb-1 br-sm">
88
+ تاریخ و ساعت کلیک شده را به شما نشان می دهد.
89
+ </p>
90
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
91
+ {{ $d(new Date(d)) }}
92
+ </h1>
93
+ <r-calendar @select="d = $event"></r-calendar>
94
+ </section>
95
+ <p class="caption">Press run Button</p>
96
+ <r-code-editor
97
+ runnable
98
+ script="data(){
99
+ return {
100
+ d:null
101
+ }
102
+ }"
103
+ template='
104
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
105
+ {{ $d(new Date(d)) }}
106
+ </h1>
107
+ <r-calendar @select="d = $event"></r-calendar>'
108
+ ></r-code-editor>
109
+ </section>
110
+ <br/>
111
+ <br/>
112
+ <section class="pa-3 color-white">
113
+ <section>
114
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-1 br-sm">
115
+ EVENT / <span>CHANGE</span>
116
+ </h1>
117
+ <p class="subtitle-2 ps-4 pt-1 pb-1 br-sm">
118
+ زمانی که کاربر بخواهد ماه را با کلیک های راست و چپ عوض کند فراخوانی می
119
+ شود و اطلاعات جدید را به کاربر می دهد.
120
+ </p>
121
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
122
+ {{ m }}
123
+ </h1>
124
+ <r-calendar @change="m = $event"></r-calendar>
125
+ </section>
126
+ <p class="caption">Press run Button</p>
127
+ <r-code-editor
128
+ runnable
129
+ script="data(){
130
+ return {
131
+ d:null
132
+ }
133
+ }"
134
+ template='
135
+ {{d}}
136
+ <r-calendar @change="d = $event"></r-calendar>'
137
+ ></r-code-editor>
138
+ </section>
139
+ <br/>
140
+ <br/>
141
+ <section class="pa-3 color-white">
142
+ <section>
143
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
144
+ PROP / <span>ShowHeaders</span>
145
+ </h1>
146
+ <p class="title ps-4 pt-1 pb-1 br-sm">هدر تقویت غیر فعال می شود.</p>
147
+
148
+ <r-calendar :showHeaders="false"></r-calendar>
149
+ </section>
150
+ <p class="caption">Press run Button</p>
151
+ <r-code-editor
152
+ runnable
153
+ template=' <r-calendar :showHeaders="false"></r-calendar>'
154
+ ></r-code-editor>
155
+ </section>
156
+ <br/>
157
+ <br/>
158
+ <section class="pa-3 color-white">
159
+ <section>
160
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
161
+ PROP / <span>Year or Month</span>
162
+ </h1>
163
+ <p class="title ps-4 pt-1 pb-1 br-sm">
164
+ تقویم مستقیم به آن سال یا ماه می رود .
165
+ </p>
166
+ <r-calendar :month="6" :year="2020"></r-calendar>
167
+ </section>
168
+ <p class="caption">Press run Button</p>
169
+ <r-code-editor
170
+ runnable
171
+ template='<r-calendar :year="2020" :month="6"></r-calendar>'
172
+ ></r-code-editor>
173
+ </section>
174
+ <br/>
175
+ <br/>
176
+ <section class="pa-3 color-white">
177
+ <section>
178
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
179
+ PROP / <span>Readonly</span>
180
+ </h1>
181
+ <p class="title ps-4 pt-1 pb-1 br-sm">
182
+ حق کلیک کردن را از کاربر می گیرید.
183
+ </p>
184
+ <r-calendar readonly></r-calendar>
185
+ </section>
186
+ <p class="caption">Press run Button</p>
187
+ <r-code-editor
188
+ runnable
189
+ template="<r-calendar readonly></r-calendar>"
190
+ ></r-code-editor>
191
+ </section>
192
+ <br/>
193
+ <br/>
194
+ <section class="pa-3 color-white">
195
+ <section>
196
+ <h1 class="font-weight-bold subtitle-1 ps-4 pt-1 pb-1 br-sm">
197
+ PROP / <span>IsDateDisabled</span>
198
+ </h1>
199
+ <p class="subtitle-1 ps-4 pt-1 pb-1 br-sm">
200
+ غیرفعال کردن روزهای خاصی از هفته را برای کاربر انجام می دهد.
201
+ </p>
202
+ {{ $d(new Date(d)) }}
203
+ <r-calendar :isDateDisabled="disable" @select="d = $event"></r-calendar>
204
+ </section>
205
+ <p class="caption">Press run Button</p>
206
+ <r-code-editor
207
+ runnable
208
+ script="
209
+ methods: {
210
+ disable(data) {
211
+ if (data.getDay() !== 1) {
212
+ return false;
213
+ }
214
+ return true;
215
+ },
216
+ }
217
+ "
218
+ template=' <r-calendar :isDateDisabled="disable"></r-calendar>'
219
+ ></r-code-editor>
220
+ </section>
221
+ <br/>
222
+ <br/>
223
+ </template>
224
+ <script>
225
+ export default {
226
+ name: "calendar",
227
+ data() {
228
+ return {
229
+ d: null,
230
+ m: null,
231
+ props: [
232
+ {
233
+ prop: "lang",
234
+ type: "String",
235
+ default: "undefined",
236
+ description: "زبان ",
237
+ },
238
+ {
239
+ prop: "readonly",
240
+ type: "Boolean",
241
+ default: "null",
242
+ description: "فقط خواندنی",
243
+ },
244
+ {
245
+ prop: "showHeaders",
246
+ type: "Boolean",
247
+ default: "true",
248
+ description: "نمایش دادن سربرگ ها",
249
+ },
250
+ {
251
+ prop: "isDateDisabled",
252
+ type: "Function",
253
+ default: "() => false",
254
+ description: "غیرفعال کردن تاریخ خاصی",
255
+ },
256
+ {prop: "year", type: "Number", default: "null", description: "سال"},
257
+ {prop: "month", type: "Number", default: "null", description: "ماه"},
258
+ ],
259
+ events: [
260
+ {event: "change", description: ""},
261
+ {event: "select", description: ""},
262
+ ],
263
+ };
264
+ },
265
+ methods: {
266
+ disable(data) {
267
+ if (data.getDay() !== 1) {
268
+ return false;
269
+ }
270
+ return true;
271
+ },
272
+ },
273
+ };
274
+ </script>