@instructure/ui-simple-select 10.3.1-snapshot-8 → 10.3.1-snapshot-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
 - package/es/SimpleSelect/__new-tests__/SimpleSelect.test.js +241 -36
 - package/lib/SimpleSelect/__new-tests__/SimpleSelect.test.js +240 -38
 - package/package.json +16 -15
 - package/src/SimpleSelect/__new-tests__/SimpleSelect.test.tsx +312 -38
 - package/tsconfig.build.json +1 -1
 - package/tsconfig.build.tsbuildinfo +1 -1
 - package/types/SimpleSelect/__new-tests__/SimpleSelect.test.d.ts.map +1 -1
 - package/es/SimpleSelect/SimpleSelectLocator.js +0 -38
 - package/es/SimpleSelect/locator.js +0 -26
 - package/lib/SimpleSelect/SimpleSelectLocator.js +0 -44
 - package/lib/SimpleSelect/locator.js +0 -37
 - package/src/SimpleSelect/SimpleSelectLocator.ts +0 -39
 - package/src/SimpleSelect/locator.ts +0 -27
 - package/types/SimpleSelect/SimpleSelectLocator.d.ts +0 -325
 - package/types/SimpleSelect/SimpleSelectLocator.d.ts.map +0 -1
 - package/types/SimpleSelect/locator.d.ts +0 -4
 - package/types/SimpleSelect/locator.d.ts.map +0 -1
 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"SimpleSelect.test.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/__new-tests__/SimpleSelect.test.tsx"],"names":[],"mappings":" 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"SimpleSelect.test.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/__new-tests__/SimpleSelect.test.tsx"],"names":[],"mappings":"AA2BA,OAAO,2BAA2B,CAAA"}
         
     | 
| 
         @@ -1,38 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*
         
     | 
| 
       2 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       3 
     | 
    
         
            -
             *
         
     | 
| 
       4 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       5 
     | 
    
         
            -
             *
         
     | 
| 
       6 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       7 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       8 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       9 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       10 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       11 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       12 
     | 
    
         
            -
             *
         
     | 
| 
       13 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       14 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       15 
     | 
    
         
            -
             *
         
     | 
| 
       16 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       17 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       18 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       19 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       20 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       21 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       22 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       23 
     | 
    
         
            -
             */
         
     | 
| 
       24 
     | 
    
         
            -
            import { locator } from '@instructure/ui-test-locator';
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            /* eslint-disable no-restricted-imports */
         
     | 
| 
       27 
     | 
    
         
            -
            // @ts-ignore: Cannot find module
         
     | 
| 
       28 
     | 
    
         
            -
            import { SelectLocator } from '@instructure/ui-select/es/Select/SelectLocator';
         
     | 
| 
       29 
     | 
    
         
            -
            /* eslint-enable no-restricted-imports */
         
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
            import { SimpleSelect } from './index';
         
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
            // @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
         
     | 
| 
       34 
     | 
    
         
            -
            export const SimpleSelectLocator = locator(SimpleSelect.selector, {
         
     | 
| 
       35 
     | 
    
         
            -
              findInput: SelectLocator.findInput,
         
     | 
| 
       36 
     | 
    
         
            -
              // TODO these dont work because TS doesnt find its type declarations,
         
     | 
| 
       37 
     | 
    
         
            -
              findOptionsList: SelectLocator.findOptionsList
         
     | 
| 
       38 
     | 
    
         
            -
            });
         
     | 
| 
         @@ -1,26 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*
         
     | 
| 
       2 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       3 
     | 
    
         
            -
             *
         
     | 
| 
       4 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       5 
     | 
    
         
            -
             *
         
     | 
| 
       6 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       7 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       8 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       9 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       10 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       11 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       12 
     | 
    
         
            -
             *
         
     | 
| 
       13 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       14 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       15 
     | 
    
         
            -
             *
         
     | 
| 
       16 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       17 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       18 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       19 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       20 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       21 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       22 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       23 
     | 
    
         
            -
             */
         
     | 
| 
       24 
     | 
    
         
            -
            import { SimpleSelectLocator } from './SimpleSelectLocator';
         
     | 
| 
       25 
     | 
    
         
            -
            export { SimpleSelectLocator };
         
     | 
| 
       26 
     | 
    
         
            -
            export default SimpleSelectLocator;
         
     | 
