@progress/kendo-react-dateinputs 8.2.0-develop.9 → 8.2.1-develop.1
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/dateinput/DateInput.js +1 -1
- package/dateinput/DateInput.mjs +75 -71
- package/datepicker/DatePicker.js +1 -1
- package/datepicker/DatePicker.mjs +77 -73
- package/daterangepicker/DateRangePicker.js +1 -1
- package/daterangepicker/DateRangePicker.mjs +16 -13
- package/datetimepicker/DateTimePicker.js +1 -1
- package/datetimepicker/DateTimePicker.mjs +92 -88
- package/dist/cdn/js/kendo-react-dateinputs.js +1 -1
- package/index.d.mts +25 -0
- package/index.d.ts +25 -0
- package/package-metadata.mjs +1 -1
- package/package.json +7 -7
package/index.d.mts
CHANGED
|
@@ -737,6 +737,10 @@ export declare interface DateInputProps<T extends DateInput = any> extends FormC
|
|
|
737
737
|
* If `clearButton` is set to `true`, the DateInput renders a button next to the date value. Clicking this button resets the value of the date and triggers the `change` event.
|
|
738
738
|
*/
|
|
739
739
|
clearButton?: boolean;
|
|
740
|
+
/**
|
|
741
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateInput. (Defaults to `false`)
|
|
742
|
+
*/
|
|
743
|
+
autoFocus?: boolean;
|
|
740
744
|
}
|
|
741
745
|
|
|
742
746
|
/**
|
|
@@ -960,6 +964,7 @@ export declare class DateInputWithoutContext extends React_2.Component<DateInput
|
|
|
960
964
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
961
965
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
962
966
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
967
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
963
968
|
};
|
|
964
969
|
/**
|
|
965
970
|
* @hidden
|
|
@@ -981,6 +986,7 @@ export declare class DateInputWithoutContext extends React_2.Component<DateInput
|
|
|
981
986
|
validationMessage: string;
|
|
982
987
|
placeholder: null;
|
|
983
988
|
ariaHasPopup: string;
|
|
989
|
+
autoFocus: boolean;
|
|
984
990
|
};
|
|
985
991
|
private kendoDate;
|
|
986
992
|
private currentFormat;
|
|
@@ -1244,6 +1250,10 @@ export declare interface DatePickerProps extends DatePickerSettings, FormCompone
|
|
|
1244
1250
|
* Specifies the text that is rendered as title in the adaptive popup.
|
|
1245
1251
|
*/
|
|
1246
1252
|
adaptiveTitle?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DatePicker. (Defaults to `false`)
|
|
1255
|
+
*/
|
|
1256
|
+
autoFocus?: boolean;
|
|
1247
1257
|
/**
|
|
1248
1258
|
* @hidden
|
|
1249
1259
|
*/
|
|
@@ -1473,6 +1483,7 @@ export declare class DatePickerWithoutContext extends React_2.Component<DatePick
|
|
|
1473
1483
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
1474
1484
|
adaptive: PropTypes.Requireable<boolean>;
|
|
1475
1485
|
adaptiveTitle: PropTypes.Requireable<string>;
|
|
1486
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1476
1487
|
};
|
|
1477
1488
|
/**
|
|
1478
1489
|
* @hidden
|
|
@@ -1497,6 +1508,7 @@ export declare class DatePickerWithoutContext extends React_2.Component<DatePick
|
|
|
1497
1508
|
size: "small" | "large" | "medium" | null | undefined;
|
|
1498
1509
|
rounded: "small" | "large" | "medium" | "full" | null | undefined;
|
|
1499
1510
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
1511
|
+
autoFocus: boolean;
|
|
1500
1512
|
};
|
|
1501
1513
|
/**
|
|
1502
1514
|
* @hidden
|
|
@@ -1729,6 +1741,10 @@ export declare interface DateRangePickerProps extends DateRangePickerSettings {
|
|
|
1729
1741
|
* If `clearButton` is set to `true`, the DateRangePicker renders a button next to the start and end date values. Clicking this button resets the value of the date and triggers the `change` event.
|
|
1730
1742
|
*/
|
|
1731
1743
|
clearButton?: boolean;
|
|
1744
|
+
/**
|
|
1745
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateRangePicker. (Defaults to `false`)
|
|
1746
|
+
*/
|
|
1747
|
+
autoFocus?: boolean;
|
|
1732
1748
|
/**
|
|
1733
1749
|
* @hidden
|
|
1734
1750
|
*/
|
|
@@ -1945,6 +1961,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1945
1961
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
1946
1962
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
1947
1963
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
1964
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1948
1965
|
}>>;
|
|
1949
1966
|
focusedDate: PropTypes.Requireable<Date>;
|
|
1950
1967
|
format: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
|
|
@@ -1980,6 +1997,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1980
1997
|
tabIndex: PropTypes.Requireable<number>;
|
|
1981
1998
|
dir: PropTypes.Requireable<string>;
|
|
1982
1999
|
value: PropTypes.Validator<SelectionRange>;
|
|
2000
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1983
2001
|
};
|
|
1984
2002
|
/**
|
|
1985
2003
|
* @hidden
|
|
@@ -1993,6 +2011,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1993
2011
|
max: Date;
|
|
1994
2012
|
min: Date;
|
|
1995
2013
|
swapButton: boolean;
|
|
2014
|
+
autoFocus: boolean;
|
|
1996
2015
|
};
|
|
1997
2016
|
private _element;
|
|
1998
2017
|
private _calendar;
|
|
@@ -2228,6 +2247,10 @@ export declare interface DateTimePickerProps extends DateTimePickerSettings, For
|
|
|
2228
2247
|
* Specifies the text that is rendered as title in the adaptive popup.
|
|
2229
2248
|
*/
|
|
2230
2249
|
adaptiveTitle?: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateTimePicker. (Defaults to `false`)
|
|
2252
|
+
*/
|
|
2253
|
+
autoFocus?: boolean;
|
|
2231
2254
|
}
|
|
2232
2255
|
|
|
2233
2256
|
/**
|
|
@@ -2449,6 +2472,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2449
2472
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
2450
2473
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
2451
2474
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
2475
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
2452
2476
|
};
|
|
2453
2477
|
/**
|
|
2454
2478
|
* @hidden
|
|
@@ -2470,6 +2494,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2470
2494
|
size: "small" | "large" | "medium" | null | undefined;
|
|
2471
2495
|
rounded: "small" | "large" | "medium" | "full" | null | undefined;
|
|
2472
2496
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
2497
|
+
autoFocus: boolean;
|
|
2473
2498
|
};
|
|
2474
2499
|
/**
|
|
2475
2500
|
* @hidden
|
package/index.d.ts
CHANGED
|
@@ -737,6 +737,10 @@ export declare interface DateInputProps<T extends DateInput = any> extends FormC
|
|
|
737
737
|
* If `clearButton` is set to `true`, the DateInput renders a button next to the date value. Clicking this button resets the value of the date and triggers the `change` event.
|
|
738
738
|
*/
|
|
739
739
|
clearButton?: boolean;
|
|
740
|
+
/**
|
|
741
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateInput. (Defaults to `false`)
|
|
742
|
+
*/
|
|
743
|
+
autoFocus?: boolean;
|
|
740
744
|
}
|
|
741
745
|
|
|
742
746
|
/**
|
|
@@ -960,6 +964,7 @@ export declare class DateInputWithoutContext extends React_2.Component<DateInput
|
|
|
960
964
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
961
965
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
962
966
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
967
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
963
968
|
};
|
|
964
969
|
/**
|
|
965
970
|
* @hidden
|
|
@@ -981,6 +986,7 @@ export declare class DateInputWithoutContext extends React_2.Component<DateInput
|
|
|
981
986
|
validationMessage: string;
|
|
982
987
|
placeholder: null;
|
|
983
988
|
ariaHasPopup: string;
|
|
989
|
+
autoFocus: boolean;
|
|
984
990
|
};
|
|
985
991
|
private kendoDate;
|
|
986
992
|
private currentFormat;
|
|
@@ -1244,6 +1250,10 @@ export declare interface DatePickerProps extends DatePickerSettings, FormCompone
|
|
|
1244
1250
|
* Specifies the text that is rendered as title in the adaptive popup.
|
|
1245
1251
|
*/
|
|
1246
1252
|
adaptiveTitle?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DatePicker. (Defaults to `false`)
|
|
1255
|
+
*/
|
|
1256
|
+
autoFocus?: boolean;
|
|
1247
1257
|
/**
|
|
1248
1258
|
* @hidden
|
|
1249
1259
|
*/
|
|
@@ -1473,6 +1483,7 @@ export declare class DatePickerWithoutContext extends React_2.Component<DatePick
|
|
|
1473
1483
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
1474
1484
|
adaptive: PropTypes.Requireable<boolean>;
|
|
1475
1485
|
adaptiveTitle: PropTypes.Requireable<string>;
|
|
1486
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1476
1487
|
};
|
|
1477
1488
|
/**
|
|
1478
1489
|
* @hidden
|
|
@@ -1497,6 +1508,7 @@ export declare class DatePickerWithoutContext extends React_2.Component<DatePick
|
|
|
1497
1508
|
size: "small" | "large" | "medium" | null | undefined;
|
|
1498
1509
|
rounded: "small" | "large" | "medium" | "full" | null | undefined;
|
|
1499
1510
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
1511
|
+
autoFocus: boolean;
|
|
1500
1512
|
};
|
|
1501
1513
|
/**
|
|
1502
1514
|
* @hidden
|
|
@@ -1729,6 +1741,10 @@ export declare interface DateRangePickerProps extends DateRangePickerSettings {
|
|
|
1729
1741
|
* If `clearButton` is set to `true`, the DateRangePicker renders a button next to the start and end date values. Clicking this button resets the value of the date and triggers the `change` event.
|
|
1730
1742
|
*/
|
|
1731
1743
|
clearButton?: boolean;
|
|
1744
|
+
/**
|
|
1745
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateRangePicker. (Defaults to `false`)
|
|
1746
|
+
*/
|
|
1747
|
+
autoFocus?: boolean;
|
|
1732
1748
|
/**
|
|
1733
1749
|
* @hidden
|
|
1734
1750
|
*/
|
|
@@ -1945,6 +1961,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1945
1961
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
1946
1962
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
1947
1963
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
1964
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1948
1965
|
}>>;
|
|
1949
1966
|
focusedDate: PropTypes.Requireable<Date>;
|
|
1950
1967
|
format: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
|
|
@@ -1980,6 +1997,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1980
1997
|
tabIndex: PropTypes.Requireable<number>;
|
|
1981
1998
|
dir: PropTypes.Requireable<string>;
|
|
1982
1999
|
value: PropTypes.Validator<SelectionRange>;
|
|
2000
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
1983
2001
|
};
|
|
1984
2002
|
/**
|
|
1985
2003
|
* @hidden
|
|
@@ -1993,6 +2011,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1993
2011
|
max: Date;
|
|
1994
2012
|
min: Date;
|
|
1995
2013
|
swapButton: boolean;
|
|
2014
|
+
autoFocus: boolean;
|
|
1996
2015
|
};
|
|
1997
2016
|
private _element;
|
|
1998
2017
|
private _calendar;
|
|
@@ -2228,6 +2247,10 @@ export declare interface DateTimePickerProps extends DateTimePickerSettings, For
|
|
|
2228
2247
|
* Specifies the text that is rendered as title in the adaptive popup.
|
|
2229
2248
|
*/
|
|
2230
2249
|
adaptiveTitle?: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* Represents the `autoFocus` HTML attribute that will be applied to the input element of the DateTimePicker. (Defaults to `false`)
|
|
2252
|
+
*/
|
|
2253
|
+
autoFocus?: boolean;
|
|
2231
2254
|
}
|
|
2232
2255
|
|
|
2233
2256
|
/**
|
|
@@ -2449,6 +2472,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2449
2472
|
size: PropTypes.Requireable<"small" | "large" | "medium" | null | undefined>;
|
|
2450
2473
|
rounded: PropTypes.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
|
|
2451
2474
|
fillMode: PropTypes.Requireable<"flat" | "solid" | "outline" | null | undefined>;
|
|
2475
|
+
autoFocus: PropTypes.Requireable<boolean>;
|
|
2452
2476
|
};
|
|
2453
2477
|
/**
|
|
2454
2478
|
* @hidden
|
|
@@ -2470,6 +2494,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2470
2494
|
size: "small" | "large" | "medium" | null | undefined;
|
|
2471
2495
|
rounded: "small" | "large" | "medium" | "full" | null | undefined;
|
|
2472
2496
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
2497
|
+
autoFocus: boolean;
|
|
2473
2498
|
};
|
|
2474
2499
|
/**
|
|
2475
2500
|
* @hidden
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-dateinputs",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1723022577,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dateinputs",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.1-develop.1",
|
|
4
4
|
"description": "React DateInput is a perfect input component for handling quick and efficient date values. KendoReact Date Inputs package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-date-math": "^1.4.0",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-react-buttons": "8.2.
|
|
28
|
-
"@progress/kendo-react-common": "8.2.
|
|
29
|
-
"@progress/kendo-react-intl": "8.2.
|
|
30
|
-
"@progress/kendo-react-labels": "8.2.
|
|
31
|
-
"@progress/kendo-react-layout": "8.2.
|
|
32
|
-
"@progress/kendo-react-popup": "8.2.
|
|
27
|
+
"@progress/kendo-react-buttons": "8.2.1-develop.1",
|
|
28
|
+
"@progress/kendo-react-common": "8.2.1-develop.1",
|
|
29
|
+
"@progress/kendo-react-intl": "8.2.1-develop.1",
|
|
30
|
+
"@progress/kendo-react-labels": "8.2.1-develop.1",
|
|
31
|
+
"@progress/kendo-react-layout": "8.2.1-develop.1",
|
|
32
|
+
"@progress/kendo-react-popup": "8.2.1-develop.1",
|
|
33
33
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
34
34
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
35
35
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|