@progress/kendo-react-dropdowns 11.0.0-develop.2 → 11.0.0-develop.4

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/index.d.mts CHANGED
@@ -512,6 +512,8 @@ export declare interface AutoCompleteProps extends FormComponentProps {
512
512
  /**
513
513
  * Providing different rendering of the popup element based on the screen dimensions.
514
514
  *
515
+ * @default `false`
516
+ *
515
517
  * @example
516
518
  * ```jsx
517
519
  * <AutoComplete adaptive={true} />
@@ -519,14 +521,26 @@ export declare interface AutoCompleteProps extends FormComponentProps {
519
521
  */
520
522
  adaptive?: boolean;
521
523
  /**
522
- * Specifies the text that is rendered as title in the adaptive popup.
524
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
525
+ * Applicable only when `adaptive` is set to `true`.
526
+ * If not provided, the title will be the same as the label.
523
527
  *
524
528
  * @example
525
529
  * ```jsx
526
- * <AutoComplete adaptiveTitle="Select an item" />
530
+ * <AutoComplete adaptiveTitle="Adaptive Popup Title" />
527
531
  * ```
528
532
  */
529
533
  adaptiveTitle?: string;
534
+ /**
535
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
536
+ * Applicable only when `adaptive` is set to `true`.
537
+ *
538
+ * @example
539
+ * ```jsx
540
+ * <AutoComplete adaptiveSubtitle="Adaptive Popup Subtitle" />
541
+ * ```
542
+ */
543
+ adaptiveSubtitle?: string;
530
544
  /**
531
545
  * Defines if AutoComplete's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
532
546
  *
@@ -614,6 +628,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
614
628
  list: default_2.Requireable<any>;
615
629
  adaptive: default_2.Requireable<boolean>;
616
630
  adaptiveTitle: default_2.Requireable<string>;
631
+ adaptiveSubtitle: default_2.Requireable<string>;
617
632
  onCancel: default_2.Requireable<(...args: any[]) => any>;
618
633
  skipDisabledItems: default_2.Requireable<boolean>;
619
634
  inputAttributes: default_2.Requireable<object>;
@@ -647,9 +662,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
647
662
  listNoDataRender: default_2.Requireable<(...args: any[]) => any>;
648
663
  focusedItemIndex: default_2.Requireable<(...args: any[]) => any>;
649
664
  header: default_2.Requireable<default_2.ReactNodeLike>;
650
- footer: default_2.Requireable<default_2.ReactNodeLike>; /**
651
- * @hidden
652
- */
665
+ footer: default_2.Requireable<default_2.ReactNodeLike>;
653
666
  };
654
667
  /**
655
668
  * @hidden
@@ -1407,6 +1420,8 @@ export declare interface ComboBoxProps extends FormComponentProps {
1407
1420
  /**
1408
1421
  * Providing different rendering of the popup element based on the screen dimensions.
1409
1422
  *
1423
+ * @default `false`
1424
+ *
1410
1425
  * @example
1411
1426
  * ```jsx
1412
1427
  * <ComboBox adaptive={true} />
@@ -1414,7 +1429,9 @@ export declare interface ComboBoxProps extends FormComponentProps {
1414
1429
  */
1415
1430
  adaptive?: boolean;
1416
1431
  /**
1417
- * Specifies the text that is rendered as title in the adaptive popup.
1432
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
1433
+ * Applicable only when `adaptive` is set to `true`.
1434
+ * If not provided, the title will be the same as the label.
1418
1435
  *
1419
1436
  * @example
1420
1437
  * ```jsx
@@ -1422,6 +1439,15 @@ export declare interface ComboBoxProps extends FormComponentProps {
1422
1439
  * ```
1423
1440
  */
1424
1441
  adaptiveTitle?: string;
