sn-date-picker 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +133 -0
  3. package/dist/sn-date-picker.esm.js +43 -0
  4. package/dist/sn-date-picker.js +43 -0
  5. package/dist-types/components/App.d.ts +3 -0
  6. package/dist-types/components/mui-setup.d.ts +2 -0
  7. package/dist-types/data.d.ts +14 -0
  8. package/dist-types/ext.d.ts +702 -0
  9. package/dist-types/index.d.ts +892 -0
  10. package/dist-types/object-properties.d.ts +146 -0
  11. package/dist-types/types.d.ts +18 -0
  12. package/dist-types/utils/config.d.ts +134 -0
  13. package/dist-types/utils/date.d.ts +10 -0
  14. package/dist-types/utils/list-object.d.ts +26 -0
  15. package/dist-types/vendor/date-kit/DatePicker/DatePicker.d.ts +13 -0
  16. package/dist-types/vendor/date-kit/DatePicker/DateRangePicker.d.ts +22 -0
  17. package/dist-types/vendor/date-kit/DatePicker/components/CalDay.d.ts +42 -0
  18. package/dist-types/vendor/date-kit/DatePicker/components/CalDayHeader.d.ts +6 -0
  19. package/dist-types/vendor/date-kit/DatePicker/components/CalMonth.d.ts +34 -0
  20. package/dist-types/vendor/date-kit/DatePicker/components/DatePickerFooter.d.ts +8 -0
  21. package/dist-types/vendor/date-kit/DatePicker/components/DatePickerHeader.d.ts +10 -0
  22. package/dist-types/vendor/date-kit/DatePicker/components/Grids.d.ts +52 -0
  23. package/dist-types/vendor/date-kit/DatePicker/components/index.d.ts +3 -0
  24. package/dist-types/vendor/date-kit/DatePicker/hooks/useCommonPickerState.d.ts +22 -0
  25. package/dist-types/vendor/date-kit/DatePicker/hooks/useDatePickerData.d.ts +15 -0
  26. package/dist-types/vendor/date-kit/DatePicker/hooks/useDayKeyboardNavigation.d.ts +12 -0
  27. package/dist-types/vendor/date-kit/DatePicker/hooks/useKeyboardMouseFocus.d.ts +12 -0
  28. package/dist-types/vendor/date-kit/DatePicker/hooks/useMonthKeyboardNavigation.d.ts +13 -0
  29. package/dist-types/vendor/date-kit/DatePicker/hooks/usePickerNavigation.d.ts +13 -0
  30. package/dist-types/vendor/date-kit/DatePicker/hooks/useViewModeManagement.d.ts +13 -0
  31. package/dist-types/vendor/date-kit/DatePicker/hooks/useYearKeyboardNavigation.d.ts +15 -0
  32. package/dist-types/vendor/date-kit/DatePicker/index.d.ts +6 -0
  33. package/dist-types/vendor/date-kit/DatePicker/shared/date-utils.d.ts +12 -0
  34. package/dist-types/vendor/date-kit/DatePicker/shared/month-year-handlers.d.ts +19 -0
  35. package/dist-types/vendor/date-kit/DatePicker/shared/types.d.ts +1 -0
  36. package/dist-types/vendor/date-kit/hooks/useI18n.d.ts +43 -0
  37. package/dist-types/vendor/date-kit/html-types.d.ts +11 -0
  38. package/package.json +84 -0
