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,823 @@
1
+ //Efeito Utilizado no Dialog
2
+ @keyframes slideInFromTop {
3
+ from {
4
+ transform: translateY(-60%);
5
+ -webkit-font-smoothing: subpixel-antialiased;
6
+ }
7
+ to {
8
+ transform: translateY(0);
9
+ -webkit-font-smoothing: subpixel-antialiased;
10
+ }
11
+ }
12
+
13
+ //slideInFromTopSlow
14
+
15
+ @keyframes slideInFromTopSlow {
16
+ 0% {
17
+ transform: translateY(-100%);
18
+ }
19
+ 100% {
20
+ transform: translateY(0);
21
+ }
22
+ }
23
+
24
+ //Slide from bottom
25
+ .slideDownReturn {
26
+ -webkit-animation-name: slideDownReturn;
27
+ animation-name: slideDownReturn;
28
+ }
29
+ @-webkit-keyframes slideDownReturn {
30
+ 0% {
31
+ -webkit-transform-origin: 0 0;
32
+ transform-origin: 0 0;
33
+ -webkit-transform: translateY(100%);
34
+ transform: translateY(100%);
35
+ }
36
+
37
+ 30% {
38
+ -webkit-transform-origin: 0 0;
39
+ transform-origin: 0 0;
40
+ -webkit-transform: translateY(0%);
41
+ transform: translateY(0%);
42
+ }
43
+ }
44
+ @keyframes slideDownReturn {
45
+ 0% {
46
+ -webkit-transform-origin: 0 0;
47
+ transform-origin: 0 0;
48
+ -webkit-transform: translateY(100%);
49
+ transform: translateY(100%);
50
+ }
51
+
52
+ 30% {
53
+ -webkit-transform-origin: 0 0;
54
+ transform-origin: 0 0;
55
+ -webkit-transform: translateY(0%);
56
+ transform: translateY(0%);
57
+ }
58
+ }
59
+
60
+ //Slide from left
61
+
62
+ .slideLeftReturn {
63
+ -webkit-animation-name: slideLeftReturn;
64
+ animation-name: slideLeftReturn;
65
+ }
66
+ @-webkit-keyframes slideLeftReturn {
67
+ 0% {
68
+ -webkit-transform-origin: 0 0;
69
+ transform-origin: 0 0;
70
+ -webkit-transform: translateX(-100%);
71
+ transform: translateX(-100%);
72
+ }
73
+
74
+ 30% {
75
+ -webkit-transform-origin: 0 0;
76
+ transform-origin: 0 0;
77
+ -webkit-transform: translateX(0%);
78
+ transform: translateX(0%);
79
+ }
80
+ }
81
+ @keyframes slideLeftReturn {
82
+ 0% {
83
+ -webkit-transform-origin: 0 0;
84
+ transform-origin: 0 0;
85
+ -webkit-transform: translateX(-100%);
86
+ transform: translateX(-100%);
87
+ }
88
+
89
+ 30% {
90
+ -webkit-transform-origin: 0 0;
91
+ transform-origin: 0 0;
92
+ -webkit-transform: translateX(0%);
93
+ transform: translateX(0%);
94
+ }
95
+ }
96
+
97
+ //Slide from right
98
+
99
+ .slideRightReturn {
100
+ -webkit-animation-name: slideRightReturn;
101
+ animation-name: slideRightReturn;
102
+ }
103
+ @-webkit-keyframes slideRightReturn {
104
+ 0% {
105
+ -webkit-transform-origin: 0 0;
106
+ transform-origin: 0 0;
107
+ -webkit-transform: translateX(100%);
108
+ transform: translateX(100%);
109
+ }
110
+
111
+ 30% {
112
+ -webkit-transform-origin: 0 0;
113
+ transform-origin: 0 0;
114
+ -webkit-transform: translateX(0%);
115
+ transform: translateX(0%);
116
+ }
117
+ }
118
+ @keyframes slideRightReturn {
119
+ 0% {
120
+ -webkit-transform-origin: 0 0;
121
+ transform-origin: 0 0;
122
+ -webkit-transform: translateX(100%);
123
+ transform: translateX(100%);
124
+ }
125
+
126
+ 30% {
127
+ -webkit-transform-origin: 0 0;
128
+ transform-origin: 0 0;
129
+ -webkit-transform: translateX(0%);
130
+ transform: translateX(0%);
131
+ }
132
+ }
133
+
134
+ //Efeito Revelação - Transparencia.
135
+ @keyframes revealelement {
136
+ 0% {
137
+ color: transparent;
138
+ height: 0%;
139
+ opacity: 0.0;
140
+ }
141
+ 50% {
142
+ color: inherit;
143
+ height: auto;
144
+ opacity: 0.3;
145
+ }
146
+ 100% {
147
+ color: inherit;
148
+ opacity: 1;
149
+ }
150
+ }
151
+
152
+ @-moz-keyframes revealelement {
153
+ 0% {
154
+ -moz-color: transparent;
155
+ -moz-height: 0%;
156
+ -moz-opacity: 0.0;
157
+ }
158
+ 50% {
159
+ -moz-color: inherit;
160
+ -moz-height: auto;
161
+ -moz-opacity: 0.3;
162
+ }
163
+ 100% {
164
+ -moz-color: inherit;
165
+ -moz-opacity: 1;
166
+ }
167
+ }
168
+
169
+ @-webkit-keyframes revealelement {
170
+ 0% {
171
+ color: transparent;
172
+ height: 0%;
173
+ opacity: 0.0;
174
+ }
175
+ 50% {
176
+ color: inherit;
177
+ height: auto;
178
+ opacity: 0.3;
179
+ }
180
+ 100% {
181
+ color: inherit;
182
+ opacity: 1;
183
+ }
184
+ }
185
+
186
+ @keyframes transparent-effect {
187
+ 0% {
188
+ color: transparent;
189
+ height: 0%;
190
+ opacity: 0.3;
191
+ }
192
+ 50% {
193
+ color: transparent;
194
+ height: auto;
195
+ opacity: 0.7;
196
+ }
197
+ 100% {
198
+ color: inherit;
199
+ opacity: 1;
200
+ }
201
+ }
202
+
203
+ //Efeito Blink Aplicado no checkbox
204
+ @keyframes blink-effect {
205
+ from {
206
+ box-shadow: 0 0 0 0 $component-selected-color,
207
+ inset 0 0 0 1px $component-selected-color,
208
+ inset 0 0 0 16px #fff,
209
+ inset 0 0 0 16px $component-selected-color;
210
+ }
211
+ to {
212
+ box-shadow: 0 0 0 1px $component-selected-color,
213
+ inset 0 0 0 1px $component-selected-color,
214
+ inset 0 0 0 16px #fff,
215
+ inset 0 0 0 16px $component-selected-color;
216
+ }
217
+ }
218
+
219
+ @keyframes show-notification {
220
+ 0% {
221
+ opacity: 0;
222
+ -webkit-transform: translate(0, -100%);
223
+ transform: translate(0, -100%);
224
+ }
225
+ 10% {
226
+ opacity: 1;
227
+ -webkit-transform: translate(0, 0);
228
+ transform: translate(0, 0);
229
+ }
230
+ 90% {
231
+ opacity: 1;
232
+ -webkit-transform: translate(0, 0);
233
+ transform: translate(0, 0);
234
+ }
235
+ 100% {
236
+ opacity: 0;
237
+ -webkit-transform: translate(0, -100%);
238
+ transform: translate(0, -100%);
239
+ }
240
+ }
241
+
242
+ @keyframes show-notification {
243
+ 0% {
244
+ opacity: 0;
245
+ -webkit-transform: translate(0, -100%);
246
+ transform: translate(0, -100%);
247
+ }
248
+ 10% {
249
+ opacity: 1;
250
+ -webkit-transform: translate(0, 0);
251
+ transform: translate(0, 0);
252
+ }
253
+ 90% {
254
+ opacity: 1;
255
+ -webkit-transform: translate(0, 0);
256
+ transform: translate(0, 0);
257
+ }
258
+ 100% {
259
+ opacity: 0;
260
+ -webkit-transform: translate(0, -100%);
261
+ transform: translate(0, -100%);
262
+ }
263
+ }
264
+
265
+ //Efeito left
266
+ @-webkit-keyframes nav-anim-left {
267
+ 0% {
268
+ left: 100%;
269
+ }
270
+ 100% {
271
+ left: -3%;
272
+ }
273
+ }
274
+
275
+ @-moz-keyframes nav-anim-left {
276
+ 0% {
277
+ left: 100%;
278
+ }
279
+ 100% {
280
+ left: -3%;
281
+ }
282
+ }
283
+
284
+ @-o-keyframes nav-anim-left {
285
+ 0% {
286
+ left: 100%;
287
+ }
288
+ 100% {
289
+ left: -3%;
290
+ }
291
+ }
292
+
293
+ @keyframes nav-anim-left {
294
+ 0% {
295
+ left: 100%;
296
+ }
297
+ 100% {
298
+ left: -3%;
299
+ }
300
+ }
301
+ .swashIn {
302
+ animation-name: swashIn;
303
+ }
304
+ @keyframes swashIn {
305
+ 0% {
306
+ opacity: 0;
307
+ transform-origin: 50% 50%;
308
+ transform: scale(0, 0);
309
+ }
310
+
311
+ 90% {
312
+ opacity: 1;
313
+ transform-origin: 50% 50%;
314
+ transform: scale(0.9, 0.9);
315
+ }
316
+
317
+ 100% {
318
+ opacity: 1;
319
+ transform-origin: 50% 50%;
320
+ transform: scale(1, 1);
321
+ }
322
+ }
323
+ .tinUpIn {
324
+ animation-name: tinUpIn;
325
+ }
326
+ @keyframes tinUpIn {
327
+ 0% {
328
+ opacity: 0;
329
+ transform: scale(1, 1) translateY(-900%);
330
+ }
331
+
332
+ 50%, 70%, 90% {
333
+ opacity: 1;
334
+ transform: scale(1.1, 1.1) translateY(0);
335
+ }
336
+
337
+ 60%, 80%, 100% {
338
+ opacity: 1;
339
+ transform: scale(1, 1) translateY(0);
340
+ }
341
+ }
342
+ .tinRightIn {
343
+ animation-name: tinRightIn;
344
+ }
345
+ @keyframes tinRightIn {
346
+ 0% {
347
+ opacity: 0;
348
+ transform: scale(1, 1) translateX(900%);
349
+ }
350
+
351
+ 50%, 70%, 90% {
352
+ opacity: 1;
353
+ transform: scale(1.1, 1.1) translateX(0);
354
+ }
355
+
356
+ 60%, 80%, 100% {
357
+ opacity: 1;
358
+ transform: scale(1, 1) translateX(0);
359
+ }
360
+ }
361
+ .tinLeftIn {
362
+ animation-name: tinLeftIn;
363
+ }
364
+ @keyframes tinLeftIn {
365
+ 0% {
366
+ opacity: 0;
367
+ transform: scale(1, 1) translateX(-900%);
368
+ }
369
+
370
+ 50%, 70%, 90% {
371
+ opacity: 1;
372
+ transform: scale(1.1, 1.1) translateX(0);
373
+ }
374
+
375
+ 60%, 80%, 100% {
376
+ opacity: 1;
377
+ transform: scale(1, 1) translateX(0);
378
+ }
379
+ }
380
+ .perspectiveDown {
381
+ animation-name: perspectiveDown;
382
+ }
383
+ @keyframes perspectiveDown {
384
+ 0% {
385
+ transform-origin: 0 100%;
386
+ transform: perspective(800px) rotateX(0deg);
387
+ }
388
+
389
+ 100% {
390
+ transform-origin: 0 100%;
391
+ transform: perspective(800px) rotateX(-180deg);
392
+ }
393
+ }
394
+ .perspectiveUp {
395
+ animation-name: perspectiveUp;
396
+ }
397
+ @keyframes perspectiveUp {
398
+ 0% {
399
+ transform-origin: 0 0;
400
+ transform: perspective(800px) rotateX(0deg);
401
+ }
402
+
403
+ 100% {
404
+ transform-origin: 0 0;
405
+ transform: perspective(800px) rotateX(180deg);
406
+ }
407
+ }
408
+ .puffIn {
409
+ animation-name: puffIn;
410
+ }
411
+ @keyframes puffIn {
412
+ 0% {
413
+ opacity: 0;
414
+ transform-origin: 50% 50%;
415
+ transform: scale(2,2);
416
+ filter: blur(2px);
417
+ }
418
+
419
+ 100% {
420
+ opacity: 1;
421
+ transform-origin: 50% 50%;
422
+ transform: scale(1,1);
423
+ filter: blur(0px);
424
+ }
425
+ }
426
+ .vanishIn {
427
+ animation-name: vanishIn;
428
+ }
429
+ @keyframes vanishIn {
430
+ 0% {
431
+ opacity: 0;
432
+ transform-origin: 50% 50%;
433
+ transform: scale(2, 2);
434
+ filter: blur(90px);
435
+ }
436
+
437
+ 100% {
438
+ opacity: 1;
439
+ transform-origin: 50% 50%;
440
+ transform: scale(1, 1);
441
+ filter: blur(0px);
442
+ }
443
+ }
444
+ .vanishOut {
445
+ animation-name: vanishOut;
446
+ }
447
+ @keyframes vanishOut {
448
+ 0% {
449
+ opacity: 1;
450
+ transform-origin: 50% 50%;
451
+ transform: scale(1, 1);
452
+ filter: blur(0px);
453
+ }
454
+
455
+ 100% {
456
+ opacity: 0;
457
+ transform-origin: 50% 50%;
458
+ transform: scale(2, 2);
459
+ filter: blur(20px);
460
+ }
461
+ }
462
+ .boingInUp {
463
+ animation-name: boingInUp;
464
+ }
465
+ @keyframes boingInUp {
466
+ 0% {
467
+ opacity: 0;
468
+ transform-origin: 50% 0%;
469
+ transform: perspective(800px) rotateX(-90deg);
470
+ }
471
+
472
+ 50% {
473
+ opacity: 1;
474
+ transform-origin: 50% 0%;
475
+ transform: perspective(800px) rotateX(50deg);
476
+ }
477
+
478
+ 100% {
479
+ opacity: 1;
480
+ transform-origin: 50% 0%;
481
+ transform: perspective(800px) rotateX(0deg);
482
+ }
483
+ }
484
+ .slideDown {
485
+ animation-name: slideDown;
486
+ }
487
+ @keyframes slideDown {
488
+ 0% {
489
+ transform-origin: 0 0;
490
+ transform: translateY(0%);
491
+ }
492
+
493
+ 10% {
494
+ transform-origin: 0 0;
495
+ transform: translateY(5%);
496
+ }
497
+ }
498
+ .slideLeft {
499
+ animation-name: slideLeft;
500
+ }
501
+ @keyframes slideLeft {
502
+ 0% {
503
+ transform-origin: 0 0;
504
+ transform: translateX(0%);
505
+ }
506
+
507
+ 10% {
508
+ transform-origin: 0 0;
509
+ transform: translateX(-2%);
510
+ }
511
+ }
512
+
513
+ @-moz-keyframes slideLeft {
514
+ 0% {
515
+ -moz-transform-origin: 0 0;
516
+ -moz-transform: translateX(0%);
517
+ }
518
+
519
+ 10% {
520
+ -moz-transform-origin: 0 0;
521
+ -moz-transform: translateX(-2%);
522
+ }
523
+ }
524
+
525
+ @-webkit-keyframes slideLeft {
526
+ 0% {
527
+ -webkit-transform-origin: 0 0;
528
+ -webkit-transform: translateX(0%);
529
+ }
530
+
531
+ 10% {
532
+ -webkit-transform-origin: 0 0;
533
+ -webkit-transform: translateX(-2%);
534
+ }
535
+ }
536
+
537
+ .slideRight {
538
+ animation-name: slideRight;
539
+ }
540
+ @keyframes slideRight {
541
+ 0% {
542
+ transform-origin: 0 0;
543
+ transform: translateX(0%);
544
+ }
545
+
546
+ 100% {
547
+ transform-origin: 0 0;
548
+ transform: translateX(100%);
549
+ }
550
+ }
551
+ %hvr-grow {
552
+ display: inline-block;
553
+ vertical-align: middle;
554
+ -webkit-transform: perspective(1px) translateZ(0);
555
+ transform: perspective(1px) translateZ(0);
556
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
557
+ -webkit-transition-duration: 0.3s;
558
+ transition-duration: 0.3s;
559
+ -webkit-transition-property: transform;
560
+ transition-property: transform;
561
+ }
562
+
563
+ %hvr-grow:hover, %hvr-grow:focus, %hvr-grow:active {
564
+ -webkit-transform: scale(1.1);
565
+ transform: scale(1.1);
566
+ }
567
+
568
+ %hvr-fade {
569
+ display: inline-block;
570
+ vertical-align: middle;
571
+ -webkit-transform: perspective(1px) translateZ(0);
572
+ transform: perspective(1px) translateZ(0);
573
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
574
+ overflow: hidden;
575
+ -webkit-transition-duration: 0.3s;
576
+ transition-duration: 0.3s;
577
+ -webkit-transition-property: color, background-color;
578
+ transition-property: color, background-color;
579
+ }
580
+
581
+ %hvr-fade:hover, %hvr-fade:focus, %hvr-fade:active {
582
+ background-color: #0c3652;
583
+ color: white;
584
+ }
585
+
586
+ .hvr-forward {
587
+ display: inline-block;
588
+ vertical-align: middle;
589
+ -webkit-transform: perspective(1px) translateZ(0);
590
+ transform: perspective(1px) translateZ(0);
591
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
592
+ -webkit-transition-duration: 0.3s;
593
+ transition-duration: 0.3s;
594
+ -webkit-transition-property: transform;
595
+ transition-property: transform;
596
+ }
597
+
598
+ .hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
599
+ -webkit-transform: translateX(8px);
600
+ transform: translateX(8px);
601
+ }
602
+
603
+ /* Back Pulse */
604
+ @-webkit-keyframes hvr-back-pulse {
605
+ 50% {
606
+ background-color: rgba(32, 152, 209, 0.75);
607
+ }
608
+ }
609
+ @keyframes hvr-back-pulse {
610
+ 50% {
611
+ background-color: rgba(32, 152, 209, 0.75);
612
+ }
613
+ }
614
+ %hvr-back-pulse {
615
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
616
+ overflow: hidden;
617
+ -webkit-transition-duration: 0.5s;
618
+ transition-duration: 0.5s;
619
+ -webkit-transition-property: color, background-color;
620
+ transition-property: color, background-color;
621
+ }
622
+
623
+ %hvr-back-pulse:hover, %hvr-back-pulse:focus, %hvr-back-pulse:active {
624
+ -webkit-animation-name: hvr-back-pulse;
625
+ animation-name: hvr-back-pulse;
626
+ -webkit-animation-duration: 1s;
627
+ animation-duration: 1s;
628
+ -webkit-animation-delay: 0.5s;
629
+ animation-delay: 0.5s;
630
+ -webkit-animation-timing-function: linear;
631
+ animation-timing-function: linear;
632
+ -webkit-animation-iteration-count: 2;
633
+ animation-iteration-count: 2;
634
+ background-color: #2098D1;
635
+ background-color: #2098d1;
636
+ color: white;
637
+ }
638
+
639
+ /* Bubble Float Left */
640
+ .hvr-bubble-float-left {
641
+ display: inline-block;
642
+ vertical-align: middle;
643
+ -webkit-transform: perspective(1px) translateZ(0);
644
+ transform: perspective(1px) translateZ(0);
645
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
646
+ position: relative;
647
+ -webkit-transition-duration: 0.3s;
648
+ transition-duration: 0.3s;
649
+ -webkit-transition-property: transform;
650
+ transition-property: transform;
651
+ }
652
+
653
+ .hvr-bubble-float-left:before {
654
+ position: absolute;
655
+ z-index: -1;
656
+ content: '';
657
+ top: calc(50% - 10px);
658
+ left: 0;
659
+ border-style: solid;
660
+ border-width: 10px 10px 10px 0;
661
+ border-color: transparent #e1e1e1 transparent transparent;
662
+ -webkit-transition-duration: 0.3s;
663
+ transition-duration: 0.3s;
664
+ -webkit-transition-property: transform;
665
+ transition-property: transform;
666
+ }
667
+
668
+ .hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
669
+ -webkit-transform: translateX(10px);
670
+ transform: translateX(10px);
671
+ }
672
+
673
+ .hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
674
+ -webkit-transform: translateX(-10px);
675
+ transform: translateX(-10px);
676
+ }
677
+
678
+ /* Wobble Horizontal */
679
+ @-webkit-keyframes hvr-wobble-horizontal {
680
+ 16.65% {
681
+ -webkit-transform: translateX(8px);
682
+ transform: translateX(8px);
683
+ }
684
+ 33.3% {
685
+ -webkit-transform: translateX(-6px);
686
+ transform: translateX(-6px);
687
+ }
688
+ 49.95% {
689
+ -webkit-transform: translateX(4px);
690
+ transform: translateX(4px);
691
+ }
692
+ 66.6% {
693
+ -webkit-transform: translateX(-2px);
694
+ transform: translateX(-2px);
695
+ }
696
+ 83.25% {
697
+ -webkit-transform: translateX(1px);
698
+ transform: translateX(1px);
699
+ }
700
+ 100% {
701
+ -webkit-transform: translateX(0);
702
+ transform: translateX(0);
703
+ }
704
+ }
705
+ @keyframes hvr-wobble-horizontal {
706
+ 16.65% {
707
+ -webkit-transform: translateX(8px);
708
+ transform: translateX(8px);
709
+ }
710
+ 33.3% {
711
+ -webkit-transform: translateX(-6px);
712
+ transform: translateX(-6px);
713
+ }
714
+ 49.95% {
715
+ -webkit-transform: translateX(4px);
716
+ transform: translateX(4px);
717
+ }
718
+ 66.6% {
719
+ -webkit-transform: translateX(-2px);
720
+ transform: translateX(-2px);
721
+ }
722
+ 83.25% {
723
+ -webkit-transform: translateX(1px);
724
+ transform: translateX(1px);
725
+ }
726
+ 100% {
727
+ -webkit-transform: translateX(0);
728
+ transform: translateX(0);
729
+ }
730
+ }
731
+ .hvr-wobble-horizontal {
732
+ display: inline-block;
733
+ vertical-align: middle;
734
+ -webkit-transform: perspective(1px) translateZ(0);
735
+ transform: perspective(1px) translateZ(0);
736
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
737
+ }
738
+
739
+ .hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
740
+ -webkit-animation-name: hvr-wobble-horizontal;
741
+ animation-name: hvr-wobble-horizontal;
742
+ -webkit-animation-duration: 1s;
743
+ animation-duration: 1s;
744
+ -webkit-animation-timing-function: ease-in-out;
745
+ animation-timing-function: ease-in-out;
746
+ -webkit-animation-iteration-count: 1;
747
+ animation-iteration-count: 1;
748
+ }
749
+
750
+ %hvr-menu-item {
751
+ vertical-align: middle;
752
+ -webkit-transform: perspective(1px) translateZ(0);
753
+ transform: perspective(1px) translateZ(0);
754
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
755
+ -webkit-transition-duration: 0.3s;
756
+ transition-duration: 0.3s;
757
+ -webkit-transition-property: transform;
758
+ transition-property: transform;
759
+ }
760
+
761
+ %hvr-menu-item:hover, %hvr-menu-item:focus, %hvr-menu-item:active {
762
+ -webkit-transform: scale(1.1);
763
+ transform: scale(1.1);
764
+ }
765
+
766
+
767
+ .hvr-grow {
768
+ display: inline-block;
769
+ vertical-align: middle;
770
+ -webkit-transform: perspective(1px) translateZ(0);
771
+ transform: perspective(1px) translateZ(0);
772
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0);
773
+ -webkit-transition-duration: 0.3s;
774
+ transition-duration: 0.3s;
775
+ -webkit-transition-property: transform;
776
+ transition-property: transform;
777
+ }
778
+
779
+ .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
780
+ -webkit-transform: scale(1.1);
781
+ transform: scale(1.1);
782
+ }
783
+
784
+ // SlideWithPosition
785
+ @keyframes slideWithPositionFromLeft {
786
+ from {
787
+ left: -100%;
788
+ }
789
+ to {
790
+ left: 100%;
791
+ }
792
+ }
793
+
794
+ @keyframes slideWithPositionRightToLeft {
795
+ from {
796
+ left: 100%;
797
+ opacity: 0;
798
+ }
799
+ to {
800
+ left: 0;
801
+ opacity: 1;
802
+ }
803
+ }
804
+
805
+ @keyframes slideRightToLeftWithFade {
806
+ from {
807
+ opacity: 0;
808
+ transform: translateX(2%);
809
+ } to {
810
+ opacity: 1;
811
+ transform: translateX(0);
812
+ }
813
+ }
814
+
815
+ @keyframes slideLeftToRightWithFade {
816
+ from {
817
+ opacity: 0;
818
+ transform: translateX(-2%);
819
+ } to {
820
+ opacity: 1;
821
+ transform: translateX(0);
822
+ }
823
+ }