@pictogrammers/components 0.3.1

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 (379) hide show
  1. package/@types/css.d.ts +4 -0
  2. package/@types/html.d.ts +4 -0
  3. package/README.md +49 -0
  4. package/dist/main.js +3819 -0
  5. package/dist/pgAnnoy.js +116 -0
  6. package/dist/pgAvatar.js +136 -0
  7. package/dist/pgButton.js +116 -0
  8. package/dist/pgButtonGroup.js +116 -0
  9. package/dist/pgButtonLink.js +116 -0
  10. package/dist/pgButtonToggle.js +146 -0
  11. package/dist/pgCard.js +116 -0
  12. package/dist/pgCardUser.js +196 -0
  13. package/dist/pgColor.js +136 -0
  14. package/dist/pgDatabase.js +236 -0
  15. package/dist/pgDropdown.js +686 -0
  16. package/dist/pgGrid.js +126 -0
  17. package/dist/pgHeader.js +116 -0
  18. package/dist/pgIcon.js +116 -0
  19. package/dist/pgInputCheck.js +116 -0
  20. package/dist/pgInputCheckList.js +126 -0
  21. package/dist/pgInputFileLocal.js +116 -0
  22. package/dist/pgInputHexRgb.js +126 -0
  23. package/dist/pgInputRange.js +116 -0
  24. package/dist/pgInputSelect.js +116 -0
  25. package/dist/pgInputText.js +116 -0
  26. package/dist/pgInputTextIcon.js +176 -0
  27. package/dist/pgInputUserSelect.js +116 -0
  28. package/dist/pgListTag.js +136 -0
  29. package/dist/pgMarkdown.js +346 -0
  30. package/dist/pgMenuIcon.js +206 -0
  31. package/dist/pgModalAlert.js +126 -0
  32. package/dist/pgModification.js +396 -0
  33. package/dist/pgNav.js +116 -0
  34. package/dist/pgOverlay.js +96 -0
  35. package/dist/pgPicker.js +116 -0
  36. package/dist/pgPreview.js +116 -0
  37. package/dist/pgScroll.js +266 -0
  38. package/dist/pgSearch.js +146 -0
  39. package/dist/pgTab.js +116 -0
  40. package/dist/pgTabs.js +136 -0
  41. package/dist/pgToast.js +136 -0
  42. package/dist/pgToasts.js +136 -0
  43. package/dist/pgTooltip.js +126 -0
  44. package/index.html +302 -0
  45. package/package.json +25 -0
  46. package/pg/annoy/README.md +18 -0
  47. package/pg/annoy/__examples__/basic/basic.html +8 -0
  48. package/pg/annoy/__examples__/basic/basic.ts +11 -0
  49. package/pg/annoy/annoy.css +238 -0
  50. package/pg/annoy/annoy.html +59 -0
  51. package/pg/annoy/annoy.ts +48 -0
  52. package/pg/annoy/index.ts +3 -0
  53. package/pg/avatar/README.md +23 -0
  54. package/pg/avatar/__examples__/basic/basic.html +6 -0
  55. package/pg/avatar/__examples__/basic/basic.ts +41 -0
  56. package/pg/avatar/__examples__/basic/constants.ts +1 -0
  57. package/pg/avatar/avatar.css +45 -0
  58. package/pg/avatar/avatar.html +8 -0
  59. package/pg/avatar/avatar.spec.ts +51 -0
  60. package/pg/avatar/avatar.ts +37 -0
  61. package/pg/avatar/index.ts +3 -0
  62. package/pg/button/README.md +51 -0
  63. package/pg/button/__examples__/basic/basic.html +11 -0
  64. package/pg/button/__examples__/basic/basic.ts +11 -0
  65. package/pg/button/__examples__/states/states.html +8 -0
  66. package/pg/button/__examples__/states/states.ts +20 -0
  67. package/pg/button/button.css +91 -0
  68. package/pg/button/button.html +3 -0
  69. package/pg/button/button.ts +45 -0
  70. package/pg/button/index.ts +3 -0
  71. package/pg/buttonGroup/README.md +28 -0
  72. package/pg/buttonGroup/__examples__/basic/basic.html +12 -0
  73. package/pg/buttonGroup/__examples__/basic/basic.ts +11 -0
  74. package/pg/buttonGroup/buttonGroup.css +4 -0
  75. package/pg/buttonGroup/buttonGroup.html +1 -0
  76. package/pg/buttonGroup/buttonGroup.spec.ts +30 -0
  77. package/pg/buttonGroup/buttonGroup.ts +50 -0
  78. package/pg/buttonGroup/index.ts +3 -0
  79. package/pg/buttonLink/README.md +51 -0
  80. package/pg/buttonLink/__examples__/basic/basic.html +17 -0
  81. package/pg/buttonLink/__examples__/basic/basic.ts +11 -0
  82. package/pg/buttonLink/buttonLink.css +91 -0
  83. package/pg/buttonLink/buttonLink.html +3 -0
  84. package/pg/buttonLink/buttonLink.ts +46 -0
  85. package/pg/buttonLink/index.ts +3 -0
  86. package/pg/buttonToggle/README.md +54 -0
  87. package/pg/buttonToggle/__examples__/basic/basic.html +10 -0
  88. package/pg/buttonToggle/__examples__/basic/basic.ts +23 -0
  89. package/pg/buttonToggle/buttonToggle.css +8 -0
  90. package/pg/buttonToggle/buttonToggle.html +4 -0
  91. package/pg/buttonToggle/buttonToggle.ts +44 -0
  92. package/pg/buttonToggle/index.ts +3 -0
  93. package/pg/card/README.md +21 -0
  94. package/pg/card/__examples__/basic/basic.html +5 -0
  95. package/pg/card/__examples__/basic/basic.ts +11 -0
  96. package/pg/card/card.css +11 -0
  97. package/pg/card/card.html +3 -0
  98. package/pg/card/card.spec.ts +30 -0
  99. package/pg/card/card.ts +13 -0
  100. package/pg/card/index.ts +3 -0
  101. package/pg/cardUser/README.md +22 -0
  102. package/pg/cardUser/__examples__/basic/basic.html +3 -0
  103. package/pg/cardUser/__examples__/basic/basic.ts +30 -0
  104. package/pg/cardUser/__examples__/basic/constants.ts +1 -0
  105. package/pg/cardUser/cardUser.css +67 -0
  106. package/pg/cardUser/cardUser.html +23 -0
  107. package/pg/cardUser/cardUser.spec.ts +46 -0
  108. package/pg/cardUser/cardUser.ts +53 -0
  109. package/pg/cardUser/index.ts +3 -0
  110. package/pg/color/README.md +13 -0
  111. package/pg/color/__examples__/basic/basic.html +4 -0
  112. package/pg/color/__examples__/basic/basic.ts +20 -0
  113. package/pg/color/color.css +21 -0
  114. package/pg/color/color.html +1 -0
  115. package/pg/color/color.ts +97 -0
  116. package/pg/color/constants.ts +357 -0
  117. package/pg/color/index.ts +3 -0
  118. package/pg/color/utils.ts +27 -0
  119. package/pg/database/README.md +28 -0
  120. package/pg/database/__examples__/basic/basic.html +9 -0
  121. package/pg/database/__examples__/basic/basic.ts +37 -0
  122. package/pg/database/database.css +0 -0
  123. package/pg/database/database.html +0 -0
  124. package/pg/database/database.ts +42 -0
  125. package/pg/database/index.ts +3 -0
  126. package/pg/dropdown/README.md +13 -0
  127. package/pg/dropdown/__examples__/basic/basic.html +14 -0
  128. package/pg/dropdown/__examples__/basic/basic.ts +11 -0
  129. package/pg/dropdown/dropdown.css +46 -0
  130. package/pg/dropdown/dropdown.html +5 -0
  131. package/pg/dropdown/dropdown.ts +60 -0
  132. package/pg/dropdown/index.ts +3 -0
  133. package/pg/grid/README.md +97 -0
  134. package/pg/grid/__examples__/basic/basic.html +29 -0
  135. package/pg/grid/__examples__/basic/basic.ts +139 -0
  136. package/pg/grid/grid.css +68 -0
  137. package/pg/grid/grid.html +6 -0
  138. package/pg/grid/grid.spec.ts +66 -0
  139. package/pg/grid/grid.ts +417 -0
  140. package/pg/grid/index.ts +3 -0
  141. package/pg/header/README.md +23 -0
  142. package/pg/header/__examples__/basic/basic.html +8 -0
  143. package/pg/header/__examples__/basic/basic.ts +11 -0
  144. package/pg/header/header.css +42 -0
  145. package/pg/header/header.html +15 -0
  146. package/pg/header/header.ts +28 -0
  147. package/pg/header/index.ts +3 -0
  148. package/pg/icon/README.md +26 -0
  149. package/pg/icon/__examples__/basic/basic.html +16 -0
  150. package/pg/icon/__examples__/basic/basic.ts +34 -0
  151. package/pg/icon/__examples__/basic/constants.ts +2 -0
  152. package/pg/icon/icon.css +9 -0
  153. package/pg/icon/icon.html +3 -0
  154. package/pg/icon/icon.spec.ts +46 -0
  155. package/pg/icon/icon.ts +23 -0
  156. package/pg/icon/index.ts +3 -0
  157. package/pg/inputCheck/README.md +32 -0
  158. package/pg/inputCheck/__examples__/basic/basic.html +8 -0
  159. package/pg/inputCheck/__examples__/basic/basic.ts +23 -0
  160. package/pg/inputCheck/index.ts +3 -0
  161. package/pg/inputCheck/inputCheck.css +45 -0
  162. package/pg/inputCheck/inputCheck.html +6 -0
  163. package/pg/inputCheck/inputCheck.ts +42 -0
  164. package/pg/inputCheckList/README.md +35 -0
  165. package/pg/inputCheckList/__examples__/basic/basic.html +4 -0
  166. package/pg/inputCheckList/__examples__/basic/basic.ts +31 -0
  167. package/pg/inputCheckList/index.ts +3 -0
  168. package/pg/inputCheckList/inputCheckList.css +70 -0
  169. package/pg/inputCheckList/inputCheckList.html +1 -0
  170. package/pg/inputCheckList/inputCheckList.ts +103 -0
  171. package/pg/inputCheckList/templates/option.html +8 -0
  172. package/pg/inputFileLocal/README.md +30 -0
  173. package/pg/inputFileLocal/__examples__/basic/basic.html +4 -0
  174. package/pg/inputFileLocal/__examples__/basic/basic.ts +23 -0
  175. package/pg/inputFileLocal/index.ts +3 -0
  176. package/pg/inputFileLocal/inputFileLocal.css +80 -0
  177. package/pg/inputFileLocal/inputFileLocal.html +5 -0
  178. package/pg/inputFileLocal/inputFileLocal.ts +82 -0
  179. package/pg/inputHexRgb/README.md +15 -0
  180. package/pg/inputHexRgb/__examples__/basic/basic.html +4 -0
  181. package/pg/inputHexRgb/__examples__/basic/basic.ts +23 -0
  182. package/pg/inputHexRgb/index.ts +3 -0
  183. package/pg/inputHexRgb/inputHexRgb.css +96 -0
  184. package/pg/inputHexRgb/inputHexRgb.html +9 -0
  185. package/pg/inputHexRgb/inputHexRgb.ts +79 -0
  186. package/pg/inputHexRgb/utils.ts +27 -0
  187. package/pg/inputRange/README.md +18 -0
  188. package/pg/inputRange/__examples__/basic/basic.html +9 -0
  189. package/pg/inputRange/__examples__/basic/basic.ts +30 -0
  190. package/pg/inputRange/index.ts +3 -0
  191. package/pg/inputRange/inputRange.css +0 -0
  192. package/pg/inputRange/inputRange.html +1 -0
  193. package/pg/inputRange/inputRange.ts +53 -0
  194. package/pg/inputSelect/README.md +25 -0
  195. package/pg/inputSelect/__examples__/basic/basic.html +6 -0
  196. package/pg/inputSelect/__examples__/basic/basic.ts +30 -0
  197. package/pg/inputSelect/index.ts +3 -0
  198. package/pg/inputSelect/inputSelect.css +36 -0
  199. package/pg/inputSelect/inputSelect.html +4 -0
  200. package/pg/inputSelect/inputSelect.ts +57 -0
  201. package/pg/inputText/README.md +27 -0
  202. package/pg/inputText/__examples__/basic/basic.html +9 -0
  203. package/pg/inputText/__examples__/basic/basic.ts +30 -0
  204. package/pg/inputText/index.ts +3 -0
  205. package/pg/inputText/inputText.css +20 -0
  206. package/pg/inputText/inputText.html +1 -0
  207. package/pg/inputText/inputText.spec.ts +59 -0
  208. package/pg/inputText/inputText.ts +59 -0
  209. package/pg/inputTextIcon/README.md +26 -0
  210. package/pg/inputTextIcon/index.ts +3 -0
  211. package/pg/inputTextIcon/inputTextIcon.css +24 -0
  212. package/pg/inputTextIcon/inputTextIcon.html +4 -0
  213. package/pg/inputTextIcon/inputTextIcon.spec.ts +44 -0
  214. package/pg/inputTextIcon/inputTextIcon.ts +26 -0
  215. package/pg/inputUserSelect/README.md +31 -0
  216. package/pg/inputUserSelect/__examples__/basic/basic.html +4 -0
  217. package/pg/inputUserSelect/__examples__/basic/basic.ts +25 -0
  218. package/pg/inputUserSelect/__examples__/basic/constants.ts +33 -0
  219. package/pg/inputUserSelect/index.ts +3 -0
  220. package/pg/inputUserSelect/inputUserSelect.css +174 -0
  221. package/pg/inputUserSelect/inputUserSelect.html +18 -0
  222. package/pg/inputUserSelect/inputUserSelect.ts +266 -0
  223. package/pg/listTag/README.md +26 -0
  224. package/pg/listTag/__examples__/basic/basic.html +16 -0
  225. package/pg/listTag/__examples__/basic/basic.ts +53 -0
  226. package/pg/listTag/__examples__/basic/constants.ts +22 -0
  227. package/pg/listTag/index.ts +3 -0
  228. package/pg/listTag/listTag.css +9 -0
  229. package/pg/listTag/listTag.html +1 -0
  230. package/pg/listTag/listTag.ts +48 -0
  231. package/pg/listTag/partials/tag.html +3 -0
  232. package/pg/markdown/README.md +13 -0
  233. package/pg/markdown/__examples__/basic/basic.html +3 -0
  234. package/pg/markdown/__examples__/basic/basic.ts +51 -0
  235. package/pg/markdown/__examples__/basic/constants.ts +129 -0
  236. package/pg/markdown/index.ts +5 -0
  237. package/pg/markdown/markdown.css +760 -0
  238. package/pg/markdown/markdown.html +1 -0
  239. package/pg/markdown/markdown.md +123 -0
  240. package/pg/markdown/markdown.spec.ts +87 -0
  241. package/pg/markdown/markdown.ts +381 -0
  242. package/pg/markdown/markdownReplace.ts +7 -0
  243. package/pg/menuIcon/README.md +13 -0
  244. package/pg/menuIcon/__examples__/basic/basic.html +3 -0
  245. package/pg/menuIcon/__examples__/basic/basic.ts +15 -0
  246. package/pg/menuIcon/index.ts +3 -0
  247. package/pg/menuIcon/menuIcon.css +168 -0
  248. package/pg/menuIcon/menuIcon.html +64 -0
  249. package/pg/menuIcon/menuIcon.ts +271 -0
  250. package/pg/modalAlert/README.md +17 -0
  251. package/pg/modalAlert/__examples__/basic/basic.html +4 -0
  252. package/pg/modalAlert/__examples__/basic/basic.ts +27 -0
  253. package/pg/modalAlert/index.ts +3 -0
  254. package/pg/modalAlert/modalAlert.css +43 -0
  255. package/pg/modalAlert/modalAlert.html +22 -0
  256. package/pg/modalAlert/modalAlert.ts +45 -0
  257. package/pg/modification/README.md +34 -0
  258. package/pg/modification/__examples__/basic/basic.html +8 -0
  259. package/pg/modification/__examples__/basic/basic.ts +63 -0
  260. package/pg/modification/__examples__/basic/constants.ts +416 -0
  261. package/pg/modification/index.ts +3 -0
  262. package/pg/modification/modification.css +311 -0
  263. package/pg/modification/modification.html +1 -0
  264. package/pg/modification/modification.spec.ts +33 -0
  265. package/pg/modification/modification.ts +201 -0
  266. package/pg/modification/type/date.html +1 -0
  267. package/pg/modification/type/iconAliasCreated.html +13 -0
  268. package/pg/modification/type/iconAliasDeleted.html +13 -0
  269. package/pg/modification/type/iconAuthorModified.html +13 -0
  270. package/pg/modification/type/iconCreated.html +13 -0
  271. package/pg/modification/type/iconDeleted.html +13 -0
  272. package/pg/modification/type/iconDeprecated.html +13 -0
  273. package/pg/modification/type/iconDescriptionModified.html +10 -0
  274. package/pg/modification/type/iconModified.html +14 -0
  275. package/pg/modification/type/iconRenamed.html +13 -0
  276. package/pg/modification/type/iconTagCreated.html +13 -0
  277. package/pg/modification/type/iconTagDeleted.html +13 -0
  278. package/pg/modification/type/news.html +5 -0
  279. package/pg/nav/README.md +16 -0
  280. package/pg/nav/__examples__/basic/basic.html +5 -0
  281. package/pg/nav/__examples__/basic/basic.ts +11 -0
  282. package/pg/nav/index.ts +3 -0
  283. package/pg/nav/nav.css +14 -0
  284. package/pg/nav/nav.html +16 -0
  285. package/pg/nav/nav.ts +21 -0
  286. package/pg/overlay/README.md +37 -0
  287. package/pg/overlay/__examples__/basic/basic.css +3 -0
  288. package/pg/overlay/__examples__/basic/basic.html +3 -0
  289. package/pg/overlay/__examples__/basic/basic.ts +13 -0
  290. package/pg/overlay/index.ts +3 -0
  291. package/pg/overlay/overlay.ts +26 -0
  292. package/pg/picker/README.md +13 -0
  293. package/pg/picker/index.ts +3 -0
  294. package/pg/picker/picker.css +56 -0
  295. package/pg/picker/picker.html +8 -0
  296. package/pg/picker/picker.ts +66 -0
  297. package/pg/preview/README.md +19 -0
  298. package/pg/preview/__examples__/basic/basic.html +11 -0
  299. package/pg/preview/__examples__/basic/basic.ts +22 -0
  300. package/pg/preview/index.ts +3 -0
  301. package/pg/preview/preview.css +34 -0
  302. package/pg/preview/preview.html +5 -0
  303. package/pg/preview/preview.ts +38 -0
  304. package/pg/scroll/README.md +42 -0
  305. package/pg/scroll/__examples__/basic/basic.css +4 -0
  306. package/pg/scroll/__examples__/basic/basic.html +11 -0
  307. package/pg/scroll/__examples__/basic/basic.ts +88 -0
  308. package/pg/scroll/index.ts +3 -0
  309. package/pg/scroll/scroll.css +7 -0
  310. package/pg/scroll/scroll.html +3 -0
  311. package/pg/scroll/scroll.ts +158 -0
  312. package/pg/search/README.md +59 -0
  313. package/pg/search/__examples__/basic/basic.html +3 -0
  314. package/pg/search/__examples__/basic/basic.ts +29 -0
  315. package/pg/search/__examples__/basic/constants.ts +3 -0
  316. package/pg/search/index.ts +3 -0
  317. package/pg/search/search.css +188 -0
  318. package/pg/search/search.html +18 -0
  319. package/pg/search/search.ts +252 -0
  320. package/pg/search/utils.ts +12 -0
  321. package/pg/shared/README.md +28 -0
  322. package/pg/shared/copy.ts +25 -0
  323. package/pg/shared/database.ts +35 -0
  324. package/pg/shared/databaseService.ts +230 -0
  325. package/pg/shared/debounce.ts +12 -0
  326. package/pg/shared/enums/modificationType.ts +19 -0
  327. package/pg/shared/filter.ts +14 -0
  328. package/pg/shared/http.ts +83 -0
  329. package/pg/shared/iconFilter.spec.ts +61 -0
  330. package/pg/shared/iconFilter.ts +71 -0
  331. package/pg/shared/list.ts +34 -0
  332. package/pg/shared/models/alias.ts +40 -0
  333. package/pg/shared/models/font.ts +31 -0
  334. package/pg/shared/models/fontIcon.ts +25 -0
  335. package/pg/shared/models/fontVersion.ts +22 -0
  336. package/pg/shared/models/icon.ts +97 -0
  337. package/pg/shared/models/modification.ts +45 -0
  338. package/pg/shared/models/style.ts +12 -0
  339. package/pg/shared/models/tag.ts +37 -0
  340. package/pg/shared/models/user.ts +35 -0
  341. package/pg/shared/models/version.ts +20 -0
  342. package/pg/shared/removeDiacritics.ts +94 -0
  343. package/pg/shared/toast.ts +47 -0
  344. package/pg/shared/uuid.ts +6 -0
  345. package/pg/tab/README.md +18 -0
  346. package/pg/tab/index.ts +3 -0
  347. package/pg/tab/tab.css +13 -0
  348. package/pg/tab/tab.html +3 -0
  349. package/pg/tab/tab.ts +51 -0
  350. package/pg/tabs/README.md +31 -0
  351. package/pg/tabs/__examples__/basic/basic.html +13 -0
  352. package/pg/tabs/__examples__/basic/basic.ts +11 -0
  353. package/pg/tabs/index.ts +3 -0
  354. package/pg/tabs/partials/tab.html +3 -0
  355. package/pg/tabs/tabs.css +69 -0
  356. package/pg/tabs/tabs.html +4 -0
  357. package/pg/tabs/tabs.ts +102 -0
  358. package/pg/toast/README.md +13 -0
  359. package/pg/toast/index.ts +3 -0
  360. package/pg/toast/toast.css +112 -0
  361. package/pg/toast/toast.html +13 -0
  362. package/pg/toast/toast.ts +39 -0
  363. package/pg/toasts/README.md +37 -0
  364. package/pg/toasts/__examples__/basic/basic.html +11 -0
  365. package/pg/toasts/__examples__/basic/basic.ts +86 -0
  366. package/pg/toasts/index.ts +3 -0
  367. package/pg/toasts/toasts.css +8 -0
  368. package/pg/toasts/toasts.html +1 -0
  369. package/pg/toasts/toasts.ts +51 -0
  370. package/pg/tooltip/README.md +51 -0
  371. package/pg/tooltip/__examples__/basic/basic.css +38 -0
  372. package/pg/tooltip/__examples__/basic/basic.html +21 -0
  373. package/pg/tooltip/__examples__/basic/basic.ts +55 -0
  374. package/pg/tooltip/addTooltip.ts +31 -0
  375. package/pg/tooltip/index.ts +20 -0
  376. package/pg/tooltip/position.ts +15 -0
  377. package/pg/tooltip/tooltip.css +36 -0
  378. package/pg/tooltip/tooltip.html +4 -0
  379. package/pg/tooltip/tooltip.ts +170 -0
