linear-react-components-ui 1.1.20-beta.33 → 1.1.20-beta.34

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 (641) hide show
  1. package/lib/@types/Align.d.ts +4 -0
  2. package/lib/@types/Align.js +5 -0
  3. package/lib/@types/ButtonTypes.d.ts +3 -0
  4. package/lib/@types/ButtonTypes.js +5 -0
  5. package/lib/@types/ColorStyles.d.ts +3 -0
  6. package/lib/@types/ColorStyles.js +5 -0
  7. package/lib/@types/DataCombo.d.ts +3 -0
  8. package/lib/@types/DataCombo.js +5 -0
  9. package/lib/@types/Icon.d.ts +5 -0
  10. package/lib/@types/Icon.js +5 -0
  11. package/lib/@types/LabelStyles.d.ts +3 -0
  12. package/lib/@types/LabelStyles.js +5 -0
  13. package/lib/@types/Period.d.ts +6 -0
  14. package/lib/@types/Period.js +5 -0
  15. package/lib/@types/PermissionAttr.d.ts +14 -0
  16. package/lib/@types/PermissionAttr.js +5 -0
  17. package/lib/@types/PointerEvents.d.ts +3 -0
  18. package/lib/@types/PointerEvents.js +5 -0
  19. package/lib/@types/Position.d.ts +3 -0
  20. package/lib/@types/Position.js +5 -0
  21. package/lib/@types/PositionAlert.d.ts +3 -0
  22. package/lib/@types/PositionAlert.js +5 -0
  23. package/lib/@types/Size.d.ts +3 -0
  24. package/lib/@types/Size.js +5 -0
  25. package/lib/@types/SizePixels.d.ts +3 -0
  26. package/lib/@types/SizePixels.js +5 -0
  27. package/lib/@types/StorageMock.d.ts +5 -0
  28. package/lib/@types/StorageMock.js +5 -0
  29. package/lib/alerts/AlertContainer.d.ts +18 -0
  30. package/lib/alerts/AlertContainer.js +80 -0
  31. package/lib/alerts/AlertProvider.d.ts +9 -0
  32. package/lib/alerts/AlertProvider.js +73 -0
  33. package/lib/alerts/BaseAlert.d.ts +9 -0
  34. package/lib/alerts/BaseAlert.js +34 -0
  35. package/lib/alerts/Message.d.ts +9 -0
  36. package/lib/alerts/Message.js +114 -0
  37. package/lib/alerts/helpers.d.ts +9 -0
  38. package/lib/alerts/helpers.js +9 -0
  39. package/lib/alerts/index.d.ts +11 -0
  40. package/lib/alerts/index.js +16 -0
  41. package/lib/alerts/types.d.ts +51 -0
  42. package/lib/alerts/types.js +5 -0
  43. package/lib/alerts/withAlert.d.ts +9 -0
  44. package/lib/alerts/withAlert.js +24 -0
  45. package/lib/assets/fonts/Roboto-Black.woff +0 -0
  46. package/lib/assets/fonts/Roboto-Black.woff2 +0 -0
  47. package/lib/assets/fonts/Roboto-Bold.woff +0 -0
  48. package/lib/assets/fonts/Roboto-Bold.woff2 +0 -0
  49. package/lib/assets/fonts/Roboto-Light.woff +0 -0
  50. package/lib/assets/fonts/Roboto-Light.woff2 +0 -0
  51. package/lib/assets/fonts/Roboto-Medium.woff +0 -0
  52. package/lib/assets/fonts/Roboto-Medium.woff2 +0 -0
  53. package/lib/assets/fonts/Roboto-Regular.woff +0 -0
  54. package/lib/assets/fonts/Roboto-Regular.woff2 +0 -0
  55. package/lib/assets/fonts/Roboto-Thin.woff +0 -0
  56. package/lib/assets/fonts/Roboto-Thin.woff2 +0 -0
  57. package/lib/assets/fonts/TitilliumWeb-Black.woff +0 -0
  58. package/lib/assets/fonts/TitilliumWeb-Black.woff2 +0 -0
  59. package/lib/assets/fonts/TitilliumWeb-Bold.woff +0 -0
  60. package/lib/assets/fonts/TitilliumWeb-Bold.woff2 +0 -0
  61. package/lib/assets/fonts/TitilliumWeb-ExtraLight.woff +0 -0
  62. package/lib/assets/fonts/TitilliumWeb-ExtraLight.woff2 +0 -0
  63. package/lib/assets/fonts/TitilliumWeb-Light.woff +0 -0
  64. package/lib/assets/fonts/TitilliumWeb-Light.woff2 +0 -0
  65. package/lib/assets/fonts/TitilliumWeb-Regular.woff +0 -0
  66. package/lib/assets/fonts/TitilliumWeb-Regular.woff2 +0 -0
  67. package/lib/assets/fonts/TitilliumWeb-SemiBold.woff +0 -0
  68. package/lib/assets/fonts/TitilliumWeb-SemiBold.woff2 +0 -0
  69. package/lib/assets/images/logo.png +0 -0
  70. package/lib/assets/styles/alerts.scss +149 -0
  71. package/lib/assets/styles/avatar.scss +42 -0
  72. package/lib/assets/styles/badge.scss +48 -0
  73. package/lib/assets/styles/button.scss +345 -0
  74. package/lib/assets/styles/calendar.scss +172 -0
  75. package/lib/assets/styles/checkbox.scss +108 -0
  76. package/lib/assets/styles/colorpicker.scss +17 -0
  77. package/lib/assets/styles/colors.scss +144 -0
  78. package/lib/assets/styles/commons.scss +138 -0
  79. package/lib/assets/styles/datepicker.scss +16 -0
  80. package/lib/assets/styles/dialog.scss +200 -0
  81. package/lib/assets/styles/drawers.scss +159 -0
  82. package/lib/assets/styles/dropdown.scss +179 -0
  83. package/lib/assets/styles/effects.scss +823 -0
  84. package/lib/assets/styles/error.scss +9 -0
  85. package/lib/assets/styles/fieldset.scss +96 -0
  86. package/lib/assets/styles/file.scss +224 -0
  87. package/lib/assets/styles/floatMenu.scss +17 -0
  88. package/lib/assets/styles/fonts.scss +86 -0
  89. package/lib/assets/styles/form.scss +23 -0
  90. package/lib/assets/styles/gridlayout.scss +2054 -0
  91. package/lib/assets/styles/hint.scss +30 -0
  92. package/lib/assets/styles/icon.scss +42 -0
  93. package/lib/assets/styles/input.scss +156 -0
  94. package/lib/assets/styles/label.scss +116 -0
  95. package/lib/assets/styles/labelMessages.scss +81 -0
  96. package/lib/assets/styles/list.scss +124 -0
  97. package/lib/assets/styles/multiSelect.scss +125 -0
  98. package/lib/assets/styles/noPermission.scss +25 -0
  99. package/lib/assets/styles/numbers.scss +5 -0
  100. package/lib/assets/styles/panel.scss +95 -0
  101. package/lib/assets/styles/periodpicker.scss +69 -0
  102. package/lib/assets/styles/popover.scss +44 -0
  103. package/lib/assets/styles/progress.scss +72 -0
  104. package/lib/assets/styles/radio.scss +156 -0
  105. package/lib/assets/styles/search.scss +13 -0
  106. package/lib/assets/styles/select.scss +155 -0
  107. package/lib/assets/styles/shortcuts.scss +59 -0
  108. package/lib/assets/styles/sidenav.scss +408 -0
  109. package/lib/assets/styles/skeleton.scss +48 -0
  110. package/lib/assets/styles/spinner.scss +34 -0
  111. package/lib/assets/styles/split.scss +80 -0
  112. package/lib/assets/styles/table.scss +179 -0
  113. package/lib/assets/styles/tabs.scss +266 -0
  114. package/lib/assets/styles/textContent.scss +9 -0
  115. package/lib/assets/styles/toolbar.scss +74 -0
  116. package/lib/assets/styles/tooltip.scss +95 -0
  117. package/lib/assets/styles/treetable.scss +100 -0
  118. package/lib/assets/styles/treeview.scss +96 -0
  119. package/lib/assets/styles/uitour.scss +112 -0
  120. package/lib/assets/styles/wizard.scss +125 -0
  121. package/lib/avatar/index.d.ts +12 -0
  122. package/lib/avatar/index.js +91 -0
  123. package/lib/avatar/types.d.ts +31 -0
  124. package/lib/avatar/types.js +5 -0
  125. package/lib/badge/index.d.ts +6 -0
  126. package/lib/badge/index.js +30 -0
  127. package/lib/badge/types.d.ts +13 -0
  128. package/lib/badge/types.js +5 -0
  129. package/lib/buttons/ActivateButton.d.ts +11 -0
  130. package/lib/buttons/ActivateButton.js +14 -0
  131. package/lib/buttons/AddButton.d.ts +11 -0
  132. package/lib/buttons/AddButton.js +18 -0
  133. package/lib/buttons/Button.d.ts +14 -0
  134. package/lib/buttons/Button.js +23 -0
  135. package/lib/buttons/ButtonGroups.d.ts +8 -0
  136. package/lib/buttons/ButtonGroups.js +17 -0
  137. package/lib/buttons/CancelButton.d.ts +11 -0
  138. package/lib/buttons/CancelButton.js +23 -0
  139. package/lib/buttons/DangerButton.d.ts +11 -0
  140. package/lib/buttons/DangerButton.js +23 -0
  141. package/lib/buttons/DefaultButton.d.ts +14 -0
  142. package/lib/buttons/DefaultButton.js +176 -0
  143. package/lib/buttons/DestroyButton.d.ts +11 -0
  144. package/lib/buttons/DestroyButton.js +27 -0
  145. package/lib/buttons/EditButton.d.ts +11 -0
  146. package/lib/buttons/EditButton.js +14 -0
  147. package/lib/buttons/InactivateButton.d.ts +11 -0
  148. package/lib/buttons/InactivateButton.js +14 -0
  149. package/lib/buttons/InfoButton.d.ts +11 -0
  150. package/lib/buttons/InfoButton.js +23 -0
  151. package/lib/buttons/PrimaryButton.d.ts +11 -0
  152. package/lib/buttons/PrimaryButton.js +23 -0
  153. package/lib/buttons/RestoreButton.d.ts +11 -0
  154. package/lib/buttons/RestoreButton.js +14 -0
  155. package/lib/buttons/SaveButton.d.ts +11 -0
  156. package/lib/buttons/SaveButton.js +23 -0
  157. package/lib/buttons/SuccessButton.d.ts +11 -0
  158. package/lib/buttons/SuccessButton.js +23 -0
  159. package/lib/buttons/WarningButton.d.ts +11 -0
  160. package/lib/buttons/WarningButton.js +23 -0
  161. package/lib/buttons/button_container/index.d.ts +12 -0
  162. package/lib/buttons/button_container/index.js +30 -0
  163. package/lib/buttons/index.d.ts +26 -0
  164. package/lib/buttons/index.js +108 -0
  165. package/lib/buttons/split_button/index.d.ts +11 -0
  166. package/lib/buttons/split_button/index.js +57 -0
  167. package/lib/buttons/types.d.ts +49 -0
  168. package/lib/buttons/types.js +5 -0
  169. package/lib/calendar/DangerCalendar.d.ts +7 -0
  170. package/lib/calendar/DangerCalendar.js +23 -0
  171. package/lib/calendar/InfoCalendar.d.ts +7 -0
  172. package/lib/calendar/InfoCalendar.js +23 -0
  173. package/lib/calendar/PrimaryCalendar.d.ts +7 -0
  174. package/lib/calendar/PrimaryCalendar.js +23 -0
  175. package/lib/calendar/SuccessCalendar.d.ts +7 -0
  176. package/lib/calendar/SuccessCalendar.js +23 -0
  177. package/lib/calendar/WarningCalendar.d.ts +7 -0
  178. package/lib/calendar/WarningCalendar.js +23 -0
  179. package/lib/calendar/base/Day.d.ts +7 -0
  180. package/lib/calendar/base/Day.js +32 -0
  181. package/lib/calendar/base/Month.d.ts +7 -0
  182. package/lib/calendar/base/Month.js +37 -0
  183. package/lib/calendar/base/Week.d.ts +7 -0
  184. package/lib/calendar/base/Week.js +35 -0
  185. package/lib/calendar/base/helpers.d.ts +62 -0
  186. package/lib/calendar/base/helpers.js +117 -0
  187. package/lib/calendar/base/index.d.ts +7 -0
  188. package/lib/calendar/base/index.js +79 -0
  189. package/lib/calendar/index.d.ts +13 -0
  190. package/lib/calendar/index.js +44 -0
  191. package/lib/calendar/types.d.ts +25 -0
  192. package/lib/calendar/types.js +5 -0
  193. package/lib/checkbox/index.d.ts +13 -0
  194. package/lib/checkbox/index.js +145 -0
  195. package/lib/checkbox/types.d.ts +47 -0
  196. package/lib/checkbox/types.js +5 -0
  197. package/lib/dialog/Alert.d.ts +9 -0
  198. package/lib/dialog/Alert.js +28 -0
  199. package/lib/dialog/Custom.d.ts +9 -0
  200. package/lib/dialog/Custom.js +56 -0
  201. package/lib/dialog/Error.d.ts +9 -0
  202. package/lib/dialog/Error.js +28 -0
  203. package/lib/dialog/Information.d.ts +9 -0
  204. package/lib/dialog/Information.js +28 -0
  205. package/lib/dialog/Question.d.ts +9 -0
  206. package/lib/dialog/Question.js +60 -0
  207. package/lib/dialog/Warning.d.ts +9 -0
  208. package/lib/dialog/Warning.js +28 -0
  209. package/lib/dialog/base/Content.d.ts +9 -0
  210. package/lib/dialog/base/Content.js +22 -0
  211. package/lib/dialog/base/Footer.d.ts +9 -0
  212. package/lib/dialog/base/Footer.js +12 -0
  213. package/lib/dialog/base/Header.d.ts +9 -0
  214. package/lib/dialog/base/Header.js +59 -0
  215. package/lib/dialog/base/index.d.ts +15 -0
  216. package/lib/dialog/base/index.js +157 -0
  217. package/lib/dialog/base/style.js +13 -0
  218. package/lib/dialog/form/index.d.ts +10 -0
  219. package/lib/dialog/form/index.js +84 -0
  220. package/lib/dialog/index.d.ts +16 -0
  221. package/lib/dialog/index.js +51 -0
  222. package/lib/dialog/types.d.ts +105 -0
  223. package/lib/dialog/types.js +5 -0
  224. package/lib/dialog/wizard/index.d.ts +13 -0
  225. package/lib/dialog/wizard/index.js +74 -0
  226. package/lib/dialog/wizard/progressbar.d.ts +13 -0
  227. package/lib/dialog/wizard/progressbar.js +36 -0
  228. package/lib/dialog/wizard/step.d.ts +9 -0
  229. package/lib/dialog/wizard/step.js +22 -0
  230. package/lib/dialog/wizard/useWizard.d.ts +9 -0
  231. package/lib/dialog/wizard/useWizard.js +48 -0
  232. package/lib/drawer/Content.d.ts +10 -0
  233. package/lib/drawer/Content.js +26 -0
  234. package/lib/drawer/Drawer.d.ts +10 -0
  235. package/lib/drawer/Drawer.js +138 -0
  236. package/lib/drawer/Header.d.ts +10 -0
  237. package/lib/drawer/Header.js +76 -0
  238. package/lib/drawer/helpers.d.ts +10 -0
  239. package/lib/drawer/helpers.js +10 -0
  240. package/lib/drawer/index.d.ts +12 -0
  241. package/lib/drawer/index.js +25 -0
  242. package/lib/drawer/types.d.ts +41 -0
  243. package/lib/drawer/types.js +5 -0
  244. package/lib/dropdown/Popup.d.ts +6 -0
  245. package/lib/dropdown/Popup.js +69 -0
  246. package/lib/dropdown/helper.d.ts +4 -0
  247. package/lib/dropdown/helper.js +16 -0
  248. package/lib/dropdown/types.d.ts +44 -0
  249. package/lib/dropdown/types.js +5 -0
  250. package/lib/dropdown/withDropdown.d.ts +10 -0
  251. package/lib/dropdown/withDropdown.js +92 -0
  252. package/lib/fieldset/index.d.ts +8 -0
  253. package/lib/fieldset/index.js +83 -0
  254. package/lib/fieldset/types.d.ts +30 -0
  255. package/lib/fieldset/types.js +5 -0
  256. package/lib/form/Field.d.ts +14 -0
  257. package/lib/form/Field.js +118 -0
  258. package/lib/form/FieldArray.d.ts +14 -0
  259. package/lib/form/FieldArray.js +105 -0
  260. package/lib/form/FieldNumber.d.ts +14 -0
  261. package/lib/form/FieldNumber.js +68 -0
  262. package/lib/form/FieldPeriod.d.ts +14 -0
  263. package/lib/form/FieldPeriod.js +98 -0
  264. package/lib/form/helpers.d.ts +19 -0
  265. package/lib/form/helpers.js +50 -0
  266. package/lib/form/index.d.ts +18 -0
  267. package/lib/form/index.js +283 -0
  268. package/lib/form/types.d.ts +243 -0
  269. package/lib/form/types.js +5 -0
  270. package/lib/form/withFieldHOC.d.ts +14 -0
  271. package/lib/form/withFieldHOC.js +71 -0
  272. package/lib/form/withFormSecurity.d.ts +15 -0
  273. package/lib/form/withFormSecurity.js +55 -0
  274. package/lib/gridlayout/GridCol.d.ts +6 -0
  275. package/lib/gridlayout/GridCol.js +34 -0
  276. package/lib/gridlayout/GridRow.d.ts +6 -0
  277. package/lib/gridlayout/GridRow.js +34 -0
  278. package/lib/gridlayout/index.d.ts +8 -0
  279. package/lib/gridlayout/index.js +16 -0
  280. package/lib/gridlayout/types.d.ts +20 -0
  281. package/lib/gridlayout/types.js +5 -0
  282. package/lib/hint/helpers.d.ts +3 -0
  283. package/lib/hint/helpers.js +21 -0
  284. package/lib/hint/index.d.ts +7 -0
  285. package/lib/hint/index.js +36 -0
  286. package/lib/hint/types.d.ts +14 -0
  287. package/lib/hint/types.js +5 -0
  288. package/lib/icons/helper.d.ts +636 -0
  289. package/lib/icons/helper.js +640 -0
  290. package/lib/icons/index.d.ts +15 -0
  291. package/lib/icons/index.js +71 -0
  292. package/lib/icons/types.d.ts +49 -0
  293. package/lib/icons/types.js +5 -0
  294. package/lib/index.d.ts +39 -0
  295. package/lib/index.js +69 -0
  296. package/lib/inputs/base/InputTextBase.d.ts +11 -0
  297. package/lib/inputs/base/InputTextBase.js +261 -0
  298. package/lib/inputs/base/Label.d.ts +14 -0
  299. package/lib/inputs/base/Label.js +35 -0
  300. package/lib/inputs/base/helpers.d.ts +17 -0
  301. package/lib/inputs/base/helpers.js +46 -0
  302. package/lib/inputs/base/types.d.ts +100 -0
  303. package/lib/inputs/base/types.js +5 -0
  304. package/lib/inputs/color/index.d.ts +7 -0
  305. package/lib/inputs/color/index.js +95 -0
  306. package/lib/inputs/color/types.d.ts +19 -0
  307. package/lib/inputs/color/types.js +5 -0
  308. package/lib/inputs/date/Dialog.d.ts +13 -0
  309. package/lib/inputs/date/Dialog.js +25 -0
  310. package/lib/inputs/date/Dropdown.d.ts +13 -0
  311. package/lib/inputs/date/Dropdown.js +32 -0
  312. package/lib/inputs/date/helpers.d.ts +17 -0
  313. package/lib/inputs/date/helpers.js +31 -0
  314. package/lib/inputs/date/index.d.ts +13 -0
  315. package/lib/inputs/date/index.js +251 -0
  316. package/lib/inputs/date/types.d.ts +62 -0
  317. package/lib/inputs/date/types.js +5 -0
  318. package/lib/inputs/errorMessage/index.d.ts +16 -0
  319. package/lib/inputs/errorMessage/index.js +26 -0
  320. package/lib/inputs/file/DefaultFile.d.ts +13 -0
  321. package/lib/inputs/file/DefaultFile.js +80 -0
  322. package/lib/inputs/file/DragDropFile.d.ts +13 -0
  323. package/lib/inputs/file/DragDropFile.js +272 -0
  324. package/lib/inputs/file/File.d.ts +13 -0
  325. package/lib/inputs/file/File.js +63 -0
  326. package/lib/inputs/file/FileButtonSettings.d.ts +13 -0
  327. package/lib/inputs/file/FileButtonSettings.js +34 -0
  328. package/lib/inputs/file/helpers.d.ts +13 -0
  329. package/lib/inputs/file/helpers.js +21 -0
  330. package/lib/inputs/file/index.d.ts +16 -0
  331. package/lib/inputs/file/index.js +24 -0
  332. package/lib/inputs/file/types.d.ts +57 -0
  333. package/lib/inputs/file/types.js +5 -0
  334. package/lib/inputs/inputHOC.d.ts +16 -0
  335. package/lib/inputs/inputHOC.js +44 -0
  336. package/lib/inputs/mask/BaseMask.d.ts +12 -0
  337. package/lib/inputs/mask/BaseMask.js +167 -0
  338. package/lib/inputs/mask/Cnpj.d.ts +15 -0
  339. package/lib/inputs/mask/Cnpj.js +60 -0
  340. package/lib/inputs/mask/Cpf.d.ts +15 -0
  341. package/lib/inputs/mask/Cpf.js +57 -0
  342. package/lib/inputs/mask/Phone.d.ts +12 -0
  343. package/lib/inputs/mask/Phone.js +19 -0
  344. package/lib/inputs/mask/ZipCode.d.ts +12 -0
  345. package/lib/inputs/mask/ZipCode.js +14 -0
  346. package/lib/inputs/mask/helpers.d.ts +62 -0
  347. package/lib/inputs/mask/helpers.js +138 -0
  348. package/lib/inputs/mask/index.d.ts +17 -0
  349. package/lib/inputs/mask/index.js +37 -0
  350. package/lib/inputs/mask/types.d.ts +79 -0
  351. package/lib/inputs/mask/types.js +5 -0
  352. package/lib/inputs/multiSelect/ActionButtons.d.ts +13 -0
  353. package/lib/inputs/multiSelect/ActionButtons.js +51 -0
  354. package/lib/inputs/multiSelect/Dropdown.d.ts +13 -0
  355. package/lib/inputs/multiSelect/Dropdown.js +136 -0
  356. package/lib/inputs/multiSelect/helper.d.ts +13 -0
  357. package/lib/inputs/multiSelect/helper.js +20 -0
  358. package/lib/inputs/multiSelect/index.d.ts +13 -0
  359. package/lib/inputs/multiSelect/index.js +218 -0
  360. package/lib/inputs/multiSelect/types.d.ts +65 -0
  361. package/lib/inputs/multiSelect/types.js +5 -0
  362. package/lib/inputs/number/BaseNumber.d.ts +17 -0
  363. package/lib/inputs/number/BaseNumber.js +70 -0
  364. package/lib/inputs/number/Currency.d.ts +17 -0
  365. package/lib/inputs/number/Currency.js +22 -0
  366. package/lib/inputs/number/Decimal.d.ts +17 -0
  367. package/lib/inputs/number/Decimal.js +11 -0
  368. package/lib/inputs/number/format_number.d.ts +5 -0
  369. package/lib/inputs/number/format_number.js +27 -0
  370. package/lib/inputs/number/index.d.ts +19 -0
  371. package/lib/inputs/number/index.js +64 -0
  372. package/lib/inputs/number/types.d.ts +39 -0
  373. package/lib/inputs/number/types.js +5 -0
  374. package/lib/inputs/period/Dialog.d.ts +14 -0
  375. package/lib/inputs/period/Dialog.js +25 -0
  376. package/lib/inputs/period/Dropdown.d.ts +14 -0
  377. package/lib/inputs/period/Dropdown.js +28 -0
  378. package/lib/inputs/period/PeriodList.d.ts +14 -0
  379. package/lib/inputs/period/PeriodList.js +61 -0
  380. package/lib/inputs/period/helper.d.ts +22 -0
  381. package/lib/inputs/period/helper.js +66 -0
  382. package/lib/inputs/period/index.d.ts +14 -0
  383. package/lib/inputs/period/index.js +423 -0
  384. package/lib/inputs/period/types.d.ts +73 -0
  385. package/lib/inputs/period/types.js +5 -0
  386. package/lib/inputs/search/index.d.ts +16 -0
  387. package/lib/inputs/search/index.js +129 -0
  388. package/lib/inputs/select/ActionButtons.d.ts +16 -0
  389. package/lib/inputs/select/ActionButtons.js +38 -0
  390. package/lib/inputs/select/Dropdown.d.ts +16 -0
  391. package/lib/inputs/select/Dropdown.js +112 -0
  392. package/lib/inputs/select/helper.d.ts +25 -0
  393. package/lib/inputs/select/helper.js +108 -0
  394. package/lib/inputs/select/index.d.ts +13 -0
  395. package/lib/inputs/select/index.js +42 -0
  396. package/lib/inputs/select/multiple/Selecteds.d.ts +13 -0
  397. package/lib/inputs/select/multiple/Selecteds.js +25 -0
  398. package/lib/inputs/select/multiple/index.d.ts +13 -0
  399. package/lib/inputs/select/multiple/index.js +276 -0
  400. package/lib/inputs/select/simple/index.d.ts +13 -0
  401. package/lib/inputs/select/simple/index.js +302 -0
  402. package/lib/inputs/select/types.d.ts +119 -0
  403. package/lib/inputs/select/types.js +5 -0
  404. package/lib/inputs/text/index.d.ts +12 -0
  405. package/lib/inputs/text/index.js +13 -0
  406. package/lib/inputs/text/types.d.ts +25 -0
  407. package/lib/inputs/text/types.js +5 -0
  408. package/lib/inputs/textarea/index.d.ts +12 -0
  409. package/lib/inputs/textarea/index.js +25 -0
  410. package/lib/inputs/textarea/types.d.ts +16 -0
  411. package/lib/inputs/textarea/types.js +5 -0
  412. package/lib/inputs/types.d.ts +157 -0
  413. package/lib/inputs/types.js +5 -0
  414. package/lib/internals/colorStyles.d.ts +9 -0
  415. package/lib/internals/colorStyles.js +14 -0
  416. package/lib/internals/constants.d.ts +11 -0
  417. package/lib/internals/constants.js +15 -0
  418. package/lib/internals/types.d.ts +25 -0
  419. package/lib/internals/types.js +5 -0
  420. package/lib/internals/withTooltip.d.ts +12 -0
  421. package/lib/internals/withTooltip.js +172 -0
  422. package/lib/labelMessages/index.d.ts +9 -0
  423. package/lib/labelMessages/index.js +60 -0
  424. package/lib/labelMessages/types.d.ts +20 -0
  425. package/lib/labelMessages/types.js +5 -0
  426. package/lib/labels/DangerLabel.d.ts +11 -0
  427. package/lib/labels/DangerLabel.js +23 -0
  428. package/lib/labels/DefaultLabel.d.ts +14 -0
  429. package/lib/labels/DefaultLabel.js +55 -0
  430. package/lib/labels/InfoLabel.d.ts +11 -0
  431. package/lib/labels/InfoLabel.js +23 -0
  432. package/lib/labels/PrimaryLabel.d.ts +11 -0
  433. package/lib/labels/PrimaryLabel.js +23 -0
  434. package/lib/labels/SuccessLabel.d.ts +11 -0
  435. package/lib/labels/SuccessLabel.js +23 -0
  436. package/lib/labels/WarningLabel.d.ts +11 -0
  437. package/lib/labels/WarningLabel.js +23 -0
  438. package/lib/labels/index.d.ts +18 -0
  439. package/lib/labels/index.js +52 -0
  440. package/lib/labels/label_container/index.d.ts +12 -0
  441. package/lib/labels/label_container/index.js +22 -0
  442. package/lib/labels/types.d.ts +26 -0
  443. package/lib/labels/types.js +5 -0
  444. package/lib/list/Header.d.ts +10 -0
  445. package/lib/list/Header.js +23 -0
  446. package/lib/list/Item.d.ts +13 -0
  447. package/lib/list/Item.js +162 -0
  448. package/lib/list/Separator.d.ts +3 -0
  449. package/lib/list/Separator.js +12 -0
  450. package/lib/list/helpers.d.ts +15 -0
  451. package/lib/list/helpers.js +14 -0
  452. package/lib/list/index.d.ts +13 -0
  453. package/lib/list/index.js +182 -0
  454. package/lib/list/types.d.ts +73 -0
  455. package/lib/list/types.js +5 -0
  456. package/lib/menus/float/MenuItem.d.ts +9 -0
  457. package/lib/menus/float/MenuItem.js +69 -0
  458. package/lib/menus/float/SubMenuContainer.js +77 -0
  459. package/lib/menus/float/helpers.d.ts +9 -0
  460. package/lib/menus/float/helpers.js +10 -0
  461. package/lib/menus/float/index.d.ts +40 -0
  462. package/lib/menus/float/index.js +68 -0
  463. package/lib/menus/float/types.d.ts +30 -0
  464. package/lib/menus/float/types.js +5 -0
  465. package/lib/menus/index.d.ts +12 -0
  466. package/lib/menus/index.js +9 -0
  467. package/lib/menus/sidenav/ExpandMenu.d.ts +12 -0
  468. package/lib/menus/sidenav/ExpandMenu.js +27 -0
  469. package/lib/menus/sidenav/MenuLink.d.ts +15 -0
  470. package/lib/menus/sidenav/MenuLink.js +29 -0
  471. package/lib/menus/sidenav/NavMenuGroup.d.ts +12 -0
  472. package/lib/menus/sidenav/NavMenuGroup.js +26 -0
  473. package/lib/menus/sidenav/NavMenuItem.d.ts +15 -0
  474. package/lib/menus/sidenav/NavMenuItem.js +150 -0
  475. package/lib/menus/sidenav/NavSubMenuItem.d.ts +12 -0
  476. package/lib/menus/sidenav/NavSubMenuItem.js +43 -0
  477. package/lib/menus/sidenav/helpers.d.ts +14 -0
  478. package/lib/menus/sidenav/helpers.js +18 -0
  479. package/lib/menus/sidenav/index.d.ts +16 -0
  480. package/lib/menus/sidenav/index.js +184 -0
  481. package/lib/menus/sidenav/popup_menu_search/EmptyList.d.ts +12 -0
  482. package/lib/menus/sidenav/popup_menu_search/EmptyList.js +26 -0
  483. package/lib/menus/sidenav/popup_menu_search/index.d.ts +12 -0
  484. package/lib/menus/sidenav/popup_menu_search/index.js +116 -0
  485. package/lib/menus/sidenav/types.d.ts +90 -0
  486. package/lib/menus/sidenav/types.js +5 -0
  487. package/lib/noPermission/index.d.ts +3 -0
  488. package/lib/noPermission/index.js +23 -0
  489. package/lib/panel/Content.d.ts +10 -0
  490. package/lib/panel/Content.js +79 -0
  491. package/lib/panel/DangerPanel.d.ts +10 -0
  492. package/lib/panel/DangerPanel.js +15 -0
  493. package/lib/panel/Default.d.ts +10 -0
  494. package/lib/panel/Default.js +67 -0
  495. package/lib/panel/Header.d.ts +10 -0
  496. package/lib/panel/Header.js +77 -0
  497. package/lib/panel/InfoPanel.d.ts +10 -0
  498. package/lib/panel/InfoPanel.js +15 -0
  499. package/lib/panel/PrimaryPanel.d.ts +10 -0
  500. package/lib/panel/PrimaryPanel.js +15 -0
  501. package/lib/panel/SuccessPanel.d.ts +10 -0
  502. package/lib/panel/SuccessPanel.js +15 -0
  503. package/lib/panel/ToolBar.d.ts +10 -0
  504. package/lib/panel/ToolBar.js +22 -0
  505. package/lib/panel/WarningPanel.d.ts +10 -0
  506. package/lib/panel/WarningPanel.js +15 -0
  507. package/lib/panel/helpers.d.ts +11 -0
  508. package/lib/panel/helpers.js +25 -0
  509. package/lib/panel/index.d.ts +18 -0
  510. package/lib/panel/index.js +59 -0
  511. package/lib/panel/types.d.ts +47 -0
  512. package/lib/panel/types.js +5 -0
  513. package/lib/permissionValidations.d.ts +14 -0
  514. package/lib/permissionValidations.js +59 -0
  515. package/lib/popover/PopoverText.d.ts +10 -0
  516. package/lib/popover/PopoverText.js +20 -0
  517. package/lib/popover/PopoverTitle.d.ts +10 -0
  518. package/lib/popover/PopoverTitle.js +17 -0
  519. package/lib/popover/index.d.ts +15 -0
  520. package/lib/popover/index.js +63 -0
  521. package/lib/popover/types.d.ts +24 -0
  522. package/lib/popover/types.js +5 -0
  523. package/lib/progress/Bar.d.ts +6 -0
  524. package/lib/progress/Bar.js +74 -0
  525. package/lib/progress/index.d.ts +7 -0
  526. package/lib/progress/index.js +38 -0
  527. package/lib/progress/types.d.ts +37 -0
  528. package/lib/progress/types.js +5 -0
  529. package/lib/radio/index.d.ts +13 -0
  530. package/lib/radio/index.js +113 -0
  531. package/lib/radio/types.d.ts +28 -0
  532. package/lib/radio/types.js +5 -0
  533. package/lib/shortcuts/index.d.ts +7 -0
  534. package/lib/shortcuts/index.js +28 -0
  535. package/lib/shortcuts/types.d.ts +12 -0
  536. package/lib/shortcuts/types.js +5 -0
  537. package/lib/skeleton/SkeletonContainer.d.ts +7 -0
  538. package/lib/skeleton/SkeletonContainer.js +23 -0
  539. package/lib/skeleton/index.d.ts +8 -0
  540. package/lib/skeleton/index.js +54 -0
  541. package/lib/skeleton/types.d.ts +21 -0
  542. package/lib/skeleton/types.js +5 -0
  543. package/lib/spinner/SpinnerLoading.d.ts +7 -0
  544. package/lib/spinner/SpinnerLoading.js +219 -0
  545. package/lib/spinner/index.d.ts +7 -0
  546. package/lib/spinner/index.js +60 -0
  547. package/lib/spinner/types.d.ts +20 -0
  548. package/lib/spinner/types.js +5 -0
  549. package/lib/split/Split.d.ts +6 -0
  550. package/lib/split/Split.js +292 -0
  551. package/lib/split/SplitSide.d.ts +6 -0
  552. package/lib/split/SplitSide.js +42 -0
  553. package/lib/split/helpers.d.ts +10 -0
  554. package/lib/split/helpers.js +10 -0
  555. package/lib/split/index.d.ts +8 -0
  556. package/lib/split/index.js +17 -0
  557. package/lib/split/types.d.ts +34 -0
  558. package/lib/split/types.js +5 -0
  559. package/lib/table/Body.d.ts +6 -0
  560. package/lib/table/Body.js +71 -0
  561. package/lib/table/Header.d.ts +6 -0
  562. package/lib/table/Header.js +90 -0
  563. package/lib/table/HeaderColumn.d.ts +6 -0
  564. package/lib/table/HeaderColumn.js +55 -0
  565. package/lib/table/Row.d.ts +6 -0
  566. package/lib/table/Row.js +78 -0
  567. package/lib/table/RowColumn.d.ts +6 -0
  568. package/lib/table/RowColumn.js +81 -0
  569. package/lib/table/helpers.d.ts +8 -0
  570. package/lib/table/helpers.js +15 -0
  571. package/lib/table/index.d.ts +11 -0
  572. package/lib/table/index.js +154 -0
  573. package/lib/table/types.d.ts +97 -0
  574. package/lib/table/types.js +5 -0
  575. package/lib/tabs/DropdownTabs.d.ts +11 -0
  576. package/lib/tabs/DropdownTabs.js +73 -0
  577. package/lib/tabs/Menu.d.ts +11 -0
  578. package/lib/tabs/Menu.js +46 -0
  579. package/lib/tabs/MenuTabs.d.ts +11 -0
  580. package/lib/tabs/MenuTabs.js +84 -0
  581. package/lib/tabs/Panel.d.ts +11 -0
  582. package/lib/tabs/Panel.js +84 -0
  583. package/lib/tabs/context.d.ts +12 -0
  584. package/lib/tabs/context.js +127 -0
  585. package/lib/tabs/index.d.ts +12 -0
  586. package/lib/tabs/index.js +70 -0
  587. package/lib/tabs/tabHelpers.d.ts +12 -0
  588. package/lib/tabs/tabHelpers.js +75 -0
  589. package/lib/tabs/types.d.ts +98 -0
  590. package/lib/tabs/types.js +5 -0
  591. package/lib/tabs/useTabs.d.ts +11 -0
  592. package/lib/tabs/useTabs.js +11 -0
  593. package/lib/textContent/index.d.ts +22 -0
  594. package/lib/textContent/index.js +42 -0
  595. package/lib/toolbar/ButtonBar.d.ts +12 -0
  596. package/lib/toolbar/ButtonBar.js +66 -0
  597. package/lib/toolbar/LabelBar.d.ts +12 -0
  598. package/lib/toolbar/LabelBar.js +58 -0
  599. package/lib/toolbar/Separator.d.ts +3 -0
  600. package/lib/toolbar/Separator.js +12 -0
  601. package/lib/toolbar/ToolBarGroup.d.ts +12 -0
  602. package/lib/toolbar/ToolBarGroup.js +19 -0
  603. package/lib/toolbar/helpers.d.ts +12 -0
  604. package/lib/toolbar/helpers.js +9 -0
  605. package/lib/toolbar/index.d.ts +16 -0
  606. package/lib/toolbar/index.js +65 -0
  607. package/lib/toolbar/types.d.ts +46 -0
  608. package/lib/toolbar/types.js +5 -0
  609. package/lib/tooltip/index.d.ts +6 -0
  610. package/lib/tooltip/index.js +63 -0
  611. package/lib/tooltip/types.d.ts +17 -0
  612. package/lib/tooltip/types.js +5 -0
  613. package/lib/treetable/Body.d.ts +3 -0
  614. package/lib/treetable/Body.js +34 -0
  615. package/lib/treetable/Header.d.ts +3 -0
  616. package/lib/treetable/Header.js +24 -0
  617. package/lib/treetable/Row.d.ts +7 -0
  618. package/lib/treetable/Row.js +209 -0
  619. package/lib/treetable/helpers.d.ts +19 -0
  620. package/lib/treetable/helpers.js +32 -0
  621. package/lib/treetable/index.d.ts +8 -0
  622. package/lib/treetable/index.js +28 -0
  623. package/lib/treetable/types.d.js +5 -0
  624. package/lib/treeview/Header.d.ts +7 -0
  625. package/lib/treeview/Header.js +21 -0
  626. package/lib/treeview/Node.d.ts +7 -0
  627. package/lib/treeview/Node.js +245 -0
  628. package/lib/treeview/constants.d.ts +7 -0
  629. package/lib/treeview/constants.js +9 -0
  630. package/lib/treeview/index.d.ts +9 -0
  631. package/lib/treeview/index.js +320 -0
  632. package/lib/treeview/types.d.ts +108 -0
  633. package/lib/treeview/types.js +5 -0
  634. package/lib/types.d-73cece43.d.ts +46 -0
  635. package/lib/uitour/helpers.d.ts +8 -0
  636. package/lib/uitour/helpers.js +12 -0
  637. package/lib/uitour/index.d.ts +7 -0
  638. package/lib/uitour/index.js +255 -0
  639. package/lib/uitour/types.d.ts +38 -0
  640. package/lib/uitour/types.js +5 -0
  641. package/package.json +1 -1