1442
+ /**
1443
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
1444
+ * Applicable only when `adaptive` is set to `true`.
1445
+ *
1446
+ * @example
1447
+ * ```jsx
1448
+ * <ComboBox adaptiveSubtitle="Adaptive Popup Subtitle" />
1449
+ */
1450
+ adaptiveSubtitle?: string;
1425
1451
  /**
1426
1452
  * Defines if ComboBox's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
1427
1453
  *
@@ -1537,12 +1563,12 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1537
1563
  accessKey: default_2.Requireable<string>;
1538
1564
  data: default_2.Requireable<any[]>;
1539
1565
  textField: default_2.Requireable<string>;
1540
- /** @hidden */
1541
1566
  className: default_2.Requireable<string>;
1542
1567
  label: default_2.Requireable<string>;
1543
1568
  loading: default_2.Requireable<boolean>;
1544
1569
  popupSettings: default_2.Requireable<default_2.InferProps<{
1545
1570
  animate: default_2.Requireable<NonNullable<boolean | default_2.InferProps<{
1571
+ /** @hidden */
1546
1572
  openDuration: default_2.Requireable<number>;
1547
1573
  closeDuration: default_2.Requireable<number>;
1548
1574
  }> | null | undefined>>;
@@ -1592,6 +1618,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1592
1618
  private _skipBlur;
1593
1619
  private _input;
1594
1620
  private _adaptiveFilterInput;
1621
+ private _skipFocus;
1595
1622
  private itemHeight;
1596
1623
  private duplicates;
1597
1624
  private hasDuplicates;
@@ -1655,6 +1682,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1655
1682
  private renderAdaptiveListContainer;
1656
1683
  private renderMobileListFilter;
1657
1684
  private renderListContainer;
1685
+ private listContainerContent;
1658
1686
  private renderList;
1659
1687
  private handleMobileFilterChange;
1660
1688
  private renderSearchBar;
@@ -1675,6 +1703,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1675
1703
  private applyState;
1676
1704
  private setValidity;
1677
1705
  private calculateMedia;
1706
+ private handleFocus;
1678
1707
  }
1679
1708
 
1680
1709
  /** @hidden */
@@ -2469,6 +2498,8 @@ export declare interface DropDownListProps extends FormComponentProps {
2469
2498
  /**
2470
2499
  * Providing different rendering of the popup element based on the screen dimensions.
2471
2500
  *
2501
+ * @default `false`
2502
+ *
2472
2503
  * @example
2473
2504
  * ```jsx
2474
2505
  * <DropDownList adaptive={true} />
@@ -2476,14 +2507,25 @@ export declare interface DropDownListProps extends FormComponentProps {
2476
2507
  */
2477
2508
  adaptive?: boolean;
2478
2509
  /**
2479
- * Specifies the text that is rendered as title in the adaptive popup.
2510
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
2511
+ * Applicable only when `adaptive` is set to `true`.
2512
+ * If not provided, the title will be the same as the label.
2480
2513
  *
2481
2514
  * @example
2482
2515
  * ```jsx
2483
- * <DropDownList adaptiveTitle="Adaptive Title" />
2516
+ * <DropDownList adaptiveTitle="Adaptive Popup Title" />
2484
2517
  * ```
2485
2518
  */
2486
2519
  adaptiveTitle?: string;
2520
+ /**
2521
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
2522
+ * Applicable only when `adaptive` is set to `true`.
2523
+ *
2524
+ * @example
2525
+ * ```jsx
2526
+ * <DropDownList adaptiveSubtitle="Adaptive Popup Subtitle" />
2527
+ */
2528
+ adaptiveSubtitle?: string;
2487
2529
  /**
2488
2530
  * Sets the data item field that represents the start of a group. Applicable to objects data.
2489
2531
  *
@@ -2551,6 +2593,7 @@ export declare const dropdownsMessages: {
2551
2593
  "dropdowns.comboArrowBtnAriaLabelExpand": string;
2552
2594
  "dropdowns.comboArrowBtnAriaLabelCollapse": string;
2553
2595
  "dropdowns.dropDownListArrowBtnAriaLabel": string;
2596
+ "dropdowns.dropDownListAdaptiveFilterPlaceholder": string;
2554
2597
  "dropdowns.apply": string;
2555
2598
  "dropdowns.cancel": string;
2556
2599
  };
@@ -3094,6 +3137,8 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3094
3137
  /**
3095
3138
  * Providing different rendering of the popup element based on the screen dimensions.
3096
3139
  *
3140
+ * @default `false`
3141
+ *
3097
3142
  * @example
3098
3143
  * ```jsx
3099
3144
  * <DropDownTree adaptive={true} />
@@ -3101,14 +3146,26 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3101
3146
  */
3102
3147
  adaptive?: boolean;
3103
3148
  /**
3104
- * Specifies the text that is rendered as title in the adaptive popup.
3149
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
3150
+ * Applicable only when `adaptive` is set to `true`.
3151
+ * If not provided, the title will be the same as the label.
3105
3152
  *
3106
3153
  * @example
3107
3154
  * ```jsx
3108
- * <DropDownTree adaptiveTitle="Select an item" />
3155
+ * <DropDownTree adaptiveTitle="Adaptive Popup Title" />
3109
3156
  * ```
3110
3157
  */
3111
3158
  adaptiveTitle?: string;
3159
+ /**
3160
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
3161
+ * Applicable only when `adaptive` is set to `true`.
3162
+ *
3163
+ * @example
3164
+ * ```jsx
3165
+ * <DropDownTree adaptiveSubtitle="Adaptive Popup Subtitle" />
3166
+ * ```
3167
+ */
3168
+ adaptiveSubtitle?: string;
3112
3169
  }
