@progress/kendo-react-buttons 11.4.0-develop.1 → 11.4.0-develop.2
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/Button.js +1 -1
- package/Button.mjs +61 -48
- package/README.md +26 -2
- package/SpeechToTextButton/SpeechToTextButton.js +8 -0
- package/SpeechToTextButton/SpeechToTextButton.mjs +133 -0
- package/dist/cdn/js/kendo-react-buttons.js +1 -1
- package/index.d.mts +168 -52
- package/index.d.ts +168 -52
- package/index.js +1 -1
- package/index.mjs +12 -10
- package/messages/index.js +8 -0
- package/messages/index.mjs +16 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +6 -5
package/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { Align } from '@progress/kendo-react-popup';
|
|
|
9
9
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
10
10
|
import { ButtonsClassStructure } from '@progress/kendo-react-common';
|
|
11
11
|
import { default as default_2 } from 'prop-types';
|
|
12
|
+
import { default as default_3 } from 'react';
|
|
12
13
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
13
14
|
import { ForwardRefExoticComponent } from 'react';
|
|
14
15
|
import { JSX } from 'react/jsx-runtime';
|
|
@@ -117,7 +118,7 @@ declare interface ButtonInterface {
|
|
|
117
118
|
*/
|
|
118
119
|
disabled?: boolean;
|
|
119
120
|
/**
|
|
120
|
-
* Sets the selected state of the Button. Can be used for controlled
|
|
121
|
+
* Sets the selected state of the Button. Can be used for controlled mode.
|
|
121
122
|
*/
|
|
122
123
|
selected?: boolean;
|
|
123
124
|
/**
|
|
@@ -129,7 +130,7 @@ declare interface ButtonInterface {
|
|
|
129
130
|
*/
|
|
130
131
|
icon?: string;
|
|
131
132
|
/**
|
|
132
|
-
* Defines the SVG icon rendered inside the Button component
|
|
133
|
+
* Defines the SVG icon rendered inside the Button component.
|
|
133
134
|
*/
|
|
134
135
|
svgIcon?: SVGIcon;
|
|
135
136
|
/**
|
|
@@ -214,84 +215,59 @@ export declare interface ButtonProps extends ButtonInterface, React_2.ButtonHTML
|
|
|
214
215
|
*/
|
|
215
216
|
children?: React_2.ReactNode;
|
|
216
217
|
/**
|
|
217
|
-
* Configures the `size` of the Button.
|
|
218
|
+
* Configures the `size` of the Button. See [Button Appearance](slug://appearance_button).
|
|
218
219
|
*
|
|
219
|
-
*
|
|
220
|
-
* - small
|
|
221
|
-
* - medium
|
|
222
|
-
* - large
|
|
223
|
-
* - null—Does not set a size `className`.
|
|
224
|
-
*
|
|
225
|
-
* @default `medium`
|
|
220
|
+
* @default 'medium'
|
|
226
221
|
*/
|
|
227
222
|
size?: null | 'small' | 'medium' | 'large';
|
|
228
223
|
/**
|
|
229
|
-
* Configures the `roundness` of the Button.
|
|
224
|
+
* Configures the `roundness` of the Button. See [Button Appearance](slug://appearance_button).
|
|
230
225
|
*
|
|
231
|
-
*
|
|
232
|
-
* - small
|
|
233
|
-
* - medium
|
|
234
|
-
* - large
|
|
235
|
-
* - full
|
|
236
|
-
* - null—Does not set a rounded `className`.
|
|
237
|
-
*
|
|
238
|
-
* @default `medium`
|
|
226
|
+
* @default 'medium'
|
|
239
227
|
*/
|
|
240
228
|
rounded?: null | 'small' | 'medium' | 'large' | 'full';
|
|
241
229
|
/**
|
|
242
|
-
* Sets the title
|
|
230
|
+
* Sets the `title` HTML attribute of the Button.
|
|
243
231
|
*/
|
|
244
232
|
title?: string;
|
|
245
233
|
/**
|
|
246
|
-
* Configures the `fillMode` of the Button.
|
|
234
|
+
* Configures the `fillMode` of the Button. See [Button Appearance](slug://appearance_button).
|
|
247
235
|
*
|
|
248
|
-
*
|
|
249
|
-
* - solid
|
|
250
|
-
* - outline
|
|
251
|
-
* - flat
|
|
252
|
-
* - link
|
|
253
|
-
* - clear
|
|
254
|
-
* - null—Does not set a fillMode `className`.
|
|
255
|
-
*
|
|
256
|
-
* @default `solid`
|
|
236
|
+
* @default 'solid'
|
|
257
237
|
*/
|
|
258
238
|
fillMode?: null | 'solid' | 'outline' | 'flat' | 'link' | 'clear';
|
|
259
239
|
/**
|
|
260
|
-
* Configures the `themeColor` of the Button.
|
|
261
|
-
*
|
|
262
|
-
* The available options are:
|
|
263
|
-
* - base
|
|
264
|
-
* - primary
|
|
265
|
-
* - secondary
|
|
266
|
-
* - tertiary
|
|
267
|
-
* - info
|
|
268
|
-
* - success
|
|
269
|
-
* - warning
|
|
270
|
-
* - error
|
|
271
|
-
* - dark
|
|
272
|
-
* - light
|
|
273
|
-
* - inverse
|
|
274
|
-
* - null—Does not set a themeColor `className`.
|
|
240
|
+
* Configures the `themeColor` of the Button. See [Button Appearance](slug://appearance_button).
|
|
275
241
|
*
|
|
276
|
-
* @default
|
|
242
|
+
* @default 'base'
|
|
277
243
|
*/
|
|
278
244
|
themeColor?: null | 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
|
279
245
|
/**
|
|
280
|
-
* Sets an SVG icon or custom element before the content of the Button. For the custom component,
|
|
281
|
-
*
|
|
282
|
-
*
|
|
246
|
+
* Sets an SVG icon or custom element before the content of the Button. For the custom component, consider using
|
|
247
|
+
* [Phrasing content](https://developer.mozilla.org/en-US/docs/Web/HTML/Content_categories#phrasing_content).
|
|
248
|
+
* Do not use [Interactive content](https://developer.mozilla.org/en-US/docs/Web/HTML/Content_categories#interactive_content).
|
|
283
249
|
*/
|
|
284
250
|
startIcon?: React_2.ReactNode;
|
|
285
251
|
/**
|
|
286
|
-
* Sets an SVG icon or custom element after the content of the Button. For the custom component,
|
|
287
|
-
*
|
|
288
|
-
*
|
|
252
|
+
* Sets an SVG icon or custom element after the content of the Button. For the custom component, consider using
|
|
253
|
+
* [Phrasing content](https://developer.mozilla.org/en-US/docs/Web/HTML/Content_categories#phrasing_content).
|
|
254
|
+
* Do not use [Interactive content](https://developer.mozilla.org/en-US/docs/Web/HTML/Content_categories#interactive_content).
|
|
289
255
|
*/
|
|
290
256
|
endIcon?: React_2.ReactNode;
|
|
291
257
|
/**
|
|
292
258
|
* The unstyled option classes.
|
|
293
259
|
*/
|
|
294
260
|
unstyled?: ButtonsClassStructure;
|
|
261
|
+
/**
|
|
262
|
+
* @hidden
|
|
263
|
+
*/
|
|
264
|
+
ariaPressed?: boolean;
|
|
265
|
+
/**
|
|
266
|
+
* Configures the `size` of the SVG icon displayed inside the Button.
|
|
267
|
+
*
|
|
268
|
+
* @default 'medium'
|
|
269
|
+
*/
|
|
270
|
+
iconSize?: null | 'small' | 'medium' | 'large';
|
|
295
271
|
}
|
|
296
272
|
|
|
297
273
|
/**
|
|
@@ -2077,6 +2053,146 @@ export declare type FloatingActionButtonThemeColor = null | 'primary' | 'seconda
|
|
|
2077
2053
|
*/
|
|
2078
2054
|
declare type Omit_2<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
|
2079
2055
|
|
|
2056
|
+
/**
|
|
2057
|
+
* @hidden
|
|
2058
|
+
*/
|
|
2059
|
+
declare type Omit_3<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
|
2060
|
+
|
|
2061
|
+
/**
|
|
2062
|
+
* Represents a single recognition alternative from the speech engine.
|
|
2063
|
+
*/
|
|
2064
|
+
declare interface SpeechRecognitionAlternative_2 {
|
|
2065
|
+
/**
|
|
2066
|
+
* The transcript of the recognized speech.
|
|
2067
|
+
*/
|
|
2068
|
+
transcript: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* A confidence score for the transcript, where 0 indicates no confidence and 1 indicates complete confidence.
|
|
2071
|
+
*/
|
|
2072
|
+
confidence: number;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* Represents the [KendoReact SpeechToTextButton component](slug://overview_speechtotextbutton).
|
|
2077
|
+
*
|
|
2078
|
+
* @example
|
|
2079
|
+
* ```jsx
|
|
2080
|
+
* const App = () => {
|
|
2081
|
+
* return (
|
|
2082
|
+
* <SpeechToTextButton />
|
|
2083
|
+
* );
|
|
2084
|
+
* };
|
|
2085
|
+
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
2086
|
+
* ```
|
|
2087
|
+
*/
|
|
2088
|
+
export declare const SpeechToTextButton: default_3.ForwardRefExoticComponent<SpeechToTextButtonProps & default_3.RefAttributes<SpeechToTextButtonHandle>>;
|
|
2089
|
+
|
|
2090
|
+
/**
|
|
2091
|
+
* The SpeechToTextButton ref.
|
|
2092
|
+
*/
|
|
2093
|
+
export declare interface SpeechToTextButtonHandle {
|
|
2094
|
+
/**
|
|
2095
|
+
* The `start` event callback that starts the speech recognition service listening to incoming audio with intent to recognize grammars.
|
|
2096
|
+
*/
|
|
2097
|
+
start: () => void;
|
|
2098
|
+
/**
|
|
2099
|
+
* The `stop` event callback that stops the speech recognition service from listening to incoming audio, and attempts to return a result using the audio captured so far.
|
|
2100
|
+
*/
|
|
2101
|
+
stop: () => void;
|
|
2102
|
+
/**
|
|
2103
|
+
* The `abort` event callback that stops the speech recognition service from listening to incoming audio, and doesn't attempt to return a result.
|
|
2104
|
+
*/
|
|
2105
|
+
abort: () => void;
|
|
2106
|
+
/**
|
|
2107
|
+
* The `isActive` event callback that returns boolean value if the SpeechToTextButton is in active state.
|
|
2108
|
+
*/
|
|
2109
|
+
isActive: () => boolean;
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
/**
|
|
2113
|
+
* Represents the props of the [KendoReact SpeechToTextButton component](slug://overview_speechtotextbutton).
|
|
2114
|
+
*/
|
|
2115
|
+
export declare interface SpeechToTextButtonProps extends Omit_3<ButtonProps, 'onError'> {
|
|
2116
|
+
/**
|
|
2117
|
+
* The valid BCP 47 language tag to use for speech recognition. Defaults to `en-US`.
|
|
2118
|
+
*/
|
|
2119
|
+
lang?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
* Specifies whether the speech recognition should continue until explicitly stopped. Defaults to `false`.
|
|
2122
|
+
*/
|
|
2123
|
+
continuous?: boolean;
|
|
2124
|
+
/**
|
|
2125
|
+
* Specifies whether to return interim results. Defaults to `false`.
|
|
2126
|
+
*/
|
|
2127
|
+
interimResults?: boolean;
|
|
2128
|
+
/**
|
|
2129
|
+
* Specifies the maximum number of alternative transcriptions to return. Defaults to `1`.
|
|
2130
|
+
*/
|
|
2131
|
+
maxAlternatives?: number;
|
|
2132
|
+
/**
|
|
2133
|
+
* Specifies which speech recognition engine or integration the component should use.
|
|
2134
|
+
* This allows the component to operate in different environments or use alternative implementations.
|
|
2135
|
+
*/
|
|
2136
|
+
integrationMode?: 'webSpeech' | 'none';
|
|
2137
|
+
/**
|
|
2138
|
+
* The accessible label of the component.
|
|
2139
|
+
*/
|
|
2140
|
+
ariaLabel?: string;
|
|
2141
|
+
/**
|
|
2142
|
+
* Specifies if the SpeechToTextButton is disabled ([see example](slug://states_speechtotextbutton)). Defaults to `false`.
|
|
2143
|
+
*/
|
|
2144
|
+
disabled?: boolean;
|
|
2145
|
+
/**
|
|
2146
|
+
* Sets additional classes to the SpeechToTextButton ([see example](slug://appearance_speechtotextbutton##custom-styling)).
|
|
2147
|
+
*/
|
|
2148
|
+
className?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* Sets additional CSS styles to the SpeechToTextButton ([see example](slug://appearance_speechtotextbutton##custom-styling)).
|
|
2151
|
+
*/
|
|
2152
|
+
style?: React.CSSProperties;
|
|
2153
|
+
/**
|
|
2154
|
+
* Callback function that is called when speech recognition starts.
|
|
2155
|
+
*/
|
|
2156
|
+
onStart?: () => void;
|
|
2157
|
+
/**
|
|
2158
|
+
* Callback function that is called when a speech recognition result is available.
|
|
2159
|
+
* The event contains the `isFinal` flag and an array of alternatives.
|
|
2160
|
+
*/
|
|
2161
|
+
onResult?: (event: SpeechToTextResultEvent) => void;
|
|
2162
|
+
/**
|
|
2163
|
+
* Callback function that is called when speech recognition ends.
|
|
2164
|
+
*/
|
|
2165
|
+
onEnd?: () => void;
|
|
2166
|
+
/**
|
|
2167
|
+
* Callback function that is called when an error occurs during speech recognition.
|
|
2168
|
+
*/
|
|
2169
|
+
onError?: (event: SpeechToTextErrorEvent) => void;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
/**
|
|
2173
|
+
* The event argument for the `error` event of the SpeechToTextButton.
|
|
2174
|
+
*/
|
|
2175
|
+
export declare interface SpeechToTextErrorEvent {
|
|
2176
|
+
/**
|
|
2177
|
+
* Message detailing the cause of the speech recognition error. Use this message for debugging or user feedback.
|
|
2178
|
+
*/
|
|
2179
|
+
errorMessage: string;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
/**
|
|
2183
|
+
* The event argument for the `result` event of the SpeechToTextButton.
|
|
2184
|
+
*/
|
|
2185
|
+
export declare interface SpeechToTextResultEvent {
|
|
2186
|
+
/**
|
|
2187
|
+
* Indicates whether the speech recognition result is final (`true`) or interim (`false`).
|
|
2188
|
+
*/
|
|
2189
|
+
isFinal: boolean;
|
|
2190
|
+
/**
|
|
2191
|
+
* An array of possible recognition alternatives returned by the speech engine.
|
|
2192
|
+
*/
|
|
2193
|
+
alternatives: SpeechRecognitionAlternative_2[];
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2080
2196
|
/** @hidden */
|
|
2081
2197
|
export declare const SplitButton: ForwardRefExoticComponent<SplitButtonProps & RefAttributes<any>>;
|
|
2082
2198
|
|
package/index.js
CHANGED
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./Button.js"),i=require("./ButtonGroup.js"),t=require("./ListButton/SplitButton.js"),
|
|
9
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./Button.js"),i=require("./ButtonGroup.js"),t=require("./ListButton/SplitButton.js"),p=require("./ListButton/SplitButtonItem.js"),o=require("./ListButton/DropDownButton.js"),a=require("./ListButton/DropDownButtonItem.js"),l=require("./toolbar/Toolbar.js"),B=require("./toolbar/tools/ToolbarItem.js"),c=require("./toolbar/tools/ToolbarSeparator.js"),s=require("./toolbar/tools/ToolbarSpacer.js"),S=require("./util.js"),D=require("./Chip/Chip.js"),m=require("./Chip/ChipList.js"),T=require("./FloatingActionButton/FloatingActionButton.js"),q=require("./FloatingActionButton/FloatingActionButtonItem.js"),b=require("./SpeechToTextButton/SpeechToTextButton.js"),n=require("@progress/kendo-react-common"),e=n.withIdHOC(o.DropDownButton);e.displayName="KendoReactDropDownButton";const r=n.withIdHOC(t.SplitButton);r.displayName="KendoReactSplitButton";exports.Button=u.Button;exports.ButtonGroup=i.ButtonGroup;exports.SplitButtonClassComponent=t.SplitButton;exports.SplitButtonItem=p.SplitButtonItem;exports.DropDownButtonClassComponent=o.DropDownButton;exports.DropDownButtonItem=a.DropDownButtonItem;exports.Toolbar=l.Toolbar;exports.ToolbarItem=B.ToolbarItem;exports.ToolbarSeparator=c.ToolbarSeparator;exports.ToolbarSpacer=s.ToolbarSpacer;exports.toolbarButtons=S.toolbarButtons;exports.Chip=D.Chip;exports.ChipList=m.ChipList;exports.FloatingActionButton=T.FloatingActionButton;exports.FloatingActionButtonItem=q.FloatingActionButtonItem;exports.SpeechToTextButton=b.SpeechToTextButton;exports.DropDownButton=e;exports.SplitButton=r;
|
package/index.mjs
CHANGED
|
@@ -6,21 +6,22 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
import { Button as
|
|
10
|
-
import { ButtonGroup as
|
|
9
|
+
import { Button as B } from "./Button.mjs";
|
|
10
|
+
import { ButtonGroup as l } from "./ButtonGroup.mjs";
|
|
11
11
|
import { SplitButton as t } from "./ListButton/SplitButton.mjs";
|
|
12
|
-
import { SplitButtonItem as
|
|
12
|
+
import { SplitButtonItem as s } from "./ListButton/SplitButtonItem.mjs";
|
|
13
13
|
import { DropDownButton as r } from "./ListButton/DropDownButton.mjs";
|
|
14
14
|
import { DropDownButtonItem as S } from "./ListButton/DropDownButtonItem.mjs";
|
|
15
15
|
import { Toolbar as w } from "./toolbar/Toolbar.mjs";
|
|
16
|
-
import { ToolbarItem as
|
|
17
|
-
import { ToolbarSeparator as
|
|
16
|
+
import { ToolbarItem as T } from "./toolbar/tools/ToolbarItem.mjs";
|
|
17
|
+
import { ToolbarSeparator as d } from "./toolbar/tools/ToolbarSeparator.mjs";
|
|
18
18
|
import { ToolbarSpacer as h } from "./toolbar/tools/ToolbarSpacer.mjs";
|
|
19
19
|
import { toolbarButtons as y } from "./util.mjs";
|
|
20
20
|
import { Chip as F } from "./Chip/Chip.mjs";
|
|
21
21
|
import { ChipList as N } from "./Chip/ChipList.mjs";
|
|
22
22
|
import { FloatingActionButton as $ } from "./FloatingActionButton/FloatingActionButton.mjs";
|
|
23
23
|
import { FloatingActionButtonItem as H } from "./FloatingActionButton/FloatingActionButtonItem.mjs";
|
|
24
|
+
import { SpeechToTextButton as O } from "./SpeechToTextButton/SpeechToTextButton.mjs";
|
|
24
25
|
import { withIdHOC as o } from "@progress/kendo-react-common";
|
|
25
26
|
const p = o(
|
|
26
27
|
r
|
|
@@ -31,8 +32,8 @@ const n = o(
|
|
|
31
32
|
);
|
|
32
33
|
n.displayName = "KendoReactSplitButton";
|
|
33
34
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
B as Button,
|
|
36
|
+
l as ButtonGroup,
|
|
36
37
|
F as Chip,
|
|
37
38
|
N as ChipList,
|
|
38
39
|
p as DropDownButton,
|
|
@@ -40,12 +41,13 @@ export {
|
|
|
40
41
|
S as DropDownButtonItem,
|
|
41
42
|
$ as FloatingActionButton,
|
|
42
43
|
H as FloatingActionButtonItem,
|
|
44
|
+
O as SpeechToTextButton,
|
|
43
45
|
n as SplitButton,
|
|
44
46
|
t as SplitButtonClassComponent,
|
|
45
|
-
|
|
47
|
+
s as SplitButtonItem,
|
|
46
48
|
w as Toolbar,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
T as ToolbarItem,
|
|
50
|
+
d as ToolbarSeparator,
|
|
49
51
|
h as ToolbarSpacer,
|
|
50
52
|
y as toolbarButtons
|
|
51
53
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="speechToTextButton.ariaLabel",t="speechToTextButton.title",o={[e]:"Start speech recognition",[t]:"Speech to Text Button"};exports.messages=o;exports.speechToTextAriaLabel=e;exports.speechToTextTitle=t;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
const e = "speechToTextButton.ariaLabel", t = "speechToTextButton.title", o = {
|
|
9
|
+
[e]: "Start speech recognition",
|
|
10
|
+
[t]: "Speech to Text Button"
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
o as messages,
|
|
14
|
+
e as speechToTextAriaLabel,
|
|
15
|
+
t as speechToTextTitle
|
|
16
|
+
};
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-buttons",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-buttons",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1753690750,version:"11.4.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "11.4.0-develop.
|
|
13
|
+
publishDate: 1753690750,
|
|
14
|
+
version: "11.4.0-develop.2",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-buttons",
|
|
3
|
-
"version": "11.4.0-develop.
|
|
3
|
+
"version": "11.4.0-develop.2",
|
|
4
4
|
"description": "All you need in React Button in one package: disabled/enabled states, built-in styles and more. KendoReact Buttons package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -26,9 +26,10 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.6.0",
|
|
29
|
-
"@progress/kendo-
|
|
30
|
-
"@progress/kendo-react-
|
|
31
|
-
"@progress/kendo-react-
|
|
29
|
+
"@progress/kendo-webspeech-common": "^1.0.0",
|
|
30
|
+
"@progress/kendo-react-common": "11.4.0-develop.2",
|
|
31
|
+
"@progress/kendo-react-intl": "11.4.0-develop.2",
|
|
32
|
+
"@progress/kendo-react-popup": "11.4.0-develop.2",
|
|
32
33
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
33
34
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
34
35
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"package": {
|
|
64
65
|
"productName": "KendoReact",
|
|
65
66
|
"productCode": "KENDOUIREACT",
|
|
66
|
-
"publishDate":
|
|
67
|
+
"publishDate": 1753690750,
|
|
67
68
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
68
69
|
}
|
|
69
70
|
},
|