aloha-vue 1.0.367 → 1.0.368

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 (228) hide show
  1. package/docs/package.json +1 -1
  2. package/docs/src/components/TheMenu/TheMenu.js +104 -91
  3. package/docs/src/mainIcons.js +12 -0
  4. package/docs/src/mainTranslation.js +27 -0
  5. package/docs/src/router/index.js +19 -9
  6. package/docs/src/views/CSS/PageColumns/PageColumns.js +4 -0
  7. package/docs/src/views/CSS/PageColumns/PageColumns.pug +23 -0
  8. package/docs/src/views/CSS/PageColumns/PageColumns.vue +2 -0
  9. package/docs/src/views/{PageAJson → Form/PageAJson}/PageAJson.js +1 -1
  10. package/docs/src/views/{PageCheckbox → Form/PageCheckbox}/PageCheckbox.js +2 -2
  11. package/docs/src/views/{PageDatepicker → Form/PageDatepicker}/PageDatepicker.js +1 -1
  12. package/docs/src/views/{PageForm → Form/PageForm}/PageForm.js +1 -1
  13. package/docs/src/views/{PageInput → Form/PageInput}/PageInput.js +2 -2
  14. package/docs/src/views/{PageInputNumber → Form/PageInputNumber}/PageInputNumber.js +1 -1
  15. package/docs/src/views/{PageRadio → Form/PageRadio}/PageRadio.js +1 -1
  16. package/docs/src/views/{PageSelect → Form/PageSelect}/PageSelect.js +45 -2
  17. package/docs/src/views/Form/PageSelect/PageSelect.pug +100 -0
  18. package/docs/src/views/Form/PageSelect/PageSelectBasic/PageSelectBasic.js +57 -0
  19. package/docs/src/views/Form/PageSelect/PageSelectBasic/PageSelectBasic.pug +15 -0
  20. package/docs/src/views/Form/PageSelect/PageSelectBasic/PageSelectBasic.vue +2 -0
  21. package/docs/src/views/Form/PageSelect/PageSelectBasic/compositionAPI/HtmlAPI.js +15 -0
  22. package/docs/src/views/Form/PageSelect/PageSelectBasic/compositionAPI/JsAPI.js +48 -0
  23. package/docs/src/views/Form/PageSelect/compositionAPI/EventsAPI.js +13 -0
  24. package/docs/src/views/Form/PageSelect/compositionAPI/ExposesAPI.js +18 -0
  25. package/docs/src/views/Form/PageSelect/compositionAPI/PageTitleAPI.js +24 -0
  26. package/docs/src/views/Form/PageSelect/compositionAPI/PropsAPI.js +106 -0
  27. package/docs/src/views/Form/PageSelect/compositionAPI/SlotsAPI.js +12 -0
  28. package/docs/src/views/Form/PageSelect/i18n/PageSelectI18n.js +19 -0
  29. package/docs/src/views/Form/PageSelect/i18n/ar.json +3 -0
  30. package/docs/src/views/Form/PageSelect/i18n/de.json +3 -0
  31. package/docs/src/views/Form/PageSelect/i18n/en.json +3 -0
  32. package/docs/src/views/Form/PageSelect/i18n/es.json +3 -0
  33. package/docs/src/views/Form/PageSelect/i18n/fr.json +3 -0
  34. package/docs/src/views/Form/PageSelect/i18n/hr.json +3 -0
  35. package/docs/src/views/Form/PageSelect/i18n/it.json +3 -0
  36. package/docs/src/views/Form/PageSelect/i18n/ru.json +3 -0
  37. package/docs/src/views/{PageTinyMce → Form/PageTinyMce}/PageTinyMce.js +1 -1
  38. package/docs/src/views/PageLink/i18n/de.json +2 -0
  39. package/docs/src/views/PageLink/i18n/en.json +3 -1
  40. package/docs/src/views/PageLink/i18n/hr.json +2 -0
  41. package/docs/src/views/PageProgress/PageProgress.js +69 -2
  42. package/docs/src/views/PageProgress/PageProgress.pug +35 -42
  43. package/docs/src/views/PageProgress/PageProgressBasic/PageProgressBasic.js +27 -0
  44. package/docs/src/views/PageProgress/PageProgressBasic/PageProgressBasic.pug +9 -0
  45. package/docs/src/views/PageProgress/PageProgressBasic/PageProgressBasic.vue +2 -0
  46. package/docs/src/views/PageProgress/PageProgressBasic/compositionAPI/HtmlAPI.js +9 -0
  47. package/docs/src/views/PageProgress/PageProgressBasic/compositionAPI/JsAPI.js +14 -0
  48. package/docs/src/views/PageProgress/PageProgressClassCombination/PageProgressClassCombination.js +27 -0
  49. package/docs/src/views/PageProgress/PageProgressClassCombination/PageProgressClassCombination.pug +77 -0
  50. package/docs/src/views/PageProgress/PageProgressClassCombination/PageProgressClassCombination.vue +2 -0
  51. package/docs/src/views/PageProgress/PageProgressClassCombination/compositionAPI/HtmlAPI.js +76 -0
  52. package/docs/src/views/PageProgress/PageProgressClassCombination/compositionAPI/JsAPI.js +14 -0
  53. package/docs/src/views/PageProgress/PageProgressClassProgressBar/PageProgressClassProgressBar.js +27 -0
  54. package/docs/src/views/PageProgress/PageProgressClassProgressBar/PageProgressClassProgressBar.pug +81 -0
  55. package/docs/src/views/PageProgress/PageProgressClassProgressBar/PageProgressClassProgressBar.vue +2 -0
  56. package/docs/src/views/PageProgress/PageProgressClassProgressBar/compositionAPI/HtmlAPI.js +80 -0
  57. package/docs/src/views/PageProgress/PageProgressClassProgressBar/compositionAPI/JsAPI.js +14 -0
  58. package/docs/src/views/PageProgress/PageProgressClassProgressBarFunction/PageProgressClassProgressBarFunction.js +46 -0
  59. package/docs/src/views/PageProgress/PageProgressClassProgressBarFunction/PageProgressClassProgressBarFunction.pug +19 -0
  60. package/docs/src/views/PageProgress/PageProgressClassProgressBarFunction/PageProgressClassProgressBarFunction.vue +2 -0
  61. package/docs/src/views/PageProgress/PageProgressClassProgressBarFunction/compositionAPI/HtmlAPI.js +18 -0
  62. package/docs/src/views/PageProgress/PageProgressClassProgressBarFunction/compositionAPI/JsAPI.js +37 -0
  63. package/docs/src/views/PageProgress/PageProgressDuration/PageProgressDuration.js +27 -0
  64. package/docs/src/views/PageProgress/PageProgressDuration/PageProgressDuration.pug +40 -0
  65. package/docs/src/views/PageProgress/PageProgressDuration/PageProgressDuration.vue +2 -0
  66. package/docs/src/views/PageProgress/PageProgressDuration/compositionAPI/HtmlAPI.js +39 -0
  67. package/docs/src/views/PageProgress/PageProgressDuration/compositionAPI/JsAPI.js +14 -0
  68. package/docs/src/views/PageProgress/PageProgressIndeterminate/PageProgressIndeterminate.js +27 -0
  69. package/docs/src/views/PageProgress/PageProgressIndeterminate/PageProgressIndeterminate.pug +55 -0
  70. package/docs/src/views/PageProgress/PageProgressIndeterminate/PageProgressIndeterminate.vue +2 -0
  71. package/docs/src/views/PageProgress/PageProgressIndeterminate/compositionAPI/HtmlAPI.js +54 -0
  72. package/docs/src/views/PageProgress/PageProgressIndeterminate/compositionAPI/JsAPI.js +14 -0
  73. package/docs/src/views/PageProgress/PageProgressMinMax/PageProgressMinMax.js +27 -0
  74. package/docs/src/views/PageProgress/PageProgressMinMax/PageProgressMinMax.pug +30 -0
  75. package/docs/src/views/PageProgress/PageProgressMinMax/PageProgressMinMax.vue +2 -0
  76. package/docs/src/views/PageProgress/PageProgressMinMax/compositionAPI/HtmlAPI.js +29 -0
  77. package/docs/src/views/PageProgress/PageProgressMinMax/compositionAPI/JsAPI.js +14 -0
  78. package/docs/src/views/PageProgress/PageProgressRevers/PageProgressRevers.js +27 -0
  79. package/docs/src/views/PageProgress/PageProgressRevers/PageProgressRevers.pug +16 -0
  80. package/docs/src/views/PageProgress/PageProgressRevers/PageProgressRevers.vue +2 -0
  81. package/docs/src/views/PageProgress/PageProgressRevers/compositionAPI/HtmlAPI.js +15 -0
  82. package/docs/src/views/PageProgress/PageProgressRevers/compositionAPI/JsAPI.js +14 -0
  83. package/docs/src/views/PageProgress/PageProgressShowValue/PageProgressShowValue.js +27 -0
  84. package/docs/src/views/PageProgress/PageProgressShowValue/PageProgressShowValue.pug +16 -0
  85. package/docs/src/views/PageProgress/PageProgressShowValue/PageProgressShowValue.vue +2 -0
  86. package/docs/src/views/PageProgress/PageProgressShowValue/compositionAPI/HtmlAPI.js +18 -0
  87. package/docs/src/views/PageProgress/PageProgressShowValue/compositionAPI/JsAPI.js +14 -0
  88. package/docs/src/views/PageProgress/PageProgressSizes/PageProgressSizes.js +27 -0
  89. package/docs/src/views/PageProgress/PageProgressSizes/PageProgressSizes.pug +19 -0
  90. package/docs/src/views/PageProgress/PageProgressSizes/PageProgressSizes.vue +2 -0
  91. package/docs/src/views/PageProgress/PageProgressSizes/compositionAPI/HtmlAPI.js +18 -0
  92. package/docs/src/views/PageProgress/PageProgressSizes/compositionAPI/JsAPI.js +14 -0
  93. package/docs/src/views/PageProgress/PageProgressStriped/PageProgressStriped.js +27 -0
  94. package/docs/src/views/PageProgress/PageProgressStriped/PageProgressStriped.pug +48 -0
  95. package/docs/src/views/PageProgress/PageProgressStriped/PageProgressStriped.vue +2 -0
  96. package/docs/src/views/PageProgress/PageProgressStriped/compositionAPI/HtmlAPI.js +47 -0
  97. package/docs/src/views/PageProgress/PageProgressStriped/compositionAPI/JsAPI.js +14 -0
  98. package/docs/src/views/PageProgress/PageProgressStripedFlow/PageProgressStripedFlow.js +27 -0
  99. package/docs/src/views/PageProgress/PageProgressStripedFlow/PageProgressStripedFlow.pug +55 -0
  100. package/docs/src/views/PageProgress/PageProgressStripedFlow/PageProgressStripedFlow.vue +2 -0
  101. package/docs/src/views/PageProgress/PageProgressStripedFlow/compositionAPI/HtmlAPI.js +54 -0
  102. package/docs/src/views/PageProgress/PageProgressStripedFlow/compositionAPI/JsAPI.js +14 -0
  103. package/docs/src/views/PageProgress/PageProgressValue/PageProgressValue.js +36 -0
  104. package/docs/src/views/PageProgress/PageProgressValue/PageProgressValue.pug +17 -0
  105. package/docs/src/views/PageProgress/PageProgressValue/PageProgressValue.vue +2 -0
  106. package/docs/src/views/PageProgress/PageProgressValue/compositionAPI/HtmlAPI.js +17 -0
  107. package/docs/src/views/PageProgress/PageProgressValue/compositionAPI/JsAPI.js +27 -0
  108. package/docs/src/views/PageProgress/PageProgressValueTextInteger/PageProgressValueTextInteger.js +27 -0
  109. package/docs/src/views/PageProgress/PageProgressValueTextInteger/PageProgressValueTextInteger.pug +16 -0
  110. package/docs/src/views/PageProgress/PageProgressValueTextInteger/PageProgressValueTextInteger.vue +2 -0
  111. package/docs/src/views/PageProgress/PageProgressValueTextInteger/compositionAPI/HtmlAPI.js +15 -0
  112. package/docs/src/views/PageProgress/PageProgressValueTextInteger/compositionAPI/JsAPI.js +14 -0
  113. package/docs/src/views/PageProgress/compositionAPI/EventsAPI.js +13 -0
  114. package/docs/src/views/PageProgress/compositionAPI/ExposesAPI.js +18 -0
  115. package/docs/src/views/PageProgress/compositionAPI/PageTitleAPI.js +24 -0
  116. package/docs/src/views/PageProgress/compositionAPI/PropsAPI.js +106 -0
  117. package/docs/src/views/PageProgress/compositionAPI/SlotsAPI.js +12 -0
  118. package/docs/src/views/PageProgress/i18n/PageProgressI18n.js +19 -0
  119. package/docs/src/views/PageProgress/i18n/ar.json +3 -0
  120. package/docs/src/views/PageProgress/i18n/de.json +41 -0
  121. package/docs/src/views/PageProgress/i18n/en.json +3 -0
  122. package/docs/src/views/PageProgress/i18n/es.json +3 -0
  123. package/docs/src/views/PageProgress/i18n/fr.json +3 -0
  124. package/docs/src/views/PageProgress/i18n/hr.json +3 -0
  125. package/docs/src/views/PageProgress/i18n/it.json +3 -0
  126. package/docs/src/views/PageProgress/i18n/ru.json +3 -0
  127. package/docs/src/views/PageRate/PageRate.js +51 -0
  128. package/docs/src/views/PageRate/PageRate.pug +42 -0
  129. package/docs/src/views/PageRate/PageRate.vue +2 -0
  130. package/docs/src/views/PageRate/PageRateColor/PageRateColor.js +27 -0
  131. package/docs/src/views/PageRate/PageRateColor/PageRateColor.pug +11 -0
  132. package/docs/src/views/PageRate/PageRateColor/PageRateColor.vue +2 -0
  133. package/docs/src/views/PageRate/PageRateColor/compositionAPI/HtmlAPI.js +11 -0
  134. package/docs/src/views/PageRate/PageRateColor/compositionAPI/JsAPI.js +14 -0
  135. package/docs/src/views/PageRate/PageRateHalfIcon/PageRateHalfIcon.js +27 -0
  136. package/docs/src/views/PageRate/PageRateHalfIcon/PageRateHalfIcon.pug +10 -0
  137. package/docs/src/views/PageRate/PageRateHalfIcon/PageRateHalfIcon.vue +2 -0
  138. package/docs/src/views/PageRate/PageRateHalfIcon/compositionAPI/HtmlAPI.js +10 -0
  139. package/docs/src/views/PageRate/PageRateHalfIcon/compositionAPI/JsAPI.js +14 -0
  140. package/docs/src/views/PageRate/PageRateHoveredColor/PageRateHoveredColor.js +27 -0
  141. package/docs/src/views/PageRate/PageRateHoveredColor/PageRateHoveredColor.pug +11 -0
  142. package/docs/src/views/PageRate/PageRateHoveredColor/PageRateHoveredColor.vue +2 -0
  143. package/docs/src/views/PageRate/PageRateHoveredColor/compositionAPI/HtmlAPI.js +11 -0
  144. package/docs/src/views/PageRate/PageRateHoveredColor/compositionAPI/JsAPI.js +14 -0
  145. package/docs/src/views/PageRate/PageRateIcon/PageRateIcon.js +27 -0
  146. package/docs/src/views/PageRate/PageRateIcon/PageRateIcon.pug +14 -0
  147. package/docs/src/views/PageRate/PageRateIcon/PageRateIcon.vue +2 -0
  148. package/docs/src/views/PageRate/PageRateIcon/compositionAPI/HtmlAPI.js +10 -0
  149. package/docs/src/views/PageRate/PageRateIcon/compositionAPI/JsAPI.js +14 -0
  150. package/docs/src/views/PageRate/PageRateIconFill/PageRateIconFill.js +27 -0
  151. package/docs/src/views/PageRate/PageRateIconFill/PageRateIconFill.pug +10 -0
  152. package/docs/src/views/PageRate/PageRateIconFill/PageRateIconFill.vue +2 -0
  153. package/docs/src/views/PageRate/PageRateIconFill/compositionAPI/HtmlAPI.js +8 -0
  154. package/docs/src/views/PageRate/PageRateIconFill/compositionAPI/JsAPI.js +14 -0
  155. package/docs/src/views/PageRate/PageRateModelValue/PageRateModelValue.js +36 -0
  156. package/docs/src/views/PageRate/PageRateModelValue/PageRateModelValue.pug +12 -0
  157. package/docs/src/views/PageRate/PageRateModelValue/PageRateModelValue.vue +2 -0
  158. package/docs/src/views/PageRate/PageRateModelValue/compositionAPI/HtmlAPI.js +11 -0
  159. package/docs/src/views/PageRate/PageRateModelValue/compositionAPI/JsAPI.js +14 -0
  160. package/docs/src/views/PageRate/PageRateRating/PageRateRating.js +27 -0
  161. package/docs/src/views/PageRate/PageRateRating/PageRateRating.pug +10 -0
  162. package/docs/src/views/PageRate/PageRateRating/PageRateRating.vue +2 -0
  163. package/docs/src/views/PageRate/PageRateRating/compositionAPI/HtmlAPI.js +10 -0
  164. package/docs/src/views/PageRate/PageRateRating/compositionAPI/JsAPI.js +14 -0
  165. package/docs/src/views/PageRate/PageRateReadonly/PageRateReadonly.js +27 -0
  166. package/docs/src/views/PageRate/PageRateReadonly/PageRateReadonly.pug +13 -0
  167. package/docs/src/views/PageRate/PageRateReadonly/PageRateReadonly.vue +2 -0
  168. package/docs/src/views/PageRate/PageRateReadonly/compositionAPI/HtmlAPI.js +12 -0
  169. package/docs/src/views/PageRate/PageRateReadonly/compositionAPI/JsAPI.js +14 -0
  170. package/docs/src/views/PageRate/PageRateShowScore/PageRateShowScore.js +27 -0
  171. package/docs/src/views/PageRate/PageRateShowScore/PageRateShowScore.pug +10 -0
  172. package/docs/src/views/PageRate/PageRateShowScore/PageRateShowScore.vue +2 -0
  173. package/docs/src/views/PageRate/PageRateShowScore/compositionAPI/HtmlAPI.js +7 -0
  174. package/docs/src/views/PageRate/PageRateShowScore/compositionAPI/JsAPI.js +14 -0
  175. package/docs/src/views/PageRate/PageRateSize/PageRateSize.js +27 -0
  176. package/docs/src/views/PageRate/PageRateSize/PageRateSize.pug +21 -0
  177. package/docs/src/views/PageRate/PageRateSize/PageRateSize.vue +2 -0
  178. package/docs/src/views/PageRate/PageRateSize/compositionAPI/HtmlAPI.js +22 -0
  179. package/docs/src/views/PageRate/PageRateSize/compositionAPI/JsAPI.js +14 -0
  180. package/docs/src/views/PageRate/PageRateTextExtra/PageRateTextExtra.js +27 -0
  181. package/docs/src/views/PageRate/PageRateTextExtra/PageRateTextExtra.pug +10 -0
  182. package/docs/src/views/PageRate/PageRateTextExtra/PageRateTextExtra.vue +2 -0
  183. package/docs/src/views/PageRate/PageRateTextExtra/compositionAPI/HtmlAPI.js +10 -0
  184. package/docs/src/views/PageRate/PageRateTextExtra/compositionAPI/JsAPI.js +14 -0
  185. package/docs/src/views/PageRate/compositionAPI/EventsAPI.js +13 -0
  186. package/docs/src/views/PageRate/compositionAPI/PropsAPI.js +92 -0
  187. package/docs/src/views/PageRate/i18n/PageARateI18n.js +19 -0
  188. package/docs/src/views/PageRate/i18n/ar.json +17 -0
  189. package/docs/src/views/PageRate/i18n/de.json +17 -0
  190. package/docs/src/views/PageRate/i18n/en.json +17 -0
  191. package/docs/src/views/PageRate/i18n/es.json +17 -0
  192. package/docs/src/views/PageRate/i18n/fr.json +17 -0
  193. package/docs/src/views/PageRate/i18n/hr.json +17 -0
  194. package/docs/src/views/PageRate/i18n/it.json +17 -0
  195. package/docs/src/views/PageRate/i18n/ru.json +17 -0
  196. package/package.json +1 -1
  197. package/src/AProgress/AProgress.js +62 -31
  198. package/src/AProgress/compositionAPI/ClassBarAPI.js +25 -0
  199. package/src/AProgress/compositionAPI/DurationAPI.js +23 -0
  200. package/src/AProgress/compositionAPI/ValuePercentAPI.js +33 -0
  201. package/src/AProgress/compositionAPI/WidthAPI.js +1 -5
  202. package/src/ARate/ARate.js +221 -0
  203. package/src/ARate/ARateIcon/ADecimalIcon/ADecimalIcon.js +48 -0
  204. package/src/ARate/ARateIcon/ARateIcon.js +91 -0
  205. package/src/plugins/ASelectPlugin.js +1 -0
  206. package/src/styles/components/ARate.scss +78 -0
  207. package/src/styles/styles.scss +2 -1
  208. package/src/ui/ASelect/ASelect.js +6 -0
  209. package/src/ui/ASelect/compositionAPI/ASelectToggleAPI.js +16 -18
  210. package/src/utils/colors.js +38 -0
  211. package/docs/src/views/PageSelect/PageSelect.pug +0 -88
  212. /package/docs/src/views/{PageAJson → Form/PageAJson}/PageAJson.pug +0 -0
  213. /package/docs/src/views/{PageAJson → Form/PageAJson}/PageAJson.vue +0 -0
  214. /package/docs/src/views/{PageCheckbox → Form/PageCheckbox}/PageCheckbox.pug +0 -0
  215. /package/docs/src/views/{PageCheckbox → Form/PageCheckbox}/PageCheckbox.vue +0 -0
  216. /package/docs/src/views/{PageDatepicker → Form/PageDatepicker}/PageDatepicker.pug +0 -0
  217. /package/docs/src/views/{PageDatepicker → Form/PageDatepicker}/PageDatepicker.vue +0 -0
  218. /package/docs/src/views/{PageForm → Form/PageForm}/PageForm.pug +0 -0
  219. /package/docs/src/views/{PageForm → Form/PageForm}/PageForm.vue +0 -0
  220. /package/docs/src/views/{PageInput → Form/PageInput}/PageInput.pug +0 -0
  221. /package/docs/src/views/{PageInput → Form/PageInput}/PageInput.vue +0 -0
  222. /package/docs/src/views/{PageInputNumber → Form/PageInputNumber}/PageInputNumber.pug +0 -0
  223. /package/docs/src/views/{PageInputNumber → Form/PageInputNumber}/PageInputNumber.vue +0 -0
  224. /package/docs/src/views/{PageRadio → Form/PageRadio}/PageRadio.pug +0 -0
  225. /package/docs/src/views/{PageRadio → Form/PageRadio}/PageRadio.vue +0 -0
  226. /package/docs/src/views/{PageSelect → Form/PageSelect}/PageSelect.vue +0 -0
  227. /package/docs/src/views/{PageTinyMce → Form/PageTinyMce}/PageTinyMce.pug +0 -0
  228. /package/docs/src/views/{PageTinyMce → Form/PageTinyMce}/PageTinyMce.vue +0 -0
