@dxtmisha/figma 0.1.1 → 0.1.2
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 +1 -1
- package/dist/library.js +4 -4
- package/package.json +8 -6
- /package/dist/{classes → src/classes}/FigmaPostAbstract.d.ts +0 -0
- /package/dist/{classes → src/classes}/FigmaPostCode.d.ts +0 -0
- /package/dist/{classes → src/classes}/FigmaUiMessenger.d.ts +0 -0
- /package/dist/{config.d.ts → src/config.d.ts} +0 -0
- /package/dist/{functions → src/functions}/fetchClientStorage.d.ts +0 -0
- /package/dist/{functions → src/functions}/fetchFrameSelection.d.ts +0 -0
- /package/dist/{functions → src/functions}/fetchFrameStyles.d.ts +0 -0
- /package/dist/{functions → src/functions}/fetchFramesSelected.d.ts +0 -0
- /package/dist/{functions → src/functions}/fetchStorage.d.ts +0 -0
- /package/dist/{functions → src/functions}/fetchTopLevelFrames.d.ts +0 -0
- /package/dist/{functions → src/functions}/sendClientStorage.d.ts +0 -0
- /package/dist/{functions → src/functions}/sendFrameSelection.d.ts +0 -0
- /package/dist/{functions → src/functions}/sendFrameStyles.d.ts +0 -0
- /package/dist/{functions → src/functions}/sendFramesSelected.d.ts +0 -0
- /package/dist/{functions → src/functions}/sendStorage.d.ts +0 -0
- /package/dist/{library.d.ts → src/library.d.ts} +0 -0
- /package/dist/{types → src/types}/figmaMessengerTypes.d.ts +0 -0
- /package/dist/{types → src/types}/figmaStylesTypes.d.ts +0 -0
- /package/dist/{types → src/types}/framesTypes.d.ts +0 -0
- /package/dist/{types → src/types}/storageTypes.d.ts +0 -0
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ async function loadFrames() {
|
|
|
58
58
|
|
|
59
59
|
Full API reference and guides:
|
|
60
60
|
|
|
61
|
-
**[📖 https://dxtmisha.github.io/dxt-ui/?path=/docs/dxtmisha-en-figma-about-library--docs](https://dxtmisha.github.io/dxt-ui/?path=/docs/dxtmisha-en-figma-about-library--docs)**
|
|
61
|
+
**[📖 https://dxtmisha.github.io/dxt-ui/?path=/docs/dxtmisha-en-ui-figma-about-the-library--docs](https://dxtmisha.github.io/dxt-ui/?path=/docs/dxtmisha-en-ui-figma-about-the-library--docs)**
|
|
62
62
|
|
|
63
63
|
## License
|
|
64
64
|
|
package/dist/library.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StorageCallback as e, random as t } from "@dxtmisha/functional-basic";
|
|
2
|
-
//#region \0@oxc-project+runtime@0.
|
|
2
|
+
//#region \0@oxc-project+runtime@0.129.0/helpers/typeof.js
|
|
3
3
|
function n(e) {
|
|
4
4
|
"@babel/helpers - typeof";
|
|
5
5
|
return n = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
|
|
@@ -9,7 +9,7 @@ function n(e) {
|
|
|
9
9
|
}, n(e);
|
|
10
10
|
}
|
|
11
11
|
//#endregion
|
|
12
|
-
//#region \0@oxc-project+runtime@0.
|
|
12
|
+
//#region \0@oxc-project+runtime@0.129.0/helpers/toPrimitive.js
|
|
13
13
|
function r(e, t) {
|
|
14
14
|
if (n(e) != "object" || !e) return e;
|
|
15
15
|
var r = e[Symbol.toPrimitive];
|
|
@@ -21,13 +21,13 @@ function r(e, t) {
|
|
|
21
21
|
return (t === "string" ? String : Number)(e);
|
|
22
22
|
}
|
|
23
23
|
//#endregion
|
|
24
|
-
//#region \0@oxc-project+runtime@0.
|
|
24
|
+
//#region \0@oxc-project+runtime@0.129.0/helpers/toPropertyKey.js
|
|
25
25
|
function i(e) {
|
|
26
26
|
var t = r(e, "string");
|
|
27
27
|
return n(t) == "symbol" ? t : t + "";
|
|
28
28
|
}
|
|
29
29
|
//#endregion
|
|
30
|
-
//#region \0@oxc-project+runtime@0.
|
|
30
|
+
//#region \0@oxc-project+runtime@0.129.0/helpers/defineProperty.js
|
|
31
31
|
function a(e, t, n) {
|
|
32
32
|
return (t = i(t)) in e ? Object.defineProperty(e, t, {
|
|
33
33
|
value: n,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/figma",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Core communication middleware for Figma plugins, providing a structured bidirectional messaging bridge between the plugin logic and UI layer.",
|
|
7
7
|
"keywords": [
|
|
@@ -47,15 +47,17 @@
|
|
|
47
47
|
],
|
|
48
48
|
"main": "dist/library.js",
|
|
49
49
|
"module": "dist/library.js",
|
|
50
|
-
"types": "dist/library.d.ts",
|
|
50
|
+
"types": "dist/src/library.d.ts",
|
|
51
51
|
"exports": {
|
|
52
52
|
".": {
|
|
53
53
|
"import": "./dist/library.js",
|
|
54
|
-
"types": "./dist/library.d.ts"
|
|
54
|
+
"types": "./dist/src/library.d.ts"
|
|
55
55
|
},
|
|
56
|
-
"./style.css": "./dist/style.css"
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
"./style.css": "./dist/style.css"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"@dxtmisha/functional-basic": "*",
|
|
60
|
+
"@figma/plugin-typings": "*"
|
|
59
61
|
},
|
|
60
62
|
"dependencies": {},
|
|
61
63
|
"devDependencies": {},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|