@pimcore/studio-ui-bundle 1.0.0-canary.20251126-185008-2bd08e6 → 1.0.0-canary.20251127-100535-cdcb7a1

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.
Files changed (22) hide show
  1. package/dist/build/types/src/core/app/config/services/service-ids.d.ts +5 -2
  2. package/dist/build/types/src/core/components/date-picker/time-picker.d.ts +1 -1
  3. package/dist/build/types/src/core/components/date-picker/time-range-picker.d.ts +23 -0
  4. package/dist/build/types/src/core/components/date-picker/time-range-picker.stories.d.ts +21 -0
  5. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/{types/input/dynamic-type-field-filter-input.d.ts → components/dynamic-type-field-filter-color-component.d.ts} +4 -4
  6. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/{types/fullText/dynamic-type-field-filter-fulltext.d.ts → components/dynamic-type-field-filter-input-quantity-value-component.d.ts} +4 -4
  7. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-quantity-value-component.d.ts +27 -0
  8. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-time-component.d.ts +26 -0
  9. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/frontendTypes.d.ts +7 -3
  10. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/types/color/dynamic-type-field-filter-color.d.ts +17 -0
  11. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/types/datetime/dynamic-type-field-filter-datetime.d.ts +19 -0
  12. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/types/input-quantity-value/dynamic-type-field-filter-input-quantity-value.d.ts +19 -0
  13. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/types/quantity-value/dynamic-type-field-filter-quantity-value.d.ts +19 -0
  14. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/field-filters/types/time/dynamic-type-field-filter-time.d.ts +19 -0
  15. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-external-image.d.ts +2 -0
  16. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-input-quantity-value.d.ts +2 -0
  17. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-quantity-value.d.ts +2 -0
  18. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-rgba-color.d.ts +2 -0
  19. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-slider.d.ts +2 -0
  20. package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/types/dynamic-type-object-data-time.d.ts +2 -0
  21. package/dist/build/types/src/core/modules/element/listing/decorators/general-filters/context-layer/provider/search-term-filter/search-term-filter-provider.d.ts +2 -3
  22. package/package.json +1 -1