package/docs/package.json CHANGED
@@ -12,8 +12,8 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@popperjs/core": "2.11.8",
15
+ "aloha-css": "1.0.118",
15
16
  "axios": "1.4.0",
16
- "aloha-css": "1.0.115",
17
17
  "dompurify": "3.0.3",
18
18
  "fecha": "4.2.3",
19
19
  "highlight.js": "11.8.0",
@@ -49,6 +49,20 @@ export default {
49
49
  },
50
50
  icon: "EjectFill",
51
51
  },
52
+ {
53
+ id: "css",
54
+ label: "CSS",
55
+ icon: "FiletypeCss",
56
+ children: [
57
+ {
58
+ id: "columns",
59
+ label: "Columns",
60
+ to: {
61
+ name: "PageColumns",
62
+ },
63
+ },
64
+ ],
65
+ },
52
66
  {
53
67
  group: "Hola",
54
68
  id: "cloak",
@@ -115,6 +129,96 @@ export default {
115
129
  },
116
130
  icon: "MenuDown",
117
131
  },
132
+ {
133
+ id: "form",
134
+ label: "Form",
135
+ icon: "FileEarmarkText",
136
+ children: [
137
+ {
138
+ id: "checkbox",
139
+ label: "Checkbox",
140
+ to: {
141
+ name: "PageCheckbox",
142
+ }
143
+ },
144
+ {
145
+ id: "ui-child",
146
+ label: "Child",
147
+ children: [
148
+ {
149
+ id: "input",
150
+ to: {
151
+ name: "PageInput",
152
+ },
153
+ label: "Input",
154
+ }
155
+ ]
156
+ },
157
+ {
158
+ id: "datepicker",
159
+ label: "Datepicker",
160
+ to: {
161
+ name: "PageDatepicker",
162
+ }
163
+ },
164
+ {
165
+ id: "form",
166
+ label: "Form",
167
+ to: {
168
+ name: "PageForm",
169
+ }
170
+ },
171
+ {
172
+ id: "input",
173
+ to: {
174
+ name: "PageInput",
175
+ },
176
+ label: "Input",
177
+ },
178
+ {
179
+ id: "input-number",
180
+ to: {
181
+ name: "PageInputNumber",
182
+ },
183
+ label: "Input number",
184
+ },
185
+ {
186
+ id: "json",
187
+ label: "JSON",
188
+ to: {
189
+ name: "PageAJson",
190
+ }
191
+ },
192
+ {
193
+ id: "radio",
194
+ label: "Radio",
195
+ to: {
196
+ name: "PageRadio",
197
+ }
198
+ },
199
+ {
200
+ id: "rate",
201
+ label: "Rate",
202
+ to: {
203
+ name: "PageRate",
204
+ },
205
+ },
206
+ {
207
+ id: "select",
208
+ label: "Select",
209
+ to: {
210
+ name: "PageSelect",
211
+ }
212
+ },
213
+ {
214
+ id: "tinyMce",
215
+ label: "TinyMce",
216
+ to: {
217
+ name: "PageTinyMce",
218
+ },
219
+ },
220
+ ],
221
+ },
118
222
  {
119
223
  id: "GroupButtonDropdown",
120
224
  label: "GroupButtonDropdown",
@@ -273,97 +377,6 @@ export default {
273
377
  },
274
378
  icon: "ArrowRightCircleFill",
275
379
  },