| 
         @@ -1,44 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            "use strict";
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            Object.defineProperty(exports, "__esModule", {
         
     | 
| 
       4 
     | 
    
         
            -
              value: true
         
     | 
| 
       5 
     | 
    
         
            -
            });
         
     | 
| 
       6 
     | 
    
         
            -
            exports.SimpleSelectLocator = void 0;
         
     | 
| 
       7 
     | 
    
         
            -
            var _locator = require("@instructure/ui-test-locator/lib/utils/locator.js");
         
     | 
| 
       8 
     | 
    
         
            -
            var _SelectLocator = require("@instructure/ui-select/lib/Select/SelectLocator");
         
     | 
| 
       9 
     | 
    
         
            -
            var _index = require("./index");
         
     | 
| 
       10 
     | 
    
         
            -
            /*
         
     | 
| 
       11 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       12 
     | 
    
         
            -
             *
         
     | 
| 
       13 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       14 
     | 
    
         
            -
             *
         
     | 
| 
       15 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       16 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       17 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       18 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       19 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       20 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       21 
     | 
    
         
            -
             *
         
     | 
| 
       22 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       23 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       24 
     | 
    
         
            -
             *
         
     | 
| 
       25 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       26 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       27 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       28 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       29 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       30 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       31 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       32 
     | 
    
         
            -
             */
         
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
            /* eslint-disable no-restricted-imports */
         
     | 
| 
       35 
     | 
    
         
            -
            // @ts-ignore: Cannot find module
         
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
            /* eslint-enable no-restricted-imports */
         
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
            // @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
         
     | 
| 
       40 
     | 
    
         
            -
            const SimpleSelectLocator = exports.SimpleSelectLocator = (0, _locator.locator)(_index.SimpleSelect.selector, {
         
     | 
| 
       41 
     | 
    
         
            -
              findInput: _SelectLocator.SelectLocator.findInput,
         
     | 
| 
       42 
     | 
    
         
            -
              // TODO these dont work because TS doesnt find its type declarations,
         
     | 
| 
       43 
     | 
    
         
            -
              findOptionsList: _SelectLocator.SelectLocator.findOptionsList
         
     | 
| 
       44 
     | 
    
         
            -
            });
         
     | 
| 
         @@ -1,37 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            "use strict";
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            Object.defineProperty(exports, "__esModule", {
         
     | 
| 
       4 
     | 
    
         
            -
              value: true
         
     | 
| 
       5 
     | 
    
         
            -
            });
         
     | 
| 
       6 
     | 
    
         
            -
            Object.defineProperty(exports, "SimpleSelectLocator", {
         
     | 
| 
       7 
     | 
    
         
            -
              enumerable: true,
         
     | 
| 
       8 
     | 
    
         
            -
              get: function () {
         
     | 
| 
       9 
     | 
    
         
            -
                return _SimpleSelectLocator.SimpleSelectLocator;
         
     | 
| 
       10 
     | 
    
         
            -
              }
         
     | 
| 
       11 
     | 
    
         
            -
            });
         
     | 
| 
       12 
     | 
    
         
            -
            exports.default = void 0;
         
     | 
| 
       13 
     | 
    
         
            -
            var _SimpleSelectLocator = require("./SimpleSelectLocator");
         
     | 
| 
       14 
     | 
    
         
            -
            /*
         
     | 
| 
       15 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       16 
     | 
    
         
            -
             *
         
     | 
| 
       17 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       18 
     | 
    
         
            -
             *
         
     | 
| 
       19 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       20 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       21 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       22 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       23 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       24 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       25 
     | 
    
         
            -
             *
         
     | 
| 
       26 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       27 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       28 
     | 
    
         
            -
             *
         
     | 
| 
       29 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       30 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       31 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       32 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       33 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       34 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       35 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       36 
     | 
    
         
            -
             */
         
     | 
| 
       37 
     | 
    
         
            -
            var _default = exports.default = _SimpleSelectLocator.SimpleSelectLocator;
         
     | 
| 
         @@ -1,39 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*
         
     | 
| 
       2 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       3 
     | 
    
         
            -
             *
         
     | 
| 
       4 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       5 
     | 
    
         
            -
             *
         
     | 
| 
       6 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       7 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       8 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       9 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       10 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       11 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       12 
     | 
    
         
            -
             *
         
     | 