3113
3170
 
3114
3171
  /**
@@ -3294,6 +3351,7 @@ declare interface ListFilterProps {
3294
3351
  fillMode?: null | 'solid' | 'flat' | 'outline';
3295
3352
  renderListFilterWrapper?: boolean;
3296
3353
  renderPrefixSeparator?: boolean;
3354
+ placeholder?: string;
3297
3355
  }
3298
3356
 
3299
3357
  /**
@@ -4295,6 +4353,8 @@ export declare interface MultiSelectProps extends FormComponentProps {
4295
4353
  /**
4296
4354
  * Providing different rendering of the popup element based on the screen dimensions.
4297
4355
  *
4356
+ * @default `false`
4357
+ *
4298
4358
  * @example
4299
4359
  * ```jsx
4300
4360
  * <MultiSelect adaptive={true} />
@@ -4302,14 +4362,25 @@ export declare interface MultiSelectProps extends FormComponentProps {
4302
4362
  */
4303
4363
  adaptive?: boolean;
4304
4364
  /**
4305
- * Specifies the text that is rendered as title in the adaptive popup.
4365
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
4366
+ * Applicable only when `adaptive` is set to `true`.
4367
+ * If not provided, the title will be the same as the label.
4306
4368
  *
4307
4369
  * @example
4308
4370
  * ```jsx
4309
- * <MultiSelect adaptiveTitle="Select an option" />
4371
+ * <MultiSelect adaptiveTitle="Adaptive Popup Title" />
4310
4372
  * ```
4311
4373
  */
4312
4374
  adaptiveTitle?: string;
4375
+ /**
4376
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
4377
+ * Applicable only when `adaptive` is set to `true`.
4378
+ *
4379
+ * @example
4380
+ * ```jsx
4381
+ * <MultiSelect adaptiveSubtitle="Adaptive Popup Subtitle" />
4382
+ */
4383
+ adaptiveSubtitle?: string;
4313
4384
  /**
4314
4385
  * Defines if MultiSelect's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
4315
4386
  *
@@ -4942,6 +5013,8 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4942
5013
  /**
4943
5014
  * Providing different rendering of the popup element based on the screen dimensions.
4944
5015
  *
5016
+ * @default `false`
5017
+ *
4945
5018
  * @example
4946
5019
  * ```jsx
4947
5020
  * <MultiSelectTree adaptive={true} />
@@ -4949,14 +5022,26 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4949
5022
  */
