@x12i/connectix-docs 0.1.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 (45) hide show
  1. package/README.md +77 -0
  2. package/bin/connectix-docs.js +2 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +56 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/generated/bundle.d.ts +7 -0
  8. package/dist/generated/bundle.d.ts.map +1 -0
  9. package/dist/generated/bundle.js +304 -0
  10. package/dist/generated/bundle.js.map +1 -0
  11. package/dist/index.d.ts +6 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +13 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/web/.deploy-ready +1 -0
  16. package/dist/web/agent-manifest.json +102 -0
  17. package/dist/web/agents.html +66 -0
  18. package/dist/web/app.js +164 -0
  19. package/dist/web/assets/book.css +783 -0
  20. package/dist/web/assets/extras.css +137 -0
  21. package/dist/web/assets/site.css +792 -0
  22. package/dist/web/assets/tokens.css +19 -0
  23. package/dist/web/books/00-orient-connectix/developers.html +174 -0
  24. package/dist/web/books/00-orient-connectix.html +56 -0
  25. package/dist/web/books/01-tools-and-simulator/developers.html +197 -0
  26. package/dist/web/books/01-tools-and-simulator.html +56 -0
  27. package/dist/web/catalog.html +83 -0
  28. package/dist/web/catalog.json +59 -0
  29. package/dist/web/docs.html +73 -0
  30. package/dist/web/downloads/books/00-orient-connectix/developers.chapters.json +26 -0
  31. package/dist/web/downloads/books/00-orient-connectix/developers.md +82 -0
  32. package/dist/web/downloads/books/01-tools-and-simulator/developers.chapters.json +32 -0
  33. package/dist/web/downloads/books/01-tools-and-simulator/developers.md +118 -0
  34. package/dist/web/downloads/use-cases/call-connect-tools.md +78 -0
  35. package/dist/web/downloads/use-cases/catalog-extension-overview.md +42 -0
  36. package/dist/web/downloads/use-cases/orient-connectix.md +95 -0
  37. package/dist/web/downloads/use-cases/run-package-simulator.md +48 -0
  38. package/dist/web/getting-started.html +74 -0
  39. package/dist/web/index.html +84 -0
  40. package/dist/web/pages.json +55 -0
  41. package/dist/web/read.html +121 -0
  42. package/dist/web/site.json +28 -0
  43. package/dist/web/use-cases.html +66 -0
  44. package/dist/web/use-cases.json +103 -0
  45. package/package.json +64 -0
@@ -0,0 +1,137 @@
1
+ /* Extra surfaces for agents and small utilities (extends site.css) */
2
+
3
+ .install-callout{
4
+ max-width: calc(720px + 2 * var(--pad-x));
5
+ margin: -12px auto 40px;
6
+ padding: 0 var(--pad-x);
7
+ }
8
+
9
+ .install-callout-inner{
10
+ background: var(--surface-dim, #f4f6f8);
11
+ border: 1px solid var(--border, #d8dee6);
12
+ border-left: 4px solid var(--accent, #16324f);
13
+ border-radius: var(--radius, 6px);
14
+ padding: 18px 20px 16px;
15
+ }
16
+
17
+ .install-kicker{
18
+ font-family: var(--font-mono);
19
+ font-size: 11px;
20
+ letter-spacing: 0.08em;
21
+ text-transform: uppercase;
22
+ color: var(--ink-faint, #6b7785);
23
+ margin-bottom: 6px;
24
+ }
25
+
26
+ .install-title{
27
+ font-size: 1.05rem;
28
+ font-weight: 600;
29
+ margin: 0 0 6px;
30
+ color: var(--ink, #15202b);
31
+ }
32
+
33
+ .install-lead{
34
+ margin: 0 0 12px;
35
+ font-size: 14px;
36
+ color: var(--ink-muted, #3d4a57);
37
+ line-height: 1.45;
38
+ }
39
+
40
+ .install-cmd{
41
+ background: #0f1720;
42
+ color: #e8eef5;
43
+ border: 0;
44
+ padding: 12px 14px;
45
+ overflow-x: auto;
46
+ font-size: 13px;
47
+ border-radius: var(--radius, 6px);
48
+ font-family: var(--font-mono);
49
+ margin: 0 0 10px;
50
+ }
51
+
52
+ .install-cmd-primary{
53
+ margin-bottom: 10px;
54
+ }
55
+
56
+ .install-cmd-label{
57
+ font-family: var(--font-mono);
58
+ font-size: 11px;
59
+ letter-spacing: 0.06em;
60
+ text-transform: uppercase;
61
+ color: var(--ink-faint, #6b7785);
62
+ margin: 12px 0 6px;
63
+ }
64
+
65
+ .install-more{
66
+ margin: 4px 0 0;
67
+ font-size: 13px;
68
+ color: var(--ink-muted, #3d4a57);
69
+ }
70
+
71
+ .install-more a{
72
+ color: var(--accent, #16324f);
73
+ text-decoration: none;
74
+ font-weight: 500;
75
+ }
76
+
77
+ .install-more a:hover{
78
+ text-decoration: underline;
79
+ }
80
+
81
+ .agents-panel{
82
+ max-width: 720px;
83
+ margin: 0 auto 80px;
84
+ padding: 0 var(--pad-x);
85
+ }
86
+
87
+ .agents-panel pre,
88
+ .agents-panel .install-cmd{
89
+ background: #0f1720;
90
+ color: #e8eef5;
91
+ border: 0;
92
+ padding: 14px 16px;
93
+ overflow-x: auto;
94
+ font-size: 13px;
95
+ border-radius: var(--radius);
96
+ font-family: var(--font-mono);
97
+ }
98
+
99
+ .filter-bar{
100
+ max-width: calc(1040px + 2 * var(--pad-x));
101
+ margin: 0 auto;
102
+ padding: 8px var(--pad-x) 0;
103
+ display: flex;
104
+ flex-wrap: wrap;
105
+ gap: 8px;
106
+ align-items: center;
107
+ }
108
+
109
+ .filter-bar label{
110
+ font-size: 12px;
111
+ color: var(--ink-faint);
112
+ font-family: var(--font-mono);
113
+ letter-spacing: 0.06em;
114
+ text-transform: uppercase;
115
+ }
116
+
117
+ .filter-bar select, .filter-bar input{
118
+ font-size: 13px;
119
+ padding: 6px 10px;
120
+ border: 1px solid var(--border);
121
+ border-radius: 4px;
122
+ background: #fff;
123
+ color: var(--ink);
124
+ font-family: var(--font-sans);
125
+ }
126
+
127
+ .btn-sm{ padding: 7px 12px; font-size: 12px; }
128
+
129
+ .empty-state{
130
+ max-width: 640px;
131
+ margin: 60px auto;
132
+ text-align: center;
133
+ padding: 0 24px;
134
+ }
135
+
136
+ .empty-state h2{ color: var(--ink); }
137
+ .empty-state p{ color: var(--ink-muted); }