| 
       13 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       14 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       15 
     | 
    
         
            -
             *
         
     | 
| 
       16 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       17 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       18 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       19 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       20 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       21 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       22 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       23 
     | 
    
         
            -
             */
         
     | 
| 
       24 
     | 
    
         
            -
            import { locator } from '@instructure/ui-test-locator'
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            /* eslint-disable no-restricted-imports */
         
     | 
| 
       27 
     | 
    
         
            -
            // @ts-ignore: Cannot find module
         
     | 
| 
       28 
     | 
    
         
            -
            import { SelectLocator } from '@instructure/ui-select/es/Select/SelectLocator'
         
     | 
| 
       29 
     | 
    
         
            -
            /* eslint-enable no-restricted-imports */
         
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
            import { SimpleSelect } from './index'
         
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
            // @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
         
     | 
| 
       34 
     | 
    
         
            -
            export const SimpleSelectLocator = locator(SimpleSelect.selector, {
         
     | 
| 
       35 
     | 
    
         
            -
              findInput: SelectLocator.findInput as (...args: any) => Promise<any>, // TODO these dont work because TS doesnt find its type declarations,
         
     | 
| 
       36 
     | 
    
         
            -
              findOptionsList: SelectLocator.findOptionsList as (
         
     | 
| 
       37 
     | 
    
         
            -
                ...args: any
         
     | 
| 
       38 
     | 
    
         
            -
              ) => Promise<any>
         
     | 
| 
       39 
     | 
    
         
            -
            })
         
     | 
| 
         @@ -1,27 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*
         
     | 
| 
       2 
     | 
    
         
            -
             * The MIT License (MIT)
         
     | 
| 
       3 
     | 
    
         
            -
             *
         
     | 
| 
       4 
     | 
    
         
            -
             * Copyright (c) 2015 - present Instructure, Inc.
         
     | 
| 
       5 
     | 
    
         
            -
             *
         
     | 
| 
       6 
     | 
    
         
            -
             * Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       7 
     | 
    
         
            -
             * of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       8 
     | 
    
         
            -
             * in the Software without restriction, including without limitation the rights
         
     | 
| 
       9 
     | 
    
         
            -
             * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       10 
     | 
    
         
            -
             * copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       11 
     | 
    
         
            -
             * furnished to do so, subject to the following conditions:
         
     | 
| 
       12 
     | 
    
         
            -
             *
         
     | 
| 
       13 
     | 
    
         
            -
             * The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       14 
     | 
    
         
            -
             * copies or substantial portions of the Software.
         
     | 
| 
       15 
     | 
    
         
            -
             *
         
     | 
| 
       16 
     | 
    
         
            -
             * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       17 
     | 
    
         
            -
             * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       18 
     | 
    
         
            -
             * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       19 
     | 
    
         
            -
             * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       20 
     | 
    
         
            -
             * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       21 
     | 
    
         
            -
             * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       22 
     | 
    
         
            -
             * SOFTWARE.
         
     | 
| 
       23 
     | 
    
         
            -
             */
         
     | 
| 
       24 
     | 
    
         
            -
            import { SimpleSelectLocator } from './SimpleSelectLocator'
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            export { SimpleSelectLocator }
         
     | 
| 
       27 
     | 
    
         
            -
            export default SimpleSelectLocator
         
     | 
