@progress/kendo-vue-form 8.0.3-develop.2 → 8.0.3-develop.3

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.
@@ -0,0 +1,31 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FieldValidatorType } from './FieldValidator';
9
+ /**
10
+ * Represents the props of the FieldArray component that is used inside the Kendo U for Vue Form component.
11
+ */
12
+ export interface FieldArrayProps {
13
+ /**
14
+ * The name of the field in the Form state.
15
+ */
16
+ name: string;
17
+ /**
18
+ * Can be set to a Vue component.
19
+ * [`FieldArrayRenderProps`]({% slug api_form_fieldarrayprops %}).
20
+ */
21
+ component: any;
22
+ /**
23
+ * The validation functions for the FieldArray level.
24
+ * Currently, `validator` supports only synchronous functions.
25
+ */
26
+ validator?: FieldValidatorType | FieldValidatorType[];
27
+ /**
28
+ * @hidden
29
+ */
30
+ [customProp: string]: any;
31
+ }
@@ -0,0 +1,92 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props that are passed to the component which is rendered by FieldArray.
10
+ */
11
+ export interface FieldArrayRenderProps {
12
+ /**
13
+ * Represents the current value of the FieldArray
14
+ * ([see example]({% slug custom_components_form %}#toc-using-basic-properties)).
15
+ */
16
+ value: any;
17
+ /**
18
+ * Represents the error message that is returned by the validator.
19
+ * The FieldArray is considered valid if the `validationMessage` field is empty.
20
+ */
21
+ validationMessage: string | null;
22
+ /**
23
+ * Indicates if the field is touched.
24
+ * The touched state is set to `true` when the `onBlur` callback is called.
25
+ */
26
+ touched: boolean;
27
+ /**
28
+ * Indicates if the field is modified.
29
+ * The modified state is set to `true` when the `onChange` callback for the current field is called for first time.
30
+ */
31
+ modified: boolean;
32
+ /**
33
+ * Indicates if the field is visited.
34
+ * The visited state is set to `true` when the `onFocus` callback is called.
35
+ */
36
+ visited: boolean;
37
+ /**
38
+ * A calculated property based on whether `validationMessage` is present and the `touched` state is set to `true`.
39
+ */
40
+ valid: boolean;
41
+ /**
42
+ * The name of the field in the Form state.
43
+ */
44
+ name: string;
45
+ /**
46
+ * A callback to add a value to the beginning of the array.
47
+ */
48
+ onUnshift: (options: {
49
+ value: any;
50
+ }) => number;
51
+ /**
52
+ * A callback to add a value to the end of the array.
53
+ */
54
+ onPush: (options: {
55
+ value: any;
56
+ }) => void;
57
+ /**
58
+ * A callback to insert value at given index of the array.
59
+ */
60
+ onInsert: (options: {
61
+ value: any;
62
+ index: number;
63
+ }) => void;
64
+ /**
65
+ * A callback to remove a value from the end of the array. The value is returned.
66
+ */
67
+ onPop: () => any;
68
+ /**
69
+ * A callback to remove a value from given index of the array.
70
+ */
71
+ onRemove: (options: {
72
+ index: number;
73
+ }) => any;
74
+ /**
75
+ * A callback to replace value at given index of the array.
76
+ */
77
+ onReplace: (options: {
78
+ value: any;
79
+ index: number;
80
+ }) => void;
81
+ /**
82
+ * A callback to move a value from one index to another. Useful for drag and drop reordering.
83
+ */
84
+ onMove: (options: {
85
+ prevIndex: number;
86
+ nextIndex: number;
87
+ }) => void;
88
+ /**
89
+ * @hidden
90
+ */
91
+ [customProp: string]: any;
92
+ }
@@ -0,0 +1,163 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props that are passed from the Form component to the components nested inside it.
10
+ * To use the [KendoFrom Injected Property]({% slug api_form_fieldinjectedprops %}) it should be
11
+ * [injected](https://v3.vuejs.org/guide/component-provide-inject.html) it in the component that defines the Form content using the below code.
12
+ *
13
+ * ```js-no-run
14
+ * ...........
15
+ * inject: {
16
+ * kendoForm: { default: {} },
17
+ * }
18
+ * ...........
19
+ * ```
20
+ */
21
+ export interface FieldInjectedProps {
22
+ /**
23
+ * Indicates if the Form is ready to be submitted.
24
+ * If `allowSubmit` is set to `true` and the Form is valid, the user will be able to submit the form.
25
+ * If `allowSubmit` is set to `true` and the Form is not valid, the user will be able to set all fields
26
+ * `touched` and `visited` state to true.
27
+ * Useful for toggling the disabled state of the **Submit** button.
28
+ */
29
+ allowSubmit?: boolean;
30
+ /**
31
+ * The key-value pair containing the current errors by field path, combined from both field and form level validators.
32
+ */
33
+ errors?: object;
34
+ /**
35
+ * Indicates if the Form is modified. If any field is modified, `modified` is set to `true`.
36
+ * The modified state of field is set to `true` when the `onChange`
37
+ * callback of the Field component is called for first time.
38
+ */
39
+ modified: boolean;
40
+ /**
41
+ * An object that holds the `modified` fields.
42
+ */
43
+ modifiedByField: object;
44
+ /**
45
+ * Indicates if the Form is successfully submitted.
46
+ * Useful for detecting if user is leaving the form before saving changes.
47
+ */
48
+ submitted: boolean;
49
+ /**
50
+ * Indicates if the Form is touched.
51
+ * If any field is touched, `touched` is set to `true`.
52
+ * The touched state of field is set to `true` when the `onBlur`
53
+ * callback of the Field component is called or when the user tries to submit the form.
54
+ */
55
+ touched: boolean;
56
+ /**
57
+ * An object that holds the `touched` fields.
58
+ */
59
+ touchedByField: object;
60
+ /**
61
+ * Indicates if the Form is valid.
62
+ * If any field is invalid, `valid` is set to `false`.
63
+ */
64
+ valid: boolean;
65
+ /**
66
+ * A callback for getting the value of a field without using the Field component
67
+ * ([see example]({% slug common_scenarios_form %}#toc-reading-the-field-state)).
68
+ * Useful for creating and modifying the UI based on the field values.
69
+ */
70
+ valueGetter: (name: string) => any;
71
+ /**
72
+ * Indicates if the Form is visited.
73
+ * If any field is visited, `visited` is set to `true`.
74
+ * The visited state of field is set to `true` when the `onFocus`
75
+ * callback of the Field component is called or when the user tries to submit the form.
76
+ */
77
+ visited: boolean;
78
+ /**
79
+ * An object that holds the `visited` fields.
80
+ */
81
+ visitedByField: object;
82
+ /**
83
+ * When called without parameters it validates all the fields in the Form.
84
+ * If called with object parameter with keys names - the names of the fields, only these fields are validated.
85
+ */
86
+ validate: (options?: {
87
+ [key: string]: any;
88
+ }) => void;
89
+ /**
90
+ * A callback for resetting the Form.
91
+ */
92
+ onFormReset: () => void;
93
+ /**
94
+ * A callback for submitting the Form.
95
+ * Can be passed to the `onClick` property of the **Submit** button.
96
+ */
97
+ onSubmit: (event: any) => void;
98
+ /**
99
+ * A callback you have to call when the rendered component is blurred.
100
+ * Responsible for setting the touched state of the Field.
101
+ */
102
+ onBlur: () => void;
103
+ /**
104
+ * A callback you have to call when the value of the rendered component is changed
105
+ * ([see example]({% slug common_scenarios_form %}#toc-changing-the-field-value)).
106
+ * The `value` property of the event takes precedence over `target.value`.
107
+ */
108
+ onChange: (fieldName: string, event: {
109
+ target?: any;
110
+ value?: any;
111
+ }) => void;
112
+ /**
113
+ * A callback you have to call when the rendered component is focused.
114
+ * Responsible for setting the visited state of the Field.
115
+ */
116
+ onFocus: () => void;
117
+ /**
118
+ * ## Functions used in FieldArray component
119
+ */
120
+ /**
121
+ * A callback to insert value at given index of the array.
122
+ */
123
+ onInsert: (options: {
124
+ index: number;
125
+ value: any;
126
+ }) => void;
127
+ /**
128
+ * A callback to move a value from one index to another. Useful for drag and drop reordering.
129
+ */
130
+ onMove: (options: {
131
+ nextIndex: number;
132
+ prevIndex: number;
133
+ }) => void;
134
+ /**
135
+ * A callback to remove a value from the end of the array. The value is returned.
136
+ */
137
+ onPop: () => any;
138
+ /**
139
+ * A callback to add a value to the end of the array.
140
+ */
141
+ onPush: (options: {
142
+ value: any;
143
+ }) => void;
144
+ /**
145
+ * A callback to remove a value from given index of the array.
146
+ */
147
+ onRemove: (options: {
148
+ index: number;
149
+ }) => any;
150
+ /**
151
+ * A callback to replace value at given index of the array.
152
+ */
153
+ onReplace: (options: {
154
+ index: number;
155
+ value: any;
156
+ }) => void;
157
+ /**
158
+ * A callback to add a value to the beginning of the array.
159
+ */
160
+ onUnshift: (options: {
161
+ value: any;
162
+ }) => number;
163
+ }
@@ -0,0 +1,99 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FieldValidatorType } from './FieldValidator';
9
+ /**
10
+ * Represents the props of the Field component that is used inside the Kendo U for Vue Form component.
11
+ */
12
+ export interface FieldProps {
13
+ /**
14
+ * The name of the field in the Form state.
15
+ * Supports nested fields in the `user.age` and `users[index].name` formats.
16
+ */
17
+ name: string;
18
+ /**
19
+ * The id of the field.
20
+ */
21
+ id?: string;
22
+ /**
23
+ * Can be set to a Vue component or to the name of an HTML element,
24
+ * for example, `input`, `select`, and `textarea`.
25
+ * The props that are passed to component are the
26
+ * [`FieldRenderProps`]({% slug api_form_fieldrenderprops %}).
27
+ */
28
+ component: string | any;
29
+ /**
30
+ * The validation functions for the Field level.
31
+ * Currently, `validator` supports only synchronous functions.
32
+ * Using the array overload with inline array will cause infinite
33
+ * loop - in this case use `useMemo` hook to memoize the array.
34
+ */
35
+ validator?: FieldValidatorType | FieldValidatorType[];
36
+ /**
37
+ * Called when underlying editor triggers it's onChange event and the Form update it's internal state.
38
+ * Useful for updating related fields.
39
+ * > Keep in mind that Form listens to this editor event and automatically keeps it's internal state up to date.
40
+ * That why this event should be used only for executing custom logic.
41
+ */
42
+ onChange?: (event: any) => void;
43
+ /**
44
+ * @hidden
45
+ */
46
+ resource?: any;
47
+ /**
48
+ * @hidden
49
+ */
50
+ multiple?: boolean;
51
+ /**
52
+ * @hidden
53
+ */
54
+ dataItems?: any[];
55
+ /**
56
+ * @hidden
57
+ */
58
+ textField?: string;
59
+ /**
60
+ * @hidden
61
+ */
62
+ valueField?: string;
63
+ /**
64
+ * @hidden
65
+ */
66
+ colorField?: string;
67
+ /**
68
+ * @hidden
69
+ */
70
+ rows?: number;
71
+ /**
72
+ * @hidden
73
+ */
74
+ field?: any;
75
+ /**
76
+ * @hidden
77
+ */
78
+ start?: any;
79
+ /**
80
+ * @hidden
81
+ */
82
+ value?: any;
83
+ /**
84
+ * @hidden
85
+ */
86
+ width?: string;
87
+ /**
88
+ * @hidden
89
+ */
90
+ editorId?: string;
91
+ /**
92
+ * @hidden
93
+ */
94
+ isAllDay?: boolean;
95
+ /**
96
+ * @hidden
97
+ */
98
+ timezone?: string;
99
+ }
@@ -0,0 +1,68 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props that are passed to the component which is rendered by Field.
10
+ */
11
+ export interface FieldRenderProps {
12
+ /**
13
+ * A callback you have to call when the value of the rendered component is changed
14
+ * ([see example]({% slug common_scenarios_form %}#toc-changing-the-field-value)).
15
+ * The `value` property of the event takes precedence over `target.value`.
16
+ */
17
+ onChange?: (event: {
18
+ target?: any;
19
+ value?: any;
20
+ }) => void;
21
+ /**
22
+ * A callback you have to call when the rendered component is focused.
23
+ * Responsible for setting the visited state of the Field.
24
+ */
25
+ onFocus?: () => void;
26
+ /**
27
+ * A callback you have to call when the rendered component is blurred.
28
+ * Responsible for setting the touched state of the Field.
29
+ */
30
+ onBlur?: () => void;
31
+ /**
32
+ * Represents the current value of the Field
33
+ * ([see example]({% slug custom_components_form %}#toc-using-basic-properties)).
34
+ */
35
+ value: any;
36
+ /**
37
+ * Represents the error message that is returned by the validator.
38
+ * The Field is considered valid if the `validationMessage` field is empty.
39
+ */
40
+ validationMessage: string | null;
41
+ /**
42
+ * Indicates if the field is touched.
43
+ * The touched state is set to `true` when the `onBlur` callback is called.
44
+ */
45
+ touched: boolean;
46
+ /**
47
+ * Indicates if the field is modified.
48
+ * The modified state is set to `true` when the `onChange` callback for the current field is called for first time.
49
+ */
50
+ modified: boolean;
51
+ /**
52
+ * Indicates if the field is visited.
53
+ * The visited state is set to `true` when the `onFocus` callback is called.
54
+ */
55
+ visited: boolean;
56
+ /**
57
+ * A calculated property based on whether `validationMessage` is present and the `touched` state is set to `true`.
58
+ */
59
+ valid: boolean;
60
+ /**
61
+ * The name of the field in the Form state.
62
+ */
63
+ name: string;
64
+ /**
65
+ * @hidden
66
+ */
67
+ [customProp: string]: any;
68
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The validator function for the Field component. The function arguments are:
10
+ *
11
+ * * value - The current value of the field.
12
+ * * valueGetter - Function which can be used to get other fields value.
13
+ * Usable when validator depends on more than one field. Supports field paths.
14
+ * * fieldProps - Props of the Field component. Currently contains only the `name` prop.
15
+ * Usable when one validator is used across multiple fields.
16
+ *
17
+ * Returns `string` to signify error or `undefined` to signify validation success.
18
+ */
19
+ export type FieldValidatorType = (value: any, valueGetter: (name: string) => any, fieldProps: {
20
+ name: string;
21
+ }) => string | undefined;
@@ -0,0 +1,55 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FormRenderProps } from './FormRenderProps';
9
+ import { FormValidatorType } from './FormValidator';
10
+ import { FormSubmitClickEvent } from './FormSubmitClickEvent';
11
+ /**
12
+ * Represents the props of the Kendo U for Vue Form component.
13
+ */
14
+ export interface FormProps {
15
+ /**
16
+ * The initial field values of the Form.
17
+ *
18
+ * > When you initialize the Form fields, set initial values to them. Otherwise, some
19
+ * components might throw errors related to switching from uncontrolled to controlled mode.
20
+ */
21
+ initialValues?: {
22
+ [name: string]: any;
23
+ };
24
+ /**
25
+ * The validation function for the Form level.
26
+ * Should return key-value pair where the key is the field path and the value is the error message.
27
+ * Nested fields are supported, e.g.: 'users[0].name'.
28
+ * You can use the same field path to access the value from the
29
+ * values object using the `getter` function from the `kendo-vue-common` package.
30
+ * Currently, `validator` supports only synchronous functions.
31
+ */
32
+ validator?: FormValidatorType;
33
+ /**
34
+ * The submission handler for the Form.
35
+ * Called when at least one field has been modified, the user pressed
36
+ * the **Submit** button, and the form validation was successful.
37
+ */
38
+ onSubmit?: (values: {
39
+ [name: string]: any;
40
+ }, event?: any) => void;
41
+ /**
42
+ * Called every time the user presses the **Submit** button.
43
+ * Useful in advanced scenarios when you need to handle every
44
+ * submit event, even when the form is invalid or not modified state.
45
+ */
46
+ onSubmitclick?: (event: FormSubmitClickEvent) => void;
47
+ /**
48
+ * The Form content that will be rendered.
49
+ */
50
+ renderForm?: (props: FormRenderProps) => any;
51
+ /**
52
+ * Set this to `true` to allow the form submit without modified fields.
53
+ */
54
+ ignoreModified?: boolean;
55
+ }
@@ -0,0 +1,82 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { KeyValue } from './KeyValue';
9
+ /**
10
+ * Represents the props that are passed to the `render` option component of the Form.
11
+ */
12
+ export interface FormRenderProps {
13
+ /**
14
+ * A callback for submitting the Form.
15
+ * Can be passed to the `onClick` property of the **Submit** button.
16
+ */
17
+ onSubmit?: (event: any) => void;
18
+ /**
19
+ * A callback for emiting changes to a specific field without using the Field component
20
+ * ([see example]({% slug common_scenarios_form %}#toc-changing-the-field-value)).
21
+ *
22
+ * > Use `onChange` only if you cannot achieve the desired behavior through the Field component.
23
+ */
24
+ onChange?: (name: string, options: {
25
+ value: any;
26
+ }) => void;
27
+ /**
28
+ * A callback for resetting the Form.
29
+ */
30
+ onFormreset?: () => void;
31
+ /**
32
+ * The key-value pair containing the current errors by field path,
33
+ * combined from both field and form level validators.
34
+ */
35
+ errors: KeyValue<string>;
36
+ /**
37
+ * Indicates if the Form is valid.
38
+ * If any field is invalid, `valid` is set to `false`.
39
+ */
40
+ valid: boolean;
41
+ /**
42
+ * Indicates if the Form is touched.
43
+ * If any field is touched, `touched` is set to `true`.
44
+ * The touched state of field is set to `true` when the `onBlur`
45
+ * callback of the Field component is called or when the user tries to submit the form.
46
+ */
47
+ touched: boolean;
48
+ /**
49
+ * Indicates if the Form is visited.
50
+ * If any field is visited, `visited` is set to `true`.
51
+ * The visited state of field is set to `true` when the `onFocus`
52
+ * callback of the Field component is called or when the user tries to submit the form.
53
+ */
54
+ visited: boolean;
55
+ /**
56
+ * Indicates if the Form is modified.
57
+ * If any field is modified, `modified` is set to `true`.
58
+ * The modified state of field is set to `true` when the `onChange`
59
+ * callback of the Field component is called for first time.
60
+ */
61
+ modified: boolean;
62
+ /**
63
+ * Indicates if the Form is successfuly submitted.
64
+ * Useful for detecting if user is leaving the form before saving changes.
65
+ */
66
+ submitted: boolean;
67
+ /**
68
+ * Indicates if the Form is ready to be submitted.
69
+ * * If `allowSubmit` is set to `true` and the Form is valid, the user will be able to submit the form.
70
+ * * If `allowSubmit` is set to `true` and the Form is not valid, the user will be able to set all fields
71
+ * `touched` and `visited` state to true.
72
+ *
73
+ * Useful for toggling the disabled state of the **Submit** button.
74
+ */
75
+ allowSubmit: boolean;
76
+ /**
77
+ * A callback for getting the value of a field without using the Field component
78
+ * ([see example]({% slug common_scenarios_form %}#toc-reading-the-field-state)).
79
+ * Useful for creating and modifying the UI based on the field values.
80
+ */
81
+ valueGetter: (name: string) => any;
82
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The FormSubmitClick event.
10
+ */
11
+ export interface FormSubmitClickEvent {
12
+ /**
13
+ * Contains the current values of the form.
14
+ */
15
+ values: {
16
+ [name: string]: any;
17
+ };
18
+ /**
19
+ * The native event.
20
+ */
21
+ event?: any;
22
+ /**
23
+ * Represents the validity state of the form.
24
+ */
25
+ isValid: boolean;
26
+ /**
27
+ * Represents the modified state of the form.
28
+ */
29
+ isModified: boolean;
30
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { KeyValue } from './KeyValue';
9
+ /**
10
+ * The validator function for the Form component.
11
+ *
12
+ * * values - The current values of the form.
13
+ * * valueGetter - Function which can be used to get field value. Supports field paths.
14
+ *
15
+ * Returns key-value pair with errors if such are present. The key
16
+ * is the field path, where the value is the error message.
17
+ */
18
+ export type FormValidatorType = (values: any, valueGetter: (name: string) => any) => KeyValue<string> | undefined;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ *
10
+ */
11
+ export interface KeyValue<ValueType> {
12
+ [name: string]: ValueType;
13
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;