@instructure/ui-color-picker 11.7.4-snapshot-49 → 11.7.4-snapshot-52
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/ColorMixer/v2/ColorPalette/index.js +1 -0
- package/es/ColorMixer/v2/RGBAInput/index.js +1 -0
- package/es/ColorMixer/v2/Slider/index.js +1 -0
- package/lib/ColorMixer/v2/ColorPalette/index.js +1 -0
- package/lib/ColorMixer/v2/RGBAInput/index.js +1 -0
- package/lib/ColorMixer/v2/Slider/index.js +1 -0
- package/package.json +24 -24
- package/src/ColorMixer/v2/ColorPalette/index.tsx +1 -0
- package/src/ColorMixer/v2/RGBAInput/index.tsx +1 -0
- package/src/ColorMixer/v2/Slider/index.tsx +1 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/ColorMixer/v2/ColorPalette/index.d.ts +1 -0
- package/types/ColorMixer/v2/ColorPalette/index.d.ts.map +1 -1
- package/types/ColorMixer/v2/RGBAInput/index.d.ts +1 -0
- package/types/ColorMixer/v2/RGBAInput/index.d.ts.map +1 -1
- package/types/ColorMixer/v2/Slider/index.d.ts +1 -0
- package/types/ColorMixer/v2/Slider/index.d.ts.map +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
|
-
## [11.7.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-52) (2026-06-19)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-color-picker
|
|
9
9
|
|
|
@@ -43,6 +43,7 @@ let ColorPalette = (_dec = withDeterministicId(), _dec2 = withStyleNew(generateS
|
|
|
43
43
|
static displayName = 'ColorPalette';
|
|
44
44
|
static allowedProps = allowedProps;
|
|
45
45
|
static componentId = 'ColorMixer.Palette';
|
|
46
|
+
static themeId = 'Palette';
|
|
46
47
|
constructor(props) {
|
|
47
48
|
super(props);
|
|
48
49
|
this.state = {
|
|
@@ -41,6 +41,7 @@ let RGBAInput = (_dec = withStyleNew(generateStyle, 'RgbaInput'), _dec(_class =
|
|
|
41
41
|
static displayName = 'RGBAInput';
|
|
42
42
|
static allowedProps = allowedProps;
|
|
43
43
|
static componentId = 'ColorMixer.RGBAInput';
|
|
44
|
+
static themeId = 'RgbaInput';
|
|
44
45
|
static defaultProps = {
|
|
45
46
|
withAlpha: false
|
|
46
47
|
};
|
|
@@ -40,6 +40,7 @@ let Slider = (_dec = withStyleNew(generateStyle, 'Slider'), _dec(_class = class
|
|
|
40
40
|
static displayName = 'Slider';
|
|
41
41
|
static allowedProps = allowedProps;
|
|
42
42
|
static componentId = 'ColorMixer.Slider';
|
|
43
|
+
static themeId = 'Slider';
|
|
43
44
|
static defaultProps = {
|
|
44
45
|
isColorSlider: false
|
|
45
46
|
};
|
|
@@ -48,6 +48,7 @@ let ColorPalette = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec
|
|
|
48
48
|
static displayName = 'ColorPalette';
|
|
49
49
|
static allowedProps = _props.allowedProps;
|
|
50
50
|
static componentId = 'ColorMixer.Palette';
|
|
51
|
+
static themeId = 'Palette';
|
|
51
52
|
constructor(props) {
|
|
52
53
|
super(props);
|
|
53
54
|
this.state = {
|
|
@@ -46,6 +46,7 @@ let RGBAInput = (_dec = (0, _emotion.withStyleNew)(_styles.default, 'RgbaInput')
|
|
|
46
46
|
static displayName = 'RGBAInput';
|
|
47
47
|
static allowedProps = _props.allowedProps;
|
|
48
48
|
static componentId = 'ColorMixer.RGBAInput';
|
|
49
|
+
static themeId = 'RgbaInput';
|
|
49
50
|
static defaultProps = {
|
|
50
51
|
withAlpha: false
|
|
51
52
|
};
|
|
@@ -45,6 +45,7 @@ let Slider = (_dec = (0, _emotion.withStyleNew)(_styles.default, 'Slider'), _dec
|
|
|
45
45
|
static displayName = 'Slider';
|
|
46
46
|
static allowedProps = _props.allowedProps;
|
|
47
47
|
static componentId = 'ColorMixer.Slider';
|
|
48
|
+
static themeId = 'Slider';
|
|
48
49
|
static defaultProps = {
|
|
49
50
|
isColorSlider: false
|
|
50
51
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-color-picker",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-52",
|
|
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",
|
|
@@ -15,35 +15,35 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
|
-
"@instructure/console": "11.7.4-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/ui-
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/
|
|
23
|
-
"@instructure/ui-color-utils": "11.7.4-snapshot-
|
|
24
|
-
"@instructure/ui-dom-utils": "11.7.4-snapshot-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-form-field": "11.7.4-snapshot-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-
|
|
30
|
-
"@instructure/ui-react-utils": "11.7.4-snapshot-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/ui-text
|
|
33
|
-
"@instructure/ui-
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-
|
|
36
|
-
"@instructure/ui-
|
|
37
|
-
"@instructure/ui-
|
|
18
|
+
"@instructure/console": "11.7.4-snapshot-52",
|
|
19
|
+
"@instructure/shared-types": "11.7.4-snapshot-52",
|
|
20
|
+
"@instructure/ui-buttons": "11.7.4-snapshot-52",
|
|
21
|
+
"@instructure/ui-a11y-content": "11.7.4-snapshot-52",
|
|
22
|
+
"@instructure/emotion": "11.7.4-snapshot-52",
|
|
23
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-52",
|
|
24
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-52",
|
|
25
|
+
"@instructure/ui-heading": "11.7.4-snapshot-52",
|
|
26
|
+
"@instructure/ui-form-field": "11.7.4-snapshot-52",
|
|
27
|
+
"@instructure/ui-icons": "11.7.4-snapshot-52",
|
|
28
|
+
"@instructure/ui-popover": "11.7.4-snapshot-52",
|
|
29
|
+
"@instructure/ui-pill": "11.7.4-snapshot-52",
|
|
30
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-52",
|
|
31
|
+
"@instructure/ui-drilldown": "11.7.4-snapshot-52",
|
|
32
|
+
"@instructure/ui-text": "11.7.4-snapshot-52",
|
|
33
|
+
"@instructure/ui-text-input": "11.7.4-snapshot-52",
|
|
34
|
+
"@instructure/ui-tooltip": "11.7.4-snapshot-52",
|
|
35
|
+
"@instructure/ui-themes": "11.7.4-snapshot-52",
|
|
36
|
+
"@instructure/ui-view": "11.7.4-snapshot-52",
|
|
37
|
+
"@instructure/ui-utils": "11.7.4-snapshot-52"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@testing-library/jest-dom": "^6.6.3",
|
|
41
41
|
"@testing-library/react": "15.0.7",
|
|
42
42
|
"@testing-library/user-event": "^14.6.1",
|
|
43
43
|
"vitest": "^3.2.2",
|
|
44
|
-
"@instructure/ui-axe-check": "11.7.4-snapshot-
|
|
45
|
-
"@instructure/ui-babel-preset": "11.7.4-snapshot-
|
|
46
|
-
"@instructure/ui-scripts": "11.7.4-snapshot-
|
|
44
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-52",
|
|
45
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-52",
|
|
46
|
+
"@instructure/ui-scripts": "11.7.4-snapshot-52"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": ">=18 <=19"
|
|
@@ -51,6 +51,7 @@ class ColorPalette extends Component<ColorPaletteProps, ColorPaletteState> {
|
|
|
51
51
|
static displayName = 'ColorPalette'
|
|
52
52
|
static allowedProps = allowedProps
|
|
53
53
|
static readonly componentId = 'ColorMixer.Palette'
|
|
54
|
+
static readonly themeId = 'Palette'
|
|
54
55
|
|
|
55
56
|
constructor(props: ColorPaletteProps) {
|
|
56
57
|
super(props)
|
|
@@ -45,6 +45,7 @@ class RGBAInput extends Component<RGBAInputProps, RGBAInputState> {
|
|
|
45
45
|
static displayName = 'RGBAInput'
|
|
46
46
|
static allowedProps = allowedProps
|
|
47
47
|
static readonly componentId = 'ColorMixer.RGBAInput'
|
|
48
|
+
static readonly themeId = 'RgbaInput'
|
|
48
49
|
|
|
49
50
|
static defaultProps = {
|
|
50
51
|
withAlpha: false
|