| 
         @@ -1,325 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            export declare const SimpleSelectLocator: {
         
     | 
| 
       2 
     | 
    
         
            -
                customMethods: {
         
     | 
| 
       3 
     | 
    
         
            -
                    findInput: (...args: any) => Promise<any>;
         
     | 
| 
       4 
     | 
    
         
            -
                    findOptionsList: (...args: any) => Promise<any>;
         
     | 
| 
       5 
     | 
    
         
            -
                };
         
     | 
| 
       6 
     | 
    
         
            -
                selector: string;
         
     | 
| 
       7 
     | 
    
         
            -
                query: (...args: import("@instructure/ui-test-locator").QueryArguments) => Element;
         
     | 
| 
       8 
     | 
    
         
            -
                queryAll: {
         
     | 
| 
       9 
     | 
    
         
            -
                    (element: Element, selector: string | undefined, options: import("@instructure/ui-test-locator").SelectorOptions): Element[];
         
     | 
| 
       10 
     | 
    
         
            -
                    displayName: string;
         
     | 
| 
       11 
     | 
    
         
            -
                };
         
     | 
| 
       12 
     | 
    
         
            -
                findAll: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<(import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
         
     | 
| 
       13 
     | 
    
         
            -
                    input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       14 
     | 
    
         
            -
                    progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       15 
     | 
    
         
            -
                    select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       16 
     | 
    
         
            -
                    contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       17 
     | 
    
         
            -
                    submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       18 
     | 
    
         
            -
                    copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       19 
     | 
    
         
            -
                    cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       20 
     | 
    
         
            -
                    paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       21 
     | 
    
         
            -
                    compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       22 
     | 
    
         
            -
                    compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       23 
     | 
    
         
            -
                    compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       24 
     | 
    
         
            -
                    focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       25 
     | 
    
         
            -
                    focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       26 
     | 
    
         
            -
                    focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       27 
     | 
    
         
            -
                    change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       28 
     | 
    
         
            -
                    beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       29 
     | 
    
         
            -
                    invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       30 
     | 
    
         
            -
                    click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       31 
     | 
    
         
            -
                    dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       32 
     | 
    
         
            -
                    drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       33 
     | 
    
         
            -
                    dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       34 
     | 
    
         
            -
                    dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       35 
     | 
    
         
            -
                    dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       36 
     | 
    
         
            -
                    dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       37 
     | 
    
         
            -
                    dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       38 
     | 
    
         
            -
                    dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       39 
     | 
    
         
            -
                    drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       40 
     | 
    
         
            -
                    mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       41 
     | 
    
         
            -
                    mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       42 
     | 
    
         
            -
                    mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       43 
     | 
    
         
            -
                    mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       44 
     | 
    
         
            -
                    mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       45 
     | 
    
         
            -
                    mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       46 
     | 
    
         
            -
                    mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       47 
     | 
    
         
            -
                    touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       48 
     | 
    
         
            -
                    touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       49 
     | 
    
         
            -
                    touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       50 
     | 
    
         
            -
                    touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       51 
     | 
    
         
            -
                    scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       52 
     | 
    
         
            -
                    wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       53 
     | 
    
         
            -
                    abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       54 
     | 
    
         
            -
                    canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       55 
     | 
    
         
            -
                    canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       56 
     | 
    
         
            -
                    durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       57 
     | 
    
         
            -
                    emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       58 
     | 
    
         
            -
                    encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       59 
     | 
    
         
            -
                    ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       60 
     | 
    
         
            -
                    loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       61 
     | 
    
         
            -
                    loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       62 
     | 
    
         
            -
                    loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       63 
     | 
    
         
            -
                    pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       64 
     | 
    
         
            -
                    play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       65 
     | 
    
         
            -
                    playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       66 
     | 
    
         
            -
                    rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       67 
     | 
    
         
            -
                    seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       68 
     | 
    
         
            -
                    seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       69 
     | 
    
         
            -
                    stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       70 
     | 
    
         
            -
                    suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       71 
     | 
    
         
            -
                    timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       72 
     | 
    
         
            -
                    volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       73 
     | 
    
         
            -
                    waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       74 
     | 
    
         
            -
                    load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       75 
     | 
    
         
            -
                    error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       76 
     | 
    
         
            -
                    animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       77 
     | 
    
         
            -
                    animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       78 
     | 
    
         
            -
                    animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       79 
     | 
    
         
            -
                    transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       80 
     | 
    
         
            -
                } & {
         
     | 
| 
       81 
     | 
    
         
            -
                    blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
         
     | 
| 
       82 
     | 
    
         
            -
                } & {
         
     | 
| 
       83 
     | 
    
         
            -
                    keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       84 
     | 
    
         
            -
                    keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       85 
     | 
    
         
            -
                    keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       86 
     | 
    
         
            -
                } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
         
     | 
| 
       87 
     | 
    
         
            -
                    findInput: (...args: any) => Promise<any>;
         
     | 
| 
       88 
     | 
    
         
            -
                    findOptionsList: (...args: any) => Promise<any>;
         
     | 
| 
       89 
     | 
    
         
            -
                }>)[]>;
         
     | 
| 
       90 
     | 
    
         
            -
                find: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
         
     | 