276
- {
277
- id: "ui",
278
- label: "ui",
279
- icon: "InputCursor",
280
- children: [
281
- {
282
- id: "checkbox",
283
- label: "Checkbox",
284
- to: {
285
- name: "PageCheckbox",
286
- }
287
- },
288
- {
289
- id: "ui-child",
290
- label: "Child",
291
- children: [
292
- {
293
- id: "input",
294
- to: {
295
- name: "PageInput",
296
- },
297
- label: "Input",
298
- }
299
- ]
300
- },
301
- {
302
- id: "datepicker",
303
- label: "Datepicker",
304
- to: {
305
- name: "PageDatepicker",
306
- }
307
- },
308
- {
309
- id: "form",
310
- label: "Form",
311
- to: {
312
- name: "PageForm",
313
- }
314
- },
315
- {
316
- id: "input",
317
- to: {
318
- name: "PageInput",
319
- },
320
- label: "Input",
321
- },
322
- {
323
- id: "input-number",
324
- to: {
325
- name: "PageInputNumber",
326
- },
327
- label: "Input number",
328
- },
329
- {
330
- id: "json",
331
- label: "JSON",
332
- to: {
333
- name: "PageAJson",
334
- }
335
- },
336
- {
337
- id: "radio",
338
- label: "Radio",
339
- to: {
340
- name: "PageRadio",
341
- }
342
- },
343
- {
344
- id: "select",
345
- label: "Select",
346
- to: {
347
- name: "PageSelect",
348
- }
349
- },
350
- {
351
- id: "slotItem",
352
- label: "Slot",
353
- slot: "slotItem",
354
- to: {
355
- name: "PageRadio",
356
- }
357
- },
358
- {
359
- id: "tinyMce",
360
- label: "TinyMce",
361
- to: {
362
- name: "PageTinyMce",
363
- },
364
- },
365
- ],
366
- },
367
380
  ],