@@ -0,0 +1,13 @@
1
+ # `<pg-dropdown>`
2
+
3
+ Visual color picker using the standard Material Design pallet.
4
+
5
+ ```typescript
6
+ import '@pictogrammers/components/pg/dropdown';
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ | Events | Description |
12
+ | ------ | ----------- |
13
+ | `onchange` | `event = { detail: { r, g, b, hex } }` |
@@ -0,0 +1,14 @@
1
+ <div class="example">
2
+ <pg-dropdown>
3
+ <button>Click Me</button>
4
+ <div slot="popover">
5
+ Render anything inside...
6
+ </div>
7
+ </pg-dropdown>
8
+ <pg-dropdown>
9
+ <a href="/">Click Me</a>
10
+ <div slot="popover">
11
+ Render anything inside...
12
+ </div>
13
+ </pg-dropdown>
14
+ </div>
@@ -0,0 +1,11 @@
1
+ import { Component, Part, Prop } from '@pictogrammers/element';
2
+
3
+ import template from './basic.html';
4
+
5
+ @Component({
6
+ selector: 'x-pg-dropdown-basic',
7
+ template
8
+ })
9
+ export default class XPgDropdownBasic extends HTMLElement {
10
+
11
+ }
@@ -0,0 +1,46 @@
1
+ [part~=popover] {
2
+ background: #FFF;
3
+ padding: 0.5rem;
4
+ border-radius: 0.5rem;
5
+ box-shadow: 0 1px 14px rgba(0, 0, 0, 0.2);
6
+ border: 4px solid var(--pg-dropdown-border-color);
7
+ }
8
+
9
+ [part~=arrow],
10
+ [part~=arrow]::before {
11
+ position: absolute;
12
+ width: 10px;
13
+ height: 10px;
14
+ }
15
+
16
+ [part~=arrow]::before {
17
+ content: '';
18
+ transform: rotate(45deg);
19
+ background: #FFF;
20
+ }
21
+
22
+ [part~=popover][data-popper-placement^='top'] > [part~=arrow] {
23
+ bottom: -5px;
24
+ }
25
+ [part~=popover][data-popper-placement^='top'] > [part~=arrow]::before {
26
+ border-bottom: 4px solid var(--pg-dropdown-border-color);
27
+ border-right: 4px solid var(--pg-dropdown-border-color);
28
+ border-bottom-right-radius: 0.25rem;
29
+ }
30
+
31
+ [part~=popover][data-popper-placement^='bottom'] > [part~=arrow] {
32
+ top: -10px;
33
+ }
34
+ [part~=popover][data-popper-placement^='bottom'] > [part~=arrow]::before {
35
+ border-top: 4px solid var(--pg-dropdown-border-color);
36
+ border-left: 4px solid var(--pg-dropdown-border-color);
37
+ border-top-left-radius: 0.25rem;
38
+ }
39
+
40
+ [part~=popover][data-popper-placement^='left'] > [part~=arrow] {
41
+ right: -5px;
42
+ }
43
+
44
+ [part~=popover][data-popper-placement^='right'] > [part~=arrow] {
45
+ left: -5px;
46
+ }
@@ -0,0 +1,5 @@
1
+ <slot part="main"></slot>
2
+ <div part="popover">
3
+ <div part="arrow"></div>
4
+ <slot name="popover"></slot>
5
+ </div>
@@ -0,0 +1,60 @@
1
+ import { Component, Prop, Part } from '@pictogrammers/element';
2
+ import { createPopper } from '@popperjs/core';
3
+
4
+ import template from './dropdown.html';
5
+ import style from './dropdown.css';
6
+
7
+ window.process = { env: {} } as any;
8
+
9
+ @Component({
10
+ selector: 'pg-dropdown',
11
+ style,
12
+ template
13
+ })
14
+ export default class PgDropdown extends HTMLElement {
15
+ @Part() $main: HTMLSlotElement;
16
+ @Part() $popover: HTMLDivElement;
17
+ @Part() $arrow: HTMLDivElement;
18
+
19
+ isVisible = false;
20
+ connectedCallback() {
21
+ this.$main.addEventListener('slotchange', (e) => {
22
+ var nodes = this.$main.assignedElements();
23
+ for(var i = 0; i < nodes.length; i++) {
24
+ var node = nodes[i];
25
+ this.wireUpPopover(node);
26
+ }
27
+ });
28
+ }
29
+
30
+ wireUpPopover(node) {
31
+ createPopper(node, this.$popover, {
32
+ placement: 'bottom-start',
33
+ modifiers: [
34
+ {
35
+ name: 'offset',
36
+ options: {
37
+ offset: [-4, 8],
38
+ },
39
+ },
40
+ {
41
+ name: 'arrow',
42
+ options: {
43
+ element: this.$arrow,
44
+ padding: 0,
45
+ },
46
+ },
47
+ ]
48
+ });
49
+ this.$popover.style.visibility = 'hidden';
50
+ node.addEventListener('click', (e) => {
51
+ this.$popover.style.visibility = this.isVisible ? 'hidden' : 'visible';
52
+ this.isVisible = !this.isVisible;
53
+ e.preventDefault();
54
+ });
55
+ }
56
+
57
+ render() {
58
+
59
+ }
60
+ }
@@ -0,0 +1,3 @@
1
+ import PgDropdown from './dropdown';
2
+
3
+ export default PgDropdown;
@@ -0,0 +1,97 @@
1
+ # `<pg-grid>`
2
+
3
+ The `pg-grid` component allows a standard way to render a configurable grid of icons.
4
+
5
+ - Performance
6
+ - Two events are used to track all interactions
7
+ - `mousemove` tracks mouse within the grid
8
+ - `mouseleave` tracks mouse leaving grid
9
+ - When icons are added or removed this means no dom events are binded
10
+ - Virtual icon grid
11
+ - Grid height is calculated based on icons present and dynamic container width
12
+ - Debounced `300` for resize of grid
13
+ - Size
14
+ - `pg-scroll` is the only dependency
15
+ - Grid tests can handle grid specific logic
16
+ - Complex viewport and overflow container logic is centralized
17
+ - Tooltips and other interacts are handled via events
18
+ - Allows more customization in other use cases
19
+
20
+ > Note: Context menus and tooltips can be triggered with events described below. These are outside of the component so they can be rendered elsewhere in the DOM.
21
+
22
+ ```typescript
23
+ import '@pictogrammers/components/pgGrid';
24
+ import PgGrid from '@pictogrammers/components/pgGrid';
25
+ ```
26
+
27
+ ```html
28
+ <pg-grid></pg-grid>
29
+ ```
30
+
31
+ ## Attributes
32
+
33
+ | Attributes | Tested | Description | Default |
34
+ | ---------- | -------- | ----------- | ------ |
35
+ | icons | | Set icon data | `[]` |
36
+ | size | | Set icon size | `24` |
37
+ | padding | | Set icon padding | `8` |
38
+ | gap | | Set icon gap | `4` |
39
+ | width | | Set grid width | `'auto'` |
40
+ | height | | Set grid height | `'auto'` |
41
+
42
+ ### `icons`
43
+
44
+ The minimal data set must contain the `id`, `name` and `data` field.
45
+
46
+ ```json
47
+ [{
48
+ "id": "uuid",
49
+ "name": "account",
50
+ "data": "..."
51
+ }]
52
+ ```
53
+
54
+ ## Events
55
+
56
+ | Events | Tested | Description |
57
+ | ---------- | -------- | ----------- |
58
+ | select | | Fired on icon selections |
59
+ | openmenu | | Right click on icon |
60
+ | closemenu | | Right click on icon |
61
+ | entericon | | Keyboard / Mouse on icon |
62
+ | leaveicon | | Keyboard / Mouse off icon |
63
+
64
+ ### All Events
65
+
66
+ The `x` and `y` properties are the calculated `top` and `left` in pixels relative to the grid. The `width` and `height` include the `padding`.
67
+
68
+ The `gridX` and `gridY` are relative to the grid container.
69
+
70
+ The `gap + extra` will give the remaining space between icons. Note: The left of the first icon is always just the `gap`.
71
+
72
+ ```javascript
73
+ interface MouseMeta {
74
+ gridX: number,
75
+ gridY: number,
76
+ x: number,
77
+ y: number,
78
+ width: number,
79
+ height: number,
80
+ column: number,
81
+ row: number,
82
+ index: number,
83
+ gap: number,
84
+ extra: number
85
+ }
86
+
87
+ e = {
88
+ detail: MouseMeta
89
+ }
90
+ ```
91
+
92
+ ## Accessibility
93
+
94
+ ToDo...
95
+
96
+ - Arrow key navigation
97
+ - Should typing filter grid?
@@ -0,0 +1,29 @@
1
+ <pg-tooltip part="tooltip"></pg-tooltip>
2
+ <p>
3
+ <button part="button0">Render 0</button>
4
+ <button part="button1">Render 1</button>
5
+ <button part="button10">Render 10</button>
6
+ <button part="button50">Render 50</button>
7
+ <button part="button250">Render 250</button>
8
+ <button part="buttonAll">Render 5000+</button>
9
+ </p>
10
+ <p>
11
+ <label>
12
+ Size (<span part="sizeText">24</span>):
13
+ <input part="size" type="range" min="24" max="96" step="4" value="24" />
14
+ </label>
15
+ <label>
16
+ Padding (<span part="paddingText">8</span>):
17
+ <input part="padding" type="range" min="0" max="24" step="2" value="8" />
18
+ </label>
19
+ <label>
20
+ Gap (<span part="gapText">4</span>):
21
+ <input part="gap" type="range" min="0" max="16" step="2" value="4" />
22
+ </label>
23
+ </p>
24
+ <div class="example">
25
+ <pg-database part="database"></pg-database>
26
+ <pg-grid part="grid">
27
+ <p>No Icons Found! default slot content</p>
28
+ </pg-grid>
29
+ </div>
@@ -0,0 +1,139 @@
1
+ import { Component, Part, Prop } from '@pictogrammers/element';
2
+ import PgDatabase from 'pg/database/database';
3
+ import PgTooltip from 'pg/tooltip';
4
+ import { Icon } from '../../../shared/models/icon';
5
+ import PgGrid from '../../grid';
6
+
7
+ import template from './basic.html';
8
+
9
+ @Component({
10
+ selector: 'x-pg-grid-basic',
11
+ template
12
+ })
13
+ export default class XPgGridBasic extends HTMLElement {
14
+
15
+ @Prop() fontId = 'D051337E-BC7E-11E5-A4E9-842B2B6CFE1B';
16
+
17
+ @Part() $button0: HTMLButtonElement;
18
+ @Part() $button1: HTMLButtonElement;
19
+ @Part() $button10: HTMLButtonElement;
20
+ @Part() $button50: HTMLButtonElement;
21
+ @Part() $button250: HTMLButtonElement;
22
+ @Part() $buttonAll: HTMLButtonElement;
23
+
24
+ @Part() $sizeText: HTMLSpanElement;
25
+ @Part() $paddingText: HTMLSpanElement;
26
+ @Part() $gapText: HTMLSpanElement;
27
+
28
+ @Part() $size: HTMLInputElement;
29
+ @Part() $padding: HTMLInputElement;
30
+ @Part() $gap: HTMLInputElement;
31
+
32
+ @Part() $database: PgDatabase;
33
+ @Part() $grid: PgGrid;
34
+ @Part() $tooltip: PgTooltip;
35
+
36
+ icons: Icon[] = [];
37
+
38
+ connectedCallback() {
39
+ this.$button0.addEventListener('click', () => {
40
+ this.setIcons(0);
41
+ });
42
+ this.$button1.addEventListener('click', () => {
43
+ this.setIcons(1);
44
+ });
45
+ this.$button10.addEventListener('click', () => {
46
+ this.setIcons(10);
47
+ });
48
+ this.$button50.addEventListener('click', () => {
49
+ this.setIcons(50);
50
+ });
51
+ this.$button250.addEventListener('click', () => {
52
+ this.setIcons(250);
53
+ });
54
+ this.$buttonAll.addEventListener('click', () => {
55
+ this.setIcons(-1);
56
+ });
57
+ this.$size.addEventListener('input', this.handleSize.bind(this));
58
+ this.$padding.addEventListener('input', this.handlePadding.bind(this));
59
+ this.$gap.addEventListener('input', this.handleGap.bind(this));
60
+
61
+ this.$database.addEventListener('sync', this.handleSync.bind(this));
62
+ this.$database.font = this.fontId;
63
+
64
+ this.addEventListener('tooltip', this.handleTooltip.bind(this));
65
+ }
66
+
67
+ handleTooltip(e) {
68
+ const { visible, rect, text, position } = e.detail;
69
+ this.$tooltip.visible = visible;
70
+ this.$tooltip.rect = rect;
71
+ this.$tooltip.text = text;
72
+ this.$tooltip.position = position;
73
+ e.stopPropagation();
74
+ }
75
+
76
+ setIcons(count: number) {
77
+ if (count === -1) {
78
+ this.$grid.icons = this.icons;
79
+ }
80
+ this.$grid.icons = this.icons.slice(0, count);
81
+ }
82
+
83
+ async handleSync(e: CustomEvent) {
84
+ const { db } = e.detail;
85
+ const count = await db.getCount(this.fontId);
86
+ console.log('Total Icons', count);
87
+ const icons = await db.getIcons(this.fontId);
88
+ console.log('Icon Objects:', icons.length);
89
+ this.icons = icons;
90
+ this.setIcons(10);
91
+ }
92
+
93
+ handleSize(e) {
94
+ this.$grid.size = e.target.value;
95
+ this.$sizeText.innerText = e.target.value;
96
+ }
97
+
98
+ handlePadding(e) {
99
+ this.$grid.padding = e.target.value;
100
+ this.$paddingText.innerText = e.target.value;
101
+ }
102
+
103
+ handleGap(e) {
104
+ this.$grid.gap = e.target.value;
105
+ this.$gapText.innerText = e.target.value;
106
+ }
107
+
108
+ /*
109
+ ele.addEventListener('select', (e) => {
110
+ var icon = e.detail;
111
+ alert(icon.name);
112
+ });
113
+ ele.addEventListener('entericon', (e) => {
114
+ var icon = e.detail.icon;
115
+ console.log('enter', e.detail);
116
+ var rect = ele.getBoundingClientRect();
117
+ tooltip3.style.position = 'fixed';
118
+ tooltip3.style.left = `${e.detail.x}px`;
119
+ tooltip3.style.top = `${e.detail.y}px`;
120
+ tooltip3.width = e.detail.width;
121
+ tooltip3.height = e.detail.height;
122
+ tooltip3.text = icon.name;
123
+ tooltip3.style.display = 'block';
124
+ });
125
+ ele.addEventListener('leaveicon', (e) => {
126
+ var icon = e.detail;
127
+ tooltip3.style.display = 'none';
128
+ console.log('leave', e.detail);
129
+ });
130
+ ele.addEventListener('openmenu', (e) => {
131
+ var icon = e.detail;
132
+ console.log(e.detail);
133
+ });
134
+ ele.addEventListener('closemenu', (e) => {
135
+ var icon = e.detail;
136
+ console.log(e.detail);
137
+ });
138
+ */
139
+ }
@@ -0,0 +1,68 @@
1
+ * {
2
+ font-family: var(--pg-font-family);
3
+ }
4
+
5
+ :host {
6
+ display: block;
7
+ }
8
+
9
+ [part~=none] {
10
+ display: none;
11
+ }
12
+
13
+ [part~=none].show {
14
+ display: block;
15
+ }
16
+
17
+ [part~=grid] {
18
+ position: relative;
19
+ }
20
+
21
+ [part~=grid] > button {
22
+ border: 0;
23
+ background: transparent;
24
+ padding: 0.625rem;
25
+ outline: none;
26
+ width: 2.75rem;
27
+ height: 2.75rem;
28
+ position: absolute;
29
+ left: 0;
30
+ top: 0;
31
+ border: 0;
32
+ border-radius: 0.25rem;
33
+ }
34
+
35
+ [part~=grid] > button.hover {
36
+ background: rgba(0, 0, 0, 0.1);
37
+ }
38
+
39
+ [part~=grid] > button:focus,
40
+ [part~=grid] > button:active {
41
+ background: rgba(0, 0, 0, 0.15);
42
+ box-shadow: 0 0.0125rem 0.25rem rgba(0, 0, 0, 0.2) inset;
43
+ }
44
+
45
+ [part~=grid] > button > svg {
46
+ fill: #453C4F;
47
+ width: 1.5rem;
48
+ height: 1.5rem;
49
+ }
50
+
51
+ [part~=grid] > button > svg {
52
+ fill: #453C4F;
53
+ }
54
+
55
+ [part~=grid]::-webkit-scrollbar {
56
+ width: 1em;
57
+ }
58
+
59
+ [part~=grid]::-webkit-scrollbar-track {
60
+ box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
61
+ border-radius: 0.25rem;
62
+ }
63
+
64
+ [part~=grid]::-webkit-scrollbar-thumb {
65
+ background-color: #453C4F;
66
+ outline: 1px solid slategrey;
67
+ border-radius: 0.25rem;
68
+ }
@@ -0,0 +1,6 @@
1
+ <div part="none">
2
+ <slot></slot>
3
+ </div>
4
+ <pg-scroll part="scroll">
5
+ <div part="grid"></div>
6
+ </pg-scroll>
@@ -0,0 +1,66 @@
1
+ import { selectComponent, getAttributes } from '@pictogrammers/element';
2
+
3
+ import './grid';
4
+ import PgGrid from './grid';
5
+
6
+ const PG_GRID = 'pg-grid';
7
+
8
+ (window as any).ResizeObserver = class {
9
+ constructor(callback) { }
10
+ observe(ele) { }
11
+ };
12
+
13
+ describe('pg-grid', () => {
14
+
15
+ beforeEach(() => {
16
+ var c = document.createElement(PG_GRID);
17
+ document.body.appendChild(c);
18
+ });
19
+
20
+ afterEach(() => {
21
+ while (document.body.firstChild) {
22
+ document.body.removeChild(document.body.firstChild);
23
+ }
24
+ });
25
+
26
+ it('should be registered', () => {
27
+ expect(customElements.get(PG_GRID)).toBeDefined();
28
+ });
29
+
30
+ it('should only expose known props', () => {
31
+ const props = getAttributes(PG_GRID);
32
+ expect(props.length).toBe(6);
33
+ expect(props).toContain('icons');
34
+ expect(props).toContain('size');
35
+ expect(props).toContain('padding');
36
+ expect(props).toContain('gap');
37
+ expect(props).toContain('width');
38
+ expect(props).toContain('height');
39
+ });
40
+
41
+ it('should be empty', () => {
42
+ const component = selectComponent<PgGrid>(PG_GRID);
43
+ const {
44
+ $grid
45
+ } = component;
46
+ expect($grid.innerHTML).toEqual('');
47
+ });
48
+
49
+ // ToDo: test pg-scroll first
50
+ /*
51
+ it('should contain 1 icons', async () => {
52
+ const component = selectComponent<PgGrid>(PG_GRID);
53
+ const {
54
+ $grid
55
+ } = component;
56
+ component.icons = [{
57
+ id: 'uuid',
58
+ name: 'foo',
59
+ data: 'M3,3V21H21V3'
60
+ }];
61
+ console.log(component.shadowRoot?.innerHTML);
62
+ expect($grid.innerHTML).toEqual('');
63
+ });
64
+ */
65
+
66
+ });