@blueprintjs/select
Version:
Components related to selecting items from a list
1 lines • 7.68 kB
Source Map (JSON)
{"version":3,"sources":["../../src/components/multi-select/_multi-select.scss","blueprint-select.css","../../src/common/_variables.scss","../../src/components/omnibar/_omnibar.scss","../../../../node_modules/@blueprintjs/core/src/common/_react-transition.scss","../../../../node_modules/@blueprintjs/colors/lib/scss/colors.scss","../../../../node_modules/@blueprintjs/core/src/common/_variables.scss","../../src/components/select/_select.scss","../../src/components/suggest/_suggest.scss"],"names":[],"mappings":"AAOA;EACE,eAAA;ACMF;;ADFE;EAGE,WAVa;ACajB;ADAE;EACE,eAAA;ACEJ;ADGE;EACE,iBAAA;ACDJ;ADIE;EAIE,gBAAA;EACA,iBAAA;EACA,gBEzBwB;EF0BxB,eEzBuB;EF0BvB,aAAA;ACLJ;ADQE;EACE,UAAA;ACNJ;ADQI;EACE,cAAA;EACA,WAAA;ACNN;AExBA;EC+FI,cAAA;EAAA,SAAA;ED5EF,wBETM;EFUN,iBG8BiB;EH7BjB,kHGuEA;EHtEA,sBAAA;EACA,QAAA;EACA,WA3Bc;EA4Bd,UAAA;AF2DF;AGXE;EAsBE,iBAAA;EAAA,SAAA;AHPJ;AGXE;EAkBE,cAAA;EAAA,SAAA;EAhBA,kBA/DM;EAgEN,yBDjEW;ECkEX,mCAAA;EAEA,0DE+BiB;ALjBrB;AGxBE;EAsBE,cAAA;EAAA,SAAA;AHMJ;AGxBE;EAkBE,iBAAA;EAAA,SAAA;EAhBA,kBA/DM;EAgEN,yBDjEW;ECkEX,mCAAA;EAEA,0DE+BiB;ALJrB;AEnFE;EACE,4BAAA;EACA,eAAA;AFqFJ;AEnFI;EAEE,eAAA;AFoFN;AEhFE;EACE,4BAAA;EACA,eAAA;EACA,+CAAA;EACA,4BAAA;EACA,aAAA;AFkFJ;AEhFI;EACE,YAAA;AFkFN;AE9EE;EAEE,wBEzDS;EF0DT,2HGyDF;ALsBF;;AE3EA;EACE,sCAAA;AF8EF;AM7IE;EAGE,WANa;AN0JjB;AMjJE;EACE,eAAA;ANmJJ;AMhJE;EAIE,gBAAA;EACA,iBAAA;EACA,gBLfwB;EKgBxB,eLfuB;EKgBvB,aAAA;EACA,aAAA;AN+IJ;AM7II;EAEE,eA1BW;ANwKjB;AM1IE;EACE,UAAA;AN4IJ;AM1II;EACE,cAAA;EACA,WAAA;AN4IN;AO9KE;EACE,gBNEwB;EMDxB,eNEuB;EMDvB,aAAA;APuLJ;AOpLE;EACE,UAAA;APsLJ;AOpLI;EACE,cAAA;EACA,WAAA;APsLN","file":"blueprint-select.css","sourcesContent":[null,"/*\n\nCopyright 2017-present Palantir Technologies, Inc. All rights reserved.\nLicensed under the Apache License, Version 2.0.\n\n*/\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp5-multi-select {\n min-width: 150px;\n}\n\n.bp5-multi-select-popover .bp5-popover-content {\n padding: 5px;\n}\n.bp5-multi-select-popover .bp5-multi-select-popover-default-width {\n max-width: 350px;\n}\n.bp5-multi-select-popover .bp5-multi-select-popover-tag-input-margin {\n margin-bottom: 1px;\n}\n.bp5-multi-select-popover .bp5-menu {\n margin-left: -5px;\n margin-right: -5px;\n max-height: 300px;\n max-width: 400px;\n overflow: auto;\n}\n.bp5-multi-select-popover.bp5-popover-match-target-width {\n width: 100%;\n}\n.bp5-multi-select-popover.bp5-popover-match-target-width .bp5-menu {\n max-width: none;\n min-width: 0;\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\nA mixin to generate the classes for a React CSSTransition which animates any number of CSS\nproperties at once.\n\nTransitioned properties are specificed as a map of property names to lists of (inital value, final\nvalue). For enter & appear transitions, each property will transition from its initial to its final\nvalue. For exit transitions, each property will transition in reverse, from final to initial.\n\n**Simple example:**\n`@include react-transition(\"popover\", (opacity: 0 1), $before: \"&\");`\nTransition named \"popover\" moves opacity from 0 to 1. `\"&\"` indicates that the\nTransition classes are expected to be applied to this element, where the mixin is invoked.\n\n**Params:**\n$name: React transitionName prop\n$properties: map of CSS property to (initial, final) values\n$duration: transition duration\n$easing: transition easing function\n$delay: transition delay\n$before: selector text to insert before transition name (often to select self: &)\n$after: selector text to insert after transiton name (to select children)\n*/\n/*\nA mixin to generate the classes for one phase of a React CSSTransition.\n`$phase` must be `appear` or `enter` or `exit`.\nIf `enter` phase is given then `appear` phase will be generated at the same time.\nIf `exit` phase is given then property values are animated in reverse, from final to initial.\n\n**Example:**\n@include react-transition-phase(toast, enter, $enter-translate, $before: \"&\");\n@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: \"&\");\n*/\n/*\nGiven map of properties to values, set each property to the value at the given index.\n(remember that sass indices are 1-based).\n\nExample: `each-prop((opacity: 0 1), 2)` will print \"opacity: 1\"\n*/\n/*\nFormat transition class name with all the bits.\n\"enter\" phase will include \"appear\" phase in returned name.\n*/\n.bp5-omnibar {\n filter: blur(0);\n opacity: 1;\n background-color: #ffffff;\n border-radius: 2px;\n box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 4px 8px rgba(17, 20, 24, 0.2), 0 18px 46px 6px rgba(17, 20, 24, 0.2);\n left: calc(50% - 250px);\n top: 20vh;\n width: 500px;\n z-index: 21;\n}\n.bp5-omnibar.bp5-overlay-enter, .bp5-omnibar.bp5-overlay-appear {\n filter: blur(20px);\n opacity: 0;\n}\n.bp5-omnibar.bp5-overlay-enter-active, .bp5-omnibar.bp5-overlay-appear-active {\n filter: blur(0);\n opacity: 1;\n transition-delay: 0;\n transition-duration: 200ms;\n transition-property: filter, opacity;\n /* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */\n transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);\n}\n.bp5-omnibar.bp5-overlay-exit {\n filter: blur(0);\n opacity: 1;\n}\n.bp5-omnibar.bp5-overlay-exit-active {\n filter: blur(20px);\n opacity: 0;\n transition-delay: 0;\n transition-duration: 200ms;\n transition-property: filter, opacity;\n /* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */\n transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);\n}\n.bp5-omnibar .bp5-input {\n background-color: transparent;\n border-radius: 0;\n}\n.bp5-omnibar .bp5-input, .bp5-omnibar .bp5-input:focus {\n box-shadow: none;\n}\n.bp5-omnibar .bp5-menu {\n background-color: transparent;\n border-radius: 0;\n box-shadow: inset 0 1px 0 rgba(17, 20, 24, 0.15);\n max-height: calc(60vh - 40px);\n overflow: auto;\n}\n.bp5-omnibar .bp5-menu:empty {\n display: none;\n}\n.bp5-dark .bp5-omnibar, .bp5-omnibar.bp5-dark {\n background-color: #2f343c;\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 8px rgba(17, 20, 24, 0.4), 0 18px 46px 6px rgba(17, 20, 24, 0.4);\n}\n\n.bp5-omnibar-overlay .bp5-overlay-backdrop {\n background-color: rgba(17, 20, 24, 0.2);\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp5-select-popover .bp5-popover-content {\n padding: 5px;\n}\n.bp5-select-popover .bp5-input-group {\n margin-bottom: 0;\n}\n.bp5-select-popover .bp5-menu {\n margin-left: -5px;\n margin-right: -5px;\n max-height: 300px;\n max-width: 400px;\n overflow: auto;\n padding: 0 5px;\n}\n.bp5-select-popover .bp5-menu:not(:first-child) {\n padding-top: 5px;\n}\n.bp5-select-popover.bp5-popover-match-target-width {\n width: 100%;\n}\n.bp5-select-popover.bp5-popover-match-target-width .bp5-menu {\n max-width: none;\n min-width: 0;\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp5-suggest-popover .bp5-menu {\n max-height: 300px;\n max-width: 400px;\n overflow: auto;\n}\n.bp5-suggest-popover.bp5-popover-match-target-width {\n width: 100%;\n}\n.bp5-suggest-popover.bp5-popover-match-target-width .bp5-menu {\n max-width: none;\n min-width: 0;\n}",null,null,null,null,null,null,null]}