@instructure/ui-color-picker 9.0.2-snapshot-3 → 9.0.2-snapshot-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/es/ColorContrast/ColorContrastLocator.js +1 -1
- package/es/ColorPicker/ColorPickerLocator.js +1 -1
- package/es/ColorPreset/ColorPresetLocator.js +4 -4
- package/lib/ColorContrast/ColorContrastLocator.js +1 -1
- package/lib/ColorPicker/ColorPickerLocator.js +1 -1
- package/lib/ColorPreset/ColorPresetLocator.js +4 -4
- package/package.json +25 -25
- package/src/ColorContrast/ColorContrastLocator.ts +1 -1
- package/src/ColorPicker/ColorPickerLocator.ts +1 -1
- package/src/ColorPreset/ColorPresetLocator.ts +5 -5
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/ColorContrast/ColorContrastLocator.d.ts +2147 -47
- package/types/ColorContrast/ColorContrastLocator.d.ts.map +1 -1
- package/types/ColorContrast/index.d.ts +1 -1
- package/types/ColorIndicator/ColorIndicatorLocator.d.ts +36 -36
- package/types/ColorIndicator/index.d.ts +1 -1
- package/types/ColorMixer/ColorMixerLocator.d.ts +32 -32
- package/types/ColorMixer/ColorPalette/index.d.ts +1 -1
- package/types/ColorMixer/RGBAInput/index.d.ts +5 -5
- package/types/ColorMixer/Slider/index.d.ts +1 -1
- package/types/ColorMixer/index.d.ts +1 -1
- package/types/ColorPicker/ColorPickerLocator.d.ts +1647 -247
- package/types/ColorPicker/ColorPickerLocator.d.ts.map +1 -1
- package/types/ColorPicker/index.d.ts +1 -1
- package/types/ColorPreset/ColorPresetLocator.d.ts +1 -2007
- package/types/ColorPreset/ColorPresetLocator.d.ts.map +1 -1
- package/types/ColorPreset/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [9.0.2-snapshot-
|
|
6
|
+
## [9.0.2-snapshot-5](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.0.2-snapshot-5) (2024-06-06)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-color-picker
|
|
9
9
|
|
|
@@ -25,7 +25,7 @@ import { locator } from '@instructure/ui-test-locator';
|
|
|
25
25
|
import { find } from '@instructure/ui-test-queries';
|
|
26
26
|
|
|
27
27
|
/* eslint-disable no-restricted-imports */
|
|
28
|
-
// @ts-
|
|
28
|
+
// @ts-ignore: Cannot find module
|
|
29
29
|
import { PillLocator } from '@instructure/ui-pill/es/Pill/PillLocator';
|
|
30
30
|
/* eslint-enable no-restricted-imports */
|
|
31
31
|
|
|
@@ -26,7 +26,7 @@ import { find, findAll, parseQueryArguments, findWithText, within } from '@instr
|
|
|
26
26
|
import { ColorPicker } from '.';
|
|
27
27
|
|
|
28
28
|
/* eslint-disable no-restricted-imports */
|
|
29
|
-
// @ts-
|
|
29
|
+
// @ts-ignore: Cannot find module
|
|
30
30
|
import { PopoverLocator } from '@instructure/ui-popover/es/Popover/PopoverLocator';
|
|
31
31
|
/* eslint-enable no-restricted-imports */
|
|
32
32
|
|
|
@@ -25,18 +25,18 @@ import { locator } from '@instructure/ui-test-locator';
|
|
|
25
25
|
import { find } from '@instructure/ui-test-queries';
|
|
26
26
|
|
|
27
27
|
/* eslint-disable no-restricted-imports */
|
|
28
|
-
// @ts-
|
|
28
|
+
// @ts-ignore: Cannot find module
|
|
29
29
|
import { DrilldownLocator } from '@instructure/ui-drilldown/es/Drilldown/DrilldownLocator';
|
|
30
|
-
// @ts-
|
|
30
|
+
// @ts-ignore: Cannot find module
|
|
31
31
|
import { TooltipLocator } from '@instructure/ui-tooltip/es/Tooltip/TooltipLocator';
|
|
32
|
-
// @ts-
|
|
32
|
+
// @ts-ignore: Cannot find module
|
|
33
33
|
import { PopoverLocator } from '@instructure/ui-popover/es/Popover/PopoverLocator';
|
|
34
34
|
/* eslint-enable no-restricted-imports */
|
|
35
35
|
|
|
36
36
|
import { ColorIndicatorLocator } from '../ColorIndicator/ColorIndicatorLocator';
|
|
37
37
|
import { ColorPreset } from './index';
|
|
38
38
|
|
|
39
|
-
// @ts-
|
|
39
|
+
// @ts-ignore: The inferred type exceeds the maximum the compiler will serialize
|
|
40
40
|
export const ColorPresetLocator = locator(ColorPreset.selector, {
|
|
41
41
|
findAllColorIndicators: (...args) => {
|
|
42
42
|
return ColorIndicatorLocator.findAll(...args);
|
|
@@ -36,7 +36,7 @@ var _ColorPresetLocator = require("../ColorPreset/ColorPresetLocator");
|
|
|
36
36
|
*/
|
|
37
37
|
|
|
38
38
|
/* eslint-disable no-restricted-imports */
|
|
39
|
-
// @ts-
|
|
39
|
+
// @ts-ignore: Cannot find module
|
|
40
40
|
|
|
41
41
|
/* eslint-enable no-restricted-imports */
|
|
42
42
|
|
|
@@ -36,15 +36,15 @@ var _index = require("./index");
|
|
|
36
36
|
*/
|
|
37
37
|
|
|
38
38
|
/* eslint-disable no-restricted-imports */
|
|
39
|
-
// @ts-
|
|
39
|
+
// @ts-ignore: Cannot find module
|
|
40
40
|
|
|
41
|
-
// @ts-
|
|
41
|
+
// @ts-ignore: Cannot find module
|
|
42
42
|
|
|
43
|
-
// @ts-
|
|
43
|
+
// @ts-ignore: Cannot find module
|
|
44
44
|
|
|
45
45
|
/* eslint-enable no-restricted-imports */
|
|
46
46
|
|
|
47
|
-
// @ts-
|
|
47
|
+
// @ts-ignore: The inferred type exceeds the maximum the compiler will serialize
|
|
48
48
|
const ColorPresetLocator = exports.ColorPresetLocator = (0, _locator.locator)(_index.ColorPreset.selector, {
|
|
49
49
|
findAllColorIndicators: (...args) => {
|
|
50
50
|
return _ColorIndicatorLocator.ColorIndicatorLocator.findAll(...args);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-color-picker",
|
|
3
|
-
"version": "9.0.2-snapshot-
|
|
3
|
+
"version": "9.0.2-snapshot-5",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,33 +24,33 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.24.5",
|
|
27
|
-
"@instructure/console": "9.0.2-snapshot-
|
|
28
|
-
"@instructure/emotion": "9.0.2-snapshot-
|
|
29
|
-
"@instructure/shared-types": "9.0.2-snapshot-
|
|
30
|
-
"@instructure/ui-a11y-content": "9.0.2-snapshot-
|
|
31
|
-
"@instructure/ui-buttons": "9.0.2-snapshot-
|
|
32
|
-
"@instructure/ui-color-utils": "9.0.2-snapshot-
|
|
33
|
-
"@instructure/ui-dom-utils": "9.0.2-snapshot-
|
|
34
|
-
"@instructure/ui-drilldown": "9.0.2-snapshot-
|
|
35
|
-
"@instructure/ui-form-field": "9.0.2-snapshot-
|
|
36
|
-
"@instructure/ui-icons": "9.0.2-snapshot-
|
|
37
|
-
"@instructure/ui-pill": "9.0.2-snapshot-
|
|
38
|
-
"@instructure/ui-popover": "9.0.2-snapshot-
|
|
39
|
-
"@instructure/ui-react-utils": "9.0.2-snapshot-
|
|
40
|
-
"@instructure/ui-testable": "9.0.2-snapshot-
|
|
41
|
-
"@instructure/ui-text": "9.0.2-snapshot-
|
|
42
|
-
"@instructure/ui-text-input": "9.0.2-snapshot-
|
|
43
|
-
"@instructure/ui-themes": "9.0.2-snapshot-
|
|
44
|
-
"@instructure/ui-tooltip": "9.0.2-snapshot-
|
|
45
|
-
"@instructure/ui-utils": "9.0.2-snapshot-
|
|
46
|
-
"@instructure/ui-view": "9.0.2-snapshot-
|
|
27
|
+
"@instructure/console": "9.0.2-snapshot-5",
|
|
28
|
+
"@instructure/emotion": "9.0.2-snapshot-5",
|
|
29
|
+
"@instructure/shared-types": "9.0.2-snapshot-5",
|
|
30
|
+
"@instructure/ui-a11y-content": "9.0.2-snapshot-5",
|
|
31
|
+
"@instructure/ui-buttons": "9.0.2-snapshot-5",
|
|
32
|
+
"@instructure/ui-color-utils": "9.0.2-snapshot-5",
|
|
33
|
+
"@instructure/ui-dom-utils": "9.0.2-snapshot-5",
|
|
34
|
+
"@instructure/ui-drilldown": "9.0.2-snapshot-5",
|
|
35
|
+
"@instructure/ui-form-field": "9.0.2-snapshot-5",
|
|
36
|
+
"@instructure/ui-icons": "9.0.2-snapshot-5",
|
|
37
|
+
"@instructure/ui-pill": "9.0.2-snapshot-5",
|
|
38
|
+
"@instructure/ui-popover": "9.0.2-snapshot-5",
|
|
39
|
+
"@instructure/ui-react-utils": "9.0.2-snapshot-5",
|
|
40
|
+
"@instructure/ui-testable": "9.0.2-snapshot-5",
|
|
41
|
+
"@instructure/ui-text": "9.0.2-snapshot-5",
|
|
42
|
+
"@instructure/ui-text-input": "9.0.2-snapshot-5",
|
|
43
|
+
"@instructure/ui-themes": "9.0.2-snapshot-5",
|
|
44
|
+
"@instructure/ui-tooltip": "9.0.2-snapshot-5",
|
|
45
|
+
"@instructure/ui-utils": "9.0.2-snapshot-5",
|
|
46
|
+
"@instructure/ui-view": "9.0.2-snapshot-5",
|
|
47
47
|
"prop-types": "^15.8.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@instructure/ui-babel-preset": "9.0.2-snapshot-
|
|
51
|
-
"@instructure/ui-test-locator": "9.0.2-snapshot-
|
|
52
|
-
"@instructure/ui-test-queries": "9.0.2-snapshot-
|
|
53
|
-
"@instructure/ui-test-utils": "9.0.2-snapshot-
|
|
50
|
+
"@instructure/ui-babel-preset": "9.0.2-snapshot-5",
|
|
51
|
+
"@instructure/ui-test-locator": "9.0.2-snapshot-5",
|
|
52
|
+
"@instructure/ui-test-queries": "9.0.2-snapshot-5",
|
|
53
|
+
"@instructure/ui-test-utils": "9.0.2-snapshot-5"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"react": ">=16.8 <=18"
|
|
@@ -25,7 +25,7 @@ import { locator } from '@instructure/ui-test-locator'
|
|
|
25
25
|
import { find } from '@instructure/ui-test-queries'
|
|
26
26
|
|
|
27
27
|
/* eslint-disable no-restricted-imports */
|
|
28
|
-
// @ts-
|
|
28
|
+
// @ts-ignore: Cannot find module
|
|
29
29
|
import { PillLocator } from '@instructure/ui-pill/es/Pill/PillLocator'
|
|
30
30
|
/* eslint-enable no-restricted-imports */
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
import { ColorPicker } from '.'
|
|
34
34
|
|
|
35
35
|
/* eslint-disable no-restricted-imports */
|
|
36
|
-
// @ts-
|
|
36
|
+
// @ts-ignore: Cannot find module
|
|
37
37
|
import { PopoverLocator } from '@instructure/ui-popover/es/Popover/PopoverLocator'
|
|
38
38
|
/* eslint-enable no-restricted-imports */
|
|
39
39
|
|
|
@@ -25,11 +25,11 @@ import { locator } from '@instructure/ui-test-locator'
|
|
|
25
25
|
import { find } from '@instructure/ui-test-queries'
|
|
26
26
|
|
|
27
27
|
/* eslint-disable no-restricted-imports */
|
|
28
|
-
// @ts-
|
|
28
|
+
// @ts-ignore: Cannot find module
|
|
29
29
|
import { DrilldownLocator } from '@instructure/ui-drilldown/es/Drilldown/DrilldownLocator'
|
|
30
|
-
// @ts-
|
|
30
|
+
// @ts-ignore: Cannot find module
|
|
31
31
|
import { TooltipLocator } from '@instructure/ui-tooltip/es/Tooltip/TooltipLocator'
|
|
32
|
-
// @ts-
|
|
32
|
+
// @ts-ignore: Cannot find module
|
|
33
33
|
import { PopoverLocator } from '@instructure/ui-popover/es/Popover/PopoverLocator'
|
|
34
34
|
/* eslint-enable no-restricted-imports */
|
|
35
35
|
|
|
@@ -37,8 +37,8 @@ import { ColorIndicatorLocator } from '../ColorIndicator/ColorIndicatorLocator'
|
|
|
37
37
|
|
|
38
38
|
import { ColorPreset } from './index'
|
|
39
39
|
|
|
40
|
-
// @ts-
|
|
41
|
-
export const ColorPresetLocator = locator(ColorPreset.selector, {
|
|
40
|
+
// @ts-ignore: The inferred type exceeds the maximum the compiler will serialize
|
|
41
|
+
export const ColorPresetLocator: any = locator(ColorPreset.selector, {
|
|
42
42
|
findAllColorIndicators: (...args: any[]) => {
|
|
43
43
|
return ColorIndicatorLocator.findAll(...args)
|
|
44
44
|
},
|