@progress/kendo-vue-common 7.0.3-develop.1 → 7.1.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/index.d.mts CHANGED
@@ -12,6 +12,17 @@ import { ExtractPropTypes } from 'vue';
12
12
  import { PropType } from 'vue';
13
13
  import { PublicProps } from 'vue';
14
14
 
15
+ /**
16
+ * @hidden
17
+ */
18
+ export declare const actions: {
19
+ increase: string;
20
+ decrease: string;
21
+ cancel: string;
22
+ accept: string;
23
+ split: string;
24
+ };
25
+
15
26
  /** @hidden */
16
27
  export declare const ADAPTIVE_MEDIUM_BREAKPOINT: number;
17
28
 
@@ -57,6 +68,124 @@ medium: any;
57
68
  };
58
69
  }, true, {}, any>;
59
70
 
71
+ /**
72
+ * All classes
73
+ */
74
+ export declare interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure, InputsClassStructure, DropDownsClassStructure, DateInputsClassStructure {
75
+ }
76
+
77
+ /** Configuration for the child element */
78
+ export declare interface AnimationChildClasses {
79
+ /** Container for child element */
80
+ container?: string;
81
+ /** Relative positioning for child container */
82
+ relative?: string;
83
+ }
84
+
85
+ /** Configuration for the child element */
86
+ export declare interface AnimationChildContainerClasses {
87
+ /** Container for childContainer element */
88
+ container?: string;
89
+ }
90
+
91
+ /** Animation Classes */
92
+ export declare interface AnimationClasses {
93
+ /** Configuration for the child element */
94
+ child?: AnimationChildClasses;
95
+ /** Configuration for the childContainer element */
96
+ childContainer?: AnimationChildContainerClasses;
97
+ /** Animation states for appear transition */
98
+ appear?: Appear;
99
+ /** Active states for appear transition */
100
+ appearActive?: AppearActive;
101
+ /** Animation states for enter transition */
102
+ enter?: Enter;
103
+ /** Active states for enter transition */
104
+ enterActive?: EnterActive;
105
+ /** Animation states for exit transition */
106
+ exit?: Exit;
107
+ /** Active states for exit transition */
108
+ exitActive?: ExitActive;
109
+ }
110
+
111
+ /**
112
+ * Animation classes
113
+ */
114
+ export declare interface AnimationsClassStructure {
115
+ uAnimation?: AnimationClasses;
116
+ }
117
+
118
+ /** Animation states */
119
+ export declare interface AnimationStatesClasses {
120
+ /** Animation for 'push-right' transition */
121
+ 'push-right'?: string;
122
+ /** Animation for 'push-left' transition */
123
+ 'push-left'?: string;
124
+ /** Animation for 'push-down' transition */
125
+ 'push-down'?: string;
126
+ /** Animation for 'push-up' transition */
127
+ 'push-up'?: string;
128
+ /** Animation for 'expand-vertical' transition */
129
+ 'expand-vertical'?: string;
130
+ /** Animation for 'expand-horizontal' transition */
131
+ 'expand-horizontal'?: string;
132
+ /** Animation for 'fade' transition */
133
+ fade?: string;
134
+ /** Animation for 'zoom-in' transition */
135
+ 'zoom-in'?: string;
136
+ /** Animation for 'zoom-out' transition */
137
+ 'zoom-out'?: string;
138
+ /** Animation for 'slide-in' transition */
139
+ 'slide-in'?: string;
140
+ /** Animation for 'slide-down' transition */
141
+ 'slide-down'?: string;
142
+ /** Animation for 'slide-up' transition */
143
+ 'slide-up'?: string;
144
+ /** Animation for 'slide-right' transition */
145
+ 'slide-right'?: string;
146
+ /** Animation for 'slide-left' transition */
147
+ 'slide-left'?: string;
148
+ /** Animation for 'reveal-vertical' transition */
149
+ 'reveal-vertical'?: string;
150
+ /** Animation for 'reveal-horizontal' transition */
151
+ 'reveal-horizontal'?: string;
152
+ }
153
+
154
+ /**
155
+ * @hidden
156
+ */
157
+ export declare const animationStyles: {
158
+ [key: string]: string;
159
+ };
160
+
161
+ /** Animation states for appear transition */
162
+ export declare interface Appear extends AnimationStatesClasses {
163
+ }
164
+
165
+ /** Active states for appear transition */
166
+ export declare interface AppearActive extends AnimationStatesClasses {
167
+ }
168
+
169
+ /**
170
+ * @hidden
171
+ */
172
+ export declare const base: {
173
+ prefix: string;
174
+ important: string;
175
+ rtl: string;
176
+ rounded: string;
177
+ value: string;
178
+ state: string;
179
+ filter: string;
180
+ virtual: string;
181
+ infinite: string;
182
+ clear: string;
183
+ reset: string;
184
+ data: string;
185
+ nodata: string;
186
+ scroller: string;
187
+ };
188
+
60
189
  /**
61
190
  * @hidden
62
191
  */
@@ -140,6 +269,273 @@ export declare class BrowserSupportService {
140
269
  get scrollbarWidth(): number;
141
270
  }
142
271
 