@@ -0,0 +1,892 @@
1
+ export default function supernova(): {
2
+ qae: {
3
+ properties: {
4
+ version: number;
5
+ showTitles: boolean;
6
+ title: string;
7
+ subtitle: string;
8
+ footnote: string;
9
+ disableNavMenu: boolean;
10
+ showDetails: boolean;
11
+ advanced: boolean;
12
+ qListObjectDef: {
13
+ qDef: {
14
+ autoSort: boolean;
15
+ qFieldDefs: never[];
16
+ qSortCriterias: ({
17
+ qSortByNumeric: number;
18
+ qSortByState?: undefined;
19
+ } | {
20
+ qSortByState: number;
21
+ qSortByNumeric?: undefined;
22
+ })[];
23
+ };
24
+ qShowAlternatives: boolean;
25
+ qFrequencyMode: string;
26
+ qInitialDataFetch: {
27
+ qWidth: number;
28
+ qHeight: number;
29
+ }[];
30
+ };
31
+ props: {
32
+ ui: {
33
+ showAllFields: boolean;
34
+ seededField: string;
35
+ };
36
+ isSingleDate: boolean;
37
+ minDate: string;
38
+ maxDate: string;
39
+ startDate: string;
40
+ endDate: string;
41
+ CustomRangesEnabled: boolean;
42
+ customRangeLabel: string;
43
+ today: string;
44
+ yesterday: string;
45
+ lastXDays: string;
46
+ this: string;
47
+ thisLabel: string;
48
+ last: string;
49
+ lastLabel: string;
50
+ numberOf: number;
51
+ previousOrLast: boolean;
52
+ locale: string;
53
+ format: string;
54
+ separator: string;
55
+ defaultText: string;
56
+ buttonWidthPercent: number;
57
+ buttonHeightPercent: number;
58
+ buttonPosition: string;
59
+ buttonBorderColor: {
60
+ color: string;
61
+ index: string;
62
+ };
63
+ buttonBorderWidth: string;
64
+ buttonBorderRadius: string;
65
+ pickerPopupWidth: string;
66
+ pickerPopupHeight: string;
67
+ pickerPopupPadding: string;
68
+ pickerPopupBackgroundColor: {
69
+ color: string;
70
+ index: string;
71
+ };
72
+ pickerPopupBorderColor: {
73
+ color: string;
74
+ index: string;
75
+ };
76
+ pickerPopupBorderWidth: string;
77
+ pickerPopupBorderRadius: string;
78
+ pickerPopupBoxShadow: string;
79
+ quickActionTextColor: {
80
+ color: string;
81
+ index: string;
82
+ };
83
+ quickActionBackgroundColor: {
84
+ color: string;
85
+ index: string;
86
+ };
87
+ quickActionBorderColor: {
88
+ color: string;
89
+ index: string;
90
+ };
91
+ quickActionBorderWidth: string;
92
+ quickActionBorderRadius: string;
93
+ quickActionHoverTextColor: {
94
+ color: string;
95
+ index: string;
96
+ };
97
+ quickActionHoverBackgroundColor: {
98
+ color: string;
99
+ index: string;
100
+ };
101
+ calendarSurfaceBackgroundColor: {
102
+ color: string;
103
+ index: string;
104
+ };
105
+ calendarTextColor: {
106
+ color: string;
107
+ index: string;
108
+ };
109
+ calendarMutedTextColor: {
110
+ color: string;
111
+ index: string;
112
+ };
113
+ calendarDisabledTextColor: {
114
+ color: string;
115
+ index: string;
116
+ };
117
+ calendarHoverBackgroundColor: {
118
+ color: string;
119
+ index: string;
120
+ };
121
+ calendarRangeBackgroundColor: {
122
+ color: string;
123
+ index: string;
124
+ };
125
+ calendarAccentColor: {
126
+ color: string;
127
+ index: string;
128
+ };
129
+ calendarSelectedBackgroundColor: {
130
+ color: string;
131
+ index: string;
132
+ };
133
+ calendarSelectedTextColor: {
134
+ color: string;
135
+ index: string;
136
+ };
137
+ calendarSelectedHoverBackgroundColor: {
138
+ color: string;
139
+ index: string;
140
+ };
141
+ calendarRoundBorderRadius: string;
142
+ calendarSoftBorderRadius: string;
143
+ calendarNestedBorderRadius: string;
144
+ calendarBorderWidth: string;
145
+ calendarPreviewBorderStyle: string;
146
+ };
147
+ };
148
+ data: {
149
+ targets: {
150
+ path: string;
151
+ dimensions: {
152
+ min: number;
153
+ max: number;
154
+ };
155
+ measures: {
156
+ min: number;
157
+ max: number;
158
+ };
159
+ }[];
160
+ };
161
+ };
162
+ component(): void;
163
+ ext: {
164
+ definition: {
165
+ type: string;
166
+ component: string;
167
+ items: {
168
+ data: {
169
+ uses: string;
170
+ show: boolean;
171
+ };
172
+ sorting: {
173
+ uses: string;
174
+ show: boolean;
175
+ };
176
+ datePicker: {
177
+ type: string;
178
+ component: string;
179
+ label: string;
180
+ items: {
181
+ fieldSection: {
182
+ type: string;
183
+ label: string;
184
+ items: {
185
+ showAllFields: {
186
+ type: string;
187
+ ref: string;
188
+ label: string;
189
+ defaultValue: boolean;
190
+ };
191
+ field: {
192
+ type: string;
193
+ ref: string;
194
+ label: string;
195
+ component: string;
196
+ expression: string;
197
+ options: any[] | ((data: any, handler?: any, context?: {
198
+ app?: any;
199
+ }) => Promise<any[]> | any[]);
200
+ };
201
+ };
202
+ };
203
+ selectionModeSection: {
204
+ type: string;
205
+ label: string;
206
+ items: {
207
+ selectionMode: {
208
+ type: string;
209
+ component: string;
210
+ ref: string;
211
+ label: string;
212
+ defaultValue: boolean;
213
+ change: (data: any, handler?: any, context?: {
214
+ app?: any;
215
+ }) => void;
216
+ options: {
217
+ value: boolean;
218
+ label: string;
219
+ }[];
220
+ };
221
+ };
222
+ };
223
+ defaultsSection: {
224
+ type: string;
225
+ label: string;
226
+ items: {
227
+ minDate: {
228
+ ref: string;
229
+ label: string;
230
+ type: string;
231
+ expression: string;
232
+ };
233
+ maxDate: {
234
+ ref: string;
235
+ label: string;
236
+ type: string;
237
+ expression: string;
238
+ };
239
+ startDate: {
240
+ ref: string;
241
+ label: string;
242
+ type: string;
243
+ expression: string;
244
+ };
245
+ endDate: {
246
+ ref: string;
247
+ label: string;
248
+ type: string;
249
+ expression: string;
250
+ show: (data: any, handler?: any, context?: {
251
+ app?: any;
252
+ }) => boolean;
253
+ };
254
+ quickRanges: {
255
+ type: string;
256
+ ref: string;
257
+ label: string;
258
+ defaultValue: boolean;
259
+ };
260
+ thisUnit: {
261
+ type: string;
262
+ ref: string;
263
+ label: string;
264
+ component: string;
265
+ expression: string;
266
+ options: any[] | ((data: any, handler?: any, context?: {
267
+ app?: any;
268
+ }) => Promise<any[]> | any[]);
269
+ };
270
+ lastUnit: {
271
+ type: string;
272
+ ref: string;
273
+ label: string;
274
+ component: string;
275
+ expression: string;
276
+ options: any[] | ((data: any, handler?: any, context?: {
277
+ app?: any;
278
+ }) => Promise<any[]> | any[]);
279
+ };
280
+ numberOf: {
281
+ type: string;
282
+ ref: string;
283
+ label: string;
284
+ defaultValue: number;
285
+ show: (data: any, handler?: any, context?: {
286
+ app?: any;
287
+ }) => boolean;
288
+ };
289
+ includeCurrent: {
290
+ type: string;
291
+ ref: string;
292
+ label: string;
293
+ defaultValue: boolean;
294
+ show: (data: any, handler?: any, context?: {
295
+ app?: any;
296
+ }) => boolean;
297
+ };
298
+ };
299
+ };
300
+ languageSection: {
301
+ type: string;
302
+ label: string;
303
+ items: {
304
+ localePreset: {
305
+ type: string;
306
+ ref: string;
307
+ label: string;
308
+ component: string;
309
+ expression: string;
310
+ options: any[] | ((data: any, handler?: any, context?: {
311
+ app?: any;
312
+ }) => Promise<any[]> | any[]);
313
+ };
314
+ formatPreset: {
315
+ type: string;
316
+ ref: string;
317
+ label: string;
318
+ component: string;
319
+ expression: string;
320
+ options: any[] | ((data: any, handler?: any, context?: {
321
+ app?: any;
322
+ }) => Promise<any[]> | any[]);
323
+ };
324
+ placeholder: {
325
+ type: string;
326
+ expression: string;
327
+ ref: string;
328
+ label: string;
329
+ show: ((data: any, handler?: any, context?: {
330
+ app?: any;
331
+ }) => boolean) | undefined;
332
+ };
333
+ customRangeLabel: {
334
+ type: string;
335
+ expression: string;
336
+ ref: string;
337
+ label: string;
338
+ show: ((data: any, handler?: any, context?: {
339
+ app?: any;
340
+ }) => boolean) | undefined;
341
+ };
342
+ today: {
343
+ type: string;
344
+ expression: string;
345
+ ref: string;
346
+ label: string;
347
+ show: ((data: any, handler?: any, context?: {
348
+ app?: any;
349
+ }) => boolean) | undefined;
350
+ };
351
+ yesterday: {
352
+ type: string;
353
+ expression: string;
354
+ ref: string;
355
+ label: string;
356
+ show: ((data: any, handler?: any, context?: {
357
+ app?: any;
358
+ }) => boolean) | undefined;
359
+ };
360
+ lastXDays: {
361
+ type: string;
362
+ expression: string;
363
+ ref: string;
364
+ label: string;
365
+ show: ((data: any, handler?: any, context?: {
366
+ app?: any;
367
+ }) => boolean) | undefined;
368
+ };
369
+ thisLabel: {
370
+ type: string;
371
+ expression: string;
372
+ ref: string;
373
+ label: string;
374
+ show: ((data: any, handler?: any, context?: {
375
+ app?: any;
376
+ }) => boolean) | undefined;
377
+ };
378
+ lastLabel: {
379
+ type: string;
380
+ expression: string;
381
+ ref: string;
382
+ label: string;
383
+ show: ((data: any, handler?: any, context?: {
384
+ app?: any;
385
+ }) => boolean) | undefined;
386
+ };
387
+ };
388
+ };
389
+ advancedSection: {
390
+ type: string;
391
+ label: string;
392
+ items: {
393
+ separator: {
394
+ ref: string;
395
+ label: string;
396
+ type: string;
397
+ expression: string;
398
+ };
399
+ };
400
+ };
401
+ };
402
+ };
403
+ settings: {
404
+ component: string;
405
+ translation: string;
406
+ uses: string;
407
+ items: {
408
+ general: {
409
+ type: string;
410
+ translation: string;
411
+ items: {
412
+ showTitles: {};
413
+ disableNavMenu: {};
414
+ showDetails: {};
415
+ details: {
416
+ show: boolean;
417
+ };
418
+ cellNavMenu: {
419
+ show: boolean;
420
+ };
421
+ };
422
+ };
423
+ presentation: {
424
+ type: string;
425
+ grouped: boolean;
426
+ translation: string;
427
+ items: {
428
+ styleEditor: {
429
+ items: {
430
+ buttonLayoutSection: {
431
+ component: string;
432
+ translation: string;
433
+ items: {
434
+ buttonWidthPercent: {
435
+ type: string;
436
+ component: string;
437
+ label: string;
438
+ ref: string;
439
+ min: number;
440
+ max: number;
441
+ step: number;
442
+ defaultValue: number;
443
+ };
444
+ buttonHeightPercent: {
445
+ type: string;
446
+ component: string;
447
+ label: string;
448
+ ref: string;
449
+ min: number;
450
+ max: number;
451
+ step: number;
452
+ defaultValue: number;
453
+ };
454
+ buttonPosition: {
455
+ component: string;
456
+ ref: string;
457
+ label: string;
458
+ defaultValue: string;
459
+ };
460
+ };
461
+ };
462
+ buttonBorderSection: {
463
+ component: string;
464
+ translation: string;
465
+ items: {
466
+ buttonBorderColor: {
467
+ component: string;
468
+ type: string;
469
+ ref: string;
470
+ label: string;
471
+ disableNone: boolean;
472
+ dualOutput: boolean;
473
+ defaultValue: {
474
+ color: string;
475
+ index: string;
476
+ };
477
+ };
478
+ buttonBorderWidth: {
479
+ type: string;
480
+ ref: string;
481
+ label: string;
482
+ component: string;
483
+ expression: string;
484
+ options: any[];
485
+ dropdownOnly: boolean;
486
+ expressionType: string;
487
+ defaultValue: string | undefined;
488
+ };
489
+ buttonBorderRadius: {
490
+ type: string;
491
+ ref: string;
492
+ label: string;
493
+ component: string;
494
+ expression: string;
495
+ options: any[];
496
+ dropdownOnly: boolean;
497
+ expressionType: string;
498
+ defaultValue: string | undefined;
499
+ };
500
+ };
501
+ };
502
+ pickerSurfaceSection: {
503
+ component: string;
504
+ translation: string;
505
+ items: {
506
+ pickerPopupWidth: {
507
+ type: string;
508
+ ref: string;
509
+ label: string;
510
+ component: string;
511
+ expression: string;
512
+ options: any[];
513
+ dropdownOnly: boolean;
514
+ expressionType: string;
515
+ defaultValue: string | undefined;
516
+ };
517
+ pickerPopupHeight: {
518
+ type: string;
519
+ ref: string;
520
+ label: string;
521
+ component: string;
522
+ expression: string;
523
+ options: any[];
524
+ dropdownOnly: boolean;
525
+ expressionType: string;
526
+ defaultValue: string | undefined;
527
+ };
528
+ pickerPopupPadding: {
529
+ type: string;
530
+ ref: string;
531
+ label: string;
532
+ component: string;
533
+ expression: string;
534
+ options: any[];
535
+ dropdownOnly: boolean;
536
+ expressionType: string;
537
+ defaultValue: string | undefined;
538
+ };
539
+ pickerPopupBackgroundColor: {
540
+ component: string;
541
+ type: string;
542
+ ref: string;
543
+ label: string;
544
+ disableNone: boolean;
545
+ dualOutput: boolean;
546
+ defaultValue: {
547
+ color: string;
548
+ index: string;
549
+ };
550
+ };
551
+ pickerPopupBorderColor: {
552
+ component: string;
553
+ type: string;
554
+ ref: string;
555
+ label: string;
556
+ disableNone: boolean;
557
+ dualOutput: boolean;
558
+ defaultValue: {
559
+ color: string;
560
+ index: string;
561
+ };
562
+ };
563
+ pickerPopupBorderWidth: {
564
+ type: string;
565
+ ref: string;
566
+ label: string;
567
+ component: string;
568
+ expression: string;
569
+ options: any[];
570
+ dropdownOnly: boolean;
571
+ expressionType: string;
572
+ defaultValue: string | undefined;
573
+ };
574
+ pickerPopupBorderRadius: {
575
+ type: string;
576
+ ref: string;
577
+ label: string;
578
+ component: string;
579
+ expression: string;
580
+ options: any[];
581
+ dropdownOnly: boolean;
582
+ expressionType: string;
583
+ defaultValue: string | undefined;
584
+ };
585
+ pickerPopupBoxShadow: {
586
+ type: string;
587
+ ref: string;
588
+ label: string;
589
+ component: string;
590
+ expression: string;
591
+ options: any[];
592
+ dropdownOnly: boolean;
593
+ expressionType: string;
594
+ defaultValue: string | undefined;
595
+ };
596
+ };
597
+ };
598
+ quickActionsSection: {
599
+ component: string;
600
+ translation: string;
601
+ items: {
602
+ quickActionTextColor: {
603
+ component: string;
604
+ type: string;
605
+ ref: string;
606
+ label: string;
607
+ disableNone: boolean;
608
+ dualOutput: boolean;
609
+ defaultValue: {
610
+ color: string;
611
+ index: string;
612
+ };
613
+ };
614
+ quickActionBackgroundColor: {
615
+ component: string;
616
+ type: string;
617
+ ref: string;
618
+ label: string;
619
+ disableNone: boolean;
620
+ dualOutput: boolean;
621
+ defaultValue: {
622
+ color: string;
623
+ index: string;
624
+ };
625
+ };
626
+ quickActionBorderColor: {
627
+ component: string;
628
+ type: string;
629
+ ref: string;
630
+ label: string;
631
+ disableNone: boolean;
632
+ dualOutput: boolean;
633
+ defaultValue: {
634
+ color: string;
635
+ index: string;
636
+ };
637
+ };
638
+ quickActionBorderWidth: {
639
+ type: string;
640
+ ref: string;
641
+ label: string;
642
+ component: string;
643
+ expression: string;
644
+ options: any[];
645
+ dropdownOnly: boolean;
646
+ expressionType: string;
647
+ defaultValue: string | undefined;
648
+ };
649
+ quickActionBorderRadius: {
650
+ type: string;
651
+ ref: string;
652
+ label: string;
653
+ component: string;
654
+ expression: string;
655
+ options: any[];
656
+ dropdownOnly: boolean;
657
+ expressionType: string;
658
+ defaultValue: string | undefined;
659
+ };
660
+ quickActionHoverTextColor: {
661
+ component: string;
662
+ type: string;
663
+ ref: string;
664
+ label: string;
665
+ disableNone: boolean;
666
+ dualOutput: boolean;
667
+ defaultValue: {
668
+ color: string;
669
+ index: string;
670
+ };
671
+ };
672
+ quickActionHoverBackgroundColor: {
673
+ component: string;
674
+ type: string;
675
+ ref: string;
676
+ label: string;
677
+ disableNone: boolean;
678
+ dualOutput: boolean;
679
+ defaultValue: {
680
+ color: string;
681
+ index: string;
682
+ };
683
+ };
684
+ };
685
+ };
686
+ calendarSection: {
687
+ component: string;
688
+ translation: string;
689
+ items: {
690
+ calendarSurfaceBackgroundColor: {
691
+ component: string;
692
+ type: string;
693
+ ref: string;
694
+ label: string;
695
+ disableNone: boolean;
696
+ dualOutput: boolean;
697
+ defaultValue: {
698
+ color: string;
699
+ index: string;
700
+ };
701
+ };
702
+ calendarTextColor: {
703
+ component: string;
704
+ type: string;
705
+ ref: string;
706
+ label: string;
707
+ disableNone: boolean;
708
+ dualOutput: boolean;
709
+ defaultValue: {
710
+ color: string;
711
+ index: string;
712
+ };
713
+ };
714
+ calendarMutedTextColor: {
715
+ component: string;
716
+ type: string;
717
+ ref: string;
718
+ label: string;
719
+ disableNone: boolean;
720
+ dualOutput: boolean;
721
+ defaultValue: {
722
+ color: string;
723
+ index: string;
724
+ };
725
+ };
726
+ calendarDisabledTextColor: {
727
+ component: string;
728
+ type: string;
729
+ ref: string;
730
+ label: string;
731
+ disableNone: boolean;
732
+ dualOutput: boolean;
733
+ defaultValue: {
734
+ color: string;
735
+ index: string;
736
+ };
737
+ };
738
+ calendarHoverBackgroundColor: {
739
+ component: string;
740
+ type: string;
741
+ ref: string;
742
+ label: string;
743
+ disableNone: boolean;
744
+ dualOutput: boolean;
745
+ defaultValue: {
746
+ color: string;
747
+ index: string;
748
+ };
749
+ };
750
+ calendarRangeBackgroundColor: {
751
+ component: string;
752
+ type: string;
753
+ ref: string;
754
+ label: string;
755
+ disableNone: boolean;
756
+ dualOutput: boolean;
757
+ defaultValue: {
758
+ color: string;
759
+ index: string;
760
+ };
761
+ };
762
+ calendarAccentColor: {
763
+ component: string;
764
+ type: string;
765
+ ref: string;
766
+ label: string;
767
+ disableNone: boolean;
768
+ dualOutput: boolean;
769
+ defaultValue: {
770
+ color: string;
771
+ index: string;
772
+ };
773
+ };
774
+ calendarSelectedBackgroundColor: {
775
+ component: string;
776
+ type: string;
777
+ ref: string;
778
+ label: string;
779
+ disableNone: boolean;
780
+ dualOutput: boolean;
781
+ defaultValue: {
782
+ color: string;
783
+ index: string;
784
+ };
785
+ };
786
+ calendarSelectedTextColor: {
787
+ component: string;
788
+ type: string;
789
+ ref: string;
790
+ label: string;
791
+ disableNone: boolean;
792
+ dualOutput: boolean;
793
+ defaultValue: {
794
+ color: string;
795
+ index: string;
796
+ };
797
+ };
798
+ calendarSelectedHoverBackgroundColor: {
799
+ component: string;
800
+ type: string;
801
+ ref: string;
802
+ label: string;
803
+ disableNone: boolean;
804
+ dualOutput: boolean;
805
+ defaultValue: {
806
+ color: string;
807
+ index: string;
808
+ };
809
+ };
810
+ calendarRoundBorderRadius: {
811
+ type: string;
812
+ ref: string;
813
+ label: string;
814
+ component: string;
815
+ expression: string;
816
+ options: any[];
817
+ dropdownOnly: boolean;
818
+ expressionType: string;
819
+ defaultValue: string | undefined;
820
+ };
821
+ calendarSoftBorderRadius: {
822
+ type: string;
823
+ ref: string;
824
+ label: string;
825
+ component: string;
826
+ expression: string;
827
+ options: any[];
828
+ dropdownOnly: boolean;
829
+ expressionType: string;
830
+ defaultValue: string | undefined;
831
+ };
832
+ calendarNestedBorderRadius: {
833
+ type: string;
834
+ ref: string;
835
+ label: string;
836
+ component: string;
837
+ expression: string;
838
+ options: any[];
839
+ dropdownOnly: boolean;
840
+ expressionType: string;
841
+ defaultValue: string | undefined;
842
+ };
843
+ calendarBorderWidth: {
844
+ type: string;
845
+ ref: string;
846
+ label: string;
847
+ component: string;
848
+ expression: string;
849
+ options: any[];
850
+ dropdownOnly: boolean;
851
+ expressionType: string;
852
+ defaultValue: string | undefined;
853
+ };
854
+ calendarPreviewBorderStyle: {
855
+ type: string;
856
+ ref: string;
857
+ label: string;
858
+ component: string;
859
+ expression: string;
860
+ options: any[];
861
+ dropdownOnly: boolean;
862
+ expressionType: string;
863
+ defaultValue: string | undefined;
864
+ };
865
+ };
866
+ };
867
+ };
868
+ component: string;
869
+ chartTitle: string;
870
+ translation: string;
871
+ subtitle: string;
872
+ ref: string;
873
+ useGeneral: boolean;
874
+ useBackground: boolean;
875
+ };
876
+ };
877
+ };
878
+ };
879
+ };
880
+ };
881
+ };
882
+ exportProperties: null;
883
+ importProperties: null;
884
+ support: {
885
+ snapshot: boolean;
886
+ export: boolean;
887
+ sharing: boolean;
888
+ exportData: boolean;
889
+ viewData: boolean;
890
+ };
891
+ };
892
+ };