368
381
  };
369
382
  },
@@ -1,7 +1,9 @@
1
+ import ArrowRightCircle from "../../src/AIcon/Icons/bootstrap-1-9-1/ArrowRightCircle";
1
2
  import ArrowRightCircleFill from "../../src/AIcon/Icons/bootstrap-1-9-1/ArrowRightCircleFill";
2
3
  import ArrowsCollapse from "../../src/AIcon/Icons/bootstrap-1-9-1/ArrowsCollapse";
3
4
  import Bell from "../../src/AIcon/Icons/bootstrap-1-9-1/Bell";
4
5
  import BoxArrowUpRight from "../../src/AIcon/Icons/bootstrap-1-9-1/BoxArrowUpRight";
6
+ import ChatSquareText from "../../src/AIcon/Icons/bootstrap-1-9-1/ChatSquareText";
5
7
  import ChatSquareTextFill from "../../src/AIcon/Icons/bootstrap-1-9-1/ChatSquareTextFill";
6
8
  import CheckLg from "../../src/AIcon/Icons/bootstrap-1-9-1/CheckLg";
7
9
  import ChevronBarExpand from "../../src/AIcon/Icons/bootstrap-1-9-1/ChevronBarExpand";
@@ -14,7 +16,9 @@ import EjectFill from "../../src/AIcon/Icons/bootstrap-1-9-1/EjectFill";
14
16
  import Envelope from "../../src/AIcon/Icons/bootstrap3/Envelope";
