@sme.up/ketchup 4.2.0-SNAPSHOT → 5.1.0-SNAPSHOT

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 (346) hide show
  1. package/README.md +107 -3
  2. package/dist/cjs/{cell-utils-1d44a3f0.js → cell-utils-9b1d6563.js} +4 -4
  3. package/dist/cjs/{component-8fbc31a2.js → component-d1496215.js} +203 -174
  4. package/dist/cjs/{f-button-a5788453.js → f-button-02a7cde4.js} +2 -2
  5. package/dist/cjs/{f-cell-eba6f39e.js → f-cell-4d1450a8.js} +62 -48
  6. package/dist/cjs/f-chip-a50b9f00.js +130 -0
  7. package/dist/cjs/{f-image-e03842eb.js → f-image-db55ac49.js} +3 -3
  8. package/dist/cjs/{index-0416afab.js → index-ab119fad.js} +23 -0
  9. package/dist/cjs/ketchup.cjs.js +3 -3
  10. package/dist/cjs/kup-accordion.cjs.entry.js +7 -7
  11. package/dist/cjs/{kup-autocomplete_28.cjs.entry.js → kup-autocomplete_27.cjs.entry.js} +5759 -4805
  12. package/dist/cjs/kup-calendar.cjs.entry.js +626 -359
  13. package/dist/cjs/kup-cell.cjs.entry.js +15 -13
  14. package/dist/cjs/kup-dash-list.cjs.entry.js +4 -4
  15. package/dist/cjs/kup-dash_2.cjs.entry.js +8 -7
  16. package/dist/cjs/kup-drawer.cjs.entry.js +3 -3
  17. package/dist/cjs/kup-echart.cjs.entry.js +93039 -0
  18. package/dist/cjs/kup-field.cjs.entry.js +2 -2
  19. package/dist/cjs/kup-iframe.cjs.entry.js +3 -3
  20. package/dist/cjs/kup-lazy.cjs.entry.js +22 -5
  21. package/dist/cjs/kup-magic-box.cjs.entry.js +95 -42
  22. package/dist/cjs/{kup-manager-75f1a2cd.js → kup-manager-5877b2ee.js} +3395 -737
  23. package/dist/cjs/kup-nav-bar.cjs.entry.js +3 -3
  24. package/dist/cjs/kup-probe.cjs.entry.js +2 -2
  25. package/dist/cjs/kup-qlik.cjs.entry.js +2 -2
  26. package/dist/cjs/kup-snackbar.cjs.entry.js +5 -5
  27. package/dist/cjs/loader.cjs.js +3 -3
  28. package/dist/cjs/{tslib.es6-4360c099.js → tslib.es6-0ee02c67.js} +13 -0
  29. package/dist/cjs/utils-1b5c8c70.js +482 -0
  30. package/dist/collection/assets/calendar.js +46 -1
  31. package/dist/collection/assets/card.js +15 -15
  32. package/dist/collection/assets/data-table.js +18 -6
  33. package/dist/collection/assets/index.js +8 -0
  34. package/dist/collection/assets/kupdata.js +937 -0
  35. package/dist/collection/collection-manifest.json +4 -4
  36. package/dist/collection/components/kup-accordion/kup-accordion.css +0 -1
  37. package/dist/collection/components/kup-accordion/kup-accordion.js +2 -2
  38. package/dist/collection/components/kup-autocomplete/kup-autocomplete-declarations.js +2 -0
  39. package/dist/collection/components/kup-autocomplete/kup-autocomplete.js +148 -52
  40. package/dist/collection/components/kup-badge/kup-badge.js +2 -2
  41. package/dist/collection/components/kup-box/kup-box.js +31 -17
  42. package/dist/collection/components/kup-button/kup-button.js +2 -2
  43. package/dist/collection/components/kup-button-list/kup-button-list.js +26 -8
  44. package/dist/collection/components/kup-calendar/kup-calendar-declarations.js +14 -8
  45. package/dist/collection/components/kup-calendar/kup-calendar.css +2 -2
  46. package/dist/collection/components/kup-calendar/kup-calendar.js +185 -315
  47. package/dist/collection/components/kup-card/built-in/kup-card-built-in.js +38 -0
  48. package/dist/collection/components/kup-card/built-in/kup-card-calendar.js +458 -0
  49. package/dist/collection/components/kup-card/built-in/kup-card-clock.js +321 -0
  50. package/dist/collection/components/kup-card/built-in/kup-card-column-drop-menu.js +167 -0
  51. package/dist/collection/components/kup-card/collapsible/kup-card-collapsible.js +1 -1
  52. package/dist/collection/components/kup-card/dialog/kup-card-dialog.js +2 -2
  53. package/dist/collection/components/kup-card/free/kup-card-free.js +22 -0
  54. package/dist/collection/components/kup-card/kup-card-declarations.js +19 -0
  55. package/dist/collection/components/kup-card/kup-card-helper.js +3 -3
  56. package/dist/collection/components/kup-card/kup-card.css +793 -8
  57. package/dist/collection/components/kup-card/kup-card.js +75 -15
  58. package/dist/collection/components/kup-card/scalable/kup-card-scalable.js +1 -1
  59. package/dist/collection/components/kup-card/standard/kup-card-standard.js +18 -5
  60. package/dist/collection/components/kup-cell/kup-cell.js +15 -13
  61. package/dist/collection/components/kup-chart/kup-chart-builder.js +3 -4
  62. package/dist/collection/components/kup-chart/kup-chart.js +7 -7
  63. package/dist/collection/components/kup-checkbox/kup-checkbox.js +1 -1
  64. package/dist/collection/components/kup-chip/kup-chip.css +1 -0
  65. package/dist/collection/components/kup-chip/kup-chip.js +51 -92
  66. package/dist/collection/components/kup-color-picker/kup-color-picker.css +1 -265
  67. package/dist/collection/components/kup-color-picker/kup-color-picker.js +93 -48
  68. package/dist/collection/components/kup-combobox/kup-combobox.js +148 -115
  69. package/dist/collection/components/kup-dash/kup-dash.js +1 -1
  70. package/dist/collection/components/kup-dash-list/kup-dash-list.js +5 -5
  71. package/dist/collection/components/kup-data-table/kup-data-table-declarations.js +3 -1
  72. package/dist/collection/components/kup-data-table/kup-data-table-helper.js +28 -56
  73. package/dist/collection/components/kup-data-table/kup-data-table.css +4 -38
  74. package/dist/collection/components/kup-data-table/kup-data-table.js +366 -168
  75. package/dist/collection/components/kup-date-picker/kup-date-picker.css +0 -82
  76. package/dist/collection/components/kup-date-picker/kup-date-picker.js +41 -312
  77. package/dist/collection/components/kup-drawer/kup-drawer.js +1 -1
  78. package/dist/collection/components/kup-dropdown-button/kup-dropdown-button.js +2 -2
  79. package/dist/collection/components/kup-echart/assets/maps/africa.json +6116 -0
  80. package/dist/collection/components/kup-echart/assets/maps/america.json +5416 -0
  81. package/dist/collection/components/kup-echart/assets/maps/asia.json +6053 -0
  82. package/dist/collection/components/kup-echart/assets/maps/europe.json +5051 -0
  83. package/dist/collection/components/kup-echart/assets/maps/italy.json +3562 -0
  84. package/dist/collection/components/kup-echart/assets/maps/oceania.json +1069 -0
  85. package/dist/collection/components/kup-echart/assets/maps/world.json +23685 -0
  86. package/dist/collection/components/kup-echart/kup-echart-declarations.js +45 -0
  87. package/dist/collection/components/kup-echart/kup-echart.css +13 -0
  88. package/dist/collection/components/kup-echart/kup-echart.js +1165 -0
  89. package/dist/collection/components/kup-field/kup-field.js +2 -2
  90. package/dist/collection/components/kup-gauge/kup-gauge.js +3 -3
  91. package/dist/collection/components/kup-grid/kup-grid.css +2 -2
  92. package/dist/collection/components/kup-grid/kup-grid.js +6 -5
  93. package/dist/collection/components/kup-iframe/kup-iframe.js +2 -2
  94. package/dist/collection/components/kup-image/assets/svg/science.svg +1 -0
  95. package/dist/collection/components/kup-image/kup-image.js +3 -3
  96. package/dist/collection/components/kup-lazy/kup-lazy.css +21 -11
  97. package/dist/collection/components/kup-lazy/kup-lazy.js +62 -3
  98. package/dist/collection/components/kup-list/kup-list-helper.js +7 -1
  99. package/dist/collection/components/kup-list/kup-list.css +3 -0
  100. package/dist/collection/components/kup-list/kup-list.js +219 -288
  101. package/dist/collection/components/kup-magic-box/kup-magic-box-declarations.js +11 -7
  102. package/dist/collection/components/kup-magic-box/kup-magic-box.js +90 -41
  103. package/dist/collection/components/kup-nav-bar/kup-nav-bar.js +1 -1
  104. package/dist/collection/components/kup-probe/kup-probe.js +1 -1
  105. package/dist/collection/components/kup-progress-bar/kup-progress-bar.js +1 -1
  106. package/dist/collection/components/kup-qlik/kup-qlik.js +1 -1
  107. package/dist/collection/components/kup-radio/kup-radio.js +1 -1
  108. package/dist/collection/components/kup-rating/kup-rating.js +1 -1
  109. package/dist/collection/components/kup-snackbar/kup-snackbar.js +1 -1
  110. package/dist/collection/components/kup-spinner/kup-spinner.js +1 -1
  111. package/dist/collection/components/kup-state/mock-store.js +1 -1
  112. package/dist/collection/components/kup-switch/kup-switch.js +1 -1
  113. package/dist/collection/components/kup-tab-bar/kup-tab-bar.js +3 -3
  114. package/dist/collection/components/kup-text-field/kup-text-field.css +3 -0
  115. package/dist/collection/components/kup-text-field/kup-text-field.js +2 -2
  116. package/dist/collection/components/kup-time-picker/kup-time-picker.css +1 -0
  117. package/dist/collection/components/kup-time-picker/kup-time-picker.js +57 -244
  118. package/dist/collection/components/kup-tooltip/kup-tooltip.js +3 -3
  119. package/dist/collection/components/kup-tree/kup-tree-declarations.js +0 -5
  120. package/dist/collection/components/kup-tree/kup-tree-faker.js +2 -3
  121. package/dist/collection/components/kup-tree/kup-tree.css +2 -0
  122. package/dist/collection/components/kup-tree/kup-tree.js +145 -70
  123. package/dist/collection/f-components/f-cell/f-cell-declarations.js +3 -1
  124. package/dist/collection/f-components/f-cell/f-cell.js +53 -39
  125. package/dist/collection/f-components/f-chip/f-chip.js +76 -87
  126. package/dist/collection/f-components/f-image/f-image.js +2 -2
  127. package/dist/collection/f-components/f-paginator/f-paginator-declarations.js +5 -0
  128. package/dist/collection/f-components/f-paginator/f-paginator-utils.js +28 -0
  129. package/dist/collection/f-components/f-paginator/f-paginator.js +91 -0
  130. package/dist/collection/f-components/f-text-field/f-text-field.js +4 -4
  131. package/dist/collection/managers/kup-data/kup-data-cell-helper.js +52 -0
  132. package/dist/collection/managers/kup-data/kup-data-column-helper.js +272 -0
  133. package/dist/collection/managers/kup-data/kup-data-declarations.js +9 -0
  134. package/dist/collection/managers/kup-data/kup-data-node-helper.js +72 -0
  135. package/dist/collection/managers/kup-data/kup-data-row-helper.js +28 -0
  136. package/dist/collection/managers/kup-data/kup-data.js +382 -0
  137. package/dist/collection/{utils → managers}/kup-dates/kup-dates-declarations.js +0 -0
  138. package/dist/collection/{utils → managers}/kup-dates/kup-dates.js +53 -19
  139. package/dist/collection/{utils → managers}/kup-debug/kup-debug-browser-utils.js +1 -1
  140. package/dist/collection/{utils → managers}/kup-debug/kup-debug-declarations.js +0 -0
  141. package/dist/collection/{utils → managers}/kup-debug/kup-debug.js +79 -124
  142. package/dist/collection/{utils → managers}/kup-dynamic-position/kup-dynamic-position-declarations.js +0 -0
  143. package/dist/collection/{utils → managers}/kup-dynamic-position/kup-dynamic-position.js +10 -1
  144. package/dist/collection/{utils → managers}/kup-interact/kup-interact-declarations.js +1 -0
  145. package/dist/collection/{utils → managers}/kup-interact/kup-interact.js +22 -13
  146. package/dist/collection/{utils → managers}/kup-language/kup-language-declarations.js +10 -0
  147. package/dist/collection/{utils → managers}/kup-language/kup-language.js +5 -5
  148. package/dist/collection/{utils → managers}/kup-manager/kup-manager-declarations.js +0 -0
  149. package/dist/collection/{utils → managers}/kup-manager/kup-manager.js +45 -4
  150. package/dist/collection/managers/kup-math/kup-math-declarations.js +13 -0
  151. package/dist/collection/managers/kup-math/kup-math-helper.js +39 -0
  152. package/dist/collection/managers/kup-math/kup-math.js +151 -0
  153. package/dist/collection/{utils → managers}/kup-objects/kup-objects-declarations.js +0 -0
  154. package/dist/collection/{utils → managers}/kup-objects/kup-objects.js +15 -0
  155. package/dist/collection/{utils → managers}/kup-scroll-on-hover/kup-scroll-on-hover-declarations.js +0 -0
  156. package/dist/collection/{utils → managers}/kup-scroll-on-hover/kup-scroll-on-hover.js +0 -0
  157. package/dist/collection/{utils → managers}/kup-search/kup-search-declarations.js +0 -0
  158. package/dist/collection/{utils → managers}/kup-search/kup-search.js +0 -1
  159. package/dist/collection/{utils → managers}/kup-theme/kup-theme-declarations.js +99 -0
  160. package/dist/collection/{utils → managers}/kup-theme/kup-theme.js +117 -68
  161. package/dist/collection/{utils → managers}/kup-toolbar/kup-toolbar-declarations.js +0 -0
  162. package/dist/collection/{utils → managers}/kup-toolbar/kup-toolbar.js +0 -0
  163. package/dist/collection/types/GenericTypes.js +48 -1
  164. package/dist/collection/utils/cell-utils.js +3 -4
  165. package/dist/collection/utils/filters/filters-column-menu.js +7 -7
  166. package/dist/collection/utils/filters/filters-rows.js +2 -2
  167. package/dist/collection/utils/filters/filters-tree-items.js +12 -12
  168. package/dist/collection/utils/filters/filters.js +3 -2
  169. package/dist/collection/utils/kup-column-menu/kup-column-menu-declarations.js +1 -0
  170. package/dist/collection/utils/kup-column-menu/kup-column-menu.js +100 -68
  171. package/dist/collection/utils/utils.js +4 -4
  172. package/dist/esm/{cell-utils-9a2914fc.js → cell-utils-571978d6.js} +4 -4
  173. package/dist/esm/{component-d2803feb.js → component-c4eb6153.js} +204 -170
  174. package/dist/esm/{f-button-55a9ed88.js → f-button-b3011cc2.js} +2 -2
  175. package/dist/esm/{f-cell-ac520cb2.js → f-cell-b88b2731.js} +62 -48
  176. package/dist/esm/f-chip-a52489ec.js +128 -0
  177. package/dist/esm/{f-image-70ca9dfe.js → f-image-5e5ed7e2.js} +3 -3
  178. package/dist/esm/{index-e0e67c23.js → index-78f3699d.js} +23 -0
  179. package/dist/esm/ketchup.js +3 -3
  180. package/dist/esm/kup-accordion.entry.js +7 -7
  181. package/dist/esm/{kup-autocomplete_28.entry.js → kup-autocomplete_27.entry.js} +5570 -4615
  182. package/dist/esm/kup-calendar.entry.js +626 -359
  183. package/dist/esm/kup-cell.entry.js +15 -13
  184. package/dist/esm/kup-dash-list.entry.js +4 -4
  185. package/dist/esm/kup-dash_2.entry.js +8 -7
  186. package/dist/esm/kup-drawer.entry.js +3 -3
  187. package/dist/esm/kup-echart.entry.js +93035 -0
  188. package/dist/esm/kup-field.entry.js +2 -2
  189. package/dist/esm/kup-iframe.entry.js +3 -3
  190. package/dist/esm/kup-lazy.entry.js +22 -5
  191. package/dist/esm/kup-magic-box.entry.js +95 -42
  192. package/dist/esm/{kup-manager-bba32828.js → kup-manager-1f76a3ef.js} +3391 -737
  193. package/dist/esm/kup-nav-bar.entry.js +3 -3
  194. package/dist/esm/kup-probe.entry.js +2 -2
  195. package/dist/esm/kup-qlik.entry.js +2 -2
  196. package/dist/esm/kup-snackbar.entry.js +5 -5
  197. package/dist/esm/loader.js +3 -3
  198. package/dist/esm/polyfills/css-shim.js +1 -1
  199. package/dist/esm/{tslib.es6-e6137777.js → tslib.es6-8f2d44b6.js} +13 -1
  200. package/dist/esm/utils-93ae800f.js +461 -0
  201. package/dist/ketchup/assets/maps/africa.json +6116 -0
  202. package/dist/ketchup/assets/maps/america.json +5416 -0
  203. package/dist/ketchup/assets/maps/asia.json +6053 -0
  204. package/dist/ketchup/assets/maps/europe.json +5051 -0
  205. package/dist/ketchup/assets/maps/italy.json +3562 -0
  206. package/dist/ketchup/assets/maps/oceania.json +1069 -0
  207. package/dist/ketchup/assets/maps/world.json +23685 -0
  208. package/dist/ketchup/assets/svg/science.svg +1 -0
  209. package/dist/ketchup/ketchup.esm.js +1 -1
  210. package/dist/ketchup/{p-74259992.entry.js → p-088a886c.entry.js} +1 -1
  211. package/dist/ketchup/p-135cabdc.entry.js +1 -0
  212. package/dist/ketchup/p-1c1e830f.entry.js +1 -0
  213. package/dist/ketchup/{p-69a705ae.entry.js → p-29208220.entry.js} +1 -1
  214. package/dist/ketchup/{p-62208488.entry.js → p-2b9f2019.entry.js} +1 -1
  215. package/dist/ketchup/p-52d0582a.js +1 -0
  216. package/dist/ketchup/p-554bd5f0.entry.js +39 -0
  217. package/dist/ketchup/{p-06c209a5.js → p-5f52e313.js} +1 -1
  218. package/dist/ketchup/{p-e90934b5.entry.js → p-65449480.entry.js} +1 -1
  219. package/dist/ketchup/p-79cf3874.entry.js +1 -0
  220. package/dist/ketchup/p-7a85cda4.js +1 -0
  221. package/dist/ketchup/p-84cce555.entry.js +27 -0
  222. package/dist/ketchup/p-8c44c3b9.js +135 -0
  223. package/dist/ketchup/{p-ff7d590e.entry.js → p-9d49cdb2.entry.js} +1 -1
  224. package/dist/ketchup/{p-5a4a5fdc.js → p-a0b1d769.js} +1 -1
  225. package/dist/ketchup/{p-40df35de.entry.js → p-a2b6672e.entry.js} +1 -1
  226. package/dist/ketchup/{p-5faf7715.entry.js → p-a4be630b.entry.js} +1 -1
  227. package/dist/ketchup/p-c072b270.js +1 -0
  228. package/dist/ketchup/{p-daf03877.entry.js → p-c648972c.entry.js} +1 -1
  229. package/dist/ketchup/{p-03ae1be9.entry.js → p-d67d39c0.entry.js} +1 -1
  230. package/dist/ketchup/p-d6e2f2b0.entry.js +1 -0
  231. package/dist/ketchup/{p-52038ccb.js → p-da387e0e.js} +1 -1
  232. package/dist/ketchup/p-e5c9ec9e.js +1 -0
  233. package/dist/ketchup/{p-cb5f4994.js → p-ed0b8666.js} +0 -0
  234. package/dist/ketchup/p-ef539eda.js +9 -0
  235. package/dist/ketchup/p-f316234c.entry.js +143 -0
  236. package/dist/types/components/kup-accordion/kup-accordion-declarations.d.ts +2 -2
  237. package/dist/types/components/kup-autocomplete/kup-autocomplete-declarations.d.ts +6 -0
  238. package/dist/types/components/kup-autocomplete/kup-autocomplete.d.ts +29 -22
  239. package/dist/types/components/kup-box/kup-box-declarations.d.ts +7 -11
  240. package/dist/types/components/kup-box/kup-box.d.ts +4 -4
  241. package/dist/types/components/kup-button-list/kup-button-list-declarations.d.ts +6 -1
  242. package/dist/types/components/kup-button-list/kup-button-list.d.ts +4 -3
  243. package/dist/types/components/kup-calendar/kup-calendar-declarations.d.ts +28 -10
  244. package/dist/types/components/kup-calendar/kup-calendar.d.ts +19 -47
  245. package/dist/types/components/kup-card/built-in/kup-card-built-in.d.ts +27 -0
  246. package/dist/types/components/kup-card/built-in/kup-card-calendar.d.ts +2 -0
  247. package/dist/types/components/kup-card/built-in/kup-card-clock.d.ts +2 -0
  248. package/dist/types/components/kup-card/built-in/kup-card-column-drop-menu.d.ts +3 -0
  249. package/dist/types/components/kup-card/free/kup-card-free.d.ts +14 -0
  250. package/dist/types/components/kup-card/kup-card-declarations.d.ts +100 -1
  251. package/dist/types/components/kup-card/kup-card.d.ts +12 -5
  252. package/dist/types/components/kup-cell/kup-cell.d.ts +3 -3
  253. package/dist/types/components/kup-chart/kup-chart-builder.d.ts +5 -5
  254. package/dist/types/components/kup-chart/kup-chart-declarations.d.ts +3 -3
  255. package/dist/types/components/kup-chart/kup-chart.d.ts +2 -2
  256. package/dist/types/components/kup-chip/kup-chip-declarations.d.ts +6 -3
  257. package/dist/types/components/kup-chip/kup-chip.d.ts +9 -13
  258. package/dist/types/components/kup-color-picker/kup-color-picker.d.ts +7 -3
  259. package/dist/types/components/kup-combobox/kup-combobox-declarations.d.ts +4 -0
  260. package/dist/types/components/kup-combobox/kup-combobox.d.ts +11 -33
  261. package/dist/types/components/kup-dash-list/kup-dash-list.d.ts +2 -2
  262. package/dist/types/components/kup-data-table/kup-data-table-declarations.d.ts +45 -109
  263. package/dist/types/components/kup-data-table/kup-data-table-helper.d.ts +8 -11
  264. package/dist/types/components/kup-data-table/kup-data-table.d.ts +50 -29
  265. package/dist/types/components/kup-date-picker/kup-date-picker.d.ts +0 -10
  266. package/dist/types/components/kup-echart/kup-echart-declarations.d.ts +55 -0
  267. package/dist/types/components/kup-echart/kup-echart.d.ts +100 -0
  268. package/dist/types/components/kup-lazy/kup-lazy.d.ts +13 -1
  269. package/dist/types/components/kup-list/kup-list-declarations.d.ts +2 -1
  270. package/dist/types/components/kup-list/kup-list.d.ts +4 -35
  271. package/dist/types/components/kup-magic-box/kup-magic-box-declarations.d.ts +6 -10
  272. package/dist/types/components/kup-magic-box/kup-magic-box.d.ts +7 -11
  273. package/dist/types/components/kup-time-picker/kup-time-picker.d.ts +2 -9
  274. package/dist/types/components/kup-tooltip/kup-tooltip-declarations.d.ts +11 -13
  275. package/dist/types/components/kup-tree/kup-tree-declarations.d.ts +14 -35
  276. package/dist/types/components/kup-tree/kup-tree-faker.d.ts +10 -10
  277. package/dist/types/components/kup-tree/kup-tree.d.ts +45 -35
  278. package/dist/types/components.d.ts +307 -188
  279. package/dist/types/f-components/f-cell/f-cell-declarations.d.ts +11 -10
  280. package/dist/types/f-components/f-chip/f-chip-declarations.d.ts +7 -22
  281. package/dist/types/f-components/f-paginator/f-paginator-declarations.d.ts +22 -0
  282. package/dist/types/f-components/f-paginator/f-paginator-utils.d.ts +2 -0
  283. package/dist/types/f-components/f-paginator/f-paginator.d.ts +3 -0
  284. package/dist/types/managers/kup-data/kup-data-cell-helper.d.ts +24 -0
  285. package/dist/types/managers/kup-data/kup-data-column-helper.d.ts +31 -0
  286. package/dist/types/managers/kup-data/kup-data-declarations.d.ts +160 -0
  287. package/dist/types/managers/kup-data/kup-data-node-helper.d.ts +23 -0
  288. package/dist/types/managers/kup-data/kup-data-row-helper.d.ts +14 -0
  289. package/dist/types/managers/kup-data/kup-data.d.ts +77 -0
  290. package/dist/types/{utils → managers}/kup-dates/kup-dates-declarations.d.ts +0 -0
  291. package/dist/types/{utils → managers}/kup-dates/kup-dates.d.ts +24 -2
  292. package/dist/types/{utils → managers}/kup-debug/kup-debug-declarations.d.ts +0 -0
  293. package/dist/types/{utils → managers}/kup-debug/kup-debug.d.ts +6 -13
  294. package/dist/types/{utils → managers}/kup-dynamic-position/kup-dynamic-position-declarations.d.ts +1 -0
  295. package/dist/types/{utils → managers}/kup-dynamic-position/kup-dynamic-position.d.ts +0 -0
  296. package/dist/types/{utils → managers}/kup-interact/kup-interact-declarations.d.ts +9 -8
  297. package/dist/types/{utils → managers}/kup-interact/kup-interact.d.ts +7 -6
  298. package/dist/types/{utils → managers}/kup-language/kup-language-declarations.d.ts +11 -1
  299. package/dist/types/{utils → managers}/kup-language/kup-language.d.ts +3 -3
  300. package/dist/types/{utils → managers}/kup-manager/kup-manager-declarations.d.ts +21 -2
  301. package/dist/types/{utils → managers}/kup-manager/kup-manager.d.ts +4 -0
  302. package/dist/types/managers/kup-math/kup-math-declarations.d.ts +21 -0
  303. package/dist/types/managers/kup-math/kup-math-helper.d.ts +17 -0
  304. package/dist/types/managers/kup-math/kup-math.d.ts +60 -0
  305. package/dist/types/{utils → managers}/kup-objects/kup-objects-declarations.d.ts +0 -0
  306. package/dist/types/{utils → managers}/kup-objects/kup-objects.d.ts +6 -0
  307. package/dist/types/{utils → managers}/kup-scroll-on-hover/kup-scroll-on-hover-declarations.d.ts +0 -0
  308. package/dist/types/{utils → managers}/kup-scroll-on-hover/kup-scroll-on-hover.d.ts +0 -0
  309. package/dist/types/{utils → managers}/kup-search/kup-search-declarations.d.ts +0 -0
  310. package/dist/types/{utils → managers}/kup-search/kup-search.d.ts +0 -0
  311. package/dist/types/{utils → managers}/kup-theme/kup-theme-declarations.d.ts +37 -1
  312. package/dist/types/{utils → managers}/kup-theme/kup-theme.d.ts +19 -19
  313. package/dist/types/{utils → managers}/kup-toolbar/kup-toolbar-declarations.d.ts +0 -0
  314. package/dist/types/{utils → managers}/kup-toolbar/kup-toolbar.d.ts +0 -0
  315. package/dist/types/stencil-public-runtime.d.ts +6 -4
  316. package/dist/types/types/GenericTypes.d.ts +53 -6
  317. package/dist/types/utils/cell-utils.d.ts +7 -6
  318. package/dist/types/utils/filters/filters-column-menu.d.ts +16 -16
  319. package/dist/types/utils/filters/filters-rows.d.ts +10 -10
  320. package/dist/types/utils/filters/filters-tree-items.d.ts +7 -7
  321. package/dist/types/utils/helpers.d.ts +2 -2
  322. package/dist/types/utils/kup-column-menu/kup-column-menu-declarations.d.ts +1 -0
  323. package/dist/types/utils/kup-column-menu/kup-column-menu.d.ts +27 -33
  324. package/dist/types/utils/utils.d.ts +4 -2
  325. package/package.json +31 -26
  326. package/dist/cjs/f-chip-ce69b7d2.js +0 -141
  327. package/dist/cjs/utils-b3ec89fe.js +0 -1550
  328. package/dist/collection/components/kup-paginator/kup-paginator-declarations.js +0 -5
  329. package/dist/collection/components/kup-paginator/kup-paginator.css +0 -46
  330. package/dist/collection/components/kup-paginator/kup-paginator.js +0 -408
  331. package/dist/esm/f-chip-babf1740.js +0 -139
  332. package/dist/esm/utils-cfcbe33f.js +0 -1526
  333. package/dist/ketchup/p-1ce9a037.js +0 -1
  334. package/dist/ketchup/p-1e2c3497.js +0 -1
  335. package/dist/ketchup/p-4748be4b.js +0 -8
  336. package/dist/ketchup/p-5db41fae.entry.js +0 -45
  337. package/dist/ketchup/p-6cc8264d.entry.js +0 -1
  338. package/dist/ketchup/p-756aa8b1.entry.js +0 -1
  339. package/dist/ketchup/p-9d02a676.js +0 -134
  340. package/dist/ketchup/p-a7687c0e.entry.js +0 -27
  341. package/dist/ketchup/p-d58dbf0e.js +0 -1
  342. package/dist/ketchup/p-d6ce1ac6.entry.js +0 -1
  343. package/dist/ketchup/p-ea387b49.entry.js +0 -1
  344. package/dist/ketchup/p-f6bff949.js +0 -1
  345. package/dist/types/components/kup-paginator/kup-paginator-declarations.d.ts +0 -11
  346. package/dist/types/components/kup-paginator/kup-paginator.d.ts +0 -48