272
+ /** Button classes */
273
+ export declare interface ButtonClasses {
274
+ /** Button wrapper */
275
+ wrapper?: ButtonWrapperClasses;
276
+ /** Text element */
277
+ text?: string;
278
+ /** Icon element */
279
+ icon?: string;
280
+ }
281
+
282
+ export declare interface ButtonGroupClasses {
283
+ /** Wrapper configuration for the button group */
284
+ wrapper?: ButtonGroupWrapperClasses;
285
+ /** Position configuration for the button group */
286
+ position?: ButtonGroupPositionClasses;
287
+ }
288
+
289
+ export declare interface ButtonGroupPositionClasses {
290
+ /** Position for the button group at the start */
291
+ start?: string;
292
+ /** Position for the button group at the end */
293
+ end?: string;
294
+ }
295
+
296
+ export declare interface ButtonGroupWrapperClasses {
297
+ /** Main button group classes */
298
+ main?: string;
299
+ /** Stretched state classes for the button group */
300
+ stretched?: string;
301
+ /** Disabled state classes for the button group */
302
+ disabled?: string;
303
+ }
304
+
305
+ /**
306
+ * @hidden
307
+ */
308
+ export declare const buttonPrefix: string;
309
+
310
+ /**
311
+ * Buttons classes
312
+ */
313
+ export declare interface ButtonsClassStructure {
314
+ uButton?: ButtonClasses;
315
+ uButtonGroup?: ButtonGroupClasses;
316
+ uDropDownButton?: DropDownButtonClasses;
317
+ }
318
+
319
+ /** Button wrapper classes */
320
+ export declare interface ButtonWrapperClasses {
321
+ /** Main button */
322
+ main?: string;
323
+ /** Size options for the button */
324
+ size?: {
325
+ /** Small size button */
326
+ small?: string;
327
+ /** Medium size button */
328
+ medium?: string;
329
+ /** Large size button */
330
+ large?: string;
331
+ };
332
+ /** Fill mode options for the button */
333
+ fillMode?: {
334
+ /** Solid fill mode for the button */
335
+ solid?: string;
336
+ /** Outline fill mode for the button */
337
+ outline?: string;
338
+ /** Flat fill mode for the button */
339
+ flat?: string;
340
+ /** Link fill mode for the button */
341
+ link?: string;
342
+ /** Clear fill mode for the button */
343
+ clear?: string;
344
+ };
345
+ /** Theme color options for the button */
346
+ themeColor?: {
347
+ /** Base theme color options */
348
+ base?: ThemeColorFillModeClasses;
349
+ /** Primary theme color options */
350
+ primary?: ThemeColorFillModeClasses;
351
+ /** Secondary theme color options */
352
+ secondary?: ThemeColorFillModeClasses;
353
+ /** Tertiary theme color options */
354
+ tertiary?: ThemeColorFillModeClasses;
355
+ /** Info theme color options */
356
+ info?: ThemeColorFillModeClasses;
357
+ /** Success theme color options */
358
+ success?: ThemeColorFillModeClasses;
359
+ /** Warning theme color options */
360
+ warning?: ThemeColorFillModeClasses;
361
+ /** Error theme color options */
362
+ error?: ThemeColorFillModeClasses;
363
+ /** Dark theme color options */
364
+ dark?: ThemeColorFillModeClasses;
365
+ /** Light theme color options */
366
+ light?: ThemeColorFillModeClasses;
367
+ /** Inverse theme color options */
368
+ inverse?: ThemeColorFillModeClasses;
369
+ };
370
+ /** Rounded options for the button */
371
+ rounded?: {
372
+ /** Small rounded option */
373
+ small?: string;
374
+ /** Medium rounded option */
375
+ medium?: string;
376
+ /** Large rounded option */
377
+ large?: string;
378
+ };
379
+ /** Icon button */
380
+ iconButton?: string;
381
+ /** Disabled state */
382
+ disabled?: string;
383
+ /** Selected state */
384
+ selected?: string;
385
+ /** Right-to-left layout */
386
+ isRtl?: string;
387
+ }
388
+
389
+ export declare interface CalendarClasses {
390
+ /** Wrapper configuration for the calendar */
391
+ wrapper?: CalendarWrapperClasses;
392
+ /** View configuration for the calendar */
393
+ view?: CalendarViewClasses;
394
+ /** Navigation class for the calendar */
395
+ navigation?: string;
396
+ /** Navigation highlight class for the calendar */
397
+ navigationHighlight?: string;
398
+ /** Table configuration for the calendar */
399
+ table?: CalendarTableClasses;
400
+ /** Header class for the calendar */
401
+ thead?: string;
402
+ /** Row class for the calendar */
403
+ tr?: string;
404
+ /** Header cell class for the calendar */
405
+ th?: string;
406
+ /** Caption class for the calendar */
407
+ caption?: string;
408
+ /** Body class for the calendar */
409
+ tbody?: string;
410
+ /** Unordered list class for the calendar */
411
+ ul?: string;
412
+ /** List item class for the calendar */
413
+ li?: string;
414
+ /** Table cell configuration for the calendar */
415
+ td?: CalendarTdClasses;
416
+ /** Title class for the calendar */
417
+ title?: string;
418
+ /** Header configuration for the calendar */
419
+ header?: CalendarHeaderClasses;
420
+ /** Spacer class for the calendar */
421
+ spacer?: string;
422
+ /** Navigation class for the calendar */
423
+ nav?: string;
424
+ /** Today configuration for the calendar */
425
+ today?: CalendarTodayClasses;
426
+ /** Scrollable configuration for the calendar */
427
+ scrollable?: CalendarScrollableClasses;
428
+ /** Scrollable selector class for the calendar */
429
+ scrollableSelector?: string;
430
+ /** Scrollable placeholder configuration for the calendar */
431
+ scrollablePlaceholder?: {
432
+ /** Main class for the scrollable placeholder */
433
+ main?: string;
434
+ /** Horizontal scrollable placeholder class */
435
+ horizontal?: string;
436
+ };
437
+ /** Link class for the calendar */
438
+ link?: string;
439
+ /** Navigation marker class for the calendar */
440
+ navigationMarker?: string;
441
+ }
442
+
443
+ export declare interface CalendarHeaderClasses {
444
+ /** Main class for the calendar header */
445
+ main?: string;
446
+ /** Vertical alignment class for the calendar header */
447
+ vertical?: string;
448
+ }
449
+
450
+ /**
451
+ * @hidden
452
+ */
453
+ export declare const calendarPrefix: string;
454
+
455
+ export declare interface CalendarScrollableClasses {
456
+ /** Main class for the scrollable calendar area */
457
+ main?: string;
458
+ /** Content class for the scrollable area */
459
+ content?: string;
460
+ /** Horizontal scrollable state class */
461
+ horizontal?: string;
462
+ }
463
+
464
+ export declare interface CalendarTableClasses {
465
+ /** Main class for the calendar table */
466
+ main?: string;
467
+ /** Weekdays class for the calendar */
468
+ weekdays?: string;
469
+ }
470
+
471
+ export declare interface CalendarTdClasses {
472
+ /** Main class for the table cell */
473
+ main?: string;
474
+ /** Range start class for the table cell */
475
+ rangeStart?: string;
476
+ /** Range end class for the table cell */
477
+ rangeEnd?: string;
478
+ /** Range middle class for the table cell */
479
+ rangeMid?: string;
480
+ /** Range split end class for the table cell */
481
+ rangeSplitEnd?: string;
482
+ /** Range split start class for the table cell */
483
+ rangeSplitStart?: string;
484
+ /** Active state class for the table cell */
485
+ active?: string;
486
+ /** Focused state class for the table cell */
487
+ focused?: string;
488
+ /** Selected state class for the table cell */
489
+ selected?: string;
490
+ /** Today’s date class for the table cell */
491
+ today?: string;
492
+ /** Weekend class for the table cell */
493
+ weekend?: string;
494
+ /** Disabled state class for the table cell */
495
+ disabled?: string;
496
+ /** Other month class for the table cell */
497
+ isOtherMonth?: string;
498
+ /** Empty state class for the table cell */
499
+ isEmpty?: string;
500
+ /** Week state class for the table cell */
501
+ isWeek?: string;
502
+ }
503
+
504
+ export declare interface CalendarTodayClasses {
505
+ /** Main class for today's calendar entry */
506
+ main?: string;
507
+ /** Disabled state class for today’s calendar entry */
508
+ disabled?: string;
509
+ }
510
+
511
+ export declare interface CalendarViewClasses {
512
+ /** Main class for the calendar view */
513
+ main?: string;
514
+ /** Vertical alignment class for the calendar view */
515
+ vertical?: string;
516
+ /** Month view class for the calendar */
517
+ month?: string;
518
+ /** Year view class for the calendar */
519
+ year?: string;
520
+ /** Decade view class for the calendar */
521
+ decade?: string;
522
+ /** Century view class for the calendar */
523
+ century?: string;
524
+ }
525
+
526
+ export declare interface CalendarWrapperClasses {
527
+ /** Main class for the calendar wrapper */
528
+ main?: string;
529
+ /** Prefix for the infinite calendar state */
530
+ infinite?: string;
531
+ /** Disabled state class for the calendar wrapper */
532
+ disabled?: string;
533
+ /** Week number class for the calendar */
534
+ weekNumber?: string;
535
+ /** Size configurations for the calendar */
536
+ size?: DateTimeSizeClasses;
537
+ }
538
+
143
539
  /**
144
540
  * @hidden
145
541
  */
@@ -175,6 +571,365 @@ export declare function cloneObject(obj: any, result: any): void;
175
571
  */
176
572
  export declare function cloneValue(value: any, nextValue: any): any;
177
573
 