15
17
  import ExclamationTriangle from "../../src/AIcon/Icons/bootstrap-1-9-1/ExclamationTriangle";
16
18
  import Export from "../../src/AIcon/Icons/bootstrap3/Export";
19
+ import FileEarmarkText from "../../src/AIcon/Icons/bootstrap-1-9-1/FileEarmarkText";
17
20
  import Files from "../../src/AIcon/Icons/bootstrap-1-9-1/Files";
21
+ import FiletypeCss from "../../src/AIcon/Icons/bootstrap-1-9-1/FiletypeCss";
18
22
  import FiletypeHtml from "../../src/AIcon/Icons/bootstrap-1-9-1/FiletypeHtml";
19
23
  import FiletypeJs from "../../src/AIcon/Icons/bootstrap-1-9-1/FiletypeJs";
20
24
  import FiletypeSvg from "../../src/AIcon/Icons/bootstrap-1-9-1/FiletypeSvg";
@@ -27,15 +31,21 @@ import ListUl from "../../src/AIcon/Icons/bootstrap-1-9-1/ListUl";
27
31
  import MenuDown from "../../src/AIcon/Icons/bootstrap-1-9-1/MenuDown";
28
32
  import Reception2 from "../../src/AIcon/Icons/bootstrap-1-9-1/Reception2";