@@ -1,3 +1,771 @@
1
+ .built-in-layout-1 {
2
+ background-color: var(--kup-background-color);
3
+ border-radius: 4px;
4
+ box-sizing: border-box;
5
+ box-shadow: 0 2px 1px -1px rgba(128, 128, 128, 0.1), 0 1px 1px 0 rgba(128, 128, 128, 0.1), 0 1px 3px 0 rgba(128, 128, 128, 0.6);
6
+ display: flex;
7
+ flex-direction: column;
8
+ height: 100%;
9
+ position: relative;
10
+ width: 100%;
11
+ overflow: auto;
12
+ padding: 0.5em;
13
+ }
14
+ .built-in-layout-1 .section-1 {
15
+ box-sizing: border-box;
16
+ height: 5em;
17
+ overflow: auto;
18
+ padding-bottom: 1em;
19
+ width: 100%;
20
+ }
21
+ .built-in-layout-1 .section-1 .sub-1 {
22
+ display: flex;
23
+ flex-direction: row;
24
+ justify-content: center;
25
+ }
26
+ .built-in-layout-1 .section-2 {
27
+ height: calc(100% - 60px);
28
+ overflow: auto;
29
+ width: 100%;
30
+ }
31
+ .built-in-layout-1 .prev-page {
32
+ margin-left: auto;
33
+ }
34
+ .built-in-layout-1 .change-view-button {
35
+ margin: auto;
36
+ width: 12em;
37
+ text-align: center;
38
+ }
39
+ .built-in-layout-1 #change-view-button button {
40
+ text-transform: capitalize;
41
+ }
42
+ .built-in-layout-1 .next-page {
43
+ margin-right: auto;
44
+ }
45
+ .built-in-layout-1 .calendar {
46
+ border-collapse: collapse;
47
+ width: 100%;
48
+ }
49
+ .built-in-layout-1 thead {
50
+ border-bottom: 1px solid var(--kup-border-color);
51
+ }
52
+ .built-in-layout-1 .item-text {
53
+ color: rgba(var(--kup-text-color-rgb), 0.5);
54
+ }
55
+ .built-in-layout-1 .item {
56
+ text-align: center;
57
+ }
58
+ .built-in-layout-1 .item:not(.selected) .item-number:hover {
59
+ background-color: var(--kup-hover-background-color);
60
+ }
61
+ .built-in-layout-1 .item.selected .item-number, .built-in-layout-1 .item.selected .item-number:hover {
62
+ background-color: rgba(var(--kup-primary-color-rgb), 0.175);
63
+ }
64
+ .built-in-layout-1 .item-number {
65
+ border-radius: 50%;
66
+ cursor: pointer;
67
+ display: flex;
68
+ justify-content: center;
69
+ line-height: 2.5em;
70
+ margin: auto;
71
+ width: 2.5em;
72
+ transition: background-color 0.25s;
73
+ text-transform: capitalize;
74
+ }
75
+
76
+ .built-in-layout-2 {
77
+ background-color: var(--kup-background-color);
78
+ border-radius: 4px;
79
+ box-sizing: border-box;
80
+ box-shadow: 0 2px 1px -1px rgba(128, 128, 128, 0.1), 0 1px 1px 0 rgba(128, 128, 128, 0.1), 0 1px 3px 0 rgba(128, 128, 128, 0.6);
81
+ display: flex;
82
+ flex-direction: column;
83
+ height: 100%;
84
+ position: relative;
85
+ width: 100%;
86
+ overflow: auto;
87
+ }
88
+ .built-in-layout-2 .clock {
89
+ box-shadow: var(--kup-box-shadow);
90
+ width: 300px;
91
+ height: 450px;
92
+ background-color: var(--kup-background-color);
93
+ position: relative;
94
+ font-family: var(--kup-font-family);
95
+ }
96
+ .built-in-layout-2 .top {
97
+ background-color: var(--kup-primary-color);
98
+ color: var(--kup-text-on-primary-color);
99
+ height: 100px;
100
+ line-height: 100px;
101
+ font-size: 50px;
102
+ text-align: center;
103
+ }
104
+ .built-in-layout-2 .top span {
105
+ cursor: pointer;
106
+ opacity: 0.75;
107
+ transition: 0.25s ease-in-out;
108
+ }
109
+ .built-in-layout-2 .top .visible {
110
+ opacity: 1;
111
+ }
112
+ .built-in-layout-2 .circle {
113
+ user-select: none;
114
+ background-color: rgba(var(--kup-text-color-rgb), 0.1);
115
+ width: 250px;
116
+ height: 250px;
117
+ border-radius: 1000px;
118
+ position: relative;
119
+ top: 25px;
120
+ left: 25px;
121
+ box-sizing: border-box;
122
+ display: none;
123
+ }
124
+ .built-in-layout-2 .circle.visible {
125
+ display: block;
126
+ }
127
+ .built-in-layout-2 .mid {
128
+ position: absolute;
129
+ left: calc(50% - 0px);
130
+ top: calc(50% - 0px);
131
+ width: 2px;
132
+ height: 2px;
133
+ border-radius: 10px;
134
+ background-color: var(--kup-text-color);
135
+ }
136
+ .built-in-layout-2 .hour {
137
+ position: absolute;
138
+ height: 40px;
139
+ line-height: 40px;
140
+ width: 40px;
141
+ border-radius: 40px;
142
+ text-align: center;
143
+ }
144
+ .built-in-layout-2 .hour.selected {
145
+ z-index: 2;
146
+ }
147
+ .built-in-layout-2 .hour.selected::after {
148
+ content: "";
149
+ z-index: -1;
150
+ background-color: rgba(var(--kup-primary-color-rgb), 0.5);
151
+ height: 1px;
152
+ width: 100%;
153
+ position: absolute;
154
+ transform: rotate(-90deg);
155
+ transform-origin: 100% 0%;
156
+ top: 50%;
157
+ width: 101px;
158
+ right: 50%;
159
+ }
160
+ .built-in-layout-2 .hour2 {
161
+ z-index: 2;
162
+ position: absolute;
163
+ height: 30px;
164
+ line-height: 30px;
165
+ width: 30px;
166
+ border-radius: 40px;
167
+ text-align: center;
168
+ font-size: 14px;
169
+ }
170
+ .built-in-layout-2 .hour2.selected::after {
171
+ content: "";
172
+ background-color: rgba(var(--kup-primary-color-rgb), 0.5);
173
+ height: 1px;
174
+ width: 100%;
175
+ position: absolute;
176
+ transform: rotate(-90deg);
177
+ transform-origin: 100% 0%;
178
+ top: 50%;
179
+ width: 64px;
180
+ right: 50%;
181
+ z-index: -1;
182
+ }
183
+ .built-in-layout-2 .unit {
184
+ position: absolute;
185
+ height: 20px;
186
+ line-height: 20px;
187
+ width: 20px;
188
+ border-radius: 40px;
189
+ text-align: center;
190
+ font-size: 12px;
191
+ }
192
+ .built-in-layout-2 .unit.selected::after {
193
+ content: "";
194
+ background-color: rgba(var(--kup-primary-color-rgb), 0.5);
195
+ height: 1px;
196
+ width: 100%;
197
+ position: absolute;
198
+ transform: rotate(-90deg);
199
+ transform-origin: 100% 0%;
200
+ top: 50%;
201
+ width: 101px;
202
+ right: 50%;
203
+ }
204
+ .built-in-layout-2 .hour,
205
+ .built-in-layout-2 .hour2,
206
+ .built-in-layout-2 .unit {
207
+ cursor: pointer;
208
+ transition: background-color 0.25s;
209
+ }
210
+ .built-in-layout-2 .hour:hover,
211
+ .built-in-layout-2 .hour2:hover,
212
+ .built-in-layout-2 .unit:hover {
213
+ background-color: rgba(var(--kup-primary-color-rgb), 0.275);
214
+ }
215
+ .built-in-layout-2 .hour.selected,
216
+ .built-in-layout-2 .hour2.selected,
217
+ .built-in-layout-2 .unit.selected {
218
+ background-color: var(--kup-primary-color);
219
+ color: var(--kup-text-on-primary-color);
220
+ }
221
+ .built-in-layout-2 .actions {
222
+ color: var(--kup-primary-color);
223
+ font-weight: bold;
224
+ font-size: 20px;
225
+ display: flex;
226
+ justify-content: flex-end;
227
+ position: absolute;
228
+ width: 100%;
229
+ box-sizing: border-box;
230
+ bottom: 10px;
231
+ }
232
+ .built-in-layout-2 .action {
233
+ display: inline-block;
234
+ width: 100px;
235
+ text-align: center;
236
+ height: 37.5px;
237
+ line-height: 37.5px;
238
+ margin-right: 10px;
239
+ cursor: pointer;
240
+ border-radius: 2px;
241
+ }
242
+ .built-in-layout-2 .clock .actions .action:hover {
243
+ background-color: rgba(0, 0, 0, 0.1);
244
+ }
245
+ .built-in-layout-2 .clock .actions .action:visible {
246
+ background-color: rgba(0, 0, 0, 0.3);
247
+ }
248
+ .built-in-layout-2 .hour:nth-child(12):after {
249
+ transform: rotate(330deg);
250
+ }
251
+ .built-in-layout-2 .hour:nth-child(11):after {
252
+ transform: rotate(300deg);
253
+ }
254
+ .built-in-layout-2 .hour:nth-child(10):after {
255
+ transform: rotate(270deg);
256
+ }
257
+ .built-in-layout-2 .hour:nth-child(9):after {
258
+ transform: rotate(240deg);
259
+ }
260
+ .built-in-layout-2 .hour:nth-child(8):after {
261
+ transform: rotate(210deg);
262
+ }
263
+ .built-in-layout-2 .hour:nth-child(7):after {
264
+ transform: rotate(180deg);
265
+ }
266
+ .built-in-layout-2 .hour:nth-child(6):after {
267
+ transform: rotate(150deg);
268
+ }
269
+ .built-in-layout-2 .hour:nth-child(5):after {
270
+ transform: rotate(120deg);
271
+ }
272
+ .built-in-layout-2 .hour:nth-child(4):after {
273
+ transform: rotate(90deg);
274
+ }
275
+ .built-in-layout-2 .hour:nth-child(3):after {
276
+ transform: rotate(60deg);
277
+ }
278
+ .built-in-layout-2 .hour:nth-child(2):after {
279
+ transform: rotate(30deg);
280
+ }
281
+ .built-in-layout-2 .hour:nth-child(1):after {
282
+ transform: rotate(0deg);
283
+ }
284
+ .built-in-layout-2 .hour2:nth-child(24):after {
285
+ transform: rotate(690deg);
286
+ }
287
+ .built-in-layout-2 .hour2:nth-child(23):after {
288
+ transform: rotate(660deg);
289
+ }
290
+ .built-in-layout-2 .hour2:nth-child(22):after {
291
+ transform: rotate(630deg);
292
+ }
293
+ .built-in-layout-2 .hour2:nth-child(21):after {
294
+ transform: rotate(600deg);
295
+ }
296
+ .built-in-layout-2 .hour2:nth-child(20):after {
297
+ transform: rotate(570deg);
298
+ }
299
+ .built-in-layout-2 .hour2:nth-child(19):after {
300
+ transform: rotate(540deg);
301
+ }
302
+ .built-in-layout-2 .hour2:nth-child(18):after {
303
+ transform: rotate(510deg);
304
+ }
305
+ .built-in-layout-2 .hour2:nth-child(17):after {
306
+ transform: rotate(480deg);
307
+ }
308
+ .built-in-layout-2 .hour2:nth-child(16):after {
309
+ transform: rotate(450deg);
310
+ }
311
+ .built-in-layout-2 .hour2:nth-child(15):after {
312
+ transform: rotate(420deg);
313
+ }
314
+ .built-in-layout-2 .hour2:nth-child(14):after {
315
+ transform: rotate(390deg);
316
+ }
317
+ .built-in-layout-2 .hour2:nth-child(13):after {
318
+ transform: rotate(360deg);
319
+ }
320
+ .built-in-layout-2 .unit:nth-child(60):after {
321
+ transform: rotate(354deg);
322
+ }
323
+ .built-in-layout-2 .unit:nth-child(59):after {
324
+ transform: rotate(348deg);
325
+ }
326
+ .built-in-layout-2 .unit:nth-child(58):after {
327
+ transform: rotate(342deg);
328
+ }
329
+ .built-in-layout-2 .unit:nth-child(57):after {
330
+ transform: rotate(336deg);
331
+ }
332
+ .built-in-layout-2 .unit:nth-child(56):after {
333
+ transform: rotate(330deg);
334
+ }
335
+ .built-in-layout-2 .unit:nth-child(55):after {
336
+ transform: rotate(324deg);
337
+ }
338
+ .built-in-layout-2 .unit:nth-child(54):after {
339
+ transform: rotate(318deg);
340
+ }
341
+ .built-in-layout-2 .unit:nth-child(53):after {
342
+ transform: rotate(312deg);
343
+ }
344
+ .built-in-layout-2 .unit:nth-child(52):after {
345
+ transform: rotate(306deg);
346
+ }
347
+ .built-in-layout-2 .unit:nth-child(51):after {
348
+ transform: rotate(300deg);
349
+ }
350
+ .built-in-layout-2 .unit:nth-child(50):after {
351
+ transform: rotate(294deg);
352
+ }
353
+ .built-in-layout-2 .unit:nth-child(49):after {
354
+ transform: rotate(288deg);
355
+ }
356
+ .built-in-layout-2 .unit:nth-child(48):after {
357
+ transform: rotate(282deg);
358
+ }
359
+ .built-in-layout-2 .unit:nth-child(47):after {
360
+ transform: rotate(276deg);
361
+ }
362
+ .built-in-layout-2 .unit:nth-child(46):after {
363
+ transform: rotate(270deg);
364
+ }
365
+ .built-in-layout-2 .unit:nth-child(45):after {
366
+ transform: rotate(264deg);
367
+ }
368
+ .built-in-layout-2 .unit:nth-child(44):after {
369
+ transform: rotate(258deg);
370
+ }
371
+ .built-in-layout-2 .unit:nth-child(43):after {
372
+ transform: rotate(252deg);
373
+ }
374
+ .built-in-layout-2 .unit:nth-child(42):after {
375
+ transform: rotate(246deg);
376
+ }
377
+ .built-in-layout-2 .unit:nth-child(41):after {
378
+ transform: rotate(240deg);
379
+ }
380
+ .built-in-layout-2 .unit:nth-child(40):after {
381
+ transform: rotate(234deg);
382
+ }
383
+ .built-in-layout-2 .unit:nth-child(39):after {
384
+ transform: rotate(228deg);
385
+ }
386
+ .built-in-layout-2 .unit:nth-child(38):after {
387
+ transform: rotate(222deg);
388
+ }
389
+ .built-in-layout-2 .unit:nth-child(37):after {
390
+ transform: rotate(216deg);
391
+ }
392
+ .built-in-layout-2 .unit:nth-child(36):after {
393
+ transform: rotate(210deg);
394
+ }
395
+ .built-in-layout-2 .unit:nth-child(35):after {
396
+ transform: rotate(204deg);
397
+ }
398
+ .built-in-layout-2 .unit:nth-child(34):after {
399
+ transform: rotate(198deg);
400
+ }
401
+ .built-in-layout-2 .unit:nth-child(33):after {
402
+ transform: rotate(192deg);
403
+ }
404
+ .built-in-layout-2 .unit:nth-child(32):after {
405
+ transform: rotate(186deg);
406
+ }
407
+ .built-in-layout-2 .unit:nth-child(31):after {
408
+ transform: rotate(180deg);
409
+ }
410
+ .built-in-layout-2 .unit:nth-child(30):after {
411
+ transform: rotate(174deg);
412
+ }
413
+ .built-in-layout-2 .unit:nth-child(29):after {
414
+ transform: rotate(168deg);
415
+ }
416
+ .built-in-layout-2 .unit:nth-child(28):after {
417
+ transform: rotate(162deg);
418
+ }
419
+ .built-in-layout-2 .unit:nth-child(27):after {
420
+ transform: rotate(156deg);
421
+ }
422
+ .built-in-layout-2 .unit:nth-child(26):after {
423
+ transform: rotate(150deg);
424
+ }
425
+ .built-in-layout-2 .unit:nth-child(25):after {
426
+ transform: rotate(144deg);
427
+ }
428
+ .built-in-layout-2 .unit:nth-child(24):after {
429
+ transform: rotate(138deg);
430
+ }
431
+ .built-in-layout-2 .unit:nth-child(23):after {
432
+ transform: rotate(132deg);
433
+ }
434
+ .built-in-layout-2 .unit:nth-child(22):after {
435
+ transform: rotate(126deg);
436
+ }
437
+ .built-in-layout-2 .unit:nth-child(21):after {
438
+ transform: rotate(120deg);
439
+ }
440
+ .built-in-layout-2 .unit:nth-child(20):after {
441
+ transform: rotate(114deg);
442
+ }
443
+ .built-in-layout-2 .unit:nth-child(19):after {
444
+ transform: rotate(108deg);
445
+ }
446
+ .built-in-layout-2 .unit:nth-child(18):after {
447
+ transform: rotate(102deg);
448
+ }
449
+ .built-in-layout-2 .unit:nth-child(17):after {
450
+ transform: rotate(96deg);
451
+ }
452
+ .built-in-layout-2 .unit:nth-child(16):after {
453
+ transform: rotate(90deg);
454
+ }
455
+ .built-in-layout-2 .unit:nth-child(15):after {
456
+ transform: rotate(84deg);
457
+ }
458
+ .built-in-layout-2 .unit:nth-child(14):after {
459
+ transform: rotate(78deg);
460
+ }
461
+ .built-in-layout-2 .unit:nth-child(13):after {
462
+ transform: rotate(72deg);
463
+ }
464
+ .built-in-layout-2 .unit:nth-child(12):after {
465
+ transform: rotate(66deg);
466
+ }
467
+ .built-in-layout-2 .unit:nth-child(11):after {
468
+ transform: rotate(60deg);
469
+ }
470
+ .built-in-layout-2 .unit:nth-child(10):after {
471
+ transform: rotate(54deg);
472
+ }
473
+ .built-in-layout-2 .unit:nth-child(9):after {
474
+ transform: rotate(48deg);
475
+ }
476
+ .built-in-layout-2 .unit:nth-child(8):after {
477
+ transform: rotate(42deg);
478
+ }
479
+ .built-in-layout-2 .unit:nth-child(7):after {
480
+ transform: rotate(36deg);
481
+ }
482
+ .built-in-layout-2 .unit:nth-child(6):after {
483
+ transform: rotate(30deg);
484
+ }
485
+ .built-in-layout-2 .unit:nth-child(5):after {
486
+ transform: rotate(24deg);
487
+ }
488
+ .built-in-layout-2 .unit:nth-child(4):after {
489
+ transform: rotate(18deg);
490
+ }
491
+ .built-in-layout-2 .unit:nth-child(3):after {
492
+ transform: rotate(12deg);
493
+ }
494
+ .built-in-layout-2 .unit:nth-child(2):after {
495
+ transform: rotate(6deg);
496
+ }
497
+ .built-in-layout-2 .unit:nth-child(1):after {
498
+ transform: rotate(0deg);
499
+ }
500
+
501
+ .built-in-layout-3 {
502
+ background: var(--kup-background-color);
503
+ box-shadow: rgba(128, 128, 128, 0.1) 0px 2px 1px -1px, rgba(128, 128, 128, 0.1) 0px 1px 1px 0px, rgba(128, 128, 128, 0.6) 0px 1px 3px 0px;
504
+ box-sizing: border-box;
505
+ overflow: auto;
506
+ }
507
+ .built-in-layout-3 kup-button,
508
+ .built-in-layout-3 kup-combobox {
509
+ margin: 0 auto 0.75em auto;
510
+ }
511
+ .built-in-layout-3 kup-combobox {
512
+ width: 95%;
513
+ }
514
+ .built-in-layout-3 .sub-chip {
515
+ border-top: 1px solid var(--kup-border-color);
516
+ max-height: 33vh;
517
+ overflow: auto;
518
+ width: 100%;
519
+ }
520
+
521
+ .built-in-layout-4 {
522
+ background: var(--kup-background-color);
523
+ box-shadow: rgba(128, 128, 128, 0.1) 0px 2px 1px -1px, rgba(128, 128, 128, 0.1) 0px 1px 1px 0px, rgba(128, 128, 128, 0.6) 0px 1px 3px 0px;
524
+ box-sizing: border-box;
525
+ }
526
+ .built-in-layout-4 .picker_arrow {
527
+ position: absolute;
528
+ z-index: -1;
529
+ }
530
+ .built-in-layout-4 .picker_wrapper.popup {
531
+ position: absolute;
532
+ z-index: 2;
533
+ margin: 1.5em;
534
+ }
535
+ .built-in-layout-4 .picker_wrapper.popup,
536
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow::before,
537
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow::after {
538
+ background: var(--kup-background-color);
539
+ box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4);
540
+ }
541
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow {
542
+ width: 3em;
543
+ height: 3em;
544
+ margin: 0;
545
+ }
546
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow::before, .built-in-layout-4 .picker_wrapper.popup .picker_arrow::after {
547
+ content: "";
548
+ display: block;
549
+ position: absolute;
550
+ top: 0;
551
+ left: 0;
552
+ z-index: -99;
553
+ }
554
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow::before {
555
+ width: 100%;
556
+ height: 100%;
557
+ transform: skew(45deg);
558
+ transform-origin: 0 100%;
559
+ }
560
+ .built-in-layout-4 .picker_wrapper.popup .picker_arrow::after {
561
+ width: 150%;
562
+ height: 150%;
563
+ box-shadow: none;
564
+ }
565
+ .built-in-layout-4 .popup.popup_top {
566
+ bottom: 100%;
567
+ left: 0;
568
+ }
569
+ .built-in-layout-4 .popup.popup_top .picker_arrow {
570
+ bottom: 0;
571
+ left: 0;
572
+ transform: rotate(-90deg);
573
+ }
574
+ .built-in-layout-4 .popup.popup_bottom {
575
+ top: 100%;
576
+ left: 0;
577
+ }
578
+ .built-in-layout-4 .popup.popup_bottom .picker_arrow {
579
+ top: 0;
580
+ left: 0;
581
+ transform: rotate(90deg) scale(1, -1);
582
+ }
583
+ .built-in-layout-4 .popup.popup_left {
584
+ top: 0;
585
+ right: 100%;
586
+ }
587
+ .built-in-layout-4 .popup.popup_left .picker_arrow {
588
+ top: 0;
589
+ right: 0;
590
+ transform: scale(-1, 1);
591
+ }
592
+ .built-in-layout-4 .popup.popup_right {
593
+ top: 0;
594
+ left: 100%;
595
+ }
596
+ .built-in-layout-4 .popup.popup_right .picker_arrow {
597
+ top: 0;
598
+ left: 0;
599
+ }
600
+ .built-in-layout-4 .picker_wrapper.no_alpha .picker_alpha {
601
+ display: none;
602
+ }
603
+ .built-in-layout-4 .picker_wrapper.no_editor .picker_editor {
604
+ position: absolute;
605
+ z-index: -1;
606
+ opacity: 0;
607
+ }
608
+ .built-in-layout-4 .picker_wrapper.no_cancel .picker_cancel {
609
+ display: none;
610
+ }
611
+ .built-in-layout-4 .layout_default.picker_wrapper {
612
+ display: flex;
613
+ flex-flow: row wrap;
614
+ justify-content: space-between;
615
+ align-items: stretch;
616
+ font-size: 10px;
617
+ width: 25em;
618
+ padding: 0.5em;
619
+ }
620
+ .built-in-layout-4 .layout_default.picker_wrapper input,
621
+ .built-in-layout-4 .layout_default.picker_wrapper button {
622
+ font-size: 1em;
623
+ }
624
+ .built-in-layout-4 .layout_default.picker_wrapper > * {
625
+ margin: 0.5em;
626
+ }
627
+ .built-in-layout-4 .layout_default.picker_wrapper::before {
628
+ content: "";
629
+ display: block;
630
+ width: 100%;
631
+ height: 0;
632
+ order: 1;
633
+ }
634
+ .built-in-layout-4 .layout_default .picker_slider,
635
+ .built-in-layout-4 .layout_default .picker_selector {
636
+ padding: 1em;
637
+ }
638
+ .built-in-layout-4 .layout_default .picker_hue {
639
+ width: 100%;
640
+ }
641
+ .built-in-layout-4 .layout_default .picker_sl {
642
+ flex: 1 1 auto;
643
+ }
644
+ .built-in-layout-4 .layout_default .picker_sl::before {
645
+ content: "";
646
+ display: block;
647
+ padding-bottom: 100%;
648
+ }
649
+ .built-in-layout-4 .layout_default .picker_editor {
650
+ order: 1;
651
+ width: 6.5em;
652
+ }
653
+ .built-in-layout-4 .layout_default .picker_editor input {
654
+ width: 100%;
655
+ height: 100%;
656
+ }
657
+ .built-in-layout-4 .layout_default .picker_sample {
658
+ order: 1;
659
+ flex: 1 1 auto;
660
+ }
661
+ .built-in-layout-4 .layout_default .picker_done,
662
+ .built-in-layout-4 .layout_default .picker_cancel {
663
+ order: 1;
664
+ }
665
+ .built-in-layout-4 .picker_wrapper {
666
+ box-sizing: border-box;
667
+ background: var(--kup-background-color);
668
+ box-shadow: 0 0 0 1px var(--kup-border-color);
669
+ cursor: default;
670
+ font-family: sans-serif;
671
+ color: #444;
672
+ pointer-events: auto;
673
+ }
674
+ .built-in-layout-4 .picker_wrapper:focus {
675
+ outline: none;
676
+ }
677
+ .built-in-layout-4 .picker_wrapper button,
678
+ .built-in-layout-4 .picker_wrapper input {
679
+ box-sizing: border-box;
680
+ border: none;
681
+ box-shadow: 0 0 0 1px var(--kup-border-color);
682
+ outline: none;
683
+ }
684
+ .built-in-layout-4 .picker_wrapper button:focus, .built-in-layout-4 .picker_wrapper button:active,
685
+ .built-in-layout-4 .picker_wrapper input:focus,
686
+ .built-in-layout-4 .picker_wrapper input:active {
687
+ box-shadow: 0 0 2px 1px var(--kup-border-color);
688
+ }
689
+ .built-in-layout-4 .picker_wrapper button {
690
+ padding: 0.4em 0.6em;
691
+ cursor: pointer;
692
+ background-color: whitesmoke;
693
+ background-image: linear-gradient(0deg, gainsboro, transparent);
694
+ }
695
+ .built-in-layout-4 .picker_wrapper button:active {
696
+ background-image: linear-gradient(0deg, transparent, gainsboro);
697
+ }
698
+ .built-in-layout-4 .picker_selector {
699
+ position: absolute;
700
+ z-index: 1;
701
+ display: block;
702
+ transform: translate(-50%, -50%);
703
+ border: 2px solid white;
704
+ border-radius: 100%;
705
+ box-shadow: 0 0 3px 1px #67b9ff;
706
+ background: currentColor;
707
+ cursor: pointer;
708
+ }
709
+ .built-in-layout-4 .picker_slider .picker_selector {
710
+ border-radius: 2px;
711
+ }
712
+ .built-in-layout-4 .picker_hue {
713
+ position: relative;
714
+ background-image: linear-gradient(90deg, red, yellow, lime, cyan, blue, magenta, red);
715
+ box-shadow: 0 0 0 1px var(--kup-border-color);
716
+ }
717
+ .built-in-layout-4 .picker_sl {
718
+ position: relative;
719
+ box-shadow: 0 0 0 1px var(--kup-border-color);
720
+ background-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0) 50%), linear-gradient(0deg, black, rgba(0, 0, 0, 0) 50%), linear-gradient(90deg, #808080, rgba(128, 128, 128, 0));
721
+ }
722
+ .built-in-layout-4 .picker_alpha,
723
+ .built-in-layout-4 .picker_sample {
724
+ position: relative;
725
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='2'%3E%3Cpath d='M1,0H0V1H2V2H1' fill='lightgrey'/%3E%3C/svg%3E") left top/contain white;
726
+ box-shadow: 0 0 0 1px var(--kup-border-color);
727
+ }
728
+ .built-in-layout-4 .picker_alpha .picker_selector,
729
+ .built-in-layout-4 .picker_sample .picker_selector {
730
+ background: none;
731
+ }
732
+ .built-in-layout-4 .picker_editor input {
733
+ font-family: monospace;
734
+ padding: 0.2em 0.4em;
735
+ }
736
+ .built-in-layout-4 .picker_sample::before {
737
+ content: "";
738
+ position: absolute;
739
+ display: block;
740
+ width: 100%;
741
+ height: 100%;
742
+ background: currentColor;
743
+ }
744
+ .built-in-layout-4 .picker_done,
745
+ .built-in-layout-4 .picker_arrow {
746
+ display: none;
747
+ }
748
+ .built-in-layout-4 .layout_default.picker_wrapper {
749
+ bottom: unset;
750
+ font-size: var(--kup-font-size);
751
+ left: unset;
752
+ padding: 0.25em;
753
+ right: unset;
754
+ top: unset;
755
+ width: 100%;
756
+ }
757
+ .built-in-layout-4 .layout_default .picker_editor input {
758
+ background: none;
759
+ color: var(--kup-text-color);
760
+ font-family: var(--kup-font-family);
761
+ font-size: var(--kup-font-size);
762
+ }
763
+ .built-in-layout-4 .picker_wrapper.popup {
764
+ box-shadow: var(--kup-box-shadow);
765
+ margin: 0;
766
+ outline: none;
767
+ }
768
+
1
769
  .collapsible-layout-1 {
2
770
  color: var(--kup-text-color);
3
771
  box-shadow: 0px 0px 7.5px 0px rgba(128, 128, 128, 0.5);
@@ -328,6 +1096,21 @@
328
1096
  opacity: 0.5;
329
1097
  }
