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,351 @@
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-password-input
6
+ </h1>
7
+ <p class="font-weight-light ps-4 pb-1 py-4 br-lg">
8
+ <r-btn readonly size="small"> r-password-input</r-btn>
9
+ The characters in a password field are masked (shown as asterisks).
10
+ </p>
11
+ </div>
12
+
13
+ <table-props :items="props"></table-props>
14
+ <table-events :items="events" class="mt-5"></table-events>
15
+ </section>
16
+ <section class="mt-10">
17
+ <p class="caption">Press run Button</p>
18
+ <r-code-editor
19
+ runnable
20
+ script='data(){
21
+ return {
22
+ "modelValue": null,
23
+ "hideLine": false,
24
+ "autofocus": false,
25
+ "lowerCase": true,
26
+ "upperCase": false,
27
+ "specialChar": false,
28
+ "number": false,
29
+ "minLength": 8
30
+ }
31
+ },
32
+ methods:{
33
+ log(name,e){
34
+ console.log(name,e)
35
+ }
36
+ }'
37
+ template='<r-password-input v-model="modelValue" :hide-Line="hideLine" :autofocus="autofocus" :lower-Case="lowerCase" :upper-Case="upperCase" :special-Char="specialChar" :number="number" :min-Length="minLength" @update:model-Value="log(`update:modelValue`,$event)" ></r-password-input>'
38
+ ></r-code-editor>
39
+ </section>
40
+ <br/>
41
+ <br/>
42
+ <section class="pa-3 color-white">
43
+ <section class="pa-4">
44
+ <r-card class="px-5 py-8 text-center">
45
+ <h3>Password</h3>
46
+ <r-form v-model="valid">
47
+ <r-password-input
48
+ v-model="info.pass"
49
+ :label="$t('Password')"
50
+ ></r-password-input>
51
+ <r-btn class="my-4 color-info px-20">Submit</r-btn>
52
+ </r-form>
53
+ </r-card>
54
+ </section>
55
+ <p class="caption">Press run Button</p>
56
+ <r-code-editor
57
+ runnable
58
+ script="data(){
59
+ return {
60
+ valid: false,
61
+ info: {},
62
+
63
+ }
64
+ }"
65
+ template='
66
+ <r-card class="px-5 py-8 text-center">
67
+ <h3>Password</h3>
68
+ <r-form v-model="valid">
69
+ <r-password-input
70
+ v-model="info.pass"
71
+ :label="$t(`Password`)"
72
+ ></r-password-input>
73
+ <r-btn class="my-4 color-info px-20">Submit</r-btn>
74
+ </r-form>
75
+ </r-card>
76
+ '
77
+ ></r-code-editor>
78
+ </section>
79
+ <br/>
80
+ <br/>
81
+ <section class="pa-3 color-white">
82
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
83
+ PROP / <span>LowerCase</span>
84
+ </h1>
85
+ <section class="pa-4">
86
+ <r-card class="px-5 py-8 text-center">
87
+ <h3>Password</h3>
88
+ <r-form v-model="valid">
89
+ <r-text-input
90
+ :label="$t('UserName')"
91
+ :rules="['required']"
92
+ ></r-text-input>
93
+ <r-password-input
94
+ v-model="info.pas"
95
+ :label="$t('Password')"
96
+ lowerCase
97
+ ></r-password-input>
98
+ <r-number-input
99
+ v-model="info.ag"
100
+ :label="$t('Age')"
101
+ btnText
102
+ ></r-number-input>
103
+ <r-btn block class="my-4 color-two-text" rounded>Submit</r-btn>
104
+ </r-form>
105
+ </r-card>
106
+ </section>
107
+ <p class="caption">Press run Button</p>
108
+ <r-code-editor
109
+ runnable
110
+ script="data(){
111
+ return {
112
+ valid: false,
113
+ info: {},
114
+
115
+ }
116
+ }"
117
+ template='
118
+ <r-card class="px-5 py-8 text-center">
119
+ <h3>Password</h3>
120
+ <r-form v-model="valid">
121
+ <r-text-input
122
+ :label="$t(`UserName`)"
123
+ :rules="[`required`]"
124
+ ></r-text-input>
125
+ <r-password-input
126
+ lowerCase
127
+ v-model="info.pas"
128
+ :label="$t(`Password`)"
129
+ ></r-password-input>
130
+ <r-number-input
131
+ btnText
132
+ v-model="info.ag"
133
+ :label="$t(`Age`)"
134
+ ></r-number-input>
135
+ <r-btn rounded class="my-4 color-two-text" block>Submit</r-btn>
136
+ </r-form>
137
+ </r-card>
138
+ '
139
+ ></r-code-editor>
140
+ </section>
141
+ <br/>
142
+ <br/>
143
+ <section class="pa-3 color-white">
144
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
145
+ PROP / <span>UpperCase</span>
146
+ </h1>
147
+ <section class="pa-4">
148
+ <r-card class="px-5 py-8 text-center">
149
+ <h3>Password</h3>
150
+ <r-form v-model="valid">
151
+ <r-text-input
152
+ :label="$t('UserName')"
153
+ :rules="['required']"
154
+ ></r-text-input>
155
+ <r-password-input
156
+ v-model="info.pas"
157
+ :label="$t('Password')"
158
+ upperCase
159
+ ></r-password-input>
160
+ <r-btn block class="my-4 color-one">Submit</r-btn>
161
+ </r-form>
162
+ </r-card>
163
+ </section>
164
+ <p class="caption">Press run Button</p>
165
+ <r-code-editor
166
+ runnable
167
+ script="data(){
168
+ return {
169
+ valid: false,
170
+ info: {},
171
+
172
+ }
173
+ }"
174
+ template='
175
+ <r-card class="px-5 py-8 text-center">
176
+ <h3>Password</h3>
177
+ <r-form v-model="valid">
178
+ <r-text-input
179
+ :label="$t(`UserName`)"
180
+ :rules="[`required`]"
181
+ ></r-text-input>
182
+ <r-password-input
183
+ upperCase
184
+ v-model="info.pas"
185
+ :label="$t(`Password`)"
186
+ ></r-password-input>
187
+ <r-btn class="my-4 color-one" block>Submit</r-btn>
188
+ </r-form>
189
+ </r-card>
190
+ '
191
+ ></r-code-editor>
192
+ </section>
193
+ <br/>
194
+ <br/>
195
+ <section class="pa-3 color-white">
196
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
197
+ PROP / <span>SpecialChar</span>
198
+ </h1>
199
+ <section class="pa-4">
200
+ <r-card class="px-5 py-8 text-center">
201
+ <h3>Password</h3>
202
+ <r-form v-model="valid">
203
+ <r-text-input
204
+ :label="$t('UserName')"
205
+ :rules="['required']"
206
+ ></r-text-input>
207
+ <r-password-input
208
+ v-model="info.pas"
209
+ :label="$t('Password like !@#$%^')"
210
+ specialChar
211
+ ></r-password-input>
212
+ <r-btn block class="my-4 color-black">Submit</r-btn>
213
+ </r-form>
214
+ </r-card>
215
+ </section>
216
+ <p class="caption">Press run Button</p>
217
+ <r-code-editor
218
+ runnable
219
+ script="data(){
220
+ return {
221
+ valid: false,
222
+ info: {},
223
+
224
+ }
225
+ }"
226
+ template='
227
+ <r-password-input
228
+ specialChar
229
+ v-model="info.pas"
230
+ :label="$t(`Password like !@#$%^`)"
231
+ ></r-password-input>
232
+ '
233
+ ></r-code-editor>
234
+ </section>
235
+ <br/>
236
+ <br/>
237
+ <section class="pa-3 color-white">
238
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
239
+ PROP / <span>MinLength</span>
240
+ </h1>
241
+ <section class="pa-4">
242
+ <r-card class="px-5 py-8 text-center">
243
+ <h3>Password</h3>
244
+ <r-form v-model="valid">
245
+ <r-text-input
246
+ :label="$t('UserName')"
247
+ :rules="['required']"
248
+ ></r-text-input>
249
+ <r-password-input
250
+ v-model="info.pas"
251
+ :label="$t('Password minLength = 4')"
252
+ :minLength="4"
253
+ ></r-password-input>
254
+ <r-btn block class="my-4 color-black">Submit</r-btn>
255
+ </r-form>
256
+ </r-card>
257
+ </section>
258
+ <p class="caption">Press run Button</p>
259
+ <r-code-editor
260
+ runnable
261
+ script="data(){
262
+ return {
263
+ valid: false,
264
+ info: {},
265
+
266
+ }
267
+ }"
268
+ template='
269
+ <r-card class="px-5 py-8 text-center">
270
+ <h3>Password</h3>
271
+ <r-form v-model="valid">
272
+ <r-text-input
273
+ :label="$t(`UserName`)"
274
+ :rules="[`required`]"
275
+ ></r-text-input>
276
+ <r-password-input
277
+ :minLength="4"
278
+ v-model="info.pas"
279
+ :label="$t(`Password minLength = 4`)"
280
+ ></r-password-input>
281
+ <r-btn class="my-4 color-black" block>Submit</r-btn>
282
+ </r-form>
283
+ </r-card>
284
+ '
285
+ ></r-code-editor>
286
+ </section>
287
+ <br/>
288
+ <br/>
289
+ </template>
290
+ <script>
291
+ export default {
292
+ name: "password_input",
293
+ data() {
294
+ return {
295
+ valid: false,
296
+ info: {},
297
+ props: [
298
+ {
299
+ prop: "modelValue",
300
+ type: "String,Number",
301
+ default: "null",
302
+ description: "Model Value",
303
+ },
304
+ {
305
+ prop: "hideLine",
306
+ type: "Boolean",
307
+ default: "null",
308
+ description: "It does not check the validate",
309
+ },
310
+ {
311
+ prop: "autofocus",
312
+ type: "Boolean",
313
+ default: "null",
314
+ description: "Auto Focus",
315
+ },
316
+ {
317
+ prop: "lowerCase",
318
+ type: "Boolean",
319
+ default: "true",
320
+ description: "Lower Case",
321
+ },
322
+ {
323
+ prop: "upperCase",
324
+ type: "Boolean",
325
+ default: "null",
326
+ description: "Upper Case",
327
+ },
328
+ {
329
+ prop: "specialChar",
330
+ type: "Boolean",
331
+ default: "null",
332
+ description: "Special Char",
333
+ },
334
+ {
335
+ prop: "number",
336
+ type: "Boolean",
337
+ default: "null",
338
+ description: "Number",
339
+ },
340
+ {
341
+ prop: "minLength",
342
+ type: "Number",
343
+ default: "8",
344
+ description: "Min Length",
345
+ },
346
+ ],
347
+ events: [{event: "update:modelValue", description: ""}],
348
+ };
349
+ },
350
+ };
351
+ </script>
@@ -0,0 +1,352 @@
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-password-input
6
+ </h1>
7
+ <p class="font-weight-light ps-4 pb-1 py-4 br-lg">
8
+ <r-btn readonly size="small"> r-password-input</r-btn>
9
+ کاراکترها در فیلد رمز عبور مخفی می‌شوند (با استفاده از ستاره‌ها نشان
10
+ داده می‌شوند)
11
+ </p>
12
+ </div>
13
+
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
+ "modelValue": null,
24
+ "hideLine": false,
25
+ "autofocus": false,
26
+ "lowerCase": true,
27
+ "upperCase": false,
28
+ "specialChar": false,
29
+ "number": false,
30
+ "minLength": 8
31
+ }
32
+ },
33
+ methods:{
34
+ log(name,e){
35
+ console.log(name,e)
36
+ }
37
+ }'
38
+ template='<r-password-input v-model="modelValue" :hide-Line="hideLine" :autofocus="autofocus" :lower-Case="lowerCase" :upper-Case="upperCase" :special-Char="specialChar" :number="number" :min-Length="minLength" @update:model-Value="log(`update:modelValue`,$event)" ></r-password-input>'
39
+ ></r-code-editor>
40
+ </section>
41
+ <br/>
42
+ <br/>
43
+ <section class="pa-3 color-white">
44
+ <section class="pa-4">
45
+ <r-card class="px-5 py-8 text-center">
46
+ <h3>Password</h3>
47
+ <r-form v-model="valid">
48
+ <r-password-input
49
+ v-model="info.pass"
50
+ :label="$t('Password')"
51
+ ></r-password-input>
52
+ <r-btn class="my-4 color-info px-20">Submit</r-btn>
53
+ </r-form>
54
+ </r-card>
55
+ </section>
56
+ <p class="caption">Press run Button</p>
57
+ <r-code-editor
58
+ runnable
59
+ script="data(){
60
+ return {
61
+ valid: false,
62
+ info: {},
63
+
64
+ }
65
+ }"
66
+ template='
67
+ <r-card class="px-5 py-8 text-center">
68
+ <h3>Password</h3>
69
+ <r-form v-model="valid">
70
+ <r-password-input
71
+ v-model="info.pass"
72
+ :label="$t(`Password`)"
73
+ ></r-password-input>
74
+ <r-btn class="my-4 color-info px-20">Submit</r-btn>
75
+ </r-form>
76
+ </r-card>
77
+ '
78
+ ></r-code-editor>
79
+ </section>
80
+ <br/>
81
+ <br/>
82
+ <section class="pa-3 color-white">
83
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
84
+ PROP / <span>LowerCase</span>
85
+ </h1>
86
+ <section class="pa-4">
87
+ <r-card class="px-5 py-8 text-center">
88
+ <h3>Password</h3>
89
+ <r-form v-model="valid">
90
+ <r-text-input
91
+ :label="$t('UserName')"
92
+ :rules="['required']"
93
+ ></r-text-input>
94
+ <r-password-input
95
+ v-model="info.pas"
96
+ :label="$t('Password')"
97
+ lowerCase
98
+ ></r-password-input>
99
+ <r-number-input
100
+ v-model="info.ag"
101
+ :label="$t('Age')"
102
+ btnText
103
+ ></r-number-input>
104
+ <r-btn block class="my-4 color-two-text" rounded>Submit</r-btn>
105
+ </r-form>
106
+ </r-card>
107
+ </section>
108
+ <p class="caption">Press run Button</p>
109
+ <r-code-editor
110
+ runnable
111
+ script="data(){
112
+ return {
113
+ valid: false,
114
+ info: {},
115
+
116
+ }
117
+ }"
118
+ template='
119
+ <r-card class="px-5 py-8 text-center">
120
+ <h3>Password</h3>
121
+ <r-form v-model="valid">
122
+ <r-text-input
123
+ :label="$t(`UserName`)"
124
+ :rules="[`required`]"
125
+ ></r-text-input>
126
+ <r-password-input
127
+ lowerCase
128
+ v-model="info.pas"
129
+ :label="$t(`Password`)"
130
+ ></r-password-input>
131
+ <r-number-input
132
+ btnText
133
+ v-model="info.ag"
134
+ :label="$t(`Age`)"
135
+ ></r-number-input>
136
+ <r-btn rounded class="my-4 color-two-text" block>Submit</r-btn>
137
+ </r-form>
138
+ </r-card>
139
+ '
140
+ ></r-code-editor>
141
+ </section>
142
+ <br/>
143
+ <br/>
144
+ <section class="pa-3 color-white">
145
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
146
+ PROP / <span>UpperCase</span>
147
+ </h1>
148
+ <section class="pa-4">
149
+ <r-card class="px-5 py-8 text-center">
150
+ <h3>Password</h3>
151
+ <r-form v-model="valid">
152
+ <r-text-input
153
+ :label="$t('UserName')"
154
+ :rules="['required']"
155
+ ></r-text-input>
156
+ <r-password-input
157
+ v-model="info.pas"
158
+ :label="$t('Password')"
159
+ upperCase
160
+ ></r-password-input>
161
+ <r-btn block class="my-4 color-one">Submit</r-btn>
162
+ </r-form>
163
+ </r-card>
164
+ </section>
165
+ <p class="caption">Press run Button</p>
166
+ <r-code-editor
167
+ runnable
168
+ script="data(){
169
+ return {
170
+ valid: false,
171
+ info: {},
172
+
173
+ }
174
+ }"
175
+ template='
176
+ <r-card class="px-5 py-8 text-center">
177
+ <h3>Password</h3>
178
+ <r-form v-model="valid">
179
+ <r-text-input
180
+ :label="$t(`UserName`)"
181
+ :rules="[`required`]"
182
+ ></r-text-input>
183
+ <r-password-input
184
+ upperCase
185
+ v-model="info.pas"
186
+ :label="$t(`Password`)"
187
+ ></r-password-input>
188
+ <r-btn class="my-4 color-one" block>Submit</r-btn>
189
+ </r-form>
190
+ </r-card>
191
+ '
192
+ ></r-code-editor>
193
+ </section>
194
+ <br/>
195
+ <br/>
196
+ <section class="pa-3 color-white">
197
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
198
+ PROP / <span>SpecialChar</span>
199
+ </h1>
200
+ <section class="pa-4">
201
+ <r-card class="px-5 py-8 text-center">
202
+ <h3>Password</h3>
203
+ <r-form v-model="valid">
204
+ <r-text-input
205
+ :label="$t('UserName')"
206
+ :rules="['required']"
207
+ ></r-text-input>
208
+ <r-password-input
209
+ v-model="info.pas"
210
+ :label="$t('Password like !@#$%^')"
211
+ specialChar
212
+ ></r-password-input>
213
+ <r-btn block class="my-4 color-black">Submit</r-btn>
214
+ </r-form>
215
+ </r-card>
216
+ </section>
217
+ <p class="caption">Press run Button</p>
218
+ <r-code-editor
219
+ runnable
220
+ script="data(){
221
+ return {
222
+ valid: false,
223
+ info: {},
224
+
225
+ }
226
+ }"
227
+ template='
228
+ <r-password-input
229
+ specialChar
230
+ v-model="info.pas"
231
+ :label="$t(`Password like !@#$%^`)"
232
+ ></r-password-input>
233
+ '
234
+ ></r-code-editor>
235
+ </section>
236
+ <br/>
237
+ <br/>
238
+ <section class="pa-3 color-white">
239
+ <h1 class="font-weight-bold title ps-4 pt-1 pb-6 br-sm">
240
+ PROP / <span>MinLength</span>
241
+ </h1>
242
+ <section class="pa-4">
243
+ <r-card class="px-5 py-8 text-center">
244
+ <h3>Password</h3>
245
+ <r-form v-model="valid">
246
+ <r-text-input
247
+ :label="$t('UserName')"
248
+ :rules="['required']"
249
+ ></r-text-input>
250
+ <r-password-input
251
+ v-model="info.pas"
252
+ :label="$t('Password minLength = 4')"
253
+ :minLength="4"
254
+ ></r-password-input>
255
+ <r-btn block class="my-4 color-black">Submit</r-btn>
256
+ </r-form>
257
+ </r-card>
258
+ </section>
259
+ <p class="caption">Press run Button</p>
260
+ <r-code-editor
261
+ runnable
262
+ script="data(){
263
+ return {
264
+ valid: false,
265
+ info: {},
266
+
267
+ }
268
+ }"
269
+ template='
270
+ <r-card class="px-5 py-8 text-center">
271
+ <h3>Password</h3>
272
+ <r-form v-model="valid">
273
+ <r-text-input
274
+ :label="$t(`UserName`)"
275
+ :rules="[`required`]"
276
+ ></r-text-input>
277
+ <r-password-input
278
+ :minLength="4"
279
+ v-model="info.pas"
280
+ :label="$t(`Password minLength = 4`)"
281
+ ></r-password-input>
282
+ <r-btn class="my-4 color-black" block>Submit</r-btn>
283
+ </r-form>
284
+ </r-card>
285
+ '
286
+ ></r-code-editor>
287
+ </section>
288
+ <br/>
289
+ <br/>
290
+ </template>
291
+ <script>
292
+ export default {
293
+ name: "password_input",
294
+ data() {
295
+ return {
296
+ valid: false,
297
+ info: {},
298
+ props: [
299
+ {
300
+ prop: "modelValue",
301
+ type: "String,Number",
302
+ default: "null",
303
+ description: "Model Value می گیرد",
304
+ },
305
+ {
306
+ prop: "hideLine",
307
+ type: "Boolean",
308
+ default: "null",
309
+ description: "validate را بررسی نمی کند ",
310
+ },
311
+ {
312
+ prop: "autofocus",
313
+ type: "Boolean",
314
+ default: "null",
315
+ description: "خودکار",
316
+ },
317
+ {
318
+ prop: "lowerCase",
319
+ type: "Boolean",
320
+ default: "true",
321
+ description: "حروف کوچک",
322
+ },
323
+ {
324
+ prop: "upperCase",
325
+ type: "Boolean",
326
+ default: "null",
327
+ description: "حروف بزرگ",
328
+ },
329
+ {
330
+ prop: "specialChar",
331
+ type: "Boolean",
332
+ default: "null",
333
+ description: " کاراکترهای خاص",
334
+ },
335
+ {
336
+ prop: "number",
337
+ type: "Boolean",
338
+ default: "null",
339
+ description: "شماره",
340
+ },
341
+ {
342
+ prop: "minLength",
343
+ type: "Number",
344
+ default: "8",
345
+ description: "حداقل رمز",
346
+ },
347
+ ],
348
+ events: [{event: "update:modelValue", description: ""}],
349
+ };
350
+ },
351
+ };
352
+ </script>