29
33
  import SegmentedNav from "../../src/AIcon/Icons/bootstrap-1-9-1/SegmentedNav";
34
+ import StarFill from "../../src/AIcon/Icons/bootstrap-1-9-1/StarFill";
35
+ import Star from "../../src/AIcon/Icons/bootstrap3/StarEmpty";
30
36
  import Table from "../../src/AIcon/Icons/bootstrap-1-9-1/Table";
31
37
  import Translate from "../../src/AIcon/Icons/bootstrap-1-9-1/Translate";
32
38
  import Window from "../../src/AIcon/Icons/bootstrap-1-9-1/Window";
33
39
 
34
40
  export default {
41
+ ArrowRightCircle,
35
42
  ArrowRightCircleFill,
43
+ StarFill,
44
+ Star,
36
45
  ArrowsCollapse,
37
46
  Bell,
38
47
  BoxArrowUpRight,
48
+ ChatSquareText,
39
49
  ChatSquareTextFill,
40
50
  CheckLg,
41
51
  ChevronBarExpand,
@@ -48,7 +58,9 @@ export default {
48
58
  Envelope,
49
59
  ExclamationTriangle,
50
60
  Export,
61
+ FileEarmarkText,
51
62
  Files,
63
+ FiletypeCss,
52
64
  FiletypeHtml,
53
65
  FiletypeJs,
54
66
  FiletypeSvg,
@@ -10,6 +10,7 @@ import it from "./i18n/it.json";
10
10
  import ru from "./i18n/ru.json";
11
11
 
12
12
  import PageAAlertI18n from "./views/PageAlert/i18n/PageAAlertI18n";
13
+ import PageARateI18n from "./views/PageRate/i18n/PageARateI18n";
13
14
  import PageShowMoreI18n from "./views/PageShowMore/i18n/PageShowMoreI18n";
14
15
  import PageTranslationI18n from "./views/PageTranslation/i18n/PageTranslationI18n";
15
16
  import PageButtonI18n from "./views/PageButton/i18n/PageButtonI18n";
@@ -24,12 +25,15 @@ import PageTooltipI18n from "./views/PageTooltip/i18n/PageTooltipI18n";
24
25
  import PageGroupButtonDropdownI18n from "./views/PageGroupButtonDropdown/i18n/PageGroupButtonDropdownI18n";
25
26
  import PageDropdownI18n from "./views/PageDropdown/i18n/PageDropdownI18n";
26
27
  import PageListI18n from "./views/PageList/i18n/PageListI18n";
28
+ import PageSelectI18n from "./views/Form/PageSelect/i18n/PageSelectI18n";
29
+ import PageProgressI18n from "./views/PageProgress/i18n/PageProgressI18n";
27
30
 
28
31
  export const mainTranslation = {
29
32
  ar: {
30
33
  ...allLanguages.ar,
31
34
  ...ar,
32
35
  ...PageAAlertI18n.ar,
36
+ ...PageARateI18n.ar,
33
37
  ...PageShowMoreI18n.ar,
34
38
  ...PageTranslationI18n.ar,
35
39
  ...PageButtonI18n.ar,
@@ -44,11 +48,14 @@ export const mainTranslation = {
44
48
  ...PageGroupButtonDropdownI18n.ar,
45
49
  ...PageDropdownI18n.ar,
46
50
  ...PageListI18n.ar,
51
+ ...PageSelectI18n.ar,
52
+ ...PageProgressI18n.ar,
47
53
  },
48
54
  de: {
49
55
  ...allLanguages.de,
50
56
  ...de,
51
57
  ...PageAAlertI18n.de,
58
+ ...PageARateI18n.de,
52
59
  ...PageShowMoreI18n.de,
53
60
  ...PageTranslationI18n.de,
54
61
  ...PageButtonI18n.de,
@@ -63,11 +70,14 @@ export const mainTranslation = {
63
70
  ...PageGroupButtonDropdownI18n.de,
64
71
  ...PageDropdownI18n.de,
65
72
  ...PageListI18n.de,
73
+ ...PageSelectI18n.de,
74
+ ...PageProgressI18n.de,
66
75
  },
67
76
  en: {
68
77
  ...allLanguages.en,
69
78
  ...en,
70
79
  ...PageAAlertI18n.en,
80
+ ...PageARateI18n.en,
71
81
  ...PageShowMoreI18n.en,
72
82
  ...PageTranslationI18n.en,
73
83
  ...PageButtonI18n.en,
@@ -82,11 +92,14 @@ export const mainTranslation = {
82
92
  ...PageGroupButtonDropdownI18n.en,
83
93
  ...PageDropdownI18n.en,
84
94
  ...PageListI18n.en,
95
+ ...PageSelectI18n.en,
96
+ ...PageProgressI18n.en,
85
97
  },
86
98
  es: {
87
99
  ...allLanguages.es,
88
100
  ...es,
89
101
  ...PageAAlertI18n.es,
102
+ ...PageARateI18n.es,
90
103
  ...PageShowMoreI18n.es,
91
104
  ...PageTranslationI18n.es,
92
105
  ...PageButtonI18n.es,
@@ -101,11 +114,14 @@ export const mainTranslation = {
101
114
  ...PageGroupButtonDropdownI18n.es,
102
115
  ...PageDropdownI18n.es,
103
116
  ...PageListI18n.es,
117
+ ...PageSelectI18n.es,
118
+ ...PageProgressI18n.es,
104
119
  },
105
120
  fr: {
106
121
  ...allLanguages.fr,
107
122
  ...fr,
108
123
  ...PageAAlertI18n.fr,
124
+ ...PageARateI18n.fr,
109
125
  ...PageShowMoreI18n.fr,
110
126
  ...PageTranslationI18n.fr,
111
127
  ...PageButtonI18n.fr,
@@ -120,11 +136,14 @@ export const mainTranslation = {
120
136
  ...PageGroupButtonDropdownI18n.fr,
121
137
  ...PageDropdownI18n.fr,
122
138
  ...PageListI18n.fr,
139
+ ...PageSelectI18n.fr,
140
+ ...PageProgressI18n.fr,
123
141
  },
124
142
  hr: {
125
143
  ...allLanguages.hr,
126
144
  ...hr,
127
145
  ...PageAAlertI18n.hr,
146
+ ...PageARateI18n.hr,
128
147
  ...PageShowMoreI18n.hr,
129
148
  ...PageTranslationI18n.hr,
130
149
  ...PageButtonI18n.hr,
@@ -139,11 +158,14 @@ export const mainTranslation = {
139
158
  ...PageGroupButtonDropdownI18n.hr,
140
159
  ...PageDropdownI18n.hr,
141
160
  ...PageListI18n.hr,
161
+ ...PageSelectI18n.hr,
162
+ ...PageProgressI18n.hr,
142
163
  },
143
164
  it: {
144
165
  ...allLanguages.it,
145
166
  ...it,
146
167
  ...PageAAlertI18n.it,
168
+ ...PageARateI18n.it,
147
169
  ...PageShowMoreI18n.it,
148
170
  ...PageTranslationI18n.it,
149
171
  ...PageButtonI18n.it,
@@ -158,11 +180,14 @@ export const mainTranslation = {
158
180
  ...PageGroupButtonDropdownI18n.it,
159
181
  ...PageDropdownI18n.it,
160
182
  ...PageListI18n.it,
183
+ ...PageSelectI18n.it,
184
+ ...PageProgressI18n.it,
161
185
  },
162
186
  ru: {
163
187
  ...allLanguages.ru,
164
188
  ...ru,
165
189
  ...PageAAlertI18n.ru,
190
+ ...PageARateI18n.ru,
166
191
  ...PageShowMoreI18n.ru,
167
192
  ...PageTranslationI18n.ru,
168
193
  ...PageButtonI18n.ru,
@@ -177,5 +202,7 @@ export const mainTranslation = {
177
202
  ...PageGroupButtonDropdownI18n.ru,
178
203
  ...PageDropdownI18n.ru,
179
204
  ...PageListI18n.ru,
205
+ ...PageSelectI18n.ru,
206
+ ...PageProgressI18n.ru,
180
207
  },
181
208
  };
@@ -57,12 +57,12 @@ const ROUTES = [
57
57
  {
58
58
  path: "/input",
59
59
  name: "PageInput",
60
- component: () => import(/* webpackChunkName: "PageInput" */ "../views/PageInput/PageInput.vue"),
60
+ component: () => import(/* webpackChunkName: "PageInput" */ "../views/Form/PageInput/PageInput.vue"),
61
61
  },
62
62
  {
63
63
  path: "/json",
64
64
  name: "PageAJson",
65
- component: () => import(/* webpackChunkName: "PageAJson" */ "../views/PageAJson/PageAJson.vue"),
65
+ component: () => import(/* webpackChunkName: "PageAJson" */ "../views/Form/PageAJson/PageAJson.vue"),
66
66
  },
67
67
  {
68
68
  path: "/accordion",
@@ -74,6 +74,11 @@ const ROUTES = [
74
74
  name: "PageAlert",
75
75
  component: () => import(/* webpackChunkName: "PageAlert" */ "../views/PageAlert/PageAlert.vue"),
76
76
  },
77
+ {
78
+ path: "/rate",
79
+ name: "PageRate",
80
+ component: () => import(/* webpackChunkName: "PageAlert" */ "../views/PageRate/PageRate.vue"),
81
+ },
77
82
  {
78
83
  path: "/modal",
79
84
  name: "PageModal",
@@ -92,22 +97,22 @@ const ROUTES = [
92
97
  {
93
98
  path: "/checkbox",
94
99
  name: "PageCheckbox",
95
- component: () => import(/* webpackChunkName: "PageCheckbox" */ "../views/PageCheckbox/PageCheckbox.vue"),
100
+ component: () => import(/* webpackChunkName: "PageCheckbox" */ "../views/Form/PageCheckbox/PageCheckbox.vue"),
96
101
  },
97
102
  {
98
103
  path: "/radio",
99
104
  name: "PageRadio",
100
- component: () => import(/* webpackChunkName: "PageRadio" */ "../views/PageRadio/PageRadio.vue"),
105
+ component: () => import(/* webpackChunkName: "PageRadio" */ "../views/Form/PageRadio/PageRadio.vue"),
101
106
  },
102
107
  {
103
108
  path: "/select",
104
109
  name: "PageSelect",
105
- component: () => import(/* webpackChunkName: "PageSelect" */ "../views/PageSelect/PageSelect.vue"),
110
+ component: () => import(/* webpackChunkName: "PageSelect" */ "../views/Form/PageSelect/PageSelect.vue"),
106
111
  },
107
112
  {
108
113
  path: "/form",
109
114
  name: "PageForm",
110
- component: () => import(/* webpackChunkName: "PageForm" */ "../views/PageForm/PageForm.vue"),
115
+ component: () => import(/* webpackChunkName: "PageForm" */ "../views/Form/PageForm/PageForm.vue"),
111
116
  },
112
117
  {
113
118
  path: "/dropdown",
@@ -132,12 +137,12 @@ const ROUTES = [
132
137
  {
133
138
  path: "/datepicker",
134
139
  name: "PageDatepicker",
135
- component: () => import(/* webpackChunkName: "PageDatepicker" */ "../views/PageDatepicker/PageDatepicker.vue"),
140
+ component: () => import(/* webpackChunkName: "PageDatepicker" */ "../views/Form/PageDatepicker/PageDatepicker.vue"),
136
141
  },
137
142
  {
138
143
  path: "/tinymce",
139
144
  name: "PageTinyMce",
140
- component: () => import(/* webpackChunkName: "PageTinyMce" */ "../views/PageTinyMce/PageTinyMce.vue"),
145
+ component: () => import(/* webpackChunkName: "PageTinyMce" */ "../views/Form/PageTinyMce/PageTinyMce.vue"),
141
146
  },
142
147
  {
143
148
  path: "/loading",
@@ -167,7 +172,7 @@ const ROUTES = [
167
172
  {
168
173
  path: "/input-number",
169
174
  name: "PageInputNumber",
170
- component: () => import(/* webpackChunkName: "PageInputNumber" */ "../views/PageInputNumber/PageInputNumber.vue"),
175
+ component: () => import(/* webpackChunkName: "PageInputNumber" */ "../views/Form/PageInputNumber/PageInputNumber.vue"),
171
176
  },
172
177
  {
173
178
  path: "/group-button-dropdown",
@@ -209,6 +214,11 @@ const ROUTES = [
209
214
  name: "PageDisclosure",
210
215
  component: () => import(/* webpackChunkName: "PageDisclosure" */ "../views/PageDisclosure/PageDisclosure.vue"),
211
216
  },
217
+ {
218
+ path: "/columns",
219
+ name: "PageColumns",
220
+ component: () => import(/* webpackChunkName: "PageColumns" */ "../views/CSS/PageColumns/PageColumns.vue"),
221
+ },
212
222
  {
213
223
  // If the routing configuration '*' reports an error, replace it with '/: catchAll(. *)'
214
224
  // caught Error: Catch all routes ("*") must now be defined using a param with a custom regexp
@@ -0,0 +1,4 @@
1
+
2
+ export default {
3
+ name: "PageColumns",
4
+ };
@@ -0,0 +1,23 @@
1
+ div
2
+ h1 Columns
3
+
4
+ .a_columns.a_columns_count_12
5
+ .a_column.a_column_6
6
+ .a_height_6.a_bg_gray_400 a_column_6
7
+ .a_column.a_column_6
8
+ .a_height_6.a_bg_gray_400 a_column_6
9
+ .a_column.a_column_6
10
+ .a_height_6.a_bg_gray_400 a_column_6
11
+ .a_column.a_column_6
12
+ .a_height_6.a_bg_gray_400 a_column_6
13
+
14
+ .a_columns.a_columns_count_12
15
+ .a_column.a_column_6
16
+ .a_height_6.a_bg_gray_400 a_column_6
17
+ .a_column.a_column_6
18
+ .a_height_6.a_bg_gray_400 a_column_6
19
+ .a_column.a_column_6
20
+ .a_height_6.a_bg_gray_400 a_column_6
21
+ .a_column.a_column_6
22
+ .a_height_6.a_bg_gray_400 a_column_6
23
+
@@ -0,0 +1,2 @@
1
+ <template lang="pug" src="./PageColumns.pug"></template>
2
+ <script src="./PageColumns.js"></script>
@@ -1,4 +1,4 @@
1
- import AJson from "../../../../src/AJson/AJson";
1
+ import AJson from "../../../../../src/AJson/AJson";
2
2
 
3
3
 
4
4
  export default {
@@ -1,5 +1,5 @@
1
- import ACheckbox from "../../../../src/ui/ACheckbox/ACheckbox";
2
- import AOneCheckbox from "../../../../src/ui/AOneCheckbox/AOneCheckbox";
1
+ import ACheckbox from "../../../../../src/ui/ACheckbox/ACheckbox";
2
+ import AOneCheckbox from "../../../../../src/ui/AOneCheckbox/AOneCheckbox";
3
3
 
4
4
  export default {
5
5
  name: "PageCheckbox",
@@ -1,4 +1,4 @@
1
- import ADatepicker from "../../../../src/ui/ADatepicker/ADatepicker";
1
+ import ADatepicker from "../../../../../src/ui/ADatepicker/ADatepicker";
2
2
 
3
3
  export default {
4
4
  name: "PageDatepicker",
@@ -1,4 +1,4 @@
1
- import AForm from "../../../../src/ui/AForm/AForm";
1
+ import AForm from "../../../../../src/ui/AForm/AForm";
2
2
 
3
3
  export default {
4
4
  name: "PageForm",
@@ -1,5 +1,5 @@
1
- import AInput from "../../../../src/ui/AInput/AInput";
2
- import ATextarea from "../../../../src/ui/ATextarea/ATextarea";
1
+ import AInput from "../../../../../src/ui/AInput/AInput";
2
+ import ATextarea from "../../../../../src/ui/ATextarea/ATextarea";
3
3
 
4
4
 
5
5
  export default {
@@ -1,4 +1,4 @@
1
- import AInputNumber from "../../../../src/ui/AInputNumber/AInputNumber";
1
+ import AInputNumber from "../../../../../src/ui/AInputNumber/AInputNumber";
2
2
 
3
3
  export default {
4
4
  name: "PageInputNumber",
@@ -1,4 +1,4 @@
1
- import ARadio from "../../../../src/ui/ARadio/ARadio";
1
+ import ARadio from "../../../../../src/ui/ARadio/ARadio";
2
2
 
3
3
  export default {
4
4
  name: "PageRadio",
@@ -1,11 +1,54 @@
1
- import AIcon from "../../../../src/AIcon/AIcon";
2
- import ASelect from "../../../../src/ui/ASelect/ASelect";
1
+ import AlohaPage from "../../../global/components/AlohaPage/AlohaPage.vue";
2
+ import AlohaTableProps from "../../../global/components/AlohaTableProps/AlohaTableProps.vue";
3
+ import ATranslation from "../../../../../src/ATranslation/ATranslation";
4
+ import AIcon from "../../../../../src/AIcon/AIcon";
5
+ import ASelect from "../../../../../src/ui/ASelect/ASelect";
6
+ import PageSelectBasic from "./PageSelectBasic/PageSelectBasic.vue";
7
+
8
+ import PageTitleAPI from "./compositionAPI/PageTitleAPI";
9
+ import PropsAPI from "./compositionAPI/PropsAPI";
10
+ import SlotsAPI from "./compositionAPI/SlotsAPI";
11
+ import EventsAPI from "./compositionAPI/EventsAPI";
12
+ import ExposesAPI from "./compositionAPI/ExposesAPI";
3
13
 
4
14
  export default {
5
15
  name: "PageSelect",
6
16
  components: {
17
+ AlohaPage,
18
+ AlohaTableProps,
19
+ ATranslation,
7
20
  AIcon,
8
21
  ASelect,
22
+ PageSelectBasic,
23
+ },
24
+ setup() {
25
+ const {
26
+ pageTitle,
27
+ } = PageTitleAPI();
28
+
29
+ const {
30
+ dataProps,
31
+ } = PropsAPI();
32
+
33
+ const {
34
+ dataSlots,
35
+ } = SlotsAPI();
36
+
37
+ const {
38
+ dataEvents,
39
+ } = EventsAPI();
40
+
41
+ const {
42
+ dataExposes,
43
+ } = ExposesAPI();
44
+
45
+ return {
46
+ dataEvents,
47
+ dataExposes,
48
+ dataProps,
49
+ dataSlots,
50
+ pageTitle,
51
+ };
9
52
  },
10
53
  data() {
11
54
  return {