4950
5023
  adaptive?: boolean;
4951
5024
  /**
4952
- * Specifies the text that is rendered as title in the adaptive popup.
5025
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
5026
+ * Applicable only when `adaptive` is set to `true`.
5027
+ * If not provided, the title will be the same as the label.
4953
5028
  *
4954
5029
  * @example
4955
5030
  * ```jsx
4956
- * <MultiSelectTree adaptiveTitle="Select items" />
5031
+ * <MultiSelectTree adaptiveTitle="Adaptive Popup Title" />
4957
5032
  * ```
4958
5033
  */
4959
5034
  adaptiveTitle?: string | React_2.ReactNode;
5035
+ /**
5036
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
5037
+ * Applicable only when `adaptive` is set to `true`.
5038
+ *
5039
+ * @example
5040
+ * ```jsx
5041
+ * <MultiSelectTree adaptiveSubtitle="Adaptive Popup Subtitle" />
5042
+ * ```
5043
+ */
5044
+ adaptiveSubtitle?: string;
4960
5045
  }
4961
5046
 
4962
5047
  /**
@@ -4999,6 +5084,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
4999
5084
  list: default_2.Requireable<any>;
5000
5085
  adaptive: default_2.Requireable<boolean>;
5001
5086
  adaptiveTitle: default_2.Requireable<string>;
5087
+ adaptiveSubtitle: default_2.Requireable<string>;
5002
5088
  onCancel: default_2.Requireable<(...args: any[]) => any>;
5003
5089
  skipDisabledItems: default_2.Requireable<boolean>;
5004
5090
  inputAttributes: default_2.Requireable<object>;
package/index.d.ts CHANGED
@@ -512,6 +512,8 @@ export declare interface AutoCompleteProps extends FormComponentProps {
512
512
  /**
513
513
  * Providing different rendering of the popup element based on the screen dimensions.
514
514
  *
515
+ * @default `false`
516
+ *
515
517
  * @example
516
518
  * ```jsx
517
519
  * <AutoComplete adaptive={true} />
@@ -519,14 +521,26 @@ export declare interface AutoCompleteProps extends FormComponentProps {
519
521
  */
520
522
  adaptive?: boolean;
521
523
  /**
522
- * Specifies the text that is rendered as title in the adaptive popup.
524
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
525
+ * Applicable only when `adaptive` is set to `true`.
526
+ * If not provided, the title will be the same as the label.
523
527
  *
524
528
  * @example
525
529
  * ```jsx
526
- * <AutoComplete adaptiveTitle="Select an item" />
530
+ * <AutoComplete adaptiveTitle="Adaptive Popup Title" />
527
531
  * ```
528
532
  */
529
533
  adaptiveTitle?: string;
534
+ /**
535
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
536
+ * Applicable only when `adaptive` is set to `true`.
537
+ *
538
+ * @example
539
+ * ```jsx
540
+ * <AutoComplete adaptiveSubtitle="Adaptive Popup Subtitle" />
541
+ * ```
542
+ */
543
+ adaptiveSubtitle?: string;
530
544
  /**
531
545
  * Defines if AutoComplete's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
532
546
  *
@@ -614,6 +628,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
614
628
  list: default_2.Requireable<any>;
615
629
  adaptive: default_2.Requireable<boolean>;
616
630
  adaptiveTitle: default_2.Requireable<string>;
631
+ adaptiveSubtitle: default_2.Requireable<string>;
617
632
  onCancel: default_2.Requireable<(...args: any[]) => any>;
618
633
  skipDisabledItems: default_2.Requireable<boolean>;
619
634
  inputAttributes: default_2.Requireable<object>;
@@ -647,9 +662,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
647
662
  listNoDataRender: default_2.Requireable<(...args: any[]) => any>;
648
663
  focusedItemIndex: default_2.Requireable<(...args: any[]) => any>;
649
664
  header: default_2.Requireable<default_2.ReactNodeLike>;
650
- footer: default_2.Requireable<default_2.ReactNodeLike>; /**
651
- * @hidden
652
- */
665
+ footer: default_2.Requireable<default_2.ReactNodeLike>;
653
666
  };