| 
       91 
     | 
    
         
            -
                    copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       92 
     | 
    
         
            -
                    cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       93 
     | 
    
         
            -
                    paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       94 
     | 
    
         
            -
                    compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       95 
     | 
    
         
            -
                    compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       96 
     | 
    
         
            -
                    compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       97 
     | 
    
         
            -
                    focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       98 
     | 
    
         
            -
                    focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       99 
     | 
    
         
            -
                    focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       100 
     | 
    
         
            -
                    change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       101 
     | 
    
         
            -
                    beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       102 
     | 
    
         
            -
                    input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       103 
     | 
    
         
            -
                    invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       104 
     | 
    
         
            -
                    submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       105 
     | 
    
         
            -
                    click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       106 
     | 
    
         
            -
                    contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       107 
     | 
    
         
            -
                    dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       108 
     | 
    
         
            -
                    drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       109 
     | 
    
         
            -
                    dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       110 
     | 
    
         
            -
                    dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       111 
     | 
    
         
            -
                    dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       112 
     | 
    
         
            -
                    dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       113 
     | 
    
         
            -
                    dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       114 
     | 
    
         
            -
                    dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       115 
     | 
    
         
            -
                    drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       116 
     | 
    
         
            -
                    mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       117 
     | 
    
         
            -
                    mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       118 
     | 
    
         
            -
                    mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       119 
     | 
    
         
            -
                    mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       120 
     | 
    
         
            -
                    mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       121 
     | 
    
         
            -
                    mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       122 
     | 
    
         
            -
                    mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       123 
     | 
    
         
            -
                    select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       124 
     | 
    
         
            -
                    touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       125 
     | 
    
         
            -
                    touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       126 
     | 
    
         
            -
                    touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       127 
     | 
    
         
            -
                    touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       128 
     | 
    
         
            -
                    scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       129 
     | 
    
         
            -
                    wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       130 
     | 
    
         
            -
                    abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       131 
     | 
    
         
            -
                    canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       132 
     | 
    
         
            -
                    canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       133 
     | 
    
         
            -
                    durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       134 
     | 
    
         
            -
                    emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       135 
     | 
    
         
            -
                    encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       136 
     | 
    
         
            -
                    ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       137 
     | 
    
         
            -
                    loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       138 
     | 
    
         
            -
                    loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       139 
     | 
    
         
            -
                    loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       140 
     | 
    
         
            -
                    pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       141 
     | 
    
         
            -
                    play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       142 
     | 
    
         
            -
                    playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       143 
     | 
    
         
            -
                    progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       144 
     | 
    
         
            -
                    rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       145 
     | 
    
         
            -
                    seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       146 
     | 
    
         
            -
                    seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       147 
     | 
    
         
            -
                    stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       148 
     | 
    
         
            -
                    suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       149 
     | 
    
         
            -
                    timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       150 
     | 
    
         
            -
                    volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       151 
     | 
    
         
            -
                    waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       152 
     | 
    
         
            -
                    load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       153 
     | 
    
         
            -
                    error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       154 
     | 
    
         
            -
                    animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       155 
     | 
    
         
            -
                    animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       156 
     | 
    
         
            -
                    animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       157 
     | 
    
         
            -
                    transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       158 
     | 
    
         
            -
                } & {
         
     | 
| 
       159 
     | 
    
         
            -
                    blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
         
     | 
| 
       160 
     | 
    
         
            -
                } & {
         
     | 
| 
       161 
     | 
    
         
            -
                    keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       162 
     | 
    
         
            -
                    keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       163 
     | 
    
         
            -
                    keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       164 
     | 
    
         
            -
                } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
         
     | 
| 
       165 
     | 
    
         
            -
                    findInput: (...args: any) => Promise<any>;
         
     | 
| 
       166 
     | 
    
         
            -
                    findOptionsList: (...args: any) => Promise<any>;
         
     | 
| 
       167 
     | 
    
         
            -
                }>>;
         
     | 
| 
       168 
     | 
    
         
            -
                findWithText: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
         
     | 
