@pluno/product-agent-web 0.1.40 → 0.1.41
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/boltIcon.d.ts +16 -0
- package/dist/product-agent-widget.js +984 -862
- package/package.json +1 -1
package/dist/boltIcon.d.ts
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
|
+
export type BoltPalette = {
|
|
2
|
+
top: string;
|
|
3
|
+
middle: string;
|
|
4
|
+
bottom: string;
|
|
5
|
+
edgeStart: string;
|
|
6
|
+
edgeMiddle: string;
|
|
7
|
+
edgeEnd: string;
|
|
8
|
+
glow: string;
|
|
9
|
+
highlight: string;
|
|
10
|
+
inner: string;
|
|
11
|
+
shadow: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const PRODUCT_AGENT_BOLT_OUTLINE = "M547 151 C516 151 493 169 485 199 L382 606 C373 641 396 666 431 666 L523 666 C552 666 568 684 563 713 L491 1028 C486 1054 510 1067 527 1044 L894 487 C915 455 894 432 856 432 L815 432 C784 432 773 411 789 382 L904 205 C922 171 901 145 859 145 Z";
|
|
1
14
|
export declare function createProductAgentCharacterSvg(primaryColor: string): string;
|
|
2
15
|
export declare function createProductAgentCharacterDataUri(primaryColor: string): string;
|
|
16
|
+
export declare const SCRIBBLE_INK = "#2c2a1e";
|
|
3
17
|
export declare function getScribbleVisibleAccentColor(primaryColor: string): string;
|
|
4
18
|
export declare function createScribbleProductAgentCharacterSvg(primaryColor: string): string;
|
|
5
19
|
export declare function createScribbleProductAgentCharacterDataUri(primaryColor: string): string;
|
|
20
|
+
export declare function buildCrayonZigzagPath(): string;
|
|
21
|
+
export declare function makeBoltPalette(primaryColor: string): BoltPalette;
|