@tylertech/forge 3.3.5 → 3.3.6
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/custom-elements.json +340 -71
- package/dist/app-bar/forge-app-bar.css +0 -16
- package/dist/field/forge-field.css +4 -17
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +3 -3
- package/dist/vscode.html-custom-data.json +153 -22
- package/esm/autocomplete/autocomplete-adapter.js +2 -1
- package/esm/calendar/calendar-dropdown/calendar-dropdown.js +1 -1
- package/esm/checkbox/checkbox.d.ts +3 -3
- package/esm/chip-field/chip-field.js +1 -1
- package/esm/dialog/dialog-core.d.ts +1 -0
- package/esm/dialog/dialog-core.js +10 -6
- package/esm/dialog/dialog.d.ts +4 -4
- package/esm/field/base/with-base-field.js +2 -2
- package/esm/field/field-adapter.d.ts +4 -4
- package/esm/field/field-adapter.js +4 -12
- package/esm/field/field-constants.d.ts +1 -0
- package/esm/field/field-constants.js +2 -1
- package/esm/field/field-core.d.ts +2 -0
- package/esm/field/field-core.js +13 -3
- package/esm/field/field.d.ts +1 -0
- package/esm/field/field.js +3 -2
- package/esm/icon/icon.d.ts +26 -9
- package/esm/icon/icon.js +3 -2
- package/esm/label/label.d.ts +1 -1
- package/esm/popover/popover-adapter.js +5 -0
- package/esm/radio/radio/radio.d.ts +2 -2
- package/esm/select/core/base-select-adapter.js +5 -0
- package/esm/skip-link/skip-link.d.ts +1 -1
- package/esm/skip-link/skip-link.js +1 -1
- package/esm/switch/switch.d.ts +2 -2
- package/esm/time-picker/time-picker-adapter.d.ts +2 -2
- package/esm/time-picker/time-picker-adapter.js +44 -30
- package/esm/time-picker/time-picker-core.js +1 -1
- package/esm/time-picker/time-picker.d.ts +125 -28
- package/esm/time-picker/time-picker.js +0 -27
- package/esm/view-switcher/view-switcher.d.ts +1 -1
- package/package.json +4 -4
- package/sass/core/styles/_utils.scss +1 -1
- package/sass/core/styles/theme/_utils.scss +1 -1
- package/sass/core/styles/tokens/list/list/_tokens.scss +2 -1
- package/sass/field/_core.animation.scss +0 -20
- package/sass/field/_core.layout.scss +3 -8
- package/sass/field/_core.scss +1 -0
- package/sass/field/_core.slotted.scss +4 -8
- package/sass/field/field.scss +8 -8
- package/sass/radio/index.scss +1 -1
package/custom-elements.json
CHANGED
|
@@ -3425,7 +3425,7 @@
|
|
|
3425
3425
|
"privacy": "public",
|
|
3426
3426
|
"description": "Gets/sets whether the checkbox is checked by default.",
|
|
3427
3427
|
"default": "false",
|
|
3428
|
-
"attribute": "
|
|
3428
|
+
"attribute": "default-checked"
|
|
3429
3429
|
},
|
|
3430
3430
|
{
|
|
3431
3431
|
"kind": "field",
|
|
@@ -3510,7 +3510,7 @@
|
|
|
3510
3510
|
"privacy": "public",
|
|
3511
3511
|
"description": "Controls whether the label appears before or after the checkbox.",
|
|
3512
3512
|
"default": "'end'",
|
|
3513
|
-
"attribute": "
|
|
3513
|
+
"attribute": "label-position"
|
|
3514
3514
|
},
|
|
3515
3515
|
{
|
|
3516
3516
|
"kind": "method",
|
|
@@ -3566,7 +3566,7 @@
|
|
|
3566
3566
|
"fieldName": "checked"
|
|
3567
3567
|
},
|
|
3568
3568
|
{
|
|
3569
|
-
"name": "
|
|
3569
|
+
"name": "default-checked",
|
|
3570
3570
|
"type": {
|
|
3571
3571
|
"text": "boolean"
|
|
3572
3572
|
},
|
|
@@ -3629,7 +3629,7 @@
|
|
|
3629
3629
|
"fieldName": "readonly"
|
|
3630
3630
|
},
|
|
3631
3631
|
{
|
|
3632
|
-
"name": "
|
|
3632
|
+
"name": "label-position",
|
|
3633
3633
|
"type": {
|
|
3634
3634
|
"text": "CheckboxLabelPosition"
|
|
3635
3635
|
},
|
|
@@ -6902,7 +6902,7 @@
|
|
|
6902
6902
|
"privacy": "public",
|
|
6903
6903
|
"description": "The animation type of the dialog.",
|
|
6904
6904
|
"default": "'zoom'",
|
|
6905
|
-
"attribute": "
|
|
6905
|
+
"attribute": "animation-type"
|
|
6906
6906
|
},
|
|
6907
6907
|
{
|
|
6908
6908
|
"kind": "field",
|
|
@@ -6946,7 +6946,7 @@
|
|
|
6946
6946
|
"privacy": "public",
|
|
6947
6947
|
"description": "The screen width at which the dialog will switch to fullscreen.",
|
|
6948
6948
|
"default": "599",
|
|
6949
|
-
"attribute": "
|
|
6949
|
+
"attribute": "fullscreen-threshold"
|
|
6950
6950
|
},
|
|
6951
6951
|
{
|
|
6952
6952
|
"kind": "field",
|
|
@@ -6989,7 +6989,7 @@
|
|
|
6989
6989
|
"privacy": "public",
|
|
6990
6990
|
"description": "Controls whether the dialog is rendered relative to the viewport or its nearest containing block.",
|
|
6991
6991
|
"default": "'viewport'",
|
|
6992
|
-
"attribute": "
|
|
6992
|
+
"attribute": "position-strategy"
|
|
6993
6993
|
},
|
|
6994
6994
|
{
|
|
6995
6995
|
"kind": "field",
|
|
@@ -7000,7 +7000,7 @@
|
|
|
7000
7000
|
"privacy": "public",
|
|
7001
7001
|
"description": "Controls the block and/or inline size of the dialog. Defaults to the size of the content it contains.",
|
|
7002
7002
|
"default": "'content'",
|
|
7003
|
-
"attribute": "
|
|
7003
|
+
"attribute": "size-strategy"
|
|
7004
7004
|
},
|
|
7005
7005
|
{
|
|
7006
7006
|
"kind": "field",
|
|
@@ -7116,7 +7116,7 @@
|
|
|
7116
7116
|
"fieldName": "type"
|
|
7117
7117
|
},
|
|
7118
7118
|
{
|
|
7119
|
-
"name": "
|
|
7119
|
+
"name": "animation-type",
|
|
7120
7120
|
"type": {
|
|
7121
7121
|
"text": "DialogAnimationType"
|
|
7122
7122
|
},
|
|
@@ -7152,7 +7152,7 @@
|
|
|
7152
7152
|
"fieldName": "fullscreen"
|
|
7153
7153
|
},
|
|
7154
7154
|
{
|
|
7155
|
-
"name": "
|
|
7155
|
+
"name": "fullscreen-threshold",
|
|
7156
7156
|
"type": {
|
|
7157
7157
|
"text": "number"
|
|
7158
7158
|
},
|
|
@@ -7179,7 +7179,7 @@
|
|
|
7179
7179
|
"fieldName": "moveable"
|
|
7180
7180
|
},
|
|
7181
7181
|
{
|
|
7182
|
-
"name": "
|
|
7182
|
+
"name": "position-strategy",
|
|
7183
7183
|
"type": {
|
|
7184
7184
|
"text": "DialogPositionStrategy"
|
|
7185
7185
|
},
|
|
@@ -7188,7 +7188,7 @@
|
|
|
7188
7188
|
"fieldName": "positionStrategy"
|
|
7189
7189
|
},
|
|
7190
7190
|
{
|
|
7191
|
-
"name": "
|
|
7191
|
+
"name": "size-strategy",
|
|
7192
7192
|
"type": {
|
|
7193
7193
|
"text": "DialogSizeStrategy"
|
|
7194
7194
|
},
|
|
@@ -8058,6 +8058,13 @@
|
|
|
8058
8058
|
},
|
|
8059
8059
|
"description": "Dispatches when the user clicks the popover icon.",
|
|
8060
8060
|
"name": "forge-field-popover-icon-click"
|
|
8061
|
+
},
|
|
8062
|
+
{
|
|
8063
|
+
"type": {
|
|
8064
|
+
"text": "CustomEvent<void>"
|
|
8065
|
+
},
|
|
8066
|
+
"description": "Dispatches when the user presses the mouse button over the popover icon. Cancelable to prevent focus loss.",
|
|
8067
|
+
"name": "forge-field-popover-icon-mousedown"
|
|
8061
8068
|
}
|
|
8062
8069
|
],
|
|
8063
8070
|
"attributes": [
|
|
@@ -9670,6 +9677,7 @@
|
|
|
9670
9677
|
},
|
|
9671
9678
|
"privacy": "public",
|
|
9672
9679
|
"description": "The type of icon to load externally. Possible values: \"standard\" (default), \"extended\", \"custom\".",
|
|
9680
|
+
"attribute": "external-type",
|
|
9673
9681
|
"default": "\"standard\""
|
|
9674
9682
|
},
|
|
9675
9683
|
{
|
|
@@ -9679,7 +9687,8 @@
|
|
|
9679
9687
|
"text": "IconUrlBuilder"
|
|
9680
9688
|
},
|
|
9681
9689
|
"privacy": "public",
|
|
9682
|
-
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon."
|
|
9690
|
+
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon.",
|
|
9691
|
+
"attribute": "external-url-builder"
|
|
9683
9692
|
},
|
|
9684
9693
|
{
|
|
9685
9694
|
"kind": "field",
|
|
@@ -9712,6 +9721,22 @@
|
|
|
9712
9721
|
}
|
|
9713
9722
|
],
|
|
9714
9723
|
"attributes": [
|
|
9724
|
+
{
|
|
9725
|
+
"name": "external-type",
|
|
9726
|
+
"type": {
|
|
9727
|
+
"text": "IconExternalType"
|
|
9728
|
+
},
|
|
9729
|
+
"description": "The type of icon to load externally. Possible values: \"standard\", \"extended\", \"custom\".",
|
|
9730
|
+
"fieldName": "externalType"
|
|
9731
|
+
},
|
|
9732
|
+
{
|
|
9733
|
+
"name": "external-url-builder",
|
|
9734
|
+
"type": {
|
|
9735
|
+
"text": "IconUrlBuilder"
|
|
9736
|
+
},
|
|
9737
|
+
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon.",
|
|
9738
|
+
"fieldName": "externalUrlBuilder"
|
|
9739
|
+
},
|
|
9715
9740
|
{
|
|
9716
9741
|
"type": {
|
|
9717
9742
|
"text": "string"
|
|
@@ -9742,14 +9767,6 @@
|
|
|
9742
9767
|
"name": "external",
|
|
9743
9768
|
"default": "false"
|
|
9744
9769
|
},
|
|
9745
|
-
{
|
|
9746
|
-
"type": {
|
|
9747
|
-
"text": "IconExternalType"
|
|
9748
|
-
},
|
|
9749
|
-
"description": "The type of icon to load externally. Possible values: \"standard\" (default), \"extended\", \"custom\".",
|
|
9750
|
-
"name": "externalType",
|
|
9751
|
-
"default": "\"standard\""
|
|
9752
|
-
},
|
|
9753
9770
|
{
|
|
9754
9771
|
"type": {
|
|
9755
9772
|
"text": "string"
|
|
@@ -10899,7 +10916,7 @@
|
|
|
10899
10916
|
"privacy": "public",
|
|
10900
10917
|
"description": "Removes click handling from the label.",
|
|
10901
10918
|
"default": "false",
|
|
10902
|
-
"attribute": "
|
|
10919
|
+
"attribute": "non-interactive"
|
|
10903
10920
|
},
|
|
10904
10921
|
{
|
|
10905
10922
|
"kind": "field",
|
|
@@ -10944,7 +10961,7 @@
|
|
|
10944
10961
|
"fieldName": "dynamic"
|
|
10945
10962
|
},
|
|
10946
10963
|
{
|
|
10947
|
-
"name": "
|
|
10964
|
+
"name": "non-interactive",
|
|
10948
10965
|
"type": {
|
|
10949
10966
|
"text": "boolean"
|
|
10950
10967
|
},
|
|
@@ -14879,7 +14896,7 @@
|
|
|
14879
14896
|
"privacy": "public",
|
|
14880
14897
|
"description": "Sets the skip link to skip browser navigation and scroll to the target element.",
|
|
14881
14898
|
"default": "false",
|
|
14882
|
-
"attribute": "
|
|
14899
|
+
"attribute": "skip-url-change"
|
|
14883
14900
|
},
|
|
14884
14901
|
{
|
|
14885
14902
|
"kind": "method",
|
|
@@ -14947,7 +14964,7 @@
|
|
|
14947
14964
|
"fieldName": "inline"
|
|
14948
14965
|
},
|
|
14949
14966
|
{
|
|
14950
|
-
"name": "
|
|
14967
|
+
"name": "skip-url-change",
|
|
14951
14968
|
"type": {
|
|
14952
14969
|
"text": "boolean"
|
|
14953
14970
|
},
|
|
@@ -16451,7 +16468,7 @@
|
|
|
16451
16468
|
"privacy": "public",
|
|
16452
16469
|
"description": "Gets/sets whether the switch is on or off by default.",
|
|
16453
16470
|
"default": "false",
|
|
16454
|
-
"attribute": "
|
|
16471
|
+
"attribute": "default-on"
|
|
16455
16472
|
},
|
|
16456
16473
|
{
|
|
16457
16474
|
"kind": "field",
|
|
@@ -16536,7 +16553,7 @@
|
|
|
16536
16553
|
"privacy": "public",
|
|
16537
16554
|
"description": "Controls whether the label appears before or after the switch.",
|
|
16538
16555
|
"default": "'end'",
|
|
16539
|
-
"attribute": "
|
|
16556
|
+
"attribute": "label-position"
|
|
16540
16557
|
},
|
|
16541
16558
|
{
|
|
16542
16559
|
"kind": "method",
|
|
@@ -16609,7 +16626,7 @@
|
|
|
16609
16626
|
"fieldName": "selected"
|
|
16610
16627
|
},
|
|
16611
16628
|
{
|
|
16612
|
-
"name": "
|
|
16629
|
+
"name": "default-on",
|
|
16613
16630
|
"type": {
|
|
16614
16631
|
"text": "boolean"
|
|
16615
16632
|
},
|
|
@@ -16672,7 +16689,7 @@
|
|
|
16672
16689
|
"fieldName": "icon"
|
|
16673
16690
|
},
|
|
16674
16691
|
{
|
|
16675
|
-
"name": "
|
|
16692
|
+
"name": "label-position",
|
|
16676
16693
|
"type": {
|
|
16677
16694
|
"text": "SwitchLabelPosition"
|
|
16678
16695
|
},
|
|
@@ -18742,7 +18759,8 @@
|
|
|
18742
18759
|
},
|
|
18743
18760
|
"privacy": "public",
|
|
18744
18761
|
"description": "The current value of the time picker.",
|
|
18745
|
-
"default": "undefined"
|
|
18762
|
+
"default": "undefined",
|
|
18763
|
+
"attribute": "value"
|
|
18746
18764
|
},
|
|
18747
18765
|
{
|
|
18748
18766
|
"kind": "field",
|
|
@@ -18752,7 +18770,8 @@
|
|
|
18752
18770
|
},
|
|
18753
18771
|
"privacy": "public",
|
|
18754
18772
|
"description": "Whether or not the time picker is open.",
|
|
18755
|
-
"default": "false"
|
|
18773
|
+
"default": "false",
|
|
18774
|
+
"attribute": "open"
|
|
18756
18775
|
},
|
|
18757
18776
|
{
|
|
18758
18777
|
"kind": "field",
|
|
@@ -18762,7 +18781,8 @@
|
|
|
18762
18781
|
},
|
|
18763
18782
|
"privacy": "public",
|
|
18764
18783
|
"description": "Whether or not to allow seconds in the time picker.",
|
|
18765
|
-
"default": "false"
|
|
18784
|
+
"default": "false",
|
|
18785
|
+
"attribute": "allow-seconds"
|
|
18766
18786
|
},
|
|
18767
18787
|
{
|
|
18768
18788
|
"kind": "field",
|
|
@@ -18772,7 +18792,8 @@
|
|
|
18772
18792
|
},
|
|
18773
18793
|
"privacy": "public",
|
|
18774
18794
|
"description": "Whether or not the time picker input should be masked.",
|
|
18775
|
-
"default": "false"
|
|
18795
|
+
"default": "false",
|
|
18796
|
+
"attribute": "masked"
|
|
18776
18797
|
},
|
|
18777
18798
|
{
|
|
18778
18799
|
"kind": "field",
|
|
@@ -18782,7 +18803,8 @@
|
|
|
18782
18803
|
},
|
|
18783
18804
|
"privacy": "public",
|
|
18784
18805
|
"description": "Whether or not to show the mask format in the input.",
|
|
18785
|
-
"default": "false"
|
|
18806
|
+
"default": "false",
|
|
18807
|
+
"attribute": "show-mask-format"
|
|
18786
18808
|
},
|
|
18787
18809
|
{
|
|
18788
18810
|
"kind": "field",
|
|
@@ -18792,7 +18814,8 @@
|
|
|
18792
18814
|
},
|
|
18793
18815
|
"privacy": "public",
|
|
18794
18816
|
"description": "Whether or not to use 24-hour time.",
|
|
18795
|
-
"default": "false"
|
|
18817
|
+
"default": "false",
|
|
18818
|
+
"attribute": "use-24-hour-time"
|
|
18796
18819
|
},
|
|
18797
18820
|
{
|
|
18798
18821
|
"kind": "field",
|
|
@@ -18802,7 +18825,8 @@
|
|
|
18802
18825
|
},
|
|
18803
18826
|
"privacy": "public",
|
|
18804
18827
|
"description": "Whether or not to allow invalid times.",
|
|
18805
|
-
"default": "false"
|
|
18828
|
+
"default": "false",
|
|
18829
|
+
"attribute": "allow-invalid-time"
|
|
18806
18830
|
},
|
|
18807
18831
|
{
|
|
18808
18832
|
"kind": "field",
|
|
@@ -18812,7 +18836,8 @@
|
|
|
18812
18836
|
},
|
|
18813
18837
|
"privacy": "public",
|
|
18814
18838
|
"description": "The minimum time that can be selected.",
|
|
18815
|
-
"default": "undefined"
|
|
18839
|
+
"default": "undefined",
|
|
18840
|
+
"attribute": "min"
|
|
18816
18841
|
},
|
|
18817
18842
|
{
|
|
18818
18843
|
"kind": "field",
|
|
@@ -18822,7 +18847,8 @@
|
|
|
18822
18847
|
},
|
|
18823
18848
|
"privacy": "public",
|
|
18824
18849
|
"description": "The maximum time that can be selected.",
|
|
18825
|
-
"default": "undefined"
|
|
18850
|
+
"default": "undefined",
|
|
18851
|
+
"attribute": "max"
|
|
18826
18852
|
},
|
|
18827
18853
|
{
|
|
18828
18854
|
"kind": "field",
|
|
@@ -18832,7 +18858,8 @@
|
|
|
18832
18858
|
},
|
|
18833
18859
|
"privacy": "public",
|
|
18834
18860
|
"description": "An array of times that cannot be selected.",
|
|
18835
|
-
"default": "[]"
|
|
18861
|
+
"default": "[]",
|
|
18862
|
+
"attribute": "restricted-times"
|
|
18836
18863
|
},
|
|
18837
18864
|
{
|
|
18838
18865
|
"kind": "field",
|
|
@@ -18842,7 +18869,8 @@
|
|
|
18842
18869
|
},
|
|
18843
18870
|
"privacy": "public",
|
|
18844
18871
|
"description": "The time to start the time picker at.",
|
|
18845
|
-
"default": "undefined"
|
|
18872
|
+
"default": "undefined",
|
|
18873
|
+
"attribute": "start-time"
|
|
18846
18874
|
},
|
|
18847
18875
|
{
|
|
18848
18876
|
"kind": "field",
|
|
@@ -18852,7 +18880,8 @@
|
|
|
18852
18880
|
},
|
|
18853
18881
|
"privacy": "public",
|
|
18854
18882
|
"description": "The step interval for the time picker.",
|
|
18855
|
-
"default": "undefined"
|
|
18883
|
+
"default": "undefined",
|
|
18884
|
+
"attribute": "step"
|
|
18856
18885
|
},
|
|
18857
18886
|
{
|
|
18858
18887
|
"kind": "field",
|
|
@@ -18862,7 +18891,8 @@
|
|
|
18862
18891
|
},
|
|
18863
18892
|
"privacy": "public",
|
|
18864
18893
|
"description": "Whether or not to allow manual input of the time.",
|
|
18865
|
-
"default": "false"
|
|
18894
|
+
"default": "false",
|
|
18895
|
+
"attribute": "allow-input"
|
|
18866
18896
|
},
|
|
18867
18897
|
{
|
|
18868
18898
|
"kind": "field",
|
|
@@ -18872,7 +18902,8 @@
|
|
|
18872
18902
|
},
|
|
18873
18903
|
"privacy": "public",
|
|
18874
18904
|
"description": "Whether or not to show a \"Now\" button.",
|
|
18875
|
-
"default": "false"
|
|
18905
|
+
"default": "false",
|
|
18906
|
+
"attribute": "show-now"
|
|
18876
18907
|
},
|
|
18877
18908
|
{
|
|
18878
18909
|
"kind": "field",
|
|
@@ -18882,7 +18913,8 @@
|
|
|
18882
18913
|
},
|
|
18883
18914
|
"privacy": "public",
|
|
18884
18915
|
"description": "Whether or not to display hour options in dropdown.",
|
|
18885
|
-
"default": "false"
|
|
18916
|
+
"default": "false",
|
|
18917
|
+
"attribute": "show-hour-options"
|
|
18886
18918
|
},
|
|
18887
18919
|
{
|
|
18888
18920
|
"kind": "field",
|
|
@@ -18892,7 +18924,8 @@
|
|
|
18892
18924
|
},
|
|
18893
18925
|
"privacy": "public",
|
|
18894
18926
|
"description": "An array of custom time picker options.",
|
|
18895
|
-
"default": "[]"
|
|
18927
|
+
"default": "[]",
|
|
18928
|
+
"attribute": "custom-options"
|
|
18896
18929
|
},
|
|
18897
18930
|
{
|
|
18898
18931
|
"kind": "field",
|
|
@@ -18902,7 +18935,8 @@
|
|
|
18902
18935
|
},
|
|
18903
18936
|
"privacy": "public",
|
|
18904
18937
|
"description": "A callback function to validate the time.",
|
|
18905
|
-
"default": "undefined"
|
|
18938
|
+
"default": "undefined",
|
|
18939
|
+
"attribute": "validation-callback"
|
|
18906
18940
|
},
|
|
18907
18941
|
{
|
|
18908
18942
|
"kind": "field",
|
|
@@ -18912,7 +18946,8 @@
|
|
|
18912
18946
|
},
|
|
18913
18947
|
"privacy": "public",
|
|
18914
18948
|
"description": "A callback function to parse the time.",
|
|
18915
|
-
"default": "undefined"
|
|
18949
|
+
"default": "undefined",
|
|
18950
|
+
"attribute": "parse-callback"
|
|
18916
18951
|
},
|
|
18917
18952
|
{
|
|
18918
18953
|
"kind": "field",
|
|
@@ -18922,7 +18957,8 @@
|
|
|
18922
18957
|
},
|
|
18923
18958
|
"privacy": "public",
|
|
18924
18959
|
"description": "A callback function to format the time.",
|
|
18925
|
-
"default": "undefined"
|
|
18960
|
+
"default": "undefined",
|
|
18961
|
+
"attribute": "format-callback"
|
|
18926
18962
|
},
|
|
18927
18963
|
{
|
|
18928
18964
|
"kind": "field",
|
|
@@ -18932,7 +18968,8 @@
|
|
|
18932
18968
|
},
|
|
18933
18969
|
"privacy": "public",
|
|
18934
18970
|
"description": "A callback function to coerce the time.",
|
|
18935
|
-
"default": "undefined"
|
|
18971
|
+
"default": "undefined",
|
|
18972
|
+
"attribute": "coercion-callback"
|
|
18936
18973
|
},
|
|
18937
18974
|
{
|
|
18938
18975
|
"kind": "field",
|
|
@@ -18942,7 +18979,8 @@
|
|
|
18942
18979
|
},
|
|
18943
18980
|
"privacy": "public",
|
|
18944
18981
|
"description": "A callback function to prepare the mask.",
|
|
18945
|
-
"default": "undefined"
|
|
18982
|
+
"default": "undefined",
|
|
18983
|
+
"attribute": "prepare-mask-callback"
|
|
18946
18984
|
},
|
|
18947
18985
|
{
|
|
18948
18986
|
"kind": "field",
|
|
@@ -18952,7 +18990,8 @@
|
|
|
18952
18990
|
},
|
|
18953
18991
|
"privacy": "public",
|
|
18954
18992
|
"description": "Whether or not the time picker is disabled.",
|
|
18955
|
-
"default": "false"
|
|
18993
|
+
"default": "false",
|
|
18994
|
+
"attribute": "disabled"
|
|
18956
18995
|
},
|
|
18957
18996
|
{
|
|
18958
18997
|
"kind": "field",
|
|
@@ -18962,7 +19001,8 @@
|
|
|
18962
19001
|
},
|
|
18963
19002
|
"privacy": "public",
|
|
18964
19003
|
"description": "The classes to apply to the time picker popup.",
|
|
18965
|
-
"default": "undefined"
|
|
19004
|
+
"default": "undefined",
|
|
19005
|
+
"attribute": "popup-classes"
|
|
18966
19006
|
},
|
|
18967
19007
|
{
|
|
18968
19008
|
"kind": "field",
|
|
@@ -18972,7 +19012,8 @@
|
|
|
18972
19012
|
},
|
|
18973
19013
|
"privacy": "public",
|
|
18974
19014
|
"description": "Whether or not to allow the time picker to be a dropdown.",
|
|
18975
|
-
"default": "false"
|
|
19015
|
+
"default": "false",
|
|
19016
|
+
"attribute": "allow-dropdown"
|
|
18976
19017
|
},
|
|
18977
19018
|
{
|
|
18978
19019
|
"kind": "field",
|
|
@@ -18982,7 +19023,235 @@
|
|
|
18982
19023
|
},
|
|
18983
19024
|
"privacy": "public",
|
|
18984
19025
|
"description": "The target element to attach the popup to.",
|
|
18985
|
-
"default": "undefined"
|
|
19026
|
+
"default": "undefined",
|
|
19027
|
+
"attribute": "popup-target"
|
|
19028
|
+
}
|
|
19029
|
+
],
|
|
19030
|
+
"attributes": [
|
|
19031
|
+
{
|
|
19032
|
+
"name": "value",
|
|
19033
|
+
"type": {
|
|
19034
|
+
"text": "string | null | undefined"
|
|
19035
|
+
},
|
|
19036
|
+
"description": "The current value of the time picker.",
|
|
19037
|
+
"default": "undefined",
|
|
19038
|
+
"fieldName": "value"
|
|
19039
|
+
},
|
|
19040
|
+
{
|
|
19041
|
+
"name": "open",
|
|
19042
|
+
"type": {
|
|
19043
|
+
"text": "boolean"
|
|
19044
|
+
},
|
|
19045
|
+
"description": "Whether or not the time picker is open.",
|
|
19046
|
+
"default": "false",
|
|
19047
|
+
"fieldName": "open"
|
|
19048
|
+
},
|
|
19049
|
+
{
|
|
19050
|
+
"name": "allow-seconds",
|
|
19051
|
+
"type": {
|
|
19052
|
+
"text": "boolean"
|
|
19053
|
+
},
|
|
19054
|
+
"description": "Whether or not to allow seconds in the time picker.",
|
|
19055
|
+
"default": "false",
|
|
19056
|
+
"fieldName": "allowSeconds"
|
|
19057
|
+
},
|
|
19058
|
+
{
|
|
19059
|
+
"name": "masked",
|
|
19060
|
+
"type": {
|
|
19061
|
+
"text": "boolean"
|
|
19062
|
+
},
|
|
19063
|
+
"description": "Whether or not the time picker input should be masked.",
|
|
19064
|
+
"default": "false",
|
|
19065
|
+
"fieldName": "masked"
|
|
19066
|
+
},
|
|
19067
|
+
{
|
|
19068
|
+
"name": "show-mask-format",
|
|
19069
|
+
"type": {
|
|
19070
|
+
"text": "boolean"
|
|
19071
|
+
},
|
|
19072
|
+
"description": "Whether or not to show the mask format in the input.",
|
|
19073
|
+
"default": "false",
|
|
19074
|
+
"fieldName": "showMaskFormat"
|
|
19075
|
+
},
|
|
19076
|
+
{
|
|
19077
|
+
"name": "use-24-hour-time",
|
|
19078
|
+
"type": {
|
|
19079
|
+
"text": "boolean"
|
|
19080
|
+
},
|
|
19081
|
+
"description": "Whether or not to use 24-hour time.",
|
|
19082
|
+
"default": "false",
|
|
19083
|
+
"fieldName": "use24HourTime"
|
|
19084
|
+
},
|
|
19085
|
+
{
|
|
19086
|
+
"name": "allow-invalid-time",
|
|
19087
|
+
"type": {
|
|
19088
|
+
"text": "boolean"
|
|
19089
|
+
},
|
|
19090
|
+
"description": "Whether or not to allow invalid times.",
|
|
19091
|
+
"default": "false",
|
|
19092
|
+
"fieldName": "allowInvalidTime"
|
|
19093
|
+
},
|
|
19094
|
+
{
|
|
19095
|
+
"name": "min",
|
|
19096
|
+
"type": {
|
|
19097
|
+
"text": "string | null | undefined"
|
|
19098
|
+
},
|
|
19099
|
+
"description": "The minimum time that can be selected.",
|
|
19100
|
+
"default": "undefined",
|
|
19101
|
+
"fieldName": "min"
|
|
19102
|
+
},
|
|
19103
|
+
{
|
|
19104
|
+
"name": "max",
|
|
19105
|
+
"type": {
|
|
19106
|
+
"text": "string | null | undefined"
|
|
19107
|
+
},
|
|
19108
|
+
"description": "The maximum time that can be selected.",
|
|
19109
|
+
"default": "undefined",
|
|
19110
|
+
"fieldName": "max"
|
|
19111
|
+
},
|
|
19112
|
+
{
|
|
19113
|
+
"name": "restricted-times",
|
|
19114
|
+
"type": {
|
|
19115
|
+
"text": "string[]"
|
|
19116
|
+
},
|
|
19117
|
+
"description": "An array of times that cannot be selected.",
|
|
19118
|
+
"default": "[]",
|
|
19119
|
+
"fieldName": "restrictedTimes"
|
|
19120
|
+
},
|
|
19121
|
+
{
|
|
19122
|
+
"name": "start-time",
|
|
19123
|
+
"type": {
|
|
19124
|
+
"text": "string | null | undefined"
|
|
19125
|
+
},
|
|
19126
|
+
"description": "The time to start the time picker at.",
|
|
19127
|
+
"default": "undefined",
|
|
19128
|
+
"fieldName": "startTime"
|
|
19129
|
+
},
|
|
19130
|
+
{
|
|
19131
|
+
"name": "step",
|
|
19132
|
+
"type": {
|
|
19133
|
+
"text": "number"
|
|
19134
|
+
},
|
|
19135
|
+
"description": "The step interval for the time picker.",
|
|
19136
|
+
"default": "undefined",
|
|
19137
|
+
"fieldName": "step"
|
|
19138
|
+
},
|
|
19139
|
+
{
|
|
19140
|
+
"name": "allow-input",
|
|
19141
|
+
"type": {
|
|
19142
|
+
"text": "boolean"
|
|
19143
|
+
},
|
|
19144
|
+
"description": "Whether or not to allow manual input of the time.",
|
|
19145
|
+
"default": "false",
|
|
19146
|
+
"fieldName": "allowInput"
|
|
19147
|
+
},
|
|
19148
|
+
{
|
|
19149
|
+
"name": "show-now",
|
|
19150
|
+
"type": {
|
|
19151
|
+
"text": "boolean"
|
|
19152
|
+
},
|
|
19153
|
+
"description": "Whether or not to show a \"Now\" button.",
|
|
19154
|
+
"default": "false",
|
|
19155
|
+
"fieldName": "showNow"
|
|
19156
|
+
},
|
|
19157
|
+
{
|
|
19158
|
+
"name": "show-hour-options",
|
|
19159
|
+
"type": {
|
|
19160
|
+
"text": "boolean"
|
|
19161
|
+
},
|
|
19162
|
+
"description": "Whether or not to display hour options in dropdown.",
|
|
19163
|
+
"default": "false",
|
|
19164
|
+
"fieldName": "showHourOptions"
|
|
19165
|
+
},
|
|
19166
|
+
{
|
|
19167
|
+
"name": "custom-options",
|
|
19168
|
+
"type": {
|
|
19169
|
+
"text": "ITimePickerOption[]"
|
|
19170
|
+
},
|
|
19171
|
+
"description": "An array of custom time picker options.",
|
|
19172
|
+
"default": "[]",
|
|
19173
|
+
"fieldName": "customOptions"
|
|
19174
|
+
},
|
|
19175
|
+
{
|
|
19176
|
+
"name": "validation-callback",
|
|
19177
|
+
"type": {
|
|
19178
|
+
"text": "TimePickerValidationCallback"
|
|
19179
|
+
},
|
|
19180
|
+
"description": "A callback function to validate the time.",
|
|
19181
|
+
"default": "undefined",
|
|
19182
|
+
"fieldName": "validationCallback"
|
|
19183
|
+
},
|
|
19184
|
+
{
|
|
19185
|
+
"name": "parse-callback",
|
|
19186
|
+
"type": {
|
|
19187
|
+
"text": "TimePickerParseCallback"
|
|
19188
|
+
},
|
|
19189
|
+
"description": "A callback function to parse the time.",
|
|
19190
|
+
"default": "undefined",
|
|
19191
|
+
"fieldName": "parseCallback"
|
|
19192
|
+
},
|
|
19193
|
+
{
|
|
19194
|
+
"name": "format-callback",
|
|
19195
|
+
"type": {
|
|
19196
|
+
"text": "TimePickerFormatCallback"
|
|
19197
|
+
},
|
|
19198
|
+
"description": "A callback function to format the time.",
|
|
19199
|
+
"default": "undefined",
|
|
19200
|
+
"fieldName": "formatCallback"
|
|
19201
|
+
},
|
|
19202
|
+
{
|
|
19203
|
+
"name": "coercion-callback",
|
|
19204
|
+
"type": {
|
|
19205
|
+
"text": "TimePickerCoercionCallback"
|
|
19206
|
+
},
|
|
19207
|
+
"description": "A callback function to coerce the time.",
|
|
19208
|
+
"default": "undefined",
|
|
19209
|
+
"fieldName": "coercionCallback"
|
|
19210
|
+
},
|
|
19211
|
+
{
|
|
19212
|
+
"name": "prepare-mask-callback",
|
|
19213
|
+
"type": {
|
|
19214
|
+
"text": "TimePickerPrepareMaskCallback"
|
|
19215
|
+
},
|
|
19216
|
+
"description": "A callback function to prepare the mask.",
|
|
19217
|
+
"default": "undefined",
|
|
19218
|
+
"fieldName": "prepareMaskCallback"
|
|
19219
|
+
},
|
|
19220
|
+
{
|
|
19221
|
+
"name": "disabled",
|
|
19222
|
+
"type": {
|
|
19223
|
+
"text": "boolean"
|
|
19224
|
+
},
|
|
19225
|
+
"description": "Whether or not the time picker is disabled.",
|
|
19226
|
+
"default": "false",
|
|
19227
|
+
"fieldName": "disabled"
|
|
19228
|
+
},
|
|
19229
|
+
{
|
|
19230
|
+
"name": "popup-classes",
|
|
19231
|
+
"type": {
|
|
19232
|
+
"text": "string | string[]"
|
|
19233
|
+
},
|
|
19234
|
+
"description": "The classes to apply to the time picker popup.",
|
|
19235
|
+
"default": "undefined",
|
|
19236
|
+
"fieldName": "popupClasses"
|
|
19237
|
+
},
|
|
19238
|
+
{
|
|
19239
|
+
"name": "allow-dropdown",
|
|
19240
|
+
"type": {
|
|
19241
|
+
"text": "boolean"
|
|
19242
|
+
},
|
|
19243
|
+
"description": "Whether or not to allow the time picker to be a dropdown.",
|
|
19244
|
+
"default": "false",
|
|
19245
|
+
"fieldName": "allowDropdown"
|
|
19246
|
+
},
|
|
19247
|
+
{
|
|
19248
|
+
"name": "popup-target",
|
|
19249
|
+
"type": {
|
|
19250
|
+
"text": "string"
|
|
19251
|
+
},
|
|
19252
|
+
"description": "The target element to attach the popup to.",
|
|
19253
|
+
"default": "undefined",
|
|
19254
|
+
"fieldName": "popupTarget"
|
|
18986
19255
|
}
|
|
18987
19256
|
],
|
|
18988
19257
|
"superclass": {
|
|
@@ -19994,7 +20263,7 @@
|
|
|
19994
20263
|
"privacy": "public",
|
|
19995
20264
|
"description": "Gets/sets the animation type.",
|
|
19996
20265
|
"default": "\"none\"",
|
|
19997
|
-
"attribute": "
|
|
20266
|
+
"attribute": "animation-type"
|
|
19998
20267
|
},
|
|
19999
20268
|
{
|
|
20000
20269
|
"kind": "method",
|
|
@@ -20052,7 +20321,7 @@
|
|
|
20052
20321
|
"fieldName": "index"
|
|
20053
20322
|
},
|
|
20054
20323
|
{
|
|
20055
|
-
"name": "
|
|
20324
|
+
"name": "animation-type",
|
|
20056
20325
|
"type": {
|
|
20057
20326
|
"text": "`${ViewSwitcherAnimationType}` | ViewSwitcherAnimation"
|
|
20058
20327
|
},
|
|
@@ -25352,7 +25621,7 @@
|
|
|
25352
25621
|
"privacy": "public",
|
|
25353
25622
|
"description": "Whether the label floats above the field.",
|
|
25354
25623
|
"default": "false",
|
|
25355
|
-
"attribute": "
|
|
25624
|
+
"attribute": "float-label"
|
|
25356
25625
|
},
|
|
25357
25626
|
{
|
|
25358
25627
|
"kind": "field",
|
|
@@ -25418,7 +25687,7 @@
|
|
|
25418
25687
|
"privacy": "public",
|
|
25419
25688
|
"description": "Whether the popover icon is displayed.",
|
|
25420
25689
|
"default": "false",
|
|
25421
|
-
"attribute": "
|
|
25690
|
+
"attribute": "popover-icon"
|
|
25422
25691
|
},
|
|
25423
25692
|
{
|
|
25424
25693
|
"kind": "field",
|
|
@@ -25507,7 +25776,7 @@
|
|
|
25507
25776
|
"fieldName": "disabled"
|
|
25508
25777
|
},
|
|
25509
25778
|
{
|
|
25510
|
-
"name": "
|
|
25779
|
+
"name": "float-label",
|
|
25511
25780
|
"type": {
|
|
25512
25781
|
"text": "boolean"
|
|
25513
25782
|
},
|
|
@@ -25561,7 +25830,7 @@
|
|
|
25561
25830
|
"fieldName": "dense"
|
|
25562
25831
|
},
|
|
25563
25832
|
{
|
|
25564
|
-
"name": "
|
|
25833
|
+
"name": "popover-icon",
|
|
25565
25834
|
"type": {
|
|
25566
25835
|
"text": "boolean"
|
|
25567
25836
|
},
|
|
@@ -26937,7 +27206,7 @@
|
|
|
26937
27206
|
"privacy": "public",
|
|
26938
27207
|
"description": "Gets/sets whether the radio is checked by default.",
|
|
26939
27208
|
"default": "false",
|
|
26940
|
-
"attribute": "
|
|
27209
|
+
"attribute": "default-checked"
|
|
26941
27210
|
},
|
|
26942
27211
|
{
|
|
26943
27212
|
"kind": "field",
|
|
@@ -27011,7 +27280,7 @@
|
|
|
27011
27280
|
"privacy": "public",
|
|
27012
27281
|
"description": "Controls whether the label appears before or after the radio.",
|
|
27013
27282
|
"default": "'end'",
|
|
27014
|
-
"attribute": "
|
|
27283
|
+
"attribute": "label-position"
|
|
27015
27284
|
},
|
|
27016
27285
|
{
|
|
27017
27286
|
"kind": "field",
|
|
@@ -27037,7 +27306,7 @@
|
|
|
27037
27306
|
"fieldName": "checked"
|
|
27038
27307
|
},
|
|
27039
27308
|
{
|
|
27040
|
-
"name": "
|
|
27309
|
+
"name": "default-checked",
|
|
27041
27310
|
"type": {
|
|
27042
27311
|
"text": "boolean"
|
|
27043
27312
|
},
|
|
@@ -27091,7 +27360,7 @@
|
|
|
27091
27360
|
"fieldName": "readonly"
|
|
27092
27361
|
},
|
|
27093
27362
|
{
|
|
27094
|
-
"name": "
|
|
27363
|
+
"name": "label-position",
|
|
27095
27364
|
"type": {
|
|
27096
27365
|
"text": "RadioLabelPosition"
|
|
27097
27366
|
},
|
|
@@ -27936,7 +28205,7 @@
|
|
|
27936
28205
|
"privacy": "public",
|
|
27937
28206
|
"description": "Whether the label floats above the field.",
|
|
27938
28207
|
"default": "false",
|
|
27939
|
-
"attribute": "
|
|
28208
|
+
"attribute": "float-label",
|
|
27940
28209
|
"inheritedFrom": {
|
|
27941
28210
|
"name": "WithBaseField",
|
|
27942
28211
|
"module": "src/lib/field/base/with-base-field.ts"
|
|
@@ -28212,7 +28481,7 @@
|
|
|
28212
28481
|
"privacy": "public",
|
|
28213
28482
|
"description": "Whether the popover icon is displayed.",
|
|
28214
28483
|
"default": "false",
|
|
28215
|
-
"attribute": "
|
|
28484
|
+
"attribute": "popover-icon",
|
|
28216
28485
|
"inheritedFrom": {
|
|
28217
28486
|
"name": "WithBaseField",
|
|
28218
28487
|
"module": "src/lib/field/base/with-base-field.ts"
|
|
@@ -28395,7 +28664,7 @@
|
|
|
28395
28664
|
}
|
|
28396
28665
|
},
|
|
28397
28666
|
{
|
|
28398
|
-
"name": "
|
|
28667
|
+
"name": "float-label",
|
|
28399
28668
|
"type": {
|
|
28400
28669
|
"text": "boolean"
|
|
28401
28670
|
},
|
|
@@ -28473,7 +28742,7 @@
|
|
|
28473
28742
|
}
|
|
28474
28743
|
},
|
|
28475
28744
|
{
|
|
28476
|
-
"name": "
|
|
28745
|
+
"name": "popover-icon",
|
|
28477
28746
|
"type": {
|
|
28478
28747
|
"text": "boolean"
|
|
28479
28748
|
},
|
|
@@ -31741,7 +32010,7 @@
|
|
|
31741
32010
|
},
|
|
31742
32011
|
"FieldComponent": {
|
|
31743
32012
|
"path": "src/lib/field/field.ts",
|
|
31744
|
-
"lineNumber":
|
|
32013
|
+
"lineNumber": 180
|
|
31745
32014
|
},
|
|
31746
32015
|
"IFilePickerAdapter": {
|
|
31747
32016
|
"path": "src/lib/file-picker/file-picker-adapter.ts",
|
|
@@ -31925,7 +32194,7 @@
|
|
|
31925
32194
|
},
|
|
31926
32195
|
"IconComponent": {
|
|
31927
32196
|
"path": "src/lib/icon/icon.ts",
|
|
31928
|
-
"lineNumber":
|
|
32197
|
+
"lineNumber": 62
|
|
31929
32198
|
},
|
|
31930
32199
|
"IIconButtonAdapter": {
|
|
31931
32200
|
"path": "src/lib/icon-button/icon-button-adapter.ts",
|
|
@@ -33013,7 +33282,7 @@
|
|
|
33013
33282
|
},
|
|
33014
33283
|
"TimePickerComponent": {
|
|
33015
33284
|
"path": "src/lib/time-picker/time-picker.ts",
|
|
33016
|
-
"lineNumber":
|
|
33285
|
+
"lineNumber": 69
|
|
33017
33286
|
},
|
|
33018
33287
|
"IToastAdapter": {
|
|
33019
33288
|
"path": "src/lib/toast/toast-adapter.ts",
|