574
+ export declare interface ComboBoxClasses {
575
+ /** Wrapper configurations for the combo box component */
576
+ wrapper?: {
577
+ /** Main prefix for the combo box */
578
+ main?: string;
579
+ /** Class for the input element */
580
+ input?: string;
581
+ /** Size configurations for the input */
582
+ size?: {
583
+ /** Class for the small size of the input */
584
+ small?: string;
585
+ /** Class for the medium size of the input */
586
+ medium?: string;
587
+ /** Class for the large size of the input */
588
+ large?: string;
589
+ };
590
+ /** Fill mode configurations for the input */
591
+ fillMode?: {
592
+ /** Class for the solid fill mode of the input */
593
+ solid?: string;
594
+ /** Class for the outline fill mode of the input */
595
+ outline?: string;
596
+ /** Class for the flat fill mode of the input */
597
+ flat?: string;
598
+ /** Class for the link fill mode of the input */
599
+ link?: string;
600
+ /** Class for the clear fill mode of the input */
601
+ clear?: string;
602
+ };
603
+ /** Rounded configurations for the input */
604
+ rounded?: {
605
+ /** Class for the small rounded input */
606
+ small?: string;
607
+ /** Class for the medium rounded input */
608
+ medium?: string;
609
+ /** Class for the large rounded input */
610
+ large?: string;
611
+ };
612
+ /** Class for the disabled state of the input */
613
+ disabled?: string;
614
+ /** Class for the invalid state of the input */
615
+ invalid?: string;
616
+ /** Class for the loading state of the input */
617
+ loading?: string;
618
+ /** Class for the required state of the input */
619
+ required?: string;
620
+ };
621
+ /** Class for the loading icon associated with the input */
622
+ loadingIcon?: string;
623
+ /** Class for the input button within the combo box */
624
+ inputButton?: string;
625
+ /** List container configurations for the combo box */
626
+ listContainer?: {
627
+ /** Main prefix for the list container */
628
+ main?: string;
629
+ /** Class for the popup within the combo box */
630
+ popup?: string;
631
+ };
632
+ /** Class for the header of the list within the combo box */
633
+ listHeader?: string;
634
+ /** List configurations for the combo box */
635
+ list?: {
636
+ /** Main prefix for the list */
637
+ list?: string;
638
+ /** Class for the table element within the list */
639
+ table?: string;
640
+ /** Size configurations for the list */
641
+ size?: {
642
+ /** Class for the list size */
643
+ prefix?: string;
644
+ /** Class for the small size of the list */
645
+ small?: string;
646
+ /** Class for the medium size of the list */
647
+ medium?: string;
648
+ /** Class for the large size of the list */
649
+ large?: string;
650
+ };
651
+ /** Table size configurations for the list */
652
+ tableSize?: {
653
+ /** Class for the table size */
654
+ prefix?: string;
655
+ /** Class for the small size of the table */
656
+ small?: string;
657
+ /** Class for the medium size of the table */
658
+ medium?: string;
659
+ /** Class for the large size of the table */
660
+ large?: string;
661
+ };
662
+ /** Class for the virtual list configuration */
663
+ virtual?: string;
664
+ };
665
+ /** List content configurations for the combo box */
666
+ listContent?: {
667
+ /** Main prefix for the list content */
668
+ main?: string;
669
+ /** Class for the scroller within the list content */
670
+ scroller?: string;
671
+ };
672
+ /** Class for the footer of the list within the combo box */
673
+ listFooter?: string;
674
+ }
675
+
676
+ /**
677
+ * @hidden
678
+ */
679
+ export declare const comboBoxPrefix: string;
680
+
681
+ /**
682
+ * @hidden
683
+ */
684
+ export declare const components: {
685
+ actionsheet: string;
686
+ calendar: string;
687
+ buttongroup: string;
688
+ dateinput: string;
689
+ datetime: string;
690
+ datetimepicker: string;
691
+ dropdownlist: string;
692
+ combobox: string;
693
+ maskedtextbox: string;
694
+ menu: string;
695
+ searchbox: string;
696
+ timepicker: string;
697
+ };
698
+
699
+ /**
700
+ * @hidden
701
+ */
702
+ export declare const containers: {
703
+ actions: string;
704
+ container: string;
705
+ content: string;
706
+ group: string;
707
+ row: string;
708
+ nav: string;
709
+ wrap: string;
710
+ wrapper: string;
711
+ list: string;
712
+ placeholder: string;
713
+ popup: string;
714
+ item: string;
715
+ part: string;
716
+ picker: string;
717
+ separator: string;
718
+ spacer: string;
719
+ tab: string;
720
+ titlebar: string;
721
+ optionLabel: string;
722
+ view: string;
723
+ };
724
+
725
+ /**
726
+ * @hidden
727
+ */
728
+ export declare const cssUtils: {
729
+ center: string;
730
+ hbox: string;
731
+ vstack: string;
732
+ hstack: string;
733
+ overflow: string;
734
+ };
735
+
736
+ /**
737
+ * @hidden
738
+ */
739
+ export declare const cursor: {
740
+ default: string;
741
+ };
742
+
743
+ export declare interface DateInputClasses {
744
+ /** Wrapper configuration for the date input */
745
+ wrapper?: {
746
+ /** Main class for the date input wrapper */
747
+ main?: string;
748
+ /** Prefix for the inner input element */
749
+ input?: string;
750
+ /** Size configurations for the date input */
751
+ size?: DateTimeSizeClasses;
752
+ /** Fill mode configurations for the date input */
753
+ fillMode?: DateTimeFillModeClasses;
754
+ /** Rounded configurations for the date input */
755
+ rounded?: DateTimeRoundedClasses;
756
+ /** Disabled state class for the date input */
757
+ disabled?: string;
758
+ /** Required state class for the date input */
759
+ required?: string;
760
+ /** Invalid state class for the date input */
761
+ invalid?: string;
762
+ };
763
+ /** Inner input class for the date input */
764
+ inputInner?: string;
765
+ /** Configuration for the input spinner */
766
+ inputSpinner?: DateTimeSpinnerClasses;
767
+ /** Spinner increase action class */
768
+ spinnerIncrease?: string;
769
+ /** Spinner decrease action class */
770
+ spinnerDecrease?: string;
771
+ /** Clear button class for the date input */
772
+ clearButton?: string;
773
+ }
774
+
775
+ /**
776
+ * @hidden
777
+ */
778
+ export declare const dateInputs: {
779
+ week: string;
780
+ weekdays: string;
781
+ weekend: string;
782
+ month: string;
783
+ year: string;
784
+ decade: string;
785
+ century: string;
786
+ number: string;
787
+ navigation: string;
788
+ marker: string;
789
+ now: string;
790
+ range: string;
791
+ today: string;
792
+ other: string;
793
+ date: string;
794
+ time: string;
795
+ selector: string;
796
+ timeselector: string;
797
+ };
798
+
799
+ /**
800
+ * DateInputs classes
801
+ */
802
+ export declare interface DateInputsClassStructure {
803
+ uCalendar?: CalendarClasses;
804
+ uDateInput?: DateInputClasses;
805
+ uDateTimePicker?: DateTimePickerClasses;
806
+ uTime?: TimeClasses;
807
+ uTimePicker?: TimePickerClasses;
808
+ }
809
+
810
+ export declare interface DateTimeFillModeClasses {
811
+ /** Solid fill mode class for the date-time picker */
812
+ solid?: string;
813
+ /** Outline fill mode class for the date-time picker */
814
+ outline?: string;
815
+ /** Flat fill mode class for the date-time picker */
816
+ flat?: string;
817
+ }
818
+
819
+ export declare interface DateTimePickerClasses {
820
+ /** Wrapper configuration for the date-time picker */
821
+ wrapper?: {
822
+ /** Main class for the date-time picker wrapper */
823
+ main?: string;
824
+ /** Prefix for the inner input element */
825
+ input?: string;
826
+ /** Size configurations for the date-time picker */
827
+ size?: DateTimeSizeClasses;
828
+ /** Fill mode configurations for the date-time picker */
829
+ fillMode?: DateTimeFillModeClasses;
830
+ /** Rounded configurations for the date-time picker */
831
+ rounded?: DateTimeRoundedClasses;
832
+ /** Disabled state class for the date-time picker */
833
+ disabled?: string;
834
+ /** Required state class for the date-time picker */
835
+ required?: string;
836
+ /** Invalid state class for the date-time picker */
837
+ invalid?: string;
838
+ };
839
+ /** Input button class for the date-time picker */
840
+ inputButton?: string;
841
+ /** Configuration for the popup */
842
+ popup?: DateTimePopupClasses;
843
+ /** Wrap configurations for the date-time picker */
844
+ wrap?: {
845
+ /** Main class for the wrap element */
846
+ main?: string;
847
+ /** Date tab class for the wrap */
848
+ date?: string;
849
+ /** Time tab class for the wrap */
850
+ time?: string;
851
+ /** Disabled state class for the wrap */
852
+ disabled?: string;
853
+ };
854
+ /** Footer configurations for the time section */
855
+ timeFooter?: {
856
+ /** Main class for the time footer */
857
+ main?: string;
858
+ /** Actions class for the footer */
859
+ actions?: string;
860
+ /** Stretched state class for the footer */
861
+ stretched?: string;
862
+ };
863
+ /** Button group class for the date-time picker */
864
+ buttonGroup?: string;
865
+ /** Selector class for the date-time picker */
866
+ selector?: string;
867
+ /** Wrap class for the calendar */
868
+ calendarWrap?: string;
869
+ /** Wrap class for the time section */
870
+ timeWrap?: string;
871
+ /** Configuration for the time selector */
872
+ timeSelector?: TimeSelectorClasses;
873
+ }
874
+
875
+ export declare interface DateTimePopupClasses {
876
+ /** Main class for the popup container */
877
+ main?: string;
878
+ /** Reset class for the popup */
879
+ reset?: string;
880
+ }
881
+
882
+ export declare interface DateTimeRoundedClasses {
883
+ /** Small rounded class for the date-time picker */
884
+ small?: string;
885
+ /** Medium rounded class for the date-time picker */
886
+ medium?: string;
887
+ /** Large rounded class for the date-time picker */
888
+ large?: string;
889
+ }
890
+
891
+ export declare interface DateTimeSizeClasses {
892
+ /** Small size class for the date-time picker */
893
+ small?: string;
894
+ /** Medium size class for the date-time picker */
895
+ medium?: string;
896
+ /** Large size class for the date-time picker */
897
+ large?: string;
898
+ }
899
+
900
+ export declare interface DateTimeSpinnerClasses {
901
+ /** Main class for the input spinner */
902
+ main?: string;
903
+ /** Button class for the input spinner */
904
+ button?: string;
905
+ }
906
+
907
+ /**
908
+ * @hidden
909
+ */
910
+ export declare const ddbPrefix: string;
911
+
912
+ /**
913
+ * @hidden
914
+ */
915
+ export declare const dimensions: {
916
+ height: string;
917
+ width: string;
918
+ };
919
+
920
+ /**
921
+ * @hidden
922
+ */
923
+ export declare const directionMap: {
924
+ up: string;
925
+ down: string;
926
+ left: string;
927
+ right: string;
928
+ start: string;
929
+ mid: string;
930
+ end: string;
931
+ };
932
+
178
933
  /**
179
934
  * @hidden
180
935
  */
@@ -215,6 +970,329 @@ export declare interface DraggableReleaseEvent {
215
970
  event: any;
216
971
  }
217
972
 
