@appbaseio/reactivesearch-vue 3.0.0-alpha.4 → 3.0.0-alpha.5

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 (49) hide show
  1. package/dist/@appbaseio/reactivesearch-vue.umd.js +1060 -956
  2. package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
  3. package/dist/@appbaseio/reactivesearch-vue.umd.min.js +5 -5
  4. package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
  5. package/dist/cjs/{Button-ad042719.js → Button-d4da7470.js} +6 -6
  6. package/dist/cjs/{Card-f5ab024a.js → Card-63968d94.js} +2 -2
  7. package/dist/cjs/{DropDown-7bd56543.js → DropDown-f48bea16.js} +1 -1
  8. package/dist/cjs/{Input-088dfcb4.js → Input-497be42a.js} +4 -4
  9. package/dist/cjs/{ListItem-d57d648d.js → ListItem-23af8974.js} +2 -2
  10. package/dist/cjs/MultiDropdownList.js +4 -4
  11. package/dist/cjs/MultiList.js +2 -2
  12. package/dist/cjs/{Pagination-4ffc67cd.js → Pagination-b953a80a.js} +1 -1
  13. package/dist/cjs/RangeInput.js +2 -2
  14. package/dist/cjs/{ReactiveComponent-4435adfa.js → ReactiveComponent-5db1cdbe.js} +7 -7
  15. package/dist/cjs/ReactiveComponent.js +8 -8
  16. package/dist/cjs/ReactiveGoogleMap.js +5 -5
  17. package/dist/cjs/ReactiveList.js +7 -7
  18. package/dist/cjs/ResultCard.js +2 -2
  19. package/dist/cjs/ResultList.js +2 -2
  20. package/dist/cjs/SelectedFilters.js +2 -2
  21. package/dist/cjs/SingleDropdownList.js +4 -4
  22. package/dist/cjs/SingleList.js +2 -2
  23. package/dist/cjs/ToggleButton.js +2 -2
  24. package/dist/cjs/index.js +8 -8
  25. package/dist/cjs/install.js +8 -8
  26. package/dist/cjs/version.js +1 -1
  27. package/dist/es/{Button-474510e3.js → Button-fd869491.js} +1 -1
  28. package/dist/es/{Card-38cbe652.js → Card-54b9e7a0.js} +1 -1
  29. package/dist/es/{DropDown-029ffd42.js → DropDown-7174661a.js} +1 -1
  30. package/dist/es/{Input-ad474a55.js → Input-f7499ef8.js} +1 -1
  31. package/dist/es/{ListItem-16756c02.js → ListItem-1cb1b4de.js} +1 -1
  32. package/dist/es/MultiDropdownList.js +4 -4
  33. package/dist/es/MultiList.js +2 -2
  34. package/dist/es/{Pagination-72bd1d9e.js → Pagination-c2745bec.js} +1 -1
  35. package/dist/es/RangeInput.js +2 -2
  36. package/dist/es/{ReactiveComponent-04d94e01.js → ReactiveComponent-8a84aab3.js} +6 -6
  37. package/dist/es/ReactiveComponent.js +8 -8
  38. package/dist/es/ReactiveGoogleMap.js +3 -3
  39. package/dist/es/ReactiveList.js +5 -5
  40. package/dist/es/ResultCard.js +2 -2
  41. package/dist/es/ResultList.js +2 -2
  42. package/dist/es/SelectedFilters.js +2 -2
  43. package/dist/es/SingleDropdownList.js +4 -4
  44. package/dist/es/SingleList.js +2 -2
  45. package/dist/es/ToggleButton.js +2 -2
  46. package/dist/es/index.js +8 -8
  47. package/dist/es/install.js +8 -8
  48. package/dist/es/version.js +1 -1
  49. package/package.json +3 -2
@@ -10635,14 +10635,704 @@
10635
10635
  };
10636
10636
  };
10637
10637
 
