@almadar/std 16.150.0 → 16.152.0

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 (93) hide show
  1. package/behaviors/lolo/ui/core/atoms/std-app-search.lolo +18 -0
  2. package/behaviors/lolo/ui/core/atoms/std-board.lolo +1 -1
  3. package/behaviors/lolo/ui/core/atoms/std-browse.lolo +39 -10
  4. package/behaviors/lolo/ui/core/atoms/std-calendar.lolo +13 -1
  5. package/behaviors/lolo/ui/core/atoms/std-multi-party-flow.lolo +8 -10
  6. package/behaviors/lolo/ui/core/atoms/std-stats.lolo +3 -0
  7. package/behaviors/lolo/ui/core/atoms/ui-typography.lolo +6 -1
  8. package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +4 -2
  9. package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +27 -1
  10. package/behaviors/lolo/ui/core/molecules/ui-graph-canvas.lolo +57 -0
  11. package/behaviors/lolo/ui/core/molecules/ui-simple-grid.lolo +2 -2
  12. package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +3 -1
  13. package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +4 -2
  14. package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +2 -0
  15. package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +3 -1
  16. package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +3 -1
  17. package/behaviors/lolo/ui/game/atoms/ui-draw-group.lolo +54 -0
  18. package/behaviors/lolo/ui/game/atoms/ui-draw-shape.lolo +6 -1
  19. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-group.lolo +58 -0
  20. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-shape.lolo +103 -0
  21. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-text.lolo +58 -0
  22. package/behaviors/lolo/ui/game/molecules/ui-draw-shape-layer.lolo +3 -2
  23. package/behaviors/lolo/ui/game/molecules/ui-svg-draw-shape-layer.lolo +52 -0
  24. package/behaviors/lolo/ui/game/molecules/ui-svg-stage.lolo +98 -0
  25. package/behaviors/lolo/ui/learning/atoms/std-branching-logic.lolo +0 -28
  26. package/behaviors/registry/factory-signatures.json +2435 -782
  27. package/behaviors/registry/ui/core/atoms/std-app-search.orb +60 -0
  28. package/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
  29. package/behaviors/registry/ui/core/atoms/std-browse.orb +242 -35
  30. package/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
  31. package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
  32. package/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
  33. package/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
  34. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
  35. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +71 -1
  36. package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
  37. package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
  38. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
  39. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
  40. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
  41. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +54 -1
  42. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
  43. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  44. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  45. package/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  46. package/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  47. package/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  48. package/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  49. package/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  50. package/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  51. package/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
  52. package/dist/behaviors/behaviors-embeddings.json +476 -452
  53. package/dist/behaviors/behaviors-registry.json +2814 -877
  54. package/dist/behaviors/exports-reader.js +143 -4
  55. package/dist/behaviors/functions/index.d.ts +33 -20
  56. package/dist/behaviors/functions/index.js +143 -4
  57. package/dist/behaviors/index.d.ts +1 -1
  58. package/dist/behaviors/index.js +143 -4
  59. package/dist/behaviors/knob-embeddings.json +1 -1
  60. package/dist/behaviors/query.js +143 -4
  61. package/dist/behaviors/registry/factory-signatures.json +2435 -782
  62. package/dist/behaviors/registry/ui/core/atoms/std-app-search.orb +60 -0
  63. package/dist/behaviors/registry/ui/core/atoms/std-board.orb +1 -1
  64. package/dist/behaviors/registry/ui/core/atoms/std-browse.orb +242 -35
  65. package/dist/behaviors/registry/ui/core/atoms/std-calendar.orb +25 -1
  66. package/dist/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +8 -10
  67. package/dist/behaviors/registry/ui/core/atoms/std-stats.orb +27 -0
  68. package/dist/behaviors/registry/ui/core/atoms/ui-typography.orb +17 -1
  69. package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +39 -2
  70. package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +71 -1
  71. package/dist/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +296 -0
  72. package/dist/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +0 -2
  73. package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +34 -1
  74. package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +49 -2
  75. package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +2 -0
  76. package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +54 -1
  77. package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +33 -1
  78. package/dist/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  79. package/dist/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  80. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  81. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  82. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  83. package/dist/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  84. package/dist/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  85. package/dist/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  86. package/dist/behaviors/registry/ui/learning/atoms/std-branching-logic.orb +0 -34
  87. package/dist/behaviors-embeddings.json +476 -452
  88. package/dist/behaviors-registry.json +2814 -877
  89. package/dist/index.d.ts +1 -1
  90. package/dist/index.js +143 -4
  91. package/dist/knob-embeddings.json +1 -1
  92. package/dist/registry/factory-signatures.json +2435 -782
  93. package/package.json +3 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.