973
+ export declare interface DropDownBaseClasses {
974
+ /** Class for the clear button */
975
+ clearButton?: string;
976
+ /** Class for the sticky header of the grouped list */
977
+ groupStickyHeader?: string;
978
+ /** Class for the header text in the list */
979
+ listHeaderText?: string;
980
+ /** Class for the unordered list element */
981
+ ul?: string;
982
+ /** List item configurations */
983
+ li?: DropDownBaseListItemClasses;
984
+ /** Grouped list item configurations */
985
+ groupLi?: DropDownBaseGroupLiClasses;
986
+ /** Class for the text of regular list items */
987
+ itemText?: string;
988
+ /** Grouped item text configurations */
989
+ groupItemText?: DropDownBaseGroupItemClasses;
990
+ /** Class for the label of grouped items */
991
+ itemGroupLabel?: string;
992
+ /** Class for displaying no data message */
993
+ noData?: string;
994
+ /** Class for the height container */
995
+ heightContainer?: string;
996
+ /** Option label configurations */
997
+ optionLabel?: DropDownBaseOptionLabelClasses;
998
+ /** Class for the inner input */
999
+ inputInner?: string;
1000
+ /** Class for the input icon */
1001
+ inputIcon?: string;
1002
+ /** Class for the search box component */
1003
+ searchbox?: string;
1004
+ /** Class for the list filter */
1005
+ listFilter?: string;
1006
+ }
1007
+
1008
+ export declare interface DropDownBaseGroupItemClasses {
1009
+ /** Class for the text of list items in a group */
1010
+ list?: string;
1011
+ /** Class for the header cell text in a group table */
1012
+ table?: string;
1013
+ }
1014
+
1015
+ export declare interface DropDownBaseGroupLiClasses {
1016
+ /** Class for the list of grouped items */
1017
+ list?: string;
1018
+ /** Class for the table representation of grouped items */
1019
+ table?: string;
1020
+ }
1021
+
1022
+ export declare interface DropDownBaseListItemClasses {
1023
+ /** Main class for the list item */
1024
+ main?: string;
1025
+ /** Class for the selected state of the list item */
1026
+ selected?: string;
1027
+ /** Class for the focused state of the list item */
1028
+ focused?: string;
1029
+ /** Class for the first item in the list */
1030
+ first?: string;
1031
+ /** Class for the disabled state of the list item */
1032
+ disabled?: string;
1033
+ }
1034
+
1035
+ export declare interface DropDownBaseOptionLabelClasses {
1036
+ /** Main class for the option label */
1037
+ main?: string;
1038
+ /** Class for the selected state of the option label */
1039
+ selected?: string;
1040
+ }
1041
+
1042
+ export declare interface DropDownButtonClasses {
1043
+ /** Wrapper configuration for the button */
1044
+ wrapper?: DropDownButtonWrapperClasses;
1045
+ /** Unordered list configuration for the button group */
1046
+ ul?: DropDownButtonGroupClasses;
1047
+ /** List item configuration */
1048
+ li?: DropDownButtonListItemClasses;
1049
+ /** Item class for the button */
1050
+ item?: string;
1051
+ /** Link configuration for the button */
1052
+ link?: DropDownButtonLinkClasses;
1053
+ /** Popup class for the button group */
1054
+ popup?: string;
1055
+ }
1056
+
1057
+ export declare interface DropDownButtonGroupClasses {
1058
+ /** Group class for the button container */
1059
+ group?: string;
1060
+ /** Size configuration for the button group */
1061
+ size?: DropDownButtonSizeClasses;
1062
+ }
1063
+
1064
+ export declare interface DropDownButtonLinkClasses {
1065
+ /** Main link class */
1066
+ main?: string;
1067
+ /** Link class for the button */
1068
+ link?: string;
1069
+ /** Selected state class for the link */
1070
+ selected?: string;
1071
+ /** Disabled state class for the link */
1072
+ disabled?: string;
1073
+ }
1074
+
1075
+ export declare interface DropDownButtonListItemClasses {
1076
+ /** Item class for the list container */
1077
+ item?: string;
1078
+ /** Focus state class for the list item */
1079
+ focus?: string;
1080
+ }
1081
+
1082
+ export declare interface DropDownButtonSizeClasses {
1083
+ /** Small size class for the button group */
1084
+ small?: string;
1085
+ /** Medium size class for the button group */
1086
+ medium?: string;
1087
+ /** Large size class for the button group */
1088
+ large?: string;
1089
+ }
1090
+
1091
+ export declare interface DropDownButtonWrapperClasses {
1092
+ /** Main button class */
1093
+ main?: string;
1094
+ /** Focus state class for the button */
1095
+ focus?: string;
1096
+ /** Disabled state class for the button */
1097
+ disabled?: string;
1098
+ }
1099
+
1100
+ export declare interface DropDownListClasses {
1101
+ /** Wrapper configurations for the dropdown list component */
1102
+ wrapper?: {
1103
+ /** Main class for the dropdown list */
1104
+ main?: string;
1105
+ /** Class for the picker element */
1106
+ picker?: string;
1107
+ /** Size configurations for the picker */
1108
+ size?: {
1109
+ /** Class for the small size of the picker */
1110
+ small?: string;
1111
+ /** Class for the medium size of the picker */
1112
+ medium?: string;
1113
+ /** Class for the large size of the picker */
1114
+ large?: string;
1115
+ };
1116
+ /** Fill mode configurations for the picker */
1117
+ fillMode?: {
1118
+ /** Class for the solid fill mode of the picker */
1119
+ solid?: string;
1120
+ /** Class for the outline fill mode of the picker */
1121
+ outline?: string;
1122
+ /** Class for the flat fill mode of the picker */
1123
+ flat?: string;
1124
+ /** Class for the link fill mode of the picker */
1125
+ link?: string;
1126
+ /** Class for the clear fill mode of the picker */
1127
+ clear?: string;
1128
+ };
1129
+ /** Rounded configurations for the picker */
1130
+ rounded?: {
1131
+ /** Class for the small rounded picker */
1132
+ small?: string;
1133
+ /** Class for the medium rounded picker */
1134
+ medium?: string;
1135
+ /** Class for the large rounded picker */
1136
+ large?: string;
1137
+ };
1138
+ /** Class for the disabled state of the picker */
1139
+ disabled?: string;
1140
+ /** Class for the focused state of the picker */
1141
+ focused?: string;
1142
+ /** Class for the invalid state of the picker */
1143
+ invalid?: string;
1144
+ /** Class for the loading state of the picker */
1145
+ loading?: string;
1146
+ /** Class for the required state of the picker */
1147
+ required?: string;
1148
+ };
1149
+ /** Class for the loading icon associated with the input */
1150
+ loadingIcon?: string;
1151
+ /** Class for the input button within the dropdown list */
1152
+ inputButton?: string;
1153
+ /** List container configurations for the dropdown list */
1154
+ listContainer?: {
1155
+ /** Main class for the list container */
1156
+ main?: string;
1157
+ /** Class for the popup within the dropdown list */
1158
+ popup?: string;
1159
+ };
1160
+ /** Class for the inner input of the dropdown list */
1161
+ inputInner?: string;
1162
+ /** Class for the input text of the dropdown list */
1163
+ inputText?: string;
1164
+ /** Class for the header of the list within the dropdown */
1165
+ listHeader?: string;
1166
+ /** List configurations for the dropdown list */
1167
+ list?: {
1168
+ /** Main class for the list */
1169
+ main?: string;
1170
+ /** Size configurations for the list */
1171
+ size?: {
1172
+ /** Class for the small size of the list */
1173
+ small?: string;
1174
+ /** Class for the medium size of the list */
1175
+ medium?: string;
1176
+ /** Class for the large size of the list */
1177
+ large?: string;
1178
+ };
1179
+ /** Class for the virtual list configuration */
1180
+ virtual?: string;
1181
+ };
1182
+ /** Class for the content of the list within the dropdown */
1183
+ listContent?: string;
1184
+ /** Class for the footer of the list within the dropdown */
1185
+ listFooter?: string;
1186
+ }
1187
+
1188
+ /**
1189
+ * @hidden
1190
+ */
1191
+ export declare const dropDownListPrefix: string;
1192
+
1193
+ export declare interface DropDownsActionSheetClasses {
1194
+ /** Wrapper configurations for the action sheet component */
1195
+ wrapper?: {
1196
+ /** Main class for the action sheet */
1197
+ main?: string;
1198
+ /** Class for the fullscreen state of the action sheet */
1199
+ fullscreen?: string;
1200
+ /** Class for the bottom state of the action sheet */
1201
+ bottom?: string;
1202
+ };
1203
+ /** Class for the header text, centered */
1204
+ header?: string;
1205
+ /** Title bar configurations for the action sheet */
1206
+ titleBar?: {
1207
+ /** Main class for the title bar within the action sheet */
1208
+ main?: string;
1209
+ /** Class for positioning the title bar horizontally */
1210
+ position?: string;
1211
+ };
1212
+ /** Class for the title of the action sheet */
1213
+ title?: string;
1214
+ /** Subtitle configurations for the action sheet */
1215
+ subtitle?: {
1216
+ /** Main class for the subtitle in the action sheet */
1217
+ main?: string;
1218
+ /** Class for centered text in the subtitle */
1219
+ textCenter?: string;
1220
+ };
1221
+ /** Class for the actions container within the action sheet */
1222
+ actions?: string;
1223
+ /** Title bar group configurations for the action sheet */
1224
+ titleBarGroup?: {
1225
+ /** Main class for the title bar group */
1226
+ main?: string;
1227
+ /** Class for the filter within the action sheet */
1228
+ filter?: string;
1229
+ };
1230
+ }
1231
+
1232
+ /**
1233
+ * DropDowns classes
1234
+ */
1235
+ export declare interface DropDownsClassStructure {
1236
+ uDropDownsActionSheet?: DropDownsActionSheetClasses;
1237
+ uDropDownsBase?: DropDownBaseClasses;
1238
+ uDropDownList?: DropDownListClasses;
1239
+ uComboBox?: ComboBoxClasses;
1240
+ }
1241
+
1242
+ /**
1243
+ * @hidden
1244
+ */
1245
+ export declare const elements: {
1246
+ table: string;
1247
+ text: string;
1248
+ button: string;
1249
+ tbody: string;
1250
+ thead: string;
1251
+ tr: string;
1252
+ th: string;
1253
+ td: string;
1254
+ header: string;
1255
+ footer: string;
1256
+ icon: string;
1257
+ title: string;
1258
+ subtitle: string;
1259
+ link: string;
1260
+ label: string;
1261
+ ul: string;
1262
+ caption: string;
1263
+ };
1264
+
1265
+ /** Animation states for enter transition */
1266
+ export declare interface Enter extends AnimationStatesClasses {
1267
+ }
1268
+
1269
+ /** Active states for enter transition */
1270
+ export declare interface EnterActive extends AnimationStatesClasses {
1271
+ }
1272
+
1273
+ export declare interface ErrorClasses {
1274
+ /** Wrapper element configurations */
1275
+ wrapper?: {
1276
+ /** Main class for the wrapper */
1277
+ main?: string;
1278
+ /** Direction-related configurations */
1279
+ direction?: {
1280
+ /** Class for start-aligned text */
1281
+ start?: string;
1282
+ /** Class for end-aligned text */
1283
+ end?: string;
1284
+ };
1285
+ };
1286
+ }
1287
+
1288
+ /** Animation states for exit transition */
1289
+ export declare interface Exit extends AnimationStatesClasses {
1290
+ }
1291
+
1292
+ /** Active states for exit transition */
1293
+ export declare interface ExitActive extends AnimationStatesClasses {
1294
+ }
1295
+
218
1296
  /**
219
1297
  * Similar to the `Object.assign` function. Additionally, creates a new array for the subitems.
220
1298
  *
@@ -230,11 +1308,49 @@ export declare const extendDataItem: (item: any, subItemsField: string, propsToE
230
1308
  */