10638
- var global$1 = typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};
10638
+ /*
10639
+
10640
+ Based off glamor's StyleSheet, thanks Sunil ❤️
10641
+
10642
+ high performance StyleSheet for css-in-js systems
10643
+
10644
+ - uses multiple style tags behind the scenes for millions of rules
10645
+ - uses `insertRule` for appending in production for *much* faster performance
10646
+
10647
+ // usage
10648
+
10649
+ import { StyleSheet } from '@emotion/sheet'
10650
+
10651
+ let styleSheet = new StyleSheet({ key: '', container: document.head })
10652
+
10653
+ styleSheet.insert('#box { border: 1px solid red; }')
10654
+ - appends a css rule into the stylesheet
10655
+
10656
+ styleSheet.flush()
10657
+ - empties the stylesheet of all its contents
10658
+
10659
+ */
10660
+ // $FlowFixMe
10661
+ function sheetForTag$1(tag) {
10662
+ if (tag.sheet) {
10663
+ // $FlowFixMe
10664
+ return tag.sheet;
10665
+ } // this weirdness brought to you by firefox
10666
+
10667
+ /* istanbul ignore next */
10668
+
10669
+ for (var i = 0; i < document.styleSheets.length; i++) {
10670
+ if (document.styleSheets[i].ownerNode === tag) {
10671
+ // $FlowFixMe
10672
+ return document.styleSheets[i];
10673
+ }
10674
+ }
10675
+ }
10676
+ function createStyleElement$1(options) {
10677
+ var tag = document.createElement('style');
10678
+ tag.setAttribute('data-emotion', options.key);
10679
+ if (options.nonce !== undefined) {
10680
+ tag.setAttribute('nonce', options.nonce);
10681
+ }
10682
+ tag.appendChild(document.createTextNode(''));
10683
+ tag.setAttribute('data-s', '');
10684
+ return tag;
10685
+ }
10686
+ var StyleSheet$1 = /*#__PURE__*/function () {
10687
+ // Using Node instead of HTMLElement since container may be a ShadowRoot
10688
+ function StyleSheet(options) {
10689
+ var _this = this;
10690
+ this._insertTag = function (tag) {
10691
+ var before;
10692
+ if (_this.tags.length === 0) {
10693
+ if (_this.insertionPoint) {
10694
+ before = _this.insertionPoint.nextSibling;
10695
+ } else if (_this.prepend) {
10696
+ before = _this.container.firstChild;
10697
+ } else {
10698
+ before = _this.before;
10699
+ }
10700
+ } else {
10701
+ before = _this.tags[_this.tags.length - 1].nextSibling;
10702
+ }
10703
+ _this.container.insertBefore(tag, before);
10704
+ _this.tags.push(tag);
10705
+ };
10706
+ this.isSpeedy = options.speedy === undefined ? "development" === 'production' : options.speedy;
10707
+ this.tags = [];
10708
+ this.ctr = 0;
10709
+ this.nonce = options.nonce; // key is the value of the data-emotion attribute, it's used to identify different sheets
10710
+
10711
+ this.key = options.key;
10712
+ this.container = options.container;
10713
+ this.prepend = options.prepend;
10714
+ this.insertionPoint = options.insertionPoint;
10715
+ this.before = null;
10716
+ }
10717
+ var _proto = StyleSheet.prototype;
10718
+ _proto.hydrate = function hydrate(nodes) {
10719
+ nodes.forEach(this._insertTag);
10720
+ };
10721
+ _proto.insert = function insert(rule) {
10722
+ // the max length is how many rules we have per style tag, it's 65000 in speedy mode
10723
+ // it's 1 in dev because we insert source maps that map a single rule to a location
10724
+ // and you can only have one source map per style tag
10725
+ if (this.ctr % (this.isSpeedy ? 65000 : 1) === 0) {
10726
+ this._insertTag(createStyleElement$1(this));
10727
+ }
10728
+ var tag = this.tags[this.tags.length - 1];
10729
+ {
10730
+ var isImportRule = rule.charCodeAt(0) === 64 && rule.charCodeAt(1) === 105;
10731
+ if (isImportRule && this._alreadyInsertedOrderInsensitiveRule) {
10732
+ // this would only cause problem in speedy mode
10733
+ // but we don't want enabling speedy to affect the observable behavior
10734
+ // so we report this error at all times
10735
+ console.error("You're attempting to insert the following rule:\n" + rule + '\n\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules.');
10736
+ }
10737
+ this._alreadyInsertedOrderInsensitiveRule = this._alreadyInsertedOrderInsensitiveRule || !isImportRule;
10738
+ }
10739
+ if (this.isSpeedy) {
10740
+ var sheet = sheetForTag$1(tag);
10741
+ try {
10742
+ // this is the ultrafast version, works across browsers
10743
+ // the big drawback is that the css won't be editable in devtools
10744
+ sheet.insertRule(rule, sheet.cssRules.length);
10745
+ } catch (e) {
10746
+ if ( !/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(rule)) {
10747
+ console.error("There was a problem inserting the following rule: \"" + rule + "\"", e);
10748
+ }
10749
+ }
10750
+ } else {
10751
+ tag.appendChild(document.createTextNode(rule));
10752
+ }
10753
+ this.ctr++;
10754
+ };
10755
+ _proto.flush = function flush() {
10756
+ // $FlowFixMe
10757
+ this.tags.forEach(function (tag) {
10758
+ return tag.parentNode && tag.parentNode.removeChild(tag);
10759
+ });
10760
+ this.tags = [];
10761
+ this.ctr = 0;
10762
+ {
10763
+ this._alreadyInsertedOrderInsensitiveRule = false;
10764
+ }
10765
+ };
10766
+ return StyleSheet;
10767
+ }();
10768
+
10769
+ function memoize$1(fn) {
10770
+ var cache = Object.create(null);
10771
+ return function (arg) {
10772
+ if (cache[arg] === undefined) cache[arg] = fn(arg);
10773
+ return cache[arg];
10774
+ };
10775
+ }
10776
+
10777
+ var identifierWithPointTracking$1 = function identifierWithPointTracking(begin, points, index) {
10778
+ var previous = 0;
10779
+ var character = 0;
10780
+ while (true) {
10781
+ previous = character;
10782
+ character = P$1(); // &\f
10783
+
10784
+ if (previous === 38 && character === 12) {
10785
+ points[index] = 1;
10786
+ }
10787
+ if (T$1(character)) {
10788
+ break;
10789
+ }
10790
+ N$1();
10791
+ }
10792
+ return R$1(begin, F$1);
10793
+ };
10794
+ var toRules$1 = function toRules(parsed, points) {
10795
+ // pretend we've started with a comma
10796
+ var index = -1;
10797
+ var character = 44;
10798
+ do {
10799
+ switch (T$1(character)) {
10800
+ case 0:
10801
+ // &\f
10802
+ if (character === 38 && P$1() === 12) {
10803
+ // this is not 100% correct, we don't account for literal sequences here - like for example quoted strings
10804
+ // stylis inserts \f after & to know when & where it should replace this sequence with the context selector
10805
+ // and when it should just concatenate the outer and inner selectors
10806
+ // it's very unlikely for this sequence to actually appear in a different context, so we just leverage this fact here
10807
+ points[index] = 1;
10808
+ }
10809
+ parsed[index] += identifierWithPointTracking$1(F$1 - 1, points, index);
10810
+ break;
10811
+ case 2:
10812
+ parsed[index] += W(character);
10813
+ break;
10814
+ case 4:
10815
+ // comma
10816
+ if (character === 44) {
10817
+ // colon
10818
+ parsed[++index] = P$1() === 58 ? '&\f' : '';
10819
+ points[index] = parsed[index].length;
10820
+ break;
10821
+ }
10822
+
10823
+ // fallthrough
10824
+
10825
+ default:
10826
+ parsed[index] += k$1(character);
10827
+ }
10828
+ } while (character = N$1());
10829
+ return parsed;
10830
+ };
10831
+ var getRules$1 = function getRules(value, points) {
10832
+ return V$1(toRules$1(U$1(value), points));
10833
+ }; // WeakSet would be more appropriate, but only WeakMap is supported in IE11
10834
+
10835
+ var fixedElements$1 = /* #__PURE__ */new WeakMap();
10836
+ var compat$1 = function compat(element) {
10837
+ if (element.type !== 'rule' || !element.parent ||
10838
+ // positive .length indicates that this rule contains pseudo
10839
+ // negative .length indicates that this rule has been already prefixed
10840
+ element.length < 1) {
10841
+ return;
10842
+ }
10843
+ var value = element.value,
10844
+ parent = element.parent;
10845
+ var isImplicitRule = element.column === parent.column && element.line === parent.line;
10846
+ while (parent.type !== 'rule') {
10847
+ parent = parent.parent;
10848
+ if (!parent) return;
10849
+ } // short-circuit for the simplest case
10850
+
10851
+ if (element.props.length === 1 && value.charCodeAt(0) !== 58
10852
+ /* colon */ && !fixedElements$1.get(parent)) {
10853
+ return;
10854
+ } // if this is an implicitly inserted rule (the one eagerly inserted at the each new nested level)
10855
+ // then the props has already been manipulated beforehand as they that array is shared between it and its "rule parent"
10856
+
10857
+ if (isImplicitRule) {
10858
+ return;
10859
+ }
10860
+ fixedElements$1.set(element, true);
10861
+ var points = [];
10862
+ var rules = getRules$1(value, points);
10863
+ var parentRules = parent.props;
10864
+ for (var i = 0, k = 0; i < rules.length; i++) {
10865
+ for (var j = 0; j < parentRules.length; j++, k++) {
10866
+ element.props[k] = points[i] ? rules[i].replace(/&\f/g, parentRules[j]) : parentRules[j] + " " + rules[i];
10867
+ }
10868
+ }
10869
+ };
10870
+ var removeLabel$1 = function removeLabel(element) {
10871
+ if (element.type === 'decl') {
10872
+ var value = element.value;
10873
+ if (
10874
+ // charcode for l
10875
+ value.charCodeAt(0) === 108 &&
10876
+ // charcode for b
10877
+ value.charCodeAt(2) === 98) {
10878
+ // this ignores label
10879
+ element["return"] = '';
10880
+ element.value = '';
10881
+ }
10882
+ }
10883
+ };
10884
+ var ignoreFlag$1 = 'emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason';
10885
+ var isIgnoringComment$1 = function isIgnoringComment(element) {
10886
+ return element.type === 'comm' && element.children.indexOf(ignoreFlag$1) > -1;
10887
+ };
10888
+ var createUnsafeSelectorsAlarm$1 = function createUnsafeSelectorsAlarm(cache) {
10889
+ return function (element, index, children) {
10890
+ if (element.type !== 'rule' || cache.compat) return;
10891
+ var unsafePseudoClasses = element.value.match(/(:first|:nth|:nth-last)-child/g);
10892
+ if (unsafePseudoClasses) {
10893
+ var isNested = element.parent === children[0]; // in nested rules comments become children of the "auto-inserted" rule
10894
+ //
10895
+ // considering this input:
10896
+ // .a {
10897
+ // .b /* comm */ {}
10898
+ // color: hotpink;
10899
+ // }
10900
+ // we get output corresponding to this:
10901
+ // .a {
10902
+ // & {
10903
+ // /* comm */
10904
+ // color: hotpink;
10905
+ // }
10906
+ // .b {}
10907
+ // }
10908
+
10909
+ var commentContainer = isNested ? children[0].children :
10910
+ // global rule at the root level
10911
+ children;
10912
+ for (var i = commentContainer.length - 1; i >= 0; i--) {
10913
+ var node = commentContainer[i];
10914
+ if (node.line < element.line) {
10915
+ break;
10916
+ } // it is quite weird but comments are *usually* put at `column: element.column - 1`
10917
+ // so we seek *from the end* for the node that is earlier than the rule's `element` and check that
10918
+ // this will also match inputs like this:
10919
+ // .a {
10920
+ // /* comm */
10921
+ // .b {}
10922
+ // }
10923
+ //
10924
+ // but that is fine
10925
+ //
10926
+ // it would be the easiest to change the placement of the comment to be the first child of the rule:
10927
+ // .a {
10928
+ // .b { /* comm */ }
10929
+ // }
10930
+ // with such inputs we wouldn't have to search for the comment at all
10931
+ // TODO: consider changing this comment placement in the next major version
10932
+
10933
+ if (node.column < element.column) {
10934
+ if (isIgnoringComment$1(node)) {
10935
+ return;
10936
+ }
10937
+ break;
10938
+ }
10939
+ }
10940
+ unsafePseudoClasses.forEach(function (unsafePseudoClass) {
10941
+ console.error("The pseudo class \"" + unsafePseudoClass + "\" is potentially unsafe when doing server-side rendering. Try changing it to \"" + unsafePseudoClass.split('-child')[0] + "-of-type\".");
10942
+ });
10943
+ }
10944
+ };
10945
+ };
10946
+ var isImportRule$1 = function isImportRule(element) {
10947
+ return element.type.charCodeAt(1) === 105 && element.type.charCodeAt(0) === 64;
10948
+ };
10949
+ var isPrependedWithRegularRules$1 = function isPrependedWithRegularRules(index, children) {
10950
+ for (var i = index - 1; i >= 0; i--) {
10951
+ if (!isImportRule$1(children[i])) {
10952
+ return true;
10953
+ }
10954
+ }
10955
+ return false;
10956
+ }; // use this to remove incorrect elements from further processing
10957
+ // so they don't get handed to the `sheet` (or anything else)
10958
+ // as that could potentially lead to additional logs which in turn could be overhelming to the user
10959
+
10960
+ var nullifyElement$1 = function nullifyElement(element) {
10961
+ element.type = '';
10962
+ element.value = '';
10963
+ element["return"] = '';
10964
+ element.children = '';
10965
+ element.props = '';
10966
+ };
10967
+ var incorrectImportAlarm$1 = function incorrectImportAlarm(element, index, children) {
10968
+ if (!isImportRule$1(element)) {
10969
+ return;
10970
+ }
10971
+ if (element.parent) {
10972
+ console.error("`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.");
10973
+ nullifyElement$1(element);
10974
+ } else if (isPrependedWithRegularRules$1(index, children)) {
10975
+ console.error("`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.");
10976
+ nullifyElement$1(element);
10977
+ }
10978
+ };
10979
+
10980
+ /* eslint-disable no-fallthrough */
10981
+
10982
+ function prefix$1(value, length) {
10983
+ switch (m$1(value, length)) {
10984
+ // color-adjust
10985
+ case 5103:
10986
+ return a$1 + 'print-' + value + value;
10987
+ // animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
10988
+
10989
+ case 5737:
10990
+ case 4201:
10991
+ case 3177:
10992
+ case 3433:
10993
+ case 1641:
10994
+ case 4457:
10995
+ case 2921: // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
10996
+
10997
+ case 5572:
10998
+ case 6356:
10999
+ case 5844:
11000
+ case 3191:
11001
+ case 6645:
11002
+ case 3005: // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
11003
+
11004
+ case 6391:
11005
+ case 5879:
11006
+ case 5623:
11007
+ case 6135:
11008
+ case 4599:
11009
+ case 4855: // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
11010
+
11011
+ case 4215:
11012
+ case 6389:
11013
+ case 5109:
11014
+ case 5365:
11015
+ case 5621:
11016
+ case 3829:
11017
+ return a$1 + value + value;
11018
+ // appearance, user-select, transform, hyphens, text-size-adjust
11019
+
11020
+ case 5349:
11021
+ case 4246:
11022
+ case 4810:
11023
+ case 6968:
11024
+ case 2756:
11025
+ return a$1 + value + r$1 + value + e + value + value;
11026
+ // flex, flex-direction
11027
+
11028
+ case 6828:
11029
+ case 4268:
11030
+ return a$1 + value + e + value + value;
11031
+ // order
11032
+
11033
+ case 6165:
11034
+ return a$1 + value + e + 'flex-' + value + value;
11035
+ // align-items
11036
+
11037
+ case 5187:
11038
+ return a$1 + value + j$1(value, /(\w+).+(:[^]+)/, a$1 + 'box-$1$2' + e + 'flex-$1$2') + value;
11039
+ // align-self
11040
+
11041
+ case 5443:
11042
+ return a$1 + value + e + 'flex-item-' + j$1(value, /flex-|-self/, '') + value;
11043
+ // align-content
11044
+
11045
+ case 4675:
11046
+ return a$1 + value + e + 'flex-line-pack' + j$1(value, /align-content|flex-|-self/, '') + value;
11047
+ // flex-shrink
11048
+
11049
+ case 5548:
11050
+ return a$1 + value + e + j$1(value, 'shrink', 'negative') + value;
11051
+ // flex-basis
11052
+
11053
+ case 5292:
11054
+ return a$1 + value + e + j$1(value, 'basis', 'preferred-size') + value;
11055
+ // flex-grow
11056
+
11057
+ case 6060:
11058
+ return a$1 + 'box-' + j$1(value, '-grow', '') + a$1 + value + e + j$1(value, 'grow', 'positive') + value;
11059
+ // transition
11060
+
11061
+ case 4554:
11062
+ return a$1 + j$1(value, /([^-])(transform)/g, '$1' + a$1 + '$2') + value;
11063
+ // cursor
11064
+
11065
+ case 6187:
11066
+ return j$1(j$1(j$1(value, /(zoom-|grab)/, a$1 + '$1'), /(image-set)/, a$1 + '$1'), value, '') + value;
11067
+ // background, background-image
11068
+
11069
+ case 5495:
11070
+ case 3959:
11071
+ return j$1(value, /(image-set\([^]*)/, a$1 + '$1' + '$`$1');
11072
+ // justify-content
11073
+
11074
+ case 4968:
11075
+ return j$1(j$1(value, /(.+:)(flex-)?(.*)/, a$1 + 'box-pack:$3' + e + 'flex-pack:$3'), /s.+-b[^;]+/, 'justify') + a$1 + value + value;
11076
+ // (margin|padding)-inline-(start|end)
11077
+
11078
+ case 4095:
11079
+ case 3583:
11080
+ case 4068:
11081
+ case 2532:
11082
+ return j$1(value, /(.+)-inline(.+)/, a$1 + '$1$2') + value;
11083
+ // (min|max)?(width|height|inline-size|block-size)
11084
+
11085
+ case 8116:
11086
+ case 7059:
11087
+ case 5753:
11088
+ case 5535:
11089
+ case 5445:
11090
+ case 5701:
11091
+ case 4933:
11092
+ case 4677:
11093
+ case 5533:
11094
+ case 5789:
11095
+ case 5021:
11096
+ case 4765:
11097
+ // stretch, max-content, min-content, fill-available
11098
+ if (A$1(value) - 1 - length > 6) switch (C$1(value, length + 1)) {
11099
+ // (m)ax-content, (m)in-content
11100
+ case 109:
11101
+ // -
11102
+ if (C$1(value, length + 4) !== 45) break;
11103
+ // (f)ill-available, (f)it-content
11104
+
11105
+ case 102:
11106
+ return j$1(value, /(.+:)(.+)-([^]+)/, '$1' + a$1 + '$2-$3' + '$1' + r$1 + (C$1(value, length + 3) == 108 ? '$3' : '$2-$3')) + value;
11107
+ // (s)tretch
11108
+
11109
+ case 115:
11110
+ return ~z$1(value, 'stretch') ? prefix$1(j$1(value, 'stretch', 'fill-available'), length) + value : value;
11111
+ }
11112
+ break;
11113
+ // position: sticky
11114
+
11115
+ case 4949:
11116
+ // (s)ticky?
11117
+ if (C$1(value, length + 1) !== 115) break;
11118
+ // display: (flex|inline-flex)
11119
+
11120
+ case 6444:
11121
+ switch (C$1(value, A$1(value) - 3 - (~z$1(value, '!important') && 10))) {
11122
+ // stic(k)y
11123
+ case 107:
11124
+ return j$1(value, ':', ':' + a$1) + value;
11125
+ // (inline-)?fl(e)x
11126
+
11127
+ case 101:
11128
+ return j$1(value, /(.+:)([^;!]+)(;|!.+)?/, '$1' + a$1 + (C$1(value, 14) === 45 ? 'inline-' : '') + 'box$3' + '$1' + a$1 + '$2$3' + '$1' + e + '$2box$3') + value;
11129
+ }
11130
+ break;
11131
+ // writing-mode
11132
+
11133
+ case 5936:
11134
+ switch (C$1(value, length + 11)) {
11135
+ // vertical-l(r)
11136
+ case 114:
11137
+ return a$1 + value + e + j$1(value, /[svh]\w+-[tblr]{2}/, 'tb') + value;
11138
+ // vertical-r(l)
11139
+
11140
+ case 108:
11141
+ return a$1 + value + e + j$1(value, /[svh]\w+-[tblr]{2}/, 'tb-rl') + value;
11142
+ // horizontal(-)tb
11143
+
11144
+ case 45:
11145
+ return a$1 + value + e + j$1(value, /[svh]\w+-[tblr]{2}/, 'lr') + value;
11146
+ }
11147
+ return a$1 + value + e + value + value;
11148
+ }
11149
+ return value;
11150
+ }
11151
+ var prefixer$1 = function prefixer(element, index, children, callback) {
11152
+ if (element.length > -1) if (!element["return"]) switch (element.type) {
11153
+ case s$1:
11154
+ element["return"] = prefix$1(element.value, element.length);
11155
+ break;
11156
+ case h$1:
11157
+ return fe([J$1(element, {
11158
+ value: j$1(element.value, '@', '@' + a$1)
11159
+ })], callback);
11160
+ case c$1:
11161
+ if (element.length) return q$1(element.props, function (value) {
11162
+ switch (y$1(value, /(::plac\w+|:read-\w+)/)) {
11163
+ // :read-(only|write)
11164
+ case ':read-only':
11165
+ case ':read-write':
11166
+ return fe([J$1(element, {
11167
+ props: [j$1(value, /:(read-\w+)/, ':' + r$1 + '$1')]
11168
+ })], callback);
11169
+ // :placeholder
11170
+
11171
+ case '::placeholder':
11172
+ return fe([J$1(element, {
11173
+ props: [j$1(value, /:(plac\w+)/, ':' + a$1 + 'input-$1')]
11174
+ }), J$1(element, {
11175
+ props: [j$1(value, /:(plac\w+)/, ':' + r$1 + '$1')]
11176
+ }), J$1(element, {
11177
+ props: [j$1(value, /:(plac\w+)/, e + 'input-$1')]
11178
+ })], callback);
11179
+ }
11180
+ return '';
11181
+ });
11182
+ }
11183
+ };
11184
+ var defaultStylisPlugins$1 = [prefixer$1];
11185
+ var createCache$1 = function createCache(options) {
11186
+ var key = options.key;
11187
+ if ( !key) {
11188
+ throw new Error("You have to configure `key` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\n" + "If multiple caches share the same key they might \"fight\" for each other's style elements.");
11189
+ }
11190
+ if (key === 'css') {
11191
+ var ssrStyles = document.querySelectorAll("style[data-emotion]:not([data-s])"); // get SSRed styles out of the way of React's hydration
11192
+ // document.head is a safe place to move them to(though note document.head is not necessarily the last place they will be)
11193
+ // note this very very intentionally targets all style elements regardless of the key to ensure
11194
+ // that creating a cache works inside of render of a React component
11195
+
11196
+ Array.prototype.forEach.call(ssrStyles, function (node) {
11197
+ // we want to only move elements which have a space in the data-emotion attribute value
11198
+ // because that indicates that it is an Emotion 11 server-side rendered style elements
11199
+ // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector
11200
+ // Emotion 10 client-side inserted styles did not have data-s (but importantly did not have a space in their data-emotion attributes)
11201
+ // so checking for the space ensures that loading Emotion 11 after Emotion 10 has inserted some styles
11202
+ // will not result in the Emotion 10 styles being destroyed
11203
+ var dataEmotionAttribute = node.getAttribute('data-emotion');
11204
+ if (dataEmotionAttribute.indexOf(' ') === -1) {
11205
+ return;
11206
+ }
11207
+ document.head.appendChild(node);
11208
+ node.setAttribute('data-s', '');
11209
+ });
11210
+ }
11211
+ var stylisPlugins = options.stylisPlugins || defaultStylisPlugins$1;
11212
+ {
11213
+ // $FlowFixMe
11214
+ if (/[^a-z-]/.test(key)) {
11215
+ throw new Error("Emotion key must only contain lower case alphabetical characters and - but \"" + key + "\" was passed");
11216
+ }
11217
+ }
11218
+ var inserted = {};
11219
+ var container;
11220
+ var nodesToHydrate = [];
11221
+ {
11222
+ container = options.container || document.head;
11223
+ Array.prototype.forEach.call(
11224
+ // this means we will ignore elements which don't have a space in them which
11225
+ // means that the style elements we're looking at are only Emotion 11 server-rendered style elements
11226
+ document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node) {
11227
+ var attrib = node.getAttribute("data-emotion").split(' '); // $FlowFixMe
11228
+
11229
+ for (var i = 1; i < attrib.length; i++) {
11230
+ inserted[attrib[i]] = true;
11231
+ }
11232
+ nodesToHydrate.push(node);
11233
+ });
11234
+ }
11235
+ var _insert;
11236
+ var omnipresentPlugins = [compat$1, removeLabel$1];
11237
+ {
11238
+ omnipresentPlugins.push(createUnsafeSelectorsAlarm$1({
11239
+ get compat() {
11240
+ return cache.compat;
11241
+ }
11242
+ }), incorrectImportAlarm$1);
11243
+ }
11244
+ {
11245
+ var currentSheet;
11246
+ var finalizingPlugins = [oe, function (element) {
11247
+ if (!element.root) {
11248
+ if (element["return"]) {
11249
+ currentSheet.insert(element["return"]);
11250
+ } else if (element.value && element.type !== n$1) {
11251
+ // insert empty rule in non-production environments
11252
+ // so @emotion/jest can grab `key` from the (JS)DOM for caches without any rules inserted yet
11253
+ currentSheet.insert(element.value + "{}");
11254
+ }
11255
+ }
11256
+ } ];
11257
+ var serializer = le(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));
11258
+ var stylis = function stylis(styles) {
11259
+ return fe(ne(styles), serializer);
11260
+ };
11261
+ _insert = function insert(selector, serialized, sheet, shouldCache) {
11262
+ currentSheet = sheet;
11263
+ if ( serialized.map !== undefined) {
11264
+ currentSheet = {
11265
+ insert: function insert(rule) {
11266
+ sheet.insert(rule + serialized.map);
11267
+ }
11268
+ };
11269
+ }
11270
+ stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
11271
+ if (shouldCache) {
11272
+ cache.inserted[serialized.name] = true;
11273
+ }
11274
+ };
11275
+ }
11276
+ var cache = {
11277
+ key: key,
11278
+ sheet: new StyleSheet$1({
11279
+ key: key,
11280
+ container: container,
11281
+ nonce: options.nonce,
11282
+ speedy: options.speedy,
11283
+ prepend: options.prepend,
11284
+ insertionPoint: options.insertionPoint
11285
+ }),
11286
+ nonce: options.nonce,
11287
+ inserted: inserted,
11288
+ registered: {},
11289
+ insert: _insert
11290
+ };
11291
+ cache.sheet.hydrate(nodesToHydrate);
11292
+ return cache;
11293
+ };
11294
+
11295
+ /* eslint-disable */
11296
+ // Inspired by https://github.com/garycourt/murmurhash-js
11297
+ // Ported from https://github.com/aappleby/smhasher/blob/61a0530f28277f2e850bfc39600ce61d02b518de/src/MurmurHash2.cpp#L37-L86
11298
+ function murmur2$1(str) {
11299
+ // 'm' and 'r' are mixing constants generated offline.
11300
+ // They're not really 'magic', they just happen to work well.
11301
+ // const m = 0x5bd1e995;
11302
+ // const r = 24;
11303
+ // Initialize the hash
11304
+ var h = 0; // Mix 4 bytes at a time into the hash
11305
+
11306
+ var k,
11307
+ i = 0,
11308
+ len = str.length;
11309
+ for (; len >= 4; ++i, len -= 4) {
11310
+ k = str.charCodeAt(i) & 0xff | (str.charCodeAt(++i) & 0xff) << 8 | (str.charCodeAt(++i) & 0xff) << 16 | (str.charCodeAt(++i) & 0xff) << 24;
11311
+ k = /* Math.imul(k, m): */
11312
+ (k & 0xffff) * 0x5bd1e995 + ((k >>> 16) * 0xe995 << 16);
11313
+ k ^= /* k >>> r: */
11314
+ k >>> 24;
11315
+ h = /* Math.imul(k, m): */
11316
+ (k & 0xffff) * 0x5bd1e995 + ((k >>> 16) * 0xe995 << 16) ^ /* Math.imul(h, m): */
11317
+ (h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
11318
+ } // Handle the last few bytes of the input array
11319
+
11320
+ switch (len) {
11321
+ case 3:
11322
+ h ^= (str.charCodeAt(i + 2) & 0xff) << 16;
11323
+ case 2:
11324
+ h ^= (str.charCodeAt(i + 1) & 0xff) << 8;
11325
+ case 1:
11326
+ h ^= str.charCodeAt(i) & 0xff;
11327
+ h = /* Math.imul(h, m): */
11328
+ (h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
11329
+ } // Do a few final mixes of the hash to ensure the last few
11330
+ // bytes are well-incorporated.
10639
11331
 
10640
- function memoize$1(fn) {
10641
- var cache = {};
10642
- return function (arg) {
10643
- if (cache[arg] === undefined) cache[arg] = fn(arg);
10644
- return cache[arg];
10645
- };
11332
+ h ^= h >>> 13;
11333
+ h = /* Math.imul(h, m): */
11334
+ (h & 0xffff) * 0x5bd1e995 + ((h >>> 16) * 0xe995 << 16);
11335
+ return ((h ^ h >>> 15) >>> 0).toString(36);
10646
11336
  }
10647
11337
 
10648
11338
  var unitlessKeys$1 = {
@@ -10669,6 +11359,10 @@
10669
11359
  gridColumnEnd: 1,
10670
11360
  gridColumnSpan: 1,
10671
11361
  gridColumnStart: 1,
11362
+ msGridRow: 1,
11363
+ msGridRowSpan: 1,
11364
+ msGridColumn: 1,
11365
+ msGridColumnSpan: 1,
10672
11366
  fontWeight: 1,
10673
11367
  lineHeight: 1,
10674
11368
  opacity: 1,
@@ -10690,619 +11384,388 @@
10690
11384
  strokeWidth: 1
10691
11385
  };
10692
11386
 
10693
- /* eslint-disable */
10694
- // murmurhash2 via https://github.com/garycourt/murmurhash-js/blob/master/murmurhash2_gc.js
10695
- function murmurhash2_32_gc(str) {
10696
- var l = str.length,
10697
- h = l ^ l,
10698
- i = 0,
10699
- k;
10700
- while (l >= 4) {
10701
- k = str.charCodeAt(i) & 0xff | (str.charCodeAt(++i) & 0xff) << 8 | (str.charCodeAt(++i) & 0xff) << 16 | (str.charCodeAt(++i) & 0xff) << 24;
10702
- k = (k & 0xffff) * 0x5bd1e995 + (((k >>> 16) * 0x5bd1e995 & 0xffff) << 16);
10703
- k ^= k >>> 24;
10704
- k = (k & 0xffff) * 0x5bd1e995 + (((k >>> 16) * 0x5bd1e995 & 0xffff) << 16);
10705
- h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16) ^ k;
10706
- l -= 4;
10707
- ++i;
10708
- }
10709
- switch (l) {
10710
- case 3:
10711
- h ^= (str.charCodeAt(i + 2) & 0xff) << 16;
10712
- case 2:
10713
- h ^= (str.charCodeAt(i + 1) & 0xff) << 8;
10714
- case 1:
10715
- h ^= str.charCodeAt(i) & 0xff;
10716
- h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16);
11387
+ var ILLEGAL_ESCAPE_SEQUENCE_ERROR$2 = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
11388
+ var UNDEFINED_AS_OBJECT_KEY_ERROR$1 = "You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).";
11389
+ var hyphenateRegex$1 = /[A-Z]|^ms/g;
11390
+ var animationRegex$1 = /_EMO_([^_]+?)_([^]*?)_EMO_/g;
11391
+ var isCustomProperty$1 = function isCustomProperty(property) {
11392
+ return property.charCodeAt(1) === 45;
11393
+ };
11394
+ var isProcessableValue$1 = function isProcessableValue(value) {
11395
+ return value != null && typeof value !== 'boolean';
11396
+ };
11397
+ var processStyleName$1 = /* #__PURE__ */memoize$1(function (styleName) {
11398
+ return isCustomProperty$1(styleName) ? styleName : styleName.replace(hyphenateRegex$1, '-$&').toLowerCase();
11399
+ });
11400
+ var processStyleValue$1 = function processStyleValue(key, value) {
11401
+ switch (key) {
11402
+ case 'animation':
11403
+ case 'animationName':
11404
+ {
11405
+ if (typeof value === 'string') {
11406
+ return value.replace(animationRegex$1, function (match, p1, p2) {
11407
+ cursor$1 = {
11408
+ name: p1,
11409
+ styles: p2,
11410
+ next: cursor$1
11411
+ };
11412
+ return p1;
11413
+ });
11414
+ }
11415
+ }
10717
11416
  }
10718
- h ^= h >>> 13;
10719
- h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16);
10720
- h ^= h >>> 15;
10721
- return (h >>> 0).toString(36);
10722
- }
10723
-
10724
- function stylis_min(W) {
10725
- function M(d, c, e, h, a) {
10726
- for (var m = 0, b = 0, v = 0, n = 0, q, g, x = 0, K = 0, k, u = k = q = 0, l = 0, r = 0, I = 0, t = 0, B = e.length, J = B - 1, y, f = '', p = '', F = '', G = '', C; l < B;) {
10727
- g = e.charCodeAt(l);
10728
- l === J && 0 !== b + n + v + m && (0 !== b && (g = 47 === b ? 10 : 47), n = v = m = 0, B++, J++);
10729
- if (0 === b + n + v + m) {
10730
- if (l === J && (0 < r && (f = f.replace(N, '')), 0 < f.trim().length)) {
10731
- switch (g) {
10732
- case 32:
10733
- case 9:
10734
- case 59:
10735
- case 13:
10736
- case 10:
10737
- break;
10738
- default:
10739
- f += e.charAt(l);
10740
- }
10741
- g = 59;
10742
- }
10743
- switch (g) {
10744
- case 123:
10745
- f = f.trim();
10746
- q = f.charCodeAt(0);
10747
- k = 1;
10748
- for (t = ++l; l < B;) {
10749
- switch (g = e.charCodeAt(l)) {
10750
- case 123:
10751
- k++;
10752
- break;
10753
- case 125:
10754
- k--;
10755
- break;
10756
- case 47:
10757
- switch (g = e.charCodeAt(l + 1)) {
10758
- case 42:
10759
- case 47:
10760
- a: {
10761
- for (u = l + 1; u < J; ++u) {
10762
- switch (e.charCodeAt(u)) {
10763
- case 47:
10764
- if (42 === g && 42 === e.charCodeAt(u - 1) && l + 2 !== u) {
10765
- l = u + 1;
10766
- break a;
10767
- }
10768
- break;
10769
- case 10:
10770
- if (47 === g) {
10771
- l = u + 1;
10772
- break a;
10773
- }
10774
- }
10775
- }
10776
- l = u;
10777
- }
10778
- }
10779
- break;
10780
- case 91:
10781
- g++;
10782
- case 40:
10783
- g++;
10784
- case 34:
10785
- case 39:
10786
- for (; l++ < J && e.charCodeAt(l) !== g;) {}
10787
- }
10788
- if (0 === k) break;
10789
- l++;
10790
- }
10791
- k = e.substring(t, l);
10792
- 0 === q && (q = (f = f.replace(ca, '').trim()).charCodeAt(0));
10793
- switch (q) {
10794
- case 64:
10795
- 0 < r && (f = f.replace(N, ''));
10796
- g = f.charCodeAt(1);
10797
- switch (g) {
10798
- case 100:
10799
- case 109:
10800
- case 115:
10801
- case 45:
10802
- r = c;
10803
- break;
10804
- default:
10805
- r = O;
10806
- }
10807
- k = M(c, r, k, g, a + 1);
10808
- t = k.length;
10809
- 0 < A && (r = X(O, f, I), C = H(3, k, r, c, D, z, t, g, a, h), f = r.join(''), void 0 !== C && 0 === (t = (k = C.trim()).length) && (g = 0, k = ''));
10810
- if (0 < t) switch (g) {
10811
- case 115:
10812
- f = f.replace(da, ea);
10813
- case 100:
10814
- case 109:
10815
- case 45:
10816
- k = f + '{' + k + '}';
10817
- break;
10818
- case 107:
10819
- f = f.replace(fa, '$1 $2');
10820
- k = f + '{' + k + '}';
10821
- k = 1 === w || 2 === w && L('@' + k, 3) ? '@-webkit-' + k + '@' + k : '@' + k;
10822
- break;
10823
- default:
10824
- k = f + k, 112 === h && (k = (p += k, ''));
10825
- } else k = '';
10826
- break;
10827
- default:
10828
- k = M(c, X(c, f, I), k, h, a + 1);
10829
- }
10830
- F += k;
10831
- k = I = r = u = q = 0;
10832
- f = '';
10833
- g = e.charCodeAt(++l);
10834
- break;
10835
- case 125:
10836
- case 59:
10837
- f = (0 < r ? f.replace(N, '') : f).trim();
10838
- if (1 < (t = f.length)) switch (0 === u && (q = f.charCodeAt(0), 45 === q || 96 < q && 123 > q) && (t = (f = f.replace(' ', ':')).length), 0 < A && void 0 !== (C = H(1, f, c, d, D, z, p.length, h, a, h)) && 0 === (t = (f = C.trim()).length) && (f = '\x00\x00'), q = f.charCodeAt(0), g = f.charCodeAt(1), q) {
10839
- case 0:
10840
- break;
10841
- case 64:
10842
- if (105 === g || 99 === g) {
10843
- G += f + e.charAt(l);
10844
- break;
10845
- }
10846
- default:
10847
- 58 !== f.charCodeAt(t - 1) && (p += P(f, q, g, f.charCodeAt(2)));
11417
+ if (unitlessKeys$1[key] !== 1 && !isCustomProperty$1(key) && typeof value === 'number' && value !== 0) {
11418
+ return value + 'px';
11419
+ }
11420
+ return value;
11421
+ };
11422
+ {
11423
+ var contentValuePattern$1 = /(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\(|(no-)?(open|close)-quote/;
11424
+ var contentValues$1 = ['normal', 'none', 'initial', 'inherit', 'unset'];
11425
+ var oldProcessStyleValue$1 = processStyleValue$1;
11426
+ var msPattern$1 = /^-ms-/;
11427
+ var hyphenPattern$1 = /-(.)/g;
11428
+ var hyphenatedCache$1 = {};
11429
+ processStyleValue$1 = function processStyleValue(key, value) {
11430
+ if (key === 'content') {
11431
+ if (typeof value !== 'string' || contentValues$1.indexOf(value) === -1 && !contentValuePattern$1.test(value) && (value.charAt(0) !== value.charAt(value.length - 1) || value.charAt(0) !== '"' && value.charAt(0) !== "'")) {
11432
+ throw new Error("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\"" + value + "\"'`");
11433
+ }
11434
+ }
11435
+ var processed = oldProcessStyleValue$1(key, value);
11436
+ if (processed !== '' && !isCustomProperty$1(key) && key.indexOf('-') !== -1 && hyphenatedCache$1[key] === undefined) {
11437
+ hyphenatedCache$1[key] = true;
11438
+ console.error("Using kebab-case for css properties in objects is not supported. Did you mean " + key.replace(msPattern$1, 'ms-').replace(hyphenPattern$1, function (str, _char) {
11439
+ return _char.toUpperCase();
11440
+ }) + "?");
11441
+ }
11442
+ return processed;
11443
+ };
11444
+ }
11445
+ var noComponentSelectorMessage$1 = 'Component selectors can only be used in conjunction with ' + '@emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware ' + 'compiler transform.';
11446
+ function handleInterpolation$1(mergedProps, registered, interpolation) {
11447
+ if (interpolation == null) {
11448
+ return '';
11449
+ }
11450
+ if (interpolation.__emotion_styles !== undefined) {
11451
+ if ( interpolation.toString() === 'NO_COMPONENT_SELECTOR') {
11452
+ throw new Error(noComponentSelectorMessage$1);
11453
+ }
11454
+ return interpolation;
11455
+ }
11456
+ switch (typeof interpolation) {
11457
+ case 'boolean':
11458
+ {
11459
+ return '';
11460
+ }
11461
+ case 'object':
11462
+ {
11463
+ if (interpolation.anim === 1) {
11464
+ cursor$1 = {
11465
+ name: interpolation.name,
11466
+ styles: interpolation.styles,
11467
+ next: cursor$1
11468
+ };
11469
+ return interpolation.name;
11470
+ }
11471
+ if (interpolation.styles !== undefined) {
11472
+ var next = interpolation.next;
11473
+ if (next !== undefined) {
11474
+ // not the most efficient thing ever but this is a pretty rare case
11475
+ // and there will be very few iterations of this generally
11476
+ while (next !== undefined) {
11477
+ cursor$1 = {
11478
+ name: next.name,
11479
+ styles: next.styles,
11480
+ next: cursor$1
11481
+ };
11482
+ next = next.next;
10848
11483
  }
10849
- I = r = u = q = 0;
10850
- f = '';
10851
- g = e.charCodeAt(++l);
11484
+ }
11485
+ var styles = interpolation.styles + ";";
11486
+ if ( interpolation.map !== undefined) {
11487
+ styles += interpolation.map;
11488
+ }
11489
+ return styles;
10852
11490
  }
11491
+ return createStringFromObject$1(mergedProps, registered, interpolation);
10853
11492
  }
10854
- switch (g) {
10855
- case 13:
10856
- case 10:
10857
- 47 === b ? b = 0 : 0 === 1 + q && 107 !== h && 0 < f.length && (r = 1, f += '\x00');
10858
- 0 < A * Y && H(0, f, c, d, D, z, p.length, h, a, h);
10859
- z = 1;
10860
- D++;
10861
- break;
10862
- case 59:
10863
- case 125:
10864
- if (0 === b + n + v + m) {
10865
- z++;
10866
- break;
11493
+ case 'function':
11494
+ {
11495
+ if (mergedProps !== undefined) {
11496
+ var previousCursor = cursor$1;
11497
+ var result = interpolation(mergedProps);
11498
+ cursor$1 = previousCursor;
11499
+ return handleInterpolation$1(mergedProps, registered, result);
11500
+ } else {
11501
+ console.error('Functions that are interpolated in css calls will be stringified.\n' + 'If you want to have a css call based on props, create a function that returns a css call like this\n' + 'let dynamicStyle = (props) => css`color: ${props.color}`\n' + 'It can be called directly with props or interpolated in a styled call like this\n' + "let SomeComponent = styled('div')`${dynamicStyle}`");
11502
+ }
11503
+ break;
11504
+ }
11505
+ case 'string':
11506
+ {
11507
+ var matched = [];
11508
+ var replaced = interpolation.replace(animationRegex$1, function (match, p1, p2) {
11509
+ var fakeVarName = "animation" + matched.length;
11510
+ matched.push("const " + fakeVarName + " = keyframes`" + p2.replace(/^@keyframes animation-\w+/, '') + "`");
11511
+ return "${" + fakeVarName + "}";
11512
+ });
11513
+ if (matched.length) {
11514
+ console.error('`keyframes` output got interpolated into plain string, please wrap it with `css`.\n\n' + 'Instead of doing this:\n\n' + [].concat(matched, ["`" + replaced + "`"]).join('\n') + '\n\nYou should wrap it with `css` like this:\n\n' + ("css`" + replaced + "`"));
11515
+ }
11516
+ }
11517
+ break;
11518
+ } // finalize string values (regular strings and functions interpolated into css calls)
11519
+
11520
+ if (registered == null) {
11521
+ return interpolation;
11522
+ }
11523
+ var cached = registered[interpolation];
11524
+ return cached !== undefined ? cached : interpolation;
11525
+ }
11526
+ function createStringFromObject$1(mergedProps, registered, obj) {
11527
+ var string = '';
11528
+ if (Array.isArray(obj)) {
11529
+ for (var i = 0; i < obj.length; i++) {
11530
+ string += handleInterpolation$1(mergedProps, registered, obj[i]) + ";";
11531
+ }
11532
+ } else {
11533
+ for (var _key in obj) {
11534
+ var value = obj[_key];
11535
+ if (typeof value !== 'object') {
11536
+ if (registered != null && registered[value] !== undefined) {
11537
+ string += _key + "{" + registered[value] + "}";
11538
+ } else if (isProcessableValue$1(value)) {
11539
+ string += processStyleName$1(_key) + ":" + processStyleValue$1(_key, value) + ";";
11540
+ }
11541
+ } else {
11542
+ if (_key === 'NO_COMPONENT_SELECTOR' && "development" !== 'production') {
11543
+ throw new Error(noComponentSelectorMessage$1);
11544
+ }
11545
+ if (Array.isArray(value) && typeof value[0] === 'string' && (registered == null || registered[value[0]] === undefined)) {
11546
+ for (var _i = 0; _i < value.length; _i++) {
11547
+ if (isProcessableValue$1(value[_i])) {
11548
+ string += processStyleName$1(_key) + ":" + processStyleValue$1(_key, value[_i]) + ";";
11549
+ }
10867
11550
  }
10868
- default:
10869
- z++;
10870
- y = e.charAt(l);
10871
- switch (g) {
10872
- case 9:
10873
- case 32:
10874
- if (0 === n + m + b) switch (x) {
10875
- case 44:
10876
- case 58:
10877
- case 9:
10878
- case 32:
10879
- y = '';
10880
- break;
10881
- default:
10882
- 32 !== g && (y = ' ');
10883
- }
10884
- break;
10885
- case 0:
10886
- y = '\\0';
10887
- break;
10888
- case 12:
10889
- y = '\\f';
10890
- break;
10891
- case 11:
10892
- y = '\\v';
10893
- break;
10894
- case 38:
10895
- 0 === n + b + m && (r = I = 1, y = '\f' + y);
10896
- break;
10897
- case 108:
10898
- if (0 === n + b + m + E && 0 < u) switch (l - u) {
10899
- case 2:
10900
- 112 === x && 58 === e.charCodeAt(l - 3) && (E = x);
10901
- case 8:
10902
- 111 === K && (E = K);
11551
+ } else {
11552
+ var interpolated = handleInterpolation$1(mergedProps, registered, value);
11553
+ switch (_key) {
11554
+ case 'animation':
11555
+ case 'animationName':
11556
+ {
11557
+ string += processStyleName$1(_key) + ":" + interpolated + ";";
11558
+ break;
10903
11559
  }
10904
- break;
10905
- case 58:
10906
- 0 === n + b + m && (u = l);
10907
- break;
10908
- case 44:
10909
- 0 === b + v + n + m && (r = 1, y += '\r');
10910
- break;
10911
- case 34:
10912
- case 39:
10913
- 0 === b && (n = n === g ? 0 : 0 === n ? g : n);
10914
- break;
10915
- case 91:
10916
- 0 === n + b + v && m++;
10917
- break;
10918
- case 93:
10919
- 0 === n + b + v && m--;
10920
- break;
10921
- case 41:
10922
- 0 === n + b + m && v--;
10923
- break;
10924
- case 40:
10925
- if (0 === n + b + m) {
10926
- if (0 === q) switch (2 * x + 3 * K) {
10927
- case 533:
10928
- break;
10929
- default:
10930
- q = 1;
11560
+ default:
11561
+ {
11562
+ if ( _key === 'undefined') {
11563
+ console.error(UNDEFINED_AS_OBJECT_KEY_ERROR$1);
10931
11564
  }
10932
- v++;
10933
- }
10934
- break;
10935
- case 64:
10936
- 0 === b + v + n + m + u + k && (k = 1);
10937
- break;
10938
- case 42:
10939
- case 47:
10940
- if (!(0 < n + m + v)) switch (b) {
10941
- case 0:
10942
- switch (2 * g + 3 * e.charCodeAt(l + 1)) {
10943
- case 235:
10944
- b = 47;
10945
- break;
10946
- case 220:
10947
- t = l, b = 42;
10948
- }
10949
- break;
10950
- case 42:
10951
- 47 === g && 42 === x && t + 2 !== l && (33 === e.charCodeAt(t + 2) && (p += e.substring(t, l + 1)), y = '', b = 0);
11565
+ string += _key + "{" + interpolated + "}";
10952
11566
  }
10953
11567
  }
10954
- 0 === b && (f += y);
10955
- }
10956
- K = x;
10957
- x = g;
10958
- l++;
10959
- }
10960
- t = p.length;
10961
- if (0 < t) {
10962
- r = c;
10963
- if (0 < A && (C = H(2, p, r, d, D, z, t, h, a, h), void 0 !== C && 0 === (p = C).length)) return G + p + F;
10964
- p = r.join(',') + '{' + p + '}';
10965
- if (0 !== w * E) {
10966
- 2 !== w || L(p, 2) || (E = 0);
10967
- switch (E) {
10968
- case 111:
10969
- p = p.replace(ha, ':-moz-$1') + p;
10970
- break;
10971
- case 112:
10972
- p = p.replace(Q, '::-webkit-input-$1') + p.replace(Q, '::-moz-$1') + p.replace(Q, ':-ms-input-$1') + p;
10973
11568
  }
10974
- E = 0;
10975
11569
  }
10976
11570
  }
10977
- return G + p + F;
10978
11571
  }
10979
- function X(d, c, e) {
10980
- var h = c.trim().split(ia);
10981
- c = h;
10982
- var a = h.length,
10983
- m = d.length;
10984
- switch (m) {
10985
- case 0:
10986
- case 1:
10987
- var b = 0;
10988
- for (d = 0 === m ? '' : d[0] + ' '; b < a; ++b) {
10989
- c[b] = Z(d, c[b], e).trim();
10990
- }
10991
- break;
10992
- default:
10993
- var v = b = 0;
10994
- for (c = []; b < a; ++b) {
10995
- for (var n = 0; n < m; ++n) {
10996
- c[v++] = Z(d[n] + ' ', h[b], e).trim();
10997
- }
10998
- }
10999
- }
11000
- return c;
11572
+ return string;
11573
+ }
11574
+ var labelPattern$1 = /label:\s*([^\s;\n{]+)\s*(;|$)/g;
11575
+ var sourceMapPattern$1;
11576
+ {
11577
+ sourceMapPattern$1 = /\/\*#\ssourceMappingURL=data:application\/json;\S+\s+\*\//g;
11578
+ } // this is the cursor for keyframes
11579
+ // keyframes are stored on the SerializedStyles object as a linked list
11580
+
11581
+ var cursor$1;
11582
+ var serializeStyles$1 = function serializeStyles(args, registered, mergedProps) {
11583
+ if (args.length === 1 && typeof args[0] === 'object' && args[0] !== null && args[0].styles !== undefined) {
11584
+ return args[0];
11001
11585
  }
11002
- function Z(d, c, e) {
11003
- var h = c.charCodeAt(0);
11004
- 33 > h && (h = (c = c.trim()).charCodeAt(0));
11005
- switch (h) {
11006
- case 38:
11007
- return c.replace(F, '$1' + d.trim());
11008
- case 58:
11009
- return d.trim() + c.replace(F, '$1' + d.trim());
11010
- default:
11011
- if (0 < 1 * e && 0 < c.indexOf('\f')) return c.replace(F, (58 === d.charCodeAt(0) ? '' : '$1') + d.trim());
11012
- }
11013
- return d + c;
11014
- }
11015
- function P(d, c, e, h) {
11016
- var a = d + ';',
11017
- m = 2 * c + 3 * e + 4 * h;
11018
- if (944 === m) {
11019
- d = a.indexOf(':', 9) + 1;
11020
- var b = a.substring(d, a.length - 1).trim();
11021
- b = a.substring(0, d).trim() + b + ';';
11022
- return 1 === w || 2 === w && L(b, 1) ? '-webkit-' + b + b : b;
11023
- }
11024
- if (0 === w || 2 === w && !L(a, 1)) return a;
11025
- switch (m) {
11026
- case 1015:
11027
- return 97 === a.charCodeAt(10) ? '-webkit-' + a + a : a;
11028
- case 951:
11029
- return 116 === a.charCodeAt(3) ? '-webkit-' + a + a : a;
11030
- case 963:
11031
- return 110 === a.charCodeAt(5) ? '-webkit-' + a + a : a;
11032
- case 1009:
11033
- if (100 !== a.charCodeAt(4)) break;
11034
- case 969:
11035
- case 942:
11036
- return '-webkit-' + a + a;
11037
- case 978:
11038
- return '-webkit-' + a + '-moz-' + a + a;
11039
- case 1019:
11040
- case 983:
11041
- return '-webkit-' + a + '-moz-' + a + '-ms-' + a + a;
11042
- case 883:
11043
- if (45 === a.charCodeAt(8)) return '-webkit-' + a + a;
11044
- if (0 < a.indexOf('image-set(', 11)) return a.replace(ja, '$1-webkit-$2') + a;
11045
- break;
11046
- case 932:
11047
- if (45 === a.charCodeAt(4)) switch (a.charCodeAt(5)) {
11048
- case 103:
11049
- return '-webkit-box-' + a.replace('-grow', '') + '-webkit-' + a + '-ms-' + a.replace('grow', 'positive') + a;
11050
- case 115:
11051
- return '-webkit-' + a + '-ms-' + a.replace('shrink', 'negative') + a;
11052
- case 98:
11053
- return '-webkit-' + a + '-ms-' + a.replace('basis', 'preferred-size') + a;
11054
- }
11055
- return '-webkit-' + a + '-ms-' + a + a;
11056
- case 964:
11057
- return '-webkit-' + a + '-ms-flex-' + a + a;
11058
- case 1023:
11059
- if (99 !== a.charCodeAt(8)) break;
11060
- b = a.substring(a.indexOf(':', 15)).replace('flex-', '').replace('space-between', 'justify');
11061
- return '-webkit-box-pack' + b + '-webkit-' + a + '-ms-flex-pack' + b + a;
11062
- case 1005:
11063
- return ka.test(a) ? a.replace(aa, ':-webkit-') + a.replace(aa, ':-moz-') + a : a;
11064
- case 1e3:
11065
- b = a.substring(13).trim();
11066
- c = b.indexOf('-') + 1;
11067
- switch (b.charCodeAt(0) + b.charCodeAt(c)) {
11068
- case 226:
11069
- b = a.replace(G, 'tb');
11070
- break;
11071
- case 232:
11072
- b = a.replace(G, 'tb-rl');
11073
- break;
11074
- case 220:
11075
- b = a.replace(G, 'lr');
11076
- break;
11077
- default:
11078
- return a;
11079
- }
11080
- return '-webkit-' + a + '-ms-' + b + a;
11081
- case 1017:
11082
- if (-1 === a.indexOf('sticky', 9)) break;
11083
- case 975:
11084
- c = (a = d).length - 10;
11085
- b = (33 === a.charCodeAt(c) ? a.substring(0, c) : a).substring(d.indexOf(':', 7) + 1).trim();
11086
- switch (m = b.charCodeAt(0) + (b.charCodeAt(7) | 0)) {
11087
- case 203:
11088
- if (111 > b.charCodeAt(8)) break;
11089
- case 115:
11090
- a = a.replace(b, '-webkit-' + b) + ';' + a;
11091
- break;
11092
- case 207:
11093
- case 102:
11094
- a = a.replace(b, '-webkit-' + (102 < m ? 'inline-' : '') + 'box') + ';' + a.replace(b, '-webkit-' + b) + ';' + a.replace(b, '-ms-' + b + 'box') + ';' + a;
11095
- }
11096
- return a + ';';
11097
- case 938:
11098
- if (45 === a.charCodeAt(5)) switch (a.charCodeAt(6)) {
11099
- case 105:
11100
- return b = a.replace('-items', ''), '-webkit-' + a + '-webkit-box-' + b + '-ms-flex-' + b + a;
11101
- case 115:
11102
- return '-webkit-' + a + '-ms-flex-item-' + a.replace(ba, '') + a;
11103
- default:
11104
- return '-webkit-' + a + '-ms-flex-line-pack' + a.replace('align-content', '').replace(ba, '') + a;
11105
- }
11106
- break;
11107
- case 973:
11108
- case 989:
11109
- if (45 !== a.charCodeAt(3) || 122 === a.charCodeAt(4)) break;
11110
- case 931:
11111
- case 953:
11112
- if (!0 === la.test(d)) return 115 === (b = d.substring(d.indexOf(':') + 1)).charCodeAt(0) ? P(d.replace('stretch', 'fill-available'), c, e, h).replace(':fill-available', ':stretch') : a.replace(b, '-webkit-' + b) + a.replace(b, '-moz-' + b.replace('fill-', '')) + a;
11113
- break;
11114
- case 962:
11115
- if (a = '-webkit-' + a + (102 === a.charCodeAt(5) ? '-ms-' + a : '') + a, 211 === e + h && 105 === a.charCodeAt(13) && 0 < a.indexOf('transform', 10)) return a.substring(0, a.indexOf(';', 27) + 1).replace(ma, '$1-webkit-$2') + a;
11116
- }
11117
- return a;
11118
- }
11119
- function L(d, c) {
11120
- var e = d.indexOf(1 === c ? ':' : '{'),
11121
- h = d.substring(0, 3 !== c ? e : 10);
11122
- e = d.substring(e + 1, d.length - 1);
11123
- return R(2 !== c ? h : h.replace(na, '$1'), e, c);
11124
- }
11125
- function ea(d, c) {
11126
- var e = P(c, c.charCodeAt(0), c.charCodeAt(1), c.charCodeAt(2));
11127
- return e !== c + ';' ? e.replace(oa, ' or ($1)').substring(4) : '(' + c + ')';
11128
- }
11129
- function H(d, c, e, h, a, m, b, v, n, q) {
11130
- for (var g = 0, x = c, w; g < A; ++g) {
11131
- switch (w = S[g].call(B, d, x, e, h, a, m, b, v, n, q)) {
11132
- case void 0:
11133
- case !1:
11134
- case !0:
11135
- case null:
11136
- break;
11137
- default:
11138
- x = w;
11586
+ var stringMode = true;
11587
+ var styles = '';
11588
+ cursor$1 = undefined;
11589
+ var strings = args[0];
11590
+ if (strings == null || strings.raw === undefined) {
11591
+ stringMode = false;
11592
+ styles += handleInterpolation$1(mergedProps, registered, strings);
11593
+ } else {
11594
+ if ( strings[0] === undefined) {
11595
+ console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR$2);
11596
+ }
11597
+ styles += strings[0];
11598
+ } // we start at 1 since we've already handled the first arg
11599
+
11600
+ for (var i = 1; i < args.length; i++) {
11601
+ styles += handleInterpolation$1(mergedProps, registered, args[i]);
11602
+ if (stringMode) {
11603
+ if ( strings[i] === undefined) {
11604
+ console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR$2);
11139
11605
  }
11606
+ styles += strings[i];
11140
11607
  }
11141
- if (x !== c) return x;
11142
11608
  }
11143
- function T(d) {
11144
- switch (d) {
11145
- case void 0:
11146
- case null:
11147
- A = S.length = 0;
11148
- break;
11149
- default:
11150
- switch (d.constructor) {
11151
- case Array:
11152
- for (var c = 0, e = d.length; c < e; ++c) {
11153
- T(d[c]);
11154
- }
11155
- break;
11156
- case Function:
11157
- S[A++] = d;
11158
- break;
11159
- case Boolean:
11160
- Y = !!d | 0;
11161
- }
11162
- }
11163
- return T;
11164
- }
11165
- function U(d) {
11166
- d = d.prefix;
11167
- void 0 !== d && (R = null, d ? 'function' !== typeof d ? w = 1 : (w = 2, R = d) : w = 0);
11168
- return U;
11169
- }
11170
- function B(d, c) {
11171
- var e = d;
11172
- 33 > e.charCodeAt(0) && (e = e.trim());
11173
- V = e;
11174
- e = [V];
11175
- if (0 < A) {
11176
- var h = H(-1, c, e, e, D, z, 0, 0, 0, 0);
11177
- void 0 !== h && 'string' === typeof h && (c = h);
11178
- }
11179
- var a = M(O, e, c, 0, 0);
11180
- 0 < A && (h = H(-2, a, e, e, D, z, a.length, 0, 0, 0), void 0 !== h && (a = h));
11181
- V = '';
11182
- E = 0;
11183
- z = D = 1;
11184
- return a;
11185
- }
11186
- var ca = /^\0+/g,
11187
- N = /[\0\r\f]/g,
11188
- aa = /: */g,
11189
- ka = /zoo|gra/,
11190
- ma = /([,: ])(transform)/g,
11191
- ia = /,\r+?/g,
11192
- F = /([\t\r\n ])*\f?&/g,
11193
- fa = /@(k\w+)\s*(\S*)\s*/,
11194
- Q = /::(place)/g,
11195
- ha = /:(read-only)/g,
11196
- G = /[svh]\w+-[tblr]{2}/,
11197
- da = /\(\s*(.*)\s*\)/g,
11198
- oa = /([\s\S]*?);/g,
11199
- ba = /-self|flex-/g,
11200
- na = /[^]*?(:[rp][el]a[\w-]+)[^]*/,
11201
- la = /stretch|:\s*\w+\-(?:conte|avail)/,
11202
- ja = /([^-])(image-set\()/,
11203
- z = 1,
11204
- D = 1,
11205
- E = 0,
11206
- w = 1,
11207
- O = [],
11208
- S = [],
11209
- A = 0,
11210
- R = null,
11211
- Y = 0,
11212
- V = '';
11213
- B.use = T;
11214
- B.set = U;
11215
- void 0 !== W && U(W);
11216
- return B;
11217
- }
11218
-
11219
- var stylisRuleSheet = createCommonjsModule(function (module, exports) {
11220
- (function (factory) {
11221
- module['exports'] = factory() ;
11222
- })(function () {
11223
-
11224
- return function (insertRule) {
11225
- var delimiter = '/*|*/';
11226
- var needle = delimiter + '}';
11227
- function toSheet(block) {
11228
- if (block) try {
11229
- insertRule(block + '}');
11230
- } catch (e) {}
11231
- }
11232
- return function ruleSheet(context, content, selectors, parents, line, column, length, ns, depth, at) {
11233
- switch (context) {
11234
- // property
11235
- case 1:
11236
- // @import
11237
- if (depth === 0 && content.charCodeAt(0) === 64) return insertRule(content + ';'), '';
11238
- break;
11239
- // selector
11240
- case 2:
11241
- if (ns === 0) return content + delimiter;
11242
- break;
11243
- // at-rule
11244
- case 3:
11245
- switch (ns) {
11246
- // @font-face, @page
11247
- case 102:
11248
- case 112:
11249
- return insertRule(selectors[0] + content), '';
11250
- default:
11251
- return content + (at === 0 ? delimiter : '');
11252
- }
11253
- case -2:
11254
- content.split(needle).forEach(toSheet);
11255
- }
11256
- };
11609
+ var sourceMap;
11610
+ {
11611
+ styles = styles.replace(sourceMapPattern$1, function (match) {
11612
+ sourceMap = match;
11613
+ return '';
11614
+ });
11615
+ } // using a global regex with .exec is stateful so lastIndex has to be reset each time
11616
+
11617
+ labelPattern$1.lastIndex = 0;
11618
+ var identifierName = '';
11619
+ var match; // https://esbench.com/bench/5b809c2cf2949800a0f61fb5
11620
+
11621
+ while ((match = labelPattern$1.exec(styles)) !== null) {
11622
+ identifierName += '-' +
11623
+ // $FlowFixMe we know it's not null
11624
+ match[1];
11625
+ }
11626
+ var name = murmur2$1(styles) + identifierName;
11627
+ {
11628
+ // $FlowFixMe SerializedStyles type doesn't have toString property (and we don't want to add it)
11629
+ return {
11630
+ name: name,
11631
+ styles: styles,
11632
+ map: sourceMap,
11633
+ next: cursor$1,
11634
+ toString: function toString() {
11635
+ return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop).";
11636
+ }
11257
11637
  };
11258
- });
11259
- });
11638
+ }
11639
+ };
11260
11640
 
11261
- var hyphenateRegex$1 = /[A-Z]|^ms/g;
11262
- var processStyleName$1 = memoize$1(function (styleName) {
11263
- return styleName.replace(hyphenateRegex$1, '-$&').toLowerCase();
11264
- });
11265
- var processStyleValue$1 = function processStyleValue(key, value) {
11266
- if (value == null || typeof value === 'boolean') {
11267
- return '';
11641
+ var isBrowser$1 = "object" !== 'undefined';
11642
+ function getRegisteredStyles$1(registered, registeredStyles, classNames) {
11643
+ var rawClassName = '';
11644
+ classNames.split(' ').forEach(function (className) {
11645
+ if (registered[className] !== undefined) {
11646
+ registeredStyles.push(registered[className] + ";");
11647
+ } else {
11648
+ rawClassName += className + " ";
11649
+ }
11650
+ });
11651
+ return rawClassName;
11652
+ }
11653
+ var registerStyles$1 = function registerStyles(cache, serialized, isStringTag) {
11654
+ var className = cache.key + "-" + serialized.name;
11655
+ if (
11656
+ // we only need to add the styles to the registered cache if the
11657
+ // class name could be used further down
11658
+ // the tree but if it's a string tag, we know it won't
11659
+ // so we don't have to add it to registered cache.
11660
+ // this improves memory usage since we can avoid storing the whole style string
11661
+ (isStringTag === false ||
11662
+ // we need to always store it if we're in compat mode and
11663
+ // in node since emotion-server relies on whether a style is in
11664
+ // the registered cache to know whether a style is global or not
11665
+ // also, note that this check will be dead code eliminated in the browser
11666
+ isBrowser$1 === false) && cache.registered[className] === undefined) {
11667
+ cache.registered[className] = serialized.styles;
11268
11668
  }
11269
- if (unitlessKeys$1[key] !== 1 && key.charCodeAt(1) !== 45 &&
11270
- // custom properties
11271
- !isNaN(value) && value !== 0) {
11272
- return value + 'px';
11669
+ };
11670
+ var insertStyles$1 = function insertStyles(cache, serialized, isStringTag) {
11671
+ registerStyles$1(cache, serialized, isStringTag);
11672
+ var className = cache.key + "-" + serialized.name;
11673
+ if (cache.inserted[serialized.name] === undefined) {
11674
+ var current = serialized;
11675
+ do {
11676
+ var maybeStyles = cache.insert(serialized === current ? "." + className : '', current, cache.sheet, true);
11677
+ current = current.next;
11678
+ } while (current !== undefined);
11273
11679
  }
11274
- return value;
11275
11680
  };
11276
- {
11277
- var contentValuePattern$1 = /(attr|calc|counters?|url)\(/;
11278
- var contentValues$1 = ['normal', 'none', 'counter', 'open-quote', 'close-quote', 'no-open-quote', 'no-close-quote', 'initial', 'inherit', 'unset'];
11279
- var oldProcessStyleValue$1 = processStyleValue$1;
11280
- processStyleValue$1 = function processStyleValue(key, value) {
11281
- if (key === 'content') {
11282
- if (typeof value !== 'string' || contentValues$1.indexOf(value) === -1 && !contentValuePattern$1.test(value) && (value.charAt(0) !== value.charAt(value.length - 1) || value.charAt(0) !== '"' && value.charAt(0) !== "'")) {
11283
- console.error("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\"" + value + "\"'`");
11284
- }
11681
+
11682
+ function insertWithoutScoping$1(cache, serialized) {
11683
+ if (cache.inserted[serialized.name] === undefined) {
11684
+ return cache.insert('', serialized, cache.sheet, true);
11685
+ }
11686
+ }
11687
+ function merge(registered, css, className) {
11688
+ var registeredStyles = [];
11689
+ var rawClassName = getRegisteredStyles$1(registered, registeredStyles, className);
11690
+ if (registeredStyles.length < 2) {
11691
+ return className;
11692
+ }
11693
+ return rawClassName + css(registeredStyles);
11694
+ }
11695
+ var createEmotion = function createEmotion(options) {
11696
+ var cache = createCache$1(options); // $FlowFixMe
11697
+
11698
+ cache.sheet.speedy = function (value) {
11699
+ if ( this.ctr !== 0) {
11700
+ throw new Error('speedy must be changed before any rules are inserted');
11285
11701
  }
11286
- return oldProcessStyleValue$1(key, value);
11702
+ this.isSpeedy = value;
11287
11703
  };
11288
- }
11704
+ cache.compat = true;
11705
+ var css = function css() {
11706
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
11707
+ args[_key] = arguments[_key];
11708
+ }
11709
+ var serialized = serializeStyles$1(args, cache.registered, undefined);
11710
+ insertStyles$1(cache, serialized, false);
11711
+ return cache.key + "-" + serialized.name;
11712
+ };
11713
+ var keyframes = function keyframes() {
11714
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
11715
+ args[_key2] = arguments[_key2];
11716
+ }
11717
+ var serialized = serializeStyles$1(args, cache.registered);
11718
+ var animation = "animation-" + serialized.name;
11719
+ insertWithoutScoping$1(cache, {
11720
+ name: serialized.name,
11721
+ styles: "@keyframes " + animation + "{" + serialized.styles + "}"
11722
+ });
11723
+ return animation;
11724
+ };
11725
+ var injectGlobal = function injectGlobal() {
11726
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
11727
+ args[_key3] = arguments[_key3];
11728
+ }
11729
+ var serialized = serializeStyles$1(args, cache.registered);
11730
+ insertWithoutScoping$1(cache, serialized);
11731
+ };
11732
+ var cx = function cx() {
11733
+ for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
11734
+ args[_key4] = arguments[_key4];
11735
+ }
11736
+ return merge(cache.registered, css, classnames(args));
11737
+ };
11738
+ return {
11739
+ css: css,
11740
+ cx: cx,
11741
+ injectGlobal: injectGlobal,
11742
+ keyframes: keyframes,
11743
+ hydrate: function hydrate(ids) {
11744
+ ids.forEach(function (key) {
11745
+ cache.inserted[key] = true;
11746
+ });
11747
+ },
11748
+ flush: function flush() {
11749
+ cache.registered = {};
11750
+ cache.inserted = {};
11751
+ cache.sheet.flush();
11752
+ },
11753
+ // $FlowFixMe
11754
+ sheet: cache.sheet,
11755
+ cache: cache,
11756
+ getRegisteredStyles: getRegisteredStyles$1.bind(null, cache.registered),
11757
+ merge: merge.bind(null, cache.registered, css)
11758
+ };
11759
+ };
11289
11760
  var classnames = function classnames(args) {
11290
- var len = args.length;
11291
- var i = 0;
11292
11761
  var cls = '';
11293
- for (; i < len; i++) {
11762
+ for (var i = 0; i < args.length; i++) {
11294
11763
  var arg = args[i];
11295
11764
  if (arg == null) continue;
11296
11765
  var toAdd = void 0;
11297
11766
  switch (typeof arg) {
11298
11767
  case 'boolean':
11299
11768
  break;
11300
- case 'function':
11301
- {
11302
- console.error('Passing functions to cx is deprecated and will be removed in the next major version of Emotion.\n' + 'Please call the function before passing it to cx.');
11303
- }
11304
- toAdd = classnames([arg()]);
11305
- break;
11306
11769
  case 'object':
11307
11770
  {
11308
11771
  if (Array.isArray(arg)) {
@@ -11330,372 +11793,11 @@
11330
11793
  }
11331
11794
  return cls;
11332
11795
  };
11333
- var isBrowser$1 = typeof document !== 'undefined';
11334
-
11335
- /*
11336
-
11337
- high performance StyleSheet for css-in-js systems
11338
-
11339
- - uses multiple style tags behind the scenes for millions of rules
11340
- - uses `insertRule` for appending in production for *much* faster performance
11341
- - 'polyfills' on server side
11342
-
11343
- // usage
11344
-
11345
- import StyleSheet from 'glamor/lib/sheet'
11346
- let styleSheet = new StyleSheet()
11347
-
11348
- styleSheet.inject()
11349
- - 'injects' the stylesheet into the page (or into memory if on server)
11350
-
11351
- styleSheet.insert('#box { border: 1px solid red; }')
11352
- - appends a css rule into the stylesheet
11353
-
11354
- styleSheet.flush()
11355
- - empties the stylesheet of all its contents
11356
-
11357
- */
11358
- // $FlowFixMe
11359
- function sheetForTag$1(tag) {
11360
- if (tag.sheet) {
11361
- // $FlowFixMe
11362
- return tag.sheet;
11363
- } // this weirdness brought to you by firefox
11364
-
11365
- for (var i = 0; i < document.styleSheets.length; i++) {
11366
- if (document.styleSheets[i].ownerNode === tag) {
11367
- // $FlowFixMe
11368
- return document.styleSheets[i];
11369
- }
11370
- }
11371
- }
11372
- function makeStyleTag(opts) {
11373
- var tag = document.createElement('style');
11374
- tag.setAttribute('data-emotion', opts.key || '');
11375
- if (opts.nonce !== undefined) {
11376
- tag.setAttribute('nonce', opts.nonce);
11377
- }
11378
- tag.appendChild(document.createTextNode('')) // $FlowFixMe
11379
- ;
11380
-
11381
- (opts.container !== undefined ? opts.container : document.head).appendChild(tag);
11382
- return tag;
11383
- }
11384
- var StyleSheet$1 = /*#__PURE__*/
11385
- function () {
11386
- function StyleSheet(options) {
11387
- this.isSpeedy = "development" === 'production'; // the big drawback here is that the css won't be editable in devtools
11388
-
11389
- this.tags = [];
11390
- this.ctr = 0;
11391
- this.opts = options;
11392
- }
11393
- var _proto = StyleSheet.prototype;
11394
- _proto.inject = function inject() {
11395
- if (this.injected) {
11396
- throw new Error('already injected!');
11397
- }
11398
- this.tags[0] = makeStyleTag(this.opts);
11399
- this.injected = true;
11400
- };
11401
- _proto.speedy = function speedy(bool) {
11402
- if (this.ctr !== 0) {
11403
- // cannot change speedy mode after inserting any rule to sheet. Either call speedy(${bool}) earlier in your app, or call flush() before speedy(${bool})
11404
- throw new Error("cannot change speedy now");
11405
- }
11406
- this.isSpeedy = !!bool;
11407
- };
11408
- _proto.insert = function insert(rule, sourceMap) {
11409
- // this is the ultrafast version, works across browsers
11410
- if (this.isSpeedy) {
11411
- var tag = this.tags[this.tags.length - 1];
11412
- var sheet = sheetForTag$1(tag);
11413
- try {
11414
- sheet.insertRule(rule, sheet.cssRules.length);
11415
- } catch (e) {
11416
- {
11417
- console.warn('illegal rule', rule); // eslint-disable-line no-console
11418
- }
11419
- }
11420
- } else {
11421
- var _tag = makeStyleTag(this.opts);
11422
- this.tags.push(_tag);
11423
- _tag.appendChild(document.createTextNode(rule + (sourceMap || '')));
11424
- }
11425
- this.ctr++;
11426
- if (this.ctr % 65000 === 0) {
11427
- this.tags.push(makeStyleTag(this.opts));
11428
- }
11429
- };
11430
- _proto.flush = function flush() {
11431
- // $FlowFixMe
11432
- this.tags.forEach(function (tag) {
11433
- return tag.parentNode.removeChild(tag);
11434
- });
11435
- this.tags = [];
11436
- this.ctr = 0; // todo - look for remnants in document.styleSheets
11437
-
11438
- this.injected = false;
11439
- };
11440
- return StyleSheet;
11441
- }();
11442
- function createEmotion(context, options) {
11443
- if (context.__SECRET_EMOTION__ !== undefined) {
11444
- return context.__SECRET_EMOTION__;
11445
- }
11446
- if (options === undefined) options = {};
11447
- var key = options.key || 'css';
11448
- {
11449
- if (/[^a-z-]/.test(key)) {
11450
- throw new Error("Emotion key must only contain lower case alphabetical characters and - but \"" + key + "\" was passed");
11451
- }
11452
- }
11453
- var current;
11454
- function insertRule(rule) {
11455
- current += rule;
11456
- if (isBrowser$1) {
11457
- sheet.insert(rule, currentSourceMap);
11458
- }
11459
- }
11460
- var insertionPlugin = stylisRuleSheet(insertRule);
11461
- var stylisOptions;
11462
- if (options.prefix !== undefined) {
11463
- stylisOptions = {
11464
- prefix: options.prefix
11465
- };
11466
- }
11467
- var caches = {
11468
- registered: {},
11469
- inserted: {},
11470
- nonce: options.nonce,
11471
- key: key
11472
- };
11473
- var sheet = new StyleSheet$1(options);
11474
- if (isBrowser$1) {
11475
- // 🚀
11476
- sheet.inject();
11477
- }
11478
- var stylis = new stylis_min(stylisOptions);
11479
- stylis.use(options.stylisPlugins)(insertionPlugin);
11480
- var currentSourceMap = '';
11481
- function handleInterpolation(interpolation, couldBeSelectorInterpolation) {
11482
- if (interpolation == null) {
11483
- return '';
11484
- }
11485
- switch (typeof interpolation) {
11486
- case 'boolean':
11487
- return '';
11488
- case 'function':
11489
- if (interpolation.__emotion_styles !== undefined) {
11490
- var selector = interpolation.toString();
11491
- if (selector === 'NO_COMPONENT_SELECTOR' && "development" !== 'production') {
11492
- throw new Error('Component selectors can only be used in conjunction with babel-plugin-emotion.');
11493
- }
11494
- return selector;
11495
- }
11496
- if (this === undefined && "development" !== 'production') {
11497
- console.error('Interpolating functions in css calls is deprecated and will be removed in the next major version of Emotion.\n' + 'If you want to have a css call based on props, create a function that returns a css call like this\n' + 'let dynamicStyle = (props) => css`color: ${props.color}`\n' + 'It can be called directly with props or interpolated in a styled call like this\n' + "let SomeComponent = styled('div')`${dynamicStyle}`");
11498
- }
11499
- return handleInterpolation.call(this, this === undefined ? interpolation() :
11500
- // $FlowFixMe
11501
- interpolation(this.mergedProps, this.context), couldBeSelectorInterpolation);
11502
- case 'object':
11503
- return createStringFromObject.call(this, interpolation);
11504
- default:
11505
- var cached = caches.registered[interpolation];
11506
- return couldBeSelectorInterpolation === false && cached !== undefined ? cached : interpolation;
11507
- }
11508
- }
11509
- var objectToStringCache = new WeakMap();
11510
- function createStringFromObject(obj) {
11511
- if (objectToStringCache.has(obj)) {
11512
- // $FlowFixMe
11513
- return objectToStringCache.get(obj);
11514
- }
11515
- var string = '';
11516
- if (Array.isArray(obj)) {
11517
- obj.forEach(function (interpolation) {
11518
- string += handleInterpolation.call(this, interpolation, false);
11519
- }, this);
11520
- } else {
11521
- Object.keys(obj).forEach(function (key) {
11522
- if (typeof obj[key] !== 'object') {
11523
- if (caches.registered[obj[key]] !== undefined) {
11524
- string += key + "{" + caches.registered[obj[key]] + "}";
11525
- } else {
11526
- string += processStyleName$1(key) + ":" + processStyleValue$1(key, obj[key]) + ";";
11527
- }
11528
- } else {
11529
- if (key === 'NO_COMPONENT_SELECTOR' && "development" !== 'production') {
11530
- throw new Error('Component selectors can only be used in conjunction with babel-plugin-emotion.');
11531
- }
11532
- if (Array.isArray(obj[key]) && typeof obj[key][0] === 'string' && caches.registered[obj[key][0]] === undefined) {
11533
- obj[key].forEach(function (value) {
11534
- string += processStyleName$1(key) + ":" + processStyleValue$1(key, value) + ";";
11535
- });
11536
- } else {
11537
- string += key + "{" + handleInterpolation.call(this, obj[key], false) + "}";
11538
- }
11539
- }
11540
- }, this);
11541
- }
11542
- objectToStringCache.set(obj, string);
11543
- return string;
11544
- }
11545
- var name;
11546
- var stylesWithLabel;
11547
- var labelPattern = /label:\s*([^\s;\n{]+)\s*;/g;
11548
- var createClassName = function createClassName(styles, identifierName) {
11549
- return murmurhash2_32_gc(styles + identifierName) + identifierName;
11550
- };
11551
- {
11552
- var oldCreateClassName = createClassName;
11553
- var sourceMappingUrlPattern = /\/\*#\ssourceMappingURL=data:application\/json;\S+\s+\*\//g;
11554
- createClassName = function createClassName(styles, identifierName) {
11555
- return oldCreateClassName(styles.replace(sourceMappingUrlPattern, function (sourceMap) {
11556
- currentSourceMap = sourceMap;
11557
- return '';
11558
- }), identifierName);
11559
- };
11560
- }
11561
- var createStyles = function createStyles(strings) {
11562
- var stringMode = true;
11563
- var styles = '';
11564
- var identifierName = '';
11565
- if (strings == null || strings.raw === undefined) {
11566
- stringMode = false;
11567
- styles += handleInterpolation.call(this, strings, false);
11568
- } else {
11569
- styles += strings[0];
11570
- }
11571
- for (var _len = arguments.length, interpolations = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
11572
- interpolations[_key - 1] = arguments[_key];
11573
- }
11574
- interpolations.forEach(function (interpolation, i) {
11575
- styles += handleInterpolation.call(this, interpolation, styles.charCodeAt(styles.length - 1) === 46 // .
11576
- );
11577
-
11578
- if (stringMode === true && strings[i + 1] !== undefined) {
11579
- styles += strings[i + 1];
11580
- }
11581
- }, this);
11582
- stylesWithLabel = styles;
11583
- styles = styles.replace(labelPattern, function (match, p1) {
11584
- identifierName += "-" + p1;
11585
- return '';
11586
- });
11587
- name = createClassName(styles, identifierName);
11588
- return styles;
11589
- };
11590
- {
11591
- var oldStylis = stylis;
11592
- stylis = function stylis(selector, styles) {
11593
- oldStylis(selector, styles);
11594
- currentSourceMap = '';
11595
- };
11596
- }
11597
- function insert(scope, styles) {
11598
- if (caches.inserted[name] === undefined) {
11599
- current = '';
11600
- stylis(scope, styles);
11601
- caches.inserted[name] = current;
11602
- }
11603
- }
11604
- var css = function css() {
11605
- var styles = createStyles.apply(this, arguments);
11606
- var selector = key + "-" + name;
11607
- if (caches.registered[selector] === undefined) {
11608
- caches.registered[selector] = stylesWithLabel;
11609
- }
11610
- insert("." + selector, styles);
11611
- return selector;
11612
- };
11613
- var keyframes = function keyframes() {
11614
- var styles = createStyles.apply(this, arguments);
11615
- var animation = "animation-" + name;
11616
- insert('', "@keyframes " + animation + "{" + styles + "}");
11617
- return animation;
11618
- };
11619
- var injectGlobal = function injectGlobal() {
11620
- var styles = createStyles.apply(this, arguments);
11621
- insert('', styles);
11622
- };
11623
- function getRegisteredStyles(registeredStyles, classNames) {
11624
- var rawClassName = '';
11625
- classNames.split(' ').forEach(function (className) {
11626
- if (caches.registered[className] !== undefined) {
11627
- registeredStyles.push(className);
11628
- } else {
11629
- rawClassName += className + " ";
11630
- }
11631
- });
11632
- return rawClassName;
11633
- }
11634
- function merge(className, sourceMap) {
11635
- var registeredStyles = [];
11636
- var rawClassName = getRegisteredStyles(registeredStyles, className);
11637
- if (registeredStyles.length < 2) {
11638
- return className;
11639
- }
11640
- return rawClassName + css(registeredStyles, sourceMap);
11641
- }
11642
- function cx() {
11643
- for (var _len2 = arguments.length, classNames = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
11644
- classNames[_key2] = arguments[_key2];
11645
- }
11646
- return merge(classnames(classNames));
11647
- }
11648
- function hydrateSingleId(id) {
11649
- caches.inserted[id] = true;
11650
- }
11651
- function hydrate(ids) {
11652
- ids.forEach(hydrateSingleId);
11653
- }
11654
- function flush() {
11655
- if (isBrowser$1) {
11656
- sheet.flush();
11657
- sheet.inject();
11658
- }
11659
- caches.inserted = {};
11660
- caches.registered = {};
11661
- }
11662
- if (isBrowser$1) {
11663
- var chunks = document.querySelectorAll("[data-emotion-" + key + "]");
11664
- Array.prototype.forEach.call(chunks, function (node) {
11665
- // $FlowFixMe
11666
- sheet.tags[0].parentNode.insertBefore(node, sheet.tags[0]); // $FlowFixMe
11667
11796
 
11668
- node.getAttribute("data-emotion-" + key).split(' ').forEach(hydrateSingleId);
11669
- });
11670
- }
11671
- var emotion = {
11672
- flush: flush,
11673
- hydrate: hydrate,
11674
- cx: cx,
11675
- merge: merge,
11676
- getRegisteredStyles: getRegisteredStyles,
11677
- injectGlobal: injectGlobal,
11678
- keyframes: keyframes,
11679
- css: css,
11680
- sheet: sheet,
11681
- caches: caches
11682
- };
11683
- context.__SECRET_EMOTION__ = emotion;
11684
- return emotion;
11685
- }
11686
-
11687
- var context = typeof global$1 !== 'undefined' ? global$1 : {};
11688
- var _createEmotion = createEmotion(context),
11689
- flush = _createEmotion.flush,
11690
- hydrate = _createEmotion.hydrate,
11691
- cx = _createEmotion.cx,
11692
- merge = _createEmotion.merge,
11693
- getRegisteredStyles$1 = _createEmotion.getRegisteredStyles,
11694
- injectGlobal = _createEmotion.injectGlobal,
11695
- keyframes = _createEmotion.keyframes,
11696
- css = _createEmotion.css,
11697
- sheet = _createEmotion.sheet,
11698
- caches = _createEmotion.caches;
11797
+ var _createEmotion = createEmotion({
11798
+ key: 'css'
11799
+ }),
11800
+ css = _createEmotion.css;
11699
11801
 
11700
11802
  function _extends$1() {
11701
11803
  _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
@@ -18394,9 +18496,9 @@
18394
18496
  fontSize: '1rem'
18395
18497
  })
18396
18498
  }, null)]), description && vue.createVNode("div", {
18397
- "class": cx('trim', css({
18499
+ "class": ['trim', css({
18398
18500
  marginTop: 3
18399
- }))
18501
+ })]
18400
18502
  }, [vue.createVNode(VueHighlightWords, {
18401
18503
  "searchWords": _this.currentValue.split(' '),
18402
18504
  "textToHighlight": description,
@@ -22497,6 +22599,8 @@
22497
22599
  var _templateObject$o;
22498
22600
  var Slider = styled('div')(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n\tmargin-top: 30px;\n\tpadding: 10px;\n\n\t/* component style */\n\t.vue-slider-disabled {\n\t\topacity: 0.5;\n\t\tcursor: not-allowed;\n\t}\n\n\t/* rail style */\n\t.vue-slider-rail {\n\t\tbackground-color: #ccc;\n\t\tborder-radius: 15px;\n\t\theight: 4px;\n\t}\n\n\t/* process style */\n\t.vue-slider-process {\n\t\tbackground-color: #0b6aff;\n\t\tborder-radius: 15px;\n\t}\n\n\t/* mark style */\n\t.vue-slider-mark {\n\t\tz-index: 4;\n\t}\n\n\t.vue-slider-mark:first-child .vue-slider-mark-step,\n\t.vue-slider-mark:last-child .vue-slider-mark-step {\n\t\tdisplay: none;\n\t}\n\n\t.vue-slider-mark-step {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: rgba(0, 0, 0, 0.16);\n\t}\n\n\t.vue-slider-mark-label {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t}\n\n\t/* dot style */\n\t.vue-slider-dot {\n\t\tz-index: 2;\n\t}\n\n\t.vue-slider-dot-handle {\n\t\tcursor: pointer;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: #fff;\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid #9a9a9a;\n\t\tz-index: 2;\n\t\tbox-shadow: 0.5px 0.5px 2px 1px rgb(0 0 0 / 32%);\n\t}\n\n\t.vue-slider-dot-handle-disabled {\n\t\tcursor: not-allowed;\n\t\tbackground-color: #ccc;\n\t}\n\n\t.vue-slider-dot-tooltip-inner {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t\tpadding: 2px 5px;\n\t\tmin-width: 20px;\n\t\ttext-align: center;\n\t\tcolor: #fff;\n\t\tborder-radius: 5px;\n\t\tborder: 1px solid #3498db;\n\t\tbackground-color: #3498db;\n\t\tbox-sizing: content-box;\n\t}\n\n\t.vue-slider-dot-tooltip-inner::after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-top::after {\n\t\ttop: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-top-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-bottom::after {\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-bottom-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-left::after {\n\t\tleft: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-left-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-right::after {\n\t\tright: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-right-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-wrapper {\n\t\topacity: 0;\n\t\ttransition: all 0.3s;\n\t}\n\t.vue-slider-dot-tooltip-wrapper-show {\n\t\topacity: 1;\n\t}\n\n\t.label-container {\n\t\tmargin: 10px 0;\n\t\twidth: 100%;\n\t}\n\n\t.range-label-right {\n\t\tfloat: right;\n\t}\n"])));
22499
22601
 
22602
+ var global$1 = typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};
22603
+
22500
22604
  /**
22501
22605
  * Caution: Please do not change this file without having a discussion with the Team.
22502
22606
  * Any change may break the umd build, we're directly replacing the line no: 14
@@ -31079,7 +31183,7 @@
31079
31183
  }, queryString, renderFunction);
31080
31184
  }
31081
31185
 
31082
- var version = "3.0.0-alpha.4";
31186
+ var version = "3.0.0-alpha.5";
31083
31187
 
31084
31188
  var components = [RLConnected, ResultCard, ResultList, ReactiveBase, SBConnected, ListConnected, ListConnected$1, RangeConnected$1, RangeConnected$2, RangeConnected$3, RangeConnected, RcConnected, RcConnected$1, TBConnected, ListConnected$2, ListConnected$3, StateProviderConnected, RangeConnected$4];
31085
31189
  function install$1 (Vue) {