likec4 1.52.0 → 1.53.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 (36) hide show
  1. package/__app__/src/likec4.js +34 -48
  2. package/__app__/src/routes/index.js +7 -0
  3. package/__app__/src/routes/single.js +30 -18
  4. package/__app__/src/style.css +1 -1
  5. package/__app__/src/vendors.js +2065 -2809
  6. package/config/schema.json +56 -0
  7. package/dist/THIRD-PARTY-LICENSES.md +10 -2
  8. package/dist/_chunks/filesystem.mjs +70 -68
  9. package/dist/_chunks/index.d.mts +10 -1
  10. package/dist/_chunks/index2.d.mts +76 -4
  11. package/dist/_chunks/libs/@hono/mcp.mjs +1 -1
  12. package/dist/_chunks/libs/@logtape/logtape.d.mts +1021 -0
  13. package/dist/_chunks/libs/@logtape/logtape.mjs +4 -6
  14. package/dist/_chunks/libs/@modelcontextprotocol/sdk.d.mts +1 -1
  15. package/dist/_chunks/libs/@nanostores/react.d.mts +5 -5
  16. package/dist/_chunks/libs/destr.mjs +1 -0
  17. package/dist/_chunks/libs/fast-equals.mjs +1 -1
  18. package/dist/_chunks/libs/langium.mjs +1 -1
  19. package/dist/_chunks/libs/remeda.mjs +2 -2
  20. package/dist/_chunks/libs/tinyrainbow.mjs +1 -1
  21. package/dist/_chunks/libs/unstorage.mjs +1 -0
  22. package/dist/_chunks/node.mjs +1 -0
  23. package/dist/_chunks/sequence.mjs +1 -1
  24. package/dist/_chunks/src.mjs +14 -12
  25. package/dist/_chunks/src2.mjs +46 -46
  26. package/dist/cli/index.mjs +164 -84
  27. package/dist/index.d.mts +16 -819
  28. package/dist/index.mjs +1 -1
  29. package/dist/vite-plugin/index.mjs +1 -1
  30. package/dist/vite-plugin/internal.mjs +1 -1
  31. package/package.json +34 -33
  32. package/react/index.d.mts +24 -20
  33. package/react/index.mjs +969 -1728
  34. package/vite-plugin-modules.d.ts +5 -0
  35. package/dist/_chunks/LikeC4.mjs +0 -1
  36. package/dist/_chunks/libs/boxen.d.mts +0 -1
@@ -86,6 +86,9 @@
86
86
  "implicitViews": {
87
87
  "description": "Auto-generate scoped views for elements without explicit views. Defaults to false.",
88
88
  "type": "boolean"
89
+ },
90
+ "landingPage": {
91
+ "$ref": "#/$defs/LandingPageConfig"
89
92
  }
90
93
  },
91
94
  "required": [
@@ -523,6 +526,59 @@
523
526
  }
524
527
  },
525
528
  "additionalProperties": false
529
+ },
530
+ "LandingPageConfig": {
531
+ "id": "LandingPageConfig",
532
+ "description": "Configure the landing page. Use redirect to go to the index view, or include/exclude to filter the view grid.",
533
+ "anyOf": [
534
+ {
535
+ "type": "object",
536
+ "properties": {
537
+ "redirect": {
538
+ "type": "boolean",
539
+ "const": true
540
+ }
541
+ },
542
+ "required": [
543
+ "redirect"
544
+ ],
545
+ "additionalProperties": false
546
+ },
547
+ {
548
+ "type": "object",
549
+ "properties": {
550
+ "include": {
551
+ "minItems": 1,
552
+ "type": "array",
553
+ "items": {
554
+ "type": "string",
555
+ "minLength": 1
556
+ }
557
+ }
558
+ },
559
+ "required": [
560
+ "include"
561
+ ],
562
+ "additionalProperties": false
563
+ },
564
+ {
565
+ "type": "object",
566
+ "properties": {
567
+ "exclude": {
568
+ "minItems": 1,
569
+ "type": "array",
570
+ "items": {
571
+ "type": "string",
572
+ "minLength": 1
573
+ }
574
+ }
575
+ },
576
+ "required": [
577
+ "exclude"
578
+ ],
579
+ "additionalProperties": false
580
+ }
581
+ ]
526
582
  }
527
583
  }
528
584
  }
@@ -300,6 +300,14 @@ Repository: https://github.com/likec4/likec4
300
300
 
301
301
  ---------------------------------------
302
302
 
303
+ ## @likec4/leanix-bridge
304
+
305
+ License: MIT
306
+ By: Denis Davydkov
307
+ Repository: https://github.com/likec4/likec4
308
+
309
+ ---------------------------------------
310
+
303
311
  ## @logtape/logtape
304
312
 
305
313
  License: MIT
@@ -706,10 +714,10 @@ Repository: https://github.com/langium/chevrotain-allstar
706
714
 
707
715
  ---------------------------------------
708
716
 
709
- ## defu, ufo
717
+ ## defu, destr, ufo, unstorage
710
718
 
711
719
  License: MIT
712
- Repositories: https://github.com/unjs/defu, https://github.com/unjs/ufo
720
+ Repositories: https://github.com/unjs/defu, https://github.com/unjs/destr, https://github.com/unjs/ufo, https://github.com/unjs/unstorage
713
721
 
714
722
  > MIT License
715
723
  >