654
667
  /**
655
668
  * @hidden
@@ -1407,6 +1420,8 @@ export declare interface ComboBoxProps extends FormComponentProps {
1407
1420
  /**
1408
1421
  * Providing different rendering of the popup element based on the screen dimensions.
1409
1422
  *
1423
+ * @default `false`
1424
+ *
1410
1425
  * @example
1411
1426
  * ```jsx
1412
1427
  * <ComboBox adaptive={true} />
@@ -1414,7 +1429,9 @@ export declare interface ComboBoxProps extends FormComponentProps {
1414
1429
  */
1415
1430
  adaptive?: boolean;
1416
1431
  /**
1417
- * Specifies the text that is rendered as title in the adaptive popup.
1432
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
1433
+ * Applicable only when `adaptive` is set to `true`.
1434
+ * If not provided, the title will be the same as the label.
1418
1435
  *
1419
1436
  * @example
1420
1437
  * ```jsx
@@ -1422,6 +1439,15 @@ export declare interface ComboBoxProps extends FormComponentProps {
1422
1439
  * ```
1423
1440
  */
1424
1441
  adaptiveTitle?: string;
1442
+ /**
1443
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
1444
+ * Applicable only when `adaptive` is set to `true`.
1445
+ *
1446
+ * @example
1447
+ * ```jsx
1448
+ * <ComboBox adaptiveSubtitle="Adaptive Popup Subtitle" />
1449
+ */
1450
+ adaptiveSubtitle?: string;
1425
1451
  /**
1426
1452
  * Defines if ComboBox's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
1427
1453
  *
@@ -1537,12 +1563,12 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1537
1563
  accessKey: default_2.Requireable<string>;
1538
1564
  data: default_2.Requireable<any[]>;
1539
1565
  textField: default_2.Requireable<string>;
1540
- /** @hidden */
1541
1566
  className: default_2.Requireable<string>;
1542
1567
  label: default_2.Requireable<string>;
1543
1568
  loading: default_2.Requireable<boolean>;
1544
1569
  popupSettings: default_2.Requireable<default_2.InferProps<{
1545
1570
  animate: default_2.Requireable<NonNullable<boolean | default_2.InferProps<{
1571
+ /** @hidden */
1546
1572
  openDuration: default_2.Requireable<number>;
1547
1573
  closeDuration: default_2.Requireable<number>;
1548
1574
  }> | null | undefined>>;
@@ -1592,6 +1618,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1592
1618
  private _skipBlur;
1593
1619
  private _input;
1594
1620
  private _adaptiveFilterInput;
1621
+ private _skipFocus;
1595
1622
  private itemHeight;
1596
1623
  private duplicates;
1597
1624
  private hasDuplicates;
@@ -1655,6 +1682,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1655
1682
  private renderAdaptiveListContainer;
1656
1683
  private renderMobileListFilter;
1657
1684
  private renderListContainer;
1685
+ private listContainerContent;
1658
1686
  private renderList;
1659
1687
  private handleMobileFilterChange;
1660
1688
  private renderSearchBar;
@@ -1675,6 +1703,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1675
1703
  private applyState;
1676
1704
  private setValidity;
1677
1705
  private calculateMedia;
1706
+ private handleFocus;
1678
1707
  }
1679
1708
 
1680
1709
  /** @hidden */