231
1309
  export declare const FIELD_REGEX: RegExp;
232
1310
 
1311
+ /**
1312
+ * @hidden
1313
+ */
1314
+ export declare const fillModeMap: PresetOption;
1315
+
233
1316
  /**
234
1317
  * @hidden
235
1318
  */
236
1319
  export declare const firstFocusableChild: (element: any) => any;
237
1320
 
1321
+ export declare interface FloatingLabelClasses {
1322
+ /** Wrapper element configurations */
1323
+ wrapper?: {
1324
+ /** Main class for the wrapper */
1325
+ main?: string;
1326
+ /** Class applied when the element is focused */
1327
+ focused?: string;
1328
+ /** Class applied when the element is empty */
1329
+ empty?: string;
1330
+ /** Class for non-empty state (empty in this case) */
1331
+ notEmpty?: string;
1332
+ /** Class for disabled state */
1333
+ disabled?: string;
1334
+ /** Class applied when in RTL mode */
1335
+ isRtl?: string;
1336
+ };
1337
+ /** Label element configurations */
1338
+ label?: {
1339
+ /** Main class for the label */
1340
+ main?: string;
1341
+ /** Class applied when the label is focused */
1342
+ focused?: string;
1343
+ /** Class applied when the label is empty */
1344
+ empty?: string;
1345
+ /** Class for non-empty label state */
1346
+ notEmpty?: string;
1347
+ /** Class applied when the label is in an invalid state */
1348
+ invalid?: string;
1349
+ /** Class applied when the label is disabled */
1350
+ disabled?: string;
1351
+ };
1352
+ }
1353
+
238
1354
  /**
239
1355
  * @hidden
240
1356
  */
