@recursyve/nice-ui-kit.v2 20.0.0-beta.145 → 20.0.0-beta.147
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/index.d.ts
CHANGED
|
@@ -2998,6 +2998,7 @@ declare abstract class TranslationFormComponent implements OnInit, OnDestroy, Ma
|
|
|
2998
2998
|
writeValue(value: any): void;
|
|
2999
2999
|
ngOnInit(): void;
|
|
3000
3000
|
ngOnDestroy(): void;
|
|
3001
|
+
onFocusChange(focus: boolean): void;
|
|
3001
3002
|
setLanguage(language: string): void;
|
|
3002
3003
|
private setupFormControls;
|
|
3003
3004
|
private handleDisabledState;
|
package/package.json
CHANGED
package/src/lib/nice.theme.scss
CHANGED
|
@@ -260,11 +260,11 @@ $palettes: ();
|
|
|
260
260
|
typography: $typography
|
|
261
261
|
));
|
|
262
262
|
|
|
263
|
-
$dark-theme: (
|
|
263
|
+
$dark-theme: map.merge($base-dark-theme, (
|
|
264
264
|
density: null,
|
|
265
265
|
foreground: $foreground-dark,
|
|
266
266
|
background: $background-dark
|
|
267
|
-
);
|
|
267
|
+
));
|
|
268
268
|
|
|
269
269
|
@return $dark-theme;
|
|
270
270
|
}
|
|
@@ -1456,6 +1456,13 @@ table {
|
|
|
1456
1456
|
}
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
|
+
// -----------------------------------------------------------------------------------------------------
|
|
1460
|
+
// Sort
|
|
1461
|
+
// -----------------------------------------------------------------------------------------------------
|
|
1462
|
+
.mat-sort-header-arrow {
|
|
1463
|
+
--mat-sort-arrow-color: var(--nice-text-secondary);
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1459
1466
|
// -----------------------------------------------------------------------------------------------------
|
|
1460
1467
|
// Checkbox
|
|
1461
1468
|
// -----------------------------------------------------------------------------------------------------
|