@masterteam/components 0.0.106 → 0.0.107

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.
@@ -301,6 +301,7 @@ declare class SliderFieldConfig extends BaseFieldConfig {
301
301
  orientation?: 'horizontal' | 'vertical';
302
302
  range?: boolean;
303
303
  animate?: boolean;
304
+ unit?: string;
304
305
  constructor(config: Omit<BaseFieldConstructorConfig, 'type'> & {
305
306
  min?: number;
306
307
  max?: number;
@@ -308,6 +309,7 @@ declare class SliderFieldConfig extends BaseFieldConfig {
308
309
  orientation?: 'horizontal' | 'vertical';
309
310
  range?: boolean;
310
311
  animate?: boolean;
312
+ unit?: string;
311
313
  });
312
314
  }
313
315
  declare class MultiSelectFieldConfig extends BaseFieldConfig {