@aurodesignsystem-dev/auro-formkit 0.0.0-pr1483.3 → 0.0.0-pr1488.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/checkbox/demo/customize.min.js +436 -14
- package/components/checkbox/demo/getting-started.min.js +436 -14
- package/components/checkbox/demo/index.min.js +436 -14
- package/components/checkbox/dist/index.js +436 -14
- package/components/checkbox/dist/registered.js +436 -14
- package/components/combobox/demo/customize.min.js +1482 -6618
- package/components/combobox/demo/getting-started.min.js +1482 -6618
- package/components/combobox/demo/index.min.js +1482 -6618
- package/components/combobox/demo/keyboard-behavior.md +68 -8
- package/components/combobox/dist/index.js +1489 -6625
- package/components/combobox/dist/registered.js +1489 -6625
- package/components/counter/demo/customize.min.js +437 -15
- package/components/counter/demo/index.min.js +437 -15
- package/components/counter/dist/index.js +436 -14
- package/components/counter/dist/registered.js +436 -14
- package/components/datepicker/demo/api.md +3 -10
- package/components/datepicker/demo/customize.md +6 -6
- package/components/datepicker/demo/index.md +4 -4
- package/components/datepicker/demo/index.min.js +2194 -7510
- package/components/datepicker/dist/index.js +2194 -7510
- package/components/datepicker/dist/registered.js +2194 -7510
- package/components/datepicker/dist/src/auro-calendar.d.ts +0 -6
- package/components/datepicker/dist/src/auro-datepicker.d.ts +10 -23
- package/components/datepicker/dist/src/utilities.d.ts +42 -10
- package/components/datepicker/dist/src/utilitiesCalendar.d.ts +2 -1
- package/components/dropdown/demo/customize.min.js +1 -1
- package/components/dropdown/demo/getting-started.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/customize.min.js +43986 -58306
- package/components/form/demo/getting-started.min.js +43986 -58306
- package/components/form/demo/index.min.js +43986 -58306
- package/components/form/demo/registerDemoDeps.min.js +43986 -58306
- package/components/input/demo/api.md +51 -57
- package/components/input/demo/customize.md +0 -160
- package/components/input/demo/customize.min.js +1011 -6565
- package/components/input/demo/getting-started.md +0 -11
- package/components/input/demo/getting-started.min.js +1010 -6564
- package/components/input/demo/index.md +3 -28
- package/components/input/demo/index.min.js +1010 -6564
- package/components/input/dist/auro-input.d.ts +6 -25
- package/components/input/dist/base-input.d.ts +69 -82
- package/components/input/dist/index.d.ts +1 -2
- package/components/input/dist/index.js +1003 -6599
- package/components/input/dist/registered.js +1010 -6564
- package/components/input/dist/utilities.d.ts +9 -68
- package/components/radio/demo/index.min.js +436 -14
- package/components/radio/dist/index.js +436 -14
- package/components/radio/dist/registered.js +436 -14
- package/components/select/demo/customize.min.js +455 -31
- package/components/select/demo/getting-started.min.js +455 -31
- package/components/select/demo/index.min.js +455 -31
- package/components/select/demo/keyboard-behavior.md +54 -8
- package/components/select/dist/index.js +455 -31
- package/components/select/dist/registered.js +455 -31
- package/custom-elements.json +717 -1199
- package/package.json +4 -4
- package/components/input/dist/auro-input-util.d.ts +0 -17
package/custom-elements.json
CHANGED
|
@@ -2435,7 +2435,7 @@
|
|
|
2435
2435
|
"type": {
|
|
2436
2436
|
"text": "object"
|
|
2437
2437
|
},
|
|
2438
|
-
"default": "{ ArrowDown(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowDown normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.metaKey) { component.activateLastEnabledAvailableOption(); } else { navigateArrow(component, 'down'); } } else { component.showBib(); } } }, ArrowUp(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowUp normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.metaKey) { component.activateFirstEnabledAvailableOption(); } else { navigateArrow(component, 'up'); } } else { component.showBib(); } } }, End(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateLastEnabledAvailableOption(); } }, Enter(component, evt, ctx) { if (isClearBtnFocused(ctx)) { // If the clear button has focus, let the browser activate it normally. // stopPropagation prevents parent containers (e.g., forms) from treating // Enter as a submit, but we must NOT call preventDefault — that would // block the browser's built-in \"Enter activates focused button\" behavior. evt.stopPropagation(); } else if (ctx.isExpanded && component.menu.optionActive) { component.menu.makeSelection(); if (ctx.isModal) { component.setTriggerInputFocus(); } evt.preventDefault(); evt.stopPropagation(); } else { // Prevent the keypress from bubbling to parent containers (e.g., forms) // which could interpret Enter as a submit or trigger other unintended behavior. // This is safe because showBib() opens the dialog programmatically, // not via event propagation. evt.preventDefault(); evt.stopPropagation(); component.showBib(); } }, Escape(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); if (ctx.isModal) { component.setTriggerInputFocus(); } component.hideBib(); }, Home(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateFirstEnabledAvailableOption(); } }, Tab(component, evt, ctx) { if (ctx.isExpanded && !isClearBtnFocused(ctx)) { // When the clear button is focused, Tab events do not bubble out of // its shadow DOM, so this handler only fires when the clear button // is NOT focused. In that case, select the active option and close. component.menu.makeSelection(); component.hideBib(); // In fullscreen modal mode, closing the dialog does not // automatically restores focus to the input. In the tab case, // Explicitly move focus to the trigger's clear button so the // user can continues tabbing through the page normally. if (ctx.isModal && !evt.shiftKey) { component.setClearBtnFocus(); } } }, }"
|
|
2438
|
+
"default": "{ ArrowDown(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowDown normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { component.activateLastEnabledAvailableOption(); } else { navigateArrow(component, 'down'); } } else { component.showBib(); } } }, ArrowUp(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowUp normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { component.activateFirstEnabledAvailableOption(); } else { navigateArrow(component, 'up'); } } else { component.showBib(); } } }, End(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateLastEnabledAvailableOption(); } }, Enter(component, evt, ctx) { if (isClearBtnFocused(ctx)) { // If the clear button has focus, let the browser activate it normally. // stopPropagation prevents parent containers (e.g., forms) from treating // Enter as a submit, but we must NOT call preventDefault — that would // block the browser's built-in \"Enter activates focused button\" behavior. evt.stopPropagation(); } else if (ctx.isExpanded && component.menu.optionActive) { component.menu.makeSelection(); if (ctx.isModal) { component.setTriggerInputFocus(); } evt.preventDefault(); evt.stopPropagation(); } else { // Prevent the keypress from bubbling to parent containers (e.g., forms) // which could interpret Enter as a submit or trigger other unintended behavior. // This is safe because showBib() opens the dialog programmatically, // not via event propagation. evt.preventDefault(); evt.stopPropagation(); component.showBib(); } }, Escape(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); if (ctx.isModal) { component.setTriggerInputFocus(); } component.hideBib(); }, Home(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateFirstEnabledAvailableOption(); } }, Tab(component, evt, ctx) { if (ctx.isExpanded && !isClearBtnFocused(ctx)) { // When the clear button is focused, Tab events do not bubble out of // its shadow DOM, so this handler only fires when the clear button // is NOT focused. In that case, select the active option and close. component.menu.makeSelection(); component.hideBib(); // In fullscreen modal mode, closing the dialog does not // automatically restores focus to the input. In the tab case, // Explicitly move focus to the trigger's clear button so the // user can continues tabbing through the page normally. if (ctx.isModal && !evt.shiftKey) { component.setClearBtnFocus(); } } }, }"
|
|
2439
2439
|
}
|
|
2440
2440
|
],
|
|
2441
2441
|
"exports": [
|
|
@@ -4882,36 +4882,6 @@
|
|
|
4882
4882
|
"description": "",
|
|
4883
4883
|
"name": "AuroCalendar",
|
|
4884
4884
|
"members": [
|
|
4885
|
-
{
|
|
4886
|
-
"kind": "field",
|
|
4887
|
-
"name": "centralDateObject",
|
|
4888
|
-
"return": {
|
|
4889
|
-
"type": {
|
|
4890
|
-
"text": "Date|undefined"
|
|
4891
|
-
}
|
|
4892
|
-
},
|
|
4893
|
-
"readonly": true
|
|
4894
|
-
},
|
|
4895
|
-
{
|
|
4896
|
-
"kind": "field",
|
|
4897
|
-
"name": "minDateObject",
|
|
4898
|
-
"return": {
|
|
4899
|
-
"type": {
|
|
4900
|
-
"text": "Date|undefined"
|
|
4901
|
-
}
|
|
4902
|
-
},
|
|
4903
|
-
"readonly": true
|
|
4904
|
-
},
|
|
4905
|
-
{
|
|
4906
|
-
"kind": "field",
|
|
4907
|
-
"name": "maxDateObject",
|
|
4908
|
-
"return": {
|
|
4909
|
-
"type": {
|
|
4910
|
-
"text": "Date|undefined"
|
|
4911
|
-
}
|
|
4912
|
-
},
|
|
4913
|
-
"readonly": true
|
|
4914
|
-
},
|
|
4915
4885
|
{
|
|
4916
4886
|
"kind": "method",
|
|
4917
4887
|
"name": "handlePrevMonth",
|
|
@@ -5628,114 +5598,23 @@
|
|
|
5628
5598
|
}
|
|
5629
5599
|
}
|
|
5630
5600
|
},
|
|
5631
|
-
{
|
|
5632
|
-
"kind": "field",
|
|
5633
|
-
"name": "valueObject",
|
|
5634
|
-
"description": "Converts date object into a string.",
|
|
5635
|
-
"privacy": "private",
|
|
5636
|
-
"parameters": [
|
|
5637
|
-
{
|
|
5638
|
-
"description": "Unix timestamp to be converted to a date object.",
|
|
5639
|
-
"name": "time",
|
|
5640
|
-
"type": {
|
|
5641
|
-
"text": "String"
|
|
5642
|
-
}
|
|
5643
|
-
}
|
|
5644
|
-
],
|
|
5645
|
-
"return": {
|
|
5646
|
-
"type": {
|
|
5647
|
-
"text": "Date|undefined"
|
|
5648
|
-
}
|
|
5649
|
-
},
|
|
5650
|
-
"readonly": true
|
|
5651
|
-
},
|
|
5652
|
-
{
|
|
5653
|
-
"kind": "field",
|
|
5654
|
-
"name": "valueEndObject",
|
|
5655
|
-
"return": {
|
|
5656
|
-
"type": {
|
|
5657
|
-
"text": "Date|undefined"
|
|
5658
|
-
}
|
|
5659
|
-
},
|
|
5660
|
-
"readonly": true
|
|
5661
|
-
},
|
|
5662
|
-
{
|
|
5663
|
-
"kind": "field",
|
|
5664
|
-
"name": "minDateObject",
|
|
5665
|
-
"return": {
|
|
5666
|
-
"type": {
|
|
5667
|
-
"text": "Date|undefined"
|
|
5668
|
-
}
|
|
5669
|
-
},
|
|
5670
|
-
"readonly": true
|
|
5671
|
-
},
|
|
5672
|
-
{
|
|
5673
|
-
"kind": "field",
|
|
5674
|
-
"name": "maxDateObject",
|
|
5675
|
-
"return": {
|
|
5676
|
-
"type": {
|
|
5677
|
-
"text": "Date|undefined"
|
|
5678
|
-
}
|
|
5679
|
-
},
|
|
5680
|
-
"readonly": true
|
|
5681
|
-
},
|
|
5682
|
-
{
|
|
5683
|
-
"kind": "field",
|
|
5684
|
-
"name": "calendarStartDateObject",
|
|
5685
|
-
"return": {
|
|
5686
|
-
"type": {
|
|
5687
|
-
"text": "Date|undefined"
|
|
5688
|
-
}
|
|
5689
|
-
},
|
|
5690
|
-
"readonly": true
|
|
5691
|
-
},
|
|
5692
|
-
{
|
|
5693
|
-
"kind": "field",
|
|
5694
|
-
"name": "calendarEndDateObject",
|
|
5695
|
-
"return": {
|
|
5696
|
-
"type": {
|
|
5697
|
-
"text": "Date|undefined"
|
|
5698
|
-
}
|
|
5699
|
-
},
|
|
5700
|
-
"readonly": true
|
|
5701
|
-
},
|
|
5702
|
-
{
|
|
5703
|
-
"kind": "field",
|
|
5704
|
-
"name": "centralDateObject",
|
|
5705
|
-
"return": {
|
|
5706
|
-
"type": {
|
|
5707
|
-
"text": "Date|undefined"
|
|
5708
|
-
}
|
|
5709
|
-
},
|
|
5710
|
-
"readonly": true
|
|
5711
|
-
},
|
|
5712
|
-
{
|
|
5713
|
-
"kind": "field",
|
|
5714
|
-
"name": "calendarFocusDateObject",
|
|
5715
|
-
"return": {
|
|
5716
|
-
"type": {
|
|
5717
|
-
"text": "Date|undefined"
|
|
5718
|
-
}
|
|
5719
|
-
},
|
|
5720
|
-
"readonly": true
|
|
5721
|
-
},
|
|
5722
5601
|
{
|
|
5723
5602
|
"kind": "method",
|
|
5724
5603
|
"name": "convertWcTimeToDate",
|
|
5725
5604
|
"parameters": [
|
|
5726
5605
|
{
|
|
5727
5606
|
"name": "time",
|
|
5728
|
-
"description": "Unix timestamp
|
|
5607
|
+
"description": "Unix timestamp to be converted to a date object.",
|
|
5729
5608
|
"type": {
|
|
5730
|
-
"text": "
|
|
5609
|
+
"text": "String"
|
|
5731
5610
|
}
|
|
5732
5611
|
}
|
|
5733
5612
|
],
|
|
5734
|
-
"description": "Converts
|
|
5613
|
+
"description": "Converts date object into a string.",
|
|
5735
5614
|
"privacy": "private",
|
|
5736
5615
|
"return": {
|
|
5737
5616
|
"type": {
|
|
5738
|
-
"text": "
|
|
5617
|
+
"text": "Date"
|
|
5739
5618
|
}
|
|
5740
5619
|
}
|
|
5741
5620
|
},
|
|
@@ -6704,7 +6583,7 @@
|
|
|
6704
6583
|
"type": {
|
|
6705
6584
|
"text": "array"
|
|
6706
6585
|
},
|
|
6707
|
-
"description": "Dates that the user should have for reference as part of their decision making when selecting a date.\nThis should be a JSON string array of
|
|
6586
|
+
"description": "Dates that the user should have for reference as part of their decision making when selecting a date.\nThis should be a JSON string array of dates in the format of `MM/DD/YYYY`.",
|
|
6708
6587
|
"attribute": "referenceDates",
|
|
6709
6588
|
"reflects": true
|
|
6710
6589
|
},
|
|
@@ -6800,10 +6679,17 @@
|
|
|
6800
6679
|
}
|
|
6801
6680
|
],
|
|
6802
6681
|
"events": [
|
|
6682
|
+
{
|
|
6683
|
+
"name": "auroDatePicker-valueSet",
|
|
6684
|
+
"type": {
|
|
6685
|
+
"text": "Event"
|
|
6686
|
+
},
|
|
6687
|
+
"description": "Notifies that the component has a new value set."
|
|
6688
|
+
},
|
|
6803
6689
|
{
|
|
6804
6690
|
"name": "input",
|
|
6805
6691
|
"type": {
|
|
6806
|
-
"text": "
|
|
6692
|
+
"text": "Event"
|
|
6807
6693
|
}
|
|
6808
6694
|
},
|
|
6809
6695
|
{
|
|
@@ -7099,7 +6985,7 @@
|
|
|
7099
6985
|
"type": {
|
|
7100
6986
|
"text": "array"
|
|
7101
6987
|
},
|
|
7102
|
-
"description": "Dates that the user should have for reference as part of their decision making when selecting a date.\nThis should be a JSON string array of
|
|
6988
|
+
"description": "Dates that the user should have for reference as part of their decision making when selecting a date.\nThis should be a JSON string array of dates in the format of `MM/DD/YYYY`.",
|
|
7103
6989
|
"fieldName": "referenceDates"
|
|
7104
6990
|
},
|
|
7105
6991
|
{
|
|
@@ -7339,29 +7225,111 @@
|
|
|
7339
7225
|
"description": "",
|
|
7340
7226
|
"name": "AuroDatepickerUtilities",
|
|
7341
7227
|
"members": [
|
|
7228
|
+
{
|
|
7229
|
+
"kind": "method",
|
|
7230
|
+
"name": "validDateStr",
|
|
7231
|
+
"parameters": [
|
|
7232
|
+
{
|
|
7233
|
+
"name": "date",
|
|
7234
|
+
"description": "Date to validate.",
|
|
7235
|
+
"type": {
|
|
7236
|
+
"text": "String"
|
|
7237
|
+
}
|
|
7238
|
+
},
|
|
7239
|
+
{
|
|
7240
|
+
"name": "format",
|
|
7241
|
+
"description": "Date format to validate against.",
|
|
7242
|
+
"type": {
|
|
7243
|
+
"text": "String"
|
|
7244
|
+
}
|
|
7245
|
+
}
|
|
7246
|
+
],
|
|
7247
|
+
"description": "Returns true if value passed in is a valid date.",
|
|
7248
|
+
"privacy": "private",
|
|
7249
|
+
"return": {
|
|
7250
|
+
"type": {
|
|
7251
|
+
"text": "Boolean"
|
|
7252
|
+
}
|
|
7253
|
+
}
|
|
7254
|
+
},
|
|
7255
|
+
{
|
|
7256
|
+
"kind": "method",
|
|
7257
|
+
"name": "toNorthAmericanFormat",
|
|
7258
|
+
"parameters": [
|
|
7259
|
+
{
|
|
7260
|
+
"name": "dateStr",
|
|
7261
|
+
"description": "Date to validate.",
|
|
7262
|
+
"type": {
|
|
7263
|
+
"text": "String"
|
|
7264
|
+
}
|
|
7265
|
+
},
|
|
7266
|
+
{
|
|
7267
|
+
"name": "format",
|
|
7268
|
+
"description": "Date format to validate against.",
|
|
7269
|
+
"type": {
|
|
7270
|
+
"text": "String"
|
|
7271
|
+
}
|
|
7272
|
+
}
|
|
7273
|
+
],
|
|
7274
|
+
"description": "Converts a date string to a North American date format.",
|
|
7275
|
+
"privacy": "private",
|
|
7276
|
+
"return": {
|
|
7277
|
+
"type": {
|
|
7278
|
+
"text": "Boolean"
|
|
7279
|
+
}
|
|
7280
|
+
}
|
|
7281
|
+
},
|
|
7282
|
+
{
|
|
7283
|
+
"kind": "method",
|
|
7284
|
+
"name": "parseDate",
|
|
7285
|
+
"parameters": [
|
|
7286
|
+
{
|
|
7287
|
+
"name": "dateStr",
|
|
7288
|
+
"description": "Date string to parse.",
|
|
7289
|
+
"type": {
|
|
7290
|
+
"text": "string"
|
|
7291
|
+
}
|
|
7292
|
+
},
|
|
7293
|
+
{
|
|
7294
|
+
"name": "format",
|
|
7295
|
+
"description": "Date format to parse.",
|
|
7296
|
+
"type": {
|
|
7297
|
+
"text": "string"
|
|
7298
|
+
}
|
|
7299
|
+
}
|
|
7300
|
+
],
|
|
7301
|
+
"description": "Parses a date string into its components.",
|
|
7302
|
+
"privacy": "private",
|
|
7303
|
+
"return": {
|
|
7304
|
+
"type": {
|
|
7305
|
+
"text": "void"
|
|
7306
|
+
}
|
|
7307
|
+
}
|
|
7308
|
+
},
|
|
7342
7309
|
{
|
|
7343
7310
|
"kind": "method",
|
|
7344
7311
|
"name": "toCustomFormat",
|
|
7345
7312
|
"parameters": [
|
|
7346
7313
|
{
|
|
7347
|
-
"name": "
|
|
7348
|
-
"description": "
|
|
7314
|
+
"name": "dateStr",
|
|
7315
|
+
"description": "Date string to parse.",
|
|
7349
7316
|
"type": {
|
|
7350
7317
|
"text": "string"
|
|
7351
7318
|
}
|
|
7352
7319
|
},
|
|
7353
7320
|
{
|
|
7354
7321
|
"name": "format",
|
|
7355
|
-
"description": "
|
|
7322
|
+
"description": "Date format to parse.",
|
|
7356
7323
|
"type": {
|
|
7357
7324
|
"text": "string"
|
|
7358
7325
|
}
|
|
7359
7326
|
}
|
|
7360
7327
|
],
|
|
7361
|
-
"description": "Converts
|
|
7328
|
+
"description": "Converts a date string to a custom date format.",
|
|
7329
|
+
"privacy": "private",
|
|
7362
7330
|
"return": {
|
|
7363
7331
|
"type": {
|
|
7364
|
-
"text": "
|
|
7332
|
+
"text": "void"
|
|
7365
7333
|
}
|
|
7366
7334
|
}
|
|
7367
7335
|
},
|
|
@@ -7410,6 +7378,26 @@
|
|
|
7410
7378
|
}
|
|
7411
7379
|
}
|
|
7412
7380
|
},
|
|
7381
|
+
{
|
|
7382
|
+
"kind": "method",
|
|
7383
|
+
"name": "getDateAsString",
|
|
7384
|
+
"parameters": [
|
|
7385
|
+
{
|
|
7386
|
+
"name": "date",
|
|
7387
|
+
"description": "Date to convert to string.",
|
|
7388
|
+
"type": {
|
|
7389
|
+
"text": "Object"
|
|
7390
|
+
}
|
|
7391
|
+
}
|
|
7392
|
+
],
|
|
7393
|
+
"description": "Convert a date object to string format.",
|
|
7394
|
+
"privacy": "private",
|
|
7395
|
+
"return": {
|
|
7396
|
+
"type": {
|
|
7397
|
+
"text": "Object"
|
|
7398
|
+
}
|
|
7399
|
+
}
|
|
7400
|
+
},
|
|
7413
7401
|
{
|
|
7414
7402
|
"kind": "method",
|
|
7415
7403
|
"name": "formatTwoDigits",
|
|
@@ -7517,6 +7505,13 @@
|
|
|
7517
7505
|
"type": {
|
|
7518
7506
|
"text": "String"
|
|
7519
7507
|
}
|
|
7508
|
+
},
|
|
7509
|
+
{
|
|
7510
|
+
"name": "format",
|
|
7511
|
+
"description": "The format of the date.",
|
|
7512
|
+
"type": {
|
|
7513
|
+
"text": "String"
|
|
7514
|
+
}
|
|
7520
7515
|
}
|
|
7521
7516
|
],
|
|
7522
7517
|
"description": "Scroll the calendar month list to a given valid date if in mobile view.",
|
|
@@ -9977,56 +9972,6 @@
|
|
|
9977
9972
|
"declarations": [],
|
|
9978
9973
|
"exports": []
|
|
9979
9974
|
},
|
|
9980
|
-
{
|
|
9981
|
-
"kind": "javascript-module",
|
|
9982
|
-
"path": "components/input/src/auro-input-util.js",
|
|
9983
|
-
"declarations": [
|
|
9984
|
-
{
|
|
9985
|
-
"kind": "function",
|
|
9986
|
-
"name": "formatISODate",
|
|
9987
|
-
"parameters": [
|
|
9988
|
-
{
|
|
9989
|
-
"name": "isoStr",
|
|
9990
|
-
"description": "ISO date string in yyyy-mm-dd format.",
|
|
9991
|
-
"type": {
|
|
9992
|
-
"text": "string"
|
|
9993
|
-
}
|
|
9994
|
-
},
|
|
9995
|
-
{
|
|
9996
|
-
"name": "format",
|
|
9997
|
-
"description": "Target display format (e.g. \"mm/dd/yyyy\", \"dd/mm/yyyy\", \"yyyy/mm/dd\").",
|
|
9998
|
-
"type": {
|
|
9999
|
-
"text": "string"
|
|
10000
|
-
}
|
|
10001
|
-
}
|
|
10002
|
-
],
|
|
10003
|
-
"description": "Converts an ISO date string (yyyy-mm-dd) to a display string in the given format.\n\nMirrors the approach of `toISOFormatString` in dateFormatter.mjs but in reverse:\ninstead of Date → ISO, this goes ISO → display format.",
|
|
10004
|
-
"return": {
|
|
10005
|
-
"type": {
|
|
10006
|
-
"text": "string|undefined"
|
|
10007
|
-
}
|
|
10008
|
-
}
|
|
10009
|
-
},
|
|
10010
|
-
{
|
|
10011
|
-
"kind": "variable",
|
|
10012
|
-
"name": "AuroInputUtil",
|
|
10013
|
-
"type": {
|
|
10014
|
-
"text": "object"
|
|
10015
|
-
},
|
|
10016
|
-
"default": "{ toISOFormatString: dateFormatter.toISOFormatString, formatISODate, toFormattedValue: AuroInputUtilities.prototype.toFormattedValue.bind(new AuroInputUtilities()), }"
|
|
10017
|
-
}
|
|
10018
|
-
],
|
|
10019
|
-
"exports": [
|
|
10020
|
-
{
|
|
10021
|
-
"kind": "js",
|
|
10022
|
-
"name": "AuroInputUtil",
|
|
10023
|
-
"declaration": {
|
|
10024
|
-
"name": "AuroInputUtil",
|
|
10025
|
-
"module": "components/input/src/auro-input-util.js"
|
|
10026
|
-
}
|
|
10027
|
-
}
|
|
10028
|
-
]
|
|
10029
|
-
},
|
|
10030
9975
|
{
|
|
10031
9976
|
"kind": "javascript-module",
|
|
10032
9977
|
"path": "components/input/src/auro-input.js",
|
|
@@ -10271,65 +10216,23 @@
|
|
|
10271
10216
|
},
|
|
10272
10217
|
{
|
|
10273
10218
|
"kind": "method",
|
|
10274
|
-
"name": "
|
|
10275
|
-
"description": "Function to determine if
|
|
10219
|
+
"name": "hasTypeIcon",
|
|
10220
|
+
"description": "Function to determine if the input is meant to render an icon visualizing the input type.",
|
|
10276
10221
|
"privacy": "private",
|
|
10277
10222
|
"return": {
|
|
10278
10223
|
"type": {
|
|
10279
|
-
"text": "
|
|
10224
|
+
"text": "boolean"
|
|
10280
10225
|
}
|
|
10281
10226
|
}
|
|
10282
10227
|
},
|
|
10283
10228
|
{
|
|
10284
10229
|
"kind": "method",
|
|
10285
|
-
"name": "
|
|
10286
|
-
"description": "
|
|
10230
|
+
"name": "checkDisplayValueSlotChange",
|
|
10231
|
+
"description": "Function to determine if there is any displayValue content to render.",
|
|
10287
10232
|
"privacy": "private",
|
|
10288
|
-
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
10289
10233
|
"return": {
|
|
10290
10234
|
"type": {
|
|
10291
|
-
"text": "
|
|
10292
|
-
}
|
|
10293
|
-
}
|
|
10294
|
-
},
|
|
10295
|
-
{
|
|
10296
|
-
"kind": "method",
|
|
10297
|
-
"name": "getInputType",
|
|
10298
|
-
"parameters": [
|
|
10299
|
-
{
|
|
10300
|
-
"name": "type",
|
|
10301
|
-
"description": "Value entered into component prop.",
|
|
10302
|
-
"type": {
|
|
10303
|
-
"text": "string"
|
|
10304
|
-
}
|
|
10305
|
-
}
|
|
10306
|
-
],
|
|
10307
|
-
"description": "Validates against list of supported this.allowedInputTypes; return type=text if invalid request.",
|
|
10308
|
-
"privacy": "private",
|
|
10309
|
-
"return": {
|
|
10310
|
-
"type": {
|
|
10311
|
-
"text": "string"
|
|
10312
|
-
}
|
|
10313
|
-
}
|
|
10314
|
-
},
|
|
10315
|
-
{
|
|
10316
|
-
"kind": "method",
|
|
10317
|
-
"name": "handleClickShowPassword",
|
|
10318
|
-
"description": "Function to support show-password feature.",
|
|
10319
|
-
"privacy": "private",
|
|
10320
|
-
"return": {
|
|
10321
|
-
"type": {
|
|
10322
|
-
"text": "void"
|
|
10323
|
-
}
|
|
10324
|
-
}
|
|
10325
|
-
},
|
|
10326
|
-
{
|
|
10327
|
-
"kind": "method",
|
|
10328
|
-
"name": "definePattern",
|
|
10329
|
-
"privacy": "private",
|
|
10330
|
-
"return": {
|
|
10331
|
-
"type": {
|
|
10332
|
-
"text": "string"
|
|
10235
|
+
"text": "void"
|
|
10333
10236
|
}
|
|
10334
10237
|
}
|
|
10335
10238
|
},
|
|
@@ -10505,7 +10408,7 @@
|
|
|
10505
10408
|
},
|
|
10506
10409
|
{
|
|
10507
10410
|
"kind": "method",
|
|
10508
|
-
"name": "
|
|
10411
|
+
"name": "_initializeDefaults",
|
|
10509
10412
|
"description": "Internal Defaults.",
|
|
10510
10413
|
"privacy": "private",
|
|
10511
10414
|
"return": {
|
|
@@ -10518,82 +10421,6 @@
|
|
|
10518
10421
|
"module": "components/input/src/base-input.js"
|
|
10519
10422
|
}
|
|
10520
10423
|
},
|
|
10521
|
-
{
|
|
10522
|
-
"kind": "field",
|
|
10523
|
-
"name": "valueObject",
|
|
10524
|
-
"description": "Read-only Date object representation of `value` for full date formats.",
|
|
10525
|
-
"return": {
|
|
10526
|
-
"type": {
|
|
10527
|
-
"text": "Date|undefined"
|
|
10528
|
-
}
|
|
10529
|
-
},
|
|
10530
|
-
"readonly": true,
|
|
10531
|
-
"inheritedFrom": {
|
|
10532
|
-
"name": "BaseInput",
|
|
10533
|
-
"module": "components/input/src/base-input.js"
|
|
10534
|
-
}
|
|
10535
|
-
},
|
|
10536
|
-
{
|
|
10537
|
-
"kind": "field",
|
|
10538
|
-
"name": "minObject",
|
|
10539
|
-
"description": "Read-only Date object representation of `min` for full date formats.",
|
|
10540
|
-
"return": {
|
|
10541
|
-
"type": {
|
|
10542
|
-
"text": "Date|undefined"
|
|
10543
|
-
}
|
|
10544
|
-
},
|
|
10545
|
-
"readonly": true,
|
|
10546
|
-
"inheritedFrom": {
|
|
10547
|
-
"name": "BaseInput",
|
|
10548
|
-
"module": "components/input/src/base-input.js"
|
|
10549
|
-
}
|
|
10550
|
-
},
|
|
10551
|
-
{
|
|
10552
|
-
"kind": "field",
|
|
10553
|
-
"name": "maxObject",
|
|
10554
|
-
"description": "Read-only Date object representation of `max` for full date formats.",
|
|
10555
|
-
"return": {
|
|
10556
|
-
"type": {
|
|
10557
|
-
"text": "Date|undefined"
|
|
10558
|
-
}
|
|
10559
|
-
},
|
|
10560
|
-
"readonly": true,
|
|
10561
|
-
"inheritedFrom": {
|
|
10562
|
-
"name": "BaseInput",
|
|
10563
|
-
"module": "components/input/src/base-input.js"
|
|
10564
|
-
}
|
|
10565
|
-
},
|
|
10566
|
-
{
|
|
10567
|
-
"kind": "method",
|
|
10568
|
-
"name": "setDateObjectProperty",
|
|
10569
|
-
"parameters": [
|
|
10570
|
-
{
|
|
10571
|
-
"name": "propertyName",
|
|
10572
|
-
"description": "Public object property name.",
|
|
10573
|
-
"type": {
|
|
10574
|
-
"text": "'valueObject'|'minObject'|'maxObject'"
|
|
10575
|
-
}
|
|
10576
|
-
},
|
|
10577
|
-
{
|
|
10578
|
-
"name": "propertyValue",
|
|
10579
|
-
"description": "Value to assign.",
|
|
10580
|
-
"type": {
|
|
10581
|
-
"text": "Date|undefined"
|
|
10582
|
-
}
|
|
10583
|
-
}
|
|
10584
|
-
],
|
|
10585
|
-
"description": "Internal setter for readonly date object properties.",
|
|
10586
|
-
"privacy": "private",
|
|
10587
|
-
"return": {
|
|
10588
|
-
"type": {
|
|
10589
|
-
"text": "void"
|
|
10590
|
-
}
|
|
10591
|
-
},
|
|
10592
|
-
"inheritedFrom": {
|
|
10593
|
-
"name": "BaseInput",
|
|
10594
|
-
"module": "components/input/src/base-input.js"
|
|
10595
|
-
}
|
|
10596
|
-
},
|
|
10597
10424
|
{
|
|
10598
10425
|
"kind": "method",
|
|
10599
10426
|
"name": "patchInputEvent",
|
|
@@ -10622,7 +10449,6 @@
|
|
|
10622
10449
|
"kind": "method",
|
|
10623
10450
|
"name": "setCustomHelpTextMessage",
|
|
10624
10451
|
"privacy": "private",
|
|
10625
|
-
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
10626
10452
|
"return": {
|
|
10627
10453
|
"type": {
|
|
10628
10454
|
"text": "void"
|
|
@@ -10649,57 +10475,8 @@
|
|
|
10649
10475
|
},
|
|
10650
10476
|
{
|
|
10651
10477
|
"kind": "method",
|
|
10652
|
-
"name": "
|
|
10653
|
-
"
|
|
10654
|
-
{
|
|
10655
|
-
"name": "changedProperties",
|
|
10656
|
-
"default": "undefined",
|
|
10657
|
-
"description": "Optional map of changed properties used to limit which values are synchronized.",
|
|
10658
|
-
"optional": true,
|
|
10659
|
-
"type": {
|
|
10660
|
-
"text": "Map<string, unknown>|undefined"
|
|
10661
|
-
}
|
|
10662
|
-
}
|
|
10663
|
-
],
|
|
10664
|
-
"description": "Synchronizes the ISO string values and Date object representations for date-related properties.\nThis keeps the model and display values aligned when either side changes.\n\nWhen a full date format is in use, this method updates `value`, `min`, and `max` from their corresponding\nDate objects or vice versa, based on which properties have changed. It only runs when the current configuration\nrepresents a full year/month/day date format.",
|
|
10665
|
-
"return": {
|
|
10666
|
-
"type": {
|
|
10667
|
-
"text": "void"
|
|
10668
|
-
}
|
|
10669
|
-
},
|
|
10670
|
-
"privacy": "private",
|
|
10671
|
-
"inheritedFrom": {
|
|
10672
|
-
"name": "BaseInput",
|
|
10673
|
-
"module": "components/input/src/base-input.js"
|
|
10674
|
-
}
|
|
10675
|
-
},
|
|
10676
|
-
{
|
|
10677
|
-
"kind": "method",
|
|
10678
|
-
"name": "syncSingleDateValue",
|
|
10679
|
-
"parameters": [
|
|
10680
|
-
{
|
|
10681
|
-
"name": "changedProperties",
|
|
10682
|
-
"description": "Map of changed properties from Lit.",
|
|
10683
|
-
"type": {
|
|
10684
|
-
"text": "Map<string, unknown>|undefined"
|
|
10685
|
-
}
|
|
10686
|
-
},
|
|
10687
|
-
{
|
|
10688
|
-
"name": "objectProperty",
|
|
10689
|
-
"description": "Date object property name.",
|
|
10690
|
-
"type": {
|
|
10691
|
-
"text": "string"
|
|
10692
|
-
}
|
|
10693
|
-
},
|
|
10694
|
-
{
|
|
10695
|
-
"name": "valueProperty",
|
|
10696
|
-
"description": "ISO string property name.",
|
|
10697
|
-
"type": {
|
|
10698
|
-
"text": "string"
|
|
10699
|
-
}
|
|
10700
|
-
}
|
|
10701
|
-
],
|
|
10702
|
-
"description": "Synchronizes one date object/string property pair.",
|
|
10478
|
+
"name": "configureAutoFormatting",
|
|
10479
|
+
"description": "Sets up IMasks and logic based on auto-formatting requirements.",
|
|
10703
10480
|
"privacy": "private",
|
|
10704
10481
|
"return": {
|
|
10705
10482
|
"type": {
|
|
@@ -10713,12 +10490,11 @@
|
|
|
10713
10490
|
},
|
|
10714
10491
|
{
|
|
10715
10492
|
"kind": "method",
|
|
10716
|
-
"name": "
|
|
10717
|
-
"description": "Sets up IMasks and logic based on auto-formatting requirements.",
|
|
10493
|
+
"name": "definePattern",
|
|
10718
10494
|
"privacy": "private",
|
|
10719
10495
|
"return": {
|
|
10720
10496
|
"type": {
|
|
10721
|
-
"text": "
|
|
10497
|
+
"text": "string"
|
|
10722
10498
|
}
|
|
10723
10499
|
},
|
|
10724
10500
|
"inheritedFrom": {
|
|
@@ -10960,6 +10736,60 @@
|
|
|
10960
10736
|
"module": "components/input/src/base-input.js"
|
|
10961
10737
|
}
|
|
10962
10738
|
},
|
|
10739
|
+
{
|
|
10740
|
+
"kind": "method",
|
|
10741
|
+
"name": "getInputType",
|
|
10742
|
+
"parameters": [
|
|
10743
|
+
{
|
|
10744
|
+
"name": "type",
|
|
10745
|
+
"description": "Value entered into component prop.",
|
|
10746
|
+
"type": {
|
|
10747
|
+
"text": "string"
|
|
10748
|
+
}
|
|
10749
|
+
}
|
|
10750
|
+
],
|
|
10751
|
+
"description": "Validates against list of supported this.allowedInputTypes; return type=text if invalid request.",
|
|
10752
|
+
"privacy": "private",
|
|
10753
|
+
"return": {
|
|
10754
|
+
"type": {
|
|
10755
|
+
"text": "string"
|
|
10756
|
+
}
|
|
10757
|
+
},
|
|
10758
|
+
"inheritedFrom": {
|
|
10759
|
+
"name": "BaseInput",
|
|
10760
|
+
"module": "components/input/src/base-input.js"
|
|
10761
|
+
}
|
|
10762
|
+
},
|
|
10763
|
+
{
|
|
10764
|
+
"kind": "method",
|
|
10765
|
+
"name": "getHelpText",
|
|
10766
|
+
"description": "Determines default help text string.",
|
|
10767
|
+
"privacy": "private",
|
|
10768
|
+
"return": {
|
|
10769
|
+
"type": {
|
|
10770
|
+
"text": "string"
|
|
10771
|
+
}
|
|
10772
|
+
},
|
|
10773
|
+
"inheritedFrom": {
|
|
10774
|
+
"name": "BaseInput",
|
|
10775
|
+
"module": "components/input/src/base-input.js"
|
|
10776
|
+
}
|
|
10777
|
+
},
|
|
10778
|
+
{
|
|
10779
|
+
"kind": "method",
|
|
10780
|
+
"name": "handleClickShowPassword",
|
|
10781
|
+
"description": "Function to support show-password feature.",
|
|
10782
|
+
"privacy": "private",
|
|
10783
|
+
"return": {
|
|
10784
|
+
"type": {
|
|
10785
|
+
"text": "void"
|
|
10786
|
+
}
|
|
10787
|
+
},
|
|
10788
|
+
"inheritedFrom": {
|
|
10789
|
+
"name": "BaseInput",
|
|
10790
|
+
"module": "components/input/src/base-input.js"
|
|
10791
|
+
}
|
|
10792
|
+
},
|
|
10963
10793
|
{
|
|
10964
10794
|
"kind": "field",
|
|
10965
10795
|
"name": "placeholderStr",
|
|
@@ -10976,6 +10806,36 @@
|
|
|
10976
10806
|
"module": "components/input/src/base-input.js"
|
|
10977
10807
|
}
|
|
10978
10808
|
},
|
|
10809
|
+
{
|
|
10810
|
+
"kind": "method",
|
|
10811
|
+
"name": "defineInputIcon",
|
|
10812
|
+
"description": "Defines placement of input icon based on type, used with classMap.",
|
|
10813
|
+
"privacy": "private",
|
|
10814
|
+
"return": {
|
|
10815
|
+
"type": {
|
|
10816
|
+
"text": "boolean"
|
|
10817
|
+
}
|
|
10818
|
+
},
|
|
10819
|
+
"inheritedFrom": {
|
|
10820
|
+
"name": "BaseInput",
|
|
10821
|
+
"module": "components/input/src/base-input.js"
|
|
10822
|
+
}
|
|
10823
|
+
},
|
|
10824
|
+
{
|
|
10825
|
+
"kind": "method",
|
|
10826
|
+
"name": "defineLabelPadding",
|
|
10827
|
+
"description": "Defines padding of input label based on type, used with classMap.",
|
|
10828
|
+
"privacy": "private",
|
|
10829
|
+
"return": {
|
|
10830
|
+
"type": {
|
|
10831
|
+
"text": "boolean"
|
|
10832
|
+
}
|
|
10833
|
+
},
|
|
10834
|
+
"inheritedFrom": {
|
|
10835
|
+
"name": "BaseInput",
|
|
10836
|
+
"module": "components/input/src/base-input.js"
|
|
10837
|
+
}
|
|
10838
|
+
},
|
|
10979
10839
|
{
|
|
10980
10840
|
"kind": "method",
|
|
10981
10841
|
"name": "processCreditCard",
|
|
@@ -10996,7 +10856,6 @@
|
|
|
10996
10856
|
"name": "matchInputValueToCreditCard",
|
|
10997
10857
|
"description": "Function to support credit-card feature type.",
|
|
10998
10858
|
"privacy": "private",
|
|
10999
|
-
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
11000
10859
|
"return": {
|
|
11001
10860
|
"type": {
|
|
11002
10861
|
"text": "object"
|
|
@@ -11009,14 +10868,13 @@
|
|
|
11009
10868
|
},
|
|
11010
10869
|
{
|
|
11011
10870
|
"kind": "field",
|
|
11012
|
-
"name": "
|
|
10871
|
+
"name": "a11yRole",
|
|
11013
10872
|
"privacy": "public",
|
|
11014
10873
|
"type": {
|
|
11015
10874
|
"text": "string"
|
|
11016
10875
|
},
|
|
11017
|
-
"description": "
|
|
11018
|
-
"
|
|
11019
|
-
"attribute": "appearance",
|
|
10876
|
+
"description": "The value for the role attribute.",
|
|
10877
|
+
"attribute": "a11yRole",
|
|
11020
10878
|
"reflects": true,
|
|
11021
10879
|
"inheritedFrom": {
|
|
11022
10880
|
"name": "BaseInput",
|
|
@@ -11025,14 +10883,13 @@
|
|
|
11025
10883
|
},
|
|
11026
10884
|
{
|
|
11027
10885
|
"kind": "field",
|
|
11028
|
-
"name": "
|
|
10886
|
+
"name": "a11yControls",
|
|
11029
10887
|
"privacy": "public",
|
|
11030
10888
|
"type": {
|
|
11031
|
-
"text": "
|
|
10889
|
+
"text": "string"
|
|
11032
10890
|
},
|
|
11033
|
-
"description": "
|
|
11034
|
-
"
|
|
11035
|
-
"attribute": "disabled",
|
|
10891
|
+
"description": "The value for the aria-controls attribute.",
|
|
10892
|
+
"attribute": "a11yControls",
|
|
11036
10893
|
"reflects": true,
|
|
11037
10894
|
"inheritedFrom": {
|
|
11038
10895
|
"name": "BaseInput",
|
|
@@ -11041,31 +10898,29 @@
|
|
|
11041
10898
|
},
|
|
11042
10899
|
{
|
|
11043
10900
|
"kind": "field",
|
|
11044
|
-
"name": "
|
|
10901
|
+
"name": "a11yExpanded",
|
|
11045
10902
|
"privacy": "public",
|
|
11046
10903
|
"type": {
|
|
11047
|
-
"text": "
|
|
10904
|
+
"text": "boolean"
|
|
11048
10905
|
},
|
|
11049
|
-
"description": "
|
|
11050
|
-
"
|
|
11051
|
-
"attribute": "layout",
|
|
10906
|
+
"description": "The value for the aria-expanded attribute.",
|
|
10907
|
+
"attribute": "a11yExpanded",
|
|
11052
10908
|
"reflects": true,
|
|
11053
10909
|
"inheritedFrom": {
|
|
11054
|
-
"name": "
|
|
11055
|
-
"module": "components/
|
|
10910
|
+
"name": "BaseInput",
|
|
10911
|
+
"module": "components/input/src/base-input.js"
|
|
11056
10912
|
}
|
|
11057
10913
|
},
|
|
11058
10914
|
{
|
|
11059
10915
|
"kind": "field",
|
|
11060
|
-
"name": "
|
|
10916
|
+
"name": "a11yActivedescendant",
|
|
11061
10917
|
"privacy": "public",
|
|
11062
10918
|
"type": {
|
|
11063
10919
|
"text": "string"
|
|
11064
10920
|
},
|
|
11065
|
-
"description": "
|
|
11066
|
-
"
|
|
11067
|
-
"
|
|
11068
|
-
"reflects": true,
|
|
10921
|
+
"description": "The value for the aria-activedescendant attribute.\nPoints to the ID of the currently active/highlighted option in a listbox.",
|
|
10922
|
+
"attribute": "a11yActivedescendant",
|
|
10923
|
+
"reflects": true,
|
|
11069
10924
|
"inheritedFrom": {
|
|
11070
10925
|
"name": "BaseInput",
|
|
11071
10926
|
"module": "components/input/src/base-input.js"
|
|
@@ -11073,14 +10928,14 @@
|
|
|
11073
10928
|
},
|
|
11074
10929
|
{
|
|
11075
10930
|
"kind": "field",
|
|
11076
|
-
"name": "
|
|
10931
|
+
"name": "activeLabel",
|
|
11077
10932
|
"privacy": "public",
|
|
11078
10933
|
"type": {
|
|
11079
|
-
"text": "
|
|
10934
|
+
"text": "boolean"
|
|
11080
10935
|
},
|
|
11081
|
-
"description": "
|
|
11082
|
-
"
|
|
11083
|
-
"
|
|
10936
|
+
"description": "If set, the label will remain fixed in the active position.",
|
|
10937
|
+
"attribute": "activeLabel",
|
|
10938
|
+
"reflects": true,
|
|
11084
10939
|
"inheritedFrom": {
|
|
11085
10940
|
"name": "BaseInput",
|
|
11086
10941
|
"module": "components/input/src/base-input.js"
|
|
@@ -11088,8 +10943,15 @@
|
|
|
11088
10943
|
},
|
|
11089
10944
|
{
|
|
11090
10945
|
"kind": "field",
|
|
11091
|
-
"name": "
|
|
11092
|
-
"
|
|
10946
|
+
"name": "appearance",
|
|
10947
|
+
"privacy": "public",
|
|
10948
|
+
"type": {
|
|
10949
|
+
"text": "'default' | 'inverse'"
|
|
10950
|
+
},
|
|
10951
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
10952
|
+
"default": "'default'",
|
|
10953
|
+
"attribute": "appearance",
|
|
10954
|
+
"reflects": true,
|
|
11093
10955
|
"inheritedFrom": {
|
|
11094
10956
|
"name": "BaseInput",
|
|
11095
10957
|
"module": "components/input/src/base-input.js"
|
|
@@ -11097,14 +10959,13 @@
|
|
|
11097
10959
|
},
|
|
11098
10960
|
{
|
|
11099
10961
|
"kind": "field",
|
|
11100
|
-
"name": "
|
|
10962
|
+
"name": "autocapitalize",
|
|
11101
10963
|
"privacy": "public",
|
|
11102
10964
|
"type": {
|
|
11103
|
-
"text": "
|
|
10965
|
+
"text": "string"
|
|
11104
10966
|
},
|
|
11105
|
-
"description": "
|
|
11106
|
-
"
|
|
11107
|
-
"attribute": "maxLength",
|
|
10967
|
+
"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].",
|
|
10968
|
+
"attribute": "autocapitalize",
|
|
11108
10969
|
"reflects": true,
|
|
11109
10970
|
"inheritedFrom": {
|
|
11110
10971
|
"name": "BaseInput",
|
|
@@ -11113,14 +10974,14 @@
|
|
|
11113
10974
|
},
|
|
11114
10975
|
{
|
|
11115
10976
|
"kind": "field",
|
|
11116
|
-
"name": "
|
|
10977
|
+
"name": "autocomplete",
|
|
11117
10978
|
"privacy": "public",
|
|
11118
10979
|
"type": {
|
|
11119
10980
|
"text": "string"
|
|
11120
10981
|
},
|
|
11121
|
-
"description": "
|
|
11122
|
-
"
|
|
11123
|
-
"
|
|
10982
|
+
"description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
|
|
10983
|
+
"attribute": "autocomplete",
|
|
10984
|
+
"reflects": true,
|
|
11124
10985
|
"inheritedFrom": {
|
|
11125
10986
|
"name": "BaseInput",
|
|
11126
10987
|
"module": "components/input/src/base-input.js"
|
|
@@ -11128,8 +10989,14 @@
|
|
|
11128
10989
|
},
|
|
11129
10990
|
{
|
|
11130
10991
|
"kind": "field",
|
|
11131
|
-
"name": "
|
|
11132
|
-
"
|
|
10992
|
+
"name": "autocorrect",
|
|
10993
|
+
"privacy": "public",
|
|
10994
|
+
"type": {
|
|
10995
|
+
"text": "string"
|
|
10996
|
+
},
|
|
10997
|
+
"description": "When set to `off`, stops iOS from auto-correcting words when typed into a text box.",
|
|
10998
|
+
"attribute": "autocorrect",
|
|
10999
|
+
"reflects": true,
|
|
11133
11000
|
"inheritedFrom": {
|
|
11134
11001
|
"name": "BaseInput",
|
|
11135
11002
|
"module": "components/input/src/base-input.js"
|
|
@@ -11137,15 +11004,13 @@
|
|
|
11137
11004
|
},
|
|
11138
11005
|
{
|
|
11139
11006
|
"kind": "field",
|
|
11140
|
-
"name": "
|
|
11007
|
+
"name": "customValidityTypeEmail",
|
|
11141
11008
|
"privacy": "public",
|
|
11142
11009
|
"type": {
|
|
11143
|
-
"text": "
|
|
11010
|
+
"text": "string"
|
|
11144
11011
|
},
|
|
11145
|
-
"description": "
|
|
11146
|
-
"
|
|
11147
|
-
"attribute": "minLength",
|
|
11148
|
-
"reflects": true,
|
|
11012
|
+
"description": "Custom help text message for email type validity.",
|
|
11013
|
+
"attribute": "customValidityTypeEmail",
|
|
11149
11014
|
"inheritedFrom": {
|
|
11150
11015
|
"name": "BaseInput",
|
|
11151
11016
|
"module": "components/input/src/base-input.js"
|
|
@@ -11153,14 +11018,13 @@
|
|
|
11153
11018
|
},
|
|
11154
11019
|
{
|
|
11155
11020
|
"kind": "field",
|
|
11156
|
-
"name": "
|
|
11021
|
+
"name": "disabled",
|
|
11157
11022
|
"privacy": "public",
|
|
11158
11023
|
"type": {
|
|
11159
11024
|
"text": "boolean"
|
|
11160
11025
|
},
|
|
11161
|
-
"description": "
|
|
11162
|
-
"
|
|
11163
|
-
"attribute": "required",
|
|
11026
|
+
"description": "If set, disables the input.",
|
|
11027
|
+
"attribute": "disabled",
|
|
11164
11028
|
"reflects": true,
|
|
11165
11029
|
"inheritedFrom": {
|
|
11166
11030
|
"name": "BaseInput",
|
|
@@ -11169,30 +11033,29 @@
|
|
|
11169
11033
|
},
|
|
11170
11034
|
{
|
|
11171
11035
|
"kind": "field",
|
|
11172
|
-
"name": "
|
|
11036
|
+
"name": "dvInputOnly",
|
|
11173
11037
|
"privacy": "public",
|
|
11174
11038
|
"type": {
|
|
11175
11039
|
"text": "boolean"
|
|
11176
11040
|
},
|
|
11177
|
-
"
|
|
11041
|
+
"description": "If defined, the display value slot content will only mask the HTML5 input element. The input's label will not be masked.",
|
|
11042
|
+
"attribute": "dvInputOnly",
|
|
11178
11043
|
"reflects": true,
|
|
11179
|
-
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
11180
|
-
"default": "false",
|
|
11181
11044
|
"inheritedFrom": {
|
|
11182
|
-
"name": "
|
|
11183
|
-
"module": "components/
|
|
11045
|
+
"name": "BaseInput",
|
|
11046
|
+
"module": "components/input/src/base-input.js"
|
|
11184
11047
|
}
|
|
11185
11048
|
},
|
|
11186
11049
|
{
|
|
11187
11050
|
"kind": "field",
|
|
11188
|
-
"name": "
|
|
11051
|
+
"name": "error",
|
|
11189
11052
|
"privacy": "public",
|
|
11190
11053
|
"type": {
|
|
11191
11054
|
"text": "string"
|
|
11192
11055
|
},
|
|
11193
|
-
"description": "
|
|
11194
|
-
"
|
|
11195
|
-
"
|
|
11056
|
+
"description": "When defined, sets persistent validity to `customError` and sets `setCustomValidity` = attribute value.",
|
|
11057
|
+
"attribute": "error",
|
|
11058
|
+
"reflects": true,
|
|
11196
11059
|
"inheritedFrom": {
|
|
11197
11060
|
"name": "BaseInput",
|
|
11198
11061
|
"module": "components/input/src/base-input.js"
|
|
@@ -11200,44 +11063,41 @@
|
|
|
11200
11063
|
},
|
|
11201
11064
|
{
|
|
11202
11065
|
"kind": "field",
|
|
11203
|
-
"name": "
|
|
11066
|
+
"name": "errorMessage",
|
|
11204
11067
|
"privacy": "public",
|
|
11205
11068
|
"type": {
|
|
11206
11069
|
"text": "string"
|
|
11207
11070
|
},
|
|
11208
|
-
"
|
|
11209
|
-
"
|
|
11210
|
-
"default": "'lg'",
|
|
11071
|
+
"description": "Contains the help text message for the current validity error.",
|
|
11072
|
+
"attribute": "errorMessage",
|
|
11211
11073
|
"inheritedFrom": {
|
|
11212
|
-
"name": "
|
|
11213
|
-
"module": "components/
|
|
11074
|
+
"name": "BaseInput",
|
|
11075
|
+
"module": "components/input/src/base-input.js"
|
|
11214
11076
|
}
|
|
11215
11077
|
},
|
|
11216
11078
|
{
|
|
11217
11079
|
"kind": "field",
|
|
11218
|
-
"name": "
|
|
11080
|
+
"name": "format",
|
|
11219
11081
|
"privacy": "public",
|
|
11220
11082
|
"type": {
|
|
11221
11083
|
"text": "string"
|
|
11222
11084
|
},
|
|
11223
|
-
"
|
|
11085
|
+
"description": "Specifies the input mask format.",
|
|
11086
|
+
"attribute": "format",
|
|
11224
11087
|
"reflects": true,
|
|
11225
|
-
"default": "'classic'",
|
|
11226
11088
|
"inheritedFrom": {
|
|
11227
|
-
"name": "
|
|
11228
|
-
"module": "components/
|
|
11089
|
+
"name": "BaseInput",
|
|
11090
|
+
"module": "components/input/src/base-input.js"
|
|
11229
11091
|
}
|
|
11230
11092
|
},
|
|
11231
11093
|
{
|
|
11232
11094
|
"kind": "field",
|
|
11233
|
-
"name": "
|
|
11095
|
+
"name": "hasFocus",
|
|
11234
11096
|
"privacy": "public",
|
|
11235
11097
|
"type": {
|
|
11236
|
-
"text": "
|
|
11098
|
+
"text": "boolean"
|
|
11237
11099
|
},
|
|
11238
|
-
"description": "
|
|
11239
|
-
"default": "undefined",
|
|
11240
|
-
"attribute": "value",
|
|
11100
|
+
"description": "Flag to indicate if the input currently has focus.",
|
|
11241
11101
|
"inheritedFrom": {
|
|
11242
11102
|
"name": "BaseInput",
|
|
11243
11103
|
"module": "components/input/src/base-input.js"
|
|
@@ -11245,8 +11105,12 @@
|
|
|
11245
11105
|
},
|
|
11246
11106
|
{
|
|
11247
11107
|
"kind": "field",
|
|
11248
|
-
"name": "
|
|
11249
|
-
"
|
|
11108
|
+
"name": "hasValue",
|
|
11109
|
+
"privacy": "public",
|
|
11110
|
+
"type": {
|
|
11111
|
+
"text": "boolean"
|
|
11112
|
+
},
|
|
11113
|
+
"description": "Flag to indicate if the input currently has value.",
|
|
11250
11114
|
"inheritedFrom": {
|
|
11251
11115
|
"name": "BaseInput",
|
|
11252
11116
|
"module": "components/input/src/base-input.js"
|
|
@@ -11254,13 +11118,13 @@
|
|
|
11254
11118
|
},
|
|
11255
11119
|
{
|
|
11256
11120
|
"kind": "field",
|
|
11257
|
-
"name": "
|
|
11258
|
-
"privacy": "
|
|
11121
|
+
"name": "hideLabelVisually",
|
|
11122
|
+
"privacy": "private",
|
|
11259
11123
|
"type": {
|
|
11260
|
-
"text": "
|
|
11124
|
+
"text": "boolean"
|
|
11261
11125
|
},
|
|
11262
|
-
"description": "
|
|
11263
|
-
"attribute": "
|
|
11126
|
+
"description": "If set, the label will be hidden visually but still accessible to assistive technologies.",
|
|
11127
|
+
"attribute": "hideLabelVisually",
|
|
11264
11128
|
"reflects": true,
|
|
11265
11129
|
"inheritedFrom": {
|
|
11266
11130
|
"name": "BaseInput",
|
|
@@ -11269,13 +11133,13 @@
|
|
|
11269
11133
|
},
|
|
11270
11134
|
{
|
|
11271
11135
|
"kind": "field",
|
|
11272
|
-
"name": "
|
|
11136
|
+
"name": "icon",
|
|
11273
11137
|
"privacy": "public",
|
|
11274
11138
|
"type": {
|
|
11275
|
-
"text": "
|
|
11139
|
+
"text": "boolean"
|
|
11276
11140
|
},
|
|
11277
|
-
"description": "
|
|
11278
|
-
"attribute": "
|
|
11141
|
+
"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.",
|
|
11142
|
+
"attribute": "icon",
|
|
11279
11143
|
"reflects": true,
|
|
11280
11144
|
"inheritedFrom": {
|
|
11281
11145
|
"name": "BaseInput",
|
|
@@ -11284,13 +11148,13 @@
|
|
|
11284
11148
|
},
|
|
11285
11149
|
{
|
|
11286
11150
|
"kind": "field",
|
|
11287
|
-
"name": "
|
|
11151
|
+
"name": "id",
|
|
11288
11152
|
"privacy": "public",
|
|
11289
11153
|
"type": {
|
|
11290
|
-
"text": "
|
|
11154
|
+
"text": "string"
|
|
11291
11155
|
},
|
|
11292
|
-
"description": "The
|
|
11293
|
-
"attribute": "
|
|
11156
|
+
"description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
|
|
11157
|
+
"attribute": "id",
|
|
11294
11158
|
"reflects": true,
|
|
11295
11159
|
"inheritedFrom": {
|
|
11296
11160
|
"name": "BaseInput",
|
|
@@ -11299,14 +11163,12 @@
|
|
|
11299
11163
|
},
|
|
11300
11164
|
{
|
|
11301
11165
|
"kind": "field",
|
|
11302
|
-
"name": "
|
|
11303
|
-
"privacy": "
|
|
11166
|
+
"name": "inputId",
|
|
11167
|
+
"privacy": "private",
|
|
11304
11168
|
"type": {
|
|
11305
11169
|
"text": "string"
|
|
11306
11170
|
},
|
|
11307
|
-
"description": "The
|
|
11308
|
-
"attribute": "a11yActivedescendant",
|
|
11309
|
-
"reflects": true,
|
|
11171
|
+
"description": "The id for input node.",
|
|
11310
11172
|
"inheritedFrom": {
|
|
11311
11173
|
"name": "BaseInput",
|
|
11312
11174
|
"module": "components/input/src/base-input.js"
|
|
@@ -11314,13 +11176,13 @@
|
|
|
11314
11176
|
},
|
|
11315
11177
|
{
|
|
11316
11178
|
"kind": "field",
|
|
11317
|
-
"name": "
|
|
11179
|
+
"name": "inputmode",
|
|
11318
11180
|
"privacy": "public",
|
|
11319
11181
|
"type": {
|
|
11320
|
-
"text": "
|
|
11182
|
+
"text": "string"
|
|
11321
11183
|
},
|
|
11322
|
-
"description": "
|
|
11323
|
-
"attribute": "
|
|
11184
|
+
"description": "Exposes inputmode attribute for input.",
|
|
11185
|
+
"attribute": "inputmode",
|
|
11324
11186
|
"reflects": true,
|
|
11325
11187
|
"inheritedFrom": {
|
|
11326
11188
|
"name": "BaseInput",
|
|
@@ -11329,13 +11191,13 @@
|
|
|
11329
11191
|
},
|
|
11330
11192
|
{
|
|
11331
11193
|
"kind": "field",
|
|
11332
|
-
"name": "
|
|
11194
|
+
"name": "lang",
|
|
11333
11195
|
"privacy": "public",
|
|
11334
11196
|
"type": {
|
|
11335
11197
|
"text": "string"
|
|
11336
11198
|
},
|
|
11337
|
-
"description": "
|
|
11338
|
-
"attribute": "
|
|
11199
|
+
"description": "Defines the language of an element.",
|
|
11200
|
+
"attribute": "lang",
|
|
11339
11201
|
"reflects": true,
|
|
11340
11202
|
"inheritedFrom": {
|
|
11341
11203
|
"name": "BaseInput",
|
|
@@ -11344,14 +11206,13 @@
|
|
|
11344
11206
|
},
|
|
11345
11207
|
{
|
|
11346
11208
|
"kind": "field",
|
|
11347
|
-
"name": "
|
|
11209
|
+
"name": "max",
|
|
11348
11210
|
"privacy": "public",
|
|
11349
11211
|
"type": {
|
|
11350
11212
|
"text": "string"
|
|
11351
11213
|
},
|
|
11352
|
-
"description": "
|
|
11353
|
-
"attribute": "
|
|
11354
|
-
"reflects": true,
|
|
11214
|
+
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
11215
|
+
"attribute": "max",
|
|
11355
11216
|
"inheritedFrom": {
|
|
11356
11217
|
"name": "BaseInput",
|
|
11357
11218
|
"module": "components/input/src/base-input.js"
|
|
@@ -11359,13 +11220,13 @@
|
|
|
11359
11220
|
},
|
|
11360
11221
|
{
|
|
11361
11222
|
"kind": "field",
|
|
11362
|
-
"name": "
|
|
11223
|
+
"name": "maxLength",
|
|
11363
11224
|
"privacy": "public",
|
|
11364
11225
|
"type": {
|
|
11365
|
-
"text": "
|
|
11226
|
+
"text": "number"
|
|
11366
11227
|
},
|
|
11367
|
-
"description": "
|
|
11368
|
-
"attribute": "
|
|
11228
|
+
"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.",
|
|
11229
|
+
"attribute": "maxLength",
|
|
11369
11230
|
"reflects": true,
|
|
11370
11231
|
"inheritedFrom": {
|
|
11371
11232
|
"name": "BaseInput",
|
|
@@ -11374,13 +11235,13 @@
|
|
|
11374
11235
|
},
|
|
11375
11236
|
{
|
|
11376
11237
|
"kind": "field",
|
|
11377
|
-
"name": "
|
|
11238
|
+
"name": "min",
|
|
11378
11239
|
"privacy": "public",
|
|
11379
11240
|
"type": {
|
|
11380
11241
|
"text": "string"
|
|
11381
11242
|
},
|
|
11382
|
-
"description": "
|
|
11383
|
-
"attribute": "
|
|
11243
|
+
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
11244
|
+
"attribute": "min",
|
|
11384
11245
|
"inheritedFrom": {
|
|
11385
11246
|
"name": "BaseInput",
|
|
11386
11247
|
"module": "components/input/src/base-input.js"
|
|
@@ -11388,13 +11249,13 @@
|
|
|
11388
11249
|
},
|
|
11389
11250
|
{
|
|
11390
11251
|
"kind": "field",
|
|
11391
|
-
"name": "
|
|
11252
|
+
"name": "minLength",
|
|
11392
11253
|
"privacy": "public",
|
|
11393
11254
|
"type": {
|
|
11394
|
-
"text": "
|
|
11255
|
+
"text": "number"
|
|
11395
11256
|
},
|
|
11396
|
-
"description": "
|
|
11397
|
-
"attribute": "
|
|
11257
|
+
"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`.",
|
|
11258
|
+
"attribute": "minLength",
|
|
11398
11259
|
"reflects": true,
|
|
11399
11260
|
"inheritedFrom": {
|
|
11400
11261
|
"name": "BaseInput",
|
|
@@ -11403,13 +11264,13 @@
|
|
|
11403
11264
|
},
|
|
11404
11265
|
{
|
|
11405
11266
|
"kind": "field",
|
|
11406
|
-
"name": "
|
|
11267
|
+
"name": "name",
|
|
11407
11268
|
"privacy": "public",
|
|
11408
11269
|
"type": {
|
|
11409
11270
|
"text": "string"
|
|
11410
11271
|
},
|
|
11411
|
-
"description": "
|
|
11412
|
-
"attribute": "
|
|
11272
|
+
"description": "Populates the `name` attribute on the input.",
|
|
11273
|
+
"attribute": "name",
|
|
11413
11274
|
"reflects": true,
|
|
11414
11275
|
"inheritedFrom": {
|
|
11415
11276
|
"name": "BaseInput",
|
|
@@ -11418,13 +11279,14 @@
|
|
|
11418
11279
|
},
|
|
11419
11280
|
{
|
|
11420
11281
|
"kind": "field",
|
|
11421
|
-
"name": "
|
|
11282
|
+
"name": "nested",
|
|
11422
11283
|
"privacy": "public",
|
|
11423
11284
|
"type": {
|
|
11424
|
-
"text": "
|
|
11285
|
+
"text": "boolean"
|
|
11425
11286
|
},
|
|
11426
|
-
"description": "
|
|
11427
|
-
"attribute": "
|
|
11287
|
+
"description": "Sets styles for nested operation - removes borders, hides help + error text, and\nhides accents.",
|
|
11288
|
+
"attribute": "nested",
|
|
11289
|
+
"reflects": true,
|
|
11428
11290
|
"inheritedFrom": {
|
|
11429
11291
|
"name": "BaseInput",
|
|
11430
11292
|
"module": "components/input/src/base-input.js"
|
|
@@ -11432,13 +11294,13 @@
|
|
|
11432
11294
|
},
|
|
11433
11295
|
{
|
|
11434
11296
|
"kind": "field",
|
|
11435
|
-
"name": "
|
|
11297
|
+
"name": "noValidate",
|
|
11436
11298
|
"privacy": "public",
|
|
11437
11299
|
"type": {
|
|
11438
|
-
"text": "
|
|
11300
|
+
"text": "boolean"
|
|
11439
11301
|
},
|
|
11440
|
-
"description": "
|
|
11441
|
-
"attribute": "
|
|
11302
|
+
"description": "If set, disables auto-validation on blur.",
|
|
11303
|
+
"attribute": "noValidate",
|
|
11442
11304
|
"reflects": true,
|
|
11443
11305
|
"inheritedFrom": {
|
|
11444
11306
|
"name": "BaseInput",
|
|
@@ -11447,25 +11309,29 @@
|
|
|
11447
11309
|
},
|
|
11448
11310
|
{
|
|
11449
11311
|
"kind": "field",
|
|
11450
|
-
"name": "
|
|
11312
|
+
"name": "onDark",
|
|
11451
11313
|
"privacy": "public",
|
|
11452
11314
|
"type": {
|
|
11453
11315
|
"text": "boolean"
|
|
11454
11316
|
},
|
|
11455
|
-
"
|
|
11317
|
+
"attribute": "onDark",
|
|
11318
|
+
"reflects": true,
|
|
11319
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
11456
11320
|
"inheritedFrom": {
|
|
11457
|
-
"name": "
|
|
11458
|
-
"module": "components/
|
|
11321
|
+
"name": "AuroElement",
|
|
11322
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
11459
11323
|
}
|
|
11460
11324
|
},
|
|
11461
11325
|
{
|
|
11462
11326
|
"kind": "field",
|
|
11463
|
-
"name": "
|
|
11327
|
+
"name": "pattern",
|
|
11464
11328
|
"privacy": "public",
|
|
11465
11329
|
"type": {
|
|
11466
|
-
"text": "
|
|
11330
|
+
"text": "string"
|
|
11467
11331
|
},
|
|
11468
|
-
"description": "
|
|
11332
|
+
"description": "Specifies a regular expression the form control's value should match.",
|
|
11333
|
+
"attribute": "pattern",
|
|
11334
|
+
"reflects": true,
|
|
11469
11335
|
"inheritedFrom": {
|
|
11470
11336
|
"name": "BaseInput",
|
|
11471
11337
|
"module": "components/input/src/base-input.js"
|
|
@@ -11473,13 +11339,13 @@
|
|
|
11473
11339
|
},
|
|
11474
11340
|
{
|
|
11475
11341
|
"kind": "field",
|
|
11476
|
-
"name": "
|
|
11477
|
-
"privacy": "
|
|
11342
|
+
"name": "placeholder",
|
|
11343
|
+
"privacy": "public",
|
|
11478
11344
|
"type": {
|
|
11479
|
-
"text": "
|
|
11345
|
+
"text": "string"
|
|
11480
11346
|
},
|
|
11481
|
-
"description": "
|
|
11482
|
-
"attribute": "
|
|
11347
|
+
"description": "Define custom placeholder text.",
|
|
11348
|
+
"attribute": "placeholder",
|
|
11483
11349
|
"reflects": true,
|
|
11484
11350
|
"inheritedFrom": {
|
|
11485
11351
|
"name": "BaseInput",
|
|
@@ -11488,13 +11354,13 @@
|
|
|
11488
11354
|
},
|
|
11489
11355
|
{
|
|
11490
11356
|
"kind": "field",
|
|
11491
|
-
"name": "
|
|
11357
|
+
"name": "readonly",
|
|
11492
11358
|
"privacy": "public",
|
|
11493
11359
|
"type": {
|
|
11494
11360
|
"text": "boolean"
|
|
11495
11361
|
},
|
|
11496
|
-
"description": "
|
|
11497
|
-
"attribute": "
|
|
11362
|
+
"description": "Makes the input read-only, but can be set programmatically.",
|
|
11363
|
+
"attribute": "readonly",
|
|
11498
11364
|
"reflects": true,
|
|
11499
11365
|
"inheritedFrom": {
|
|
11500
11366
|
"name": "BaseInput",
|
|
@@ -11503,116 +11369,13 @@
|
|
|
11503
11369
|
},
|
|
11504
11370
|
{
|
|
11505
11371
|
"kind": "field",
|
|
11506
|
-
"name": "
|
|
11372
|
+
"name": "required",
|
|
11507
11373
|
"privacy": "public",
|
|
11508
11374
|
"type": {
|
|
11509
|
-
"text": "
|
|
11375
|
+
"text": "boolean"
|
|
11510
11376
|
},
|
|
11511
|
-
"description": "
|
|
11512
|
-
"attribute": "
|
|
11513
|
-
"reflects": true,
|
|
11514
|
-
"inheritedFrom": {
|
|
11515
|
-
"name": "BaseInput",
|
|
11516
|
-
"module": "components/input/src/base-input.js"
|
|
11517
|
-
}
|
|
11518
|
-
},
|
|
11519
|
-
{
|
|
11520
|
-
"kind": "field",
|
|
11521
|
-
"name": "inputId",
|
|
11522
|
-
"privacy": "private",
|
|
11523
|
-
"type": {
|
|
11524
|
-
"text": "string"
|
|
11525
|
-
},
|
|
11526
|
-
"description": "The id for input node.",
|
|
11527
|
-
"inheritedFrom": {
|
|
11528
|
-
"name": "BaseInput",
|
|
11529
|
-
"module": "components/input/src/base-input.js"
|
|
11530
|
-
}
|
|
11531
|
-
},
|
|
11532
|
-
{
|
|
11533
|
-
"kind": "field",
|
|
11534
|
-
"name": "inputmode",
|
|
11535
|
-
"privacy": "public",
|
|
11536
|
-
"type": {
|
|
11537
|
-
"text": "string"
|
|
11538
|
-
},
|
|
11539
|
-
"description": "Exposes inputmode attribute for input.",
|
|
11540
|
-
"attribute": "inputmode",
|
|
11541
|
-
"reflects": true,
|
|
11542
|
-
"inheritedFrom": {
|
|
11543
|
-
"name": "BaseInput",
|
|
11544
|
-
"module": "components/input/src/base-input.js"
|
|
11545
|
-
}
|
|
11546
|
-
},
|
|
11547
|
-
{
|
|
11548
|
-
"kind": "field",
|
|
11549
|
-
"name": "lang",
|
|
11550
|
-
"privacy": "public",
|
|
11551
|
-
"type": {
|
|
11552
|
-
"text": "string"
|
|
11553
|
-
},
|
|
11554
|
-
"description": "Defines the language of an element.",
|
|
11555
|
-
"attribute": "lang",
|
|
11556
|
-
"reflects": true,
|
|
11557
|
-
"inheritedFrom": {
|
|
11558
|
-
"name": "BaseInput",
|
|
11559
|
-
"module": "components/input/src/base-input.js"
|
|
11560
|
-
}
|
|
11561
|
-
},
|
|
11562
|
-
{
|
|
11563
|
-
"kind": "field",
|
|
11564
|
-
"name": "name",
|
|
11565
|
-
"privacy": "public",
|
|
11566
|
-
"type": {
|
|
11567
|
-
"text": "string"
|
|
11568
|
-
},
|
|
11569
|
-
"description": "Populates the `name` attribute on the input.",
|
|
11570
|
-
"attribute": "name",
|
|
11571
|
-
"reflects": true,
|
|
11572
|
-
"inheritedFrom": {
|
|
11573
|
-
"name": "BaseInput",
|
|
11574
|
-
"module": "components/input/src/base-input.js"
|
|
11575
|
-
}
|
|
11576
|
-
},
|
|
11577
|
-
{
|
|
11578
|
-
"kind": "field",
|
|
11579
|
-
"name": "nested",
|
|
11580
|
-
"privacy": "public",
|
|
11581
|
-
"type": {
|
|
11582
|
-
"text": "boolean"
|
|
11583
|
-
},
|
|
11584
|
-
"description": "Sets styles for nested operation - removes borders, hides help + error text, and\nhides accents.",
|
|
11585
|
-
"attribute": "nested",
|
|
11586
|
-
"reflects": true,
|
|
11587
|
-
"inheritedFrom": {
|
|
11588
|
-
"name": "BaseInput",
|
|
11589
|
-
"module": "components/input/src/base-input.js"
|
|
11590
|
-
}
|
|
11591
|
-
},
|
|
11592
|
-
{
|
|
11593
|
-
"kind": "field",
|
|
11594
|
-
"name": "noValidate",
|
|
11595
|
-
"privacy": "public",
|
|
11596
|
-
"type": {
|
|
11597
|
-
"text": "boolean"
|
|
11598
|
-
},
|
|
11599
|
-
"description": "If set, disables auto-validation on blur.",
|
|
11600
|
-
"attribute": "noValidate",
|
|
11601
|
-
"reflects": true,
|
|
11602
|
-
"inheritedFrom": {
|
|
11603
|
-
"name": "BaseInput",
|
|
11604
|
-
"module": "components/input/src/base-input.js"
|
|
11605
|
-
}
|
|
11606
|
-
},
|
|
11607
|
-
{
|
|
11608
|
-
"kind": "field",
|
|
11609
|
-
"name": "pattern",
|
|
11610
|
-
"privacy": "public",
|
|
11611
|
-
"type": {
|
|
11612
|
-
"text": "string"
|
|
11613
|
-
},
|
|
11614
|
-
"description": "Specifies a regular expression the form control's value should match.",
|
|
11615
|
-
"attribute": "pattern",
|
|
11377
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
11378
|
+
"attribute": "required",
|
|
11616
11379
|
"reflects": true,
|
|
11617
11380
|
"inheritedFrom": {
|
|
11618
11381
|
"name": "BaseInput",
|
|
@@ -11621,29 +11384,13 @@
|
|
|
11621
11384
|
},
|
|
11622
11385
|
{
|
|
11623
11386
|
"kind": "field",
|
|
11624
|
-
"name": "
|
|
11387
|
+
"name": "setCustomValidity",
|
|
11625
11388
|
"privacy": "public",
|
|
11626
11389
|
"type": {
|
|
11627
11390
|
"text": "string"
|
|
11628
11391
|
},
|
|
11629
|
-
"description": "
|
|
11630
|
-
"attribute": "
|
|
11631
|
-
"reflects": true,
|
|
11632
|
-
"inheritedFrom": {
|
|
11633
|
-
"name": "BaseInput",
|
|
11634
|
-
"module": "components/input/src/base-input.js"
|
|
11635
|
-
}
|
|
11636
|
-
},
|
|
11637
|
-
{
|
|
11638
|
-
"kind": "field",
|
|
11639
|
-
"name": "readonly",
|
|
11640
|
-
"privacy": "public",
|
|
11641
|
-
"type": {
|
|
11642
|
-
"text": "boolean"
|
|
11643
|
-
},
|
|
11644
|
-
"description": "Makes the input read-only, but can be set programmatically.",
|
|
11645
|
-
"attribute": "readonly",
|
|
11646
|
-
"reflects": true,
|
|
11392
|
+
"description": "Sets a custom help text message to display for all validityStates.",
|
|
11393
|
+
"attribute": "setCustomValidity",
|
|
11647
11394
|
"inheritedFrom": {
|
|
11648
11395
|
"name": "BaseInput",
|
|
11649
11396
|
"module": "components/input/src/base-input.js"
|
|
@@ -11651,13 +11398,13 @@
|
|
|
11651
11398
|
},
|
|
11652
11399
|
{
|
|
11653
11400
|
"kind": "field",
|
|
11654
|
-
"name": "
|
|
11401
|
+
"name": "setCustomValidityBadInput",
|
|
11655
11402
|
"privacy": "public",
|
|
11656
11403
|
"type": {
|
|
11657
11404
|
"text": "string"
|
|
11658
11405
|
},
|
|
11659
|
-
"description": "
|
|
11660
|
-
"attribute": "
|
|
11406
|
+
"description": "Custom help text message to display when validity = `badInput`.",
|
|
11407
|
+
"attribute": "setCustomValidityBadInput",
|
|
11661
11408
|
"inheritedFrom": {
|
|
11662
11409
|
"name": "BaseInput",
|
|
11663
11410
|
"module": "components/input/src/base-input.js"
|
|
@@ -11665,13 +11412,13 @@
|
|
|
11665
11412
|
},
|
|
11666
11413
|
{
|
|
11667
11414
|
"kind": "field",
|
|
11668
|
-
"name": "
|
|
11415
|
+
"name": "setCustomValidityCustomError",
|
|
11669
11416
|
"privacy": "public",
|
|
11670
11417
|
"type": {
|
|
11671
11418
|
"text": "string"
|
|
11672
11419
|
},
|
|
11673
|
-
"description": "Custom help text message to display when validity = `
|
|
11674
|
-
"attribute": "
|
|
11420
|
+
"description": "Custom help text message to display when validity = `customError`.",
|
|
11421
|
+
"attribute": "setCustomValidityCustomError",
|
|
11675
11422
|
"inheritedFrom": {
|
|
11676
11423
|
"name": "BaseInput",
|
|
11677
11424
|
"module": "components/input/src/base-input.js"
|
|
@@ -11679,13 +11426,13 @@
|
|
|
11679
11426
|
},
|
|
11680
11427
|
{
|
|
11681
11428
|
"kind": "field",
|
|
11682
|
-
"name": "
|
|
11429
|
+
"name": "setCustomValidityForType",
|
|
11683
11430
|
"privacy": "public",
|
|
11684
11431
|
"type": {
|
|
11685
11432
|
"text": "string"
|
|
11686
11433
|
},
|
|
11687
|
-
"description": "Custom help text message to display
|
|
11688
|
-
"attribute": "
|
|
11434
|
+
"description": "Custom help text message to display for the declared element `type` and type validity fails.",
|
|
11435
|
+
"attribute": "setCustomValidityForType",
|
|
11689
11436
|
"inheritedFrom": {
|
|
11690
11437
|
"name": "BaseInput",
|
|
11691
11438
|
"module": "components/input/src/base-input.js"
|
|
@@ -11859,6 +11606,20 @@
|
|
|
11859
11606
|
"module": "components/input/src/base-input.js"
|
|
11860
11607
|
}
|
|
11861
11608
|
},
|
|
11609
|
+
{
|
|
11610
|
+
"kind": "field",
|
|
11611
|
+
"name": "value",
|
|
11612
|
+
"privacy": "public",
|
|
11613
|
+
"type": {
|
|
11614
|
+
"text": "string"
|
|
11615
|
+
},
|
|
11616
|
+
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.",
|
|
11617
|
+
"attribute": "value",
|
|
11618
|
+
"inheritedFrom": {
|
|
11619
|
+
"name": "BaseInput",
|
|
11620
|
+
"module": "components/input/src/base-input.js"
|
|
11621
|
+
}
|
|
11622
|
+
},
|
|
11862
11623
|
{
|
|
11863
11624
|
"kind": "field",
|
|
11864
11625
|
"name": "componentHasFocus",
|
|
@@ -11898,6 +11659,50 @@
|
|
|
11898
11659
|
"name": "AuroElement",
|
|
11899
11660
|
"module": "components/layoutElement/src/auroElement.js"
|
|
11900
11661
|
}
|
|
11662
|
+
},
|
|
11663
|
+
{
|
|
11664
|
+
"kind": "field",
|
|
11665
|
+
"name": "layout",
|
|
11666
|
+
"privacy": "public",
|
|
11667
|
+
"type": {
|
|
11668
|
+
"text": "string"
|
|
11669
|
+
},
|
|
11670
|
+
"description": "Defines the language of an element.",
|
|
11671
|
+
"default": "{'default'}",
|
|
11672
|
+
"attribute": "layout",
|
|
11673
|
+
"reflects": true,
|
|
11674
|
+
"inheritedFrom": {
|
|
11675
|
+
"name": "AuroElement",
|
|
11676
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
11677
|
+
}
|
|
11678
|
+
},
|
|
11679
|
+
{
|
|
11680
|
+
"kind": "field",
|
|
11681
|
+
"name": "shape",
|
|
11682
|
+
"privacy": "public",
|
|
11683
|
+
"type": {
|
|
11684
|
+
"text": "string"
|
|
11685
|
+
},
|
|
11686
|
+
"attribute": "shape",
|
|
11687
|
+
"reflects": true,
|
|
11688
|
+
"inheritedFrom": {
|
|
11689
|
+
"name": "AuroElement",
|
|
11690
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
11691
|
+
}
|
|
11692
|
+
},
|
|
11693
|
+
{
|
|
11694
|
+
"kind": "field",
|
|
11695
|
+
"name": "size",
|
|
11696
|
+
"privacy": "public",
|
|
11697
|
+
"type": {
|
|
11698
|
+
"text": "string"
|
|
11699
|
+
},
|
|
11700
|
+
"attribute": "size",
|
|
11701
|
+
"reflects": true,
|
|
11702
|
+
"inheritedFrom": {
|
|
11703
|
+
"name": "AuroElement",
|
|
11704
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
11705
|
+
}
|
|
11901
11706
|
}
|
|
11902
11707
|
],
|
|
11903
11708
|
"superclass": {
|
|
@@ -11970,10 +11775,10 @@
|
|
|
11970
11775
|
{
|
|
11971
11776
|
"name": "appearance",
|
|
11972
11777
|
"type": {
|
|
11973
|
-
"text": "
|
|
11778
|
+
"text": "'default' | 'inverse'"
|
|
11974
11779
|
},
|
|
11975
11780
|
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
11976
|
-
"default": "
|
|
11781
|
+
"default": "'default'",
|
|
11977
11782
|
"fieldName": "appearance",
|
|
11978
11783
|
"inheritedFrom": {
|
|
11979
11784
|
"name": "BaseInput",
|
|
@@ -12034,7 +11839,6 @@
|
|
|
12034
11839
|
"text": "boolean"
|
|
12035
11840
|
},
|
|
12036
11841
|
"description": "If set, disables the input.",
|
|
12037
|
-
"default": "false",
|
|
12038
11842
|
"fieldName": "disabled",
|
|
12039
11843
|
"inheritedFrom": {
|
|
12040
11844
|
"name": "BaseInput",
|
|
@@ -12149,26 +11953,12 @@
|
|
|
12149
11953
|
"module": "components/input/src/base-input.js"
|
|
12150
11954
|
}
|
|
12151
11955
|
},
|
|
12152
|
-
{
|
|
12153
|
-
"name": "locale",
|
|
12154
|
-
"type": {
|
|
12155
|
-
"text": "string"
|
|
12156
|
-
},
|
|
12157
|
-
"description": "Defines the locale of an element.\nUsed for locale-specific formatting, such as date formats.",
|
|
12158
|
-
"default": "'en-US'",
|
|
12159
|
-
"fieldName": "locale",
|
|
12160
|
-
"inheritedFrom": {
|
|
12161
|
-
"name": "BaseInput",
|
|
12162
|
-
"module": "components/input/src/base-input.js"
|
|
12163
|
-
}
|
|
12164
|
-
},
|
|
12165
11956
|
{
|
|
12166
11957
|
"name": "max",
|
|
12167
11958
|
"type": {
|
|
12168
11959
|
"text": "string"
|
|
12169
11960
|
},
|
|
12170
|
-
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and
|
|
12171
|
-
"default": "undefined",
|
|
11961
|
+
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
12172
11962
|
"fieldName": "max",
|
|
12173
11963
|
"inheritedFrom": {
|
|
12174
11964
|
"name": "BaseInput",
|
|
@@ -12181,7 +11971,6 @@
|
|
|
12181
11971
|
"text": "number"
|
|
12182
11972
|
},
|
|
12183
11973
|
"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.",
|
|
12184
|
-
"default": "undefined",
|
|
12185
11974
|
"fieldName": "maxLength",
|
|
12186
11975
|
"inheritedFrom": {
|
|
12187
11976
|
"name": "BaseInput",
|
|
@@ -12193,8 +11982,7 @@
|
|
|
12193
11982
|
"type": {
|
|
12194
11983
|
"text": "string"
|
|
12195
11984
|
},
|
|
12196
|
-
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and
|
|
12197
|
-
"default": "undefined",
|
|
11985
|
+
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
12198
11986
|
"fieldName": "min",
|
|
12199
11987
|
"inheritedFrom": {
|
|
12200
11988
|
"name": "BaseInput",
|
|
@@ -12207,7 +11995,6 @@
|
|
|
12207
11995
|
"text": "number"
|
|
12208
11996
|
},
|
|
12209
11997
|
"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`.",
|
|
12210
|
-
"default": "undefined",
|
|
12211
11998
|
"fieldName": "minLength",
|
|
12212
11999
|
"inheritedFrom": {
|
|
12213
12000
|
"name": "BaseInput",
|
|
@@ -12256,7 +12043,6 @@
|
|
|
12256
12043
|
"text": "boolean"
|
|
12257
12044
|
},
|
|
12258
12045
|
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
12259
|
-
"default": "false",
|
|
12260
12046
|
"fieldName": "onDark",
|
|
12261
12047
|
"inheritedFrom": {
|
|
12262
12048
|
"name": "BaseInput",
|
|
@@ -12305,7 +12091,6 @@
|
|
|
12305
12091
|
"text": "boolean"
|
|
12306
12092
|
},
|
|
12307
12093
|
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
12308
|
-
"default": "false",
|
|
12309
12094
|
"fieldName": "required",
|
|
12310
12095
|
"inheritedFrom": {
|
|
12311
12096
|
"name": "BaseInput",
|
|
@@ -12354,7 +12139,6 @@
|
|
|
12354
12139
|
"text": "string"
|
|
12355
12140
|
},
|
|
12356
12141
|
"description": "Custom help text message to display for the declared element `type` and type validity fails.",
|
|
12357
|
-
"default": "undefined",
|
|
12358
12142
|
"fieldName": "setCustomValidityForType",
|
|
12359
12143
|
"inheritedFrom": {
|
|
12360
12144
|
"name": "BaseInput",
|
|
@@ -12495,8 +12279,7 @@
|
|
|
12495
12279
|
"type": {
|
|
12496
12280
|
"text": "string"
|
|
12497
12281
|
},
|
|
12498
|
-
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input
|
|
12499
|
-
"default": "undefined",
|
|
12282
|
+
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.",
|
|
12500
12283
|
"fieldName": "value",
|
|
12501
12284
|
"inheritedFrom": {
|
|
12502
12285
|
"name": "BaseInput",
|
|
@@ -12608,7 +12391,7 @@
|
|
|
12608
12391
|
},
|
|
12609
12392
|
{
|
|
12610
12393
|
"kind": "method",
|
|
12611
|
-
"name": "
|
|
12394
|
+
"name": "_initializeDefaults",
|
|
12612
12395
|
"description": "Internal Defaults.",
|
|
12613
12396
|
"privacy": "private",
|
|
12614
12397
|
"return": {
|
|
@@ -12618,155 +12401,49 @@
|
|
|
12618
12401
|
}
|
|
12619
12402
|
},
|
|
12620
12403
|
{
|
|
12621
|
-
"kind": "
|
|
12622
|
-
"name": "
|
|
12623
|
-
"
|
|
12404
|
+
"kind": "method",
|
|
12405
|
+
"name": "patchInputEvent",
|
|
12406
|
+
"parameters": [
|
|
12407
|
+
{
|
|
12408
|
+
"name": "input",
|
|
12409
|
+
"description": "The input element to patch.",
|
|
12410
|
+
"type": {
|
|
12411
|
+
"text": "HTMLInputElement"
|
|
12412
|
+
}
|
|
12413
|
+
}
|
|
12414
|
+
],
|
|
12415
|
+
"description": "Patches the input element to dispatch an 'input' event whenever its value is set programmatically.\nThis ensures that changes to the input's value are consistently communicated, even if not triggered by user input.",
|
|
12624
12416
|
"return": {
|
|
12625
12417
|
"type": {
|
|
12626
|
-
"text": "
|
|
12418
|
+
"text": "void"
|
|
12627
12419
|
}
|
|
12628
12420
|
},
|
|
12629
|
-
"
|
|
12421
|
+
"privacy": "private"
|
|
12630
12422
|
},
|
|
12631
12423
|
{
|
|
12632
|
-
"kind": "
|
|
12633
|
-
"name": "
|
|
12634
|
-
"
|
|
12424
|
+
"kind": "method",
|
|
12425
|
+
"name": "setCustomHelpTextMessage",
|
|
12426
|
+
"privacy": "private",
|
|
12635
12427
|
"return": {
|
|
12636
12428
|
"type": {
|
|
12637
|
-
"text": "
|
|
12429
|
+
"text": "void"
|
|
12638
12430
|
}
|
|
12639
|
-
}
|
|
12640
|
-
"readonly": true
|
|
12431
|
+
}
|
|
12641
12432
|
},
|
|
12642
12433
|
{
|
|
12643
|
-
"kind": "
|
|
12644
|
-
"name": "
|
|
12645
|
-
"
|
|
12434
|
+
"kind": "method",
|
|
12435
|
+
"name": "notifyValidityChange",
|
|
12436
|
+
"privacy": "private",
|
|
12646
12437
|
"return": {
|
|
12647
12438
|
"type": {
|
|
12648
|
-
"text": "
|
|
12649
|
-
}
|
|
12650
|
-
},
|
|
12651
|
-
"readonly": true
|
|
12652
|
-
},
|
|
12653
|
-
{
|
|
12654
|
-
"kind": "method",
|
|
12655
|
-
"name": "setDateObjectProperty",
|
|
12656
|
-
"parameters": [
|
|
12657
|
-
{
|
|
12658
|
-
"name": "propertyName",
|
|
12659
|
-
"description": "Public object property name.",
|
|
12660
|
-
"type": {
|
|
12661
|
-
"text": "'valueObject'|'minObject'|'maxObject'"
|
|
12662
|
-
}
|
|
12663
|
-
},
|
|
12664
|
-
{
|
|
12665
|
-
"name": "propertyValue",
|
|
12666
|
-
"description": "Value to assign.",
|
|
12667
|
-
"type": {
|
|
12668
|
-
"text": "Date|undefined"
|
|
12669
|
-
}
|
|
12670
|
-
}
|
|
12671
|
-
],
|
|
12672
|
-
"description": "Internal setter for readonly date object properties.",
|
|
12673
|
-
"privacy": "private",
|
|
12674
|
-
"return": {
|
|
12675
|
-
"type": {
|
|
12676
|
-
"text": "void"
|
|
12677
|
-
}
|
|
12678
|
-
}
|
|
12679
|
-
},
|
|
12680
|
-
{
|
|
12681
|
-
"kind": "method",
|
|
12682
|
-
"name": "patchInputEvent",
|
|
12683
|
-
"parameters": [
|
|
12684
|
-
{
|
|
12685
|
-
"name": "input",
|
|
12686
|
-
"description": "The input element to patch.",
|
|
12687
|
-
"type": {
|
|
12688
|
-
"text": "HTMLInputElement"
|
|
12689
|
-
}
|
|
12690
|
-
}
|
|
12691
|
-
],
|
|
12692
|
-
"description": "Patches the input element to dispatch an 'input' event whenever its value is set programmatically.\nThis ensures that changes to the input's value are consistently communicated, even if not triggered by user input.",
|
|
12693
|
-
"return": {
|
|
12694
|
-
"type": {
|
|
12695
|
-
"text": "void"
|
|
12696
|
-
}
|
|
12697
|
-
},
|
|
12698
|
-
"privacy": "private"
|
|
12699
|
-
},
|
|
12700
|
-
{
|
|
12701
|
-
"kind": "method",
|
|
12702
|
-
"name": "setCustomHelpTextMessage",
|
|
12703
|
-
"privacy": "private",
|
|
12704
|
-
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
12705
|
-
"return": {
|
|
12706
|
-
"type": {
|
|
12707
|
-
"text": "void"
|
|
12439
|
+
"text": "void"
|
|
12708
12440
|
}
|
|
12709
12441
|
}
|
|
12710
12442
|
},
|
|
12711
12443
|
{
|
|
12712
12444
|
"kind": "method",
|
|
12713
|
-
"name": "
|
|
12714
|
-
"
|
|
12715
|
-
"return": {
|
|
12716
|
-
"type": {
|
|
12717
|
-
"text": "void"
|
|
12718
|
-
}
|
|
12719
|
-
}
|
|
12720
|
-
},
|
|
12721
|
-
{
|
|
12722
|
-
"kind": "method",
|
|
12723
|
-
"name": "syncDateValues",
|
|
12724
|
-
"parameters": [
|
|
12725
|
-
{
|
|
12726
|
-
"name": "changedProperties",
|
|
12727
|
-
"default": "undefined",
|
|
12728
|
-
"description": "Optional map of changed properties used to limit which values are synchronized.",
|
|
12729
|
-
"optional": true,
|
|
12730
|
-
"type": {
|
|
12731
|
-
"text": "Map<string, unknown>|undefined"
|
|
12732
|
-
}
|
|
12733
|
-
}
|
|
12734
|
-
],
|
|
12735
|
-
"description": "Synchronizes the ISO string values and Date object representations for date-related properties.\nThis keeps the model and display values aligned when either side changes.\n\nWhen a full date format is in use, this method updates `value`, `min`, and `max` from their corresponding\nDate objects or vice versa, based on which properties have changed. It only runs when the current configuration\nrepresents a full year/month/day date format.",
|
|
12736
|
-
"return": {
|
|
12737
|
-
"type": {
|
|
12738
|
-
"text": "void"
|
|
12739
|
-
}
|
|
12740
|
-
},
|
|
12741
|
-
"privacy": "private"
|
|
12742
|
-
},
|
|
12743
|
-
{
|
|
12744
|
-
"kind": "method",
|
|
12745
|
-
"name": "syncSingleDateValue",
|
|
12746
|
-
"parameters": [
|
|
12747
|
-
{
|
|
12748
|
-
"name": "changedProperties",
|
|
12749
|
-
"description": "Map of changed properties from Lit.",
|
|
12750
|
-
"type": {
|
|
12751
|
-
"text": "Map<string, unknown>|undefined"
|
|
12752
|
-
}
|
|
12753
|
-
},
|
|
12754
|
-
{
|
|
12755
|
-
"name": "objectProperty",
|
|
12756
|
-
"description": "Date object property name.",
|
|
12757
|
-
"type": {
|
|
12758
|
-
"text": "string"
|
|
12759
|
-
}
|
|
12760
|
-
},
|
|
12761
|
-
{
|
|
12762
|
-
"name": "valueProperty",
|
|
12763
|
-
"description": "ISO string property name.",
|
|
12764
|
-
"type": {
|
|
12765
|
-
"text": "string"
|
|
12766
|
-
}
|
|
12767
|
-
}
|
|
12768
|
-
],
|
|
12769
|
-
"description": "Synchronizes one date object/string property pair.",
|
|
12445
|
+
"name": "configureAutoFormatting",
|
|
12446
|
+
"description": "Sets up IMasks and logic based on auto-formatting requirements.",
|
|
12770
12447
|
"privacy": "private",
|
|
12771
12448
|
"return": {
|
|
12772
12449
|
"type": {
|
|
@@ -12776,12 +12453,11 @@
|
|
|
12776
12453
|
},
|
|
12777
12454
|
{
|
|
12778
12455
|
"kind": "method",
|
|
12779
|
-
"name": "
|
|
12780
|
-
"description": "Sets up IMasks and logic based on auto-formatting requirements.",
|
|
12456
|
+
"name": "definePattern",
|
|
12781
12457
|
"privacy": "private",
|
|
12782
12458
|
"return": {
|
|
12783
12459
|
"type": {
|
|
12784
|
-
"text": "
|
|
12460
|
+
"text": "string"
|
|
12785
12461
|
}
|
|
12786
12462
|
}
|
|
12787
12463
|
},
|
|
@@ -12964,233 +12640,103 @@
|
|
|
12964
12640
|
}
|
|
12965
12641
|
},
|
|
12966
12642
|
{
|
|
12967
|
-
"kind": "
|
|
12968
|
-
"name": "
|
|
12969
|
-
"
|
|
12643
|
+
"kind": "method",
|
|
12644
|
+
"name": "getInputType",
|
|
12645
|
+
"parameters": [
|
|
12646
|
+
{
|
|
12647
|
+
"name": "type",
|
|
12648
|
+
"description": "Value entered into component prop.",
|
|
12649
|
+
"type": {
|
|
12650
|
+
"text": "string"
|
|
12651
|
+
}
|
|
12652
|
+
}
|
|
12653
|
+
],
|
|
12654
|
+
"description": "Validates against list of supported this.allowedInputTypes; return type=text if invalid request.",
|
|
12970
12655
|
"privacy": "private",
|
|
12971
12656
|
"return": {
|
|
12972
12657
|
"type": {
|
|
12973
|
-
"text": "
|
|
12658
|
+
"text": "string"
|
|
12974
12659
|
}
|
|
12975
|
-
}
|
|
12976
|
-
"readonly": true
|
|
12660
|
+
}
|
|
12977
12661
|
},
|
|
12978
12662
|
{
|
|
12979
12663
|
"kind": "method",
|
|
12980
|
-
"name": "
|
|
12981
|
-
"description": "
|
|
12664
|
+
"name": "getHelpText",
|
|
12665
|
+
"description": "Determines default help text string.",
|
|
12982
12666
|
"privacy": "private",
|
|
12983
12667
|
"return": {
|
|
12984
12668
|
"type": {
|
|
12985
|
-
"text": "
|
|
12669
|
+
"text": "string"
|
|
12986
12670
|
}
|
|
12987
12671
|
}
|
|
12988
12672
|
},
|
|
12989
12673
|
{
|
|
12990
12674
|
"kind": "method",
|
|
12991
|
-
"name": "
|
|
12992
|
-
"description": "Function to support
|
|
12675
|
+
"name": "handleClickShowPassword",
|
|
12676
|
+
"description": "Function to support show-password feature.",
|
|
12993
12677
|
"privacy": "private",
|
|
12994
|
-
"deprecated": "https://dev.azure.com/itsals/E_Retain_Content/_workitems/edit/1557296",
|
|
12995
12678
|
"return": {
|
|
12996
12679
|
"type": {
|
|
12997
|
-
"text": "
|
|
12680
|
+
"text": "void"
|
|
12998
12681
|
}
|
|
12999
12682
|
}
|
|
13000
12683
|
},
|
|
13001
12684
|
{
|
|
13002
12685
|
"kind": "field",
|
|
13003
|
-
"name": "
|
|
13004
|
-
"
|
|
13005
|
-
"
|
|
13006
|
-
|
|
13007
|
-
|
|
13008
|
-
|
|
13009
|
-
|
|
13010
|
-
"attribute": "appearance",
|
|
13011
|
-
"reflects": true
|
|
13012
|
-
},
|
|
13013
|
-
{
|
|
13014
|
-
"kind": "field",
|
|
13015
|
-
"name": "disabled",
|
|
13016
|
-
"privacy": "public",
|
|
13017
|
-
"type": {
|
|
13018
|
-
"text": "boolean"
|
|
12686
|
+
"name": "placeholderStr",
|
|
12687
|
+
"description": "Support placeholder text.",
|
|
12688
|
+
"privacy": "private",
|
|
12689
|
+
"return": {
|
|
12690
|
+
"type": {
|
|
12691
|
+
"text": "void"
|
|
12692
|
+
}
|
|
13019
12693
|
},
|
|
13020
|
-
"
|
|
13021
|
-
"default": "false",
|
|
13022
|
-
"attribute": "disabled",
|
|
13023
|
-
"reflects": true
|
|
12694
|
+
"readonly": true
|
|
13024
12695
|
},
|
|
13025
12696
|
{
|
|
13026
|
-
"kind": "
|
|
13027
|
-
"name": "
|
|
13028
|
-
"
|
|
13029
|
-
"
|
|
13030
|
-
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
"attribute": "layout",
|
|
13035
|
-
"reflects": true,
|
|
13036
|
-
"inheritedFrom": {
|
|
13037
|
-
"name": "AuroElement",
|
|
13038
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
12697
|
+
"kind": "method",
|
|
12698
|
+
"name": "defineInputIcon",
|
|
12699
|
+
"description": "Defines placement of input icon based on type, used with classMap.",
|
|
12700
|
+
"privacy": "private",
|
|
12701
|
+
"return": {
|
|
12702
|
+
"type": {
|
|
12703
|
+
"text": "boolean"
|
|
12704
|
+
}
|
|
13039
12705
|
}
|
|
13040
12706
|
},
|
|
13041
12707
|
{
|
|
13042
|
-
"kind": "
|
|
13043
|
-
"name": "
|
|
13044
|
-
"
|
|
13045
|
-
"
|
|
13046
|
-
|
|
13047
|
-
|
|
13048
|
-
|
|
13049
|
-
|
|
13050
|
-
"attribute": "locale",
|
|
13051
|
-
"reflects": true
|
|
13052
|
-
},
|
|
13053
|
-
{
|
|
13054
|
-
"kind": "field",
|
|
13055
|
-
"name": "max",
|
|
13056
|
-
"privacy": "public",
|
|
13057
|
-
"type": {
|
|
13058
|
-
"text": "string"
|
|
13059
|
-
},
|
|
13060
|
-
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and ISO format.",
|
|
13061
|
-
"default": "undefined",
|
|
13062
|
-
"attribute": "max"
|
|
13063
|
-
},
|
|
13064
|
-
{
|
|
13065
|
-
"kind": "field",
|
|
13066
|
-
"name": "_maxObject",
|
|
13067
|
-
"default": "undefined"
|
|
13068
|
-
},
|
|
13069
|
-
{
|
|
13070
|
-
"kind": "field",
|
|
13071
|
-
"name": "maxLength",
|
|
13072
|
-
"privacy": "public",
|
|
13073
|
-
"type": {
|
|
13074
|
-
"text": "number"
|
|
13075
|
-
},
|
|
13076
|
-
"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.",
|
|
13077
|
-
"default": "undefined",
|
|
13078
|
-
"attribute": "maxLength",
|
|
13079
|
-
"reflects": true
|
|
13080
|
-
},
|
|
13081
|
-
{
|
|
13082
|
-
"kind": "field",
|
|
13083
|
-
"name": "min",
|
|
13084
|
-
"privacy": "public",
|
|
13085
|
-
"type": {
|
|
13086
|
-
"text": "string"
|
|
13087
|
-
},
|
|
13088
|
-
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and ISO date format.",
|
|
13089
|
-
"default": "undefined",
|
|
13090
|
-
"attribute": "min"
|
|
13091
|
-
},
|
|
13092
|
-
{
|
|
13093
|
-
"kind": "field",
|
|
13094
|
-
"name": "_minObject",
|
|
13095
|
-
"default": "undefined"
|
|
13096
|
-
},
|
|
13097
|
-
{
|
|
13098
|
-
"kind": "field",
|
|
13099
|
-
"name": "minLength",
|
|
13100
|
-
"privacy": "public",
|
|
13101
|
-
"type": {
|
|
13102
|
-
"text": "number"
|
|
13103
|
-
},
|
|
13104
|
-
"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`.",
|
|
13105
|
-
"default": "undefined",
|
|
13106
|
-
"attribute": "minLength",
|
|
13107
|
-
"reflects": true
|
|
13108
|
-
},
|
|
13109
|
-
{
|
|
13110
|
-
"kind": "field",
|
|
13111
|
-
"name": "required",
|
|
13112
|
-
"privacy": "public",
|
|
13113
|
-
"type": {
|
|
13114
|
-
"text": "boolean"
|
|
13115
|
-
},
|
|
13116
|
-
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
13117
|
-
"default": "false",
|
|
13118
|
-
"attribute": "required",
|
|
13119
|
-
"reflects": true
|
|
13120
|
-
},
|
|
13121
|
-
{
|
|
13122
|
-
"kind": "field",
|
|
13123
|
-
"name": "onDark",
|
|
13124
|
-
"privacy": "public",
|
|
13125
|
-
"type": {
|
|
13126
|
-
"text": "boolean"
|
|
13127
|
-
},
|
|
13128
|
-
"attribute": "onDark",
|
|
13129
|
-
"reflects": true,
|
|
13130
|
-
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
13131
|
-
"default": "false",
|
|
13132
|
-
"inheritedFrom": {
|
|
13133
|
-
"name": "AuroElement",
|
|
13134
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
12708
|
+
"kind": "method",
|
|
12709
|
+
"name": "defineLabelPadding",
|
|
12710
|
+
"description": "Defines padding of input label based on type, used with classMap.",
|
|
12711
|
+
"privacy": "private",
|
|
12712
|
+
"return": {
|
|
12713
|
+
"type": {
|
|
12714
|
+
"text": "boolean"
|
|
12715
|
+
}
|
|
13135
12716
|
}
|
|
13136
12717
|
},
|
|
13137
12718
|
{
|
|
13138
|
-
"kind": "
|
|
13139
|
-
"name": "
|
|
13140
|
-
"
|
|
13141
|
-
"
|
|
13142
|
-
|
|
13143
|
-
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
"attribute": "setCustomValidityForType"
|
|
13147
|
-
},
|
|
13148
|
-
{
|
|
13149
|
-
"kind": "field",
|
|
13150
|
-
"name": "size",
|
|
13151
|
-
"privacy": "public",
|
|
13152
|
-
"type": {
|
|
13153
|
-
"text": "string"
|
|
13154
|
-
},
|
|
13155
|
-
"attribute": "size",
|
|
13156
|
-
"reflects": true,
|
|
13157
|
-
"default": "'lg'",
|
|
13158
|
-
"inheritedFrom": {
|
|
13159
|
-
"name": "AuroElement",
|
|
13160
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
12719
|
+
"kind": "method",
|
|
12720
|
+
"name": "processCreditCard",
|
|
12721
|
+
"description": "Function to support credit-card feature type.",
|
|
12722
|
+
"privacy": "private",
|
|
12723
|
+
"return": {
|
|
12724
|
+
"type": {
|
|
12725
|
+
"text": "void"
|
|
12726
|
+
}
|
|
13161
12727
|
}
|
|
13162
12728
|
},
|
|
13163
12729
|
{
|
|
13164
|
-
"kind": "
|
|
13165
|
-
"name": "
|
|
13166
|
-
"
|
|
13167
|
-
"
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
|
|
13172
|
-
"default": "'classic'",
|
|
13173
|
-
"inheritedFrom": {
|
|
13174
|
-
"name": "AuroElement",
|
|
13175
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
12730
|
+
"kind": "method",
|
|
12731
|
+
"name": "matchInputValueToCreditCard",
|
|
12732
|
+
"description": "Function to support credit-card feature type.",
|
|
12733
|
+
"privacy": "private",
|
|
12734
|
+
"return": {
|
|
12735
|
+
"type": {
|
|
12736
|
+
"text": "object"
|
|
12737
|
+
}
|
|
13176
12738
|
}
|
|
13177
12739
|
},
|
|
13178
|
-
{
|
|
13179
|
-
"kind": "field",
|
|
13180
|
-
"name": "value",
|
|
13181
|
-
"privacy": "public",
|
|
13182
|
-
"type": {
|
|
13183
|
-
"text": "string"
|
|
13184
|
-
},
|
|
13185
|
-
"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.",
|
|
13186
|
-
"default": "undefined",
|
|
13187
|
-
"attribute": "value"
|
|
13188
|
-
},
|
|
13189
|
-
{
|
|
13190
|
-
"kind": "field",
|
|
13191
|
-
"name": "_valueObject",
|
|
13192
|
-
"default": "undefined"
|
|
13193
|
-
},
|
|
13194
12740
|
{
|
|
13195
12741
|
"kind": "field",
|
|
13196
12742
|
"name": "a11yRole",
|
|
@@ -13246,6 +12792,18 @@
|
|
|
13246
12792
|
"attribute": "activeLabel",
|
|
13247
12793
|
"reflects": true
|
|
13248
12794
|
},
|
|
12795
|
+
{
|
|
12796
|
+
"kind": "field",
|
|
12797
|
+
"name": "appearance",
|
|
12798
|
+
"privacy": "public",
|
|
12799
|
+
"type": {
|
|
12800
|
+
"text": "'default' | 'inverse'"
|
|
12801
|
+
},
|
|
12802
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
12803
|
+
"default": "'default'",
|
|
12804
|
+
"attribute": "appearance",
|
|
12805
|
+
"reflects": true
|
|
12806
|
+
},
|
|
13249
12807
|
{
|
|
13250
12808
|
"kind": "field",
|
|
13251
12809
|
"name": "autocapitalize",
|
|
@@ -13289,6 +12847,17 @@
|
|
|
13289
12847
|
"description": "Custom help text message for email type validity.",
|
|
13290
12848
|
"attribute": "customValidityTypeEmail"
|
|
13291
12849
|
},
|
|
12850
|
+
{
|
|
12851
|
+
"kind": "field",
|
|
12852
|
+
"name": "disabled",
|
|
12853
|
+
"privacy": "public",
|
|
12854
|
+
"type": {
|
|
12855
|
+
"text": "boolean"
|
|
12856
|
+
},
|
|
12857
|
+
"description": "If set, disables the input.",
|
|
12858
|
+
"attribute": "disabled",
|
|
12859
|
+
"reflects": true
|
|
12860
|
+
},
|
|
13292
12861
|
{
|
|
13293
12862
|
"kind": "field",
|
|
13294
12863
|
"name": "dvInputOnly",
|
|
@@ -13405,13 +12974,55 @@
|
|
|
13405
12974
|
},
|
|
13406
12975
|
{
|
|
13407
12976
|
"kind": "field",
|
|
13408
|
-
"name": "lang",
|
|
12977
|
+
"name": "lang",
|
|
12978
|
+
"privacy": "public",
|
|
12979
|
+
"type": {
|
|
12980
|
+
"text": "string"
|
|
12981
|
+
},
|
|
12982
|
+
"description": "Defines the language of an element.",
|
|
12983
|
+
"attribute": "lang",
|
|
12984
|
+
"reflects": true
|
|
12985
|
+
},
|
|
12986
|
+
{
|
|
12987
|
+
"kind": "field",
|
|
12988
|
+
"name": "max",
|
|
12989
|
+
"privacy": "public",
|
|
12990
|
+
"type": {
|
|
12991
|
+
"text": "string"
|
|
12992
|
+
},
|
|
12993
|
+
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
12994
|
+
"attribute": "max"
|
|
12995
|
+
},
|
|
12996
|
+
{
|
|
12997
|
+
"kind": "field",
|
|
12998
|
+
"name": "maxLength",
|
|
12999
|
+
"privacy": "public",
|
|
13000
|
+
"type": {
|
|
13001
|
+
"text": "number"
|
|
13002
|
+
},
|
|
13003
|
+
"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.",
|
|
13004
|
+
"attribute": "maxLength",
|
|
13005
|
+
"reflects": true
|
|
13006
|
+
},
|
|
13007
|
+
{
|
|
13008
|
+
"kind": "field",
|
|
13009
|
+
"name": "min",
|
|
13010
|
+
"privacy": "public",
|
|
13011
|
+
"type": {
|
|
13012
|
+
"text": "string"
|
|
13013
|
+
},
|
|
13014
|
+
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
13015
|
+
"attribute": "min"
|
|
13016
|
+
},
|
|
13017
|
+
{
|
|
13018
|
+
"kind": "field",
|
|
13019
|
+
"name": "minLength",
|
|
13409
13020
|
"privacy": "public",
|
|
13410
13021
|
"type": {
|
|
13411
|
-
"text": "
|
|
13022
|
+
"text": "number"
|
|
13412
13023
|
},
|
|
13413
|
-
"description": "
|
|
13414
|
-
"attribute": "
|
|
13024
|
+
"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`.",
|
|
13025
|
+
"attribute": "minLength",
|
|
13415
13026
|
"reflects": true
|
|
13416
13027
|
},
|
|
13417
13028
|
{
|
|
@@ -13447,6 +13058,21 @@
|
|
|
13447
13058
|
"attribute": "noValidate",
|
|
13448
13059
|
"reflects": true
|
|
13449
13060
|
},
|
|
13061
|
+
{
|
|
13062
|
+
"kind": "field",
|
|
13063
|
+
"name": "onDark",
|
|
13064
|
+
"privacy": "public",
|
|
13065
|
+
"type": {
|
|
13066
|
+
"text": "boolean"
|
|
13067
|
+
},
|
|
13068
|
+
"attribute": "onDark",
|
|
13069
|
+
"reflects": true,
|
|
13070
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
13071
|
+
"inheritedFrom": {
|
|
13072
|
+
"name": "AuroElement",
|
|
13073
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
13074
|
+
}
|
|
13075
|
+
},
|
|
13450
13076
|
{
|
|
13451
13077
|
"kind": "field",
|
|
13452
13078
|
"name": "pattern",
|
|
@@ -13480,6 +13106,17 @@
|
|
|
13480
13106
|
"attribute": "readonly",
|
|
13481
13107
|
"reflects": true
|
|
13482
13108
|
},
|
|
13109
|
+
{
|
|
13110
|
+
"kind": "field",
|
|
13111
|
+
"name": "required",
|
|
13112
|
+
"privacy": "public",
|
|
13113
|
+
"type": {
|
|
13114
|
+
"text": "boolean"
|
|
13115
|
+
},
|
|
13116
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
13117
|
+
"attribute": "required",
|
|
13118
|
+
"reflects": true
|
|
13119
|
+
},
|
|
13483
13120
|
{
|
|
13484
13121
|
"kind": "field",
|
|
13485
13122
|
"name": "setCustomValidity",
|
|
@@ -13510,6 +13147,16 @@
|
|
|
13510
13147
|
"description": "Custom help text message to display when validity = `customError`.",
|
|
13511
13148
|
"attribute": "setCustomValidityCustomError"
|
|
13512
13149
|
},
|
|
13150
|
+
{
|
|
13151
|
+
"kind": "field",
|
|
13152
|
+
"name": "setCustomValidityForType",
|
|
13153
|
+
"privacy": "public",
|
|
13154
|
+
"type": {
|
|
13155
|
+
"text": "string"
|
|
13156
|
+
},
|
|
13157
|
+
"description": "Custom help text message to display for the declared element `type` and type validity fails.",
|
|
13158
|
+
"attribute": "setCustomValidityForType"
|
|
13159
|
+
},
|
|
13513
13160
|
{
|
|
13514
13161
|
"kind": "field",
|
|
13515
13162
|
"name": "setCustomValidityRangeOverflow",
|
|
@@ -13630,6 +13277,16 @@
|
|
|
13630
13277
|
"attribute": "validity",
|
|
13631
13278
|
"reflects": true
|
|
13632
13279
|
},
|
|
13280
|
+
{
|
|
13281
|
+
"kind": "field",
|
|
13282
|
+
"name": "value",
|
|
13283
|
+
"privacy": "public",
|
|
13284
|
+
"type": {
|
|
13285
|
+
"text": "string"
|
|
13286
|
+
},
|
|
13287
|
+
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.",
|
|
13288
|
+
"attribute": "value"
|
|
13289
|
+
},
|
|
13633
13290
|
{
|
|
13634
13291
|
"kind": "field",
|
|
13635
13292
|
"name": "componentHasFocus",
|
|
@@ -13669,6 +13326,50 @@
|
|
|
13669
13326
|
"name": "AuroElement",
|
|
13670
13327
|
"module": "components/layoutElement/src/auroElement.js"
|
|
13671
13328
|
}
|
|
13329
|
+
},
|
|
13330
|
+
{
|
|
13331
|
+
"kind": "field",
|
|
13332
|
+
"name": "layout",
|
|
13333
|
+
"privacy": "public",
|
|
13334
|
+
"type": {
|
|
13335
|
+
"text": "string"
|
|
13336
|
+
},
|
|
13337
|
+
"description": "Defines the language of an element.",
|
|
13338
|
+
"default": "{'default'}",
|
|
13339
|
+
"attribute": "layout",
|
|
13340
|
+
"reflects": true,
|
|
13341
|
+
"inheritedFrom": {
|
|
13342
|
+
"name": "AuroElement",
|
|
13343
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
13344
|
+
}
|
|
13345
|
+
},
|
|
13346
|
+
{
|
|
13347
|
+
"kind": "field",
|
|
13348
|
+
"name": "shape",
|
|
13349
|
+
"privacy": "public",
|
|
13350
|
+
"type": {
|
|
13351
|
+
"text": "string"
|
|
13352
|
+
},
|
|
13353
|
+
"attribute": "shape",
|
|
13354
|
+
"reflects": true,
|
|
13355
|
+
"inheritedFrom": {
|
|
13356
|
+
"name": "AuroElement",
|
|
13357
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
13358
|
+
}
|
|
13359
|
+
},
|
|
13360
|
+
{
|
|
13361
|
+
"kind": "field",
|
|
13362
|
+
"name": "size",
|
|
13363
|
+
"privacy": "public",
|
|
13364
|
+
"type": {
|
|
13365
|
+
"text": "string"
|
|
13366
|
+
},
|
|
13367
|
+
"attribute": "size",
|
|
13368
|
+
"reflects": true,
|
|
13369
|
+
"inheritedFrom": {
|
|
13370
|
+
"name": "AuroElement",
|
|
13371
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
13372
|
+
}
|
|
13672
13373
|
}
|
|
13673
13374
|
],
|
|
13674
13375
|
"events": [
|
|
@@ -13731,10 +13432,10 @@
|
|
|
13731
13432
|
{
|
|
13732
13433
|
"name": "appearance",
|
|
13733
13434
|
"type": {
|
|
13734
|
-
"text": "
|
|
13435
|
+
"text": "'default' | 'inverse'"
|
|
13735
13436
|
},
|
|
13736
13437
|
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
13737
|
-
"default": "
|
|
13438
|
+
"default": "'default'",
|
|
13738
13439
|
"fieldName": "appearance"
|
|
13739
13440
|
},
|
|
13740
13441
|
{
|
|
@@ -13775,7 +13476,6 @@
|
|
|
13775
13476
|
"text": "boolean"
|
|
13776
13477
|
},
|
|
13777
13478
|
"description": "If set, disables the input.",
|
|
13778
|
-
"default": "false",
|
|
13779
13479
|
"fieldName": "disabled"
|
|
13780
13480
|
},
|
|
13781
13481
|
{
|
|
@@ -13850,22 +13550,12 @@
|
|
|
13850
13550
|
"description": "Defines the language of an element.",
|
|
13851
13551
|
"fieldName": "lang"
|
|
13852
13552
|
},
|
|
13853
|
-
{
|
|
13854
|
-
"name": "locale",
|
|
13855
|
-
"type": {
|
|
13856
|
-
"text": "string"
|
|
13857
|
-
},
|
|
13858
|
-
"description": "Defines the locale of an element.\nUsed for locale-specific formatting, such as date formats.",
|
|
13859
|
-
"default": "'en-US'",
|
|
13860
|
-
"fieldName": "locale"
|
|
13861
|
-
},
|
|
13862
13553
|
{
|
|
13863
13554
|
"name": "max",
|
|
13864
13555
|
"type": {
|
|
13865
13556
|
"text": "string"
|
|
13866
13557
|
},
|
|
13867
|
-
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and
|
|
13868
|
-
"default": "undefined",
|
|
13558
|
+
"description": "The maximum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
13869
13559
|
"fieldName": "max"
|
|
13870
13560
|
},
|
|
13871
13561
|
{
|
|
@@ -13874,7 +13564,6 @@
|
|
|
13874
13564
|
"text": "number"
|
|
13875
13565
|
},
|
|
13876
13566
|
"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.",
|
|
13877
|
-
"default": "undefined",
|
|
13878
13567
|
"fieldName": "maxLength"
|
|
13879
13568
|
},
|
|
13880
13569
|
{
|
|
@@ -13882,8 +13571,7 @@
|
|
|
13882
13571
|
"type": {
|
|
13883
13572
|
"text": "string"
|
|
13884
13573
|
},
|
|
13885
|
-
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and
|
|
13886
|
-
"default": "undefined",
|
|
13574
|
+
"description": "The minimum value allowed. This only applies for inputs with a type of `number` and all date formats.",
|
|
13887
13575
|
"fieldName": "min"
|
|
13888
13576
|
},
|
|
13889
13577
|
{
|
|
@@ -13892,7 +13580,6 @@
|
|
|
13892
13580
|
"text": "number"
|
|
13893
13581
|
},
|
|
13894
13582
|
"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`.",
|
|
13895
|
-
"default": "undefined",
|
|
13896
13583
|
"fieldName": "minLength"
|
|
13897
13584
|
},
|
|
13898
13585
|
{
|
|
@@ -13925,7 +13612,6 @@
|
|
|
13925
13612
|
"text": "boolean"
|
|
13926
13613
|
},
|
|
13927
13614
|
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
13928
|
-
"default": "false",
|
|
13929
13615
|
"fieldName": "onDark"
|
|
13930
13616
|
},
|
|
13931
13617
|
{
|
|
@@ -13958,7 +13644,6 @@
|
|
|
13958
13644
|
"text": "boolean"
|
|
13959
13645
|
},
|
|
13960
13646
|
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
13961
|
-
"default": "false",
|
|
13962
13647
|
"fieldName": "required"
|
|
13963
13648
|
},
|
|
13964
13649
|
{
|
|
@@ -13991,7 +13676,6 @@
|
|
|
13991
13676
|
"text": "string"
|
|
13992
13677
|
},
|
|
13993
13678
|
"description": "Custom help text message to display for the declared element `type` and type validity fails.",
|
|
13994
|
-
"default": "undefined",
|
|
13995
13679
|
"fieldName": "setCustomValidityForType"
|
|
13996
13680
|
},
|
|
13997
13681
|
{
|
|
@@ -14084,8 +13768,7 @@
|
|
|
14084
13768
|
"type": {
|
|
14085
13769
|
"text": "string"
|
|
14086
13770
|
},
|
|
14087
|
-
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input
|
|
14088
|
-
"default": "undefined",
|
|
13771
|
+
"description": "Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.",
|
|
14089
13772
|
"fieldName": "value"
|
|
14090
13773
|
},
|
|
14091
13774
|
{
|
|
@@ -14281,14 +13964,6 @@
|
|
|
14281
13964
|
"name": "AuroInput",
|
|
14282
13965
|
"module": "components/input/src/index.js"
|
|
14283
13966
|
}
|
|
14284
|
-
},
|
|
14285
|
-
{
|
|
14286
|
-
"kind": "js",
|
|
14287
|
-
"name": "AuroInputUtil",
|
|
14288
|
-
"declaration": {
|
|
14289
|
-
"name": "AuroInputUtil",
|
|
14290
|
-
"module": "components/input/src/index.js"
|
|
14291
|
-
}
|
|
14292
13967
|
}
|
|
14293
13968
|
]
|
|
14294
13969
|
},
|
|
@@ -14307,91 +13982,6 @@
|
|
|
14307
13982
|
"description": "",
|
|
14308
13983
|
"name": "AuroInputUtilities",
|
|
14309
13984
|
"members": [
|
|
14310
|
-
{
|
|
14311
|
-
"kind": "method",
|
|
14312
|
-
"name": "updateFormat",
|
|
14313
|
-
"parameters": [
|
|
14314
|
-
{
|
|
14315
|
-
"name": "newFormat",
|
|
14316
|
-
"description": "New date format string.",
|
|
14317
|
-
"type": {
|
|
14318
|
-
"text": "string"
|
|
14319
|
-
}
|
|
14320
|
-
}
|
|
14321
|
-
],
|
|
14322
|
-
"description": "Updates the date format override.",
|
|
14323
|
-
"return": {
|
|
14324
|
-
"type": {
|
|
14325
|
-
"text": "void"
|
|
14326
|
-
}
|
|
14327
|
-
}
|
|
14328
|
-
},
|
|
14329
|
-
{
|
|
14330
|
-
"kind": "method",
|
|
14331
|
-
"name": "toDateFnsMask",
|
|
14332
|
-
"parameters": [
|
|
14333
|
-
{
|
|
14334
|
-
"name": "mask",
|
|
14335
|
-
"description": "IMask date mask (e.g. \"MM/DD/YYYY\").",
|
|
14336
|
-
"type": {
|
|
14337
|
-
"text": "string"
|
|
14338
|
-
}
|
|
14339
|
-
}
|
|
14340
|
-
],
|
|
14341
|
-
"description": "Converts an IMask-style date mask to a date-fns compatible format string.",
|
|
14342
|
-
"return": {
|
|
14343
|
-
"type": {
|
|
14344
|
-
"text": "string"
|
|
14345
|
-
}
|
|
14346
|
-
}
|
|
14347
|
-
},
|
|
14348
|
-
{
|
|
14349
|
-
"kind": "method",
|
|
14350
|
-
"name": "getDateMaskFromLocale",
|
|
14351
|
-
"parameters": [
|
|
14352
|
-
{
|
|
14353
|
-
"name": "locale",
|
|
14354
|
-
"description": "BCP 47 language tag (e.g. \"en-US\", \"fr-FR\", \"ja-JP\").",
|
|
14355
|
-
"optional": true,
|
|
14356
|
-
"type": {
|
|
14357
|
-
"text": "string"
|
|
14358
|
-
}
|
|
14359
|
-
}
|
|
14360
|
-
],
|
|
14361
|
-
"description": "Generates a date mask based on the provided locale.",
|
|
14362
|
-
"return": {
|
|
14363
|
-
"type": {
|
|
14364
|
-
"text": "string"
|
|
14365
|
-
}
|
|
14366
|
-
}
|
|
14367
|
-
},
|
|
14368
|
-
{
|
|
14369
|
-
"kind": "method",
|
|
14370
|
-
"name": "parseDateByMask",
|
|
14371
|
-
"parameters": [
|
|
14372
|
-
{
|
|
14373
|
-
"name": "dateString",
|
|
14374
|
-
"description": "The date string to parse.",
|
|
14375
|
-
"type": {
|
|
14376
|
-
"text": "string"
|
|
14377
|
-
}
|
|
14378
|
-
},
|
|
14379
|
-
{
|
|
14380
|
-
"name": "mask",
|
|
14381
|
-
"description": "The date mask to use for parsing.",
|
|
14382
|
-
"type": {
|
|
14383
|
-
"text": "string"
|
|
14384
|
-
}
|
|
14385
|
-
}
|
|
14386
|
-
],
|
|
14387
|
-
"description": "Parses a date string using the provided mask.",
|
|
14388
|
-
"privacy": "private",
|
|
14389
|
-
"return": {
|
|
14390
|
-
"type": {
|
|
14391
|
-
"text": "string"
|
|
14392
|
-
}
|
|
14393
|
-
}
|
|
14394
|
-
},
|
|
14395
13985
|
{
|
|
14396
13986
|
"kind": "method",
|
|
14397
13987
|
"name": "getMaskOptions",
|
|
@@ -14415,127 +14005,63 @@
|
|
|
14415
14005
|
"privacy": "private",
|
|
14416
14006
|
"return": {
|
|
14417
14007
|
"type": {
|
|
14418
|
-
"text": "
|
|
14419
|
-
}
|
|
14420
|
-
}
|
|
14421
|
-
},
|
|
14422
|
-
{
|
|
14423
|
-
"kind": "method",
|
|
14424
|
-
"name": "isFullDateFormat",
|
|
14425
|
-
"parameters": [
|
|
14426
|
-
{
|
|
14427
|
-
"name": "type",
|
|
14428
|
-
"description": "The input type.",
|
|
14429
|
-
"type": {
|
|
14430
|
-
"text": "string"
|
|
14431
|
-
}
|
|
14432
|
-
},
|
|
14433
|
-
{
|
|
14434
|
-
"name": "format",
|
|
14435
|
-
"description": "The date format string.",
|
|
14436
|
-
"type": {
|
|
14437
|
-
"text": "string"
|
|
14438
|
-
}
|
|
14439
|
-
}
|
|
14440
|
-
],
|
|
14441
|
-
"description": "Determines if the given type and format combination represents a full year/month/day date.",
|
|
14442
|
-
"privacy": "private",
|
|
14443
|
-
"return": {
|
|
14444
|
-
"type": {
|
|
14445
|
-
"text": "boolean"
|
|
14008
|
+
"text": "void"
|
|
14446
14009
|
}
|
|
14447
14010
|
}
|
|
14448
14011
|
},
|
|
14449
14012
|
{
|
|
14450
14013
|
"kind": "method",
|
|
14451
|
-
"name": "
|
|
14014
|
+
"name": "toNorthAmericanFormat",
|
|
14452
14015
|
"parameters": [
|
|
14453
14016
|
{
|
|
14454
|
-
"name": "
|
|
14455
|
-
"description": "
|
|
14017
|
+
"name": "dateStr",
|
|
14018
|
+
"description": "Date string to format.",
|
|
14456
14019
|
"type": {
|
|
14457
14020
|
"text": "string"
|
|
14458
14021
|
}
|
|
14459
14022
|
},
|
|
14460
14023
|
{
|
|
14461
14024
|
"name": "format",
|
|
14462
|
-
"description": "
|
|
14025
|
+
"description": "Date format to use.",
|
|
14463
14026
|
"type": {
|
|
14464
14027
|
"text": "string"
|
|
14465
14028
|
}
|
|
14466
14029
|
}
|
|
14467
14030
|
],
|
|
14468
|
-
"description": "Converts a display string to its model value.\nFor full date formats, converts the display string to an ISO date string.",
|
|
14469
14031
|
"privacy": "private",
|
|
14470
14032
|
"return": {
|
|
14471
14033
|
"type": {
|
|
14472
|
-
"text": "
|
|
14034
|
+
"text": "void"
|
|
14473
14035
|
}
|
|
14474
14036
|
}
|
|
14475
14037
|
},
|
|
14476
14038
|
{
|
|
14477
14039
|
"kind": "method",
|
|
14478
|
-
"name": "
|
|
14040
|
+
"name": "parseDate",
|
|
14479
14041
|
"parameters": [
|
|
14480
14042
|
{
|
|
14481
|
-
"name": "
|
|
14482
|
-
"description": "
|
|
14043
|
+
"name": "dateStr",
|
|
14044
|
+
"description": "Date string to parse.",
|
|
14483
14045
|
"type": {
|
|
14484
14046
|
"text": "string"
|
|
14485
14047
|
}
|
|
14486
14048
|
},
|
|
14487
|
-
{
|
|
14488
|
-
"name": "valueObject",
|
|
14489
|
-
"description": "Date object representation of value.",
|
|
14490
|
-
"type": {
|
|
14491
|
-
"text": "Date|undefined"
|
|
14492
|
-
}
|
|
14493
|
-
},
|
|
14494
14049
|
{
|
|
14495
14050
|
"name": "format",
|
|
14496
|
-
"description": "
|
|
14051
|
+
"description": "Date format to parse.",
|
|
14497
14052
|
"type": {
|
|
14498
14053
|
"text": "string"
|
|
14499
14054
|
}
|
|
14500
14055
|
}
|
|
14501
14056
|
],
|
|
14502
|
-
"description": "Converts a model value to a display value for the input element.\nFor full date formats, converts an ISO model value to the configured display format.",
|
|
14503
14057
|
"privacy": "private",
|
|
14504
14058
|
"return": {
|
|
14505
14059
|
"type": {
|
|
14506
|
-
"text": "
|
|
14060
|
+
"text": "void"
|
|
14507
14061
|
}
|
|
14508
14062
|
}
|
|
14509
|
-
},
|
|
14510
|
-
{
|
|
14511
|
-
"kind": "field",
|
|
14512
|
-
"name": "overrideFormat"
|
|
14513
|
-
},
|
|
14514
|
-
{
|
|
14515
|
-
"kind": "field",
|
|
14516
|
-
"name": "formatter",
|
|
14517
|
-
"default": "new Intl.DateTimeFormat(this.locale)"
|
|
14518
14063
|
}
|
|
14519
14064
|
]
|
|
14520
|
-
},
|
|
14521
|
-
{
|
|
14522
|
-
"kind": "function",
|
|
14523
|
-
"name": "getDateFormatFromLocale",
|
|
14524
|
-
"parameters": [
|
|
14525
|
-
{
|
|
14526
|
-
"name": "locale",
|
|
14527
|
-
"description": "BCP 47 language tag used to determine the date format (e.g. \"en-US\", \"fr-FR\").",
|
|
14528
|
-
"type": {
|
|
14529
|
-
"text": "string"
|
|
14530
|
-
}
|
|
14531
|
-
}
|
|
14532
|
-
],
|
|
14533
|
-
"description": "Derives a locale-aware date format string suitable for use in input masks. This helper exposes the internal AuroInputUtilities locale logic in a simple function form.",
|
|
14534
|
-
"return": {
|
|
14535
|
-
"type": {
|
|
14536
|
-
"text": "string"
|
|
14537
|
-
}
|
|
14538
|
-
}
|
|
14539
14065
|
}
|
|
14540
14066
|
],
|
|
14541
14067
|
"exports": [
|
|
@@ -14546,14 +14072,6 @@
|
|
|
14546
14072
|
"name": "AuroInputUtilities",
|
|
14547
14073
|
"module": "components/input/src/utilities.js"
|
|
14548
14074
|
}
|
|
14549
|
-
},
|
|
14550
|
-
{
|
|
14551
|
-
"kind": "js",
|
|
14552
|
-
"name": "getDateFormatFromLocale",
|
|
14553
|
-
"declaration": {
|
|
14554
|
-
"name": "getDateFormatFromLocale",
|
|
14555
|
-
"module": "components/input/src/utilities.js"
|
|
14556
|
-
}
|
|
14557
14075
|
}
|
|
14558
14076
|
]
|
|
14559
14077
|
},
|
|
@@ -19275,7 +18793,7 @@
|
|
|
19275
18793
|
"type": {
|
|
19276
18794
|
"text": "object"
|
|
19277
18795
|
},
|
|
19278
|
-
"default": "{ ArrowDown(component, evt, ctx) { evt.preventDefault(); if (evt.altKey || evt.metaKey) { // navigate to last enabled option selectKeyboardStrategy.End(component, evt, ctx);
|
|
18796
|
+
"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) { 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) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); const lastOption = [...component.menu.menuService.menuOptions].reverse().find((option) => !option.disabled); if (lastOption) { component.menu.updateActiveOption(lastOption); } }, Enter(component, evt, ctx) { evt.preventDefault(); evt.stopPropagation(); if (!ctx.isExpanded) { component.dropdown.show(); return; } component.menu.makeSelection(); }, Home(component, evt, ctx) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); const firstOption = component.menu.menuService.menuOptions.find((option) => !option.disabled); if (firstOption) { component.menu.updateActiveOption(firstOption); } }, 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) { component.updateActiveOptionBasedOnKey(evt.key); if (evt.key === ' ') { evt.preventDefault(); evt.stopPropagation(); if (ctx.isExpanded) { component.dropdown.hide(); return; } component.dropdown.show(); } }, }"
|
|
19279
18797
|
}
|
|
19280
18798
|
],
|
|
19281
18799
|
"exports": [
|