@qirtaas/vue 0.1.0 → 0.2.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.
- package/README.md +8 -0
- package/dist/index.d.ts +1 -1
- package/dist/qirtaas-vue.js +2724 -2681
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -42,6 +42,14 @@ const getToken = () => fetchEmbedJwt(); // required: called on init, before expi
|
|
|
42
42
|
A read-only `QirtaasRenderer` is also exported, along with `createQirtaasClient`
|
|
43
43
|
for imperative, mount-less operations (e.g. `deleteDocument` from a list view).
|
|
44
44
|
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
Full docs at [docs.qirtaas.io](https://docs.qirtaas.io). For AI coding
|
|
48
|
+
assistants: the complete docs as one markdown file at
|
|
49
|
+
[docs.qirtaas.io/llms-full.txt](https://docs.qirtaas.io/llms-full.txt), and
|
|
50
|
+
ready-made integration prompts at
|
|
51
|
+
[docs.qirtaas.io/ai/build-with-ai](https://docs.qirtaas.io/ai/build-with-ai).
|
|
52
|
+
|
|
45
53
|
## License
|
|
46
54
|
|
|
47
55
|
MIT
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { default as QirtaasEditor } from './QirtaasEditor.vue';
|
|
2
2
|
export { default as QirtaasRenderer } from './QirtaasRenderer.vue';
|
|
3
3
|
export { createQirtaasClient } from '@qirtaas/core';
|
|
4
|
-
export type { QirtaasClient, QirtaasClientOptions, DuplicateDocumentResult, } from '@qirtaas/core';
|
|
4
|
+
export type { QirtaasClient, QirtaasClientOptions, DuplicateDocumentResult, DocumentSummary, ShareInfo, } from '@qirtaas/core';
|
|
5
5
|
export type { EditorMountOptions, RendererMountOptions, Json, Locale, Theme, SaveState, ErrorCode, AutosaveOptions, } from '@qirtaas/core';
|