@skyux/colorpicker 7.1.0 → 7.1.2
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/esm2020/lib/modules/colorpicker/colorpicker-slider.directive.mjs +9 -8
- package/esm2020/lib/modules/colorpicker/colorpicker.component.mjs +22 -24
- package/esm2020/testing/colorpicker-fixture.mjs +32 -30
- package/fesm2015/skyux-colorpicker-testing.mjs +35 -34
- package/fesm2015/skyux-colorpicker-testing.mjs.map +1 -1
- package/fesm2015/skyux-colorpicker.mjs +29 -30
- package/fesm2015/skyux-colorpicker.mjs.map +1 -1
- package/fesm2020/skyux-colorpicker-testing.mjs +31 -29
- package/fesm2020/skyux-colorpicker-testing.mjs.map +1 -1
- package/fesm2020/skyux-colorpicker.mjs +29 -30
- package/fesm2020/skyux-colorpicker.mjs.map +1 -1
- package/lib/modules/colorpicker/colorpicker-slider.directive.d.ts +0 -1
- package/lib/modules/colorpicker/colorpicker.component.d.ts +0 -2
- package/package.json +7 -7
- package/testing/colorpicker-fixture.d.ts +1 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/colorpicker",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"@angular/core": "^14.2.11",
|
|
45
45
|
"@angular/forms": "^14.2.11",
|
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
|
47
|
-
"@skyux-sdk/testing": "7.1.
|
|
48
|
-
"@skyux/core": "7.1.
|
|
49
|
-
"@skyux/forms": "7.1.
|
|
50
|
-
"@skyux/i18n": "7.1.
|
|
51
|
-
"@skyux/indicators": "7.1.
|
|
52
|
-
"@skyux/theme": "7.1.
|
|
47
|
+
"@skyux-sdk/testing": "7.1.2",
|
|
48
|
+
"@skyux/core": "7.1.2",
|
|
49
|
+
"@skyux/forms": "7.1.2",
|
|
50
|
+
"@skyux/i18n": "7.1.2",
|
|
51
|
+
"@skyux/indicators": "7.1.2",
|
|
52
|
+
"@skyux/theme": "7.1.2"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"tslib": "^2.3.1"
|
|
@@ -4,9 +4,7 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyColorpickerFixture {
|
|
7
|
-
private
|
|
8
|
-
private skyTestId;
|
|
9
|
-
private debugEl;
|
|
7
|
+
#private;
|
|
10
8
|
constructor(fixture: ComponentFixture<unknown>, skyTestId: string);
|
|
11
9
|
/**
|
|
12
10
|
* The colorpicker's currently selected color formatted to the `outputFormat`.
|
|
@@ -30,7 +28,4 @@ export declare class SkyColorpickerFixture {
|
|
|
30
28
|
* @param presetIndex The index of the color in the `presetColors` list to select.
|
|
31
29
|
*/
|
|
32
30
|
setValueFromPresets(presetIndex: number): Promise<void>;
|
|
33
|
-
private clickColorpickerButtonEl;
|
|
34
|
-
private clickColorpickerApplyButtonEl;
|
|
35
|
-
private getColorpickerInputEl;
|
|
36
31
|
}
|