@@ -2469,6 +2498,8 @@ export declare interface DropDownListProps extends FormComponentProps {
2469
2498
  /**
2470
2499
  * Providing different rendering of the popup element based on the screen dimensions.
2471
2500
  *
2501
+ * @default `false`
2502
+ *
2472
2503
  * @example
2473
2504
  * ```jsx
2474
2505
  * <DropDownList adaptive={true} />
@@ -2476,14 +2507,25 @@ export declare interface DropDownListProps extends FormComponentProps {
2476
2507
  */
2477
2508
  adaptive?: boolean;
2478
2509
  /**
2479
- * Specifies the text that is rendered as title in the adaptive popup.
2510
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
2511
+ * Applicable only when `adaptive` is set to `true`.
2512
+ * If not provided, the title will be the same as the label.
2480
2513
  *
2481
2514
  * @example
2482
2515
  * ```jsx
2483
- * <DropDownList adaptiveTitle="Adaptive Title" />
2516
+ * <DropDownList adaptiveTitle="Adaptive Popup Title" />
2484
2517
  * ```
2485
2518
  */
2486
2519
  adaptiveTitle?: string;
2520
+ /**
2521
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
2522
+ * Applicable only when `adaptive` is set to `true`.
2523
+ *
2524
+ * @example
2525
+ * ```jsx
2526
+ * <DropDownList adaptiveSubtitle="Adaptive Popup Subtitle" />
2527
+ */
2528
+ adaptiveSubtitle?: string;
2487
2529
  /**
2488
2530
  * Sets the data item field that represents the start of a group. Applicable to objects data.
2489
2531
  *
@@ -2551,6 +2593,7 @@ export declare const dropdownsMessages: {
2551
2593
  "dropdowns.comboArrowBtnAriaLabelExpand": string;
2552
2594
  "dropdowns.comboArrowBtnAriaLabelCollapse": string;
2553
2595
  "dropdowns.dropDownListArrowBtnAriaLabel": string;
2596
+ "dropdowns.dropDownListAdaptiveFilterPlaceholder": string;
2554
2597
  "dropdowns.apply": string;
2555
2598
  "dropdowns.cancel": string;
2556
2599
  };
@@ -3094,6 +3137,8 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3094
3137
  /**
3095
3138
  * Providing different rendering of the popup element based on the screen dimensions.
3096
3139
  *
3140
+ * @default `false`
3141
+ *
3097
3142
  * @example
3098
3143
  * ```jsx
3099
3144
  * <DropDownTree adaptive={true} />
@@ -3101,14 +3146,26 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3101
3146
  */
3102
3147
  adaptive?: boolean;
3103
3148
  /**
3104
- * Specifies the text that is rendered as title in the adaptive popup.
3149
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
3150
+ * Applicable only when `adaptive` is set to `true`.
3151
+ * If not provided, the title will be the same as the label.
3105
3152
  *
3106
3153
  * @example
3107
3154
  * ```jsx
3108
- * <DropDownTree adaptiveTitle="Select an item" />
3155
+ * <DropDownTree adaptiveTitle="Adaptive Popup Title" />
3109
3156
  * ```
3110
3157
  */
3111
3158
  adaptiveTitle?: string;
3159
+ /**
3160
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
3161
+ * Applicable only when `adaptive` is set to `true`.
3162
+ *
3163
+ * @example
3164
+ * ```jsx
3165
+ * <DropDownTree adaptiveSubtitle="Adaptive Popup Subtitle" />
3166
+ * ```
3167
+ */
3168
+ adaptiveSubtitle?: string;
3112
3169
  }
3113
3170
 
3114
3171
  /**
@@ -3294,6 +3351,7 @@ declare interface ListFilterProps {
3294
3351
  fillMode?: null | 'solid' | 'flat' | 'outline';
3295
3352
  renderListFilterWrapper?: boolean;
3296
3353
  renderPrefixSeparator?: boolean;
3354
+ placeholder?: string;
3297
3355
  }
3298
3356
 
3299
3357
  /**
@@ -4295,6 +4353,8 @@ export declare interface MultiSelectProps extends FormComponentProps {
4295
4353
  /**
4296
4354
  * Providing different rendering of the popup element based on the screen dimensions.
4297
4355
  *
4356
+ * @default `false`
4357
+ *
4298
4358
  * @example
4299
4359
  * ```jsx
4300
4360
  * <MultiSelect adaptive={true} />
@@ -4302,14 +4362,25 @@ export declare interface MultiSelectProps extends FormComponentProps {
4302
4362
  */
