igniteui-angular 18.1.6 → 18.1.8
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/esm2022/lib/core/i18n/grid-resources.mjs +2 -1
- package/esm2022/lib/grids/grid/grid.component.mjs +6 -5
- package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +6 -5
- package/esm2022/lib/grids/pivot-grid/pivot-grid-dimensions.mjs +2 -2
- package/esm2022/lib/grids/pivot-grid/pivot-grid.interface.mjs +1 -1
- package/esm2022/lib/grids/tree-grid/tree-grid.component.mjs +6 -5
- package/esm2022/lib/icon/icon.service.mjs +18 -14
- package/fesm2022/igniteui-angular.mjs +31 -23
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/i18n/grid-resources.d.ts +1 -0
- package/lib/core/styles/components/button/_button-theme.scss +4 -4
- package/lib/core/styles/components/input/_input-group-theme.scss +8 -8
- package/lib/core/styles/components/progress/_progress-theme.scss +1 -1
- package/lib/icon/icon.service.d.ts +3 -2
- package/package.json +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -110,6 +110,7 @@ export interface IGridResourceStrings {
|
|
|
110
110
|
igx_grid_pinning_uncheck_all_label?: string;
|
|
111
111
|
igx_grid_row_edit_btn_done?: string;
|
|
112
112
|
igx_grid_row_edit_btn_cancel?: string;
|
|
113
|
+
igx_grid_row_edit_text?: string;
|
|
113
114
|
igx_grid_toolbar_actions_filter_prompt?: string;
|
|
114
115
|
igx_grid_toolbar_pinning_button_tooltip?: string;
|
|
115
116
|
igx_grid_toolbar_hiding_button_tooltip?: string;
|
|
@@ -274,10 +274,10 @@
|
|
|
274
274
|
@include css-vars($fab-theme);
|
|
275
275
|
|
|
276
276
|
$time: map.get((
|
|
277
|
-
material: .1s,
|
|
278
|
-
fluent: .1s,
|
|
279
|
-
bootstrap: .15s,
|
|
280
|
-
indigo: .15s
|
|
277
|
+
'material': .1s,
|
|
278
|
+
'fluent': .1s,
|
|
279
|
+
'bootstrap': .15s,
|
|
280
|
+
'indigo': .15s
|
|
281
281
|
), $variant);
|
|
282
282
|
|
|
283
283
|
$button-transition: color $time ease-in-out,
|
|
@@ -340,17 +340,17 @@
|
|
|
340
340
|
);
|
|
341
341
|
|
|
342
342
|
$hint-spacing-block: map.get((
|
|
343
|
-
material: rem(5px),
|
|
344
|
-
fluent: rem(5px),
|
|
345
|
-
bootstrap: rem(4px),
|
|
346
|
-
indigo: rem(4px),
|
|
343
|
+
'material': rem(5px),
|
|
344
|
+
'fluent': rem(5px),
|
|
345
|
+
'bootstrap': rem(4px),
|
|
346
|
+
'indigo': rem(4px),
|
|
347
347
|
), $variant);
|
|
348
348
|
|
|
349
349
|
$hint-spacing-inline: map.get((
|
|
350
|
-
material: rem(16px),
|
|
351
|
-
fluent: 0,
|
|
352
|
-
bootstrap: 0,
|
|
353
|
-
indigo: 0,
|
|
350
|
+
'material': rem(16px),
|
|
351
|
+
'fluent': 0,
|
|
352
|
+
'bootstrap': 0,
|
|
353
|
+
'indigo': 0,
|
|
354
354
|
), $variant);
|
|
355
355
|
|
|
356
356
|
// Base Start
|
|
@@ -116,6 +116,7 @@ export declare class IgxIconService {
|
|
|
116
116
|
* ```
|
|
117
117
|
*/
|
|
118
118
|
getIconRef(name: string, family: string): IconReference;
|
|
119
|
+
private getOrCreateSvgFamily;
|
|
119
120
|
/**
|
|
120
121
|
* Adds an SVG image to the cache. SVG source is an url.
|
|
121
122
|
* ```typescript
|
|
@@ -137,14 +138,14 @@ export declare class IgxIconService {
|
|
|
137
138
|
* const isSvgCached = this.iconService.isSvgIconCached('aruba', 'svg-flags');
|
|
138
139
|
* ```
|
|
139
140
|
*/
|
|
140
|
-
isSvgIconCached(name: string, family
|
|
141
|
+
isSvgIconCached(name: string, family: string): boolean;
|
|
141
142
|
/**
|
|
142
143
|
* Returns the cached SVG image as string.
|
|
143
144
|
* ```typescript
|
|
144
145
|
* const svgIcon = this.iconService.getSvgIcon('aruba', 'svg-flags');
|
|
145
146
|
* ```
|
|
146
147
|
*/
|
|
147
|
-
getSvgIcon(name: string, family
|
|
148
|
+
getSvgIcon(name: string, family: string): SafeHtml;
|
|
148
149
|
/**
|
|
149
150
|
* @hidden
|
|
150
151
|
*/
|
package/package.json
CHANGED