@true-engineering/true-react-common-ui-kit 4.0.0-alpha32 → 4.0.0-alpha33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@true-engineering/true-react-common-ui-kit",
3
- "version": "4.0.0-alpha32",
3
+ "version": "4.0.0-alpha33",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -1,5 +1,6 @@
1
1
  export * from './FiltersPane';
2
2
  export type { IFiltersPaneStyles } from './FiltersPane.styles';
3
3
  export * from './types';
4
+ export { PERIODS, PERIODS_GETTERS } from './constants';
4
5
  // TODO : подумать над тем чтобы вынести это все наружу
5
6
  export * from './components';
@@ -48,7 +48,7 @@ export type MultiSelectOptionType<Value> = Value | undefined extends
48
48
  : unknown;
49
49
 
50
50
  export interface IConfigItemBasicBase<Value> {
51
- name: string;
51
+ name: ReactNode;
52
52
  isInline?: boolean;
53
53
  isClearable?: boolean;
54
54
  requiredFilledFilters?: string[];
@@ -59,6 +59,7 @@ export interface IConfigItemBasicBase<Value> {
59
59
 
60
60
  export type IIntervalConfigItem<Value> = IConfigItemBasicBase<Value> & {
61
61
  type: 'interval';
62
+ name: string;
62
63
  } & Omit<IFilterIntervalProps, 'value' | 'onChange' | 'labelName'>;
63
64
 
64
65
  export interface IBooleanConfigItem<Value> extends IConfigItemBasicBase<Value> {