4303
4363
  adaptive?: boolean;
4304
4364
  /**
4305
- * Specifies the text that is rendered as title in the adaptive popup.
4365
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
4366
+ * Applicable only when `adaptive` is set to `true`.
4367
+ * If not provided, the title will be the same as the label.
4306
4368
  *
4307
4369
  * @example
4308
4370
  * ```jsx
4309
- * <MultiSelect adaptiveTitle="Select an option" />
4371
+ * <MultiSelect adaptiveTitle="Adaptive Popup Title" />
4310
4372
  * ```
4311
4373
  */
4312
4374
  adaptiveTitle?: string;
4375
+ /**
4376
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
4377
+ * Applicable only when `adaptive` is set to `true`.
4378
+ *
4379
+ * @example
4380
+ * ```jsx
4381
+ * <MultiSelect adaptiveSubtitle="Adaptive Popup Subtitle" />
4382
+ */
4383
+ adaptiveSubtitle?: string;
4313
4384
  /**
4314
4385
  * Defines if MultiSelect's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
4315
4386
  *
@@ -4942,6 +5013,8 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4942
5013
  /**
4943
5014
  * Providing different rendering of the popup element based on the screen dimensions.
4944
5015
  *
5016
+ * @default `false`
5017
+ *
4945
5018
  * @example
4946
5019
  * ```jsx
4947
5020
  * <MultiSelectTree adaptive={true} />
@@ -4949,14 +5022,26 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4949
5022
  */
4950
5023
  adaptive?: boolean;
4951
5024
  /**
4952
- * Specifies the text that is rendered as title in the adaptive popup.
5025
+ * Specifies the text that is rendered as title in the adaptive popup(action sheet).
5026
+ * Applicable only when `adaptive` is set to `true`.
5027
+ * If not provided, the title will be the same as the label.
4953
5028
  *
4954
5029
  * @example
4955
5030
  * ```jsx
4956
- * <MultiSelectTree adaptiveTitle="Select items" />
5031
+ * <MultiSelectTree adaptiveTitle="Adaptive Popup Title" />
4957
5032
  * ```
4958
5033
  */
4959
5034
  adaptiveTitle?: string | React_2.ReactNode;
5035
+ /**
5036
+ * Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
5037
+ * Applicable only when `adaptive` is set to `true`.
5038
+ *
5039
+ * @example
5040
+ * ```jsx
5041
+ * <MultiSelectTree adaptiveSubtitle="Adaptive Popup Subtitle" />
5042
+ * ```
5043
+ */
5044
+ adaptiveSubtitle?: string;
4960
5045
  }
4961
5046
 
