@uniformdev/mesh-sdk-react 19.14.1-alpha.12 → 19.14.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/index.esm.js CHANGED
@@ -159,6 +159,245 @@ var require_p_limit = __commonJS({
159
159
  }
160
160
  });
161
161
 
162
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js
163
+ var require_symbols = __commonJS({
164
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js"(exports, module) {
165
+ "use strict";
166
+ init_emotion_jsx_shim();
167
+ var isHyper = typeof process !== "undefined" && process.env.TERM_PROGRAM === "Hyper";
168
+ var isWindows = typeof process !== "undefined" && process.platform === "win32";
169
+ var isLinux = typeof process !== "undefined" && process.platform === "linux";
170
+ var common = {
171
+ ballotDisabled: "\u2612",
172
+ ballotOff: "\u2610",
173
+ ballotOn: "\u2611",
174
+ bullet: "\u2022",
175
+ bulletWhite: "\u25E6",
176
+ fullBlock: "\u2588",
177
+ heart: "\u2764",
178
+ identicalTo: "\u2261",
179
+ line: "\u2500",
180
+ mark: "\u203B",
181
+ middot: "\xB7",
182
+ minus: "\uFF0D",
183
+ multiplication: "\xD7",
184
+ obelus: "\xF7",
185
+ pencilDownRight: "\u270E",
186
+ pencilRight: "\u270F",
187
+ pencilUpRight: "\u2710",
188
+ percent: "%",
189
+ pilcrow2: "\u2761",
190
+ pilcrow: "\xB6",
191
+ plusMinus: "\xB1",
192
+ question: "?",
193
+ section: "\xA7",
194
+ starsOff: "\u2606",
195
+ starsOn: "\u2605",
196
+ upDownArrow: "\u2195"
197
+ };
198
+ var windows = Object.assign({}, common, {
199
+ check: "\u221A",
200
+ cross: "\xD7",
201
+ ellipsisLarge: "...",
202
+ ellipsis: "...",
203
+ info: "i",
204
+ questionSmall: "?",
205
+ pointer: ">",
206
+ pointerSmall: "\xBB",
207
+ radioOff: "( )",
208
+ radioOn: "(*)",
209
+ warning: "\u203C"
210
+ });
211
+ var other = Object.assign({}, common, {
212
+ ballotCross: "\u2718",
213
+ check: "\u2714",
214
+ cross: "\u2716",
215
+ ellipsisLarge: "\u22EF",
216
+ ellipsis: "\u2026",
217
+ info: "\u2139",
218
+ questionFull: "\uFF1F",
219
+ questionSmall: "\uFE56",
220
+ pointer: isLinux ? "\u25B8" : "\u276F",
221
+ pointerSmall: isLinux ? "\u2023" : "\u203A",
222
+ radioOff: "\u25EF",
223
+ radioOn: "\u25C9",
224
+ warning: "\u26A0"
225
+ });
226
+ module.exports = isWindows && !isHyper ? windows : other;
227
+ Reflect.defineProperty(module.exports, "common", { enumerable: false, value: common });
228
+ Reflect.defineProperty(module.exports, "windows", { enumerable: false, value: windows });
229
+ Reflect.defineProperty(module.exports, "other", { enumerable: false, value: other });
230
+ }
231
+ });
232
+
233
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js
234
+ var require_ansi_colors = __commonJS({
235
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js"(exports, module) {
236
+ "use strict";
237
+ init_emotion_jsx_shim();
238
+ var isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
239
+ var ANSI_REGEX = /[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g;
240
+ var hasColor = () => {
241
+ if (typeof process !== "undefined") {
242
+ return process.env.FORCE_COLOR !== "0";
243
+ }
244
+ return false;
245
+ };
246
+ var create = () => {
247
+ const colors = {
248
+ enabled: hasColor(),
249
+ visible: true,
250
+ styles: {},
251
+ keys: {}
252
+ };
253
+ const ansi = (style2) => {
254
+ let open = style2.open = `\x1B[${style2.codes[0]}m`;
255
+ let close = style2.close = `\x1B[${style2.codes[1]}m`;
256
+ let regex = style2.regex = new RegExp(`\\u001b\\[${style2.codes[1]}m`, "g");
257
+ style2.wrap = (input, newline) => {
258
+ if (input.includes(close))
259
+ input = input.replace(regex, close + open);
260
+ let output = open + input + close;
261
+ return newline ? output.replace(/\r*\n/g, `${close}$&${open}`) : output;
262
+ };
263
+ return style2;
264
+ };
265
+ const wrap = (style2, input, newline) => {
266
+ return typeof style2 === "function" ? style2(input) : style2.wrap(input, newline);
267
+ };
268
+ const style = (input, stack) => {
269
+ if (input === "" || input == null)
270
+ return "";
271
+ if (colors.enabled === false)
272
+ return input;
273
+ if (colors.visible === false)
274
+ return "";
275
+ let str = "" + input;
276
+ let nl = str.includes("\n");
277
+ let n2 = stack.length;
278
+ if (n2 > 0 && stack.includes("unstyle")) {
279
+ stack = [.../* @__PURE__ */ new Set(["unstyle", ...stack])].reverse();
280
+ }
281
+ while (n2-- > 0)
282
+ str = wrap(colors.styles[stack[n2]], str, nl);
283
+ return str;
284
+ };
285
+ const define = (name, codes, type) => {
286
+ colors.styles[name] = ansi({ name, codes });
287
+ let keys = colors.keys[type] || (colors.keys[type] = []);
288
+ keys.push(name);
289
+ Reflect.defineProperty(colors, name, {
290
+ configurable: true,
291
+ enumerable: true,
292
+ set(value) {
293
+ colors.alias(name, value);
294
+ },
295
+ get() {
296
+ let color = (input) => style(input, color.stack);
297
+ Reflect.setPrototypeOf(color, colors);
298
+ color.stack = this.stack ? this.stack.concat(name) : [name];
299
+ return color;
300
+ }
301
+ });
302
+ };
303
+ define("reset", [0, 0], "modifier");
304
+ define("bold", [1, 22], "modifier");
305
+ define("dim", [2, 22], "modifier");
306
+ define("italic", [3, 23], "modifier");
307
+ define("underline", [4, 24], "modifier");
308
+ define("inverse", [7, 27], "modifier");
309
+ define("hidden", [8, 28], "modifier");
310
+ define("strikethrough", [9, 29], "modifier");
311
+ define("black", [30, 39], "color");
312
+ define("red", [31, 39], "color");
313
+ define("green", [32, 39], "color");
314
+ define("yellow", [33, 39], "color");
315
+ define("blue", [34, 39], "color");
316
+ define("magenta", [35, 39], "color");
317
+ define("cyan", [36, 39], "color");
318
+ define("white", [37, 39], "color");
319
+ define("gray", [90, 39], "color");
320
+ define("grey", [90, 39], "color");
321
+ define("bgBlack", [40, 49], "bg");
322
+ define("bgRed", [41, 49], "bg");
323
+ define("bgGreen", [42, 49], "bg");
324
+ define("bgYellow", [43, 49], "bg");
325
+ define("bgBlue", [44, 49], "bg");
326
+ define("bgMagenta", [45, 49], "bg");
327
+ define("bgCyan", [46, 49], "bg");
328
+ define("bgWhite", [47, 49], "bg");
329
+ define("blackBright", [90, 39], "bright");
330
+ define("redBright", [91, 39], "bright");
331
+ define("greenBright", [92, 39], "bright");
332
+ define("yellowBright", [93, 39], "bright");
333
+ define("blueBright", [94, 39], "bright");
334
+ define("magentaBright", [95, 39], "bright");
335
+ define("cyanBright", [96, 39], "bright");
336
+ define("whiteBright", [97, 39], "bright");
337
+ define("bgBlackBright", [100, 49], "bgBright");
338
+ define("bgRedBright", [101, 49], "bgBright");
339
+ define("bgGreenBright", [102, 49], "bgBright");
340
+ define("bgYellowBright", [103, 49], "bgBright");
341
+ define("bgBlueBright", [104, 49], "bgBright");
342
+ define("bgMagentaBright", [105, 49], "bgBright");
343
+ define("bgCyanBright", [106, 49], "bgBright");
344
+ define("bgWhiteBright", [107, 49], "bgBright");
345
+ colors.ansiRegex = ANSI_REGEX;
346
+ colors.hasColor = colors.hasAnsi = (str) => {
347
+ colors.ansiRegex.lastIndex = 0;
348
+ return typeof str === "string" && str !== "" && colors.ansiRegex.test(str);
349
+ };
350
+ colors.alias = (name, color) => {
351
+ let fn2 = typeof color === "string" ? colors[color] : color;
352
+ if (typeof fn2 !== "function") {
353
+ throw new TypeError("Expected alias to be the name of an existing color (string) or a function");
354
+ }
355
+ if (!fn2.stack) {
356
+ Reflect.defineProperty(fn2, "name", { value: name });
357
+ colors.styles[name] = fn2;
358
+ fn2.stack = [name];
359
+ }
360
+ Reflect.defineProperty(colors, name, {
361
+ configurable: true,
362
+ enumerable: true,
363
+ set(value) {
364
+ colors.alias(name, value);
365
+ },
366
+ get() {
367
+ let color2 = (input) => style(input, color2.stack);
368
+ Reflect.setPrototypeOf(color2, colors);
369
+ color2.stack = this.stack ? this.stack.concat(fn2.stack) : fn2.stack;
370
+ return color2;
371
+ }
372
+ });
373
+ };
374
+ colors.theme = (custom) => {
375
+ if (!isObject(custom))
376
+ throw new TypeError("Expected theme to be an object");
377
+ for (let name of Object.keys(custom)) {
378
+ colors.alias(name, custom[name]);
379
+ }
380
+ return colors;
381
+ };
382
+ colors.alias("unstyle", (str) => {
383
+ if (typeof str === "string" && str !== "") {
384
+ colors.ansiRegex.lastIndex = 0;
385
+ return str.replace(colors.ansiRegex, "");
386
+ }
387
+ return "";
388
+ });
389
+ colors.alias("noop", (str) => str);
390
+ colors.none = colors.clear = colors.noop;
391
+ colors.stripColor = colors.unstyle;
392
+ colors.symbols = require_symbols();
393
+ colors.define = define;
394
+ return colors;
395
+ };
396
+ module.exports = create();
397
+ module.exports.create = create;
398
+ }
399
+ });
400
+
162
401
  // src/index.ts
