igniteui-angular 18.1.7 → 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/tree-grid/tree-grid.component.mjs +6 -5
- package/fesm2022/igniteui-angular.mjs +14 -10
- 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/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
|
package/package.json
CHANGED