@smart-tools/t3-code-pixso-mcp-assistant 1.0.1
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/dist/PixsoAssistantService-BWdD4LmW.d.mts +170 -0
- package/dist/PixsoAssistantService-DE6ZFSfz.mjs +113 -0
- package/dist/chunk-CbfVNrr-.mjs +1 -0
- package/dist/constants-C3TxS7N-.mjs +1 -0
- package/dist/contracts/index.d.mts +952 -0
- package/dist/contracts/index.mjs +1 -0
- package/dist/errors-CzFjWbus.d.mts +10 -0
- package/dist/localization-C6n18NsP.d.mts +3 -0
- package/dist/panel-DWzV5ian.mjs +1 -0
- package/dist/renderPreview-BNqmGtPz.mjs +1 -0
- package/dist/scan-CjlRisOD.d.mts +906 -0
- package/dist/server/index.d.mts +3 -0
- package/dist/server/index.mjs +1 -0
- package/dist/server/testing.d.mts +2 -0
- package/dist/server/testing.mjs +1 -0
- package/dist/synthetic/index.d.mts +31 -0
- package/dist/synthetic/index.mjs +1 -0
- package/dist/web/index.d.mts +66 -0
- package/dist/web/index.mjs +10 -0
- package/package.json +50 -0
- package/src/styles.css +13 -0
package/src/styles.css
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @smart-tools/t3-code-pixso-mcp-assistant — style entry.
|
|
3
|
+
*
|
|
4
|
+
* Holds the Pixso assistant panel components, so it self-declares their `@source` and
|
|
5
|
+
* inherits the ui-kit token contract. The app imports only this file. Every path is
|
|
6
|
+
* resolved relative to this file, so the app needs no node_modules paths.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* Inherit ui-kit: design tokens + its self-declared component sources. */
|
|
10
|
+
@import "@smart-tools/qwen-cli-ui-kit/styles.css";
|
|
11
|
+
|
|
12
|
+
/* Self-declared source: the compiled panel components, relative to this file. */
|
|
13
|
+
@source "../dist/web";
|