@polymarket-developers/clob-client 1.0.7

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.
Files changed (48) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/LICENSE +21 -0
  3. package/README.md +78 -0
  4. package/cache/LICENSE +21 -0
  5. package/cache/README.md +62 -0
  6. package/cache/dist/declarations/src/index.d.ts +2 -0
  7. package/cache/dist/declarations/types/index.d.ts +45 -0
  8. package/cache/dist/emotion-cache.browser.cjs.default.js +1 -0
  9. package/cache/dist/emotion-cache.browser.cjs.js +471 -0
  10. package/cache/dist/emotion-cache.browser.cjs.mjs +2 -0
  11. package/cache/dist/emotion-cache.browser.development.cjs.default.js +1 -0
  12. package/cache/dist/emotion-cache.browser.development.cjs.js +616 -0
  13. package/cache/dist/emotion-cache.browser.development.cjs.mjs +2 -0
  14. package/cache/dist/emotion-cache.browser.development.esm.js +612 -0
  15. package/cache/dist/emotion-cache.browser.esm.js +467 -0
  16. package/cache/dist/emotion-cache.cjs.d.mts +3 -0
  17. package/cache/dist/emotion-cache.cjs.d.ts +3 -0
  18. package/cache/dist/emotion-cache.cjs.default.d.ts +1 -0
  19. package/cache/dist/emotion-cache.cjs.default.js +1 -0
  20. package/cache/dist/emotion-cache.cjs.js +565 -0
  21. package/cache/dist/emotion-cache.cjs.mjs +2 -0
  22. package/cache/dist/emotion-cache.development.cjs.default.js +1 -0
  23. package/cache/dist/emotion-cache.development.cjs.js +714 -0
  24. package/cache/dist/emotion-cache.development.cjs.mjs +2 -0
  25. package/cache/dist/emotion-cache.development.edge-light.cjs.default.js +1 -0
  26. package/cache/dist/emotion-cache.development.edge-light.cjs.js +621 -0
  27. package/cache/dist/emotion-cache.development.edge-light.cjs.mjs +2 -0
  28. package/cache/dist/emotion-cache.development.edge-light.esm.js +612 -0
  29. package/cache/dist/emotion-cache.development.esm.js +705 -0
  30. package/cache/dist/emotion-cache.edge-light.cjs.default.js +1 -0
  31. package/cache/dist/emotion-cache.edge-light.cjs.js +490 -0
  32. package/cache/dist/emotion-cache.edge-light.cjs.mjs +2 -0
  33. package/cache/dist/emotion-cache.edge-light.esm.js +481 -0
  34. package/cache/dist/emotion-cache.esm.js +556 -0
  35. package/cache/package.json +100 -0
  36. package/cache/src/conditions/false.js +1 -0
  37. package/cache/src/conditions/is-browser.js +1 -0
  38. package/cache/src/conditions/true.js +1 -0
  39. package/cache/src/index.d.ts +2 -0
  40. package/cache/src/index.js +257 -0
  41. package/cache/src/prefixer.js +340 -0
  42. package/cache/src/stylis-plugins.js +269 -0
  43. package/cache/src/types.js +26 -0
  44. package/cache/types/index.d.ts +45 -0
  45. package/index.d.ts +63 -0
  46. package/index.js +204 -0
  47. package/package.json +27 -0
  48. package/utils.js +15 -0