@@ -0,0 +1,408 @@
1
+ /**
2
+ Atenção... mudar nome das classes abaixo poderá quebrar as aplicações
3
+ que utilizam. Em caso de mudança, ficar atento para os refatores.
4
+ */
5
+
6
+ @import "commons.scss";
7
+ @import "effects.scss";
8
+ @import "colors.scss";
9
+
10
+ .sidenav-component {
11
+ display: flex;
12
+ flex-direction: column;
13
+ height: 100%;
14
+ width: 100%;
15
+ overflow: hidden;
16
+ background-color: transparent;
17
+ border: 1px solid #eee;
18
+
19
+ &.-expanded {
20
+ display: block;
21
+ flex-direction: row;
22
+ }
23
+
24
+ &.-blocked {
25
+ opacity: 0.4;
26
+ pointer-events: none;
27
+ }
28
+
29
+ > .expandedmenu,
30
+ > .collapsedmenu {
31
+ height: auto;
32
+ width: 100%;
33
+
34
+ > .help-item {
35
+ border-top: 1px solid #eee;
36
+ }
37
+
38
+ > .item {
39
+ cursor: pointer;
40
+ border-bottom: 1px solid #eee;
41
+ width: 100%;
42
+ transition: all 0.2s ease-in-out;
43
+
44
+ &.-customsidenavitem {
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: center;
48
+ padding-left: 0px;
49
+
50
+ > .searchmenubutton {
51
+ width: 100%;
52
+ height: 100%;
53
+ display: flex;
54
+ align-items: center;
55
+ justify-content: center;
56
+ }
57
+
58
+ > .helpmenubutton {
59
+ width: 100%;
60
+ height: 100%;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ }
65
+ }
66
+
67
+ &.-customsidenavitem:hover {
68
+ background-color: white;
69
+ }
70
+
71
+ &.-disabled {
72
+ @extend %component-disabled;
73
+ }
74
+ }
75
+
76
+ > .item:hover {
77
+ background-color: #eee;
78
+ }
79
+
80
+ > .item:hover > .menuicon,
81
+ > .item:hover .searchmenuicon,
82
+ > .item:hover > .menulink > .menuicon,
83
+ > .item:hover > .menulink .searchmenuicon {
84
+ fill: rgb(114, 114, 114);
85
+ }
86
+
87
+ > .item:hover > .title,
88
+ > .item:hover > .menulink > .title {
89
+ color: rgb(114, 114, 114);
90
+ }
91
+ }
92
+
93
+ > .expandedmenu.customscroll,
94
+ > .collapsedmenu.customscroll {
95
+ overflow-y: auto;
96
+
97
+ &::-webkit-scrollbar {
98
+ width: 5px;
99
+ }
100
+
101
+ &::-webkit-scrollbar-track {
102
+ background: rgba(196, 222, 247, 0.5);
103
+ border-radius: 10px;
104
+ }
105
+
106
+ &::-webkit-scrollbar-thumb {
107
+ box-shadow: inset 0 0 5px #cecece;
108
+ border-radius: 10px;
109
+ }
110
+
111
+ &::-webkit-scrollbar-thumb:hover {
112
+ background: rgb(0, 195, 255);
113
+ }
114
+ }
115
+
116
+ .openclosemenu {
117
+ background: #f5f5f5;
118
+ width: 100%;
119
+ height: 25px;
120
+ cursor: pointer;
121
+ display: grid;
122
+ grid-template-rows: 1fr;
123
+ align-items: center;
124
+ align-content: center;
125
+ text-align: center;
126
+ transition: all 0.2s ease-in-out;
127
+
128
+ &:hover {
129
+ background: $border-container;
130
+ }
131
+
132
+ .icon-component {
133
+ justify-self: center;
134
+ width: 12px;
135
+ }
136
+ }
137
+
138
+ &.closefromexpanded {
139
+ background: transparent;
140
+ margin-top: 2px;
141
+ position: fixed;
142
+ margin-left: 0px;
143
+ border: 0px solid #c6e4f8;
144
+ }
145
+ }
146
+
147
+ .sidenav-component > .expandedmenu {
148
+ animation: revealelement 0.3s;
149
+ -moz-animation: revealelement 0.3s;
150
+ background-color: #fff;
151
+ overflow: none;
152
+ width: 100%;
153
+ -moz-box-flex: 0;
154
+ -webkit-box-flex: 0;
155
+ -ms-flex: 0 0 70px;
156
+ flex: 0 0 70px;
157
+
158
+ > .item {
159
+ align-content: center;
160
+ background-color: #fff;
161
+ display: grid;
162
+ grid-template-columns: 30px 1fr;
163
+ height: 45px;
164
+ padding-left: 5px;
165
+
166
+ &.-withlink {
167
+ grid-template-columns: 1fr;
168
+ }
169
+
170
+ .menulink {
171
+ display: grid;
172
+ grid-template-columns: 30px 1fr;
173
+ align-items: center;
174
+ text-decoration: none;
175
+ }
176
+
177
+ > .menuicon {
178
+ justify-self: center;
179
+ }
180
+
181
+ > .title,
182
+ > .menulink > .title {
183
+ color: #666;
184
+ align-self: center;
185
+ justify-self: left;
186
+ text-indent: 5px;
187
+ }
188
+ }
189
+ }
190
+
191
+ .sidenav-component > .collapsedmenu {
192
+ display: flex;
193
+ flex-wrap: wrap;
194
+ align-content: flex-start;
195
+
196
+ > .item {
197
+ height: 50px;
198
+ display: grid;
199
+ grid-template-rows: 1fr;
200
+ align-items: center;
201
+ align-content: center;
202
+
203
+ &.-withlink {
204
+ align-items: stretch;
205
+ }
206
+
207
+ > .menulink {
208
+ display: grid;
209
+ grid-template-rows: 1fr;
210
+ align-items: center;
211
+ }
212
+
213
+ > .menuicon,
214
+ > .menulink > .menuicon {
215
+ justify-self: center;
216
+ }
217
+ }
218
+
219
+ &.-small {
220
+ width: 55px;
221
+
222
+ > .item {
223
+ height: 40px;
224
+ }
225
+
226
+ .-iconcenter {
227
+ width: 55px !important;
228
+ }
229
+ }
230
+
231
+ &.-medium {
232
+ width: 55px;
233
+
234
+ > .item {
235
+ height: 50px;
236
+ }
237
+
238
+ .-iconcenter {
239
+ width: 65px !important;
240
+ }
241
+ }
242
+
243
+ &.-large {
244
+ width: 75px;
245
+
246
+ > .item {
247
+ height: 60px;
248
+ }
249
+
250
+ .-iconcenter {
251
+ width: 75px !important;
252
+ }
253
+ }
254
+ }
255
+
256
+ .sidenav-component > .collapsedmenu > .item > .submenu-container,
257
+ .sidenav-component > .expandedmenu > .item > .submenu-container {
258
+ animation: 0.5s ease-in 0s 1 slideLeft;
259
+ -moz-animation: 0.5s ease-in 0s 1 slideLeft;
260
+ background-color: #eee;
261
+ height: auto;
262
+ width: auto;
263
+ float: right;
264
+ padding: 10px 20px 20px;
265
+ position: absolute;
266
+ -webkit-box-shadow: 3px 1px 6px 0px rgba(50, 50, 50, 0.35);
267
+ -moz-box-shadow: 3px 1px 6px 0px rgba(50, 50, 50, 0.35);
268
+ box-shadow: 3px 1px 6px 0px rgba(50, 50, 50, 0.35);
269
+ z-index: 9999999;
270
+
271
+ > .title {
272
+ color: #777777;
273
+ font-size: 24px;
274
+ font-weight: bold;
275
+ width: 100;
276
+ height: 36px;
277
+ line-height: 36px;
278
+ }
279
+
280
+ .submenu {
281
+ margin: 4px 0;
282
+ overflow-y: auto;
283
+ overflow-x: clip;
284
+ color: #808080;
285
+ display: grid;
286
+ column-gap: 16px;
287
+ grid-template-columns: repeat(2, 1fr);
288
+ align-items: flex-start;
289
+
290
+ > .item {
291
+ display: grid;
292
+ min-height: 40px;
293
+ align-content: center;
294
+ display: grid;
295
+ margin-left: 20px;
296
+
297
+ &.-disabled {
298
+ @extend %component-disabled;
299
+ background-color: #eee !important;
300
+ }
301
+ }
302
+
303
+ > .item:hover {
304
+ color: #333;
305
+ }
306
+
307
+ > .item:before {
308
+ position: absolute;
309
+ content: "";
310
+ left: -15px;
311
+ top: 15px;
312
+ border-top: 5px solid transparent;
313
+ border-bottom: 5px solid transparent;
314
+ border-left: 5px solid #808080;
315
+ }
316
+
317
+ > .item:nth-child(even) {
318
+ padding-left: 5px;
319
+ }
320
+
321
+ > .item > .menulink {
322
+ grid-template-columns: 1fr;
323
+ text-decoration: none;
324
+ }
325
+
326
+ &::-webkit-scrollbar {
327
+ width: 5px;
328
+ }
329
+
330
+ &::-webkit-scrollbar-track {
331
+ box-shadow: inset 0 0 5px grey;
332
+ border-radius: 10px;
333
+ }
334
+
335
+ &::-webkit-scrollbar-thumb {
336
+ background: rgb(151, 142, 142);
337
+ border-radius: 10px;
338
+ }
339
+ }
340
+ }
341
+
342
+ .searchmenu {
343
+ background-color: #fff;
344
+ border: solid 1px $component-border-color;
345
+ border-radius: 4px;
346
+ width: 300px;
347
+ position: absolute;
348
+ padding: 20px;
349
+
350
+ > .closebutton {
351
+ cursor: pointer;
352
+ float: right;
353
+ margin: -21px -33px 15px 0px;
354
+ }
355
+ }
356
+
357
+ .popup-help {
358
+ border: 1px solid $list-container-border;
359
+
360
+ > .list-component {
361
+ box-shadow: none;
362
+ overflow: hidden;
363
+ border-radius: 0px;
364
+
365
+ > .helpheader {
366
+ background-color: #bdbdbda6;
367
+
368
+ > .title {
369
+ line-height: 35px;
370
+ }
371
+ }
372
+
373
+ > .item-container > .item > .text {
374
+ font-size: 12px;
375
+ }
376
+ }
377
+
378
+ .infomartion > .help-information {
379
+ color: rgba(0, 0, 0, 0.54);
380
+ font-size: 12px;
381
+ line-height: 16px;
382
+ }
383
+ }
384
+
385
+ .nodata-container {
386
+ display: flex;
387
+ flex-direction: column;
388
+ align-items: center;
389
+ justify-content: center;
390
+ height: 100%;
391
+ width: 100%;
392
+
393
+ > .text,
394
+ .subtext {
395
+ color: #a8a8a8;
396
+ text-align: center;
397
+ }
398
+
399
+ > .text {
400
+ font-size: 26px;
401
+ margin-top: 20px;
402
+ }
403
+
404
+ > .subtext {
405
+ font-size: 15px;
406
+ margin-top: 5px;
407
+ }
408
+ }
@@ -0,0 +1,48 @@
1
+ @import "commons.scss";
2
+ @import "colors.scss";
3
+ @import "effects.scss";
4
+
5
+ .skeletoncontainer-component {
6
+ width: 100%;
7
+ height: 100%;
8
+ display: flex;
9
+ flex-direction: column;
10
+ gap: 10px;
11
+
12
+ &.-row {
13
+ flex-direction: row;
14
+ }
15
+ }
16
+
17
+ .skeleton-component {
18
+ width: 100%;
19
+ height: 100%;
20
+ flex-grow: 1;
21
+ margin-bottom: 10px;
22
+ @extend %skeleton-component;
23
+
24
+ &.-round {
25
+ flex-grow: 0;
26
+ margin: 0;
27
+ padding: 0;
28
+ box-sizing: border-box;
29
+ border-radius: 50%;
30
+
31
+ &.-mini {
32
+ width: 36px;
33
+ height: 36px;
34
+ }
35
+ &.-small {
36
+ width: 48px;
37
+ height: 48px;
38
+ }
39
+ &.-medium {
40
+ width: 64px;
41
+ height: 64px;
42
+ }
43
+ &.-large {
44
+ width: 96px;
45
+ height: 96px;
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,34 @@
1
+ %font-style {
2
+ color: #4e4c4c;
3
+ font-weight: 500;
4
+ font-size: 14px;
5
+ }
6
+
7
+ .spinner-component {
8
+ width: 100% !important;
9
+ height: 100% !important;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ &.-heightauto {
14
+ height: auto !important;
15
+ }
16
+ }
17
+
18
+ .-left {
19
+ display: flex;
20
+ justify-content: flex-start;
21
+ @extend %font-style;
22
+ }
23
+
24
+ .-center {
25
+ display: flex;
26
+ justify-content: center;
27
+ @extend %font-style;
28
+ }
29
+
30
+ .-right {
31
+ display: flex;
32
+ justify-content: flex-end;
33
+ @extend %font-style;
34
+ }
@@ -0,0 +1,80 @@
1
+ .split-component {
2
+ font-family: 'Roboto', sans-serif;
3
+ font-size: 14px;
4
+ line-height: 1.6em;
5
+ display: flex;
6
+ flex-direction: row;
7
+ width: 100%;
8
+ height: 100%;
9
+ overflow: hidden;
10
+ p {
11
+ font-size: 14px;
12
+ }
13
+ & .layout-changing {
14
+ cursor: col-resize;
15
+ > .layout-splitter {
16
+ background-color: rgb(221, 221, 221);
17
+ }
18
+ }
19
+ & .layout-pane {
20
+ position: relative;
21
+ flex: 0 0 auto;
22
+ overflow: auto;
23
+ > .layoutpanecontent {
24
+ padding: 2px;
25
+ }
26
+ }
27
+ & .layout-pane.layout-pane-primary {
28
+ flex: 1 1 auto;
29
+ }
30
+ > .layout-splitter {
31
+ flex: 0 0 auto;
32
+ width: 5px;
33
+ height: 100%;
34
+ cursor: col-resize;
35
+ background: rgb(221, 221, 221);
36
+ > .toggler-horizontal {
37
+ position: relative;
38
+ display: block;
39
+ padding: 0px;
40
+ margin: 0px;
41
+ overflow: hidden;
42
+ text-align: center;
43
+ font-size: 1px;
44
+ z-index: 1;
45
+ background: #aaaaaa;
46
+ visibility: visible;
47
+ height: 50px;
48
+ width: 7px;
49
+ top: 45%;
50
+ left: -1px;
51
+ cursor: pointer;
52
+ }
53
+
54
+ &.layout-splitter:hover {
55
+ background-color: #bbb;
56
+ }
57
+ }
58
+ & .layout-changing > .layout-splitter {
59
+ background-color: #aaa;
60
+ }
61
+ &.splitter-layout-vertical {
62
+ flex-direction: column;
63
+ > .layout-splitter {
64
+ width: 100%;
65
+ height: 5px;
66
+ cursor: row-resize;
67
+ > .toggler-vertical {
68
+ border-radius: 2px;
69
+ align-items: center;
70
+ height: 7px;
71
+ width: 54px;
72
+ align-self: center;
73
+ margin-left: 47%;
74
+ background: #aaaaaa;
75
+ margin-top: -1px;
76
+ cursor: pointer;
77
+ }
78
+ }
79
+ }
80
+ }