| 
       169 
     | 
    
         
            -
                    copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       170 
     | 
    
         
            -
                    cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       171 
     | 
    
         
            -
                    paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       172 
     | 
    
         
            -
                    compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       173 
     | 
    
         
            -
                    compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       174 
     | 
    
         
            -
                    compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       175 
     | 
    
         
            -
                    focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       176 
     | 
    
         
            -
                    focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       177 
     | 
    
         
            -
                    focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       178 
     | 
    
         
            -
                    change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       179 
     | 
    
         
            -
                    beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       180 
     | 
    
         
            -
                    input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       181 
     | 
    
         
            -
                    invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       182 
     | 
    
         
            -
                    submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       183 
     | 
    
         
            -
                    click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       184 
     | 
    
         
            -
                    contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       185 
     | 
    
         
            -
                    dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       186 
     | 
    
         
            -
                    drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       187 
     | 
    
         
            -
                    dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       188 
     | 
    
         
            -
                    dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       189 
     | 
    
         
            -
                    dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       190 
     | 
    
         
            -
                    dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       191 
     | 
    
         
            -
                    dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       192 
     | 
    
         
            -
                    dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       193 
     | 
    
         
            -
                    drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       194 
     | 
    
         
            -
                    mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       195 
     | 
    
         
            -
                    mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       196 
     | 
    
         
            -
                    mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       197 
     | 
    
         
            -
                    mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       198 
     | 
    
         
            -
                    mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       199 
     | 
    
         
            -
                    mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       200 
     | 
    
         
            -
                    mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       201 
     | 
    
         
            -
                    select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       202 
     | 
    
         
            -
                    touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       203 
     | 
    
         
            -
                    touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       204 
     | 
    
         
            -
                    touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       205 
     | 
    
         
            -
                    touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       206 
     | 
    
         
            -
                    scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       207 
     | 
    
         
            -
                    wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       208 
     | 
    
         
            -
                    abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       209 
     | 
    
         
            -
                    canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       210 
     | 
    
         
            -
                    canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       211 
     | 
    
         
            -
                    durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       212 
     | 
    
         
            -
                    emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       213 
     | 
    
         
            -
                    encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       214 
     | 
    
         
            -
                    ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       215 
     | 
    
         
            -
                    loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       216 
     | 
    
         
            -
                    loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       217 
     | 
    
         
            -
                    loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       218 
     | 
    
         
            -
                    pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       219 
     | 
    
         
            -
                    play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       220 
     | 
    
         
            -
                    playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       221 
     | 
    
         
            -
                    progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       222 
     | 
    
         
            -
                    rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       223 
     | 
    
         
            -
                    seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       224 
     | 
    
         
            -
                    seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       225 
     | 
    
         
            -
                    stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       226 
     | 
    
         
            -
                    suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       227 
     | 
    
         
            -
                    timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       228 
     | 
    
         
            -
                    volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       229 
     | 
    
         
            -
                    waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       230 
     | 
    
         
            -
                    load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       231 
     | 
    
         
            -
                    error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       232 
     | 
    
         
            -
                    animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       233 
     | 
    
         
            -
                    animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       234 
     | 
    
         
            -
                    animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       235 
     | 
    
         
            -
                    transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       236 
     | 
    
         
            -
                } & {
         
     | 
| 
       237 
     | 
    
         
            -
                    blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
         
     | 
| 
       238 
     | 
    
         
            -
                } & {
         
     | 
| 
       239 
     | 
    
         
            -
                    keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       240 
     | 
    
         
            -
                    keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       241 
     | 
    
         
            -
                    keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       242 
     | 
    
         
            -
                } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
         
     | 
| 
       243 
     | 
    
         
            -
                    findInput: (...args: any) => Promise<any>;
         
     | 
| 
       244 
     | 
    
         
            -
                    findOptionsList: (...args: any) => Promise<any>;
         
     | 
| 
       245 
     | 
    
         
            -
                }>>;
         
     | 
| 
       246 
     | 
    
         
            -
                findWithLabel: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
         
     | 
