sidesys-generic-ui 0.0.19 → 0.0.21

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 (662) hide show
  1. package/karma.conf.js +44 -0
  2. package/ng-package.json +8 -0
  3. package/package.json +15 -33
  4. package/src/lib/alert/index.ts +2 -0
  5. package/src/lib/alert/s-alert.component.css +0 -0
  6. package/src/lib/alert/s-alert.component.html +3 -0
  7. package/src/lib/alert/s-alert.component.spec.ts +25 -0
  8. package/src/lib/alert/s-alert.component.ts +19 -0
  9. package/src/lib/alert/s-alert.module.ts +15 -0
  10. package/src/lib/avatar/components/profile-group/index.ts +2 -0
  11. package/src/lib/avatar/components/profile-group/s-profile-group.component.html +9 -0
  12. package/src/lib/avatar/components/profile-group/s-profile-group.component.scss +40 -0
  13. package/src/lib/avatar/components/profile-group/s-profile-group.component.spec.ts +25 -0
  14. package/src/lib/avatar/components/profile-group/s-profile-group.component.ts +59 -0
  15. package/src/lib/avatar/components/profile-group/s-profile-group.module.ts +17 -0
  16. package/src/lib/avatar/index.ts +2 -0
  17. package/src/lib/avatar/s-avatar.component.html +50 -0
  18. package/src/lib/avatar/s-avatar.component.scss +239 -0
  19. package/src/lib/avatar/s-avatar.component.spec.ts +25 -0
  20. package/src/lib/avatar/s-avatar.component.ts +42 -0
  21. package/src/lib/avatar/s-avatar.module.ts +19 -0
  22. package/src/lib/badge/index.ts +2 -0
  23. package/src/lib/badge/s-badge.component.html +4 -0
  24. package/src/lib/badge/s-badge.component.scss +65 -0
  25. package/src/lib/badge/s-badge.component.spec.ts +25 -0
  26. package/src/lib/badge/s-badge.component.ts +19 -0
  27. package/src/lib/badge/s-badge.module.ts +16 -0
  28. package/src/lib/blockquote/index.ts +2 -0
  29. package/src/lib/blockquote/s-blockquote.component.css +24 -0
  30. package/src/lib/blockquote/s-blockquote.component.html +5 -0
  31. package/src/lib/blockquote/s-blockquote.component.spec.ts +25 -0
  32. package/src/lib/blockquote/s-blockquote.component.ts +17 -0
  33. package/src/lib/blockquote/s-blockquote.module.ts +15 -0
  34. package/{lib/breadcrum/index.d.ts → src/lib/breadcrum/index.ts} +1 -0
  35. package/src/lib/breadcrum/interface/breadcrum-nav.interface.ts +6 -0
  36. package/src/lib/breadcrum/interface/index.ts +1 -0
  37. package/src/lib/breadcrum/s-breadcrum.component.html +11 -0
  38. package/src/lib/breadcrum/s-breadcrum.component.scss +89 -0
  39. package/src/lib/breadcrum/s-breadcrum.component.spec.ts +25 -0
  40. package/src/lib/breadcrum/s-breadcrum.component.ts +27 -0
  41. package/src/lib/breadcrum/s-breadcrum.module.ts +18 -0
  42. package/src/lib/button/button.module.ts +16 -0
  43. package/src/lib/button/components/button/s-button.component.html +14 -0
  44. package/src/lib/button/components/button/s-button.component.scss +237 -0
  45. package/src/lib/button/components/button/s-button.component.spec.ts +25 -0
  46. package/src/lib/button/components/button/s-button.component.ts +45 -0
  47. package/src/lib/button/components/button/styles/s-button-loading.scss +62 -0
  48. package/src/lib/button/components/button/styles/s-button-themes.scss +162 -0
  49. package/src/lib/button/index.ts +2 -0
  50. package/{lib/card/index.d.ts → src/lib/card/index.ts} +1 -1
  51. package/src/lib/card/s-card-models.ts +11 -0
  52. package/src/lib/card/s-card.component.html +28 -0
  53. package/src/lib/card/s-card.component.scss +117 -0
  54. package/src/lib/card/s-card.component.spec.ts +25 -0
  55. package/src/lib/card/s-card.component.ts +55 -0
  56. package/src/lib/card/s-card.module.ts +26 -0
  57. package/src/lib/checkbox/index.ts +2 -0
  58. package/src/lib/checkbox/s-checkbox.component.html +4 -0
  59. package/src/lib/checkbox/s-checkbox.component.scss +63 -0
  60. package/src/lib/checkbox/s-checkbox.component.spec.ts +25 -0
  61. package/src/lib/checkbox/s-checkbox.component.ts +55 -0
  62. package/src/lib/checkbox/s-checkbox.module.ts +17 -0
  63. package/{lib/company-logo/index.d.ts → src/lib/company-logo/index.ts} +1 -1
  64. package/src/lib/company-logo/s-company-logo.component.html +3 -0
  65. package/src/lib/company-logo/s-company-logo.component.scss +14 -0
  66. package/src/lib/company-logo/s-company-logo.component.spec.ts +25 -0
  67. package/src/lib/company-logo/s-company-logo.component.ts +38 -0
  68. package/src/lib/company-logo/s-company-logo.module.ts +16 -0
  69. package/src/lib/content/index.ts +2 -0
  70. package/src/lib/content/s-content.component.html +3 -0
  71. package/src/lib/content/s-content.component.scss +20 -0
  72. package/src/lib/content/s-content.component.spec.ts +25 -0
  73. package/src/lib/content/s-content.component.ts +32 -0
  74. package/src/lib/content/s-content.module.ts +20 -0
  75. package/{lib/drop-down/index.d.ts → src/lib/drop-down/index.ts} +1 -1
  76. package/src/lib/drop-down/s-drop-down-button.ts +4 -0
  77. package/src/lib/drop-down/s-drop-down.component.html +5 -0
  78. package/src/lib/drop-down/s-drop-down.component.scss +34 -0
  79. package/src/lib/drop-down/s-drop-down.component.spec.ts +25 -0
  80. package/src/lib/drop-down/s-drop-down.component.ts +33 -0
  81. package/src/lib/drop-down/s-drop-down.module.ts +12 -0
  82. package/src/lib/fonts-material.scss +15 -0
  83. package/src/lib/fonts.scss +184 -0
  84. package/{lib/footer/index.d.ts → src/lib/footer/index.ts} +1 -1
  85. package/src/lib/footer/s-footer.component.html +4 -0
  86. package/src/lib/footer/s-footer.component.scss +25 -0
  87. package/src/lib/footer/s-footer.component.spec.ts +25 -0
  88. package/src/lib/footer/s-footer.component.ts +14 -0
  89. package/src/lib/footer/s-footer.module.ts +18 -0
  90. package/{lib/form/index.d.ts → src/lib/form/index.ts} +1 -1
  91. package/src/lib/form/s-form-control.ts +65 -0
  92. package/src/lib/form/s-form.component.html +60 -0
  93. package/src/lib/form/s-form.component.scss +7 -0
  94. package/src/lib/form/s-form.component.spec.ts +25 -0
  95. package/src/lib/form/s-form.component.ts +131 -0
  96. package/src/lib/form/s-form.module.ts +29 -0
  97. package/src/lib/icon/index.ts +2 -0
  98. package/src/lib/icon/s-icon.component.css +3 -0
  99. package/src/lib/icon/s-icon.component.html +8 -0
  100. package/src/lib/icon/s-icon.component.spec.ts +25 -0
  101. package/src/lib/icon/s-icon.component.ts +39 -0
  102. package/src/lib/icon/s-icon.module.ts +16 -0
  103. package/src/lib/icon/s-icons.ts +55 -0
  104. package/src/lib/icon-material/index.ts +2 -0
  105. package/src/lib/icon-material/s-icon-material.component.html +5 -0
  106. package/src/lib/icon-material/s-icon-material.component.scss +38 -0
  107. package/src/lib/icon-material/s-icon-material.component.spec.ts +25 -0
  108. package/src/lib/icon-material/s-icon-material.component.ts +51 -0
  109. package/src/lib/icon-material/s-icon-material.module.ts +14 -0
  110. package/src/lib/input/components/error-control/s-error-control.component.html +4 -0
  111. package/src/lib/input/components/error-control/s-error-control.component.scss +54 -0
  112. package/src/lib/input/components/error-control/s-error-control.component.spec.ts +25 -0
  113. package/src/lib/input/components/error-control/s-error-control.component.ts +50 -0
  114. package/src/lib/input/components/input-text/s-input-text.component.html +270 -0
  115. package/src/lib/input/components/input-text/s-input-text.component.scss +312 -0
  116. package/src/lib/input/components/input-text/s-input-text.component.spec.ts +25 -0
  117. package/src/lib/input/components/input-text/s-input-text.component.ts +311 -0
  118. package/src/lib/input/components/input-textarea/s-input-textarea.component.html +15 -0
  119. package/src/lib/input/components/input-textarea/s-input-textarea.component.scss +62 -0
  120. package/src/lib/input/components/input-textarea/s-input-textarea.component.spec.ts +25 -0
  121. package/src/lib/input/components/input-textarea/s-input-textarea.component.ts +82 -0
  122. package/src/lib/input/input.module.ts +30 -0
  123. package/src/lib/link/index.ts +2 -0
  124. package/src/lib/link/s-link.component.html +8 -0
  125. package/src/lib/link/s-link.component.scss +69 -0
  126. package/src/lib/link/s-link.component.spec.ts +25 -0
  127. package/src/lib/link/s-link.component.ts +24 -0
  128. package/src/lib/link/s-link.module.ts +15 -0
  129. package/src/lib/list/index.ts +2 -0
  130. package/src/lib/list/s-list.component.html +10 -0
  131. package/src/lib/list/s-list.component.scss +85 -0
  132. package/src/lib/list/s-list.component.spec.ts +25 -0
  133. package/src/lib/list/s-list.component.ts +21 -0
  134. package/src/lib/list/s-list.module.ts +17 -0
  135. package/src/lib/list-simple/index.ts +2 -0
  136. package/src/lib/list-simple/s-list-simple.component.html +3 -0
  137. package/src/lib/list-simple/s-list-simple.component.scss +146 -0
  138. package/src/lib/list-simple/s-list-simple.component.spec.ts +25 -0
  139. package/src/lib/list-simple/s-list-simple.component.ts +19 -0
  140. package/src/lib/list-simple/s-list-simple.module.ts +17 -0
  141. package/{lib/login/index.d.ts → src/lib/login/index.ts} +1 -1
  142. package/src/lib/login/s-login-event.ts +4 -0
  143. package/src/lib/login/s-login-images.ts +3 -0
  144. package/{lib/login/s-login-model.d.ts → src/lib/login/s-login-model.ts} +3 -3
  145. package/src/lib/login/s-login.component.html +46 -0
  146. package/src/lib/login/s-login.component.scss +69 -0
  147. package/src/lib/login/s-login.component.ts +92 -0
  148. package/src/lib/login/s-login.module.ts +24 -0
  149. package/src/lib/navbar/components/icon-menu/components/s-notificaction.component.ts +35 -0
  150. package/src/lib/navbar/components/icon-menu/components/s-notification.component.html +38 -0
  151. package/src/lib/navbar/components/icon-menu/components/s-notification.component.scss +93 -0
  152. package/src/lib/navbar/components/icon-menu/index.ts +4 -0
  153. package/src/lib/navbar/components/icon-menu/s-icon-menu-model.ts +21 -0
  154. package/src/lib/navbar/components/icon-menu/s-icon-menu.component.html +43 -0
  155. package/src/lib/navbar/components/icon-menu/s-icon-menu.component.scss +95 -0
  156. package/src/lib/navbar/components/icon-menu/s-icon-menu.component.ts +65 -0
  157. package/src/lib/navbar/components/icon-menu/s-icon-menu.module.ts +32 -0
  158. package/{lib/navbar/components/menu-config/index.d.ts → src/lib/navbar/components/menu-config/index.ts} +1 -1
  159. package/src/lib/navbar/components/menu-config/s-menu-config-model.ts +5 -0
  160. package/src/lib/navbar/components/menu-config/s-menu-config.component.html +1 -0
  161. package/src/lib/navbar/components/menu-config/s-menu-config.component.scss +0 -0
  162. package/src/lib/navbar/components/menu-config/s-menu-config.component.ts +34 -0
  163. package/src/lib/navbar/components/menu-config/s-menu-config.module.ts +21 -0
  164. package/{lib/navbar/components/menu-main/index.d.ts → src/lib/navbar/components/menu-main/index.ts} +1 -1
  165. package/src/lib/navbar/components/menu-main/s-menu-main-model.ts +7 -0
  166. package/src/lib/navbar/components/menu-main/s-menu-main.component.html +34 -0
  167. package/src/lib/navbar/components/menu-main/s-menu-main.component.scss +129 -0
  168. package/src/lib/navbar/components/menu-main/s-menu-main.component.ts +35 -0
  169. package/src/lib/navbar/components/menu-main/s-menu-main.module.ts +23 -0
  170. package/{lib/navbar/components/search-menu/index.d.ts → src/lib/navbar/components/search-menu/index.ts} +1 -1
  171. package/src/lib/navbar/components/search-menu/s-search-menu.component.html +1 -0
  172. package/src/lib/navbar/components/search-menu/s-search-menu.component.scss +0 -0
  173. package/src/lib/navbar/components/search-menu/s-search-menu.component.ts +34 -0
  174. package/src/lib/navbar/components/search-menu/s-search-menu.module.ts +19 -0
  175. package/{lib/navbar/index.d.ts → src/lib/navbar/index.ts} +3 -0
  176. package/src/lib/navbar/s-navbar.component.html +34 -0
  177. package/src/lib/navbar/s-navbar.component.scss +92 -0
  178. package/src/lib/navbar/s-navbar.component.ts +72 -0
  179. package/src/lib/navbar/s-navbar.module.ts +35 -0
  180. package/{lib/pagination/index.d.ts → src/lib/pagination/index.ts} +1 -1
  181. package/src/lib/pagination/new/s-pag-model.ts +4 -0
  182. package/src/lib/pagination/new/s-pag.component.html +27 -0
  183. package/src/lib/pagination/new/s-pag.component.scss +63 -0
  184. package/src/lib/pagination/new/s-pag.component.ts +99 -0
  185. package/src/lib/pagination/s-pagination.component.html +6 -0
  186. package/src/lib/pagination/s-pagination.component.scss +15 -0
  187. package/src/lib/pagination/s-pagination.component.ts +79 -0
  188. package/src/lib/pagination/s-pagination.module.ts +25 -0
  189. package/src/lib/popup/index.ts +2 -0
  190. package/src/lib/popup/s-popup.component.html +24 -0
  191. package/src/lib/popup/s-popup.component.scss +127 -0
  192. package/src/lib/popup/s-popup.component.spec.ts +25 -0
  193. package/src/lib/popup/s-popup.component.ts +125 -0
  194. package/src/lib/popup/s-popup.module.ts +23 -0
  195. package/src/lib/precode/index.ts +2 -0
  196. package/src/lib/precode/s-precode.component.html +7 -0
  197. package/src/lib/precode/s-precode.component.scss +53 -0
  198. package/src/lib/precode/s-precode.component.spec.ts +25 -0
  199. package/src/lib/precode/s-precode.component.ts +29 -0
  200. package/src/lib/precode/s-precode.module.ts +20 -0
  201. package/src/lib/progressbar/index.ts +2 -0
  202. package/src/lib/progressbar/s-progressbar.component.html +15 -0
  203. package/src/lib/progressbar/s-progressbar.component.scss +51 -0
  204. package/src/lib/progressbar/s-progressbar.component.spec.ts +25 -0
  205. package/src/lib/progressbar/s-progressbar.component.ts +20 -0
  206. package/src/lib/progressbar/s-progressbar.module.ts +16 -0
  207. package/src/lib/progressbar/temperature/temperature.component.ts +25 -0
  208. package/src/lib/radio/index.ts +2 -0
  209. package/src/lib/radio/s-radio.component.html +4 -0
  210. package/src/lib/radio/s-radio.component.scss +57 -0
  211. package/src/lib/radio/s-radio.component.spec.ts +25 -0
  212. package/src/lib/radio/s-radio.component.ts +55 -0
  213. package/src/lib/radio/s-radio.module.ts +17 -0
  214. package/src/lib/reset.scss +43 -0
  215. package/{lib/select/index.d.ts → src/lib/select/index.ts} +1 -1
  216. package/src/lib/select/s-select-model.ts +27 -0
  217. package/src/lib/select/s-select.module.ts +33 -0
  218. package/src/lib/select/select-multiple/s-select-multiple.component.html +44 -0
  219. package/src/lib/select/select-multiple/s-select-multiple.component.scss +200 -0
  220. package/src/lib/select/select-multiple/s-select-multiple.component.ts +106 -0
  221. package/src/lib/select/select-normal/s-select.component.html +3 -0
  222. package/src/lib/select/select-normal/s-select.component.scss +15 -0
  223. package/src/lib/select/select-normal/s-select.component.spec.ts +25 -0
  224. package/src/lib/select/select-normal/s-select.component.ts +21 -0
  225. package/src/lib/select/select-simple/s-select-simple.component.html +57 -0
  226. package/src/lib/select/select-simple/s-select-simple.component.scss +189 -0
  227. package/src/lib/select/select-simple/s-select-simple.component.ts +118 -0
  228. package/src/lib/shared/image-loader.directive.ts +28 -0
  229. package/src/lib/shared/localstorage.service.ts +64 -0
  230. package/src/lib/shared/shared.module.ts +17 -0
  231. package/{lib/sidebar/index.d.ts → src/lib/sidebar/index.ts} +1 -1
  232. package/src/lib/sidebar/s-sidebar-model.ts +19 -0
  233. package/src/lib/sidebar/s-sidebar.component.html +63 -0
  234. package/src/lib/sidebar/s-sidebar.component.scss +300 -0
  235. package/src/lib/sidebar/s-sidebar.component.spec.ts +25 -0
  236. package/src/lib/sidebar/s-sidebar.component.ts +81 -0
  237. package/src/lib/sidebar/s-sidebar.module.ts +24 -0
  238. package/src/lib/spinner/index.ts +2 -0
  239. package/src/lib/spinner/s-spinner.component.html +1 -0
  240. package/src/lib/spinner/s-spinner.component.scss +265 -0
  241. package/src/lib/spinner/s-spinner.component.spec.ts +25 -0
  242. package/src/lib/spinner/s-spinner.component.ts +21 -0
  243. package/src/lib/spinner/s-spinner.module.ts +16 -0
  244. package/src/lib/stepper/index.ts +2 -0
  245. package/src/lib/stepper/s-stepper.component.css +0 -0
  246. package/src/lib/stepper/s-stepper.component.html +3 -0
  247. package/src/lib/stepper/s-stepper.component.spec.ts +25 -0
  248. package/src/lib/stepper/s-stepper.component.ts +19 -0
  249. package/src/lib/stepper/s-stepper.module.ts +15 -0
  250. package/{lib/sub-menu/index.d.ts → src/lib/sub-menu/index.ts} +1 -1
  251. package/src/lib/sub-menu/s-sub-menu-model.ts +33 -0
  252. package/src/lib/sub-menu/s-sub-menu.component.html +77 -0
  253. package/src/lib/sub-menu/s-sub-menu.component.scss +99 -0
  254. package/src/lib/sub-menu/s-sub-menu.component.spec.ts +25 -0
  255. package/src/lib/sub-menu/s-sub-menu.component.ts +56 -0
  256. package/src/lib/sub-menu/s-sub-menu.module.ts +25 -0
  257. package/{lib/table/index.d.ts → src/lib/table/index.ts} +1 -1
  258. package/src/lib/table/s-table-content.ts +30 -0
  259. package/src/lib/table/s-table.component.html +24 -0
  260. package/src/lib/table/s-table.component.scss +49 -0
  261. package/src/lib/table/s-table.component.spec.ts +25 -0
  262. package/src/lib/table/s-table.component.ts +87 -0
  263. package/src/lib/table/s-table.module.ts +12 -0
  264. package/src/lib/table-t/s-tablet.component.html +18 -0
  265. package/src/lib/table-t/s-tablet.component.scss +41 -0
  266. package/src/lib/table-t/s-tablet.component.spec.ts +25 -0
  267. package/src/lib/table-t/s-tablet.component.ts +223 -0
  268. package/src/lib/table-t/s-tablet.module.ts +10 -0
  269. package/{lib/tabs/index.d.ts → src/lib/tabs/index.ts} +1 -1
  270. package/{lib/tabs/models/configTabs.interface.d.ts → src/lib/tabs/models/configTabs.interface.ts} +1 -1
  271. package/{lib/tabs/models/tab.interface.d.ts → src/lib/tabs/models/tab.interface.ts} +1 -1
  272. package/src/lib/tabs/s-tabs.component.html +8 -0
  273. package/src/lib/tabs/s-tabs.component.scss +49 -0
  274. package/src/lib/tabs/s-tabs.component.spec.ts +25 -0
  275. package/src/lib/tabs/s-tabs.component.ts +38 -0
  276. package/src/lib/tabs/s-tabs.module.ts +17 -0
  277. package/src/lib/tag/index.ts +2 -0
  278. package/src/lib/tag/s-tag.component.html +3 -0
  279. package/src/lib/tag/s-tag.component.scss +117 -0
  280. package/src/lib/tag/s-tag.component.spec.ts +25 -0
  281. package/src/lib/tag/s-tag.component.ts +17 -0
  282. package/src/lib/tag/s-tag.module.ts +17 -0
  283. package/{lib/text-search/index.d.ts → src/lib/text-search/index.ts} +1 -1
  284. package/src/lib/text-search/s-text-search.component.html +4 -0
  285. package/src/lib/text-search/s-text-search.component.scss +23 -0
  286. package/src/lib/text-search/s-text-search.component.spec.ts +25 -0
  287. package/src/lib/text-search/s-text-search.component.ts +30 -0
  288. package/src/lib/text-search/s-text-search.module.ts +16 -0
  289. package/src/lib/theme/index.ts +2 -0
  290. package/src/lib/theme/s-theme.component.scss +1 -0
  291. package/src/lib/theme/s-theme.component.spec.ts +25 -0
  292. package/src/lib/theme/s-theme.component.ts +12 -0
  293. package/src/lib/theme/s-theme.module.ts +15 -0
  294. package/src/lib/theme.scss +662 -0
  295. package/src/lib/thumbnail/index.ts +2 -0
  296. package/src/lib/thumbnail/s-thumbnail-model.ts +5 -0
  297. package/src/lib/thumbnail/s-thumbnail.component.html +3 -0
  298. package/src/lib/thumbnail/s-thumbnail.component.scss +6 -0
  299. package/src/lib/thumbnail/s-thumbnail.component.spec.ts +25 -0
  300. package/src/lib/thumbnail/s-thumbnail.component.ts +22 -0
  301. package/src/lib/thumbnail/s-thumbnail.module.ts +17 -0
  302. package/{lib/toast/index.d.ts → src/lib/toast/index.ts} +1 -1
  303. package/src/lib/toast/s-toast-service.ts +31 -0
  304. package/src/lib/toast/s-toast.component.html +16 -0
  305. package/src/lib/toast/s-toast.component.scss +200 -0
  306. package/src/lib/toast/s-toast.component.spec.ts +25 -0
  307. package/src/lib/toast/s-toast.component.ts +86 -0
  308. package/src/lib/toast/s-toast.module.ts +19 -0
  309. package/src/lib/toggle-switch/index.ts +2 -0
  310. package/src/lib/toggle-switch/s-toggle-switch.component.html +10 -0
  311. package/src/lib/toggle-switch/s-toggle-switch.component.scss +199 -0
  312. package/src/lib/toggle-switch/s-toggle-switch.component.spec.ts +25 -0
  313. package/src/lib/toggle-switch/s-toggle-switch.component.ts +72 -0
  314. package/src/lib/toggle-switch/s-toggle-switch.module.ts +20 -0
  315. package/src/lib/tooltip/directive/s-tooltip-directive.ts +26 -0
  316. package/{lib/tooltip/index.d.ts → src/lib/tooltip/index.ts} +1 -1
  317. package/src/lib/tooltip/s-tooltip-model.ts +6 -0
  318. package/src/lib/tooltip/s-tooltip.component.html +4 -0
  319. package/src/lib/tooltip/s-tooltip.component.scss +112 -0
  320. package/src/lib/tooltip/s-tooltip.component.spec.ts +25 -0
  321. package/src/lib/tooltip/s-tooltip.component.ts +79 -0
  322. package/src/lib/tooltip/s-tooltip.module.ts +16 -0
  323. package/{lib/tree-list/index.d.ts → src/lib/tree-list/index.ts} +1 -1
  324. package/{lib/tree-list/models/tree-node.interface.d.ts → src/lib/tree-list/models/tree-node.interface.ts} +3 -1
  325. package/src/lib/tree-list/s-tree-list.component.html +29 -0
  326. package/src/lib/tree-list/s-tree-list.component.scss +46 -0
  327. package/src/lib/tree-list/s-tree-list.component.ts +127 -0
  328. package/src/lib/tree-list/s-tree-list.module.ts +22 -0
  329. package/src/lib/variables.scss +107 -0
  330. package/src/test.ts +16 -0
  331. package/tsconfig.lib.json +21 -0
  332. package/tsconfig.lib.prod.json +10 -0
  333. package/tsconfig.spec.json +17 -0
  334. package/esm2020/lib/alert/index.mjs +0 -3
  335. package/esm2020/lib/alert/s-alert.component.mjs +0 -15
  336. package/esm2020/lib/alert/s-alert.module.mjs +0 -22
  337. package/esm2020/lib/avatar/components/profile-group/index.mjs +0 -3
  338. package/esm2020/lib/avatar/components/profile-group/s-profile-group.component.mjs +0 -55
  339. package/esm2020/lib/avatar/components/profile-group/s-profile-group.module.mjs +0 -26
  340. package/esm2020/lib/avatar/index.mjs +0 -3
  341. package/esm2020/lib/avatar/s-avatar.component.mjs +0 -49
  342. package/esm2020/lib/avatar/s-avatar.module.mjs +0 -30
  343. package/esm2020/lib/badge/index.mjs +0 -3
  344. package/esm2020/lib/badge/s-badge.component.mjs +0 -26
  345. package/esm2020/lib/badge/s-badge.module.mjs +0 -26
  346. package/esm2020/lib/blockquote/index.mjs +0 -3
  347. package/esm2020/lib/blockquote/s-blockquote.component.mjs +0 -14
  348. package/esm2020/lib/blockquote/s-blockquote.module.mjs +0 -22
  349. package/esm2020/lib/breadcrum/index.mjs +0 -3
  350. package/esm2020/lib/breadcrum/s-breadcrum.component.mjs +0 -38
  351. package/esm2020/lib/breadcrum/s-breadcrum.module.mjs +0 -30
  352. package/esm2020/lib/button/button.module.mjs +0 -24
  353. package/esm2020/lib/button/components/button/s-button.component.mjs +0 -62
  354. package/esm2020/lib/button/index.mjs +0 -3
  355. package/esm2020/lib/card/index.mjs +0 -4
  356. package/esm2020/lib/card/s-card-models.mjs +0 -11
  357. package/esm2020/lib/card/s-card.component.mjs +0 -76
  358. package/esm2020/lib/card/s-card.module.mjs +0 -44
  359. package/esm2020/lib/checkbox/index.mjs +0 -3
  360. package/esm2020/lib/checkbox/s-checkbox.component.mjs +0 -66
  361. package/esm2020/lib/checkbox/s-checkbox.module.mjs +0 -26
  362. package/esm2020/lib/company-logo/index.mjs +0 -3
  363. package/esm2020/lib/company-logo/s-company-logo.component.mjs +0 -35
  364. package/esm2020/lib/company-logo/s-company-logo.module.mjs +0 -22
  365. package/esm2020/lib/content/index.mjs +0 -3
  366. package/esm2020/lib/content/s-content.component.mjs +0 -30
  367. package/esm2020/lib/content/s-content.module.mjs +0 -26
  368. package/esm2020/lib/drop-down/index.mjs +0 -4
  369. package/esm2020/lib/drop-down/s-drop-down-button.mjs +0 -7
  370. package/esm2020/lib/drop-down/s-drop-down.component.mjs +0 -37
  371. package/esm2020/lib/drop-down/s-drop-down.module.mjs +0 -18
  372. package/esm2020/lib/footer/index.mjs +0 -3
  373. package/esm2020/lib/footer/s-footer.component.mjs +0 -15
  374. package/esm2020/lib/footer/s-footer.module.mjs +0 -28
  375. package/esm2020/lib/form/index.mjs +0 -4
  376. package/esm2020/lib/form/s-form-control.mjs +0 -59
  377. package/esm2020/lib/form/s-form.component.mjs +0 -130
  378. package/esm2020/lib/form/s-form.module.mjs +0 -51
  379. package/esm2020/lib/icon/index.mjs +0 -3
  380. package/esm2020/lib/icon/s-icon.component.mjs +0 -41
  381. package/esm2020/lib/icon/s-icon.module.mjs +0 -22
  382. package/esm2020/lib/icon/s-icons.mjs +0 -55
  383. package/esm2020/lib/icon-material/index.mjs +0 -3
  384. package/esm2020/lib/icon-material/s-icon-material.component.mjs +0 -57
  385. package/esm2020/lib/icon-material/s-icon-material.module.mjs +0 -22
  386. package/esm2020/lib/input/components/error-control/s-error-control.component.mjs +0 -52
  387. package/esm2020/lib/input/components/input-text/s-input-text.component.mjs +0 -317
  388. package/esm2020/lib/input/components/input-textarea/s-input-textarea.component.mjs +0 -99
  389. package/esm2020/lib/input/index.mjs +0 -5
  390. package/esm2020/lib/input/input.module.mjs +0 -49
  391. package/esm2020/lib/link/index.mjs +0 -3
  392. package/esm2020/lib/link/s-link.component.mjs +0 -33
  393. package/esm2020/lib/link/s-link.module.mjs +0 -22
  394. package/esm2020/lib/list/index.mjs +0 -3
  395. package/esm2020/lib/list/s-list.component.mjs +0 -24
  396. package/esm2020/lib/list/s-list.module.mjs +0 -26
  397. package/esm2020/lib/list-simple/index.mjs +0 -3
  398. package/esm2020/lib/list-simple/s-list-simple.component.mjs +0 -17
  399. package/esm2020/lib/list-simple/s-list-simple.module.mjs +0 -26
  400. package/esm2020/lib/login/index.mjs +0 -5
  401. package/esm2020/lib/login/s-login-event.mjs +0 -3
  402. package/esm2020/lib/login/s-login-images.mjs +0 -4
  403. package/esm2020/lib/login/s-login-model.mjs +0 -3
  404. package/esm2020/lib/login/s-login.component.mjs +0 -97
  405. package/esm2020/lib/login/s-login.module.mjs +0 -32
  406. package/esm2020/lib/navbar/components/icon-menu/components/s-notificaction.component.mjs +0 -41
  407. package/esm2020/lib/navbar/components/icon-menu/index.mjs +0 -5
  408. package/esm2020/lib/navbar/components/icon-menu/s-icon-menu-model.mjs +0 -3
  409. package/esm2020/lib/navbar/components/icon-menu/s-icon-menu.component.mjs +0 -70
  410. package/esm2020/lib/navbar/components/icon-menu/s-icon-menu.module.mjs +0 -53
  411. package/esm2020/lib/navbar/components/menu-config/index.mjs +0 -4
  412. package/esm2020/lib/navbar/components/menu-config/s-menu-config-model.mjs +0 -8
  413. package/esm2020/lib/navbar/components/menu-config/s-menu-config.component.mjs +0 -39
  414. package/esm2020/lib/navbar/components/menu-config/s-menu-config.module.mjs +0 -35
  415. package/esm2020/lib/navbar/components/menu-main/index.mjs +0 -4
  416. package/esm2020/lib/navbar/components/menu-main/s-menu-main-model.mjs +0 -3
  417. package/esm2020/lib/navbar/components/menu-main/s-menu-main.component.mjs +0 -28
  418. package/esm2020/lib/navbar/components/menu-main/s-menu-main.module.mjs +0 -39
  419. package/esm2020/lib/navbar/components/search-menu/index.mjs +0 -3
  420. package/esm2020/lib/navbar/components/search-menu/s-search-menu.component.mjs +0 -38
  421. package/esm2020/lib/navbar/components/search-menu/s-search-menu.module.mjs +0 -31
  422. package/esm2020/lib/navbar/index.mjs +0 -9
  423. package/esm2020/lib/navbar/s-navbar.component.mjs +0 -95
  424. package/esm2020/lib/navbar/s-navbar.module.mjs +0 -63
  425. package/esm2020/lib/pagination/index.mjs +0 -4
  426. package/esm2020/lib/pagination/new/s-pag-model.mjs +0 -7
  427. package/esm2020/lib/pagination/new/s-pag.component.mjs +0 -98
  428. package/esm2020/lib/pagination/s-pagination.component.mjs +0 -84
  429. package/esm2020/lib/pagination/s-pagination.module.mjs +0 -41
  430. package/esm2020/lib/popup/index.mjs +0 -3
  431. package/esm2020/lib/popup/s-popup.component.mjs +0 -139
  432. package/esm2020/lib/popup/s-popup.module.mjs +0 -36
  433. package/esm2020/lib/precode/index.mjs +0 -3
  434. package/esm2020/lib/precode/s-precode.component.mjs +0 -32
  435. package/esm2020/lib/precode/s-precode.module.mjs +0 -32
  436. package/esm2020/lib/progressbar/index.mjs +0 -3
  437. package/esm2020/lib/progressbar/s-progressbar.component.mjs +0 -27
  438. package/esm2020/lib/progressbar/s-progressbar.module.mjs +0 -26
  439. package/esm2020/lib/progressbar/temperature/temperature.component.mjs +0 -25
  440. package/esm2020/lib/radio/index.mjs +0 -3
  441. package/esm2020/lib/radio/s-radio.component.mjs +0 -67
  442. package/esm2020/lib/radio/s-radio.module.mjs +0 -26
  443. package/esm2020/lib/select/index.mjs +0 -6
  444. package/esm2020/lib/select/s-select-model.mjs +0 -9
  445. package/esm2020/lib/select/s-select.module.mjs +0 -54
  446. package/esm2020/lib/select/select-multiple/s-select-multiple.component.mjs +0 -127
  447. package/esm2020/lib/select/select-normal/s-select.component.mjs +0 -28
  448. package/esm2020/lib/select/select-simple/s-select-simple.component.mjs +0 -132
  449. package/esm2020/lib/shared/image-loader.directive.mjs +0 -31
  450. package/esm2020/lib/shared/localstorage.service.mjs +0 -64
  451. package/esm2020/lib/shared/shared.module.mjs +0 -24
  452. package/esm2020/lib/sidebar/index.mjs +0 -4
  453. package/esm2020/lib/sidebar/s-sidebar-model.mjs +0 -2
  454. package/esm2020/lib/sidebar/s-sidebar.component.mjs +0 -82
  455. package/esm2020/lib/sidebar/s-sidebar.module.mjs +0 -40
  456. package/esm2020/lib/spinner/index.mjs +0 -3
  457. package/esm2020/lib/spinner/s-spinner.component.mjs +0 -27
  458. package/esm2020/lib/spinner/s-spinner.module.mjs +0 -24
  459. package/esm2020/lib/stepper/index.mjs +0 -3
  460. package/esm2020/lib/stepper/s-stepper.component.mjs +0 -15
  461. package/esm2020/lib/stepper/s-stepper.module.mjs +0 -22
  462. package/esm2020/lib/sub-menu/index.mjs +0 -4
  463. package/esm2020/lib/sub-menu/s-sub-menu-model.mjs +0 -15
  464. package/esm2020/lib/sub-menu/s-sub-menu.component.mjs +0 -64
  465. package/esm2020/lib/sub-menu/s-sub-menu.module.mjs +0 -42
  466. package/esm2020/lib/table/index.mjs +0 -4
  467. package/esm2020/lib/table/s-table-content.mjs +0 -37
  468. package/esm2020/lib/table/s-table.component.mjs +0 -96
  469. package/esm2020/lib/table/s-table.module.mjs +0 -20
  470. package/esm2020/lib/table-t/index.mjs +0 -3
  471. package/esm2020/lib/table-t/s-tablet.component.mjs +0 -203
  472. package/esm2020/lib/table-t/s-tablet.module.mjs +0 -18
  473. package/esm2020/lib/tabs/index.mjs +0 -4
  474. package/esm2020/lib/tabs/models/configTabs.interface.mjs +0 -2
  475. package/esm2020/lib/tabs/models/index.mjs +0 -3
  476. package/esm2020/lib/tabs/models/tab.interface.mjs +0 -2
  477. package/esm2020/lib/tabs/s-tabs.component.mjs +0 -36
  478. package/esm2020/lib/tabs/s-tabs.module.mjs +0 -26
  479. package/esm2020/lib/tag/index.mjs +0 -3
  480. package/esm2020/lib/tag/s-tag.component.mjs +0 -22
  481. package/esm2020/lib/tag/s-tag.module.mjs +0 -26
  482. package/esm2020/lib/text-search/index.mjs +0 -3
  483. package/esm2020/lib/text-search/s-text-search.component.mjs +0 -29
  484. package/esm2020/lib/text-search/s-text-search.module.mjs +0 -26
  485. package/esm2020/lib/theme/index.mjs +0 -3
  486. package/esm2020/lib/theme/s-theme.component.mjs +0 -11
  487. package/esm2020/lib/theme/s-theme.module.mjs +0 -22
  488. package/esm2020/lib/thumbnail/index.mjs +0 -3
  489. package/esm2020/lib/thumbnail/s-thumbnail.component.mjs +0 -23
  490. package/esm2020/lib/thumbnail/s-thumbnail.module.mjs +0 -26
  491. package/esm2020/lib/toast/index.mjs +0 -4
  492. package/esm2020/lib/toast/s-toast-service.mjs +0 -30
  493. package/esm2020/lib/toast/s-toast.component.mjs +0 -86
  494. package/esm2020/lib/toast/s-toast.module.mjs +0 -28
  495. package/esm2020/lib/toggle-switch/index.mjs +0 -3
  496. package/esm2020/lib/toggle-switch/s-toggle-switch.component.mjs +0 -85
  497. package/esm2020/lib/toggle-switch/s-toggle-switch.module.mjs +0 -32
  498. package/esm2020/lib/tooltip/directive/s-tooltip-directive.mjs +0 -31
  499. package/esm2020/lib/tooltip/index.mjs +0 -4
  500. package/esm2020/lib/tooltip/s-tooltip.component.mjs +0 -80
  501. package/esm2020/lib/tooltip/s-tooltip.module.mjs +0 -25
  502. package/esm2020/lib/tree-list/index.mjs +0 -4
  503. package/esm2020/lib/tree-list/models/index.mjs +0 -2
  504. package/esm2020/lib/tree-list/models/tree-node.interface.mjs +0 -2
  505. package/esm2020/lib/tree-list/s-tree-list.component.mjs +0 -114
  506. package/esm2020/lib/tree-list/s-tree-list.module.mjs +0 -36
  507. package/esm2020/public-api.mjs +0 -44
  508. package/esm2020/sidesys-generic-ui.mjs +0 -5
  509. package/fesm2015/sidesys-generic-ui.mjs +0 -4770
  510. package/fesm2015/sidesys-generic-ui.mjs.map +0 -1
  511. package/fesm2020/sidesys-generic-ui.mjs +0 -4752
  512. package/fesm2020/sidesys-generic-ui.mjs.map +0 -1
  513. package/index.d.ts +0 -5
  514. package/lib/alert/index.d.ts +0 -2
  515. package/lib/alert/s-alert.component.d.ts +0 -8
  516. package/lib/alert/s-alert.module.d.ts +0 -8
  517. package/lib/avatar/components/profile-group/index.d.ts +0 -2
  518. package/lib/avatar/components/profile-group/s-profile-group.component.d.ts +0 -12
  519. package/lib/avatar/components/profile-group/s-profile-group.module.d.ts +0 -9
  520. package/lib/avatar/index.d.ts +0 -2
  521. package/lib/avatar/s-avatar.component.d.ts +0 -19
  522. package/lib/avatar/s-avatar.module.d.ts +0 -10
  523. package/lib/badge/index.d.ts +0 -2
  524. package/lib/badge/s-badge.component.d.ts +0 -11
  525. package/lib/badge/s-badge.module.d.ts +0 -9
  526. package/lib/blockquote/index.d.ts +0 -2
  527. package/lib/blockquote/s-blockquote.component.d.ts +0 -8
  528. package/lib/blockquote/s-blockquote.module.d.ts +0 -8
  529. package/lib/breadcrum/s-breadcrum.component.d.ts +0 -17
  530. package/lib/breadcrum/s-breadcrum.module.d.ts +0 -10
  531. package/lib/button/button.module.d.ts +0 -8
  532. package/lib/button/components/button/s-button.component.d.ts +0 -21
  533. package/lib/button/index.d.ts +0 -2
  534. package/lib/card/s-card-models.d.ts +0 -6
  535. package/lib/card/s-card.component.d.ts +0 -32
  536. package/lib/card/s-card.module.d.ts +0 -13
  537. package/lib/checkbox/index.d.ts +0 -2
  538. package/lib/checkbox/s-checkbox.component.d.ts +0 -21
  539. package/lib/checkbox/s-checkbox.module.d.ts +0 -9
  540. package/lib/company-logo/s-company-logo.component.d.ts +0 -13
  541. package/lib/company-logo/s-company-logo.module.d.ts +0 -8
  542. package/lib/content/index.d.ts +0 -2
  543. package/lib/content/s-content.component.d.ts +0 -14
  544. package/lib/content/s-content.module.d.ts +0 -8
  545. package/lib/drop-down/s-drop-down-button.d.ts +0 -4
  546. package/lib/drop-down/s-drop-down.component.d.ts +0 -20
  547. package/lib/drop-down/s-drop-down.module.d.ts +0 -8
  548. package/lib/footer/s-footer.component.d.ts +0 -6
  549. package/lib/footer/s-footer.module.d.ts +0 -9
  550. package/lib/form/s-form-control.d.ts +0 -26
  551. package/lib/form/s-form.component.d.ts +0 -33
  552. package/lib/form/s-form.module.d.ts +0 -14
  553. package/lib/icon/index.d.ts +0 -2
  554. package/lib/icon/s-icon.component.d.ts +0 -18
  555. package/lib/icon/s-icon.module.d.ts +0 -8
  556. package/lib/icon/s-icons.d.ts +0 -8
  557. package/lib/icon-material/index.d.ts +0 -2
  558. package/lib/icon-material/s-icon-material.component.d.ts +0 -19
  559. package/lib/icon-material/s-icon-material.module.d.ts +0 -8
  560. package/lib/input/components/error-control/s-error-control.component.d.ts +0 -13
  561. package/lib/input/components/input-text/s-input-text.component.d.ts +0 -59
  562. package/lib/input/components/input-textarea/s-input-textarea.component.d.ts +0 -33
  563. package/lib/input/input.module.d.ts +0 -13
  564. package/lib/link/index.d.ts +0 -2
  565. package/lib/link/s-link.component.d.ts +0 -14
  566. package/lib/link/s-link.module.d.ts +0 -8
  567. package/lib/list/index.d.ts +0 -2
  568. package/lib/list/s-list.component.d.ts +0 -11
  569. package/lib/list/s-list.module.d.ts +0 -9
  570. package/lib/list-simple/index.d.ts +0 -2
  571. package/lib/list-simple/s-list-simple.component.d.ts +0 -9
  572. package/lib/list-simple/s-list-simple.module.d.ts +0 -9
  573. package/lib/login/s-login-event.d.ts +0 -4
  574. package/lib/login/s-login-images.d.ts +0 -3
  575. package/lib/login/s-login.component.d.ts +0 -35
  576. package/lib/login/s-login.module.d.ts +0 -10
  577. package/lib/navbar/components/icon-menu/components/s-notificaction.component.d.ts +0 -16
  578. package/lib/navbar/components/icon-menu/index.d.ts +0 -4
  579. package/lib/navbar/components/icon-menu/s-icon-menu-model.d.ts +0 -20
  580. package/lib/navbar/components/icon-menu/s-icon-menu.component.d.ts +0 -23
  581. package/lib/navbar/components/icon-menu/s-icon-menu.module.d.ts +0 -15
  582. package/lib/navbar/components/menu-config/s-menu-config-model.d.ts +0 -5
  583. package/lib/navbar/components/menu-config/s-menu-config.component.d.ts +0 -19
  584. package/lib/navbar/components/menu-config/s-menu-config.module.d.ts +0 -11
  585. package/lib/navbar/components/menu-main/s-menu-main-model.d.ts +0 -7
  586. package/lib/navbar/components/menu-main/s-menu-main.component.d.ts +0 -13
  587. package/lib/navbar/components/menu-main/s-menu-main.module.d.ts +0 -12
  588. package/lib/navbar/components/search-menu/s-search-menu.component.d.ts +0 -17
  589. package/lib/navbar/components/search-menu/s-search-menu.module.d.ts +0 -10
  590. package/lib/navbar/s-navbar.component.d.ts +0 -36
  591. package/lib/navbar/s-navbar.module.d.ts +0 -18
  592. package/lib/pagination/new/s-pag-model.d.ts +0 -4
  593. package/lib/pagination/new/s-pag.component.d.ts +0 -32
  594. package/lib/pagination/s-pagination.component.d.ts +0 -27
  595. package/lib/pagination/s-pagination.module.d.ts +0 -12
  596. package/lib/popup/index.d.ts +0 -2
  597. package/lib/popup/s-popup.component.d.ts +0 -39
  598. package/lib/popup/s-popup.module.d.ts +0 -10
  599. package/lib/precode/index.d.ts +0 -2
  600. package/lib/precode/s-precode.component.d.ts +0 -11
  601. package/lib/precode/s-precode.module.d.ts +0 -10
  602. package/lib/progressbar/index.d.ts +0 -2
  603. package/lib/progressbar/s-progressbar.component.d.ts +0 -11
  604. package/lib/progressbar/s-progressbar.module.d.ts +0 -9
  605. package/lib/progressbar/temperature/temperature.component.d.ts +0 -11
  606. package/lib/radio/index.d.ts +0 -2
  607. package/lib/radio/s-radio.component.d.ts +0 -21
  608. package/lib/radio/s-radio.module.d.ts +0 -9
  609. package/lib/select/s-select-model.d.ts +0 -25
  610. package/lib/select/s-select.module.d.ts +0 -15
  611. package/lib/select/select-multiple/s-select-multiple.component.d.ts +0 -32
  612. package/lib/select/select-normal/s-select.component.d.ts +0 -12
  613. package/lib/select/select-simple/s-select-simple.component.d.ts +0 -36
  614. package/lib/shared/image-loader.directive.d.ts +0 -13
  615. package/lib/shared/localstorage.service.d.ts +0 -14
  616. package/lib/shared/shared.module.d.ts +0 -8
  617. package/lib/sidebar/s-sidebar-model.d.ts +0 -13
  618. package/lib/sidebar/s-sidebar.component.d.ts +0 -28
  619. package/lib/sidebar/s-sidebar.module.d.ts +0 -12
  620. package/lib/spinner/index.d.ts +0 -2
  621. package/lib/spinner/s-spinner.component.d.ts +0 -12
  622. package/lib/spinner/s-spinner.module.d.ts +0 -8
  623. package/lib/stepper/index.d.ts +0 -2
  624. package/lib/stepper/s-stepper.component.d.ts +0 -8
  625. package/lib/stepper/s-stepper.module.d.ts +0 -8
  626. package/lib/sub-menu/s-sub-menu-model.d.ts +0 -30
  627. package/lib/sub-menu/s-sub-menu.component.d.ts +0 -19
  628. package/lib/sub-menu/s-sub-menu.module.d.ts +0 -13
  629. package/lib/table/s-table-content.d.ts +0 -26
  630. package/lib/table/s-table.component.d.ts +0 -28
  631. package/lib/table/s-table.module.d.ts +0 -10
  632. package/lib/table-t/s-tablet.component.d.ts +0 -65
  633. package/lib/table-t/s-tablet.module.d.ts +0 -8
  634. package/lib/tabs/s-tabs.component.d.ts +0 -15
  635. package/lib/tabs/s-tabs.module.d.ts +0 -9
  636. package/lib/tag/index.d.ts +0 -2
  637. package/lib/tag/s-tag.component.d.ts +0 -8
  638. package/lib/tag/s-tag.module.d.ts +0 -9
  639. package/lib/text-search/s-text-search.component.d.ts +0 -13
  640. package/lib/text-search/s-text-search.module.d.ts +0 -9
  641. package/lib/theme/index.d.ts +0 -2
  642. package/lib/theme/s-theme.component.d.ts +0 -5
  643. package/lib/theme/s-theme.module.d.ts +0 -8
  644. package/lib/thumbnail/index.d.ts +0 -2
  645. package/lib/thumbnail/s-thumbnail.component.d.ts +0 -11
  646. package/lib/thumbnail/s-thumbnail.module.d.ts +0 -9
  647. package/lib/toast/s-toast-service.d.ts +0 -11
  648. package/lib/toast/s-toast.component.d.ts +0 -25
  649. package/lib/toast/s-toast.module.d.ts +0 -9
  650. package/lib/toggle-switch/index.d.ts +0 -2
  651. package/lib/toggle-switch/s-toggle-switch.component.d.ts +0 -25
  652. package/lib/toggle-switch/s-toggle-switch.module.d.ts +0 -10
  653. package/lib/tooltip/directive/s-tooltip-directive.d.ts +0 -12
  654. package/lib/tooltip/s-tooltip.component.d.ts +0 -19
  655. package/lib/tooltip/s-tooltip.module.d.ts +0 -9
  656. package/lib/tree-list/s-tree-list.component.d.ts +0 -24
  657. package/lib/tree-list/s-tree-list.module.d.ts +0 -11
  658. /package/{lib/input/index.d.ts → src/lib/input/index.ts} +0 -0
  659. /package/{lib/table-t/index.d.ts → src/lib/table-t/index.ts} +0 -0
  660. /package/{lib/tabs/models/index.d.ts → src/lib/tabs/models/index.ts} +0 -0
  661. /package/{lib/tree-list/models/index.d.ts → src/lib/tree-list/models/index.ts} +0 -0
  662. /package/{public-api.d.ts → src/public-api.ts} +0 -0
