paperclip-theme 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.
@@ -0,0 +1,3 @@
1
+ export { default as manifest } from "./manifest.js";
2
+ export { default as plugin } from "./worker.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { default as manifest } from "./manifest.js";
2
+ export { default as plugin } from "./worker.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { PaperclipPluginManifestV1 } from "@paperclipai/plugin-sdk";
2
+ declare const manifest: PaperclipPluginManifestV1;
3
+ export default manifest;
4
+ //# sourceMappingURL=manifest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AAQzE,QAAA,MAAM,QAAQ,EAAE,yBA4Bf,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,31 @@
1
+ import { PLUGIN_ID, PLUGIN_VERSION, SLOT_IDS, EXPORT_NAMES, } from "./constants.js";
2
+ const manifest = {
3
+ id: PLUGIN_ID,
4
+ apiVersion: 1,
5
+ version: PLUGIN_VERSION,
6
+ displayName: "Theme Customizer",
7
+ description: "In-app theme editor with live preview, curated presets, and shareable configurations. Override colors, radius, and design tokens without rebuilding.",
8
+ author: "Khaleeq Fisher",
9
+ categories: ["ui"],
10
+ capabilities: [
11
+ "plugin.state.read",
12
+ "plugin.state.write",
13
+ "instance.settings.register",
14
+ ],
15
+ entrypoints: {
16
+ worker: "./dist/worker.js",
17
+ ui: "./dist/ui",
18
+ },
19
+ ui: {
20
+ slots: [
21
+ {
22
+ type: "settingsPage",
23
+ id: SLOT_IDS.settingsPage,
24
+ displayName: "Theme",
25
+ exportName: EXPORT_NAMES.settingsPage,
26
+ },
27
+ ],
28
+ },
29
+ };
30
+ export default manifest;
31
+ //# sourceMappingURL=manifest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest.js","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AACA,OAAO,EACL,SAAS,EACT,cAAc,EACd,QAAQ,EACR,YAAY,GACb,MAAM,gBAAgB,CAAC;AAExB,MAAM,QAAQ,GAA8B;IAC1C,EAAE,EAAE,SAAS;IACb,UAAU,EAAE,CAAC;IACb,OAAO,EAAE,cAAc;IACvB,WAAW,EAAE,kBAAkB;IAC/B,WAAW,EACT,sJAAsJ;IACxJ,MAAM,EAAE,gBAAgB;IACxB,UAAU,EAAE,CAAC,IAAI,CAAC;IAClB,YAAY,EAAE;QACZ,mBAAmB;QACnB,oBAAoB;QACpB,4BAA4B;KAC7B;IACD,WAAW,EAAE;QACX,MAAM,EAAE,kBAAkB;QAC1B,EAAE,EAAE,WAAW;KAChB;IACD,EAAE,EAAE;QACF,KAAK,EAAE;YACL;gBACE,IAAI,EAAE,cAAc;gBACpB,EAAE,EAAE,QAAQ,CAAC,YAAY;gBACzB,WAAW,EAAE,OAAO;gBACpB,UAAU,EAAE,YAAY,CAAC,YAAY;aACtC;SACF;KACF;CACF,CAAC;AAEF,eAAe,QAAQ,CAAC"}