| 
       247 
     | 
    
         
            -
                    copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       248 
     | 
    
         
            -
                    cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       249 
     | 
    
         
            -
                    paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       250 
     | 
    
         
            -
                    compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       251 
     | 
    
         
            -
                    compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       252 
     | 
    
         
            -
                    compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       253 
     | 
    
         
            -
                    focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       254 
     | 
    
         
            -
                    focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       255 
     | 
    
         
            -
                    focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       256 
     | 
    
         
            -
                    change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       257 
     | 
    
         
            -
                    beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       258 
     | 
    
         
            -
                    input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       259 
     | 
    
         
            -
                    invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       260 
     | 
    
         
            -
                    submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       261 
     | 
    
         
            -
                    click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       262 
     | 
    
         
            -
                    contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       263 
     | 
    
         
            -
                    dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       264 
     | 
    
         
            -
                    drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       265 
     | 
    
         
            -
                    dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       266 
     | 
    
         
            -
                    dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       267 
     | 
    
         
            -
                    dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       268 
     | 
    
         
            -
                    dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       269 
     | 
    
         
            -
                    dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       270 
     | 
    
         
            -
                    dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       271 
     | 
    
         
            -
                    drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       272 
     | 
    
         
            -
                    mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       273 
     | 
    
         
            -
                    mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       274 
     | 
    
         
            -
                    mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       275 
     | 
    
         
            -
                    mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       276 
     | 
    
         
            -
                    mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       277 
     | 
    
         
            -
                    mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       278 
     | 
    
         
            -
                    mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       279 
     | 
    
         
            -
                    select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       280 
     | 
    
         
            -
                    touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       281 
     | 
    
         
            -
                    touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       282 
     | 
    
         
            -
                    touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       283 
     | 
    
         
            -
                    touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       284 
     | 
    
         
            -
                    scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       285 
     | 
    
         
            -
                    wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       286 
     | 
    
         
            -
                    abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       287 
     | 
    
         
            -
                    canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       288 
     | 
    
         
            -
                    canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       289 
     | 
    
         
            -
                    durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       290 
     | 
    
         
            -
                    emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       291 
     | 
    
         
            -
                    encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       292 
     | 
    
         
            -
                    ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       293 
     | 
    
         
            -
                    loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       294 
     | 
    
         
            -
                    loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       295 
     | 
    
         
            -
                    loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       296 
     | 
    
         
            -
                    pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       297 
     | 
    
         
            -
                    play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       298 
     | 
    
         
            -
                    playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       299 
     | 
    
         
            -
                    progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       300 
     | 
    
         
            -
                    rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       301 
     | 
    
         
            -
                    seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       302 
     | 
    
         
            -
                    seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       303 
     | 
    
         
            -
                    stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       304 
     | 
    
         
            -
                    suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       305 
     | 
    
         
            -
                    timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       306 
     | 
    
         
            -
                    volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       307 
     | 
    
         
            -
                    waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       308 
     | 
    
         
            -
                    load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       309 
     | 
    
         
            -
                    error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       310 
     | 
    
         
            -
                    animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       311 
     | 
    
         
            -
                    animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       312 
     | 
    
         
            -
                    animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       313 
     | 
    
         
            -
                    transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       314 
     | 
    
         
            -
                } & {
         
     | 
| 
       315 
     | 
    
         
            -
                    blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
         
     | 
| 
       316 
     | 
    
         
            -
                } & {
         
     | 
| 
       317 
     | 
    
         
            -
                    keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       318 
     | 
    
         
            -
                    keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       319 
     | 
    
         
            -
                    keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
         
     | 
| 
       320 
     | 
    
         
            -
                } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
         
     | 
| 
       321 
     | 
    
         
            -
                    findInput: (...args: any) => Promise<any>;
         
     | 
| 
       322 
     | 
    
         
            -
                    findOptionsList: (...args: any) => Promise<any>;
         
     | 
| 
       323 
     | 
    
         
            -
                }>>;
         
     | 
| 
       324 
     | 
    
         
            -
            } & Record<"findInput" | "findOptionsList", (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<unknown>>;
         
     | 
| 
       325 
     | 
    
         
            -
            //# sourceMappingURL=SimpleSelectLocator.d.ts.map
         
     | 
| 
         @@ -1 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"SimpleSelectLocator.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/SimpleSelectLocator.ts"],"names":[],"mappings":"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"}
         
     | 
| 
         @@ -1 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"locator.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/locator.ts"],"names":[],"mappings":"AAuBA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,mBAAmB,EAAE,CAAA;AAC9B,eAAe,mBAAmB,CAAA"}
         
     |