@vonage/vivid 3.38.0 → 3.40.0
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/accordion/index.js +1 -1
- package/accordion-item/index.js +1 -1
- package/alert/index.js +3 -2
- package/banner/index.js +2 -1
- package/breadcrumb-item/index.js +1 -1
- package/button/index.js +2 -1
- package/card/index.js +1 -1
- package/checkbox/index.js +1 -1
- package/combobox/index.js +5 -3
- package/custom-elements.json +1307 -8
- package/data-grid/index.js +1 -0
- package/date-picker/index.js +6 -4
- package/date-range-picker/index.js +5 -3
- package/dialog/index.js +6 -2
- package/elevation/index.js +1 -1
- package/fab/index.js +1 -1
- package/file-picker/index.js +2 -1
- package/focus/index.js +1 -1
- package/header/index.js +1 -1
- package/index.js +23 -19
- package/lib/checkbox/checkbox.d.ts +1 -0
- package/lib/components.d.ts +1 -0
- package/lib/date-range-picker/date-range-picker.d.ts +0 -1
- package/lib/dialog/dialog.d.ts +4 -0
- package/lib/dialog/locale.d.ts +3 -0
- package/lib/menu/menu.d.ts +1 -0
- package/lib/menu-item/menu-item.d.ts +6 -0
- package/lib/number-field/locale.d.ts +4 -0
- package/lib/number-field/number-field.d.ts +4 -2
- package/lib/progress/progress.d.ts +1 -0
- package/lib/progress-ring/progress-ring.d.ts +1 -0
- package/lib/radio/radio.d.ts +1 -0
- package/lib/selectable-box/definition.d.ts +3 -0
- package/lib/selectable-box/selectable-box.d.ts +13 -0
- package/lib/selectable-box/selectable-box.template.d.ts +4 -0
- package/lib/slider/definition.d.ts +1 -0
- package/lib/slider/slider.d.ts +5 -0
- package/lib/text-area/text-area.d.ts +3 -0
- package/lib/text-field/text-field.d.ts +5 -2
- package/listbox/index.js +3 -2
- package/locales/en-GB.js +7 -0
- package/locales/en-US.js +7 -0
- package/locales/ja-JP.js +7 -0
- package/locales/zh-CN.js +7 -0
- package/menu/index.js +4 -3
- package/menu-item/index.js +1 -1
- package/nav-disclosure/index.js +1 -1
- package/nav-item/index.js +1 -1
- package/number-field/index.js +3 -1
- package/option/index.js +1 -1
- package/package.json +1 -1
- package/pagination/index.js +2 -1
- package/popup/index.js +4 -3
- package/radio/index.js +1 -1
- package/select/index.js +5 -3
- package/selectable-box/index.js +23 -0
- package/shared/Reflector.js +65 -0
- package/shared/date-picker/calendar/segment.d.ts +21 -0
- package/shared/date-picker/date-picker-base.d.ts +1 -1
- package/shared/definition.js +2 -2
- package/shared/definition10.js +4 -73
- package/shared/definition11.js +1 -1
- package/shared/definition12.js +1 -1
- package/shared/definition13.js +2 -2
- package/shared/definition14.js +12 -5
- package/shared/definition15.js +3 -3
- package/shared/definition16.js +22 -8
- package/shared/definition17.js +5 -5
- package/shared/definition18.js +18 -8
- package/shared/definition19.js +18 -10
- package/shared/definition2.js +2 -2
- package/shared/definition20.js +1 -1
- package/shared/definition21.js +1 -1
- package/shared/definition22.js +2 -2
- package/shared/definition23.js +4 -3
- package/shared/definition24.js +2 -2
- package/shared/definition27.js +39 -22
- package/shared/definition28.js +2 -2
- package/shared/definition29.js +2 -2
- package/shared/definition3.js +1 -1
- package/shared/definition30.js +2 -2
- package/shared/definition32.js +1 -1
- package/shared/definition33.js +19 -4
- package/shared/definition34.js +2 -2
- package/shared/definition35.js +3 -2
- package/shared/definition36.js +11 -3
- package/shared/definition37.js +13 -9
- package/shared/definition38.js +2 -2
- package/shared/definition39.js +5 -4
- package/shared/definition4.js +4 -3
- package/shared/definition40.js +4 -4
- package/shared/definition41.js +111 -76
- package/shared/definition42.js +77 -557
- package/shared/definition43.js +568 -102
- package/shared/definition44.js +104 -135
- package/shared/definition45.js +153 -17
- package/shared/definition46.js +16 -79
- package/shared/definition47.js +53 -475
- package/shared/definition48.js +493 -25
- package/shared/definition49.js +22 -121
- package/shared/definition5.js +1 -1
- package/shared/definition50.js +114 -261
- package/shared/definition51.js +258 -119
- package/shared/definition52.js +258 -109
- package/shared/definition53.js +84 -74
- package/shared/definition54.js +114 -69
- package/shared/definition55.js +81 -292
- package/shared/definition56.js +302 -13
- package/shared/definition57.js +11 -41
- package/shared/definition58.js +20 -154
- package/shared/definition59.js +181 -0
- package/shared/definition6.js +1 -1
- package/shared/definition7.js +3 -2
- package/shared/definition8.js +2 -2
- package/shared/enums.js +71 -0
- package/shared/icon.js +1 -1
- package/shared/index2.js +28 -1
- package/shared/key-codes.js +1 -1
- package/shared/key-codes2.js +9 -0
- package/shared/listbox.js +2 -7
- package/shared/localization/Locale.d.ts +4 -0
- package/shared/presentationDate.js +194 -141
- package/shared/radio.js +7 -0
- package/shared/text-field.js +1 -1
- package/shared/utils/Reflector.d.ts +8 -0
- package/shared/utils/randomId.d.ts +1 -0
- package/side-drawer/index.js +1 -1
- package/slider/index.js +2 -2
- package/split-button/index.js +2 -2
- package/style.css +686 -559
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/styles/tokens/vivid-2-compat.css +1 -1
- package/switch/index.js +2 -2
- package/tab/index.js +2 -2
- package/tab-panel/index.js +1 -1
- package/tabs/index.js +4 -4
- package/tag/index.js +2 -2
- package/tag-group/index.js +1 -1
- package/text-area/index.js +3 -2
- package/text-field/index.js +3 -2
- package/toggletip/index.js +5 -4
- package/tooltip/index.js +5 -4
- package/tree-item/index.js +2 -2
- package/tree-view/index.js +1 -1
- package/vivid.api.json +141 -0
package/custom-elements.json
CHANGED
|
@@ -2804,6 +2804,14 @@
|
|
|
2804
2804
|
}
|
|
2805
2805
|
],
|
|
2806
2806
|
"members": [
|
|
2807
|
+
{
|
|
2808
|
+
"kind": "field",
|
|
2809
|
+
"name": "ariaLabel",
|
|
2810
|
+
"type": {
|
|
2811
|
+
"text": "string | null"
|
|
2812
|
+
},
|
|
2813
|
+
"default": "null"
|
|
2814
|
+
},
|
|
2807
2815
|
{
|
|
2808
2816
|
"kind": "field",
|
|
2809
2817
|
"name": "connotation",
|
|
@@ -2815,6 +2823,14 @@
|
|
|
2815
2823
|
}
|
|
2816
2824
|
],
|
|
2817
2825
|
"attributes": [
|
|
2826
|
+
{
|
|
2827
|
+
"name": "aria-label",
|
|
2828
|
+
"type": {
|
|
2829
|
+
"text": "string | null"
|
|
2830
|
+
},
|
|
2831
|
+
"default": "null",
|
|
2832
|
+
"fieldName": "ariaLabel"
|
|
2833
|
+
},
|
|
2818
2834
|
{
|
|
2819
2835
|
"name": "connotation",
|
|
2820
2836
|
"type": {
|
|
@@ -3136,6 +3152,12 @@
|
|
|
3136
3152
|
"name": "updateCellStyle"
|
|
3137
3153
|
}
|
|
3138
3154
|
],
|
|
3155
|
+
"events": [
|
|
3156
|
+
{
|
|
3157
|
+
"description": "Event that fires when a sortable column header is clicked",
|
|
3158
|
+
"name": "sort"
|
|
3159
|
+
}
|
|
3160
|
+
],
|
|
3139
3161
|
"attributes": [
|
|
3140
3162
|
{
|
|
3141
3163
|
"name": "aria-selected",
|
|
@@ -3640,12 +3662,287 @@
|
|
|
3640
3662
|
"text": "string"
|
|
3641
3663
|
},
|
|
3642
3664
|
"default": "'date'"
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
"kind": "field",
|
|
3668
|
+
"name": "label",
|
|
3669
|
+
"type": {
|
|
3670
|
+
"text": "string"
|
|
3671
|
+
},
|
|
3672
|
+
"inheritedFrom": {
|
|
3673
|
+
"name": "DatePickerBase",
|
|
3674
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3675
|
+
}
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"kind": "field",
|
|
3679
|
+
"name": "min",
|
|
3680
|
+
"type": {
|
|
3681
|
+
"text": "string"
|
|
3682
|
+
},
|
|
3683
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
3684
|
+
"privacy": "public",
|
|
3685
|
+
"default": "''",
|
|
3686
|
+
"inheritedFrom": {
|
|
3687
|
+
"name": "DatePickerBase",
|
|
3688
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3689
|
+
}
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"kind": "field",
|
|
3693
|
+
"name": "max",
|
|
3694
|
+
"type": {
|
|
3695
|
+
"text": "string"
|
|
3696
|
+
},
|
|
3697
|
+
"description": "The latest accepted date of the date-picker.",
|
|
3698
|
+
"privacy": "public",
|
|
3699
|
+
"default": "''",
|
|
3700
|
+
"inheritedFrom": {
|
|
3701
|
+
"name": "DatePickerBase",
|
|
3702
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3703
|
+
}
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"kind": "field",
|
|
3707
|
+
"name": "initialValue",
|
|
3708
|
+
"type": {
|
|
3709
|
+
"text": "string"
|
|
3710
|
+
},
|
|
3711
|
+
"description": "The initial value of the date-picker.",
|
|
3712
|
+
"privacy": "public",
|
|
3713
|
+
"inheritedFrom": {
|
|
3714
|
+
"name": "DatePickerBase",
|
|
3715
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3716
|
+
}
|
|
3717
|
+
},
|
|
3718
|
+
{
|
|
3719
|
+
"kind": "field",
|
|
3720
|
+
"name": "currentValue",
|
|
3721
|
+
"type": {
|
|
3722
|
+
"text": "string"
|
|
3723
|
+
},
|
|
3724
|
+
"description": "The current value of the date-picker.",
|
|
3725
|
+
"privacy": "public",
|
|
3726
|
+
"inheritedFrom": {
|
|
3727
|
+
"name": "DatePickerBase",
|
|
3728
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3729
|
+
}
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"kind": "field",
|
|
3733
|
+
"name": "readOnly",
|
|
3734
|
+
"type": {
|
|
3735
|
+
"text": "boolean"
|
|
3736
|
+
},
|
|
3737
|
+
"default": "false",
|
|
3738
|
+
"description": "Whether the date-picker is readonly.",
|
|
3739
|
+
"privacy": "public",
|
|
3740
|
+
"inheritedFrom": {
|
|
3741
|
+
"name": "DatePickerBase",
|
|
3742
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3743
|
+
}
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"kind": "method",
|
|
3747
|
+
"name": "#getFocusableEls",
|
|
3748
|
+
"inheritedFrom": {
|
|
3749
|
+
"name": "DatePickerBase",
|
|
3750
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3751
|
+
}
|
|
3752
|
+
},
|
|
3753
|
+
{
|
|
3754
|
+
"kind": "method",
|
|
3755
|
+
"name": "_adjustSelectedMonthToEnsureVisibilityOf",
|
|
3756
|
+
"privacy": "protected",
|
|
3757
|
+
"parameters": [
|
|
3758
|
+
{
|
|
3759
|
+
"name": "date",
|
|
3760
|
+
"type": {
|
|
3761
|
+
"text": "DateStr"
|
|
3762
|
+
}
|
|
3763
|
+
}
|
|
3764
|
+
],
|
|
3765
|
+
"inheritedFrom": {
|
|
3766
|
+
"name": "DatePickerBase",
|
|
3767
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3768
|
+
}
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
"kind": "method",
|
|
3772
|
+
"name": "#isMonthAfterValidRange",
|
|
3773
|
+
"parameters": [
|
|
3774
|
+
{
|
|
3775
|
+
"name": "month",
|
|
3776
|
+
"type": {
|
|
3777
|
+
"text": "Month"
|
|
3778
|
+
}
|
|
3779
|
+
}
|
|
3780
|
+
],
|
|
3781
|
+
"inheritedFrom": {
|
|
3782
|
+
"name": "DatePickerBase",
|
|
3783
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3784
|
+
}
|
|
3785
|
+
},
|
|
3786
|
+
{
|
|
3787
|
+
"kind": "method",
|
|
3788
|
+
"name": "#isMonthBeforeValidRange",
|
|
3789
|
+
"parameters": [
|
|
3790
|
+
{
|
|
3791
|
+
"name": "month",
|
|
3792
|
+
"type": {
|
|
3793
|
+
"text": "Month"
|
|
3794
|
+
}
|
|
3795
|
+
}
|
|
3796
|
+
],
|
|
3797
|
+
"inheritedFrom": {
|
|
3798
|
+
"name": "DatePickerBase",
|
|
3799
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3800
|
+
}
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"kind": "field",
|
|
3804
|
+
"name": "#onFocusIn",
|
|
3805
|
+
"privacy": "private",
|
|
3806
|
+
"inheritedFrom": {
|
|
3807
|
+
"name": "DatePickerBase",
|
|
3808
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3809
|
+
}
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
"kind": "field",
|
|
3813
|
+
"name": "#onFocusOut",
|
|
3814
|
+
"privacy": "private",
|
|
3815
|
+
"inheritedFrom": {
|
|
3816
|
+
"name": "DatePickerBase",
|
|
3817
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3818
|
+
}
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"kind": "method",
|
|
3822
|
+
"name": "_getCustomValidationError",
|
|
3823
|
+
"privacy": "protected",
|
|
3824
|
+
"return": {
|
|
3825
|
+
"type": {
|
|
3826
|
+
"text": "string | null"
|
|
3827
|
+
}
|
|
3828
|
+
},
|
|
3829
|
+
"inheritedFrom": {
|
|
3830
|
+
"name": "DatePickerBase",
|
|
3831
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3832
|
+
}
|
|
3833
|
+
},
|
|
3834
|
+
{
|
|
3835
|
+
"kind": "field",
|
|
3836
|
+
"name": "#dismissOnClickOutside",
|
|
3837
|
+
"privacy": "private",
|
|
3838
|
+
"inheritedFrom": {
|
|
3839
|
+
"name": "DatePickerBase",
|
|
3840
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3841
|
+
}
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
"kind": "field",
|
|
3845
|
+
"name": "#isClosingPopup",
|
|
3846
|
+
"privacy": "private",
|
|
3847
|
+
"type": {
|
|
3848
|
+
"text": "boolean"
|
|
3849
|
+
},
|
|
3850
|
+
"default": "false",
|
|
3851
|
+
"inheritedFrom": {
|
|
3852
|
+
"name": "DatePickerBase",
|
|
3853
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3854
|
+
}
|
|
3855
|
+
},
|
|
3856
|
+
{
|
|
3857
|
+
"kind": "method",
|
|
3858
|
+
"name": "#openPopupIfPossible",
|
|
3859
|
+
"inheritedFrom": {
|
|
3860
|
+
"name": "DatePickerBase",
|
|
3861
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3862
|
+
}
|
|
3863
|
+
},
|
|
3864
|
+
{
|
|
3865
|
+
"kind": "method",
|
|
3866
|
+
"name": "_getSelectedDates",
|
|
3867
|
+
"privacy": "protected",
|
|
3868
|
+
"return": {
|
|
3869
|
+
"type": {
|
|
3870
|
+
"text": "DateStr[]"
|
|
3871
|
+
}
|
|
3872
|
+
},
|
|
3873
|
+
"inheritedFrom": {
|
|
3874
|
+
"name": "DatePickerBase",
|
|
3875
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
{
|
|
3879
|
+
"kind": "field",
|
|
3880
|
+
"name": "value",
|
|
3881
|
+
"type": {
|
|
3882
|
+
"text": "string"
|
|
3883
|
+
},
|
|
3884
|
+
"default": "''",
|
|
3885
|
+
"inheritedFrom": {
|
|
3886
|
+
"name": "DatePickerBase",
|
|
3887
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3888
|
+
}
|
|
3643
3889
|
}
|
|
3644
3890
|
],
|
|
3645
3891
|
"superclass": {
|
|
3646
3892
|
"name": "DatePickerBase",
|
|
3647
3893
|
"module": "/libs/components/src/shared/date-picker/date-picker-base"
|
|
3648
|
-
}
|
|
3894
|
+
},
|
|
3895
|
+
"attributes": [
|
|
3896
|
+
{
|
|
3897
|
+
"type": {
|
|
3898
|
+
"text": "string"
|
|
3899
|
+
},
|
|
3900
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
3901
|
+
"default": "''",
|
|
3902
|
+
"fieldName": "min",
|
|
3903
|
+
"inheritedFrom": {
|
|
3904
|
+
"name": "DatePickerBase",
|
|
3905
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3906
|
+
}
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
"name": "value",
|
|
3910
|
+
"type": {
|
|
3911
|
+
"text": "string"
|
|
3912
|
+
},
|
|
3913
|
+
"description": "The initial value of the date-picker.",
|
|
3914
|
+
"fieldName": "initialValue",
|
|
3915
|
+
"inheritedFrom": {
|
|
3916
|
+
"name": "DatePickerBase",
|
|
3917
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3918
|
+
}
|
|
3919
|
+
},
|
|
3920
|
+
{
|
|
3921
|
+
"name": "current-value",
|
|
3922
|
+
"type": {
|
|
3923
|
+
"text": "string"
|
|
3924
|
+
},
|
|
3925
|
+
"description": "The current value of the date-picker.",
|
|
3926
|
+
"fieldName": "currentValue",
|
|
3927
|
+
"inheritedFrom": {
|
|
3928
|
+
"name": "DatePickerBase",
|
|
3929
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3930
|
+
}
|
|
3931
|
+
},
|
|
3932
|
+
{
|
|
3933
|
+
"name": "readonly",
|
|
3934
|
+
"type": {
|
|
3935
|
+
"text": "boolean"
|
|
3936
|
+
},
|
|
3937
|
+
"default": "false",
|
|
3938
|
+
"description": "Whether the date-picker is readonly.",
|
|
3939
|
+
"fieldName": "readOnly",
|
|
3940
|
+
"inheritedFrom": {
|
|
3941
|
+
"name": "DatePickerBase",
|
|
3942
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
3943
|
+
}
|
|
3944
|
+
}
|
|
3945
|
+
]
|
|
3649
3946
|
}
|
|
3650
3947
|
],
|
|
3651
3948
|
"exports": [
|
|
@@ -3801,9 +4098,239 @@
|
|
|
3801
4098
|
}
|
|
3802
4099
|
}
|
|
3803
4100
|
},
|
|
4101
|
+
{
|
|
4102
|
+
"kind": "field",
|
|
4103
|
+
"name": "label",
|
|
4104
|
+
"type": {
|
|
4105
|
+
"text": "string"
|
|
4106
|
+
},
|
|
4107
|
+
"inheritedFrom": {
|
|
4108
|
+
"name": "DatePickerBase",
|
|
4109
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
"kind": "field",
|
|
4114
|
+
"name": "min",
|
|
4115
|
+
"type": {
|
|
4116
|
+
"text": "string"
|
|
4117
|
+
},
|
|
4118
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
4119
|
+
"privacy": "public",
|
|
4120
|
+
"default": "''",
|
|
4121
|
+
"inheritedFrom": {
|
|
4122
|
+
"name": "DatePickerBase",
|
|
4123
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4124
|
+
}
|
|
4125
|
+
},
|
|
4126
|
+
{
|
|
4127
|
+
"kind": "field",
|
|
4128
|
+
"name": "max",
|
|
4129
|
+
"type": {
|
|
4130
|
+
"text": "string"
|
|
4131
|
+
},
|
|
4132
|
+
"description": "The latest accepted date of the date-picker.",
|
|
4133
|
+
"privacy": "public",
|
|
4134
|
+
"default": "''",
|
|
4135
|
+
"inheritedFrom": {
|
|
4136
|
+
"name": "DatePickerBase",
|
|
4137
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4138
|
+
}
|
|
4139
|
+
},
|
|
4140
|
+
{
|
|
4141
|
+
"kind": "field",
|
|
4142
|
+
"name": "initialValue",
|
|
4143
|
+
"type": {
|
|
4144
|
+
"text": "string"
|
|
4145
|
+
},
|
|
4146
|
+
"description": "The initial value of the date-picker.",
|
|
4147
|
+
"privacy": "public",
|
|
4148
|
+
"inheritedFrom": {
|
|
4149
|
+
"name": "DatePickerBase",
|
|
4150
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4151
|
+
}
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
"kind": "field",
|
|
4155
|
+
"name": "currentValue",
|
|
4156
|
+
"type": {
|
|
4157
|
+
"text": "string"
|
|
4158
|
+
},
|
|
4159
|
+
"description": "The current value of the date-picker.",
|
|
4160
|
+
"privacy": "public",
|
|
4161
|
+
"inheritedFrom": {
|
|
4162
|
+
"name": "DatePickerBase",
|
|
4163
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4164
|
+
}
|
|
4165
|
+
},
|
|
4166
|
+
{
|
|
4167
|
+
"kind": "field",
|
|
4168
|
+
"name": "readOnly",
|
|
4169
|
+
"type": {
|
|
4170
|
+
"text": "boolean"
|
|
4171
|
+
},
|
|
4172
|
+
"default": "false",
|
|
4173
|
+
"description": "Whether the date-picker is readonly.",
|
|
4174
|
+
"privacy": "public",
|
|
4175
|
+
"inheritedFrom": {
|
|
4176
|
+
"name": "DatePickerBase",
|
|
4177
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4178
|
+
}
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
"kind": "method",
|
|
4182
|
+
"name": "#getFocusableEls",
|
|
4183
|
+
"inheritedFrom": {
|
|
4184
|
+
"name": "DatePickerBase",
|
|
4185
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4186
|
+
}
|
|
4187
|
+
},
|
|
4188
|
+
{
|
|
4189
|
+
"kind": "method",
|
|
4190
|
+
"name": "_adjustSelectedMonthToEnsureVisibilityOf",
|
|
4191
|
+
"privacy": "protected",
|
|
4192
|
+
"parameters": [
|
|
4193
|
+
{
|
|
4194
|
+
"name": "date",
|
|
4195
|
+
"type": {
|
|
4196
|
+
"text": "DateStr"
|
|
4197
|
+
}
|
|
4198
|
+
}
|
|
4199
|
+
],
|
|
4200
|
+
"inheritedFrom": {
|
|
4201
|
+
"name": "DatePickerBase",
|
|
4202
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4203
|
+
}
|
|
4204
|
+
},
|
|
4205
|
+
{
|
|
4206
|
+
"kind": "method",
|
|
4207
|
+
"name": "#isMonthAfterValidRange",
|
|
4208
|
+
"parameters": [
|
|
4209
|
+
{
|
|
4210
|
+
"name": "month",
|
|
4211
|
+
"type": {
|
|
4212
|
+
"text": "Month"
|
|
4213
|
+
}
|
|
4214
|
+
}
|
|
4215
|
+
],
|
|
4216
|
+
"inheritedFrom": {
|
|
4217
|
+
"name": "DatePickerBase",
|
|
4218
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4219
|
+
}
|
|
4220
|
+
},
|
|
4221
|
+
{
|
|
4222
|
+
"kind": "method",
|
|
4223
|
+
"name": "#isMonthBeforeValidRange",
|
|
4224
|
+
"parameters": [
|
|
4225
|
+
{
|
|
4226
|
+
"name": "month",
|
|
4227
|
+
"type": {
|
|
4228
|
+
"text": "Month"
|
|
4229
|
+
}
|
|
4230
|
+
}
|
|
4231
|
+
],
|
|
4232
|
+
"inheritedFrom": {
|
|
4233
|
+
"name": "DatePickerBase",
|
|
4234
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4235
|
+
}
|
|
4236
|
+
},
|
|
4237
|
+
{
|
|
4238
|
+
"kind": "field",
|
|
4239
|
+
"name": "#onFocusIn",
|
|
4240
|
+
"privacy": "private",
|
|
4241
|
+
"inheritedFrom": {
|
|
4242
|
+
"name": "DatePickerBase",
|
|
4243
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4244
|
+
}
|
|
4245
|
+
},
|
|
4246
|
+
{
|
|
4247
|
+
"kind": "field",
|
|
4248
|
+
"name": "#onFocusOut",
|
|
4249
|
+
"privacy": "private",
|
|
4250
|
+
"inheritedFrom": {
|
|
4251
|
+
"name": "DatePickerBase",
|
|
4252
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4253
|
+
}
|
|
4254
|
+
},
|
|
4255
|
+
{
|
|
4256
|
+
"kind": "method",
|
|
4257
|
+
"name": "_getCustomValidationError",
|
|
4258
|
+
"privacy": "protected",
|
|
4259
|
+
"return": {
|
|
4260
|
+
"type": {
|
|
4261
|
+
"text": "string | null"
|
|
4262
|
+
}
|
|
4263
|
+
},
|
|
4264
|
+
"inheritedFrom": {
|
|
4265
|
+
"name": "DatePickerBase",
|
|
4266
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4267
|
+
}
|
|
4268
|
+
},
|
|
4269
|
+
{
|
|
4270
|
+
"kind": "field",
|
|
4271
|
+
"name": "#dismissOnClickOutside",
|
|
4272
|
+
"privacy": "private",
|
|
4273
|
+
"inheritedFrom": {
|
|
4274
|
+
"name": "DatePickerBase",
|
|
4275
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4276
|
+
}
|
|
4277
|
+
},
|
|
4278
|
+
{
|
|
4279
|
+
"kind": "field",
|
|
4280
|
+
"name": "#isClosingPopup",
|
|
4281
|
+
"privacy": "private",
|
|
4282
|
+
"type": {
|
|
4283
|
+
"text": "boolean"
|
|
4284
|
+
},
|
|
4285
|
+
"default": "false",
|
|
4286
|
+
"inheritedFrom": {
|
|
4287
|
+
"name": "DatePickerBase",
|
|
4288
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4289
|
+
}
|
|
4290
|
+
},
|
|
3804
4291
|
{
|
|
3805
4292
|
"kind": "method",
|
|
3806
|
-
"name": "
|
|
4293
|
+
"name": "#openPopupIfPossible",
|
|
4294
|
+
"inheritedFrom": {
|
|
4295
|
+
"name": "DatePickerBase",
|
|
4296
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4297
|
+
}
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
"kind": "method",
|
|
4301
|
+
"name": "_getSelectedDates",
|
|
4302
|
+
"privacy": "protected",
|
|
4303
|
+
"return": {
|
|
4304
|
+
"type": {
|
|
4305
|
+
"text": "DateStr[]"
|
|
4306
|
+
}
|
|
4307
|
+
},
|
|
4308
|
+
"inheritedFrom": {
|
|
4309
|
+
"name": "DatePickerBase",
|
|
4310
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4311
|
+
}
|
|
4312
|
+
},
|
|
4313
|
+
{
|
|
4314
|
+
"kind": "field",
|
|
4315
|
+
"name": "value",
|
|
4316
|
+
"type": {
|
|
4317
|
+
"text": "string"
|
|
4318
|
+
},
|
|
4319
|
+
"default": "''",
|
|
4320
|
+
"inheritedFrom": {
|
|
4321
|
+
"name": "DatePickerBase",
|
|
4322
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4323
|
+
}
|
|
4324
|
+
}
|
|
4325
|
+
],
|
|
4326
|
+
"events": [
|
|
4327
|
+
{
|
|
4328
|
+
"description": "Event emitted when the start value changes",
|
|
4329
|
+
"name": "input:start"
|
|
4330
|
+
},
|
|
4331
|
+
{
|
|
4332
|
+
"description": "Event emitted when the end value changes",
|
|
4333
|
+
"name": "input:end"
|
|
3807
4334
|
}
|
|
3808
4335
|
],
|
|
3809
4336
|
"attributes": [
|
|
@@ -3840,6 +4367,55 @@
|
|
|
3840
4367
|
},
|
|
3841
4368
|
"description": "The current end value of the element. This property serves as a mechanism\nto set the `end` property through both property assignment and the\n.setAttribute() method. This is useful for setting the field's value\nin UI libraries that bind data through the .setAttribute() API\nand don't support IDL attribute binding.",
|
|
3842
4369
|
"fieldName": "currentEnd"
|
|
4370
|
+
},
|
|
4371
|
+
{
|
|
4372
|
+
"type": {
|
|
4373
|
+
"text": "string"
|
|
4374
|
+
},
|
|
4375
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
4376
|
+
"default": "''",
|
|
4377
|
+
"fieldName": "min",
|
|
4378
|
+
"inheritedFrom": {
|
|
4379
|
+
"name": "DatePickerBase",
|
|
4380
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4381
|
+
}
|
|
4382
|
+
},
|
|
4383
|
+
{
|
|
4384
|
+
"name": "value",
|
|
4385
|
+
"type": {
|
|
4386
|
+
"text": "string"
|
|
4387
|
+
},
|
|
4388
|
+
"description": "The initial value of the date-picker.",
|
|
4389
|
+
"fieldName": "initialValue",
|
|
4390
|
+
"inheritedFrom": {
|
|
4391
|
+
"name": "DatePickerBase",
|
|
4392
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4393
|
+
}
|
|
4394
|
+
},
|
|
4395
|
+
{
|
|
4396
|
+
"name": "current-value",
|
|
4397
|
+
"type": {
|
|
4398
|
+
"text": "string"
|
|
4399
|
+
},
|
|
4400
|
+
"description": "The current value of the date-picker.",
|
|
4401
|
+
"fieldName": "currentValue",
|
|
4402
|
+
"inheritedFrom": {
|
|
4403
|
+
"name": "DatePickerBase",
|
|
4404
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4405
|
+
}
|
|
4406
|
+
},
|
|
4407
|
+
{
|
|
4408
|
+
"name": "readonly",
|
|
4409
|
+
"type": {
|
|
4410
|
+
"text": "boolean"
|
|
4411
|
+
},
|
|
4412
|
+
"default": "false",
|
|
4413
|
+
"description": "Whether the date-picker is readonly.",
|
|
4414
|
+
"fieldName": "readOnly",
|
|
4415
|
+
"inheritedFrom": {
|
|
4416
|
+
"name": "DatePickerBase",
|
|
4417
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
4418
|
+
}
|
|
3843
4419
|
}
|
|
3844
4420
|
],
|
|
3845
4421
|
"superclass": {
|
|
@@ -4038,6 +4614,14 @@
|
|
|
4038
4614
|
},
|
|
4039
4615
|
"default": "null"
|
|
4040
4616
|
},
|
|
4617
|
+
{
|
|
4618
|
+
"kind": "field",
|
|
4619
|
+
"name": "dismissButtonAriaLabel",
|
|
4620
|
+
"type": {
|
|
4621
|
+
"text": "string | null"
|
|
4622
|
+
},
|
|
4623
|
+
"default": "null"
|
|
4624
|
+
},
|
|
4041
4625
|
{
|
|
4042
4626
|
"kind": "field",
|
|
4043
4627
|
"name": "#modal",
|
|
@@ -4214,6 +4798,14 @@
|
|
|
4214
4798
|
},
|
|
4215
4799
|
"default": "null",
|
|
4216
4800
|
"fieldName": "ariaDescribedBy"
|
|
4801
|
+
},
|
|
4802
|
+
{
|
|
4803
|
+
"name": "dismiss-button-aria-label",
|
|
4804
|
+
"type": {
|
|
4805
|
+
"text": "string | null"
|
|
4806
|
+
},
|
|
4807
|
+
"default": "null",
|
|
4808
|
+
"fieldName": "dismissButtonAriaLabel"
|
|
4217
4809
|
}
|
|
4218
4810
|
],
|
|
4219
4811
|
"superclass": {
|
|
@@ -4241,6 +4833,12 @@
|
|
|
4241
4833
|
}
|
|
4242
4834
|
]
|
|
4243
4835
|
},
|
|
4836
|
+
{
|
|
4837
|
+
"kind": "javascript-module",
|
|
4838
|
+
"path": "libs/components/src/lib/dialog/locale.ts",
|
|
4839
|
+
"declarations": [],
|
|
4840
|
+
"exports": []
|
|
4841
|
+
},
|
|
4244
4842
|
{
|
|
4245
4843
|
"kind": "javascript-module",
|
|
4246
4844
|
"path": "libs/components/src/lib/divider/definition.ts",
|
|
@@ -6088,6 +6686,10 @@
|
|
|
6088
6686
|
"type": {
|
|
6089
6687
|
"text": "HTMLElement[] | undefined"
|
|
6090
6688
|
}
|
|
6689
|
+
},
|
|
6690
|
+
{
|
|
6691
|
+
"kind": "field",
|
|
6692
|
+
"name": "handleFocusOut"
|
|
6091
6693
|
}
|
|
6092
6694
|
],
|
|
6093
6695
|
"events": [
|
|
@@ -6267,6 +6869,25 @@
|
|
|
6267
6869
|
"description": "Indicates the menu item's secondary text.",
|
|
6268
6870
|
"privacy": "public"
|
|
6269
6871
|
},
|
|
6872
|
+
{
|
|
6873
|
+
"kind": "field",
|
|
6874
|
+
"name": "checkTrailing",
|
|
6875
|
+
"type": {
|
|
6876
|
+
"text": "boolean"
|
|
6877
|
+
},
|
|
6878
|
+
"default": "false",
|
|
6879
|
+
"description": "Controls the placement of the menu item's checkmark or radio icon.",
|
|
6880
|
+
"privacy": "public"
|
|
6881
|
+
},
|
|
6882
|
+
{
|
|
6883
|
+
"kind": "field",
|
|
6884
|
+
"name": "checkedAppearance",
|
|
6885
|
+
"type": {
|
|
6886
|
+
"text": "CheckAppearance | undefined"
|
|
6887
|
+
},
|
|
6888
|
+
"description": "Controls the appearance of the check indicator.",
|
|
6889
|
+
"privacy": "public"
|
|
6890
|
+
},
|
|
6270
6891
|
{
|
|
6271
6892
|
"kind": "field",
|
|
6272
6893
|
"name": "#submenuArray",
|
|
@@ -6309,6 +6930,23 @@
|
|
|
6309
6930
|
},
|
|
6310
6931
|
"description": "Indicates the menu item's secondary text.",
|
|
6311
6932
|
"fieldName": "textSecondary"
|
|
6933
|
+
},
|
|
6934
|
+
{
|
|
6935
|
+
"name": "check-trailing",
|
|
6936
|
+
"type": {
|
|
6937
|
+
"text": "boolean"
|
|
6938
|
+
},
|
|
6939
|
+
"default": "false",
|
|
6940
|
+
"description": "Controls the placement of the menu item's checkmark or radio icon.",
|
|
6941
|
+
"fieldName": "checkTrailing"
|
|
6942
|
+
},
|
|
6943
|
+
{
|
|
6944
|
+
"name": "check-appearance",
|
|
6945
|
+
"type": {
|
|
6946
|
+
"text": "CheckAppearance | undefined"
|
|
6947
|
+
},
|
|
6948
|
+
"description": "Controls the appearance of the check indicator.",
|
|
6949
|
+
"fieldName": "checkedAppearance"
|
|
6312
6950
|
}
|
|
6313
6951
|
],
|
|
6314
6952
|
"superclass": {
|
|
@@ -6950,6 +7588,12 @@
|
|
|
6950
7588
|
}
|
|
6951
7589
|
]
|
|
6952
7590
|
},
|
|
7591
|
+
{
|
|
7592
|
+
"kind": "javascript-module",
|
|
7593
|
+
"path": "libs/components/src/lib/number-field/locale.ts",
|
|
7594
|
+
"declarations": [],
|
|
7595
|
+
"exports": []
|
|
7596
|
+
},
|
|
6953
7597
|
{
|
|
6954
7598
|
"kind": "javascript-module",
|
|
6955
7599
|
"path": "libs/components/src/lib/number-field/number-field.ts",
|
|
@@ -7027,12 +7671,28 @@
|
|
|
7027
7671
|
"name": "--vvd-text-field-accent-faint",
|
|
7028
7672
|
"default": "var(--vvd-color-neutral-50)"
|
|
7029
7673
|
},
|
|
7030
|
-
{
|
|
7031
|
-
"name": "--vvd-text-field-accent-soft",
|
|
7032
|
-
"default": "var(--vvd-color-neutral-100)"
|
|
7033
|
-
}
|
|
7034
|
-
],
|
|
7035
|
-
"members": [
|
|
7674
|
+
{
|
|
7675
|
+
"name": "--vvd-text-field-accent-soft",
|
|
7676
|
+
"default": "var(--vvd-color-neutral-100)"
|
|
7677
|
+
}
|
|
7678
|
+
],
|
|
7679
|
+
"members": [
|
|
7680
|
+
{
|
|
7681
|
+
"kind": "field",
|
|
7682
|
+
"name": "incrementButtonAriaLabel",
|
|
7683
|
+
"type": {
|
|
7684
|
+
"text": "string | null"
|
|
7685
|
+
},
|
|
7686
|
+
"default": "null"
|
|
7687
|
+
},
|
|
7688
|
+
{
|
|
7689
|
+
"kind": "field",
|
|
7690
|
+
"name": "decrementButtonAriaLabel",
|
|
7691
|
+
"type": {
|
|
7692
|
+
"text": "string | null"
|
|
7693
|
+
},
|
|
7694
|
+
"default": "null"
|
|
7695
|
+
},
|
|
7036
7696
|
{
|
|
7037
7697
|
"kind": "field",
|
|
7038
7698
|
"name": "appearance",
|
|
@@ -7087,6 +7747,22 @@
|
|
|
7087
7747
|
}
|
|
7088
7748
|
],
|
|
7089
7749
|
"attributes": [
|
|
7750
|
+
{
|
|
7751
|
+
"name": "increment-button-aria-label",
|
|
7752
|
+
"type": {
|
|
7753
|
+
"text": "string | null"
|
|
7754
|
+
},
|
|
7755
|
+
"default": "null",
|
|
7756
|
+
"fieldName": "incrementButtonAriaLabel"
|
|
7757
|
+
},
|
|
7758
|
+
{
|
|
7759
|
+
"name": "decrement-button-aria-label",
|
|
7760
|
+
"type": {
|
|
7761
|
+
"text": "string | null"
|
|
7762
|
+
},
|
|
7763
|
+
"default": "null",
|
|
7764
|
+
"fieldName": "decrementButtonAriaLabel"
|
|
7765
|
+
},
|
|
7090
7766
|
{
|
|
7091
7767
|
"name": "appearance",
|
|
7092
7768
|
"type": {
|
|
@@ -7952,6 +8628,14 @@
|
|
|
7952
8628
|
}
|
|
7953
8629
|
],
|
|
7954
8630
|
"members": [
|
|
8631
|
+
{
|
|
8632
|
+
"kind": "field",
|
|
8633
|
+
"name": "ariaLabel",
|
|
8634
|
+
"type": {
|
|
8635
|
+
"text": "string | null"
|
|
8636
|
+
},
|
|
8637
|
+
"default": "null"
|
|
8638
|
+
},
|
|
7955
8639
|
{
|
|
7956
8640
|
"kind": "field",
|
|
7957
8641
|
"name": "shape",
|
|
@@ -7982,6 +8666,14 @@
|
|
|
7982
8666
|
}
|
|
7983
8667
|
],
|
|
7984
8668
|
"attributes": [
|
|
8669
|
+
{
|
|
8670
|
+
"name": "aria-label",
|
|
8671
|
+
"type": {
|
|
8672
|
+
"text": "string | null"
|
|
8673
|
+
},
|
|
8674
|
+
"default": "null",
|
|
8675
|
+
"fieldName": "ariaLabel"
|
|
8676
|
+
},
|
|
7985
8677
|
{
|
|
7986
8678
|
"name": "shape",
|
|
7987
8679
|
"type": {
|
|
@@ -8099,6 +8791,14 @@
|
|
|
8099
8791
|
}
|
|
8100
8792
|
],
|
|
8101
8793
|
"members": [
|
|
8794
|
+
{
|
|
8795
|
+
"kind": "field",
|
|
8796
|
+
"name": "ariaLabel",
|
|
8797
|
+
"type": {
|
|
8798
|
+
"text": "string | null"
|
|
8799
|
+
},
|
|
8800
|
+
"default": "null"
|
|
8801
|
+
},
|
|
8102
8802
|
{
|
|
8103
8803
|
"kind": "field",
|
|
8104
8804
|
"name": "connotation",
|
|
@@ -8115,6 +8815,14 @@
|
|
|
8115
8815
|
}
|
|
8116
8816
|
],
|
|
8117
8817
|
"attributes": [
|
|
8818
|
+
{
|
|
8819
|
+
"name": "aria-label",
|
|
8820
|
+
"type": {
|
|
8821
|
+
"text": "string | null"
|
|
8822
|
+
},
|
|
8823
|
+
"default": "null",
|
|
8824
|
+
"fieldName": "ariaLabel"
|
|
8825
|
+
},
|
|
8118
8826
|
{
|
|
8119
8827
|
"name": "connotation",
|
|
8120
8828
|
"type": {
|
|
@@ -8246,6 +8954,14 @@
|
|
|
8246
8954
|
}
|
|
8247
8955
|
],
|
|
8248
8956
|
"members": [
|
|
8957
|
+
{
|
|
8958
|
+
"kind": "field",
|
|
8959
|
+
"name": "ariaLabel",
|
|
8960
|
+
"type": {
|
|
8961
|
+
"text": "string | null"
|
|
8962
|
+
},
|
|
8963
|
+
"default": "null"
|
|
8964
|
+
},
|
|
8249
8965
|
{
|
|
8250
8966
|
"kind": "field",
|
|
8251
8967
|
"name": "label",
|
|
@@ -8266,6 +8982,14 @@
|
|
|
8266
8982
|
}
|
|
8267
8983
|
],
|
|
8268
8984
|
"attributes": [
|
|
8985
|
+
{
|
|
8986
|
+
"name": "aria-label",
|
|
8987
|
+
"type": {
|
|
8988
|
+
"text": "string | null"
|
|
8989
|
+
},
|
|
8990
|
+
"default": "null",
|
|
8991
|
+
"fieldName": "ariaLabel"
|
|
8992
|
+
},
|
|
8269
8993
|
{
|
|
8270
8994
|
"name": "label",
|
|
8271
8995
|
"type": {
|
|
@@ -8642,6 +9366,238 @@
|
|
|
8642
9366
|
}
|
|
8643
9367
|
]
|
|
8644
9368
|
},
|
|
9369
|
+
{
|
|
9370
|
+
"kind": "javascript-module",
|
|
9371
|
+
"path": "libs/components/src/lib/selectable-box/definition.ts",
|
|
9372
|
+
"declarations": [
|
|
9373
|
+
{
|
|
9374
|
+
"kind": "variable",
|
|
9375
|
+
"name": "selectableBoxDefinition"
|
|
9376
|
+
},
|
|
9377
|
+
{
|
|
9378
|
+
"kind": "variable",
|
|
9379
|
+
"name": "registerSelectableBox",
|
|
9380
|
+
"description": "Registers the selectable-box element with the design system.",
|
|
9381
|
+
"parameters": [
|
|
9382
|
+
{
|
|
9383
|
+
"description": "the prefix to use for the component name",
|
|
9384
|
+
"name": "prefix"
|
|
9385
|
+
}
|
|
9386
|
+
]
|
|
9387
|
+
}
|
|
9388
|
+
],
|
|
9389
|
+
"exports": [
|
|
9390
|
+
{
|
|
9391
|
+
"kind": "js",
|
|
9392
|
+
"name": "selectableBoxDefinition",
|
|
9393
|
+
"declaration": {
|
|
9394
|
+
"name": "selectableBoxDefinition",
|
|
9395
|
+
"module": "libs/components/src/lib/selectable-box/definition.ts"
|
|
9396
|
+
}
|
|
9397
|
+
},
|
|
9398
|
+
{
|
|
9399
|
+
"kind": "js",
|
|
9400
|
+
"name": "registerSelectableBox",
|
|
9401
|
+
"declaration": {
|
|
9402
|
+
"name": "registerSelectableBox",
|
|
9403
|
+
"module": "libs/components/src/lib/selectable-box/definition.ts"
|
|
9404
|
+
}
|
|
9405
|
+
}
|
|
9406
|
+
]
|
|
9407
|
+
},
|
|
9408
|
+
{
|
|
9409
|
+
"kind": "javascript-module",
|
|
9410
|
+
"path": "libs/components/src/lib/selectable-box/selectable-box.ts",
|
|
9411
|
+
"declarations": [
|
|
9412
|
+
{
|
|
9413
|
+
"kind": "class",
|
|
9414
|
+
"description": "Base class for selectable-box",
|
|
9415
|
+
"name": "SelectableBox",
|
|
9416
|
+
"cssProperties": [
|
|
9417
|
+
{
|
|
9418
|
+
"name": "--vvd-selectable-box-cta-firm",
|
|
9419
|
+
"default": "var(--vvd-color-cta-600)"
|
|
9420
|
+
},
|
|
9421
|
+
{
|
|
9422
|
+
"name": "--vvd-selectable-box-cta-pale",
|
|
9423
|
+
"default": "var(--vvd-color-cta-300)"
|
|
9424
|
+
},
|
|
9425
|
+
{
|
|
9426
|
+
"name": "--vvd-selectable-box-cta-soft",
|
|
9427
|
+
"default": "var(--vvd-color-cta-100)"
|
|
9428
|
+
},
|
|
9429
|
+
{
|
|
9430
|
+
"name": "--vvd-selectable-box-accent-firm",
|
|
9431
|
+
"default": "var(--vvd-color-canvas-text)"
|
|
9432
|
+
},
|
|
9433
|
+
{
|
|
9434
|
+
"name": "--vvd-selectable-box-accent-pale",
|
|
9435
|
+
"default": "var(--vvd-color-neutral-300)"
|
|
9436
|
+
},
|
|
9437
|
+
{
|
|
9438
|
+
"name": "--vvd-selectable-box-accent-soft",
|
|
9439
|
+
"default": "var(--vvd-color-neutral-100)"
|
|
9440
|
+
}
|
|
9441
|
+
],
|
|
9442
|
+
"slots": [
|
|
9443
|
+
{
|
|
9444
|
+
"description": "Slot for box's content.",
|
|
9445
|
+
"name": "default"
|
|
9446
|
+
}
|
|
9447
|
+
],
|
|
9448
|
+
"members": [
|
|
9449
|
+
{
|
|
9450
|
+
"kind": "field",
|
|
9451
|
+
"name": "checked",
|
|
9452
|
+
"type": {
|
|
9453
|
+
"text": "boolean"
|
|
9454
|
+
},
|
|
9455
|
+
"default": "false",
|
|
9456
|
+
"description": "Controls the checked state of the box",
|
|
9457
|
+
"privacy": "public"
|
|
9458
|
+
},
|
|
9459
|
+
{
|
|
9460
|
+
"kind": "field",
|
|
9461
|
+
"name": "clickable",
|
|
9462
|
+
"type": {
|
|
9463
|
+
"text": "boolean"
|
|
9464
|
+
},
|
|
9465
|
+
"default": "false",
|
|
9466
|
+
"description": "Makes the whole selectable box clickable",
|
|
9467
|
+
"privacy": "public"
|
|
9468
|
+
},
|
|
9469
|
+
{
|
|
9470
|
+
"kind": "field",
|
|
9471
|
+
"name": "connotation",
|
|
9472
|
+
"type": {
|
|
9473
|
+
"text": "SelectableBoxConnotation | undefined"
|
|
9474
|
+
},
|
|
9475
|
+
"description": "The connotation the selectable box should have.",
|
|
9476
|
+
"privacy": "public"
|
|
9477
|
+
},
|
|
9478
|
+
{
|
|
9479
|
+
"kind": "field",
|
|
9480
|
+
"name": "controlAriaLabel",
|
|
9481
|
+
"type": {
|
|
9482
|
+
"text": "string | null"
|
|
9483
|
+
},
|
|
9484
|
+
"default": "null",
|
|
9485
|
+
"description": "Adds an accessible label to selectable box",
|
|
9486
|
+
"privacy": "public"
|
|
9487
|
+
},
|
|
9488
|
+
{
|
|
9489
|
+
"kind": "field",
|
|
9490
|
+
"name": "controlAriaLabelledby",
|
|
9491
|
+
"type": {
|
|
9492
|
+
"text": "string | null"
|
|
9493
|
+
},
|
|
9494
|
+
"default": "null",
|
|
9495
|
+
"description": "Links a piece of content as an accessible label",
|
|
9496
|
+
"privacy": "public"
|
|
9497
|
+
},
|
|
9498
|
+
{
|
|
9499
|
+
"kind": "field",
|
|
9500
|
+
"name": "controlType",
|
|
9501
|
+
"type": {
|
|
9502
|
+
"text": "SelectableBoxControlType | undefined"
|
|
9503
|
+
},
|
|
9504
|
+
"description": "The type of control the box should have: checkbox or radio.",
|
|
9505
|
+
"privacy": "public"
|
|
9506
|
+
},
|
|
9507
|
+
{
|
|
9508
|
+
"kind": "field",
|
|
9509
|
+
"name": "tight",
|
|
9510
|
+
"type": {
|
|
9511
|
+
"text": "boolean"
|
|
9512
|
+
},
|
|
9513
|
+
"default": "false",
|
|
9514
|
+
"description": "Removes the padding around the box's slot content",
|
|
9515
|
+
"privacy": "public"
|
|
9516
|
+
}
|
|
9517
|
+
],
|
|
9518
|
+
"events": [
|
|
9519
|
+
{
|
|
9520
|
+
"description": "Fired when the checked state changes",
|
|
9521
|
+
"name": "change"
|
|
9522
|
+
}
|
|
9523
|
+
],
|
|
9524
|
+
"attributes": [
|
|
9525
|
+
{
|
|
9526
|
+
"type": {
|
|
9527
|
+
"text": "boolean"
|
|
9528
|
+
},
|
|
9529
|
+
"default": "false",
|
|
9530
|
+
"description": "Controls the checked state of the box",
|
|
9531
|
+
"fieldName": "checked"
|
|
9532
|
+
},
|
|
9533
|
+
{
|
|
9534
|
+
"type": {
|
|
9535
|
+
"text": "boolean"
|
|
9536
|
+
},
|
|
9537
|
+
"default": "false",
|
|
9538
|
+
"description": "Makes the whole selectable box clickable",
|
|
9539
|
+
"fieldName": "clickable"
|
|
9540
|
+
},
|
|
9541
|
+
{
|
|
9542
|
+
"name": "connotation",
|
|
9543
|
+
"type": {
|
|
9544
|
+
"text": "SelectableBoxConnotation | undefined"
|
|
9545
|
+
},
|
|
9546
|
+
"description": "The connotation the selectable box should have.",
|
|
9547
|
+
"fieldName": "connotation"
|
|
9548
|
+
},
|
|
9549
|
+
{
|
|
9550
|
+
"name": "control-aria-label",
|
|
9551
|
+
"type": {
|
|
9552
|
+
"text": "string | null"
|
|
9553
|
+
},
|
|
9554
|
+
"default": "null",
|
|
9555
|
+
"description": "Adds an accessible label to selectable box",
|
|
9556
|
+
"fieldName": "controlAriaLabel"
|
|
9557
|
+
},
|
|
9558
|
+
{
|
|
9559
|
+
"name": "control-aria-labelledby",
|
|
9560
|
+
"type": {
|
|
9561
|
+
"text": "string | null"
|
|
9562
|
+
},
|
|
9563
|
+
"default": "null",
|
|
9564
|
+
"description": "Links a piece of content as an accessible label",
|
|
9565
|
+
"fieldName": "controlAriaLabelledby"
|
|
9566
|
+
},
|
|
9567
|
+
{
|
|
9568
|
+
"name": "control-type",
|
|
9569
|
+
"type": {
|
|
9570
|
+
"text": "SelectableBoxControlType | undefined"
|
|
9571
|
+
},
|
|
9572
|
+
"description": "The type of control the box should have: checkbox or radio.",
|
|
9573
|
+
"fieldName": "controlType"
|
|
9574
|
+
},
|
|
9575
|
+
{
|
|
9576
|
+
"type": {
|
|
9577
|
+
"text": "boolean"
|
|
9578
|
+
},
|
|
9579
|
+
"default": "false",
|
|
9580
|
+
"description": "Removes the padding around the box's slot content",
|
|
9581
|
+
"fieldName": "tight"
|
|
9582
|
+
}
|
|
9583
|
+
],
|
|
9584
|
+
"superclass": {
|
|
9585
|
+
"name": "FoundationElement",
|
|
9586
|
+
"package": "@microsoft/fast-foundation"
|
|
9587
|
+
}
|
|
9588
|
+
}
|
|
9589
|
+
],
|
|
9590
|
+
"exports": [
|
|
9591
|
+
{
|
|
9592
|
+
"kind": "js",
|
|
9593
|
+
"name": "SelectableBox",
|
|
9594
|
+
"declaration": {
|
|
9595
|
+
"name": "SelectableBox",
|
|
9596
|
+
"module": "libs/components/src/lib/selectable-box/selectable-box.ts"
|
|
9597
|
+
}
|
|
9598
|
+
}
|
|
9599
|
+
]
|
|
9600
|
+
},
|
|
8645
9601
|
{
|
|
8646
9602
|
"kind": "javascript-module",
|
|
8647
9603
|
"path": "libs/components/src/lib/side-drawer/definition.ts",
|
|
@@ -8843,6 +9799,14 @@
|
|
|
8843
9799
|
}
|
|
8844
9800
|
],
|
|
8845
9801
|
"exports": [
|
|
9802
|
+
{
|
|
9803
|
+
"kind": "js",
|
|
9804
|
+
"name": "SliderConnotation",
|
|
9805
|
+
"declaration": {
|
|
9806
|
+
"name": "SliderConnotation",
|
|
9807
|
+
"module": "./slider"
|
|
9808
|
+
}
|
|
9809
|
+
},
|
|
8846
9810
|
{
|
|
8847
9811
|
"kind": "js",
|
|
8848
9812
|
"name": "sliderDefinition",
|
|
@@ -8869,7 +9833,33 @@
|
|
|
8869
9833
|
"kind": "class",
|
|
8870
9834
|
"description": "Base class for slider",
|
|
8871
9835
|
"name": "Slider",
|
|
9836
|
+
"cssProperties": [
|
|
9837
|
+
{
|
|
9838
|
+
"name": "--vvd-slider-cta-primary",
|
|
9839
|
+
"default": "var(--vvd-color-cta-500)"
|
|
9840
|
+
},
|
|
9841
|
+
{
|
|
9842
|
+
"name": "--vvd-slider-accent-primary",
|
|
9843
|
+
"default": "var(--vvd-color-canvas-text)"
|
|
9844
|
+
}
|
|
9845
|
+
],
|
|
8872
9846
|
"members": [
|
|
9847
|
+
{
|
|
9848
|
+
"kind": "field",
|
|
9849
|
+
"name": "ariaLabel",
|
|
9850
|
+
"type": {
|
|
9851
|
+
"text": "string | null"
|
|
9852
|
+
},
|
|
9853
|
+
"default": "null"
|
|
9854
|
+
},
|
|
9855
|
+
{
|
|
9856
|
+
"kind": "field",
|
|
9857
|
+
"name": "ariaValuetext",
|
|
9858
|
+
"type": {
|
|
9859
|
+
"text": "string | null"
|
|
9860
|
+
},
|
|
9861
|
+
"default": "null"
|
|
9862
|
+
},
|
|
8873
9863
|
{
|
|
8874
9864
|
"kind": "field",
|
|
8875
9865
|
"name": "markers",
|
|
@@ -8879,9 +9869,34 @@
|
|
|
8879
9869
|
"default": "false",
|
|
8880
9870
|
"description": "Display markers on/off",
|
|
8881
9871
|
"privacy": "public"
|
|
9872
|
+
},
|
|
9873
|
+
{
|
|
9874
|
+
"kind": "field",
|
|
9875
|
+
"name": "connotation",
|
|
9876
|
+
"type": {
|
|
9877
|
+
"text": "SliderConnotation | undefined"
|
|
9878
|
+
},
|
|
9879
|
+
"description": "slider connotation",
|
|
9880
|
+
"privacy": "public"
|
|
8882
9881
|
}
|
|
8883
9882
|
],
|
|
8884
9883
|
"attributes": [
|
|
9884
|
+
{
|
|
9885
|
+
"name": "aria-label",
|
|
9886
|
+
"type": {
|
|
9887
|
+
"text": "string | null"
|
|
9888
|
+
},
|
|
9889
|
+
"default": "null",
|
|
9890
|
+
"fieldName": "ariaLabel"
|
|
9891
|
+
},
|
|
9892
|
+
{
|
|
9893
|
+
"name": "aria-valuetext",
|
|
9894
|
+
"type": {
|
|
9895
|
+
"text": "string | null"
|
|
9896
|
+
},
|
|
9897
|
+
"default": "null",
|
|
9898
|
+
"fieldName": "ariaValuetext"
|
|
9899
|
+
},
|
|
8885
9900
|
{
|
|
8886
9901
|
"type": {
|
|
8887
9902
|
"text": "boolean"
|
|
@@ -8889,6 +9904,14 @@
|
|
|
8889
9904
|
"default": "false",
|
|
8890
9905
|
"description": "Display markers on/off",
|
|
8891
9906
|
"fieldName": "markers"
|
|
9907
|
+
},
|
|
9908
|
+
{
|
|
9909
|
+
"name": "connotation",
|
|
9910
|
+
"type": {
|
|
9911
|
+
"text": "SliderConnotation | undefined"
|
|
9912
|
+
},
|
|
9913
|
+
"description": "slider connotation",
|
|
9914
|
+
"fieldName": "connotation"
|
|
8892
9915
|
}
|
|
8893
9916
|
],
|
|
8894
9917
|
"superclass": {
|
|
@@ -10627,6 +11650,14 @@
|
|
|
10627
11650
|
},
|
|
10628
11651
|
"description": "The wrap attribute",
|
|
10629
11652
|
"privacy": "public"
|
|
11653
|
+
},
|
|
11654
|
+
{
|
|
11655
|
+
"kind": "field",
|
|
11656
|
+
"name": "#reflectToTextArea",
|
|
11657
|
+
"privacy": "private",
|
|
11658
|
+
"type": {
|
|
11659
|
+
"text": "Reflector<this, HTMLTextAreaElement> | undefined"
|
|
11660
|
+
}
|
|
10630
11661
|
}
|
|
10631
11662
|
],
|
|
10632
11663
|
"attributes": [
|
|
@@ -10832,6 +11863,30 @@
|
|
|
10832
11863
|
"type": {
|
|
10833
11864
|
"text": "HTMLElement[] | undefined"
|
|
10834
11865
|
}
|
|
11866
|
+
},
|
|
11867
|
+
{
|
|
11868
|
+
"kind": "method",
|
|
11869
|
+
"name": "#handleLabelChange",
|
|
11870
|
+
"parameters": [
|
|
11871
|
+
{
|
|
11872
|
+
"name": "labelEl",
|
|
11873
|
+
"type": {
|
|
11874
|
+
"text": "HTMLLabelElement"
|
|
11875
|
+
}
|
|
11876
|
+
}
|
|
11877
|
+
]
|
|
11878
|
+
},
|
|
11879
|
+
{
|
|
11880
|
+
"kind": "field",
|
|
11881
|
+
"name": "#reflectToInput",
|
|
11882
|
+
"privacy": "private",
|
|
11883
|
+
"type": {
|
|
11884
|
+
"text": "Reflector<this, HTMLInputElement> | undefined"
|
|
11885
|
+
}
|
|
11886
|
+
},
|
|
11887
|
+
{
|
|
11888
|
+
"kind": "method",
|
|
11889
|
+
"name": "focus"
|
|
10835
11890
|
}
|
|
10836
11891
|
],
|
|
10837
11892
|
"attributes": [
|
|
@@ -11567,6 +12622,250 @@
|
|
|
11567
12622
|
}
|
|
11568
12623
|
}
|
|
11569
12624
|
]
|
|
12625
|
+
},
|
|
12626
|
+
{
|
|
12627
|
+
"kind": "javascript-module",
|
|
12628
|
+
"path": "libs/components/src/shared/date-picker/date-picker-base.ts",
|
|
12629
|
+
"declarations": [
|
|
12630
|
+
{
|
|
12631
|
+
"kind": "class",
|
|
12632
|
+
"description": "Base class for date-picker",
|
|
12633
|
+
"name": "DatePickerBase",
|
|
12634
|
+
"cssProperties": [
|
|
12635
|
+
{
|
|
12636
|
+
"name": "--vvd-date-picker-accent-primary",
|
|
12637
|
+
"default": "var(--vvd-color-canvas-text)"
|
|
12638
|
+
},
|
|
12639
|
+
{
|
|
12640
|
+
"name": "--vvd-date-picker-accent-faint",
|
|
12641
|
+
"default": "var(--vvd-color-neutral-50)"
|
|
12642
|
+
},
|
|
12643
|
+
{
|
|
12644
|
+
"name": "--vvd-date-picker-accent-soft",
|
|
12645
|
+
"default": "var(--vvd-color-neutral-100)"
|
|
12646
|
+
},
|
|
12647
|
+
{
|
|
12648
|
+
"name": "--vvd-date-picker-accent-dim",
|
|
12649
|
+
"default": "var(--vvd-color-neutral-200)"
|
|
12650
|
+
},
|
|
12651
|
+
{
|
|
12652
|
+
"name": "--vvd-date-picker-accent-pale",
|
|
12653
|
+
"default": "var(--vvd-color-neutral-300)"
|
|
12654
|
+
}
|
|
12655
|
+
],
|
|
12656
|
+
"members": [
|
|
12657
|
+
{
|
|
12658
|
+
"kind": "field",
|
|
12659
|
+
"name": "label",
|
|
12660
|
+
"type": {
|
|
12661
|
+
"text": "string"
|
|
12662
|
+
}
|
|
12663
|
+
},
|
|
12664
|
+
{
|
|
12665
|
+
"kind": "field",
|
|
12666
|
+
"name": "min",
|
|
12667
|
+
"type": {
|
|
12668
|
+
"text": "string"
|
|
12669
|
+
},
|
|
12670
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
12671
|
+
"privacy": "public",
|
|
12672
|
+
"default": "''"
|
|
12673
|
+
},
|
|
12674
|
+
{
|
|
12675
|
+
"kind": "field",
|
|
12676
|
+
"name": "max",
|
|
12677
|
+
"type": {
|
|
12678
|
+
"text": "string"
|
|
12679
|
+
},
|
|
12680
|
+
"description": "The latest accepted date of the date-picker.",
|
|
12681
|
+
"privacy": "public",
|
|
12682
|
+
"default": "''"
|
|
12683
|
+
},
|
|
12684
|
+
{
|
|
12685
|
+
"kind": "field",
|
|
12686
|
+
"name": "initialValue",
|
|
12687
|
+
"type": {
|
|
12688
|
+
"text": "string"
|
|
12689
|
+
},
|
|
12690
|
+
"description": "The initial value of the date-picker.",
|
|
12691
|
+
"privacy": "public"
|
|
12692
|
+
},
|
|
12693
|
+
{
|
|
12694
|
+
"kind": "field",
|
|
12695
|
+
"name": "currentValue",
|
|
12696
|
+
"type": {
|
|
12697
|
+
"text": "string"
|
|
12698
|
+
},
|
|
12699
|
+
"description": "The current value of the date-picker.",
|
|
12700
|
+
"privacy": "public"
|
|
12701
|
+
},
|
|
12702
|
+
{
|
|
12703
|
+
"kind": "field",
|
|
12704
|
+
"name": "readOnly",
|
|
12705
|
+
"type": {
|
|
12706
|
+
"text": "boolean"
|
|
12707
|
+
},
|
|
12708
|
+
"default": "false",
|
|
12709
|
+
"description": "Whether the date-picker is readonly.",
|
|
12710
|
+
"privacy": "public"
|
|
12711
|
+
},
|
|
12712
|
+
{
|
|
12713
|
+
"kind": "method",
|
|
12714
|
+
"name": "#getFocusableEls"
|
|
12715
|
+
},
|
|
12716
|
+
{
|
|
12717
|
+
"kind": "method",
|
|
12718
|
+
"name": "_adjustSelectedMonthToEnsureVisibilityOf",
|
|
12719
|
+
"privacy": "protected",
|
|
12720
|
+
"parameters": [
|
|
12721
|
+
{
|
|
12722
|
+
"name": "date",
|
|
12723
|
+
"type": {
|
|
12724
|
+
"text": "DateStr"
|
|
12725
|
+
}
|
|
12726
|
+
}
|
|
12727
|
+
]
|
|
12728
|
+
},
|
|
12729
|
+
{
|
|
12730
|
+
"kind": "method",
|
|
12731
|
+
"name": "#isMonthAfterValidRange",
|
|
12732
|
+
"parameters": [
|
|
12733
|
+
{
|
|
12734
|
+
"name": "month",
|
|
12735
|
+
"type": {
|
|
12736
|
+
"text": "Month"
|
|
12737
|
+
}
|
|
12738
|
+
}
|
|
12739
|
+
]
|
|
12740
|
+
},
|
|
12741
|
+
{
|
|
12742
|
+
"kind": "method",
|
|
12743
|
+
"name": "#isMonthBeforeValidRange",
|
|
12744
|
+
"parameters": [
|
|
12745
|
+
{
|
|
12746
|
+
"name": "month",
|
|
12747
|
+
"type": {
|
|
12748
|
+
"text": "Month"
|
|
12749
|
+
}
|
|
12750
|
+
}
|
|
12751
|
+
]
|
|
12752
|
+
},
|
|
12753
|
+
{
|
|
12754
|
+
"kind": "field",
|
|
12755
|
+
"name": "#onFocusIn",
|
|
12756
|
+
"privacy": "private"
|
|
12757
|
+
},
|
|
12758
|
+
{
|
|
12759
|
+
"kind": "field",
|
|
12760
|
+
"name": "#onFocusOut",
|
|
12761
|
+
"privacy": "private"
|
|
12762
|
+
},
|
|
12763
|
+
{
|
|
12764
|
+
"kind": "method",
|
|
12765
|
+
"name": "_getCustomValidationError",
|
|
12766
|
+
"privacy": "protected",
|
|
12767
|
+
"return": {
|
|
12768
|
+
"type": {
|
|
12769
|
+
"text": "string | null"
|
|
12770
|
+
}
|
|
12771
|
+
}
|
|
12772
|
+
},
|
|
12773
|
+
{
|
|
12774
|
+
"kind": "field",
|
|
12775
|
+
"name": "#dismissOnClickOutside",
|
|
12776
|
+
"privacy": "private"
|
|
12777
|
+
},
|
|
12778
|
+
{
|
|
12779
|
+
"kind": "field",
|
|
12780
|
+
"name": "#isClosingPopup",
|
|
12781
|
+
"privacy": "private",
|
|
12782
|
+
"type": {
|
|
12783
|
+
"text": "boolean"
|
|
12784
|
+
},
|
|
12785
|
+
"default": "false"
|
|
12786
|
+
},
|
|
12787
|
+
{
|
|
12788
|
+
"kind": "method",
|
|
12789
|
+
"name": "#openPopupIfPossible"
|
|
12790
|
+
},
|
|
12791
|
+
{
|
|
12792
|
+
"kind": "method",
|
|
12793
|
+
"name": "_getSelectedDates",
|
|
12794
|
+
"privacy": "protected",
|
|
12795
|
+
"return": {
|
|
12796
|
+
"type": {
|
|
12797
|
+
"text": "DateStr[]"
|
|
12798
|
+
}
|
|
12799
|
+
}
|
|
12800
|
+
},
|
|
12801
|
+
{
|
|
12802
|
+
"kind": "field",
|
|
12803
|
+
"name": "value",
|
|
12804
|
+
"type": {
|
|
12805
|
+
"text": "string"
|
|
12806
|
+
},
|
|
12807
|
+
"default": "''"
|
|
12808
|
+
}
|
|
12809
|
+
],
|
|
12810
|
+
"attributes": [
|
|
12811
|
+
{
|
|
12812
|
+
"type": {
|
|
12813
|
+
"text": "string"
|
|
12814
|
+
},
|
|
12815
|
+
"description": "The earliest accepted date of the date-picker.",
|
|
12816
|
+
"default": "''",
|
|
12817
|
+
"fieldName": "min"
|
|
12818
|
+
},
|
|
12819
|
+
{
|
|
12820
|
+
"type": {
|
|
12821
|
+
"text": "string"
|
|
12822
|
+
},
|
|
12823
|
+
"description": "The latest accepted date of the date-picker.",
|
|
12824
|
+
"default": "''",
|
|
12825
|
+
"fieldName": "max"
|
|
12826
|
+
},
|
|
12827
|
+
{
|
|
12828
|
+
"name": "value",
|
|
12829
|
+
"type": {
|
|
12830
|
+
"text": "string"
|
|
12831
|
+
},
|
|
12832
|
+
"description": "The initial value of the date-picker.",
|
|
12833
|
+
"fieldName": "initialValue"
|
|
12834
|
+
},
|
|
12835
|
+
{
|
|
12836
|
+
"name": "current-value",
|
|
12837
|
+
"type": {
|
|
12838
|
+
"text": "string"
|
|
12839
|
+
},
|
|
12840
|
+
"description": "The current value of the date-picker.",
|
|
12841
|
+
"fieldName": "currentValue"
|
|
12842
|
+
},
|
|
12843
|
+
{
|
|
12844
|
+
"name": "readonly",
|
|
12845
|
+
"type": {
|
|
12846
|
+
"text": "boolean"
|
|
12847
|
+
},
|
|
12848
|
+
"default": "false",
|
|
12849
|
+
"description": "Whether the date-picker is readonly.",
|
|
12850
|
+
"fieldName": "readOnly"
|
|
12851
|
+
}
|
|
12852
|
+
],
|
|
12853
|
+
"superclass": {
|
|
12854
|
+
"name": "FormAssociatedDatePickerBase",
|
|
12855
|
+
"module": "/libs/components/src/shared/date-picker/date-picker-base.form-associated"
|
|
12856
|
+
}
|
|
12857
|
+
}
|
|
12858
|
+
],
|
|
12859
|
+
"exports": [
|
|
12860
|
+
{
|
|
12861
|
+
"kind": "js",
|
|
12862
|
+
"name": "DatePickerBase",
|
|
12863
|
+
"declaration": {
|
|
12864
|
+
"name": "DatePickerBase",
|
|
12865
|
+
"module": "libs/components/src/shared/date-picker/date-picker-base.ts"
|
|
12866
|
+
}
|
|
12867
|
+
}
|
|
12868
|
+
]
|
|
11570
12869
|
}
|
|
11571
12870
|
]
|
|
11572
12871
|
}
|