@@ -0,0 +1,662 @@
1
+ @import './reset.scss';
2
+ @import './fonts.scss';
3
+ @import './variables.scss';
4
+ /*
5
+ *
6
+ Estilos para todo el ecosistema.
7
+ *
8
+ */
9
+
10
+ .skeleton-loading {
11
+ background:
12
+ linear-gradient(0.25turn, transparent, #fff, transparent),
13
+ linear-gradient(#eee, #eee),
14
+ radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
15
+ linear-gradient(#eee, #eee);
16
+ animation: skeleton-animation 1.5s infinite ease-in-out;
17
+ }
18
+
19
+ @keyframes skeleton-animation {
20
+ 0% {
21
+ opacity: 0.6;
22
+ }
23
+
24
+ 50% {
25
+ opacity: 0.8;
26
+ }
27
+
28
+ 100% {
29
+ opacity: 0.6;
30
+ }
31
+ }
32
+
33
+ ::selection {
34
+ background: var(--primary-600);
35
+ color: var(--neutrals-100)
36
+ }
37
+
38
+ .no-select {
39
+ -webkit-touch-callout: none;
40
+ -webkit-user-select: none;
41
+ -khtml-user-select: none;
42
+ -moz-user-select: none;
43
+ -ms-user-select: none;
44
+ user-select: none;
45
+ }
46
+
47
+ .cursor {
48
+ cursor: pointer;
49
+ -webkit-touch-callout: none;
50
+ -webkit-user-select: none;
51
+ -khtml-user-select: none;
52
+ -moz-user-select: none;
53
+ -ms-user-select: none;
54
+ user-select: none;
55
+ }
56
+
57
+ //WIDTH
58
+ .w-25 {
59
+ width: 25% !important;
60
+ }
61
+
62
+ .w-33 {
63
+ width: 33% !important;
64
+ }
65
+
66
+ .w-50 {
67
+ width: 50% !important;
68
+ }
69
+
70
+ .w-75 {
71
+ width: 75% !important;
72
+ }
73
+
74
+ .w-100 {
75
+ width: 100% !important;
76
+ }
77
+
78
+ //SPACING PADDING
79
+ .p-0 {
80
+ padding: 0 !important;
81
+ }
82
+
83
+ .p-1 {
84
+ padding: .25em;
85
+ }
86
+
87
+ .p-2 {
88
+ padding: .5em;
89
+ }
90
+
91
+ .p-3 {
92
+ padding: 1em;
93
+ }
94
+
95
+ .p-4 {
96
+ padding: 1.5em;
97
+ }
98
+
99
+ .p-5 {
100
+ padding: 3em;
101
+ }
102
+
103
+ .px-0 {
104
+ padding: 0 0;
105
+ }
106
+
107
+ .px-1 {
108
+ padding: .25em 0;
109
+ }
110
+
111
+ .px-2 {
112
+ padding: .5em 0;
113
+ }
114
+
115
+ .px-3 {
116
+ padding: 1em 0;
117
+ }
118
+
119
+ .px-4 {
120
+ padding: 1.5em 0;
121
+ }
122
+
123
+ .px-5 {
124
+ padding: 3em 0;
125
+ }
126
+
127
+ .py-0 {
128
+ padding: 0 0;
129
+ }
130
+
131
+ .py-1 {
132
+ padding: 0 .25em;
133
+ }
134
+
135
+ .py-2 {
136
+ padding: 0 .5em;
137
+ }
138
+
139
+ .py-3 {
140
+ padding: 0 1em;
141
+ }
142
+
143
+ .py-4 {
144
+ padding: 0 1.5em;
145
+ }
146
+
147
+ .py-5 {
148
+ padding: 0 3em;
149
+ }
150
+
151
+ .pt-0 {
152
+ padding-top: 0;
153
+ }
154
+
155
+ .pt-1 {
156
+ padding-top: .25em;
157
+ }
158
+
159
+ .pt-2 {
160
+ padding-top: .5em;
161
+ }
162
+
163
+ .pt-3 {
164
+ padding-top: 1em;
165
+ }
166
+
167
+ .pt-4 {
168
+ padding-top: 1.5em;
169
+ }
170
+
171
+ .pt-5 {
172
+ padding-top: 3em;
173
+ }
174
+
175
+ .pr-0 {
176
+ padding-right: 0;
177
+ }
178
+
179
+ .pr-1 {
180
+ padding-right: .25em;
181
+ }
182
+
183
+ .pr-2 {
184
+ padding-right: .5em;
185
+ }
186
+
187
+ .pr-3 {
188
+ padding-right: 1em;
189
+ }
190
+
191
+ .pr-4 {
192
+ padding-right: 1.5em;
193
+ }
194
+
195
+ .pr-5 {
196
+ padding-right: 3em;
197
+ }
198
+
199
+ .pb-0 {
200
+ padding-bottom: 0;
201
+ }
202
+
203
+ .pb-1 {
204
+ padding-bottom: .25em;
205
+ }
206
+
207
+ .pb-2 {
208
+ padding-bottom: .5em;
209
+ }
210
+
211
+ .pb-3 {
212
+ padding-bottom: 1em;
213
+ }
214
+
215
+ .pb-4 {
216
+ padding-bottom: 1.5em;
217
+ }
218
+
219
+ .pb-5 {
220
+ padding-bottom: 3em;
221
+ }
222
+
223
+ .pl-0 {
224
+ padding-left: 0;
225
+ }
226
+
227
+ .pl-1 {
228
+ padding-left: .25em;
229
+ }
230
+
231
+ .pl-2 {
232
+ padding-left: .5em;
233
+ }
234
+
235
+ .pl-3 {
236
+ padding-left: 1em;
237
+ }
238
+
239
+ .pl-4 {
240
+ padding-left: 1.5em;
241
+ }
242
+
243
+ .pl-5 {
244
+ padding-left: 3em;
245
+ }
246
+
247
+ //SPACCING MARGIN
248
+ .m-auto {
249
+ margin: 0 auto;
250
+ }
251
+
252
+ .m-0 {
253
+ margin: 0;
254
+ }
255
+
256
+ .m-1 {
257
+ margin: .25em;
258
+ }
259
+
260
+ .m-2 {
261
+ margin: .5em;
262
+ }
263
+
264
+ .m-3 {
265
+ margin: 1em;
266
+ }
267
+
268
+ .m-4 {
269
+ margin: 1.5em;
270
+ }
271
+
272
+ .m-5 {
273
+ margin: 3em;
274
+ }
275
+
276
+ .mx-0 {
277
+ margin: 0 0;
278
+ }
279
+
280
+ .mx-1 {
281
+ margin: .25em 0;
282
+ }
283
+
284
+ .mx-2 {
285
+ margin: .5em 0;
286
+ }
287
+
288
+ .mx-3 {
289
+ margin: 1em 0;
290
+ }
291
+
292
+ .mx-4 {
293
+ margin: 1.5em 0;
294
+ }
295
+
296
+ .mx-5 {
297
+ margin: 3em 0;
298
+ }
299
+
300
+ .my-0 {
301
+ margin: 0 0;
302
+ }
303
+
304
+ .my-1 {
305
+ margin: 0 .25em;
306
+ }
307
+
308
+ .my-2 {
309
+ margin: 0 .5em;
310
+ }
311
+
312
+ .my-3 {
313
+ margin: 0 1em;
314
+ }
315
+
316
+ .my-4 {
317
+ margin: 0 1.5em;
318
+ }
319
+
320
+ .my-5 {
321
+ margin: 0 3em;
322
+ }
323
+
324
+ .mt-0 {
325
+ margin-top: 0;
326
+ }
327
+
328
+ .mt-1 {
329
+ margin-top: .25em;
330
+ }
331
+
332
+ .mt-2 {
333
+ margin-top: .5em;
334
+ }
335
+
336
+ .mt-3 {
337
+ margin-top: 1em;
338
+ }
339
+
340
+ .mt-4 {
341
+ margin-top: 1.5em;
342
+ }
343
+
344
+ .mt-5 {
345
+ margin-top: 3em;
346
+ }
347
+
348
+ .mr-0 {
349
+ margin-right: 0;
350
+ }
351
+
352
+ .mr-1 {
353
+ margin-right: .25em;
354
+ }
355
+
356
+ .mr-2 {
357
+ margin-right: .5em;
358
+ }
359
+
360
+ .mr-3 {
361
+ margin-right: 1em;
362
+ }
363
+
364
+ .mr-4 {
365
+ margin-right: 1.5em;
366
+ }
367
+
368
+ .mr-5 {
369
+ margin-right: 3em;
370
+ }
371
+
372
+ .mb-0 {
373
+ margin-bottom: 0;
374
+ }
375
+
376
+ .mb-1 {
377
+ margin-bottom: .25em;
378
+ }
379
+
380
+ .mb-2 {
381
+ margin-bottom: .5em;
382
+ }
383
+
384
+ .mb-3 {
385
+ margin-bottom: 1em;
386
+ }
387
+
388
+ .mb-4 {
389
+ margin-bottom: 1.5em;
390
+ }
391
+
392
+ .mb-5 {
393
+ margin-bottom: 3em;
394
+ }
395
+
396
+ .ml-0 {
397
+ margin-left: 0;
398
+ }
399
+
400
+ .ml-1 {
401
+ margin-left: .25em;
402
+ }
403
+
404
+ .ml-2 {
405
+ margin-left: .5em;
406
+ }
407
+
408
+ .ml-3 {
409
+ margin-left: 1em;
410
+ }
411
+
412
+ .ml-4 {
413
+ margin-left: 1.5em;
414
+ }
415
+
416
+ .ml-5 {
417
+ margin-left: 3em;
418
+ }
419
+
420
+ //FLEX
421
+ // .d-flex,
422
+ // .fx-right,
423
+ // .fx-left,
424
+ // .align-center,
425
+ // .justify-content-center {
426
+ // display: flex;
427
+ // }
428
+ .d-flex {
429
+ display: flex;
430
+ }
431
+
432
+ .fx-right {
433
+ flex-direction: row-reverse;
434
+ }
435
+
436
+ .fx-left {
437
+ flex-direction: row;
438
+ }
439
+
440
+ .justify-content-start {
441
+ justify-content: flex-start !important;
442
+ }
443
+
444
+ .justify-content-center {
445
+ justify-content: center !important;
446
+ }
447
+
448
+ .justify-content-end {
449
+ justify-content: flex-end !important;
450
+ }
451
+
452
+ .justify-content-between {
453
+ justify-content: space-between !important;
454
+ }
455
+
456
+ .justify-content-around {
457
+ justify-content: space-around !important;
458
+ }
459
+
460
+ .align-center {
461
+ align-items: center;
462
+ }
463
+
464
+ //TEXT
465
+ .text-start {
466
+ text-align: left !important;
467
+ }
468
+
469
+ .text-center {
470
+ text-align: center !important;
471
+ }
472
+
473
+ .text-end {
474
+ text-align: right !important;
475
+ }
476
+
477
+ //BORDERS
478
+ .border,
479
+ .border-1 {
480
+ border: 1px solid;
481
+ }
482
+
483
+ .border-2 {
484
+ border: 2px solid;
485
+ }
486
+
487
+ .border-left-1,
488
+ .border-left {
489
+ border-left: 1px solid;
490
+ }
491
+
492
+ .border-left-2 {
493
+ border-left: 2px solid;
494
+ }
495
+
496
+ .border-right-1,
497
+ .border-right {
498
+ border-right: 1px solid;
499
+ }
500
+
501
+ .border-right-2 {
502
+ border-right: 2px solid;
503
+ }
504
+
505
+ .border-top-1,
506
+ .border-top {
507
+ border-top: 1px solid;
508
+ }
509
+
510
+ .border-top-2 {
511
+ border-top: 2px solid;
512
+ }
513
+
514
+ .border-bottom-1,
515
+ .border-bottom {
516
+ border-bottom: 1px solid;
517
+ }
518
+
519
+ .border-bottom-2 {
520
+ border-bottom: 2px solid;
521
+ }
522
+
523
+ .border-y-1,
524
+ .border-y {
525
+ border-top: 1px solid;
526
+ border-bottom: 1px solid;
527
+ }
528
+
529
+ .border-y-2 {
530
+ border-top: 2px solid;
531
+ border-bottom: 2px solid;
532
+ }
533
+
534
+ .border-x-1,
535
+ .border-x {
536
+ border-left: 1px solid;
537
+ border-right: 1px solid;
538
+ }
539
+
540
+ .border-x-2 {
541
+ border-left: 2px solid;
542
+ border-right: 2px solid;
543
+ }
544
+
545
+ //BORDER RADIUS
546
+ .br-1 {
547
+ border-radius: 2px;
548
+ }
549
+
550
+ .br-2 {
551
+ border-radius: 4px;
552
+ }
553
+
554
+ .br-3 {
555
+ border-radius: 8px;
556
+ }
557
+
558
+ //SOMBRA INTERIOR
559
+ .shadow-inner-1 {
560
+ box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
561
+ }
562
+
563
+ .shadow-inner-2 {
564
+ box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
565
+ }
566
+
567
+ .shadow-outer-1 {
568
+ box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
569
+ }
570
+
571
+ .shadow-outer-2 {
572
+ box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
573
+ }
574
+
575
+ //OPACITY
576
+ .opacity-100 {
577
+ opacity: 1;
578
+ }
579
+
580
+ .opacity-90 {
581
+ opacity: 0.9;
582
+ }
583
+
584
+ .opacity-80 {
585
+ opacity: 0.8;
586
+ }
587
+
588
+ .opacity-70 {
589
+ opacity: 0.7;
590
+ }
591
+
592
+ .opacity-60 {
593
+ opacity: 0.6;
594
+ }
595
+
596
+ .opacity-50 {
597
+ opacity: 0.5;
598
+ }
599
+
600
+ .opacity-40 {
601
+ opacity: 0.4;
602
+ }
603
+
604
+ .opacity-30 {
605
+ opacity: 0.3;
606
+ }
607
+
608
+ .opacity-20 {
609
+ opacity: 0.2;
610
+ }
611
+
612
+ .opacity-10 {
613
+ opacity: 0.1;
614
+ }
615
+
616
+ //highlighter
617
+ .highlighter,
618
+ .highlighter-primary {
619
+ color: var(--primary-600)
620
+ }
621
+
622
+ .highlighter-succes {
623
+ color: var(--green-500)
624
+ }
625
+
626
+ .highlighter-warning {
627
+ color: var(--yellow-600)
628
+ }
629
+
630
+ .highlighter-error {
631
+ color: var(--red-600)
632
+ }
633
+
634
+ .highlighter-info {
635
+ color: var(--secondary-600)
636
+ }
637
+
638
+ /* ScrollBar */
639
+
640
+ .s-scroll::-webkit-scrollbar {
641
+ width: 1.3rem;
642
+ }
643
+
644
+ .s-scroll::-webkit-scrollbar-track {
645
+ background-color: transparent;
646
+ }
647
+
648
+ .s-scroll::-webkit-scrollbar-thumb {
649
+ background-color: var(--neutrals-900);
650
+ }
651
+
652
+ .s-scroll::-webkit-scrollbar-thumb {
653
+ background-color: var(--neutrals-900);
654
+ border-radius: 1.3rem;
655
+ }
656
+
657
+ .s-scroll::-webkit-scrollbar-thumb {
658
+ background-color: var(--neutrals-900);
659
+ border-radius: 1.3rem;
660
+ border: 0.4rem solid transparent;
661
+ background-clip: content-box;
662
+ }
@@ -0,0 +1,2 @@
1
+ export * from './s-thumbnail.module';
2
+ export * from './s-thumbnail.component';
@@ -0,0 +1,5 @@
1
+ export class SThumbnail {
2
+ public title?: string;
3
+ public url!:string;
4
+ public size?: number;
5
+ }
@@ -0,0 +1,3 @@
1
+ <div class="image622">
2
+ <img appImageLoader alt="{{title}}" width="{{size}}" height="{{size}}" src="{{url}}">
3
+ </div>
@@ -0,0 +1,6 @@
1
+ .image622{
2
+ img{
3
+ border: 1px solid #CECECE;
4
+ border-radius: 4px;
5
+ }
6
+ }
@@ -0,0 +1,25 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { SThumbnailComponent } from './s-thumbnail.component';
4
+
5
+ describe('SThumbnailComponent', () => {
6
+ let component: SThumbnailComponent;
7
+ let fixture: ComponentFixture<SThumbnailComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ declarations: [ SThumbnailComponent ]
12
+ })
13
+ .compileComponents();
14
+ });
15
+
16
+ beforeEach(() => {
17
+ fixture = TestBed.createComponent(SThumbnailComponent);
18
+ component = fixture.componentInstance;
19
+ fixture.detectChanges();
20
+ });
21
+
22
+ it('should create', () => {
23
+ expect(component).toBeTruthy();
24
+ });
25
+ });
@@ -0,0 +1,22 @@
1
+ import { Component, Input, OnInit } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: 's-thumbnail',
5
+ templateUrl: './s-thumbnail.component.html',
6
+ styleUrls: ['./s-thumbnail.component.scss']
7
+ })
8
+
9
+ export class SThumbnailComponent implements OnInit {
10
+
11
+
12
+ @Input() title?: string;
13
+ @Input() url!: string;
14
+ @Input() size: number = 40
15
+
16
+ constructor(){}
17
+
18
+ ngOnInit(): void {
19
+
20
+
21
+ }
22
+ }
@@ -0,0 +1,17 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { SThumbnailComponent } from './s-thumbnail.component';
4
+ import { SharedModule } from '../shared/shared.module';
5
+
6
+
7
+ @NgModule({
8
+ declarations: [
9
+ SThumbnailComponent
10
+ ],
11
+ imports: [
12
+ CommonModule,
13
+ SharedModule
14
+ ],
15
+ exports: [SThumbnailComponent]
16
+ })
17
+ export class SThumbnailModule { }