igniteui-angular-inputs 21.1.0-beta.1 → 21.1.0
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/bundles/igniteui-angular-inputs.umd.js +809 -218
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/CheckboxView_combined.js +7 -7
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +40 -53
- package/esm2015/lib/igx-color-editor-component.js +3 -3
- package/esm2015/lib/igx-x-button-component.js +280 -56
- package/esm2015/lib/igx-x-input-group-component.js +480 -96
- package/esm5/lib/CheckboxView_combined.js +7 -7
- package/esm5/lib/NativeUIXInputsFactory_combined.js +41 -58
- package/esm5/lib/igx-color-editor-component.js +3 -3
- package/esm5/lib/igx-x-button-component.js +280 -56
- package/esm5/lib/igx-x-input-group-component.js +480 -96
- package/fesm2015/igniteui-angular-inputs.js +809 -214
- package/fesm5/igniteui-angular-inputs.js +809 -218
- package/lib/NativeUIXInputsFactory_combined.d.ts +12 -15
- package/package.json +2 -2
|
@@ -154,27 +154,24 @@ export declare class ColorEditorView extends Base {
|
|
|
154
154
|
static $t: Type;
|
|
155
155
|
constructor();
|
|
156
156
|
a: ColorEditor;
|
|
157
|
-
|
|
157
|
+
q(): void;
|
|
158
158
|
f(): boolean;
|
|
159
|
-
|
|
159
|
+
h: DomRenderer;
|
|
160
160
|
private d;
|
|
161
161
|
private g;
|
|
162
|
-
|
|
163
|
-
|
|
162
|
+
o(a: DomRenderer): void;
|
|
163
|
+
m(): void;
|
|
164
164
|
private e;
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
k(): any;
|
|
168
|
-
private _createColorEditorPanel;
|
|
169
|
-
get createColorEditorPanel(): () => any;
|
|
170
|
-
set createColorEditorPanel(a: () => any);
|
|
171
|
-
private b;
|
|
165
|
+
n(): void;
|
|
166
|
+
p(): void;
|
|
172
167
|
j(): any;
|
|
173
|
-
|
|
174
|
-
|
|
168
|
+
private b;
|
|
169
|
+
i(): any;
|
|
170
|
+
k(a: NativeUIContent, b: any): void;
|
|
171
|
+
l(a: NativeUIComponent): void;
|
|
175
172
|
c(a: any): ColorEditorPanel;
|
|
176
|
-
|
|
177
|
-
|
|
173
|
+
r(a: boolean): Rect;
|
|
174
|
+
s(): Size;
|
|
178
175
|
}
|
|
179
176
|
/**
|
|
180
177
|
* @hidden
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular-inputs",
|
|
3
|
-
"version": "21.1.0
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "Ignite UI Angular input components for building rich data visualizations for modern web apps.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-angular-inputs",
|
|
6
6
|
"keywords": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@angular/common": "^21.0.0",
|
|
18
18
|
"@angular/compiler": "^21.0.0",
|
|
19
19
|
"@angular/core": "^21.0.0",
|
|
20
|
-
"igniteui-angular-core": "21.1.0
|
|
20
|
+
"igniteui-angular-core": "21.1.0"
|
|
21
21
|
},
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"typings": "igniteui-angular-inputs.d.ts",
|