4962
5047
  /**
@@ -4999,6 +5084,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
4999
5084
  list: default_2.Requireable<any>;
5000
5085
  adaptive: default_2.Requireable<boolean>;
5001
5086
  adaptiveTitle: default_2.Requireable<string>;
5087
+ adaptiveSubtitle: default_2.Requireable<string>;
5002
5088
  onCancel: default_2.Requireable<(...args: any[]) => any>;
5003
5089
  skipDisabledItems: default_2.Requireable<boolean>;
5004
5090
  inputAttributes: default_2.Requireable<object>;
package/messages/index.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 o="dropdowns.nodata",a="dropdowns.clear",r="dropdowns.comboArrowBtnAriaLabelExpand",e="dropdowns.comboArrowBtnAriaLabelCollapse",n="dropdowns.dropDownListArrowBtnAriaLabel",t="dropdowns.apply",d="dropdowns.cancel",l={[a]:"clear",[o]:"NO DATA FOUND.",[r]:"expand combobox",[e]:"collapse combobox",[n]:"select",[t]:"Apply",[d]:"Cancel"};exports.adaptiveModeFooterApply=t;exports.adaptiveModeFooterCancel=d;exports.clear=a;exports.comboArrowBtnAriaLabelCollapse=e;exports.comboArrowBtnAriaLabelExpand=r;exports.dropDownListArrowBtnAriaLabel=n;exports.messages=l;exports.nodata=o;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o="dropdowns.nodata",e="dropdowns.clear",r="dropdowns.comboArrowBtnAriaLabelExpand",a="dropdowns.comboArrowBtnAriaLabelCollapse",t="dropdowns.dropDownListArrowBtnAriaLabel",d="dropdowns.dropDownListAdaptiveFilterPlaceholder",n="dropdowns.apply",l="dropdowns.cancel",p={[e]:"clear",[o]:"NO DATA FOUND.",[r]:"expand combobox",[a]:"collapse combobox",[t]:"select",[d]:"Filter",[n]:"Apply",[l]:"Cancel"};exports.adaptiveModeFooterApply=n;exports.adaptiveModeFooterCancel=l;exports.clear=e;exports.comboArrowBtnAriaLabelCollapse=a;exports.comboArrowBtnAriaLabelExpand=r;exports.dropDownListAdaptiveFilterPlaceholder=d;exports.dropDownListArrowBtnAriaLabel=t;exports.messages=p;exports.nodata=o;
@@ -5,22 +5,24 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- const o = "dropdowns.nodata", a = "dropdowns.clear", r = "dropdowns.comboArrowBtnAriaLabelExpand", n = "dropdowns.comboArrowBtnAriaLabelCollapse", e = "dropdowns.dropDownListArrowBtnAriaLabel", d = "dropdowns.apply", p = "dropdowns.cancel", s = {
9
- [a]: "clear",
8
+ const o = "dropdowns.nodata", r = "dropdowns.clear", a = "dropdowns.comboArrowBtnAriaLabelExpand", e = "dropdowns.comboArrowBtnAriaLabelCollapse", n = "dropdowns.dropDownListArrowBtnAriaLabel", d = "dropdowns.dropDownListAdaptiveFilterPlaceholder", t = "dropdowns.apply", l = "dropdowns.cancel", p = {
9
+ [r]: "clear",
10
10
  [o]: "NO DATA FOUND.",
11
- [r]: "expand combobox",
12
- [n]: "collapse combobox",
13
- [e]: "select",
14
- [d]: "Apply",
15
- [p]: "Cancel"
11
+ [a]: "expand combobox",
12
+ [e]: "collapse combobox",
13
+ [n]: "select",
14
+ [d]: "Filter",
15
+ [t]: "Apply",
16
+ [l]: "Cancel"
16
17
  };
17
18
  export {
18
- d as adaptiveModeFooterApply,
19
- p as adaptiveModeFooterCancel,
20
- a as clear,
21
- n as comboArrowBtnAriaLabelCollapse,
22
- r as comboArrowBtnAriaLabelExpand,
23
- e as dropDownListArrowBtnAriaLabel,
24
- s as messages,
19
+ t as adaptiveModeFooterApply,
20
+ l as adaptiveModeFooterCancel,
21
+ r as clear,
22
+ e as comboArrowBtnAriaLabelCollapse,
23
+ a as comboArrowBtnAriaLabelExpand,
24
+ d as dropDownListAdaptiveFilterPlaceholder,
25
+ n as dropDownListArrowBtnAriaLabel,
26
+ p as messages,
25
27
  o as nodata
26
28
  };
@@ -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-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1745495341,version:"11.0.0-develop.2",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"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1745581891,version:"11.0.0-develop.4",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"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "KendoReact",
11
11
  productCode: "KENDOUIREACT",
12
12
  productCodes: ["KENDOUIREACT"],
13
- publishDate: 1745495341,
14
- version: "11.0.0-develop.2",
13
+ publishDate: 1745581891,
14
+ version: "11.0.0-develop.4",
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
  };
17
17
  export {