@@ -34,8 +34,6 @@ export declare const serviceIds: {
34
34
  'DynamicTypes/FieldFilter/DataObjectAdapter': string;
35
35
  'DynamicTypes/FieldFilter/DataObjectObjectBrick': string;
36
36
  'DynamicTypes/FieldFilter/String': string;
37
- 'DynamicTypes/FieldFilter/Fulltext': string;
38
- 'DynamicTypes/FieldFilter/Input': string;
39
37
  'DynamicTypes/FieldFilter/None': string;
40
38
  'DynamicTypes/FieldFilter/Id': string;
41
39
  'DynamicTypes/FieldFilter/Number': string;
@@ -45,6 +43,11 @@ export declare const serviceIds: {
45
43
  'DynamicTypes/FieldFilter/BooleanSelect': string;
46
44
  'DynamicTypes/FieldFilter/Consent': string;
47
45
  'DynamicTypes/FieldFilter/ClassificationStore': string;
46
+ 'DynamicTypes/FieldFilter/InputQuantityValue': string;
47
+ 'DynamicTypes/FieldFilter/QuantityValue': string;
48
+ 'DynamicTypes/FieldFilter/Datetime': string;
49
+ 'DynamicTypes/FieldFilter/Time': string;
50
+ 'DynamicTypes/FieldFilter/Color': string;
48
51
  'DynamicTypes/BatchEdit/Text': string;
49
52
  'DynamicTypes/BatchEdit/TextArea': string;
50
53
  'DynamicTypes/BatchEdit/Datetime': string;
@@ -11,7 +11,7 @@ import React from 'react';
11
11
  import { type DatePickerValueType, type OutputType } from './utils/date-picker-utils';
12
12
  import { type GenericTimePickerProps } from 'antd/es/date-picker/generatePicker/interface';
13
13
  export type TimePickerProps = GenericTimePickerProps & {
14
- value?: DatePickerValueType;
14
+ value?: DatePickerValueType | null;
15
15
  onChange?: (date: DatePickerValueType) => void;
16
16
  outputType?: OutputType;
17
17
  outputFormat?: string;
@@ -0,0 +1,23 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import React from 'react';
11
+ import { type Dayjs } from 'dayjs';
12
+ import { type DatePickerValueType, type OutputType } from './utils/date-picker-utils';
13
+ import { type TimeRangePickerProps as antTimeRangePickerProps } from 'antd';
14
+ export type DateRange = [start: Dayjs | null, end: Dayjs | null];
15
+ export type DateRangeTargetValue = [start: DatePickerValueType, end: DatePickerValueType];
16
+ export type TimeRangePickerProps = Omit<antTimeRangePickerProps, 'value'> & {
17
+ value?: DateRangeTargetValue | null;
18
+ onChange?: (dates: DateRangeTargetValue | null) => void;
19
+ outputType?: OutputType;
20
+ outputFormat?: string;
21
+ inherited?: boolean;
22
+ };
23
+ export declare const TimeRangePicker: (props: TimeRangePickerProps) => React.JSX.Element;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type Meta, type StoryObj } from '@storybook/react';
11
+ import { TimeRangePicker } from './time-range-picker';
12
+ declare const config: Meta;
13
+ export default config;
14
+ type Story = StoryObj<typeof TimeRangePicker>;
15
+ export declare const _default: Story;
16
+ export declare const WithDefaultValue: Story;
17
+ export declare const WithTimestampOutput: Story;
18
+ export declare const WithCustomFormat: Story;
19
+ export declare const Disabled: Story;
20
+ export declare const Inherited: Story;
21
+ export declare const WithPlaceholder: Story;
@@ -7,8 +7,8 @@
7
7
  * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
8
  * @license Pimcore Open Core License (POCL)
9
9
  */
10
- import { DynamicTypeFieldFilterAbstractText } from '../../dynamic-type-field-filter-abstract-text';
11
- export declare class DynamicTypeFieldFilterInput extends DynamicTypeFieldFilterAbstractText {
12
- id: string;
13
- getFieldFilterType(): string;
10
+ import React from 'react';
11
+ import { type AbstractFieldFilterDefinition } from '../dynamic-type-field-filter-abstract';
12
+ export interface DynamicTypeFieldFilterColorProps extends AbstractFieldFilterDefinition {
14
13
  }
14
+ export declare const DynamicTypeFieldFilterColorComponent: (props: DynamicTypeFieldFilterColorProps) => React.JSX.Element;
@@ -7,8 +7,8 @@
7
7
  * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
8
  * @license Pimcore Open Core License (POCL)
9
9
  */
10
- import { DynamicTypeFieldFilterAbstractText } from '../../dynamic-type-field-filter-abstract-text';
11
- export declare class DynamicTypeFieldFilterFulltext extends DynamicTypeFieldFilterAbstractText {
12
- id: string;
13
- getFieldFilterType(): string;
10
+ import React from 'react';
11
+ import { type AbstractFieldFilterDefinition } from '../dynamic-type-field-filter-abstract';
12
+ export interface DynamicTypeFieldFilterInputQuantityValueProps extends AbstractFieldFilterDefinition {
14
13
  }
14
+ export declare const DynamicTypeFieldFilterInputQuantityValueComponent: () => React.JSX.Element;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import React from 'react';
11
+ import { type AbstractFieldFilterDefinition } from '../dynamic-type-field-filter-abstract';
12
+ export declare enum QuantityValueFilterSettingValue {
13
+ IS = "is",
14
+ BETWEEN = "between",
15
+ LESS = "less",
16
+ MORE = "more"
17
+ }
18
+ export interface QuantityValueValue {
19
+ setting: QuantityValueFilterSettingValue;
20
+ from: number | null;
21
+ to: number | null;
22
+ is: number | null;
23
+ unitId: string | null;
24
+ }
25
+ export interface DynamicTypeFieldFilterQuantityValueProps extends AbstractFieldFilterDefinition {
26
+ }
27
+ export declare const DynamicTypeFieldFilterQuantityValueComponent: (props: DynamicTypeFieldFilterQuantityValueProps) => React.JSX.Element;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import React from 'react';
11
+ import { type AbstractFieldFilterDefinition } from '../dynamic-type-field-filter-abstract';
12
+ export declare enum TimePickerSettingValue {
13
+ ON = "on",
14
+ BETWEEN = "between",
15
+ BEFORE = "before",
16
+ AFTER = "after"
17
+ }
18
+ export interface DateValue {
19
+ setting: TimePickerSettingValue;
20
+ from: string | null;
21
+ to: string | null;
22
+ on: string | null;
23
+ }
24
+ export interface DynamicTypeFieldFilterTimeProps extends AbstractFieldFilterDefinition {
25
+ }
26
+ export declare const DynamicTypeFieldFilterTimeComponent: (props: DynamicTypeFieldFilterTimeProps) => React.JSX.Element;
@@ -12,11 +12,15 @@
12
12
  * These types determine how the filtering logic is applied on the backend.
13
13
  */
14
14
  export declare enum FieldFilterFrontendType {
15
- String = "system.string",
16
- Fulltext = "system.fulltext",
17
15
  Boolean = "system.boolean",
18
- Number = "system.number",
19
16
  DateTime = "system.datetime",
17
+ Date = "system.date",
18
+ InputQuantityValue = "system.input_quantity_value",
19
+ Number = "system.number",
20
+ QuantityValue = "system.quantity_value",
21
+ Rgba = "system.rgba",
20
22
  Select = "system.select",
23
+ String = "system.string",
24
+ Time = "system.time",
21
25
  Consent = "crm.consent"
22
26
  }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type ReactElement } from 'react';
11
+ import { DynamicTypeFieldFilterAbstract } from '../../dynamic-type-field-filter-abstract';
12
+ import { type DynamicTypeFieldFilterColorProps } from '../../../../../../../modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-color-component';
13
+ export declare class DynamicTypeFieldFilterColor extends DynamicTypeFieldFilterAbstract {
14
+ id: string;
15
+ getFieldFilterType(): string;
16
+ getFieldFilterComponent(props: DynamicTypeFieldFilterColorProps): ReactElement<DynamicTypeFieldFilterColorProps>;
17
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type ReactElement } from 'react';
11
+ import { DynamicTypeFieldFilterAbstract } from '../../dynamic-type-field-filter-abstract';
12
+ import { type DynamicTypeFieldFilterDateProps } from '../../components/dynamic-type-field-filter-date-component';
13
+ import { type FieldFilter } from '../../../../../../../modules/element/listing/decorators/general-filters/context-layer/provider/field-filters/field-filters-provider';
14
+ export declare class DynamicTypeFieldFilterDatetime extends DynamicTypeFieldFilterAbstract {
15
+ id: string;
16
+ getFieldFilterType(): string;
17
+ getFieldFilterComponent(props: DynamicTypeFieldFilterDateProps): ReactElement<DynamicTypeFieldFilterDateProps>;
18
+ shouldApply(filter: FieldFilter): boolean;
19
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type ReactElement } from 'react';
11
+ import { DynamicTypeFieldFilterAbstractText } from '../../dynamic-type-field-filter-abstract-text';
12
+ import { type DynamicTypeFieldFilterInputQuantityValueProps } from '../../../../../../../modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-input-quantity-value-component';
13
+ import { type FieldFilter } from '../../../../../../../modules/element/listing/decorators/general-filters/context-layer/provider/field-filters/field-filters-provider';
14
+ export declare class DynamicTypeFieldFilterInputQuantityValue extends DynamicTypeFieldFilterAbstractText {
15
+ id: string;
16
+ getFieldFilterType(): string;
17
+ getFieldFilterComponent(props: DynamicTypeFieldFilterInputQuantityValueProps): ReactElement<DynamicTypeFieldFilterInputQuantityValueProps>;
18
+ shouldApply(filter: FieldFilter): boolean;
19
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type ReactElement } from 'react';
11
+ import { DynamicTypeFieldFilterAbstractText } from '../../dynamic-type-field-filter-abstract-text';
12
+ import { type DynamicTypeFieldFilterQuantityValueProps } from '../../../../../../../modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-quantity-value-component';
13
+ import { type FieldFilter } from '../../../../../../../modules/element/listing/decorators/general-filters/context-layer/provider/field-filters/field-filters-provider';
14
+ export declare class DynamicTypeFieldFilterQuantityValue extends DynamicTypeFieldFilterAbstractText {
15
+ id: string;
16
+ getFieldFilterType(): string;
17
+ getFieldFilterComponent(props: DynamicTypeFieldFilterQuantityValueProps): ReactElement<DynamicTypeFieldFilterQuantityValueProps>;
18
+ shouldApply(filter: FieldFilter): boolean;
19
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * This source file is available under the terms of the
3
+ * Pimcore Open Core License (POCL)
4
+ * Full copyright and license information is available in
5
+ * LICENSE.md which is distributed with this source code.
6
+ *
7
+ * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
8
+ * @license Pimcore Open Core License (POCL)
9
+ */
10
+ import { type ReactElement } from 'react';
11
+ import { DynamicTypeFieldFilterAbstract } from '../../dynamic-type-field-filter-abstract';
12
+ import { type FieldFilter } from '../../../../../../../modules/element/listing/decorators/general-filters/context-layer/provider/field-filters/field-filters-provider';
13
+ import { type DynamicTypeFieldFilterTimeProps } from '../../../../../../../modules/element/dynamic-types/definitions/field-filters/components/dynamic-type-field-filter-time-component';
14
+ export declare class DynamicTypeFieldFilterTime extends DynamicTypeFieldFilterAbstract {
15
+ id: string;
16
+ getFieldFilterType(): string;
17
+ getFieldFilterComponent(props: DynamicTypeFieldFilterTimeProps): ReactElement<DynamicTypeFieldFilterTimeProps>;
18
+ shouldApply(filter: FieldFilter): boolean;
19
+ }
@@ -10,6 +10,7 @@
10
10
  import React from 'react';
11
11
  import { type AbstractObjectDataDefinition, DynamicTypeObjectDataAbstract, type EditMode, type GetGridCellDefinitionProps } from '../dynamic-type-object-data-abstract';
12
12
  import type { InheritanceOverlayType } from '../../../../../../../components/inheritance-overlay/inheritance-overlay';
13
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
13
14
  export type ExternalImageObjectDataDefinition = AbstractObjectDataDefinition & {
14
15
  previewWidth: number | null;
15
16
  previewHeight: number | null;
@@ -19,6 +20,7 @@ export declare class DynamicTypeObjectDataExternalImage extends DynamicTypeObjec
19
20
  id: string;
20
21
  inheritedMaskOverlay: InheritanceOverlayType;
21
22
  gridCellEditMode: EditMode;
23
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
22
24
  getObjectDataComponent(props: ExternalImageObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
23
25
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
24
26
  getDefaultGridColumnWidth(): number | undefined;
@@ -11,6 +11,7 @@ import React from 'react';
11
11
  import { type AbstractObjectDataDefinition, DynamicTypeObjectDataAbstract, type EditMode, type GetGridCellDefinitionProps } from '../dynamic-type-object-data-abstract';
12
12
  import type { FormInstance } from 'antd';
13
13
  import type { NamePath } from 'rc-field-form/es/interface';
14
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
14
15
  export type InputQuantityValueObjectDataDefinition = AbstractObjectDataDefinition & {
15
16
  defaultUnit: string | null;
16
17
  defaultValue: string | null;
@@ -20,6 +21,7 @@ export type InputQuantityValueObjectDataDefinition = AbstractObjectDataDefinitio
20
21
  export declare class DynamicTypeObjectDataInputQuantityValue extends DynamicTypeObjectDataAbstract {
21
22
  id: string;
22
23
  gridCellEditMode: EditMode;
24
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
23
25
  getObjectDataComponent(props: InputQuantityValueObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
24
26
  handleDefaultValue(props: InputQuantityValueObjectDataDefinition, form: FormInstance, fieldName: NamePath): void;
25
27
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
@@ -11,6 +11,7 @@ import React from 'react';
11
11
  import { type AbstractObjectDataDefinition, DynamicTypeObjectDataAbstract, type EditMode, type GetGridCellDefinitionProps } from '../dynamic-type-object-data-abstract';
12
12
  import type { FormInstance } from 'antd';
13
13
  import type { NamePath } from 'rc-field-form/es/interface';
14
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
14
15
  export type QuantityValueObjectDataDefinition = AbstractObjectDataDefinition & {
15
16
  defaultUnit: string | null;
16
17
  defaultValue: number | null;
@@ -23,6 +24,7 @@ export type QuantityValueObjectDataDefinition = AbstractObjectDataDefinition & {
23
24
  export declare class DynamicTypeObjectDataQuantityValue extends DynamicTypeObjectDataAbstract {
24
25
  id: string;
25
26
  gridCellEditMode: EditMode;
27
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
26
28
  getObjectDataComponent(props: QuantityValueObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
27
29
  handleDefaultValue(props: QuantityValueObjectDataDefinition, form: FormInstance, fieldName: NamePath): void;
28
30
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
@@ -10,12 +10,14 @@
10
10
  import React from 'react';
11
11
  import { type AbstractObjectDataDefinition, DynamicTypeObjectDataAbstract, type EditMode, type GetGridCellDefinitionProps } from '../dynamic-type-object-data-abstract';
12
12
  import type { FormItemProps } from 'antd/es/form/FormItem';
13
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
13
14
  export type RgbaColorObjectDataDefinition = AbstractObjectDataDefinition & {
14
15
  minimumLength: number | null;
15
16
  };
16
17
  export declare class DynamicTypeObjectDataRgbaColor extends DynamicTypeObjectDataAbstract {
17
18
  id: string;
18
19
  gridCellEditMode: EditMode;
20
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
19
21
  getObjectDataComponent(props: RgbaColorObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
20
22
  getObjectDataFormItemProps(props: RgbaColorObjectDataDefinition): FormItemProps;
21
23
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
@@ -11,6 +11,7 @@ import type { InheritanceOverlayType } from '../../../../../../../components/inh
11
11
  import { type AbstractNumericObjectDataDefinition, DynamicTypeObjectDataAbstractNumeric } from '../../../../../../../modules/element/dynamic-types/definitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-numeric';
12
12
  import React from 'react';
13
13
  import { type EditMode, type AbstractObjectDataDefinition, type GetGridCellDefinitionProps } from '../dynamic-type-object-data-abstract';
14
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
14
15
  export type SliderObjectDataDefinition = AbstractNumericObjectDataDefinition & {
15
16
  vertical?: boolean | null;
16
17
  width?: number | string | null;
@@ -20,6 +21,7 @@ export declare class DynamicTypeObjectDataSlider extends DynamicTypeObjectDataAb
20
21
  id: string;
21
22
  inheritedMaskOverlay: InheritanceOverlayType;
22
23
  gridCellEditMode: EditMode;
24
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
23
25
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
24
26
  getObjectDataComponent(props: SliderObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
25
27
  }
@@ -9,10 +9,12 @@
9
9
  */
10
10
  import React from 'react';
11
11
  import { type AbstractObjectDataDefinition, DynamicTypeObjectDataAbstract, type EditMode, type GetGridCellDefinitionProps } from '../../../../../../../modules/element/dynamic-types/definitions/objects/data-related/dynamic-type-object-data-abstract';
12
+ import { type DynamicTypeFieldFilterAbstract } from '../../../../../../../../sdk/modules/element';
12
13
  export type TimeObjectDataDefinition = AbstractObjectDataDefinition;
13
14
  export declare class DynamicTypeObjectDataTime extends DynamicTypeObjectDataAbstract {
14
15
  id: string;
15
16
  gridCellEditMode: EditMode;
17
+ dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract;
16
18
  getObjectDataComponent(props: TimeObjectDataDefinition): React.ReactElement<AbstractObjectDataDefinition>;
17
19
  getGridCellPreviewComponent(props: GetGridCellDefinitionProps): React.ReactElement;
18
20
  }
@@ -8,9 +8,8 @@
8
8
  * @license Pimcore Open Core License (POCL)
9
9
  */
10
10
  import React from 'react';
11
- import { FieldFilterFrontendType } from '../../../../../../../../modules/element/dynamic-types/definitions/field-filters/frontendTypes';
12
11
  export interface SearchTermFilter {
13
- type: typeof FieldFilterFrontendType.Fulltext;
12
+ type: 'system.fulltext';
14
13
  filterValue: string;
15
14
  }
16
15
  export interface SearchTermFilterData {
@@ -18,7 +17,7 @@ export interface SearchTermFilterData {
18
17
  setSearchTerm: (searchTerm: SearchTermFilter['filterValue']) => void;
19
18
  getDataQueryFilterArg: () => SearchTermFilter | undefined;
20
19
  }
21
- export declare const searchTermFilterType = FieldFilterFrontendType.Fulltext;
20
+ export declare const searchTermFilterType = "system.fulltext";
22
21
  export type SearchTermFilterContextProps = SearchTermFilterData | undefined;
23
22
  export declare const SearchTermFilterContext: React.Context<SearchTermFilterContextProps>;
24
23
  export interface SearchTermFilterProviderProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pimcore/studio-ui-bundle",
3
- "version": "1.0.0-canary.20251126-185008-2bd08e6",
3
+ "version": "1.0.0-canary.20251127-100535-cdcb7a1",
4
4
  "keywords": [
5
5
  "pimcore",
6
6
  "pimcore-studio-ui"