@aurodesignsystem-dev/auro-formkit 0.0.0-pr1514.1 → 0.0.0-pr1514.11
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/components/bibtemplate/dist/index.js +1 -1
- package/components/bibtemplate/dist/registered.js +1 -1
- package/components/checkbox/demo/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/customize.min.js +121 -97
- package/components/combobox/demo/getting-started.min.js +121 -97
- package/components/combobox/demo/index.min.js +121 -97
- package/components/combobox/dist/index.js +120 -96
- package/components/combobox/dist/registered.js +120 -96
- package/components/counter/demo/customize.min.js +11 -3
- package/components/counter/demo/index.min.js +11 -3
- package/components/counter/dist/index.js +11 -3
- package/components/counter/dist/registered.js +11 -3
- package/components/datepicker/demo/customize.min.js +262 -134
- package/components/datepicker/demo/index.min.js +262 -134
- package/components/datepicker/dist/auro-calendar.d.ts +30 -5
- package/components/datepicker/dist/index.js +262 -134
- package/components/datepicker/dist/registered.js +262 -134
- package/components/dropdown/demo/customize.min.js +2 -1
- package/components/dropdown/demo/getting-started.min.js +2 -1
- package/components/dropdown/demo/index.min.js +2 -1
- package/components/dropdown/dist/index.js +2 -1
- package/components/dropdown/dist/registered.js +2 -1
- package/components/form/demo/customize.min.js +700 -393
- package/components/form/demo/getting-started.min.js +700 -393
- package/components/form/demo/index.min.js +700 -393
- package/components/form/demo/registerDemoDeps.min.js +700 -393
- package/components/input/demo/api.md +5 -5
- package/components/input/demo/customize.md +8 -8
- package/components/input/demo/customize.min.js +116 -93
- package/components/input/demo/getting-started.min.js +116 -93
- package/components/input/demo/index.min.js +116 -93
- package/components/input/dist/base-input.d.ts +33 -44
- package/components/input/dist/index.js +129 -94
- package/components/input/dist/registered.js +116 -93
- package/components/radio/demo/customize.min.js +1 -1
- package/components/radio/demo/getting-started.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/customize.md +86 -0
- package/components/select/demo/customize.min.js +187 -63
- package/components/select/demo/getting-started.min.js +189 -110
- package/components/select/demo/index.min.js +187 -63
- package/components/select/demo/keyboard-behavior.md +18 -4
- package/components/select/dist/auro-select.d.ts +20 -8
- package/components/select/dist/index.js +187 -63
- package/components/select/dist/registered.js +187 -63
- package/custom-elements.json +558 -342
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -5764,7 +5764,7 @@
|
|
|
5764
5764
|
{
|
|
5765
5765
|
"kind": "method",
|
|
5766
5766
|
"name": "scrollToActiveCell",
|
|
5767
|
-
"description": "Scrolls the calendar
|
|
5767
|
+
"description": "Scrolls the calendar so the active cell is visible.\n\nWalks the flat tree (rendered, slot-aware) outward from the active\ncell's button and calls `scrollBy` on every vertically-scrollable\nancestor by whatever delta still separates the cell from that\nancestor's viewport. Native `scrollIntoView` is not used because the\ncell sits inside multiple nested scroll containers (the dropdown bib's\n`<dialog>`, the bibtemplate's `#bodyContainer`) and the algorithm only\nscrolls one of them on its own, leaving the cell short of the\nviewport in mobile fullscreen.\n\nUses `behavior: 'auto'` (the spec's universally-supported non-animated\nvalue) so each `scrollBy` resolves synchronously and the next\niteration's `getBoundingClientRect` reads post-scroll positions\naccurately. This also satisfies `prefers-reduced-motion` users — the\nscroll containers do not set CSS `scroll-behavior: smooth`, so `auto`\nis effectively instant.\n\nThe active cell is looked up from the cache populated by\n`setActiveCell`. On a cache miss (stale or absent) the cache is\nrefreshed from a single full scan so subsequent calls stay on the\nfast path.",
|
|
5768
5768
|
"privacy": "private",
|
|
5769
5769
|
"return": {
|
|
5770
5770
|
"type": {
|
|
@@ -5983,6 +5983,16 @@
|
|
|
5983
5983
|
"privacy": "private",
|
|
5984
5984
|
"default": "null"
|
|
5985
5985
|
},
|
|
5986
|
+
{
|
|
5987
|
+
"kind": "field",
|
|
5988
|
+
"name": "_activeCell",
|
|
5989
|
+
"type": {
|
|
5990
|
+
"text": "null"
|
|
5991
|
+
},
|
|
5992
|
+
"description": "Cached reference to the active cell host. Set by setActiveCell and\nrefreshed by scrollToActiveCell when its cache check misses (stale\nor missing). Lets scrollToActiveCell skip a full cell scan on each\narrow key.",
|
|
5993
|
+
"privacy": "private",
|
|
5994
|
+
"default": "null"
|
|
5995
|
+
},
|
|
5986
5996
|
{
|
|
5987
5997
|
"kind": "field",
|
|
5988
5998
|
"name": "_gridHasFocus",
|
|
@@ -12057,21 +12067,6 @@
|
|
|
12057
12067
|
"module": "components/input/src/base-input.js"
|
|
12058
12068
|
}
|
|
12059
12069
|
},
|
|
12060
|
-
{
|
|
12061
|
-
"kind": "method",
|
|
12062
|
-
"name": "_initializePrivateDefaults",
|
|
12063
|
-
"description": "Internal Defaults.",
|
|
12064
|
-
"privacy": "private",
|
|
12065
|
-
"return": {
|
|
12066
|
-
"type": {
|
|
12067
|
-
"text": "void"
|
|
12068
|
-
}
|
|
12069
|
-
},
|
|
12070
|
-
"inheritedFrom": {
|
|
12071
|
-
"name": "BaseInput",
|
|
12072
|
-
"module": "components/input/src/base-input.js"
|
|
12073
|
-
}
|
|
12074
|
-
},
|
|
12075
12070
|
{
|
|
12076
12071
|
"kind": "field",
|
|
12077
12072
|
"name": "valueObject",
|
|
@@ -12587,14 +12582,14 @@
|
|
|
12587
12582
|
},
|
|
12588
12583
|
{
|
|
12589
12584
|
"kind": "field",
|
|
12590
|
-
"name": "
|
|
12585
|
+
"name": "activeLabel",
|
|
12591
12586
|
"privacy": "public",
|
|
12592
12587
|
"type": {
|
|
12593
|
-
"text": "
|
|
12588
|
+
"text": "boolean"
|
|
12594
12589
|
},
|
|
12595
|
-
"description": "
|
|
12596
|
-
"default": "
|
|
12597
|
-
"attribute": "
|
|
12590
|
+
"description": "If set, the label will remain fixed in the active position.",
|
|
12591
|
+
"default": "false",
|
|
12592
|
+
"attribute": "activeLabel",
|
|
12598
12593
|
"reflects": true,
|
|
12599
12594
|
"inheritedFrom": {
|
|
12600
12595
|
"name": "BaseInput",
|
|
@@ -12603,15 +12598,12 @@
|
|
|
12603
12598
|
},
|
|
12604
12599
|
{
|
|
12605
12600
|
"kind": "field",
|
|
12606
|
-
"name": "
|
|
12607
|
-
"privacy": "public",
|
|
12601
|
+
"name": "allowedInputTypes",
|
|
12608
12602
|
"type": {
|
|
12609
|
-
"text": "
|
|
12603
|
+
"text": "array"
|
|
12610
12604
|
},
|
|
12611
|
-
"
|
|
12612
|
-
"default": "
|
|
12613
|
-
"attribute": "disabled",
|
|
12614
|
-
"reflects": true,
|
|
12605
|
+
"privacy": "private",
|
|
12606
|
+
"default": "[ \"text\", \"number\", \"email\", \"password\", \"credit-card\", \"tel\" ]",
|
|
12615
12607
|
"inheritedFrom": {
|
|
12616
12608
|
"name": "BaseInput",
|
|
12617
12609
|
"module": "components/input/src/base-input.js"
|
|
@@ -12619,31 +12611,28 @@
|
|
|
12619
12611
|
},
|
|
12620
12612
|
{
|
|
12621
12613
|
"kind": "field",
|
|
12622
|
-
"name": "
|
|
12614
|
+
"name": "appearance",
|
|
12623
12615
|
"privacy": "public",
|
|
12624
12616
|
"type": {
|
|
12625
12617
|
"text": "string"
|
|
12626
12618
|
},
|
|
12627
|
-
"description": "Defines the
|
|
12628
|
-
"default": "
|
|
12629
|
-
"attribute": "
|
|
12619
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
12620
|
+
"default": "\"default\"",
|
|
12621
|
+
"attribute": "appearance",
|
|
12630
12622
|
"reflects": true,
|
|
12631
12623
|
"inheritedFrom": {
|
|
12632
|
-
"name": "
|
|
12633
|
-
"module": "components/
|
|
12624
|
+
"name": "BaseInput",
|
|
12625
|
+
"module": "components/input/src/base-input.js"
|
|
12634
12626
|
}
|
|
12635
12627
|
},
|
|
12636
12628
|
{
|
|
12637
12629
|
"kind": "field",
|
|
12638
|
-
"name": "
|
|
12639
|
-
"privacy": "public",
|
|
12630
|
+
"name": "dateFormatMap",
|
|
12640
12631
|
"type": {
|
|
12641
|
-
"text": "
|
|
12632
|
+
"text": "object"
|
|
12642
12633
|
},
|
|
12643
|
-
"
|
|
12644
|
-
"default": "'
|
|
12645
|
-
"attribute": "locale",
|
|
12646
|
-
"reflects": true,
|
|
12634
|
+
"privacy": "private",
|
|
12635
|
+
"default": "{ 'mm/dd/yyyy': 'dateMMDDYYYY', 'dd/mm/yyyy': 'dateDDMMYYYY', 'yyyy/mm/dd': 'dateYYYYMMDD', 'yyyy/dd/mm': 'dateYYYYDDMM', 'mm/yy': 'dateMMYY', 'yy/mm': 'dateYYMM', 'mm/yyyy': 'dateMMYYYY', 'yyyy/mm': 'dateYYYYMM', 'yy': 'dateYY', 'yyyy': 'dateYYYY', 'mm': 'dateMM', 'dd': 'dateDD', 'dd/mm': 'dateDDMM', 'mm/dd': 'dateMMDD' }",
|
|
12647
12636
|
"inheritedFrom": {
|
|
12648
12637
|
"name": "BaseInput",
|
|
12649
12638
|
"module": "components/input/src/base-input.js"
|
|
@@ -12651,14 +12640,15 @@
|
|
|
12651
12640
|
},
|
|
12652
12641
|
{
|
|
12653
12642
|
"kind": "field",
|
|
12654
|
-
"name": "
|
|
12643
|
+
"name": "disabled",
|
|
12655
12644
|
"privacy": "public",
|
|
12656
12645
|
"type": {
|
|
12657
|
-
"text": "
|
|
12646
|
+
"text": "boolean"
|
|
12658
12647
|
},
|
|
12659
|
-
"description": "
|
|
12660
|
-
"default": "
|
|
12661
|
-
"attribute": "
|
|
12648
|
+
"description": "If set, disables the input.",
|
|
12649
|
+
"default": "false",
|
|
12650
|
+
"attribute": "disabled",
|
|
12651
|
+
"reflects": true,
|
|
12662
12652
|
"inheritedFrom": {
|
|
12663
12653
|
"name": "BaseInput",
|
|
12664
12654
|
"module": "components/input/src/base-input.js"
|
|
@@ -12666,8 +12656,9 @@
|
|
|
12666
12656
|
},
|
|
12667
12657
|
{
|
|
12668
12658
|
"kind": "field",
|
|
12669
|
-
"name": "
|
|
12670
|
-
"
|
|
12659
|
+
"name": "domHandler",
|
|
12660
|
+
"privacy": "private",
|
|
12661
|
+
"default": "new DomHandler()",
|
|
12671
12662
|
"inheritedFrom": {
|
|
12672
12663
|
"name": "BaseInput",
|
|
12673
12664
|
"module": "components/input/src/base-input.js"
|
|
@@ -12675,14 +12666,14 @@
|
|
|
12675
12666
|
},
|
|
12676
12667
|
{
|
|
12677
12668
|
"kind": "field",
|
|
12678
|
-
"name": "
|
|
12669
|
+
"name": "dvInputOnly",
|
|
12679
12670
|
"privacy": "public",
|
|
12680
12671
|
"type": {
|
|
12681
|
-
"text": "
|
|
12672
|
+
"text": "boolean"
|
|
12682
12673
|
},
|
|
12683
|
-
"description": "
|
|
12684
|
-
"default": "
|
|
12685
|
-
"attribute": "
|
|
12674
|
+
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
12675
|
+
"default": "false",
|
|
12676
|
+
"attribute": "dvInputOnly",
|
|
12686
12677
|
"reflects": true,
|
|
12687
12678
|
"inheritedFrom": {
|
|
12688
12679
|
"name": "BaseInput",
|
|
@@ -12691,23 +12682,13 @@
|
|
|
12691
12682
|
},
|
|
12692
12683
|
{
|
|
12693
12684
|
"kind": "field",
|
|
12694
|
-
"name": "
|
|
12685
|
+
"name": "hasValue",
|
|
12695
12686
|
"privacy": "public",
|
|
12696
12687
|
"type": {
|
|
12697
|
-
"text": "
|
|
12688
|
+
"text": "boolean"
|
|
12698
12689
|
},
|
|
12699
|
-
"description": "
|
|
12700
|
-
"default": "
|
|
12701
|
-
"attribute": "min",
|
|
12702
|
-
"inheritedFrom": {
|
|
12703
|
-
"name": "BaseInput",
|
|
12704
|
-
"module": "components/input/src/base-input.js"
|
|
12705
|
-
}
|
|
12706
|
-
},
|
|
12707
|
-
{
|
|
12708
|
-
"kind": "field",
|
|
12709
|
-
"name": "_minObject",
|
|
12710
|
-
"default": "undefined",
|
|
12690
|
+
"description": "Flag to indicate if the input currently has value.",
|
|
12691
|
+
"default": "false",
|
|
12711
12692
|
"inheritedFrom": {
|
|
12712
12693
|
"name": "BaseInput",
|
|
12713
12694
|
"module": "components/input/src/base-input.js"
|
|
@@ -12715,14 +12696,14 @@
|
|
|
12715
12696
|
},
|
|
12716
12697
|
{
|
|
12717
12698
|
"kind": "field",
|
|
12718
|
-
"name": "
|
|
12719
|
-
"privacy": "
|
|
12699
|
+
"name": "hideLabelVisually",
|
|
12700
|
+
"privacy": "private",
|
|
12720
12701
|
"type": {
|
|
12721
|
-
"text": "
|
|
12702
|
+
"text": "boolean"
|
|
12722
12703
|
},
|
|
12723
|
-
"description": "
|
|
12724
|
-
"default": "
|
|
12725
|
-
"attribute": "
|
|
12704
|
+
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
12705
|
+
"default": "false",
|
|
12706
|
+
"attribute": "hideLabelVisually",
|
|
12726
12707
|
"reflects": true,
|
|
12727
12708
|
"inheritedFrom": {
|
|
12728
12709
|
"name": "BaseInput",
|
|
@@ -12731,14 +12712,14 @@
|
|
|
12731
12712
|
},
|
|
12732
12713
|
{
|
|
12733
12714
|
"kind": "field",
|
|
12734
|
-
"name": "
|
|
12715
|
+
"name": "icon",
|
|
12735
12716
|
"privacy": "public",
|
|
12736
12717
|
"type": {
|
|
12737
12718
|
"text": "boolean"
|
|
12738
12719
|
},
|
|
12739
|
-
"description": "
|
|
12720
|
+
"description": "If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.",
|
|
12740
12721
|
"default": "false",
|
|
12741
|
-
"attribute": "
|
|
12722
|
+
"attribute": "icon",
|
|
12742
12723
|
"reflects": true,
|
|
12743
12724
|
"inheritedFrom": {
|
|
12744
12725
|
"name": "BaseInput",
|
|
@@ -12747,30 +12728,22 @@
|
|
|
12747
12728
|
},
|
|
12748
12729
|
{
|
|
12749
12730
|
"kind": "field",
|
|
12750
|
-
"name": "
|
|
12751
|
-
"privacy": "
|
|
12752
|
-
"
|
|
12753
|
-
"text": "boolean"
|
|
12754
|
-
},
|
|
12755
|
-
"attribute": "onDark",
|
|
12756
|
-
"reflects": true,
|
|
12757
|
-
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
12758
|
-
"default": "false",
|
|
12731
|
+
"name": "inputIconName",
|
|
12732
|
+
"privacy": "private",
|
|
12733
|
+
"default": "undefined",
|
|
12759
12734
|
"inheritedFrom": {
|
|
12760
|
-
"name": "
|
|
12761
|
-
"module": "components/
|
|
12735
|
+
"name": "BaseInput",
|
|
12736
|
+
"module": "components/input/src/base-input.js"
|
|
12762
12737
|
}
|
|
12763
12738
|
},
|
|
12764
12739
|
{
|
|
12765
12740
|
"kind": "field",
|
|
12766
|
-
"name": "
|
|
12767
|
-
"privacy": "public",
|
|
12741
|
+
"name": "label",
|
|
12768
12742
|
"type": {
|
|
12769
12743
|
"text": "string"
|
|
12770
12744
|
},
|
|
12771
|
-
"
|
|
12772
|
-
"default": "undefined",
|
|
12773
|
-
"attribute": "setCustomValidityForType",
|
|
12745
|
+
"privacy": "private",
|
|
12746
|
+
"default": "'Input label is undefined'",
|
|
12774
12747
|
"inheritedFrom": {
|
|
12775
12748
|
"name": "BaseInput",
|
|
12776
12749
|
"module": "components/input/src/base-input.js"
|
|
@@ -12778,14 +12751,15 @@
|
|
|
12778
12751
|
},
|
|
12779
12752
|
{
|
|
12780
12753
|
"kind": "field",
|
|
12781
|
-
"name": "
|
|
12754
|
+
"name": "layout",
|
|
12782
12755
|
"privacy": "public",
|
|
12783
12756
|
"type": {
|
|
12784
12757
|
"text": "string"
|
|
12785
12758
|
},
|
|
12786
|
-
"
|
|
12759
|
+
"description": "Defines the language of an element.",
|
|
12760
|
+
"default": "'classic'",
|
|
12761
|
+
"attribute": "layout",
|
|
12787
12762
|
"reflects": true,
|
|
12788
|
-
"default": "'lg'",
|
|
12789
12763
|
"inheritedFrom": {
|
|
12790
12764
|
"name": "AuroElement",
|
|
12791
12765
|
"module": "components/layoutElement/src/auroElement.js"
|
|
@@ -12793,29 +12767,30 @@
|
|
|
12793
12767
|
},
|
|
12794
12768
|
{
|
|
12795
12769
|
"kind": "field",
|
|
12796
|
-
"name": "
|
|
12770
|
+
"name": "locale",
|
|
12797
12771
|
"privacy": "public",
|
|
12798
12772
|
"type": {
|
|
12799
12773
|
"text": "string"
|
|
12800
12774
|
},
|
|
12801
|
-
"
|
|
12775
|
+
"description": "Defines the locale of an element.\nUsed for locale-specific formatting, such as date formats.",
|
|
12776
|
+
"default": "'en-US'",
|
|
12777
|
+
"attribute": "locale",
|
|
12802
12778
|
"reflects": true,
|
|
12803
|
-
"default": "'classic'",
|
|
12804
12779
|
"inheritedFrom": {
|
|
12805
|
-
"name": "
|
|
12806
|
-
"module": "components/
|
|
12780
|
+
"name": "BaseInput",
|
|
12781
|
+
"module": "components/input/src/base-input.js"
|
|
12807
12782
|
}
|
|
12808
12783
|
},
|
|
12809
12784
|
{
|
|
12810
12785
|
"kind": "field",
|
|
12811
|
-
"name": "
|
|
12786
|
+
"name": "max",
|
|
12812
12787
|
"privacy": "public",
|
|
12813
12788
|
"type": {
|
|
12814
12789
|
"text": "string"
|
|
12815
12790
|
},
|
|
12816
|
-
"description": "
|
|
12791
|
+
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and ISO format.",
|
|
12817
12792
|
"default": "undefined",
|
|
12818
|
-
"attribute": "
|
|
12793
|
+
"attribute": "max",
|
|
12819
12794
|
"inheritedFrom": {
|
|
12820
12795
|
"name": "BaseInput",
|
|
12821
12796
|
"module": "components/input/src/base-input.js"
|
|
@@ -12823,7 +12798,7 @@
|
|
|
12823
12798
|
},
|
|
12824
12799
|
{
|
|
12825
12800
|
"kind": "field",
|
|
12826
|
-
"name": "
|
|
12801
|
+
"name": "_maxObject",
|
|
12827
12802
|
"default": "undefined",
|
|
12828
12803
|
"inheritedFrom": {
|
|
12829
12804
|
"name": "BaseInput",
|
|
@@ -12832,13 +12807,14 @@
|
|
|
12832
12807
|
},
|
|
12833
12808
|
{
|
|
12834
12809
|
"kind": "field",
|
|
12835
|
-
"name": "
|
|
12810
|
+
"name": "maxLength",
|
|
12836
12811
|
"privacy": "public",
|
|
12837
12812
|
"type": {
|
|
12838
|
-
"text": "
|
|
12813
|
+
"text": "number"
|
|
12839
12814
|
},
|
|
12840
|
-
"description": "The
|
|
12841
|
-
"
|
|
12815
|
+
"description": "The maximum number of characters the user can enter into the text input. This must be an integer value `0` or higher.\n**Note**: This attribute is not intended to be used with a `type` or `format` that already has a defined length, such as credit-cards, dates or phone numbers.",
|
|
12816
|
+
"default": "undefined",
|
|
12817
|
+
"attribute": "maxLength",
|
|
12842
12818
|
"reflects": true,
|
|
12843
12819
|
"inheritedFrom": {
|
|
12844
12820
|
"name": "BaseInput",
|
|
@@ -12847,14 +12823,14 @@
|
|
|
12847
12823
|
},
|
|
12848
12824
|
{
|
|
12849
12825
|
"kind": "field",
|
|
12850
|
-
"name": "
|
|
12826
|
+
"name": "min",
|
|
12851
12827
|
"privacy": "public",
|
|
12852
12828
|
"type": {
|
|
12853
12829
|
"text": "string"
|
|
12854
12830
|
},
|
|
12855
|
-
"description": "The value for
|
|
12856
|
-
"
|
|
12857
|
-
"
|
|
12831
|
+
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and ISO date format.",
|
|
12832
|
+
"default": "undefined",
|
|
12833
|
+
"attribute": "min",
|
|
12858
12834
|
"inheritedFrom": {
|
|
12859
12835
|
"name": "BaseInput",
|
|
12860
12836
|
"module": "components/input/src/base-input.js"
|
|
@@ -12862,14 +12838,8 @@
|
|
|
12862
12838
|
},
|
|
12863
12839
|
{
|
|
12864
12840
|
"kind": "field",
|
|
12865
|
-
"name": "
|
|
12866
|
-
"
|
|
12867
|
-
"type": {
|
|
12868
|
-
"text": "boolean"
|
|
12869
|
-
},
|
|
12870
|
-
"description": "The value for the aria-expanded attribute.",
|
|
12871
|
-
"attribute": "a11yExpanded",
|
|
12872
|
-
"reflects": true,
|
|
12841
|
+
"name": "_minObject",
|
|
12842
|
+
"default": "undefined",
|
|
12873
12843
|
"inheritedFrom": {
|
|
12874
12844
|
"name": "BaseInput",
|
|
12875
12845
|
"module": "components/input/src/base-input.js"
|
|
@@ -12877,13 +12847,14 @@
|
|
|
12877
12847
|
},
|
|
12878
12848
|
{
|
|
12879
12849
|
"kind": "field",
|
|
12880
|
-
"name": "
|
|
12850
|
+
"name": "minLength",
|
|
12881
12851
|
"privacy": "public",
|
|
12882
12852
|
"type": {
|
|
12883
|
-
"text": "
|
|
12853
|
+
"text": "number"
|
|
12884
12854
|
},
|
|
12885
|
-
"description": "The
|
|
12886
|
-
"
|
|
12855
|
+
"description": "The minimum number of characters the user can enter into the text input. This must be a non-negative integer value smaller than or equal to the value specified by `maxlength`.",
|
|
12856
|
+
"default": "undefined",
|
|
12857
|
+
"attribute": "minLength",
|
|
12887
12858
|
"reflects": true,
|
|
12888
12859
|
"inheritedFrom": {
|
|
12889
12860
|
"name": "BaseInput",
|
|
@@ -12892,13 +12863,14 @@
|
|
|
12892
12863
|
},
|
|
12893
12864
|
{
|
|
12894
12865
|
"kind": "field",
|
|
12895
|
-
"name": "
|
|
12866
|
+
"name": "noValidate",
|
|
12896
12867
|
"privacy": "public",
|
|
12897
12868
|
"type": {
|
|
12898
12869
|
"text": "boolean"
|
|
12899
12870
|
},
|
|
12900
|
-
"description": "If set,
|
|
12901
|
-
"
|
|
12871
|
+
"description": "If set, disables auto-validation on blur.",
|
|
12872
|
+
"default": "false",
|
|
12873
|
+
"attribute": "noValidate",
|
|
12902
12874
|
"reflects": true,
|
|
12903
12875
|
"inheritedFrom": {
|
|
12904
12876
|
"name": "BaseInput",
|
|
@@ -12907,14 +12879,24 @@
|
|
|
12907
12879
|
},
|
|
12908
12880
|
{
|
|
12909
12881
|
"kind": "field",
|
|
12910
|
-
"name": "
|
|
12882
|
+
"name": "onDark",
|
|
12911
12883
|
"privacy": "public",
|
|
12912
12884
|
"type": {
|
|
12913
|
-
"text": "
|
|
12885
|
+
"text": "boolean"
|
|
12914
12886
|
},
|
|
12915
|
-
"
|
|
12916
|
-
"attribute": "autocapitalize",
|
|
12887
|
+
"attribute": "onDark",
|
|
12917
12888
|
"reflects": true,
|
|
12889
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
12890
|
+
"default": "false",
|
|
12891
|
+
"inheritedFrom": {
|
|
12892
|
+
"name": "AuroElement",
|
|
12893
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
12894
|
+
}
|
|
12895
|
+
},
|
|
12896
|
+
{
|
|
12897
|
+
"kind": "field",
|
|
12898
|
+
"name": "_rawMaskValue",
|
|
12899
|
+
"default": "undefined",
|
|
12918
12900
|
"inheritedFrom": {
|
|
12919
12901
|
"name": "BaseInput",
|
|
12920
12902
|
"module": "components/input/src/base-input.js"
|
|
@@ -12922,13 +12904,14 @@
|
|
|
12922
12904
|
},
|
|
12923
12905
|
{
|
|
12924
12906
|
"kind": "field",
|
|
12925
|
-
"name": "
|
|
12907
|
+
"name": "required",
|
|
12926
12908
|
"privacy": "public",
|
|
12927
12909
|
"type": {
|
|
12928
|
-
"text": "
|
|
12910
|
+
"text": "boolean"
|
|
12929
12911
|
},
|
|
12930
|
-
"description": "
|
|
12931
|
-
"
|
|
12912
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
12913
|
+
"default": "false",
|
|
12914
|
+
"attribute": "required",
|
|
12932
12915
|
"reflects": true,
|
|
12933
12916
|
"inheritedFrom": {
|
|
12934
12917
|
"name": "BaseInput",
|
|
@@ -12937,14 +12920,14 @@
|
|
|
12937
12920
|
},
|
|
12938
12921
|
{
|
|
12939
12922
|
"kind": "field",
|
|
12940
|
-
"name": "
|
|
12923
|
+
"name": "setCustomValidityForType",
|
|
12941
12924
|
"privacy": "public",
|
|
12942
12925
|
"type": {
|
|
12943
12926
|
"text": "string"
|
|
12944
12927
|
},
|
|
12945
|
-
"description": "
|
|
12946
|
-
"
|
|
12947
|
-
"
|
|
12928
|
+
"description": "Custom help text message to display for the declared element `type` and type validity fails.",
|
|
12929
|
+
"default": "undefined",
|
|
12930
|
+
"attribute": "setCustomValidityForType",
|
|
12948
12931
|
"inheritedFrom": {
|
|
12949
12932
|
"name": "BaseInput",
|
|
12950
12933
|
"module": "components/input/src/base-input.js"
|
|
@@ -12952,13 +12935,12 @@
|
|
|
12952
12935
|
},
|
|
12953
12936
|
{
|
|
12954
12937
|
"kind": "field",
|
|
12955
|
-
"name": "
|
|
12956
|
-
"privacy": "public",
|
|
12938
|
+
"name": "setSelectionInputTypes",
|
|
12957
12939
|
"type": {
|
|
12958
|
-
"text": "
|
|
12940
|
+
"text": "array"
|
|
12959
12941
|
},
|
|
12960
|
-
"
|
|
12961
|
-
"
|
|
12942
|
+
"privacy": "private",
|
|
12943
|
+
"default": "[ \"text\", \"password\", \"email\" ]",
|
|
12962
12944
|
"inheritedFrom": {
|
|
12963
12945
|
"name": "BaseInput",
|
|
12964
12946
|
"module": "components/input/src/base-input.js"
|
|
@@ -12966,14 +12948,28 @@
|
|
|
12966
12948
|
},
|
|
12967
12949
|
{
|
|
12968
12950
|
"kind": "field",
|
|
12969
|
-
"name": "
|
|
12951
|
+
"name": "shape",
|
|
12970
12952
|
"privacy": "public",
|
|
12971
12953
|
"type": {
|
|
12972
|
-
"text": "
|
|
12954
|
+
"text": "string"
|
|
12973
12955
|
},
|
|
12974
|
-
"
|
|
12975
|
-
"attribute": "dvInputOnly",
|
|
12956
|
+
"attribute": "shape",
|
|
12976
12957
|
"reflects": true,
|
|
12958
|
+
"default": "'classic'",
|
|
12959
|
+
"inheritedFrom": {
|
|
12960
|
+
"name": "AuroElement",
|
|
12961
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
12962
|
+
}
|
|
12963
|
+
},
|
|
12964
|
+
{
|
|
12965
|
+
"kind": "field",
|
|
12966
|
+
"name": "showPassword",
|
|
12967
|
+
"privacy": "private",
|
|
12968
|
+
"type": {
|
|
12969
|
+
"text": "boolean"
|
|
12970
|
+
},
|
|
12971
|
+
"default": "false",
|
|
12972
|
+
"attribute": "showPassword",
|
|
12977
12973
|
"inheritedFrom": {
|
|
12978
12974
|
"name": "BaseInput",
|
|
12979
12975
|
"module": "components/input/src/base-input.js"
|
|
@@ -12981,14 +12977,28 @@
|
|
|
12981
12977
|
},
|
|
12982
12978
|
{
|
|
12983
12979
|
"kind": "field",
|
|
12984
|
-
"name": "
|
|
12980
|
+
"name": "size",
|
|
12985
12981
|
"privacy": "public",
|
|
12986
12982
|
"type": {
|
|
12987
12983
|
"text": "string"
|
|
12988
12984
|
},
|
|
12989
|
-
"
|
|
12990
|
-
"attribute": "error",
|
|
12985
|
+
"attribute": "size",
|
|
12991
12986
|
"reflects": true,
|
|
12987
|
+
"default": "'lg'",
|
|
12988
|
+
"inheritedFrom": {
|
|
12989
|
+
"name": "AuroElement",
|
|
12990
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
12991
|
+
}
|
|
12992
|
+
},
|
|
12993
|
+
{
|
|
12994
|
+
"kind": "field",
|
|
12995
|
+
"name": "touched",
|
|
12996
|
+
"privacy": "private",
|
|
12997
|
+
"type": {
|
|
12998
|
+
"text": "boolean"
|
|
12999
|
+
},
|
|
13000
|
+
"description": "Indicates whether the input is in a dirty state (has been interacted with).",
|
|
13001
|
+
"default": "false",
|
|
12992
13002
|
"inheritedFrom": {
|
|
12993
13003
|
"name": "BaseInput",
|
|
12994
13004
|
"module": "components/input/src/base-input.js"
|
|
@@ -12996,13 +13006,53 @@
|
|
|
12996
13006
|
},
|
|
12997
13007
|
{
|
|
12998
13008
|
"kind": "field",
|
|
12999
|
-
"name": "
|
|
13009
|
+
"name": "uniqueId",
|
|
13010
|
+
"privacy": "private",
|
|
13011
|
+
"inheritedFrom": {
|
|
13012
|
+
"name": "BaseInput",
|
|
13013
|
+
"module": "components/input/src/base-input.js"
|
|
13014
|
+
}
|
|
13015
|
+
},
|
|
13016
|
+
{
|
|
13017
|
+
"kind": "field",
|
|
13018
|
+
"name": "util",
|
|
13019
|
+
"privacy": "private",
|
|
13020
|
+
"default": "new AuroInputUtilities({ locale: this.locale, format: this.format })",
|
|
13021
|
+
"inheritedFrom": {
|
|
13022
|
+
"name": "BaseInput",
|
|
13023
|
+
"module": "components/input/src/base-input.js"
|
|
13024
|
+
}
|
|
13025
|
+
},
|
|
13026
|
+
{
|
|
13027
|
+
"kind": "field",
|
|
13028
|
+
"name": "validation",
|
|
13029
|
+
"privacy": "private",
|
|
13030
|
+
"default": "new AuroFormValidation()",
|
|
13031
|
+
"inheritedFrom": {
|
|
13032
|
+
"name": "BaseInput",
|
|
13033
|
+
"module": "components/input/src/base-input.js"
|
|
13034
|
+
}
|
|
13035
|
+
},
|
|
13036
|
+
{
|
|
13037
|
+
"kind": "field",
|
|
13038
|
+
"name": "validationCCLength",
|
|
13039
|
+
"privacy": "private",
|
|
13040
|
+
"default": "undefined",
|
|
13041
|
+
"inheritedFrom": {
|
|
13042
|
+
"name": "BaseInput",
|
|
13043
|
+
"module": "components/input/src/base-input.js"
|
|
13044
|
+
}
|
|
13045
|
+
},
|
|
13046
|
+
{
|
|
13047
|
+
"kind": "field",
|
|
13048
|
+
"name": "value",
|
|
13000
13049
|
"privacy": "public",
|
|
13001
13050
|
"type": {
|
|
13002
13051
|
"text": "string"
|
|
13003
13052
|
},
|
|
13004
|
-
"description": "
|
|
13005
|
-
"
|
|
13053
|
+
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.\nThe format for this property should be ISO for `date` type inputs.",
|
|
13054
|
+
"default": "undefined",
|
|
13055
|
+
"attribute": "value",
|
|
13006
13056
|
"inheritedFrom": {
|
|
13007
13057
|
"name": "BaseInput",
|
|
13008
13058
|
"module": "components/input/src/base-input.js"
|
|
@@ -13010,13 +13060,22 @@
|
|
|
13010
13060
|
},
|
|
13011
13061
|
{
|
|
13012
13062
|
"kind": "field",
|
|
13013
|
-
"name": "
|
|
13063
|
+
"name": "_valueObject",
|
|
13064
|
+
"default": "undefined",
|
|
13065
|
+
"inheritedFrom": {
|
|
13066
|
+
"name": "BaseInput",
|
|
13067
|
+
"module": "components/input/src/base-input.js"
|
|
13068
|
+
}
|
|
13069
|
+
},
|
|
13070
|
+
{
|
|
13071
|
+
"kind": "field",
|
|
13072
|
+
"name": "a11yRole",
|
|
13014
13073
|
"privacy": "public",
|
|
13015
13074
|
"type": {
|
|
13016
13075
|
"text": "string"
|
|
13017
13076
|
},
|
|
13018
|
-
"description": "
|
|
13019
|
-
"attribute": "
|
|
13077
|
+
"description": "The value for the role attribute.",
|
|
13078
|
+
"attribute": "a11yRole",
|
|
13020
13079
|
"reflects": true,
|
|
13021
13080
|
"inheritedFrom": {
|
|
13022
13081
|
"name": "BaseInput",
|
|
@@ -13025,12 +13084,14 @@
|
|
|
13025
13084
|
},
|
|
13026
13085
|
{
|
|
13027
13086
|
"kind": "field",
|
|
13028
|
-
"name": "
|
|
13087
|
+
"name": "a11yControls",
|
|
13029
13088
|
"privacy": "public",
|
|
13030
13089
|
"type": {
|
|
13031
|
-
"text": "
|
|
13090
|
+
"text": "string"
|
|
13032
13091
|
},
|
|
13033
|
-
"description": "
|
|
13092
|
+
"description": "The value for the aria-controls attribute.",
|
|
13093
|
+
"attribute": "a11yControls",
|
|
13094
|
+
"reflects": true,
|
|
13034
13095
|
"inheritedFrom": {
|
|
13035
13096
|
"name": "BaseInput",
|
|
13036
13097
|
"module": "components/input/src/base-input.js"
|
|
@@ -13038,12 +13099,14 @@
|
|
|
13038
13099
|
},
|
|
13039
13100
|
{
|
|
13040
13101
|
"kind": "field",
|
|
13041
|
-
"name": "
|
|
13102
|
+
"name": "a11yExpanded",
|
|
13042
13103
|
"privacy": "public",
|
|
13043
13104
|
"type": {
|
|
13044
13105
|
"text": "boolean"
|
|
13045
13106
|
},
|
|
13046
|
-
"description": "
|
|
13107
|
+
"description": "The value for the aria-expanded attribute.",
|
|
13108
|
+
"attribute": "a11yExpanded",
|
|
13109
|
+
"reflects": true,
|
|
13047
13110
|
"inheritedFrom": {
|
|
13048
13111
|
"name": "BaseInput",
|
|
13049
13112
|
"module": "components/input/src/base-input.js"
|
|
@@ -13051,13 +13114,13 @@
|
|
|
13051
13114
|
},
|
|
13052
13115
|
{
|
|
13053
13116
|
"kind": "field",
|
|
13054
|
-
"name": "
|
|
13055
|
-
"privacy": "
|
|
13117
|
+
"name": "a11yActivedescendant",
|
|
13118
|
+
"privacy": "public",
|
|
13056
13119
|
"type": {
|
|
13057
|
-
"text": "
|
|
13120
|
+
"text": "string"
|
|
13058
13121
|
},
|
|
13059
|
-
"description": "
|
|
13060
|
-
"attribute": "
|
|
13122
|
+
"description": "The value for the aria-activedescendant attribute.\nPoints to the ID of the currently active/highlighted option in a listbox.",
|
|
13123
|
+
"attribute": "a11yActivedescendant",
|
|
13061
13124
|
"reflects": true,
|
|
13062
13125
|
"inheritedFrom": {
|
|
13063
13126
|
"name": "BaseInput",
|
|
@@ -13066,19 +13129,120 @@
|
|
|
13066
13129
|
},
|
|
13067
13130
|
{
|
|
13068
13131
|
"kind": "field",
|
|
13069
|
-
"name": "
|
|
13132
|
+
"name": "autocapitalize",
|
|
13070
13133
|
"privacy": "public",
|
|
13071
13134
|
"type": {
|
|
13072
|
-
"text": "
|
|
13135
|
+
"text": "string"
|
|
13073
13136
|
},
|
|
13074
|
-
"description": "
|
|
13075
|
-
"attribute": "
|
|
13137
|
+
"description": "An enumerated attribute that controls whether and how text input is automatically capitalized as it is entered/edited by the user. [off/none, on/sentences, words, characters].",
|
|
13138
|
+
"attribute": "autocapitalize",
|
|
13076
13139
|
"reflects": true,
|
|
13077
13140
|
"inheritedFrom": {
|
|
13078
13141
|
"name": "BaseInput",
|
|
13079
13142
|
"module": "components/input/src/base-input.js"
|
|
13080
13143
|
}
|
|
13081
13144
|
},
|
|
13145
|
+
{
|
|
13146
|
+
"kind": "field",
|
|
13147
|
+
"name": "autocomplete",
|
|
13148
|
+
"privacy": "public",
|
|
13149
|
+
"type": {
|
|
13150
|
+
"text": "string"
|
|
13151
|
+
},
|
|
13152
|
+
"description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
|
|
13153
|
+
"attribute": "autocomplete",
|
|
13154
|
+
"reflects": true,
|
|
13155
|
+
"inheritedFrom": {
|
|
13156
|
+
"name": "BaseInput",
|
|
13157
|
+
"module": "components/input/src/base-input.js"
|
|
13158
|
+
}
|
|
13159
|
+
},
|
|
13160
|
+
{
|
|
13161
|
+
"kind": "field",
|
|
13162
|
+
"name": "autocorrect",
|
|
13163
|
+
"privacy": "public",
|
|
13164
|
+
"type": {
|
|
13165
|
+
"text": "string"
|
|
13166
|
+
},
|
|
13167
|
+
"description": "When set to `off`, stops iOS from auto-correcting words when typed into a text box.",
|
|
13168
|
+
"attribute": "autocorrect",
|
|
13169
|
+
"reflects": true,
|
|
13170
|
+
"inheritedFrom": {
|
|
13171
|
+
"name": "BaseInput",
|
|
13172
|
+
"module": "components/input/src/base-input.js"
|
|
13173
|
+
}
|
|
13174
|
+
},
|
|
13175
|
+
{
|
|
13176
|
+
"kind": "field",
|
|
13177
|
+
"name": "customValidityTypeEmail",
|
|
13178
|
+
"privacy": "public",
|
|
13179
|
+
"type": {
|
|
13180
|
+
"text": "string"
|
|
13181
|
+
},
|
|
13182
|
+
"description": "Custom help text message for email type validity.",
|
|
13183
|
+
"attribute": "customValidityTypeEmail",
|
|
13184
|
+
"inheritedFrom": {
|
|
13185
|
+
"name": "BaseInput",
|
|
13186
|
+
"module": "components/input/src/base-input.js"
|
|
13187
|
+
}
|
|
13188
|
+
},
|
|
13189
|
+
{
|
|
13190
|
+
"kind": "field",
|
|
13191
|
+
"name": "error",
|
|
13192
|
+
"privacy": "public",
|
|
13193
|
+
"type": {
|
|
13194
|
+
"text": "string"
|
|
13195
|
+
},
|
|
13196
|
+
"description": "When defined, sets persistent validity to `customError` and sets `setCustomValidity` = attribute value.",
|
|
13197
|
+
"attribute": "error",
|
|
13198
|
+
"reflects": true,
|
|
13199
|
+
"inheritedFrom": {
|
|
13200
|
+
"name": "BaseInput",
|
|
13201
|
+
"module": "components/input/src/base-input.js"
|
|
13202
|
+
}
|
|
13203
|
+
},
|
|
13204
|
+
{
|
|
13205
|
+
"kind": "field",
|
|
13206
|
+
"name": "errorMessage",
|
|
13207
|
+
"privacy": "public",
|
|
13208
|
+
"type": {
|
|
13209
|
+
"text": "string"
|
|
13210
|
+
},
|
|
13211
|
+
"description": "Contains the help text message for the current validity error.",
|
|
13212
|
+
"attribute": "errorMessage",
|
|
13213
|
+
"inheritedFrom": {
|
|
13214
|
+
"name": "BaseInput",
|
|
13215
|
+
"module": "components/input/src/base-input.js"
|
|
13216
|
+
}
|
|
13217
|
+
},
|
|
13218
|
+
{
|
|
13219
|
+
"kind": "field",
|
|
13220
|
+
"name": "format",
|
|
13221
|
+
"privacy": "public",
|
|
13222
|
+
"type": {
|
|
13223
|
+
"text": "string"
|
|
13224
|
+
},
|
|
13225
|
+
"description": "Specifies the input mask format.",
|
|
13226
|
+
"attribute": "format",
|
|
13227
|
+
"reflects": true,
|
|
13228
|
+
"inheritedFrom": {
|
|
13229
|
+
"name": "BaseInput",
|
|
13230
|
+
"module": "components/input/src/base-input.js"
|
|
13231
|
+
}
|
|
13232
|
+
},
|
|
13233
|
+
{
|
|
13234
|
+
"kind": "field",
|
|
13235
|
+
"name": "hasFocus",
|
|
13236
|
+
"privacy": "public",
|
|
13237
|
+
"type": {
|
|
13238
|
+
"text": "boolean"
|
|
13239
|
+
},
|
|
13240
|
+
"description": "Flag to indicate if the input currently has focus.",
|
|
13241
|
+
"inheritedFrom": {
|
|
13242
|
+
"name": "BaseInput",
|
|
13243
|
+
"module": "components/input/src/base-input.js"
|
|
13244
|
+
}
|
|
13245
|
+
},
|
|
13082
13246
|
{
|
|
13083
13247
|
"kind": "field",
|
|
13084
13248
|
"name": "id",
|
|
@@ -13167,21 +13331,6 @@
|
|
|
13167
13331
|
"module": "components/input/src/base-input.js"
|
|
13168
13332
|
}
|
|
13169
13333
|
},
|
|
13170
|
-
{
|
|
13171
|
-
"kind": "field",
|
|
13172
|
-
"name": "noValidate",
|
|
13173
|
-
"privacy": "public",
|
|
13174
|
-
"type": {
|
|
13175
|
-
"text": "boolean"
|
|
13176
|
-
},
|
|
13177
|
-
"description": "If set, disables auto-validation on blur.",
|
|
13178
|
-
"attribute": "noValidate",
|
|
13179
|
-
"reflects": true,
|
|
13180
|
-
"inheritedFrom": {
|
|
13181
|
-
"name": "BaseInput",
|
|
13182
|
-
"module": "components/input/src/base-input.js"
|
|
13183
|
-
}
|
|
13184
|
-
},
|
|
13185
13334
|
{
|
|
13186
13335
|
"kind": "field",
|
|
13187
13336
|
"name": "pattern",
|
|
@@ -13339,16 +13488,6 @@
|
|
|
13339
13488
|
"module": "components/input/src/base-input.js"
|
|
13340
13489
|
}
|
|
13341
13490
|
},
|
|
13342
|
-
{
|
|
13343
|
-
"kind": "field",
|
|
13344
|
-
"name": "showPassword",
|
|
13345
|
-
"privacy": "public",
|
|
13346
|
-
"attribute": "showPassword",
|
|
13347
|
-
"inheritedFrom": {
|
|
13348
|
-
"name": "BaseInput",
|
|
13349
|
-
"module": "components/input/src/base-input.js"
|
|
13350
|
-
}
|
|
13351
|
-
},
|
|
13352
13491
|
{
|
|
13353
13492
|
"kind": "field",
|
|
13354
13493
|
"name": "simple",
|
|
@@ -13379,19 +13518,6 @@
|
|
|
13379
13518
|
"module": "components/input/src/base-input.js"
|
|
13380
13519
|
}
|
|
13381
13520
|
},
|
|
13382
|
-
{
|
|
13383
|
-
"kind": "field",
|
|
13384
|
-
"name": "touched",
|
|
13385
|
-
"privacy": "private",
|
|
13386
|
-
"type": {
|
|
13387
|
-
"text": "boolean"
|
|
13388
|
-
},
|
|
13389
|
-
"description": "Indicates whether the input is in a dirty state (has been interacted with).",
|
|
13390
|
-
"inheritedFrom": {
|
|
13391
|
-
"name": "BaseInput",
|
|
13392
|
-
"module": "components/input/src/base-input.js"
|
|
13393
|
-
}
|
|
13394
|
-
},
|
|
13395
13521
|
{
|
|
13396
13522
|
"kind": "field",
|
|
13397
13523
|
"name": "type",
|
|
@@ -13539,6 +13665,7 @@
|
|
|
13539
13665
|
"text": "boolean"
|
|
13540
13666
|
},
|
|
13541
13667
|
"description": "If set, the label will remain fixed in the active position.",
|
|
13668
|
+
"default": "false",
|
|
13542
13669
|
"fieldName": "activeLabel",
|
|
13543
13670
|
"inheritedFrom": {
|
|
13544
13671
|
"name": "BaseInput",
|
|
@@ -13625,6 +13752,7 @@
|
|
|
13625
13752
|
"text": "boolean"
|
|
13626
13753
|
},
|
|
13627
13754
|
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
13755
|
+
"default": "false",
|
|
13628
13756
|
"fieldName": "dvInputOnly",
|
|
13629
13757
|
"inheritedFrom": {
|
|
13630
13758
|
"name": "BaseInput",
|
|
@@ -13673,6 +13801,7 @@
|
|
|
13673
13801
|
"text": "boolean"
|
|
13674
13802
|
},
|
|
13675
13803
|
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
13804
|
+
"default": "false",
|
|
13676
13805
|
"fieldName": "hideLabelVisually",
|
|
13677
13806
|
"inheritedFrom": {
|
|
13678
13807
|
"name": "BaseInput",
|
|
@@ -13685,6 +13814,7 @@
|
|
|
13685
13814
|
"text": "boolean"
|
|
13686
13815
|
},
|
|
13687
13816
|
"description": "If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.",
|
|
13817
|
+
"default": "false",
|
|
13688
13818
|
"fieldName": "icon",
|
|
13689
13819
|
"inheritedFrom": {
|
|
13690
13820
|
"name": "BaseInput",
|
|
@@ -13822,6 +13952,7 @@
|
|
|
13822
13952
|
"text": "boolean"
|
|
13823
13953
|
},
|
|
13824
13954
|
"description": "If set, disables auto-validation on blur.",
|
|
13955
|
+
"default": "false",
|
|
13825
13956
|
"fieldName": "noValidate",
|
|
13826
13957
|
"inheritedFrom": {
|
|
13827
13958
|
"name": "BaseInput",
|
|
@@ -14001,6 +14132,10 @@
|
|
|
14001
14132
|
},
|
|
14002
14133
|
{
|
|
14003
14134
|
"name": "showPassword",
|
|
14135
|
+
"type": {
|
|
14136
|
+
"text": "boolean"
|
|
14137
|
+
},
|
|
14138
|
+
"default": "false",
|
|
14004
14139
|
"fieldName": "showPassword",
|
|
14005
14140
|
"inheritedFrom": {
|
|
14006
14141
|
"name": "BaseInput",
|
|
@@ -14184,17 +14319,6 @@
|
|
|
14184
14319
|
"static": true,
|
|
14185
14320
|
"readonly": true
|
|
14186
14321
|
},
|
|
14187
|
-
{
|
|
14188
|
-
"kind": "method",
|
|
14189
|
-
"name": "_initializePrivateDefaults",
|
|
14190
|
-
"description": "Internal Defaults.",
|
|
14191
|
-
"privacy": "private",
|
|
14192
|
-
"return": {
|
|
14193
|
-
"type": {
|
|
14194
|
-
"text": "void"
|
|
14195
|
-
}
|
|
14196
|
-
}
|
|
14197
|
-
},
|
|
14198
14322
|
{
|
|
14199
14323
|
"kind": "field",
|
|
14200
14324
|
"name": "valueObject",
|
|
@@ -14585,41 +14709,138 @@
|
|
|
14585
14709
|
}
|
|
14586
14710
|
},
|
|
14587
14711
|
{
|
|
14588
|
-
"kind": "method",
|
|
14589
|
-
"name": "matchInputValueToCreditCard",
|
|
14590
|
-
"description": "Function to support credit-card feature type.",
|
|
14712
|
+
"kind": "method",
|
|
14713
|
+
"name": "matchInputValueToCreditCard",
|
|
14714
|
+
"description": "Function to support credit-card feature type.",
|
|
14715
|
+
"privacy": "private",
|
|
14716
|
+
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
14717
|
+
"return": {
|
|
14718
|
+
"type": {
|
|
14719
|
+
"text": "object"
|
|
14720
|
+
}
|
|
14721
|
+
}
|
|
14722
|
+
},
|
|
14723
|
+
{
|
|
14724
|
+
"kind": "field",
|
|
14725
|
+
"name": "activeLabel",
|
|
14726
|
+
"privacy": "public",
|
|
14727
|
+
"type": {
|
|
14728
|
+
"text": "boolean"
|
|
14729
|
+
},
|
|
14730
|
+
"description": "If set, the label will remain fixed in the active position.",
|
|
14731
|
+
"default": "false",
|
|
14732
|
+
"attribute": "activeLabel",
|
|
14733
|
+
"reflects": true
|
|
14734
|
+
},
|
|
14735
|
+
{
|
|
14736
|
+
"kind": "field",
|
|
14737
|
+
"name": "allowedInputTypes",
|
|
14738
|
+
"type": {
|
|
14739
|
+
"text": "array"
|
|
14740
|
+
},
|
|
14741
|
+
"privacy": "private",
|
|
14742
|
+
"default": "[ \"text\", \"number\", \"email\", \"password\", \"credit-card\", \"tel\" ]"
|
|
14743
|
+
},
|
|
14744
|
+
{
|
|
14745
|
+
"kind": "field",
|
|
14746
|
+
"name": "appearance",
|
|
14747
|
+
"privacy": "public",
|
|
14748
|
+
"type": {
|
|
14749
|
+
"text": "string"
|
|
14750
|
+
},
|
|
14751
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
14752
|
+
"default": "\"default\"",
|
|
14753
|
+
"attribute": "appearance",
|
|
14754
|
+
"reflects": true
|
|
14755
|
+
},
|
|
14756
|
+
{
|
|
14757
|
+
"kind": "field",
|
|
14758
|
+
"name": "dateFormatMap",
|
|
14759
|
+
"type": {
|
|
14760
|
+
"text": "object"
|
|
14761
|
+
},
|
|
14762
|
+
"privacy": "private",
|
|
14763
|
+
"default": "{ 'mm/dd/yyyy': 'dateMMDDYYYY', 'dd/mm/yyyy': 'dateDDMMYYYY', 'yyyy/mm/dd': 'dateYYYYMMDD', 'yyyy/dd/mm': 'dateYYYYDDMM', 'mm/yy': 'dateMMYY', 'yy/mm': 'dateYYMM', 'mm/yyyy': 'dateMMYYYY', 'yyyy/mm': 'dateYYYYMM', 'yy': 'dateYY', 'yyyy': 'dateYYYY', 'mm': 'dateMM', 'dd': 'dateDD', 'dd/mm': 'dateDDMM', 'mm/dd': 'dateMMDD' }"
|
|
14764
|
+
},
|
|
14765
|
+
{
|
|
14766
|
+
"kind": "field",
|
|
14767
|
+
"name": "disabled",
|
|
14768
|
+
"privacy": "public",
|
|
14769
|
+
"type": {
|
|
14770
|
+
"text": "boolean"
|
|
14771
|
+
},
|
|
14772
|
+
"description": "If set, disables the input.",
|
|
14773
|
+
"default": "false",
|
|
14774
|
+
"attribute": "disabled",
|
|
14775
|
+
"reflects": true
|
|
14776
|
+
},
|
|
14777
|
+
{
|
|
14778
|
+
"kind": "field",
|
|
14779
|
+
"name": "domHandler",
|
|
14591
14780
|
"privacy": "private",
|
|
14592
|
-
"
|
|
14593
|
-
"return": {
|
|
14594
|
-
"type": {
|
|
14595
|
-
"text": "object"
|
|
14596
|
-
}
|
|
14597
|
-
}
|
|
14781
|
+
"default": "new DomHandler()"
|
|
14598
14782
|
},
|
|
14599
14783
|
{
|
|
14600
14784
|
"kind": "field",
|
|
14601
|
-
"name": "
|
|
14785
|
+
"name": "dvInputOnly",
|
|
14602
14786
|
"privacy": "public",
|
|
14603
14787
|
"type": {
|
|
14604
|
-
"text": "
|
|
14788
|
+
"text": "boolean"
|
|
14605
14789
|
},
|
|
14606
|
-
"description": "
|
|
14607
|
-
"default": "
|
|
14608
|
-
"attribute": "
|
|
14790
|
+
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
14791
|
+
"default": "false",
|
|
14792
|
+
"attribute": "dvInputOnly",
|
|
14609
14793
|
"reflects": true
|
|
14610
14794
|
},
|
|
14611
14795
|
{
|
|
14612
14796
|
"kind": "field",
|
|
14613
|
-
"name": "
|
|
14797
|
+
"name": "hasValue",
|
|
14614
14798
|
"privacy": "public",
|
|
14615
14799
|
"type": {
|
|
14616
14800
|
"text": "boolean"
|
|
14617
14801
|
},
|
|
14618
|
-
"description": "
|
|
14802
|
+
"description": "Flag to indicate if the input currently has value.",
|
|
14803
|
+
"default": "false"
|
|
14804
|
+
},
|
|
14805
|
+
{
|
|
14806
|
+
"kind": "field",
|
|
14807
|
+
"name": "hideLabelVisually",
|
|
14808
|
+
"privacy": "private",
|
|
14809
|
+
"type": {
|
|
14810
|
+
"text": "boolean"
|
|
14811
|
+
},
|
|
14812
|
+
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
14619
14813
|
"default": "false",
|
|
14620
|
-
"attribute": "
|
|
14814
|
+
"attribute": "hideLabelVisually",
|
|
14815
|
+
"reflects": true
|
|
14816
|
+
},
|
|
14817
|
+
{
|
|
14818
|
+
"kind": "field",
|
|
14819
|
+
"name": "icon",
|
|
14820
|
+
"privacy": "public",
|
|
14821
|
+
"type": {
|
|
14822
|
+
"text": "boolean"
|
|
14823
|
+
},
|
|
14824
|
+
"description": "If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.",
|
|
14825
|
+
"default": "false",
|
|
14826
|
+
"attribute": "icon",
|
|
14621
14827
|
"reflects": true
|
|
14622
14828
|
},
|
|
14829
|
+
{
|
|
14830
|
+
"kind": "field",
|
|
14831
|
+
"name": "inputIconName",
|
|
14832
|
+
"privacy": "private",
|
|
14833
|
+
"default": "undefined"
|
|
14834
|
+
},
|
|
14835
|
+
{
|
|
14836
|
+
"kind": "field",
|
|
14837
|
+
"name": "label",
|
|
14838
|
+
"type": {
|
|
14839
|
+
"text": "string"
|
|
14840
|
+
},
|
|
14841
|
+
"privacy": "private",
|
|
14842
|
+
"default": "'Input label is undefined'"
|
|
14843
|
+
},
|
|
14623
14844
|
{
|
|
14624
14845
|
"kind": "field",
|
|
14625
14846
|
"name": "layout",
|
|
@@ -14706,14 +14927,14 @@
|
|
|
14706
14927
|
},
|
|
14707
14928
|
{
|
|
14708
14929
|
"kind": "field",
|
|
14709
|
-
"name": "
|
|
14930
|
+
"name": "noValidate",
|
|
14710
14931
|
"privacy": "public",
|
|
14711
14932
|
"type": {
|
|
14712
14933
|
"text": "boolean"
|
|
14713
14934
|
},
|
|
14714
|
-
"description": "
|
|
14935
|
+
"description": "If set, disables auto-validation on blur.",
|
|
14715
14936
|
"default": "false",
|
|
14716
|
-
"attribute": "
|
|
14937
|
+
"attribute": "noValidate",
|
|
14717
14938
|
"reflects": true
|
|
14718
14939
|
},
|
|
14719
14940
|
{
|
|
@@ -14732,6 +14953,23 @@
|
|
|
14732
14953
|
"module": "components/layoutElement/src/auroElement.js"
|
|
14733
14954
|
}
|
|
14734
14955
|
},
|
|
14956
|
+
{
|
|
14957
|
+
"kind": "field",
|
|
14958
|
+
"name": "_rawMaskValue",
|
|
14959
|
+
"default": "undefined"
|
|
14960
|
+
},
|
|
14961
|
+
{
|
|
14962
|
+
"kind": "field",
|
|
14963
|
+
"name": "required",
|
|
14964
|
+
"privacy": "public",
|
|
14965
|
+
"type": {
|
|
14966
|
+
"text": "boolean"
|
|
14967
|
+
},
|
|
14968
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
14969
|
+
"default": "false",
|
|
14970
|
+
"attribute": "required",
|
|
14971
|
+
"reflects": true
|
|
14972
|
+
},
|
|
14735
14973
|
{
|
|
14736
14974
|
"kind": "field",
|
|
14737
14975
|
"name": "setCustomValidityForType",
|
|
@@ -14745,14 +14983,23 @@
|
|
|
14745
14983
|
},
|
|
14746
14984
|
{
|
|
14747
14985
|
"kind": "field",
|
|
14748
|
-
"name": "
|
|
14986
|
+
"name": "setSelectionInputTypes",
|
|
14987
|
+
"type": {
|
|
14988
|
+
"text": "array"
|
|
14989
|
+
},
|
|
14990
|
+
"privacy": "private",
|
|
14991
|
+
"default": "[ \"text\", \"password\", \"email\" ]"
|
|
14992
|
+
},
|
|
14993
|
+
{
|
|
14994
|
+
"kind": "field",
|
|
14995
|
+
"name": "shape",
|
|
14749
14996
|
"privacy": "public",
|
|
14750
14997
|
"type": {
|
|
14751
14998
|
"text": "string"
|
|
14752
14999
|
},
|
|
14753
|
-
"attribute": "
|
|
15000
|
+
"attribute": "shape",
|
|
14754
15001
|
"reflects": true,
|
|
14755
|
-
"default": "'
|
|
15002
|
+
"default": "'classic'",
|
|
14756
15003
|
"inheritedFrom": {
|
|
14757
15004
|
"name": "AuroElement",
|
|
14758
15005
|
"module": "components/layoutElement/src/auroElement.js"
|
|
@@ -14760,19 +15007,62 @@
|
|
|
14760
15007
|
},
|
|
14761
15008
|
{
|
|
14762
15009
|
"kind": "field",
|
|
14763
|
-
"name": "
|
|
15010
|
+
"name": "showPassword",
|
|
15011
|
+
"privacy": "private",
|
|
15012
|
+
"type": {
|
|
15013
|
+
"text": "boolean"
|
|
15014
|
+
},
|
|
15015
|
+
"default": "false",
|
|
15016
|
+
"attribute": "showPassword"
|
|
15017
|
+
},
|
|
15018
|
+
{
|
|
15019
|
+
"kind": "field",
|
|
15020
|
+
"name": "size",
|
|
14764
15021
|
"privacy": "public",
|
|
14765
15022
|
"type": {
|
|
14766
15023
|
"text": "string"
|
|
14767
15024
|
},
|
|
14768
|
-
"attribute": "
|
|
15025
|
+
"attribute": "size",
|
|
14769
15026
|
"reflects": true,
|
|
14770
|
-
"default": "'
|
|
15027
|
+
"default": "'lg'",
|
|
14771
15028
|
"inheritedFrom": {
|
|
14772
15029
|
"name": "AuroElement",
|
|
14773
15030
|
"module": "components/layoutElement/src/auroElement.js"
|
|
14774
15031
|
}
|
|
14775
15032
|
},
|
|
15033
|
+
{
|
|
15034
|
+
"kind": "field",
|
|
15035
|
+
"name": "touched",
|
|
15036
|
+
"privacy": "private",
|
|
15037
|
+
"type": {
|
|
15038
|
+
"text": "boolean"
|
|
15039
|
+
},
|
|
15040
|
+
"description": "Indicates whether the input is in a dirty state (has been interacted with).",
|
|
15041
|
+
"default": "false"
|
|
15042
|
+
},
|
|
15043
|
+
{
|
|
15044
|
+
"kind": "field",
|
|
15045
|
+
"name": "uniqueId",
|
|
15046
|
+
"privacy": "private"
|
|
15047
|
+
},
|
|
15048
|
+
{
|
|
15049
|
+
"kind": "field",
|
|
15050
|
+
"name": "util",
|
|
15051
|
+
"privacy": "private",
|
|
15052
|
+
"default": "new AuroInputUtilities({ locale: this.locale, format: this.format })"
|
|
15053
|
+
},
|
|
15054
|
+
{
|
|
15055
|
+
"kind": "field",
|
|
15056
|
+
"name": "validation",
|
|
15057
|
+
"privacy": "private",
|
|
15058
|
+
"default": "new AuroFormValidation()"
|
|
15059
|
+
},
|
|
15060
|
+
{
|
|
15061
|
+
"kind": "field",
|
|
15062
|
+
"name": "validationCCLength",
|
|
15063
|
+
"privacy": "private",
|
|
15064
|
+
"default": "undefined"
|
|
15065
|
+
},
|
|
14776
15066
|
{
|
|
14777
15067
|
"kind": "field",
|
|
14778
15068
|
"name": "value",
|
|
@@ -14833,17 +15123,6 @@
|
|
|
14833
15123
|
"attribute": "a11yActivedescendant",
|
|
14834
15124
|
"reflects": true
|
|
14835
15125
|
},
|
|
14836
|
-
{
|
|
14837
|
-
"kind": "field",
|
|
14838
|
-
"name": "activeLabel",
|
|
14839
|
-
"privacy": "public",
|
|
14840
|
-
"type": {
|
|
14841
|
-
"text": "boolean"
|
|
14842
|
-
},
|
|
14843
|
-
"description": "If set, the label will remain fixed in the active position.",
|
|
14844
|
-
"attribute": "activeLabel",
|
|
14845
|
-
"reflects": true
|
|
14846
|
-
},
|
|
14847
15126
|
{
|
|
14848
15127
|
"kind": "field",
|
|
14849
15128
|
"name": "autocapitalize",
|
|
@@ -14887,17 +15166,6 @@
|
|
|
14887
15166
|
"description": "Custom help text message for email type validity.",
|
|
14888
15167
|
"attribute": "customValidityTypeEmail"
|
|
14889
15168
|
},
|
|
14890
|
-
{
|
|
14891
|
-
"kind": "field",
|
|
14892
|
-
"name": "dvInputOnly",
|
|
14893
|
-
"privacy": "public",
|
|
14894
|
-
"type": {
|
|
14895
|
-
"text": "boolean"
|
|
14896
|
-
},
|
|
14897
|
-
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
14898
|
-
"attribute": "dvInputOnly",
|
|
14899
|
-
"reflects": true
|
|
14900
|
-
},
|
|
14901
15169
|
{
|
|
14902
15170
|
"kind": "field",
|
|
14903
15171
|
"name": "error",
|
|
@@ -14939,37 +15207,6 @@
|
|
|
14939
15207
|
},
|
|
14940
15208
|
"description": "Flag to indicate if the input currently has focus."
|
|
14941
15209
|
},
|
|
14942
|
-
{
|
|
14943
|
-
"kind": "field",
|
|
14944
|
-
"name": "hasValue",
|
|
14945
|
-
"privacy": "public",
|
|
14946
|
-
"type": {
|
|
14947
|
-
"text": "boolean"
|
|
14948
|
-
},
|
|
14949
|
-
"description": "Flag to indicate if the input currently has value."
|
|
14950
|
-
},
|
|
14951
|
-
{
|
|
14952
|
-
"kind": "field",
|
|
14953
|
-
"name": "hideLabelVisually",
|
|
14954
|
-
"privacy": "private",
|
|
14955
|
-
"type": {
|
|
14956
|
-
"text": "boolean"
|
|
14957
|
-
},
|
|
14958
|
-
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
14959
|
-
"attribute": "hideLabelVisually",
|
|
14960
|
-
"reflects": true
|
|
14961
|
-
},
|
|
14962
|
-
{
|
|
14963
|
-
"kind": "field",
|
|
14964
|
-
"name": "icon",
|
|
14965
|
-
"privacy": "public",
|
|
14966
|
-
"type": {
|
|
14967
|
-
"text": "boolean"
|
|
14968
|
-
},
|
|
14969
|
-
"description": "If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.",
|
|
14970
|
-
"attribute": "icon",
|
|
14971
|
-
"reflects": true
|
|
14972
|
-
},
|
|
14973
15210
|
{
|
|
14974
15211
|
"kind": "field",
|
|
14975
15212
|
"name": "id",
|
|
@@ -15034,17 +15271,6 @@
|
|
|
15034
15271
|
"attribute": "nested",
|
|
15035
15272
|
"reflects": true
|
|
15036
15273
|
},
|
|
15037
|
-
{
|
|
15038
|
-
"kind": "field",
|
|
15039
|
-
"name": "noValidate",
|
|
15040
|
-
"privacy": "public",
|
|
15041
|
-
"type": {
|
|
15042
|
-
"text": "boolean"
|
|
15043
|
-
},
|
|
15044
|
-
"description": "If set, disables auto-validation on blur.",
|
|
15045
|
-
"attribute": "noValidate",
|
|
15046
|
-
"reflects": true
|
|
15047
|
-
},
|
|
15048
15274
|
{
|
|
15049
15275
|
"kind": "field",
|
|
15050
15276
|
"name": "pattern",
|
|
@@ -15158,12 +15384,6 @@
|
|
|
15158
15384
|
"description": "Custom help text message to display when validity = `valueMissing`.",
|
|
15159
15385
|
"attribute": "setCustomValidityValueMissing"
|
|
15160
15386
|
},
|
|
15161
|
-
{
|
|
15162
|
-
"kind": "field",
|
|
15163
|
-
"name": "showPassword",
|
|
15164
|
-
"privacy": "public",
|
|
15165
|
-
"attribute": "showPassword"
|
|
15166
|
-
},
|
|
15167
15387
|
{
|
|
15168
15388
|
"kind": "field",
|
|
15169
15389
|
"name": "simple",
|
|
@@ -15186,15 +15406,6 @@
|
|
|
15186
15406
|
"attribute": "spellcheck",
|
|
15187
15407
|
"reflects": true
|
|
15188
15408
|
},
|
|
15189
|
-
{
|
|
15190
|
-
"kind": "field",
|
|
15191
|
-
"name": "touched",
|
|
15192
|
-
"privacy": "private",
|
|
15193
|
-
"type": {
|
|
15194
|
-
"text": "boolean"
|
|
15195
|
-
},
|
|
15196
|
-
"description": "Indicates whether the input is in a dirty state (has been interacted with)."
|
|
15197
|
-
},
|
|
15198
15409
|
{
|
|
15199
15410
|
"kind": "field",
|
|
15200
15411
|
"name": "type",
|
|
@@ -15324,6 +15535,7 @@
|
|
|
15324
15535
|
"text": "boolean"
|
|
15325
15536
|
},
|
|
15326
15537
|
"description": "If set, the label will remain fixed in the active position.",
|
|
15538
|
+
"default": "false",
|
|
15327
15539
|
"fieldName": "activeLabel"
|
|
15328
15540
|
},
|
|
15329
15541
|
{
|
|
@@ -15382,6 +15594,7 @@
|
|
|
15382
15594
|
"text": "boolean"
|
|
15383
15595
|
},
|
|
15384
15596
|
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
15597
|
+
"default": "false",
|
|
15385
15598
|
"fieldName": "dvInputOnly"
|
|
15386
15599
|
},
|
|
15387
15600
|
{
|
|
@@ -15414,6 +15627,7 @@
|
|
|
15414
15627
|
"text": "boolean"
|
|
15415
15628
|
},
|
|
15416
15629
|
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
15630
|
+
"default": "false",
|
|
15417
15631
|
"fieldName": "hideLabelVisually"
|
|
15418
15632
|
},
|
|
15419
15633
|
{
|
|
@@ -15422,6 +15636,7 @@
|
|
|
15422
15636
|
"text": "boolean"
|
|
15423
15637
|
},
|
|
15424
15638
|
"description": "If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.",
|
|
15639
|
+
"default": "false",
|
|
15425
15640
|
"fieldName": "icon"
|
|
15426
15641
|
},
|
|
15427
15642
|
{
|
|
@@ -15515,6 +15730,7 @@
|
|
|
15515
15730
|
"text": "boolean"
|
|
15516
15731
|
},
|
|
15517
15732
|
"description": "If set, disables auto-validation on blur.",
|
|
15733
|
+
"default": "false",
|
|
15518
15734
|
"fieldName": "noValidate"
|
|
15519
15735
|
},
|
|
15520
15736
|
{
|
|
@@ -15634,6 +15850,10 @@
|
|
|
15634
15850
|
},
|
|
15635
15851
|
{
|
|
15636
15852
|
"name": "showPassword",
|
|
15853
|
+
"type": {
|
|
15854
|
+
"text": "boolean"
|
|
15855
|
+
},
|
|
15856
|
+
"default": "false",
|
|
15637
15857
|
"fieldName": "showPassword"
|
|
15638
15858
|
},
|
|
15639
15859
|
{
|
|
@@ -18927,6 +19147,18 @@
|
|
|
18927
19147
|
}
|
|
18928
19148
|
}
|
|
18929
19149
|
},
|
|
19150
|
+
{
|
|
19151
|
+
"kind": "method",
|
|
19152
|
+
"name": "_syncLabelText",
|
|
19153
|
+
"description": "Reads the current label slot text and pushes it to the dropdown bib\n(for dialog naming) and the menu (for listbox aria-label). Safe to call\nbefore either child has been wired up — each branch self-guards.",
|
|
19154
|
+
"privacy": "private"
|
|
19155
|
+
},
|
|
19156
|
+
{
|
|
19157
|
+
"kind": "method",
|
|
19158
|
+
"name": "_observeLabelChanges",
|
|
19159
|
+
"description": "Keeps the dialog/menu accessible names in sync when consumers mutate the\nlabel slot at runtime (e.g., i18n locale swap). `slotchange` alone is\ninsufficient — it doesn't fire when textContent of an already-assigned\nslotted node changes, which is the common case. We scope the observer to\nthe label node itself (not the whole host subtree) so option-content\nmutations don't trigger label re-syncs, and re-target on `slotchange`\nwhen consumers add or replace the label element.",
|
|
19160
|
+
"privacy": "private"
|
|
19161
|
+
},
|
|
18930
19162
|
{
|
|
18931
19163
|
"kind": "method",
|
|
18932
19164
|
"name": "register",
|
|
@@ -19645,15 +19877,6 @@
|
|
|
19645
19877
|
"module": "components/layoutElement/src/auroElement.js"
|
|
19646
19878
|
}
|
|
19647
19879
|
},
|
|
19648
|
-
{
|
|
19649
|
-
"kind": "field",
|
|
19650
|
-
"name": "options",
|
|
19651
|
-
"privacy": "private",
|
|
19652
|
-
"type": {
|
|
19653
|
-
"text": "array"
|
|
19654
|
-
},
|
|
19655
|
-
"attribute": "options"
|
|
19656
|
-
},
|
|
19657
19880
|
{
|
|
19658
19881
|
"kind": "field",
|
|
19659
19882
|
"name": "optionSelected",
|
|
@@ -20022,13 +20245,6 @@
|
|
|
20022
20245
|
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
20023
20246
|
"fieldName": "onDark"
|
|
20024
20247
|
},
|
|
20025
|
-
{
|
|
20026
|
-
"name": "options",
|
|
20027
|
-
"type": {
|
|
20028
|
-
"text": "array"
|
|
20029
|
-
},
|
|
20030
|
-
"fieldName": "options"
|
|
20031
|
-
},
|
|
20032
20248
|
{
|
|
20033
20249
|
"name": "optionSelected",
|
|
20034
20250
|
"type": {
|
|
@@ -20206,7 +20422,7 @@
|
|
|
20206
20422
|
"type": {
|
|
20207
20423
|
"text": "object"
|
|
20208
20424
|
},
|
|
20209
|
-
"default": "{ ArrowDown(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to last enabled option selectKeyboardStrategy.End(component, evt, ctx); } else { navigateArrow(component, 'down', { ctx }); } } else { component.dropdown.show(); } }, ArrowUp(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to first enabled option selectKeyboardStrategy.Home(component, evt, ctx); } else { navigateArrow(component, 'up', { ctx }); } } else { component.dropdown.show(); } }, Escape(component, evt, ctx) { // Always clear the type-ahead buffer — Escape is a universal cancel. // Safe to call when the buffer is empty. // eslint-disable-next-line no-underscore-dangle if (typeof component._clearTypeaheadBuffer === 'function') { // eslint-disable-next-line no-underscore-dangle component._clearTypeaheadBuffer(); } if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); component.dropdown.hide(); }, End(component, evt, ctx) {
|
|
20425
|
+
"default": "{ ArrowDown(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to last enabled option selectKeyboardStrategy.End(component, evt, ctx); } else { navigateArrow(component, 'down', { ctx }); } } else { component.dropdown.show(); } }, ArrowUp(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to first enabled option selectKeyboardStrategy.Home(component, evt, ctx); } else { navigateArrow(component, 'up', { ctx }); } } else { component.dropdown.show(); } }, Escape(component, evt, ctx) { // Always clear the type-ahead buffer — Escape is a universal cancel. // Safe to call when the buffer is empty. // eslint-disable-next-line no-underscore-dangle if (typeof component._clearTypeaheadBuffer === 'function') { // eslint-disable-next-line no-underscore-dangle component._clearTypeaheadBuffer(); } if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); component.dropdown.hide(); }, End(component, evt, ctx) { evt.preventDefault(); evt.stopPropagation(); // `pop()` is safe here: getEnabledOptions returns a fresh filtered array. const lastOption = getEnabledOptions(component.menu).pop(); if (!lastOption) { return; } // Pre-stash before show() so the auroDropdown-toggled handler's // `!optionActive` guard short-circuits the firstActive/selected fallback — // otherwise show() synchronously fires the handler and writes // aria-activedescendant once before we overwrite it. component.menu.updateActiveOption(lastOption); if (!ctx.isExpanded) { component.dropdown.show(); } }, Enter(component, evt, ctx) { // Prevent the keypress from bubbling to parent containers (e.g., forms) // which could interpret Enter as a submit. Matches APG select-only combobox // and native <select> behavior: Enter opens the listbox when closed, selects // the active option when open — it does not submit a parent form. evt.preventDefault(); evt.stopPropagation(); if (!ctx.isExpanded) { component.dropdown.show(); return; } component.menu.makeSelection(); }, Home(component, evt, ctx) { evt.preventDefault(); evt.stopPropagation(); const [firstOption] = getEnabledOptions(component.menu); if (!firstOption) { return; } // See End() for why this must run before show(). component.menu.updateActiveOption(firstOption); if (!ctx.isExpanded) { component.dropdown.show(); } }, Tab(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Tab selects the focused option and closes the popup per the // WAI-ARIA APG select-only combobox / listbox pattern. if (component.optionActive) { component.menu.makeSelection(); } component.dropdown.hide(); }, default(component, evt, ctx) { // Space resolves to either typeahead-buffer extension or bib toggle // depending on whether a type-ahead buffer is active. Mirrors native // <select> and the WAI-ARIA APG Listbox guidance: mid-typeahead space // is a search character (e.g. \"San Francisco\"); otherwise it toggles. if (evt.key === ' ') { evt.preventDefault(); evt.stopPropagation(); if (component.typeaheadBuffer && component.typeaheadBuffer.length > 0) { component.updateActiveOptionBasedOnKey(evt.key); return; } if (ctx.isExpanded) { component.dropdown.hide(); } else { component.dropdown.show(); } return; } component.updateActiveOptionBasedOnKey(evt.key); }, }"
|
|
20210
20426
|
}
|
|
20211
20427
|
],
|
|
20212
20428
|
"exports": [
|