163
402
  init_emotion_jsx_shim();
164
403
 
@@ -4953,6 +5192,13 @@ var TestClient = _TestClient;
4953
5192
  _url7 = /* @__PURE__ */ new WeakMap();
4954
5193
  __privateAdd(TestClient, _url7, "/api/v2/test");
4955
5194
 
5195
+ // ../canvas/dist/index.mjs
5196
+ var import_ansi_colors = __toESM(require_ansi_colors(), 1);
5197
+ var import_ansi_colors2 = __toESM(require_ansi_colors(), 1);
5198
+ var import_ansi_colors3 = __toESM(require_ansi_colors(), 1);
5199
+ var import_ansi_colors4 = __toESM(require_ansi_colors(), 1);
5200
+ var import_ansi_colors5 = __toESM(require_ansi_colors(), 1);
5201
+
4956
5202
  // ../../node_modules/.pnpm/immer@9.0.21/node_modules/immer/dist/immer.esm.mjs
4957
5203
  init_emotion_jsx_shim();
4958
5204
  function n(n2) {
@@ -5633,6 +5879,11 @@ var DataTypeClient = _DataTypeClient;
5633
5879
  _url8 = /* @__PURE__ */ new WeakMap();
5634
5880
  __privateAdd2(DataTypeClient, _url8, "/api/v1/data-types");
5635
5881
  var EDGE_MAX_L2_CACHE_TTL_IN_HOURS = 4 * 7 * 24;
5882
+ var { gray, green, italic, red, white, yellow } = import_ansi_colors.default;
5883
+ var { white: white2 } = import_ansi_colors2.default;
5884
+ var { gray: gray2, green: green2, red: red2, yellow: yellow2 } = import_ansi_colors3.default;
5885
+ var { yellow: yellow3 } = import_ansi_colors4.default;
5886
+ var { green: green3 } = import_ansi_colors5.default;
5636
5887
  function bindVariables({
5637
5888
  variables,
5638
5889
  value,
package/dist/index.js CHANGED
@@ -163,6 +163,245 @@ var require_p_limit = __commonJS({
163
163
  }
164
164
  });
165
165
 
166
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js
167
+ var require_symbols = __commonJS({
168
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js"(exports, module2) {
169
+ "use strict";
170
+ init_emotion_jsx_shim();
171
+ var isHyper = typeof process !== "undefined" && process.env.TERM_PROGRAM === "Hyper";
172
+ var isWindows = typeof process !== "undefined" && process.platform === "win32";
173
+ var isLinux = typeof process !== "undefined" && process.platform === "linux";
174
+ var common = {
175
+ ballotDisabled: "\u2612",
176
+ ballotOff: "\u2610",
177
+ ballotOn: "\u2611",
178
+ bullet: "\u2022",
179
+ bulletWhite: "\u25E6",
180
+ fullBlock: "\u2588",
181
+ heart: "\u2764",
182
+ identicalTo: "\u2261",
183
+ line: "\u2500",
184
+ mark: "\u203B",
185
+ middot: "\xB7",
186
+ minus: "\uFF0D",
187
+ multiplication: "\xD7",
188
+ obelus: "\xF7",
189
+ pencilDownRight: "\u270E",
190
+ pencilRight: "\u270F",
191
+ pencilUpRight: "\u2710",
192
+ percent: "%",
193
+ pilcrow2: "\u2761",
194
+ pilcrow: "\xB6",
195
+ plusMinus: "\xB1",
196
+ question: "?",
197
+ section: "\xA7",
198
+ starsOff: "\u2606",
199
+ starsOn: "\u2605",
200
+ upDownArrow: "\u2195"
201
+ };
202
+ var windows = Object.assign({}, common, {
203
+ check: "\u221A",
204
+ cross: "\xD7",
205
+ ellipsisLarge: "...",
206
+ ellipsis: "...",
207
+ info: "i",
208
+ questionSmall: "?",
209
+ pointer: ">",
210
+ pointerSmall: "\xBB",
211
+ radioOff: "( )",
212
+ radioOn: "(*)",
213
+ warning: "\u203C"
214
+ });
215
+ var other = Object.assign({}, common, {
216
+ ballotCross: "\u2718",
217
+ check: "\u2714",
218
+ cross: "\u2716",
219
+ ellipsisLarge: "\u22EF",
220
+ ellipsis: "\u2026",
221
+ info: "\u2139",
222
+ questionFull: "\uFF1F",
223
+ questionSmall: "\uFE56",
224
+ pointer: isLinux ? "\u25B8" : "\u276F",
225
+ pointerSmall: isLinux ? "\u2023" : "\u203A",
226
+ radioOff: "\u25EF",
227
+ radioOn: "\u25C9",
228
+ warning: "\u26A0"
229
+ });
230
+ module2.exports = isWindows && !isHyper ? windows : other;
231
+ Reflect.defineProperty(module2.exports, "common", { enumerable: false, value: common });
232
+ Reflect.defineProperty(module2.exports, "windows", { enumerable: false, value: windows });
233
+ Reflect.defineProperty(module2.exports, "other", { enumerable: false, value: other });
234
+ }
235
+ });
236
+
237
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js
238
+ var require_ansi_colors = __commonJS({
239
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js"(exports, module2) {
240
+ "use strict";
241
+ init_emotion_jsx_shim();
242
+ var isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
243
+ var ANSI_REGEX = /[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g;
244
+ var hasColor = () => {
245
+ if (typeof process !== "undefined") {
246
+ return process.env.FORCE_COLOR !== "0";
247
+ }
248
+ return false;
249
+ };
250
+ var create = () => {
251
+ const colors = {
252
+ enabled: hasColor(),
253
+ visible: true,
254
+ styles: {},
255
+ keys: {}
256
+ };
257
+ const ansi = (style2) => {
258
+ let open = style2.open = `\x1B[${style2.codes[0]}m`;
259
+ let close = style2.close = `\x1B[${style2.codes[1]}m`;
260
+ let regex = style2.regex = new RegExp(`\\u001b\\[${style2.codes[1]}m`, "g");
261
+ style2.wrap = (input, newline) => {
262
+ if (input.includes(close))
263
+ input = input.replace(regex, close + open);
264
+ let output = open + input + close;
265
+ return newline ? output.replace(/\r*\n/g, `${close}$&${open}`) : output;
266
+ };
267
+ return style2;
268
+ };
269
+ const wrap = (style2, input, newline) => {
270
+ return typeof style2 === "function" ? style2(input) : style2.wrap(input, newline);
271
+ };
272
+ const style = (input, stack) => {
273
+ if (input === "" || input == null)
274
+ return "";
275
+ if (colors.enabled === false)
276
+ return input;
277
+ if (colors.visible === false)
278
+ return "";
279
+ let str = "" + input;
280
+ let nl = str.includes("\n");
281
+ let n2 = stack.length;
282
+ if (n2 > 0 && stack.includes("unstyle")) {
283
+ stack = [.../* @__PURE__ */ new Set(["unstyle", ...stack])].reverse();
284
+ }
285
+ while (n2-- > 0)
286
+ str = wrap(colors.styles[stack[n2]], str, nl);
287
+ return str;
288
+ };
289
+ const define = (name, codes, type) => {
290
+ colors.styles[name] = ansi({ name, codes });
291
+ let keys = colors.keys[type] || (colors.keys[type] = []);
292
+ keys.push(name);
293
+ Reflect.defineProperty(colors, name, {
294
+ configurable: true,
295
+ enumerable: true,
296
+ set(value) {
297
+ colors.alias(name, value);
298
+ },
299
+ get() {
300
+ let color = (input) => style(input, color.stack);
301
+ Reflect.setPrototypeOf(color, colors);
302
+ color.stack = this.stack ? this.stack.concat(name) : [name];
303
+ return color;
304
+ }
305
+ });
306
+ };
307
+ define("reset", [0, 0], "modifier");
308
+ define("bold", [1, 22], "modifier");
309
+ define("dim", [2, 22], "modifier");
310
+ define("italic", [3, 23], "modifier");
311
+ define("underline", [4, 24], "modifier");
312
+ define("inverse", [7, 27], "modifier");
313
+ define("hidden", [8, 28], "modifier");
314
+ define("strikethrough", [9, 29], "modifier");
315
+ define("black", [30, 39], "color");
316
+ define("red", [31, 39], "color");
317
+ define("green", [32, 39], "color");
318
+ define("yellow", [33, 39], "color");
319
+ define("blue", [34, 39], "color");
320
+ define("magenta", [35, 39], "color");
321
+ define("cyan", [36, 39], "color");
322
+ define("white", [37, 39], "color");
323
+ define("gray", [90, 39], "color");
324
+ define("grey", [90, 39], "color");
325
+ define("bgBlack", [40, 49], "bg");
326
+ define("bgRed", [41, 49], "bg");
327
+ define("bgGreen", [42, 49], "bg");
328
+ define("bgYellow", [43, 49], "bg");
329
+ define("bgBlue", [44, 49], "bg");
330
+ define("bgMagenta", [45, 49], "bg");
331
+ define("bgCyan", [46, 49], "bg");
332
+ define("bgWhite", [47, 49], "bg");
333
+ define("blackBright", [90, 39], "bright");
334
+ define("redBright", [91, 39], "bright");
335
+ define("greenBright", [92, 39], "bright");
336
+ define("yellowBright", [93, 39], "bright");
337
+ define("blueBright", [94, 39], "bright");
338
+ define("magentaBright", [95, 39], "bright");
339
+ define("cyanBright", [96, 39], "bright");
340
+ define("whiteBright", [97, 39], "bright");
341
+ define("bgBlackBright", [100, 49], "bgBright");
342
+ define("bgRedBright", [101, 49], "bgBright");
343
+ define("bgGreenBright", [102, 49], "bgBright");
344
+ define("bgYellowBright", [103, 49], "bgBright");
345
+ define("bgBlueBright", [104, 49], "bgBright");
346
+ define("bgMagentaBright", [105, 49], "bgBright");
347
+ define("bgCyanBright", [106, 49], "bgBright");
348
+ define("bgWhiteBright", [107, 49], "bgBright");
349
+ colors.ansiRegex = ANSI_REGEX;
350
+ colors.hasColor = colors.hasAnsi = (str) => {
351
+ colors.ansiRegex.lastIndex = 0;
352
+ return typeof str === "string" && str !== "" && colors.ansiRegex.test(str);
353
+ };
354
+ colors.alias = (name, color) => {
355
+ let fn2 = typeof color === "string" ? colors[color] : color;
356
+ if (typeof fn2 !== "function") {
357
+ throw new TypeError("Expected alias to be the name of an existing color (string) or a function");
358
+ }
359
+ if (!fn2.stack) {
360
+ Reflect.defineProperty(fn2, "name", { value: name });
361
+ colors.styles[name] = fn2;
362
+ fn2.stack = [name];
363
+ }
364
+ Reflect.defineProperty(colors, name, {
365
+ configurable: true,
366
+ enumerable: true,
367
+ set(value) {
368
+ colors.alias(name, value);
369
+ },
370
+ get() {
371
+ let color2 = (input) => style(input, color2.stack);
372
+ Reflect.setPrototypeOf(color2, colors);
373
+ color2.stack = this.stack ? this.stack.concat(fn2.stack) : fn2.stack;
374
+ return color2;
375
+ }
376
+ });
377
+ };
378
+ colors.theme = (custom) => {
379
+ if (!isObject(custom))
380
+ throw new TypeError("Expected theme to be an object");
381
+ for (let name of Object.keys(custom)) {
382
+ colors.alias(name, custom[name]);
383
+ }
384
+ return colors;
385
+ };
386
+ colors.alias("unstyle", (str) => {
387
+ if (typeof str === "string" && str !== "") {
388
+ colors.ansiRegex.lastIndex = 0;
389
+ return str.replace(colors.ansiRegex, "");
390
+ }
391
+ return "";
392
+ });
393
+ colors.alias("noop", (str) => str);
394
+ colors.none = colors.clear = colors.noop;
395
+ colors.stripColor = colors.unstyle;
396
+ colors.symbols = require_symbols();
397
+ colors.define = define;
398
+ return colors;
399
+ };
400
+ module2.exports = create();
401
+ module2.exports.create = create;
402
+ }
403
+ });
404
+
166
405
  // src/index.ts
167
406
  var src_exports = {};
168
407
  __export(src_exports, {
@@ -5081,6 +5320,13 @@ var TestClient = _TestClient;
5081
5320
  _url7 = /* @__PURE__ */ new WeakMap();
5082
5321
  __privateAdd(TestClient, _url7, "/api/v2/test");
5083
5322
 
5323
+ // ../canvas/dist/index.mjs
5324
+ var import_ansi_colors = __toESM(require_ansi_colors(), 1);
5325
+ var import_ansi_colors2 = __toESM(require_ansi_colors(), 1);
5326
+ var import_ansi_colors3 = __toESM(require_ansi_colors(), 1);
5327
+ var import_ansi_colors4 = __toESM(require_ansi_colors(), 1);
5328
+ var import_ansi_colors5 = __toESM(require_ansi_colors(), 1);
5329
+
5084
5330
  // ../../node_modules/.pnpm/immer@9.0.21/node_modules/immer/dist/immer.esm.mjs
5085
5331
  init_emotion_jsx_shim();
5086
5332
  function n(n2) {
@@ -5761,6 +6007,11 @@ var DataTypeClient = _DataTypeClient;
5761
6007
  _url8 = /* @__PURE__ */ new WeakMap();
5762
6008
  __privateAdd2(DataTypeClient, _url8, "/api/v1/data-types");
5763
6009
  var EDGE_MAX_L2_CACHE_TTL_IN_HOURS = 4 * 7 * 24;
6010
+ var { gray, green, italic, red, white, yellow } = import_ansi_colors.default;
6011
+ var { white: white2 } = import_ansi_colors2.default;
6012
+ var { gray: gray2, green: green2, red: red2, yellow: yellow2 } = import_ansi_colors3.default;
6013
+ var { yellow: yellow3 } = import_ansi_colors4.default;
6014
+ var { green: green3 } = import_ansi_colors5.default;
5764
6015
  function bindVariables({
5765
6016
  variables,
5766
6017
  value,
package/dist/index.mjs CHANGED
@@ -159,6 +159,245 @@ var require_p_limit = __commonJS({
159
159
  }
160
160
  });
161
161
 
162
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js
163
+ var require_symbols = __commonJS({
164
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/symbols.js"(exports, module) {
165
+ "use strict";
166
+ init_emotion_jsx_shim();
167
+ var isHyper = typeof process !== "undefined" && process.env.TERM_PROGRAM === "Hyper";
168
+ var isWindows = typeof process !== "undefined" && process.platform === "win32";
169
+ var isLinux = typeof process !== "undefined" && process.platform === "linux";
170
+ var common = {
171
+ ballotDisabled: "\u2612",
172
+ ballotOff: "\u2610",
173
+ ballotOn: "\u2611",
174
+ bullet: "\u2022",
175
+ bulletWhite: "\u25E6",
176
+ fullBlock: "\u2588",
177
+ heart: "\u2764",
178
+ identicalTo: "\u2261",
179
+ line: "\u2500",
180
+ mark: "\u203B",
181
+ middot: "\xB7",
182
+ minus: "\uFF0D",
183
+ multiplication: "\xD7",
184
+ obelus: "\xF7",
185
+ pencilDownRight: "\u270E",
186
+ pencilRight: "\u270F",
187
+ pencilUpRight: "\u2710",
188
+ percent: "%",
189
+ pilcrow2: "\u2761",
190
+ pilcrow: "\xB6",
191
+ plusMinus: "\xB1",
192
+ question: "?",
193
+ section: "\xA7",
194
+ starsOff: "\u2606",
195
+ starsOn: "\u2605",
196
+ upDownArrow: "\u2195"
197
+ };
198
+ var windows = Object.assign({}, common, {
199
+ check: "\u221A",
200
+ cross: "\xD7",
201
+ ellipsisLarge: "...",
202
+ ellipsis: "...",
203
+ info: "i",
204
+ questionSmall: "?",
205
+ pointer: ">",
206
+ pointerSmall: "\xBB",
207
+ radioOff: "( )",
208
+ radioOn: "(*)",
209
+ warning: "\u203C"
210
+ });
211
+ var other = Object.assign({}, common, {
212
+ ballotCross: "\u2718",
213
+ check: "\u2714",
214
+ cross: "\u2716",
215
+ ellipsisLarge: "\u22EF",
216
+ ellipsis: "\u2026",
217
+ info: "\u2139",
218
+ questionFull: "\uFF1F",
219
+ questionSmall: "\uFE56",
220
+ pointer: isLinux ? "\u25B8" : "\u276F",
221
+ pointerSmall: isLinux ? "\u2023" : "\u203A",
222
+ radioOff: "\u25EF",
223
+ radioOn: "\u25C9",
224
+ warning: "\u26A0"
225
+ });
226
+ module.exports = isWindows && !isHyper ? windows : other;
227
+ Reflect.defineProperty(module.exports, "common", { enumerable: false, value: common });
228
+ Reflect.defineProperty(module.exports, "windows", { enumerable: false, value: windows });
229
+ Reflect.defineProperty(module.exports, "other", { enumerable: false, value: other });
230
+ }
231
+ });
232
+
233
+ // ../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js
234
+ var require_ansi_colors = __commonJS({
235
+ "../../node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors/index.js"(exports, module) {
236
+ "use strict";
237
+ init_emotion_jsx_shim();
238
+ var isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
239
+ var ANSI_REGEX = /[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g;
240
+ var hasColor = () => {
241
+ if (typeof process !== "undefined") {
242
+ return process.env.FORCE_COLOR !== "0";
243
+ }
244
+ return false;
245
+ };
246
+ var create = () => {
247
+ const colors = {
248
+ enabled: hasColor(),
249
+ visible: true,
250
+ styles: {},
251
+ keys: {}
252
+ };
253
+ const ansi = (style2) => {
254
+ let open = style2.open = `\x1B[${style2.codes[0]}m`;
255
+ let close = style2.close = `\x1B[${style2.codes[1]}m`;
256
+ let regex = style2.regex = new RegExp(`\\u001b\\[${style2.codes[1]}m`, "g");
257
+ style2.wrap = (input, newline) => {
258
+ if (input.includes(close))
259
+ input = input.replace(regex, close + open);
260
+ let output = open + input + close;
261
+ return newline ? output.replace(/\r*\n/g, `${close}$&${open}`) : output;
262
+ };
263
+ return style2;
264
+ };
265
+ const wrap = (style2, input, newline) => {
266
+ return typeof style2 === "function" ? style2(input) : style2.wrap(input, newline);
267
+ };
268
+ const style = (input, stack) => {
269
+ if (input === "" || input == null)
270
+ return "";
271
+ if (colors.enabled === false)
272
+ return input;
273
+ if (colors.visible === false)
274
+ return "";
275
+ let str = "" + input;
276
+ let nl = str.includes("\n");
277
+ let n2 = stack.length;
278
+ if (n2 > 0 && stack.includes("unstyle")) {
279
+ stack = [.../* @__PURE__ */ new Set(["unstyle", ...stack])].reverse();
280
+ }
281
+ while (n2-- > 0)
282
+ str = wrap(colors.styles[stack[n2]], str, nl);
283
+ return str;
284
+ };
285
+ const define = (name, codes, type) => {
286
+ colors.styles[name] = ansi({ name, codes });
287
+ let keys = colors.keys[type] || (colors.keys[type] = []);
288
+ keys.push(name);
289
+ Reflect.defineProperty(colors, name, {
290
+ configurable: true,
291
+ enumerable: true,
292
+ set(value) {
293
+ colors.alias(name, value);
294
+ },
295
+ get() {
296
+ let color = (input) => style(input, color.stack);
297
+ Reflect.setPrototypeOf(color, colors);
298
+ color.stack = this.stack ? this.stack.concat(name) : [name];
299
+ return color;
300
+ }
301
+ });
302
+ };
303
+ define("reset", [0, 0], "modifier");
304
+ define("bold", [1, 22], "modifier");
305
+ define("dim", [2, 22], "modifier");
306
+ define("italic", [3, 23], "modifier");
307
+ define("underline", [4, 24], "modifier");
308
+ define("inverse", [7, 27], "modifier");
309
+ define("hidden", [8, 28], "modifier");
310
+ define("strikethrough", [9, 29], "modifier");
311
+ define("black", [30, 39], "color");
312
+ define("red", [31, 39], "color");
313
+ define("green", [32, 39], "color");
314
+ define("yellow", [33, 39], "color");
315
+ define("blue", [34, 39], "color");
316
+ define("magenta", [35, 39], "color");
317
+ define("cyan", [36, 39], "color");
318
+ define("white", [37, 39], "color");
319
+ define("gray", [90, 39], "color");
320
+ define("grey", [90, 39], "color");
321
+ define("bgBlack", [40, 49], "bg");
322
+ define("bgRed", [41, 49], "bg");
323
+ define("bgGreen", [42, 49], "bg");
324
+ define("bgYellow", [43, 49], "bg");
325
+ define("bgBlue", [44, 49], "bg");
326
+ define("bgMagenta", [45, 49], "bg");
327
+ define("bgCyan", [46, 49], "bg");
328
+ define("bgWhite", [47, 49], "bg");
329
+ define("blackBright", [90, 39], "bright");
330
+ define("redBright", [91, 39], "bright");
331
+ define("greenBright", [92, 39], "bright");
332
+ define("yellowBright", [93, 39], "bright");
333
+ define("blueBright", [94, 39], "bright");
334
+ define("magentaBright", [95, 39], "bright");
335
+ define("cyanBright", [96, 39], "bright");
336
+ define("whiteBright", [97, 39], "bright");
337
+ define("bgBlackBright", [100, 49], "bgBright");
338
+ define("bgRedBright", [101, 49], "bgBright");
339
+ define("bgGreenBright", [102, 49], "bgBright");
340
+ define("bgYellowBright", [103, 49], "bgBright");
341
+ define("bgBlueBright", [104, 49], "bgBright");
342
+ define("bgMagentaBright", [105, 49], "bgBright");
343
+ define("bgCyanBright", [106, 49], "bgBright");
344
+ define("bgWhiteBright", [107, 49], "bgBright");
345
+ colors.ansiRegex = ANSI_REGEX;
346
+ colors.hasColor = colors.hasAnsi = (str) => {
347
+ colors.ansiRegex.lastIndex = 0;
348
+ return typeof str === "string" && str !== "" && colors.ansiRegex.test(str);
349
+ };
350
+ colors.alias = (name, color) => {
351
+ let fn2 = typeof color === "string" ? colors[color] : color;
352
+ if (typeof fn2 !== "function") {
353
+ throw new TypeError("Expected alias to be the name of an existing color (string) or a function");
354
+ }
355
+ if (!fn2.stack) {
356
+ Reflect.defineProperty(fn2, "name", { value: name });
357
+ colors.styles[name] = fn2;
358
+ fn2.stack = [name];
359
+ }
360
+ Reflect.defineProperty(colors, name, {
361
+ configurable: true,
362
+ enumerable: true,
363
+ set(value) {
364
+ colors.alias(name, value);
365
+ },
366
+ get() {
367
+ let color2 = (input) => style(input, color2.stack);
368
+ Reflect.setPrototypeOf(color2, colors);
369
+ color2.stack = this.stack ? this.stack.concat(fn2.stack) : fn2.stack;
370
+ return color2;
371
+ }
372
+ });
373
+ };
374
+ colors.theme = (custom) => {
375
+ if (!isObject(custom))
376
+ throw new TypeError("Expected theme to be an object");
377
+ for (let name of Object.keys(custom)) {
378
+ colors.alias(name, custom[name]);
379
+ }
380
+ return colors;
381
+ };
382
+ colors.alias("unstyle", (str) => {
383
+ if (typeof str === "string" && str !== "") {
384
+ colors.ansiRegex.lastIndex = 0;
385
+ return str.replace(colors.ansiRegex, "");
386
+ }
387
+ return "";
388
+ });
389
+ colors.alias("noop", (str) => str);
390
+ colors.none = colors.clear = colors.noop;
391
+ colors.stripColor = colors.unstyle;
392
+ colors.symbols = require_symbols();
393
+ colors.define = define;
394
+ return colors;
395
+ };
396
+ module.exports = create();
397
+ module.exports.create = create;
398
+ }
399
+ });
400
+
162
401
  // src/index.ts
163
402
  init_emotion_jsx_shim();
164
403
 
@@ -4953,6 +5192,13 @@ var TestClient = _TestClient;
4953
5192
  _url7 = /* @__PURE__ */ new WeakMap();
4954
5193
  __privateAdd(TestClient, _url7, "/api/v2/test");
4955
5194
 
5195
+ // ../canvas/dist/index.mjs
5196
+ var import_ansi_colors = __toESM(require_ansi_colors(), 1);
5197
+ var import_ansi_colors2 = __toESM(require_ansi_colors(), 1);
5198
+ var import_ansi_colors3 = __toESM(require_ansi_colors(), 1);
5199
+ var import_ansi_colors4 = __toESM(require_ansi_colors(), 1);
5200
+ var import_ansi_colors5 = __toESM(require_ansi_colors(), 1);
5201
+
4956
5202
  // ../../node_modules/.pnpm/immer@9.0.21/node_modules/immer/dist/immer.esm.mjs
4957
5203
  init_emotion_jsx_shim();
4958
5204
  function n(n2) {
@@ -5633,6 +5879,11 @@ var DataTypeClient = _DataTypeClient;
5633
5879
  _url8 = /* @__PURE__ */ new WeakMap();
5634
5880
  __privateAdd2(DataTypeClient, _url8, "/api/v1/data-types");
5635
5881
  var EDGE_MAX_L2_CACHE_TTL_IN_HOURS = 4 * 7 * 24;
5882
+ var { gray, green, italic, red, white, yellow } = import_ansi_colors.default;
5883
+ var { white: white2 } = import_ansi_colors2.default;
5884
+ var { gray: gray2, green: green2, red: red2, yellow: yellow2 } = import_ansi_colors3.default;
5885
+ var { yellow: yellow3 } = import_ansi_colors4.default;
5886
+ var { green: green3 } = import_ansi_colors5.default;
5636
5887
  function bindVariables({
5637
5888
  variables,
5638
5889
  value,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk-react",
3
- "version": "19.14.1-alpha.12+55ed85e4b",
3
+ "version": "19.14.1",
4
4
  "description": "Uniform Mesh Framework SDK for React",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@hookform/resolvers": "^3.0.1",
47
- "@uniformdev/design-system": "19.14.1-alpha.12+55ed85e4b",
48
- "@uniformdev/mesh-sdk": "19.14.1-alpha.12+55ed85e4b",
47
+ "@uniformdev/design-system": "19.14.1",
48
+ "@uniformdev/mesh-sdk": "19.14.1",
49
49
  "mitt": "^3.0.0",
50
50
  "react-beautiful-dnd": "13.1.1",
51
51
  "react-hook-form": "^7.43.9",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "55ed85e4b8eb70027597dca9996d1c87985554d3"
80
+ "gitHead": "edd5e3bb74b148c5b947109a794a3bab42384cb7"
81
81
  }