330
1098
 
1099
+ .free-layout-1 {
1100
+ background: var(--kup-background-color);
1101
+ box-shadow: var(--kup-box-shadow);
1102
+ box-sizing: border-box;
1103
+ overflow: auto;
1104
+ padding: 1em;
1105
+ }
1106
+
1107
+ .free-layout-2 {
1108
+ background: var(--kup-background-color);
1109
+ box-shadow: var(--kup-box-shadow);
1110
+ box-sizing: border-box;
1111
+ overflow: auto;
1112
+ }
1113
+
331
1114
  .scalable-layout-1 .descr {
332
1115
  font-size: 70%;
333
1116
  width: 100%;
@@ -1356,7 +2139,7 @@
1356
2139
 
1357
2140
  .standard-layout-12 {
1358
2141
  background-color: var(--kup-background-color);
1359
- box-shadow: var(--kup-box-shadow);
2142
+ box-shadow: 0 2px 1px -1px rgba(128, 128, 128, 0.1), 0 1px 1px 0 rgba(128, 128, 128, 0.1), 0 1px 3px 0 rgba(128, 128, 128, 0.6);
1360
2143
  color: var(--kup-text-color);
1361
2144
  min-width: 200px;
1362
2145
  min-width: -moz-max-content;
@@ -1406,7 +2189,6 @@
1406
2189
  height: 100%;
1407
2190
  position: relative;
1408
2191
  width: 100%;
1409
- overflow: auto;
1410
2192
  }
1411
2193
  .standard-layout-13 kup-button {
1412
2194
  margin-left: 0;
@@ -1441,7 +2223,7 @@
1441
2223
 
1442
2224
  .standard-layout-14 {
1443
2225
  background-color: var(--kup-background-color);
1444
- box-shadow: var(--kup-box-shadow);
2226
+ box-shadow: 0 2px 1px -1px rgba(128, 128, 128, 0.1), 0 1px 1px 0 rgba(128, 128, 128, 0.1), 0 1px 3px 0 rgba(128, 128, 128, 0.6);
1445
2227
  color: var(--kup-text-color);
1446
2228
  min-width: 200px;
1447
2229
  min-width: -moz-max-content;
@@ -1508,6 +2290,9 @@
1508
2290
  margin-left: 0;
1509
2291
  margin-right: auto;
1510
2292
  }
2293
+ .standard-layout-14 .sub-formula {
2294
+ padding: 0.5em;
2295
+ }
1511
2296
  .standard-layout-14 .sub-chip {
1512
2297
  max-width: 25vw;
1513
2298
  overflow: auto;
@@ -1547,6 +2332,7 @@
1547
2332
  }
1548
2333
  .standard-layout-14 #apply {
1549
2334
  display: none;
2335
+ margin: auto;
1550
2336
  }
1551
2337
  .standard-layout-14 #apply.visible {
1552
2338
  display: block;
@@ -1566,8 +2352,6 @@
1566
2352
  color: var(--kup-text-color);
1567
2353
  box-shadow: var(--kup-box-shadow);
1568
2354
  border-radius: 3px;
1569
- min-width: 350px;
1570
- max-width: 700px;
1571
2355
  }
1572
2356
  .standard-layout-15 .section-1 {
1573
2357
  box-sizing: border-box;
@@ -1680,12 +2464,13 @@
1680
2464
  width: var(--kup_card_width);
1681
2465
  }
1682
2466
 
1683
- :host([is-menu]) #kup-component {
1684
- animation: fade-in 0.25s ease-out;
2467
+ :host([is-menu]) {
1685
2468
  display: none;
2469
+ animation: fade-in 0.25s ease-out;
1686
2470
  }
1687
2471
 
1688
- :host([menu-visible]) #kup-component {
2472
+ :host([menu-visible]) {
2473
+ box-shadow: var(--kup-box-shadow);
1689
2474
  display: block;
1690
2475
  }
1691
2476