@@ -0,0 +1,565 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var sheet = require('@emotion/sheet');
6
+ var stylis = require('stylis');
7
+ var weakMemoize = require('@emotion/weak-memoize');
8
+ var memoize = require('@emotion/memoize');
9
+
10
+ function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
11
+
12
+ var weakMemoize__default = /*#__PURE__*/_interopDefault(weakMemoize);
13
+ var memoize__default = /*#__PURE__*/_interopDefault(memoize);
14
+
15
+ var isBrowser = typeof document !== 'undefined';
16
+
17
+ var identifierWithPointTracking = function identifierWithPointTracking(begin, points, index) {
18
+ var previous = 0;
19
+ var character = 0;
20
+
21
+ while (true) {
22
+ previous = character;
23
+ character = stylis.peek(); // &\f
24
+
25
+ if (previous === 38 && character === 12) {
26
+ points[index] = 1;
27
+ }
28
+
29
+ if (stylis.token(character)) {
30
+ break;
31
+ }
32
+
33
+ stylis.next();
34
+ }
35
+
36
+ return stylis.slice(begin, stylis.position);
37
+ };
38
+
39
+ var toRules = function toRules(parsed, points) {
40
+ // pretend we've started with a comma
41
+ var index = -1;
42
+ var character = 44;
43
+
44
+ do {
45
+ switch (stylis.token(character)) {
46
+ case 0:
47
+ // &\f
48
+ if (character === 38 && stylis.peek() === 12) {
49
+ // this is not 100% correct, we don't account for literal sequences here - like for example quoted strings
50
+ // stylis inserts \f after & to know when & where it should replace this sequence with the context selector
51
+ // and when it should just concatenate the outer and inner selectors
52
+ // it's very unlikely for this sequence to actually appear in a different context, so we just leverage this fact here
53
+ points[index] = 1;
54
+ }
55
+
56
+ parsed[index] += identifierWithPointTracking(stylis.position - 1, points, index);
57
+ break;
58
+
59
+ case 2:
60
+ parsed[index] += stylis.delimit(character);
61
+ break;
62
+
63
+ case 4:
64
+ // comma
65
+ if (character === 44) {
66
+ // colon
67
+ parsed[++index] = stylis.peek() === 58 ? '&\f' : '';
68
+ points[index] = parsed[index].length;
69
+ break;
70
+ }
71
+
72
+ // fallthrough
73
+
74
+ default:
75
+ parsed[index] += stylis.from(character);
76
+ }
77
+ } while (character = stylis.next());
78
+
79
+ return parsed;
80
+ };
81
+
82
+ var getRules = function getRules(value, points) {
83
+ return stylis.dealloc(toRules(stylis.alloc(value), points));
84
+ }; // WeakSet would be more appropriate, but only WeakMap is supported in IE11
85
+
86
+
87
+ var fixedElements = /* #__PURE__ */new WeakMap();
88
+ var compat = function compat(element) {
89
+ if (element.type !== 'rule' || !element.parent || // positive .length indicates that this rule contains pseudo
90
+ // negative .length indicates that this rule has been already prefixed
91
+ element.length < 1) {
92
+ return;
93
+ }
94
+
95
+ var value = element.value,
96
+ parent = element.parent;
97
+ var isImplicitRule = element.column === parent.column && element.line === parent.line;
98
+
99
+ while (parent.type !== 'rule') {
100
+ parent = parent.parent;
101
+ if (!parent) return;
102
+ } // short-circuit for the simplest case
103
+
104
+
105
+ if (element.props.length === 1 && value.charCodeAt(0) !== 58
106
+ /* colon */
107
+ && !fixedElements.get(parent)) {
108
+ return;
109
+ } // if this is an implicitly inserted rule (the one eagerly inserted at the each new nested level)
110
+ // then the props has already been manipulated beforehand as they that array is shared between it and its "rule parent"
111
+
112
+
113
+ if (isImplicitRule) {
114
+ return;
115
+ }
116
+
117
+ fixedElements.set(element, true);
118
+ var points = [];
119
+ var rules = getRules(value, points);
120
+ var parentRules = parent.props;
121
+
122
+ for (var i = 0, k = 0; i < rules.length; i++) {
123
+ for (var j = 0; j < parentRules.length; j++, k++) {
124
+ element.props[k] = points[i] ? rules[i].replace(/&\f/g, parentRules[j]) : parentRules[j] + " " + rules[i];
125
+ }
126
+ }
127
+ };
128
+ var removeLabel = function removeLabel(element) {
129
+ if (element.type === 'decl') {
130
+ var value = element.value;
131
+
132
+ if ( // charcode for l
133
+ value.charCodeAt(0) === 108 && // charcode for b
134
+ value.charCodeAt(2) === 98) {
135
+ // this ignores label
136
+ element["return"] = '';
137
+ element.value = '';
138
+ }
139
+ }
140
+ };
141
+
142
+ /* eslint-disable no-fallthrough */
143
+
144
+ function prefix(value, length) {
145
+ switch (stylis.hash(value, length)) {
146
+ // color-adjust
147
+ case 5103:
148
+ return stylis.WEBKIT + 'print-' + value + value;
149
+ // animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
150
+
151
+ case 5737:
152
+ case 4201:
153
+ case 3177:
154
+ case 3433:
155
+ case 1641:
156
+ case 4457:
157
+ case 2921: // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
158
+
159
+ case 5572:
160
+ case 6356:
161
+ case 5844:
162
+ case 3191:
163
+ case 6645:
164
+ case 3005: // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
165
+
166
+ case 6391:
167
+ case 5879:
168
+ case 5623:
169
+ case 6135:
170
+ case 4599:
171
+ case 4855: // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
172
+
173
+ case 4215:
174
+ case 6389:
175
+ case 5109:
176
+ case 5365:
177
+ case 5621:
178
+ case 3829:
179
+ return stylis.WEBKIT + value + value;
180
+ // appearance, user-select, transform, hyphens, text-size-adjust
181
+
182
+ case 5349:
183
+ case 4246:
184
+ case 4810:
185
+ case 6968:
186
+ case 2756:
187
+ return stylis.WEBKIT + value + stylis.MOZ + value + stylis.MS + value + value;
188
+ // flex, flex-direction
189
+
190
+ case 6828:
191
+ case 4268:
192
+ return stylis.WEBKIT + value + stylis.MS + value + value;
193
+ // order
194
+
195
+ case 6165:
196
+ return stylis.WEBKIT + value + stylis.MS + 'flex-' + value + value;
197
+ // align-items
198
+
199
+ case 5187:
200
+ return stylis.WEBKIT + value + stylis.replace(value, /(\w+).+(:[^]+)/, stylis.WEBKIT + 'box-$1$2' + stylis.MS + 'flex-$1$2') + value;
201
+ // align-self
202
+
203
+ case 5443:
204
+ return stylis.WEBKIT + value + stylis.MS + 'flex-item-' + stylis.replace(value, /flex-|-self/, '') + value;
205
+ // align-content
206
+
207
+ case 4675:
208
+ return stylis.WEBKIT + value + stylis.MS + 'flex-line-pack' + stylis.replace(value, /align-content|flex-|-self/, '') + value;
209
+ // flex-shrink
210
+
211
+ case 5548:
212
+ return stylis.WEBKIT + value + stylis.MS + stylis.replace(value, 'shrink', 'negative') + value;
213
+ // flex-basis
214
+
215
+ case 5292:
216
+ return stylis.WEBKIT + value + stylis.MS + stylis.replace(value, 'basis', 'preferred-size') + value;
217
+ // flex-grow
218
+
219
+ case 6060:
220
+ return stylis.WEBKIT + 'box-' + stylis.replace(value, '-grow', '') + stylis.WEBKIT + value + stylis.MS + stylis.replace(value, 'grow', 'positive') + value;
221
+ // transition
222
+
223
+ case 4554:
224
+ return stylis.WEBKIT + stylis.replace(value, /([^-])(transform)/g, '$1' + stylis.WEBKIT + '$2') + value;
225
+ // cursor
226
+
227
+ case 6187:
228
+ return stylis.replace(stylis.replace(stylis.replace(value, /(zoom-|grab)/, stylis.WEBKIT + '$1'), /(image-set)/, stylis.WEBKIT + '$1'), value, '') + value;
229
+ // background, background-image
230
+
231
+ case 5495:
232
+ case 3959:
233
+ return stylis.replace(value, /(image-set\([^]*)/, stylis.WEBKIT + '$1' + '$`$1');
234
+ // justify-content
235
+
236
+ case 4968:
237
+ return stylis.replace(stylis.replace(value, /(.+:)(flex-)?(.*)/, stylis.WEBKIT + 'box-pack:$3' + stylis.MS + 'flex-pack:$3'), /s.+-b[^;]+/, 'justify') + stylis.WEBKIT + value + value;
238
+ // (margin|padding)-inline-(start|end)
239
+
240
+ case 4095:
241
+ case 3583:
242
+ case 4068:
243
+ case 2532:
244
+ return stylis.replace(value, /(.+)-inline(.+)/, stylis.WEBKIT + '$1$2') + value;
245
+ // (min|max)?(width|height|inline-size|block-size)
246
+
247
+ case 8116:
248
+ case 7059:
249
+ case 5753:
250
+ case 5535:
251
+ case 5445:
252
+ case 5701:
253
+ case 4933:
254
+ case 4677:
255
+ case 5533:
256
+ case 5789:
257
+ case 5021:
258
+ case 4765:
259
+ // stretch, max-content, min-content, fill-available
260
+ if (stylis.strlen(value) - 1 - length > 6) switch (stylis.charat(value, length + 1)) {
261
+ // (m)ax-content, (m)in-content
262
+ case 109:
263
+ // -
264
+ if (stylis.charat(value, length + 4) !== 45) break;
265
+ // (f)ill-available, (f)it-content
266
+
267
+ case 102:
268
+ return stylis.replace(value, /(.+:)(.+)-([^]+)/, '$1' + stylis.WEBKIT + '$2-$3' + '$1' + stylis.MOZ + (stylis.charat(value, length + 3) == 108 ? '$3' : '$2-$3')) + value;
269
+ // (s)tretch
270
+
271
+ case 115:
272
+ return ~stylis.indexof(value, 'stretch') ? prefix(stylis.replace(value, 'stretch', 'fill-available'), length) + value : value;
273
+ }
274
+ break;
275
+ // position: sticky
276
+
277
+ case 4949:
278
+ // (s)ticky?
279
+ if (stylis.charat(value, length + 1) !== 115) break;
280
+ // display: (flex|inline-flex)
281
+
282
+ case 6444:
283
+ switch (stylis.charat(value, stylis.strlen(value) - 3 - (~stylis.indexof(value, '!important') && 10))) {
284
+ // stic(k)y
285
+ case 107:
286
+ return stylis.replace(value, ':', ':' + stylis.WEBKIT) + value;
287
+ // (inline-)?fl(e)x
288
+
289
+ case 101:
290
+ return stylis.replace(value, /(.+:)([^;!]+)(;|!.+)?/, '$1' + stylis.WEBKIT + (stylis.charat(value, 14) === 45 ? 'inline-' : '') + 'box$3' + '$1' + stylis.WEBKIT + '$2$3' + '$1' + stylis.MS + '$2box$3') + value;
291
+ }
292
+
293
+ break;
294
+ // writing-mode
295
+
296
+ case 5936:
297
+ switch (stylis.charat(value, length + 11)) {
298
+ // vertical-l(r)
299
+ case 114:
300
+ return stylis.WEBKIT + value + stylis.MS + stylis.replace(value, /[svh]\w+-[tblr]{2}/, 'tb') + value;
301
+ // vertical-r(l)
302
+
303
+ case 108:
304
+ return stylis.WEBKIT + value + stylis.MS + stylis.replace(value, /[svh]\w+-[tblr]{2}/, 'tb-rl') + value;
305
+ // horizontal(-)tb
306
+
307
+ case 45:
308
+ return stylis.WEBKIT + value + stylis.MS + stylis.replace(value, /[svh]\w+-[tblr]{2}/, 'lr') + value;
309
+ }
310
+
311
+ return stylis.WEBKIT + value + stylis.MS + value + value;
312
+ }
313
+
314
+ return value;
315
+ }
316
+
317
+ var prefixer = function prefixer(element, index, children, callback) {
318
+ if (element.length > -1) if (!element["return"]) switch (element.type) {
319
+ case stylis.DECLARATION:
320
+ element["return"] = prefix(element.value, element.length);
321
+ break;
322
+
323
+ case stylis.KEYFRAMES:
324
+ return stylis.serialize([stylis.copy(element, {
325
+ value: stylis.replace(element.value, '@', '@' + stylis.WEBKIT)
326
+ })], callback);
327
+
328
+ case stylis.RULESET:
329
+ if (element.length) return stylis.combine(element.props, function (value) {
330
+ switch (stylis.match(value, /(::plac\w+|:read-\w+)/)) {
331
+ // :read-(only|write)
332
+ case ':read-only':
333
+ case ':read-write':
334
+ return stylis.serialize([stylis.copy(element, {
335
+ props: [stylis.replace(value, /:(read-\w+)/, ':' + stylis.MOZ + '$1')]
336
+ })], callback);
337
+ // :placeholder
338
+
339
+ case '::placeholder':
340
+ return stylis.serialize([stylis.copy(element, {
341
+ props: [stylis.replace(value, /:(plac\w+)/, ':' + stylis.WEBKIT + 'input-$1')]
342
+ }), stylis.copy(element, {
343
+ props: [stylis.replace(value, /:(plac\w+)/, ':' + stylis.MOZ + '$1')]
344
+ }), stylis.copy(element, {
345
+ props: [stylis.replace(value, /:(plac\w+)/, stylis.MS + 'input-$1')]
346
+ })], callback);
347
+ }
348
+
349
+ return '';
350
+ });
351
+ }
352
+ };
353
+
354
+ /* import type { StylisPlugin } from './types' */
355
+
356
+ /*
357
+ export type Options = {
358
+ nonce?: string,
359
+ stylisPlugins?: StylisPlugin[],
360
+ key: string,
361
+ container?: HTMLElement,
362
+ speedy?: boolean,
363
+ prepend?: boolean,
364
+ insertionPoint?: HTMLElement
365
+ }
366
+ */
367
+
368
+ var getServerStylisCache = isBrowser ? undefined : weakMemoize__default["default"](function () {
369
+ return memoize__default["default"](function () {
370
+ var cache = {};
371
+ return function (name) {
372
+ return cache[name];
373
+ };
374
+ });
375
+ });
376
+ var defaultStylisPlugins = [prefixer];
377
+
378
+ var createCache = function
379
+ /*: EmotionCache */
380
+ createCache(options
381
+ /*: Options */
382
+ ) {
383
+ var key = options.key;
384
+
385
+ if (isBrowser && key === 'css') {
386
+ var ssrStyles = document.querySelectorAll("style[data-emotion]:not([data-s])"); // get SSRed styles out of the way of React's hydration
387
+ // document.head is a safe place to move them to(though note document.head is not necessarily the last place they will be)
388
+ // note this very very intentionally targets all style elements regardless of the key to ensure
389
+ // that creating a cache works inside of render of a React component
390
+
391
+ Array.prototype.forEach.call(ssrStyles, function (node
392
+ /*: HTMLStyleElement */
393
+ ) {
394
+ // we want to only move elements which have a space in the data-emotion attribute value
395
+ // because that indicates that it is an Emotion 11 server-side rendered style elements
396
+ // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector
397
+ // Emotion 10 client-side inserted styles did not have data-s (but importantly did not have a space in their data-emotion attributes)
398
+ // so checking for the space ensures that loading Emotion 11 after Emotion 10 has inserted some styles
399
+ // will not result in the Emotion 10 styles being destroyed
400
+ var dataEmotionAttribute = node.getAttribute('data-emotion');
401
+
402
+ if (dataEmotionAttribute.indexOf(' ') === -1) {
403
+ return;
404
+ }
405
+
406
+ document.head.appendChild(node);
407
+ node.setAttribute('data-s', '');
408
+ });
409
+ }
410
+
411
+ var stylisPlugins = options.stylisPlugins || defaultStylisPlugins;
412
+
413
+ var inserted = {};
414
+ var container;
415
+ /* : Node */
416
+
417
+ var nodesToHydrate = [];
418
+
419
+ if (isBrowser) {
420
+ container = options.container || document.head;
421
+ Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which
422
+ // means that the style elements we're looking at are only Emotion 11 server-rendered style elements
423
+ document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node
424
+ /*: HTMLStyleElement */
425
+ ) {
426
+ var attrib = node.getAttribute("data-emotion").split(' ');
427
+
428
+ for (var i = 1; i < attrib.length; i++) {
429
+ inserted[attrib[i]] = true;
430
+ }
431
+
432
+ nodesToHydrate.push(node);
433
+ });
434
+ }
435
+
436
+ var _insert;
437
+ /*: (
438
+ selector: string,
439
+ serialized: SerializedStyles,
440
+ sheet: StyleSheet,
441
+ shouldCache: boolean
442
+ ) => string | void */
443
+
444
+
445
+ var omnipresentPlugins = [compat, removeLabel];
446
+
447
+ if (isBrowser) {
448
+ var currentSheet;
449
+ var finalizingPlugins = [stylis.stringify, stylis.rulesheet(function (rule) {
450
+ currentSheet.insert(rule);
451
+ })];
452
+ var serializer = stylis.middleware(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));
453
+
454
+ var stylis$1 = function stylis$1(styles) {
455
+ return stylis.serialize(stylis.compile(styles), serializer);
456
+ };
457
+
458
+ _insert = function
459
+ /*: void */
460
+ insert(selector
461
+ /*: string */
462
+ , serialized
463
+ /*: SerializedStyles */
464
+ , sheet
465
+ /*: StyleSheet */
466
+ , shouldCache
467
+ /*: boolean */
468
+ ) {
469
+ currentSheet = sheet;
470
+
471
+ stylis$1(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
472
+
473
+ if (shouldCache) {
474
+ cache.inserted[serialized.name] = true;
475
+ }
476
+ };
477
+ } else {
478
+ var _finalizingPlugins = [stylis.stringify];
479
+
480
+ var _serializer = stylis.middleware(omnipresentPlugins.concat(stylisPlugins, _finalizingPlugins));
481
+
482
+ var _stylis = function _stylis(styles) {
483
+ return stylis.serialize(stylis.compile(styles), _serializer);
484
+ };
485
+
486
+ var serverStylisCache = getServerStylisCache(stylisPlugins)(key);
487
+
488
+ var getRules = function
489
+ /*: string */
490
+ getRules(selector
491
+ /*: string */
492
+ , serialized
493
+ /*: SerializedStyles */
494
+ ) {
495
+ var name = serialized.name;
496
+
497
+ if (serverStylisCache[name] === undefined) {
498
+ serverStylisCache[name] = _stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
499
+ }
500
+
501
+ return serverStylisCache[name];
502
+ };
503
+
504
+ _insert = function
505
+ /*: string | void */
506
+ _insert(selector
507
+ /*: string */
508
+ , serialized
509
+ /*: SerializedStyles */
510
+ , sheet
511
+ /*: StyleSheet */
512
+ , shouldCache
513
+ /*: boolean */
514
+ ) {
515
+ var name = serialized.name;
516
+ var rules = getRules(selector, serialized);
517
+
518
+ if (cache.compat === undefined) {
519
+ // in regular mode, we don't set the styles on the inserted cache
520
+ // since we don't need to and that would be wasting memory
521
+ // we return them so that they are rendered in a style tag
522
+ if (shouldCache) {
523
+ cache.inserted[name] = true;
524
+ }
525
+
526
+ return rules;
527
+ } else {
528
+ // in compat mode, we put the styles on the inserted cache so
529
+ // that emotion-server can pull out the styles
530
+ // except when we don't want to cache it which was in Global but now
531
+ // is nowhere but we don't want to do a major right now
532
+ // and just in case we're going to leave the case here
533
+ // it's also not affecting client side bundle size
534
+ // so it's really not a big deal
535
+ if (shouldCache) {
536
+ cache.inserted[name] = rules;
537
+ } else {
538
+ return rules;
539
+ }
540
+ }
541
+ };
542
+ }
543
+
544
+ var cache
545
+ /*: EmotionCache */
546
+ = {
547
+ key: key,
548
+ sheet: new sheet.StyleSheet({
549
+ key: key,
550
+ container: container,
551
+ nonce: options.nonce,
552
+ speedy: options.speedy,
553
+ prepend: options.prepend,
554
+ insertionPoint: options.insertionPoint
555
+ }),
556
+ nonce: options.nonce,
557
+ inserted: inserted,
558
+ registered: {},
559
+ insert: _insert
560
+ };
561
+ cache.sheet.hydrate(nodesToHydrate);
562
+ return cache;
563
+ };
564
+
565
+ exports["default"] = createCache;
@@ -0,0 +1,2 @@
1
+ import "./emotion-cache.cjs.js";
2
+ export { _default as default } from "./emotion-cache.cjs.default.js";
@@ -0,0 +1 @@
1
+ exports._default = require("./emotion-cache.development.cjs.js").default;