@snabcentr/client-ui 0.2.11 → 0.2.14

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "0.2.11",
3
+ "version": "0.2.14",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
@@ -1304,6 +1304,10 @@ video {
1304
1304
  color: var(--tui-success-fill);
1305
1305
  }
1306
1306
 
1307
+ .text-tui-text-01 {
1308
+ color: var(--tui-text-01);
1309
+ }
1310
+
1307
1311
  .text-tui-text-02 {
1308
1312
  color: var(--tui-text-02);
1309
1313
  }
@@ -3,5 +3,6 @@ import { ValidatorFn } from '@angular/forms';
3
3
  * Проверяет кратность значения.
4
4
  *
5
5
  * @param step Шаг кратности.
6
+ * @param tolerance Допустимая погрешность.
6
7
  */
7
- export declare function stepValidator(step: number): ValidatorFn;
8
+ export declare function stepValidator(step: number, tolerance?: number): ValidatorFn;