@@ -347,6 +1463,73 @@ export declare interface FontIconProps extends BaseIconProps {
347
1463
  export declare interface FontIconState {
348
1464
  }
349
1465
 
1466
+ export declare interface FormClasses {
1467
+ /** Form configurations */
1468
+ form?: {
1469
+ /** Main class for the form */
1470
+ main?: string;
1471
+ /** Size configurations for the form */
1472
+ size?: {
1473
+ /** Prefix for size classes */
1474
+ prefix?: string;
1475
+ /** Class for small size */
1476
+ small?: string;
1477
+ /** Class for medium size */
1478
+ medium?: string;
1479
+ /** Class for large size */
1480
+ large?: string;
1481
+ };
1482
+ /** Orientation configurations for the form */
1483
+ orientation?: {
1484
+ /** Class for horizontal orientation */
1485
+ horizontal?: string;
1486
+ /** Class for vertical orientation */
1487
+ vertical?: string;
1488
+ };
1489
+ };
1490
+ /** Layout configurations for the form */
1491
+ formLayout?: {
1492
+ /** Main class for form layout */
1493
+ main?: string;
1494
+ };
1495
+ /** Fieldset configurations within the form */
1496
+ fieldset?: {
1497
+ /** Main class for form fieldset */
1498
+ main?: string;
1499
+ /** Layout configurations for the form fieldset */
1500
+ layout?: {
1501
+ /** Main class for form fieldset layout */
1502
+ main?: string;
1503
+ };
1504
+ };
1505
+ /** Class for the form legend */
1506
+ legend?: {
1507
+ /** Main class for form legend */
1508
+ main?: string;
1509
+ };
1510
+ /** Field configurations within the form */
1511
+ field?: {
1512
+ /** Main class for form fields */
1513
+ main?: string;
1514
+ /** Class indicating right-to-left (RTL) layout */
1515
+ isRtl?: string;
1516
+ };
1517
+ /**
1518
+ * Separator configurations within the form.
1519
+ */
1520
+ separator?: {
1521
+ /** Main class for form field separator */
1522
+ main?: string;
1523
+ };
1524
+ }
1525
+
1526
+ /**
1527
+ * Form classes
1528
+ */
1529
+ export declare interface FormClassStructure {
1530
+ uForm?: FormClasses;
1531
+ }
1532
+
350
1533
  /**
351
1534
  * Represents the basic props of the KendoVue form components.
352
1535
  *
@@ -430,6 +1613,17 @@ export declare interface FormComponentValidity {
430
1613
  readonly valueMissing: boolean;
431
1614
  }
432
1615
 
1616
+ /**
1617
+ * @hidden
1618
+ */
1619
+ export declare const forms: {
1620
+ form: string;
1621
+ fieldset: string;
1622
+ legend: string;
1623
+ separator: string;
1624
+ field: string;
1625
+ };
1626
+
433
1627
  /**
434
1628
  * @hidden
435
1629
  */
@@ -507,15 +1701,76 @@ export declare function getter(field: string): any;
507
1701
  /**
508
1702
  * @hidden
509
1703
  */
510
- export declare const guid: Function;
1704
+ export declare const grid: {
1705
+ prefix: string;
1706
+ ariaRoot: string;
1707
+ tableWrap: string;
1708
+ master: string;
1709
+ column: string;
1710
+ cell: string;
1711
+ cellInner: string;
1712
+ row: string;
1713
+ group: string;
1714
+ hierarchy: string;
1715
+ detail: string;
1716
+ noRecords: string;
1717
+ pager: string;
1718
+ };
511
1719
 
512
1720
  /**
513
1721
  * @hidden
514
1722
  */
515
- export declare function hasListener(this: any, eventName: string): boolean;
516
-
517
- /** @hidden */
518
- export declare const hasRelativeStackingContext: (elementSource?: HTMLElement) => boolean;
1723
+ export declare interface GridClassStructure {
1724
+ uGrid?: WidgetClassStructure;
1725
+ }
1726
+
1727
+ /**
1728
+ * @hidden
1729
+ */
1730
+ export declare const gridPrefix: string;
1731
+
1732
+ /**
1733
+ * @hidden
1734
+ */
1735
+ export declare const gridRowReorder: {
1736
+ drop: string;
1737
+ drag: string;
1738
+ hint: string;
1739
+ vertical: string;
1740
+ horizontal: string;
1741
+ clue: string;
1742
+ reorder: string;
1743
+ };
1744
+
1745
+ /**
1746
+ * @hidden
1747
+ */
1748
+ export declare const guid: Function;
1749
+
1750
+ /**
1751
+ * @hidden
1752
+ */
1753
+ export declare function hasListener(this: any, eventName: string): boolean;
1754
+
1755
+ /** @hidden */
1756
+ export declare const hasRelativeStackingContext: (elementSource?: HTMLElement) => boolean;
1757
+
1758
+ export declare interface HintClasses {
1759
+ /** Wrapper element configurations */
1760
+ wrapper?: {
1761
+ /** Main class for the wrapper */
1762
+ main?: string;
1763
+ /** Direction-related configurations */
1764
+ direction?: {
1765
+ /** Class for start-aligned text */
1766
+ start?: string;
1767
+ /** Class for end-aligned text */
1768
+ end?: string;
1769
+ /** Class for disabled state */
1770
+ disabled?: string;
1771
+ };
1772
+ };
1773
+ }
519
1774
 
520
1775
  /**
521
1776
  * @hidden
@@ -572,6 +1827,18 @@ onClick?: (...args: any[] | unknown[]) => any;
572
1827
  viewBox: string;
573
1828
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
574
1829
 
1830
+ /**
1831
+ * @hidden
1832
+ */
1833
+ export declare const icon: {
1834
+ prefix: string;
1835
+ svg: string;
1836
+ i: string;
1837
+ color: string;
1838
+ flipH: string;
1839
+ flipV: string;
1840
+ };
1841
+
575
1842
  /**
576
1843
  * @hidden
577
1844
  */
@@ -618,6 +1885,13 @@ export declare interface IconProps extends SvgIconProps {
618
1885
  name?: string;
619
1886
  }
620
1887
 
1888
+ /**
1889
+ * Icons classes
1890
+ */
1891
+ export declare interface IconsClassStructure {
1892
+ uSvgIcon?: SVGIconClasses;
1893
+ }
1894
+
621
1895
  /**
622
1896
  * Specifies the size of the icon.
623
1897
  *
@@ -662,6 +1936,55 @@ export declare interface IconState {
662
1936
  */
663
1937
  export declare type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
664
1938
 
1939
+ export declare interface InputClasses {
1940
+ /** Input element configurations */
1941
+ input?: {
1942
+ /** Main class for the input, combining size, rounded, and fill mode */
1943
+ main?: string;
1944
+ /** Disabled state class */
1945
+ disabled?: string;
1946
+ /** Required state class */
1947
+ required?: string;
1948
+ /** Invalid state class */
1949
+ invalid?: string;
1950
+ /** RTL (right-to-left) layout class */
1951
+ isRtl?: string;
1952
+ };
1953
+ /** Clear button class */
1954
+ clearButton?: string;
1955
+ }
1956
+
1957
+ /**
1958
+ * @hidden
1959
+ */
1960
+ export declare const inputPrefix: string;
1961
+
1962
+ /**
1963
+ * @hidden
1964
+ */
1965
+ export declare const inputs: {
1966
+ input: string;
1967
+ inner: string;
1968
+ spin: string;
1969
+ spinner: string;
1970
+ maskedtextbox: string;
1971
+ radio: string;
1972
+ textbox: string;
1973
+ prefix: string;
1974
+ suffix: string;
1975
+ };
1976
+
1977
+ /**
1978
+ * Inputs classes
1979
+ */
1980
+ export declare interface InputsClassStructure {
1981
+ uMaskedTextBox?: MaskedTextBoxClasses;
1982
+ uRadioGroup?: RadioGroupClasses;
1983
+ uRadioButton?: RadioButtonClasses;
1984
+ uTextBox?: TextBoxClasses;
1985
+ uInput?: InputClasses;
1986
+ }
1987
+
665
1988
  /**
666
1989
  * @hidden
667
1990
  */
@@ -672,6 +1995,40 @@ export declare const isObject: (value: any) => boolean;
672
1995
  */
673
1996
  export declare function isRtl(element: Element | null): boolean;
674
1997
 
1998
+ /**
1999
+ * @hidden
2000
+ */
2001
+ export declare const jsonTheme: KendoTheme;
2002
+
2003
+ /**
2004
+ * @hidden
2005
+ */
2006
+ export declare interface KendoTheme {
2007
+ base: PresetOption;
2008
+ animation: PresetOption;
2009
+ containers: PresetOption;
2010
+ components: PresetOption;
2011
+ cssUtils: PresetOption;
2012
+ elements: PresetOption;
2013
+ sizeMap: PresetOption;
2014
+ directionMap: PresetOption;
2015
+ fillModeMap: PresetOption;
2016
+ themeColorMap: PresetOption;
2017
+ roundedMap: PresetOption;
2018
+ cursor: PresetOption;
2019
+ dimensions: PresetOption;
2020
+ states: PresetOption;
2021
+ actions: PresetOption;
2022
+ inputs: PresetOption;
2023
+ dateInputs: PresetOption;
2024
+ forms: PresetOption;
2025
+ labels: PresetOption;
2026
+ popup: PresetOption;
2027
+ icon: PresetOption;
2028
+ grid: PresetOption;
2029
+ orientationMap: PresetOption;
2030
+ }
2031
+
675
2032
  /** @hidden */
676
2033
  export declare interface KendoThemeMaps {
677
2034
  sizeMap: Record<Exclude<any, null>, string>;
@@ -702,6 +2059,42 @@ export declare const Keys: {
702
2059
  delete: number;
703
2060
  };
704
2061
 
2062
+ export declare interface LabelClasses {
2063
+ /** Label */
2064
+ label?: {
2065
+ /** Main class for the label */
2066
+ main?: string;
2067
+ /** Class applied when the label is in an empty state */
2068
+ empty?: string;
2069
+ /** Class applied when the label is in an invalid state */
2070
+ invalid?: string;
2071
+ /** Class applied when the label is disabled */
2072
+ disabled?: string;
2073
+ };
2074
+ }
2075
+
2076
+ /**
2077
+ * @hidden
2078
+ */
2079
+ export declare const labels: {
2080
+ label: string;
2081
+ text: string;
2082
+ floatingLabel: string;
2083
+ container: string;
2084
+ hint: string;
2085
+ error: string;
2086
+ };
2087
+
2088
+ /**
2089
+ * Labels classes
2090
+ */
2091
+ export declare interface LabelsClassStructure {
2092
+ uError?: ErrorClasses;
2093
+ uHint?: HintClasses;
2094
+ uLabel?: LabelClasses;
2095
+ uFloatingLabel?: FloatingLabelClasses;
2096
+ }
2097
+
705
2098
  /**
706
2099
  * @hidden
707
2100
  */
@@ -730,6 +2123,56 @@ export declare const mapTree: (tree: any[], subItemsField: string, callback: (va
730
2123
  */
731
2124
  export declare const mapTreeItem: (tree: any[], level: number[], subItemsField: string, callback: (value: any) => any) => void;
732
2125
 
2126
+ /**
2127
+ * @hidden
2128
+ */
2129
+ export declare const maskedPrefix: string;
2130
+
2131
+ export declare interface MaskedTextBoxClasses {
2132
+ /** Wrapper configurations for the masked input */
2133
+ wrapper?: {
2134
+ /** Main class for the wrapper */
2135
+ main?: string;
2136
+ /** Class for the input element */
2137
+ input?: string;
2138
+ /** Size configurations for the input */
2139
+ size?: {
2140
+ /** Small size class */
2141
+ small?: string;
2142
+ /** Medium size class */
2143
+ medium?: string;
2144
+ /** Large size class */
2145
+ large?: string;
2146
+ };
2147
+ /** Fill mode configurations for the input */
2148
+ fillMode?: {
2149
+ /** Solid fill mode class */
2150
+ solid?: string;
2151
+ /** Outline fill mode class */
2152
+ outline?: string;
2153
+ /** Flat fill mode class */
2154
+ flat?: string;
2155
+ };
2156
+ /** Rounded border configurations */
2157
+ rounded?: {
2158
+ /** Small rounded border class */
2159
+ small?: string;
2160
+ /** Medium rounded border class */
2161
+ medium?: string;
2162
+ /** Large rounded border class */
2163
+ large?: string;
2164
+ };
2165
+ /** Disabled state class */
2166
+ disabled?: string;
2167
+ /** Invalid state class */
2168
+ invalid?: string;
2169
+ /** RTL (right-to-left) layout class */
2170
+ isRtl?: string;
2171
+ };
2172
+ /** Class for the inner part of the input */
2173
+ inputInner?: string;
2174
+ }
2175
+
733
2176
  /**
734
2177
  * @hidden
735
2178
  */
@@ -778,6 +2221,113 @@ export declare class Navigation {
778
2221
  */
779
2222
  export declare const noop: () => void;
780
2223
 
2224
+ /**
2225
+ * @hidden
2226
+ */
2227
+ export declare const orientationMap: PresetOption;
2228
+
2229
+ /**
2230
+ * @hidden
2231
+ */
2232
+ export declare const pickerPrefix: string;
2233
+
2234
+ /**
2235
+ * @hidden
2236
+ */
2237
+ export declare const popup: {
2238
+ prefix: string;
2239
+ };
2240
+
2241
+ export declare interface PopupClasses {
2242
+ /** Prefix for the animation container */
2243
+ animationContainer?: string;
2244
+ /** Prefix for the shown animation container */
2245
+ animationContainerShown?: string;
2246
+ /** Prefix for child animations within the animation */
2247
+ animationChild?: string;
2248
+ /** Prefix for the popup animation */
2249
+ popup?: string;
2250
+ /** Slide animation configurations for different directions */
2251
+ slide?: SlideClasses;
2252
+ /** Active slide animation configurations for different directions */
2253
+ slideActive?: SlideClasses;
2254
+ }
2255
+
2256
+ /**
2257
+ * Popup classes
2258
+ */
2259
+ export declare interface PopupClassStructure {
2260
+ uPopup?: PopupClasses;
2261
+ }
2262
+
2263
+ declare type PresetOption = Record<Exclude<any, null>, string>;
2264
+
2265
+ export declare interface RadioButtonClasses {
2266
+ /** Input configurations */
2267
+ input?: {
2268
+ /** Class for the radio input */
2269
+ radio?: string;
2270
+ /** Size configurations for the radio input */
2271
+ size?: {
2272
+ /** Prefix for size classes */
2273
+ prefix?: string;
2274
+ /** Class for small size radio input */
2275
+ small?: string;
2276
+ /** Class for medium size radio input */
2277
+ medium?: string;
2278
+ /** Class for large size radio input */
2279
+ large?: string;
2280
+ };
2281
+ /** Class for invalid state */
2282
+ invalid?: string;
2283
+ /** Class for checked state */
2284
+ checked?: string;
2285
+ };
2286
+ /** Class for wrapping container */
2287
+ wrap?: string;
2288
+ /** Class for the label */
2289
+ label?: string;
2290
+ }
2291
+
2292
+ /**
2293
+ * @hidden
2294
+ */
2295
+ export declare const radioButtonClasses: RadioButtonClasses;
2296
+
2297
+ export declare interface RadioGroupClasses {
2298
+ /** Unordered list (ul) configurations */
2299
+ ul?: {
2300
+ /** Main class for the ul element */
2301
+ main?: string;
2302
+ /** Class for horizontal list layout */
2303
+ horizontal?: string;
2304
+ /** Class for vertical list layout */
2305
+ vertical?: string;
2306
+ };
2307
+ /** Item configurations inside the ul */
2308
+ item?: {
2309
+ /** Main class for the list item (li) element */
2310
+ main?: string;
2311
+ /** Class for disabled state of list item */
2312
+ disabled?: string;
2313
+ };
2314
+ }
2315
+
2316
+ /**
2317
+ * @hidden
2318
+ */
2319
+ export declare const radioGroupClasses: RadioGroupClasses;
2320
+
2321
+ /**
2322
+ * @hidden
2323
+ */
2324
+ export declare const radioPrefix: string;
2325
+
2326
+ /**
2327
+ * @hidden
2328
+ */
2329
+ export declare const roundedMap: PresetOption;
2330
+
781
2331
  /**
782
2332
  * @hidden
783
2333
  */
@@ -798,6 +2348,98 @@ export declare function setter(field: string): any;
798
2348
  */
799
2349
  export declare function shouldShowValidationUI(packageMetadata: any): boolean;
800
2350
 
2351
+ /** Size options */
2352
+ export declare interface SizeClasses {
2353
+ /** Default size (16px by 16px) */
2354
+ default?: string;
2355
+ /** Extra small size (0.75 times the default size) */
2356
+ xsmall?: string;
2357
+ /** Small size (0.875 times the default size) */
2358
+ small?: string;
2359
+ /** Medium size, same as default (16px by 16px) */
2360
+ medium?: string;
2361
+ /** Large size (1.25 times the default size) */
2362
+ large?: string;
2363
+ /** Extra large size (1.5 times the default size) */
2364
+ xlarge?: string;
2365
+ /** Double extra large size (2 times the default size) */
2366
+ xxlarge?: string;
2367
+ /** Triple extra large size (3 times the default size) */
2368
+ xxxlarge?: string;
2369
+ }
2370
+
2371
+ /**
2372
+ * @hidden
2373
+ */
2374
+ export declare const sizeMap: PresetOption;
2375
+
2376
+ export declare interface SlideAnimationClasses {
2377
+ /** Enter animation prefix for sliding up */
2378
+ enter?: string;
2379
+ /** Exit animation prefix for sliding up */
2380
+ exit?: string;
2381
+ }
2382
+
2383
+ export declare interface SlideClasses {
2384
+ /** Animation settings for sliding up */
2385
+ up?: SlideAnimationClasses;
2386
+ /** Animation settings for sliding down */
2387
+ down?: SlideAnimationClasses;
2388
+ /** Animation settings for sliding left */
2389
+ left?: SlideAnimationClasses;
2390
+ /** Animation settings for sliding right */
2391
+ right?: SlideAnimationClasses;
2392
+ }
2393
+
2394
+ /**
2395
+ * @hidden
2396
+ */
2397
+ export declare const states: {
2398
+ active: string;
2399
+ adaptive: string;
2400
+ first: string;
2401
+ focus: string;
2402
+ pending: string;
2403
+ last: string;
2404
+ draggable: string;
2405
+ filterable: string;
2406
+ grouping: string;
2407
+ selected: string;
2408
+ highlighted: string;
2409
+ disabled: string;
2410
+ hidden: string;
2411
+ highlight: string;
2412
+ invalid: string;
2413
+ loading: string;
2414
+ required: string;
2415
+ checked: string;
2416
+ empty: string;
2417
+ scrollable: string;
2418
+ sorted: string;
2419
+ sort: string;
2420
+ sticky: string;
2421
+ stretched: string;
2422
+ order: string;
2423
+ alt: string;
2424
+ edit: string;
2425
+ template: string;
2426
+ shown: string;
2427
+ horizontal: string;
2428
+ vertical: string;
2429
+ fullscreen: string;
2430
+ bottom: string;
2431
+ };
2432
+
2433
+ /** SVG classes configuration */
2434
+ export declare interface SvgClasses {
2435
+ /** Main SVG class, sets fill and flex behavior */
2436
+ main?: string;
2437
+ /** Horizontal flip transformation for the SVG */
2438
+ flipH?: string;
2439
+ /** Vertical flip transformation for the SVG */
2440
+ flipV?: string;
2441
+ }
2442
+
801
2443
  /**
802
2444
  * Specifies the SVG icon.
803
2445
  */
@@ -889,6 +2531,16 @@ viewBox: string;
889
2531
  export declare interface SvgIconAll extends SvgIconMethods, SvgIconData, SvgIconComputed, SvgIconState {
890
2532
  }
891
2533
 
2534
+ /**
2535
+ * SVGIcon Classes
2536
+ */
2537
+ export declare interface SVGIconClasses {
2538
+ /** Wrapper configuration*/
2539
+ wrapper?: WrapperClasses;
2540
+ /** SVG configuration */
2541
+ svg?: SvgClasses;
2542
+ }
2543
+
892
2544
  /**
893
2545
  * @hidden
894
2546
  */
@@ -969,6 +2621,374 @@ export declare const templateDefinition: {
969
2621
  */
970
2622
  export declare function templateRendering(this: any, template: any, listeners: any): any;
971
2623
 
2624
+ export declare interface TextBoxClasses {
2625
+ /** Wrapper configurations for the text box */
2626
+ wrapper?: {
2627
+ /** Main class for the wrapper */
2628
+ main?: string;
2629
+ /** Class for the input element */
2630
+ input?: string;
2631
+ /** Size configurations for the input */
2632
+ size?: {
2633
+ /** Small size class */
2634
+ small?: string;
2635
+ /** Medium size class */
2636
+ medium?: string;
2637
+ /** Large size class */
2638
+ large?: string;
2639
+ };
2640
+ /** Fill mode configurations for the input */
2641
+ fillMode?: {
2642
+ /** Solid fill mode class */
2643
+ solid?: string;
2644
+ /** Outline fill mode class */
2645
+ outline?: string;
2646
+ /** Flat fill mode class */
2647
+ flat?: string;
2648
+ };
2649
+ /** Rounded border configurations */
2650
+ rounded?: {
2651
+ /** Small rounded border class */
2652
+ small?: string;
2653
+ /** Medium rounded border class */
2654
+ medium?: string;
2655
+ /** Large rounded border class */
2656
+ large?: string;
2657
+ };
2658
+ /** Disabled state class */
2659
+ disabled?: string;
2660
+ /** Focused state class */
2661
+ focused?: string;
2662
+ /** Required state class */
2663
+ required?: string;
2664
+ /** Invalid state class */
2665
+ invalid?: string;
2666
+ /** RTL (right-to-left) layout class */
2667
+ isRtl?: string;
2668
+ };
2669
+ /** Class for the inner part of the input */
2670
+ inputInner?: string;
2671
+ /** Prefix configurations for the input */
2672
+ prefix?: {
2673
+ /** Main class for the prefix */
2674
+ main?: string;
2675
+ /** Orientation configurations for the prefix */
2676
+ orientation?: {
2677
+ /** Horizontal orientation class */
2678
+ horizontal?: string;
2679
+ /** Vertical orientation class */
2680
+ vertical?: string;
2681
+ };
2682
+ };
2683
+ /** Suffix configurations for the input */
2684
+ suffix?: {
2685
+ /** Main class for the suffix */
2686
+ main?: string;
2687
+ /** Orientation configurations for the suffix */
2688
+ orientation?: {
2689
+ /** Horizontal orientation class */
2690
+ horizontal?: string;
2691
+ /** Vertical orientation class */
2692
+ vertical?: string;
2693
+ };
2694
+ };
2695
+ }
2696
+
2697
+ /** Theme color options for the wrapper */
2698
+ export declare interface ThemeColorClasses {
2699
+ /** The text color should inherit from its parent */
2700
+ inherit?: string;
2701
+ /** Text color for the primary theme */
2702
+ primary?: string;
2703
+ /** Text color for the secondary theme */
2704
+ secondary?: string;
2705
+ /** Text color for the tertiary theme */
2706
+ tertiary?: string;
2707
+ /** Text color for informational messages */
2708
+ info?: string;
2709
+ /** Text color indicating success */
2710
+ success?: string;
2711
+ /** Text color for warnings */
2712
+ warning?: string;
2713
+ /** Text color indicating errors */
2714
+ error?: string;
2715
+ /** Text color for dark theme */
2716
+ dark?: string;
2717
+ /** Text color for light theme */
2718
+ light?: string;
2719
+ }
2720
+
2721
+ /** Theme colors fill mode options for */
2722
+ export declare interface ThemeColorFillModeClasses {
2723
+ /** Fill mode options for theme colors */
2724
+ fillMode?: {
2725
+ /** Solid fill mode for theme colors */
2726
+ solid?: string;
2727
+ /** Outline fill mode for theme colors */
2728
+ outline?: string;
2729
+ /** Flat fill mode for theme colors */
2730
+ flat?: string;
2731
+ /** Link fill mode for theme colors */
2732
+ link?: string;
2733
+ /** Clear fill mode for theme colors */
2734
+ clear?: string;
2735
+ };
2736
+ }
2737
+
2738
+ /**
2739
+ * @hidden
2740
+ */
2741
+ export declare const themeColorMap: PresetOption;
2742
+
2743
+ export declare interface TimeClasses {
2744
+ /** Footer configuration for the date input */
2745
+ footer?: TimeFooterClasses;
2746
+ /** Cancel action class for the date input */
2747
+ cancel?: string;
2748
+ /** Accept action class for the date input */
2749
+ accept?: string;
2750
+ /** Part configuration for the date input */
2751
+ part?: TimePartClasses;
2752
+ /** Header class for the date input */
2753
+ header?: string;
2754
+ /** Now action class for the date input */
2755
+ now?: string;
2756
+ /** List container class for the date input */
2757
+ listContainer?: string;
2758
+ /** Highlighted state class for the date input */
2759
+ highlight?: string;
2760
+ /** List wrapper configuration for the date input */
2761
+ listWrapper?: TimeListWrapperClasses;
2762
+ /** List class for the date input */
2763
+ list?: string;
2764
+ /** Main container configuration for the date input */
2765
+ container?: TimeContainerClasses;
2766
+ /** Container selector class for the date input */
2767
+ containerSelector?: string;
2768
+ /** Separator class for the date input */
2769
+ separator?: string;
2770
+ /** Unordered list class */
2771
+ ul?: string;
2772
+ /** List item class */
2773
+ li?: string;
2774
+ /** Title class for the date input */
2775
+ title?: string;
2776
+ /** Scrollable placeholder class for the date input */
2777
+ scrollablePlaceholder?: string;
2778
+ }
2779
+
2780
+ export declare interface TimeContainerClasses {
2781
+ /** Main container class for the date input */
2782
+ main?: string;
2783
+ /** Scrollable state class for the container */
2784
+ scrollable?: string;
2785
+ /** Content class within the container */
2786
+ content?: string;
2787
+ }
2788
+
2789
+ export declare interface TimeFooterClasses {
2790
+ /** Main footer class for time date input */
2791
+ main?: string;
2792
+ /** Actions container class within the footer */
2793
+ actions?: string;
2794
+ /** Stretched state class for the footer actions */
2795
+ stretched?: string;
2796
+ /** Horizontal alignment class for the footer actions */
2797
+ horizontal?: string;
2798
+ }
2799
+
2800
+ export declare interface TimeListWrapperClasses {
2801
+ /** Main wrapper class for the list */
2802
+ main?: string;
2803
+ /** Focused state class for the list wrapper */
2804
+ focused?: string;
2805
+ }
2806
+
2807
+ export declare interface TimePartClasses {
2808
+ /** Main class for the part of the date input */
2809
+ main?: string;
2810
+ /** Disabled state class for the part */
2811
+ disabled?: string;
2812
+ }
2813
+
2814
+ export declare interface TimePickerClasses {
2815
+ /** Wrapper configuration for the timepicker */
2816
+ wrapper?: TimePickerWrapperClasses;
2817
+ /** Button class for the input component of the timepicker */
2818
+ inputButton?: string;
2819
+ /** Popup configuration for the timepicker */
2820
+ popup?: TimePopupClasses;
2821
+ /** Time selector configuration for the timepicker */
2822
+ timeSelector?: TimeSelectorClasses;
2823
+ }
2824
+
2825
+ export declare interface TimePickerWrapperClasses {
2826
+ /** Main class for the timepicker wrapper */
2827
+ main?: string;
2828
+ /** Input class for the timepicker */
2829
+ input?: string;
2830
+ /** Size configurations for the timepicker */
2831
+ size?: DateTimeSizeClasses;
2832
+ /** Fill mode configurations for the timepicker */
2833
+ fillMode?: DateTimeFillModeClasses;
2834
+ /** Rounded configurations for the timepicker */
2835
+ rounded?: DateTimeRoundedClasses;
2836
+ /** Disabled state class for the timepicker */
2837
+ disabled?: string;
2838
+ /** Required state class for the timepicker */
2839
+ required?: string;
2840
+ /** Invalid state class for the timepicker */
2841
+ invalid?: string;
2842
+ }
2843
+
2844
+ export declare interface TimePopupClasses {
2845
+ /** Main class for the timepicker popup */
2846
+ main?: string;
2847
+ /** Container class for the popup list */
2848
+ container?: string;
2849
+ }
2850
+
2851
+ export declare interface TimeSelectorClasses {
2852
+ /** Main class for the time selector */
2853
+ main?: string;
2854
+ /** Size configurations for the time selector */
2855
+ size?: DateTimeSizeClasses;
2856
+ /** Disabled state class for the time selector */
2857
+ disabled?: string;
2858
+ /** Reset class for the time selector */
2859
+ reset?: string;
2860
+ }
2861
+
2862
+ /**
2863
+ * @hidden
2864
+ */
2865
+ export declare const uAnimation: WidgetClassStructure;
2866
+
2867
+ /**
2868
+ * @hidden
2869
+ */
2870
+ export declare const uButton: WidgetClassStructure;
2871
+
2872
+ /**
2873
+ * @hidden
2874
+ */
2875
+ export declare const uButtonGroup: WidgetClassStructure;
2876
+
2877
+ /**
2878
+ * @hidden
2879
+ */
2880
+ export declare const uCalendar: WidgetClassStructure;
2881
+
2882
+ /**
2883
+ * @hidden
2884
+ */
2885
+ export declare const uComboBox: WidgetClassStructure;
2886
+
2887
+ /**
2888
+ * @hidden
2889
+ */
2890
+ export declare const uDateInput: WidgetClassStructure;
2891
+
2892
+ /**
2893
+ * @hidden
2894
+ */
2895
+ export declare const uDateTimePicker: WidgetClassStructure;
2896
+
2897
+ /**
2898
+ * @hidden
2899
+ */
2900
+ export declare const uDropDownButton: WidgetClassStructure;
2901
+
2902
+ /**
2903
+ * @hidden
2904
+ */
2905
+ export declare const uDropDownList: WidgetClassStructure;
2906
+
2907
+ /**
2908
+ * @hidden
2909
+ */
2910
+ export declare const uDropDownsActionSheet: WidgetClassStructure;
2911
+
2912
+ /**
2913
+ * @hidden
2914
+ */
2915
+ export declare const uDropDownsBase: WidgetClassStructure;
2916
+
2917
+ /**
2918
+ * @hidden
2919
+ */
2920
+ export declare const uError: WidgetClassStructure;
2921
+
2922
+ /**
2923
+ * @hidden
2924
+ */
2925
+ export declare const uFloatingLabel: WidgetClassStructure;
2926
+
2927
+ /**
2928
+ * @hidden
2929
+ */
2930
+ export declare const uForm: WidgetClassStructure;
2931
+
2932
+ /**
2933
+ * @hidden
2934
+ */
2935
+ export declare const uGrid: WidgetClassStructure;
2936
+
2937
+ /**
2938
+ * @hidden
2939
+ */
2940
+ export declare const uHint: WidgetClassStructure;
2941
+
2942
+ /**
2943
+ * @hidden
2944
+ */
2945
+ export declare const uInput: WidgetClassStructure;
2946
+
2947
+ /**
2948
+ * @hidden
2949
+ */
2950
+ export declare const uLabel: WidgetClassStructure;
2951
+
2952
+ /**
2953
+ * @hidden
2954
+ */
2955
+ export declare const uMaskedTextBox: WidgetClassStructure;
2956
+
2957
+ /**
2958
+ * @hidden
2959
+ */
2960
+ export declare const uPopup: WidgetClassStructure;
2961
+
2962
+ /**
2963
+ * @hidden
2964
+ */
2965
+ export declare const uRadioButton: WidgetClassStructure;
2966
+
2967
+ /**
2968
+ * @hidden
2969
+ */
2970
+ export declare const uRadioGroup: WidgetClassStructure;
2971
+
2972
+ /**
2973
+ * @hidden
2974
+ */
2975
+ export declare const uSvgIcon: WidgetClassStructure;
2976
+
2977
+ /**
2978
+ * @hidden
2979
+ */
2980
+ export declare const uTextBox: WidgetClassStructure;
2981
+
2982
+ /**
2983
+ * @hidden
2984
+ */
2985
+ export declare const uTime: WidgetClassStructure;
2986
+
2987
+ /**
2988
+ * @hidden
2989
+ */
2990
+ export declare const uTimePicker: WidgetClassStructure;
2991
+
972
2992
  /**
973
2993
  * @hidden
974
2994
  */
@@ -1036,4 +3056,33 @@ default: any;
1036
3056
  message: string;
1037
3057
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1038
3058
 
3059
+ /**
3060
+ * @hidden
3061
+ */
3062
+ export declare interface WidgetClassStructure {
3063
+ [key: string]: (props: {
3064
+ [key: string]: any;
3065
+ }) => {
3066
+ [key: string]: boolean;
3067
+ } | string;
3068
+ }
3069
+
3070
+ /** Wrapper classes configuration */
3071
+ export declare interface WrapperClasses {
3072
+ /** Main wrapper class */
3073
+ main?: string;
3074
+ /** SVG prefix class */
3075
+ svgPrefix?: string;
3076
+ /** SVG name prefix class */
3077
+ namePrefix?: string;
3078
+ /** Horizontal flip transformation */
3079
+ flipH?: string;
3080
+ /** Vertical flip transformation */
3081
+ flipV?: string;
3082
+ /** Theme color options for the wrapper */
3083
+ themeColor?: ThemeColorClasses;
3084
+ /** Size options for the wrapper */
3085
+ size?: SizeClasses;
3086
+ }
3087
+
1039
3088
  export { }