@aurodesignsystem-dev/auro-formkit 0.0.0-pr1433.0 → 0.0.0-pr1433.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +6 -6
- package/components/combobox/demo/index.min.js +6 -6
- package/components/combobox/dist/auro-combobox copy.d.ts +578 -0
- package/components/combobox/dist/index.js +6 -6
- package/components/combobox/dist/registered.js +6 -6
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.min.js +3 -3
- package/components/datepicker/demo/index.min.js +3 -3
- package/components/datepicker/dist/index.js +3 -3
- package/components/datepicker/dist/registered.js +3 -3
- package/components/dropdown/demo/api.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/keyboardUtils.d.ts +18 -0
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/api.min.js +16 -16
- package/components/form/demo/index.min.js +16 -16
- package/components/input/demo/api.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +2 -2
- package/components/select/demo/index.min.js +2 -2
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/custom-elements.json +452 -452
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -9265,6 +9265,200 @@
|
|
|
9265
9265
|
"declarations": [],
|
|
9266
9266
|
"exports": []
|
|
9267
9267
|
},
|
|
9268
|
+
{
|
|
9269
|
+
"kind": "javascript-module",
|
|
9270
|
+
"path": "components/helptext/src/auro-helptext.js",
|
|
9271
|
+
"declarations": [
|
|
9272
|
+
{
|
|
9273
|
+
"kind": "class",
|
|
9274
|
+
"description": "Displays help text or error messages within form elements - Internal Use Only.",
|
|
9275
|
+
"name": "AuroHelpText",
|
|
9276
|
+
"members": [
|
|
9277
|
+
{
|
|
9278
|
+
"kind": "method",
|
|
9279
|
+
"name": "register",
|
|
9280
|
+
"static": true,
|
|
9281
|
+
"parameters": [
|
|
9282
|
+
{
|
|
9283
|
+
"name": "name",
|
|
9284
|
+
"default": "\"auro-helptext\"",
|
|
9285
|
+
"description": "The name of element that you want to register to.",
|
|
9286
|
+
"optional": true,
|
|
9287
|
+
"type": {
|
|
9288
|
+
"text": "string"
|
|
9289
|
+
}
|
|
9290
|
+
}
|
|
9291
|
+
],
|
|
9292
|
+
"description": "This will register this element with the browser."
|
|
9293
|
+
},
|
|
9294
|
+
{
|
|
9295
|
+
"kind": "method",
|
|
9296
|
+
"name": "handleSlotChange",
|
|
9297
|
+
"parameters": [
|
|
9298
|
+
{
|
|
9299
|
+
"name": "event"
|
|
9300
|
+
}
|
|
9301
|
+
]
|
|
9302
|
+
},
|
|
9303
|
+
{
|
|
9304
|
+
"kind": "method",
|
|
9305
|
+
"name": "checkSlotsForContent",
|
|
9306
|
+
"parameters": [
|
|
9307
|
+
{
|
|
9308
|
+
"name": "nodes",
|
|
9309
|
+
"description": "The list of nodes to check for content.",
|
|
9310
|
+
"type": {
|
|
9311
|
+
"text": "NodeList|Array"
|
|
9312
|
+
}
|
|
9313
|
+
}
|
|
9314
|
+
],
|
|
9315
|
+
"description": "Checks if any of the provided nodes or their nested slot nodes contain non-empty text content.",
|
|
9316
|
+
"return": {
|
|
9317
|
+
"type": {
|
|
9318
|
+
"text": "boolean"
|
|
9319
|
+
}
|
|
9320
|
+
},
|
|
9321
|
+
"privacy": "private"
|
|
9322
|
+
},
|
|
9323
|
+
{
|
|
9324
|
+
"kind": "field",
|
|
9325
|
+
"name": "error",
|
|
9326
|
+
"privacy": "public",
|
|
9327
|
+
"type": {
|
|
9328
|
+
"text": "boolean"
|
|
9329
|
+
},
|
|
9330
|
+
"description": "If declared, make font color red.",
|
|
9331
|
+
"default": "false",
|
|
9332
|
+
"attribute": "error",
|
|
9333
|
+
"reflects": true
|
|
9334
|
+
},
|
|
9335
|
+
{
|
|
9336
|
+
"kind": "field",
|
|
9337
|
+
"name": "appearance",
|
|
9338
|
+
"privacy": "public",
|
|
9339
|
+
"type": {
|
|
9340
|
+
"text": "string"
|
|
9341
|
+
},
|
|
9342
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
9343
|
+
"default": "\"default\"",
|
|
9344
|
+
"attribute": "appearance",
|
|
9345
|
+
"reflects": true
|
|
9346
|
+
},
|
|
9347
|
+
{
|
|
9348
|
+
"kind": "field",
|
|
9349
|
+
"name": "onDark",
|
|
9350
|
+
"privacy": "public",
|
|
9351
|
+
"type": {
|
|
9352
|
+
"text": "boolean"
|
|
9353
|
+
},
|
|
9354
|
+
"description": "DEPRECATED - use `appearance` instead.",
|
|
9355
|
+
"default": "false",
|
|
9356
|
+
"attribute": "onDark",
|
|
9357
|
+
"reflects": true
|
|
9358
|
+
},
|
|
9359
|
+
{
|
|
9360
|
+
"kind": "field",
|
|
9361
|
+
"name": "hasTextContent",
|
|
9362
|
+
"privacy": "private",
|
|
9363
|
+
"type": {
|
|
9364
|
+
"text": "boolean"
|
|
9365
|
+
},
|
|
9366
|
+
"default": "false",
|
|
9367
|
+
"attribute": "hasTextContent"
|
|
9368
|
+
},
|
|
9369
|
+
{
|
|
9370
|
+
"kind": "field",
|
|
9371
|
+
"name": "slotNodes",
|
|
9372
|
+
"privacy": "private",
|
|
9373
|
+
"type": {
|
|
9374
|
+
"text": "boolean"
|
|
9375
|
+
},
|
|
9376
|
+
"attribute": "slotNodes"
|
|
9377
|
+
}
|
|
9378
|
+
],
|
|
9379
|
+
"attributes": [
|
|
9380
|
+
{
|
|
9381
|
+
"name": "appearance",
|
|
9382
|
+
"type": {
|
|
9383
|
+
"text": "string"
|
|
9384
|
+
},
|
|
9385
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
9386
|
+
"default": "\"default\"",
|
|
9387
|
+
"fieldName": "appearance"
|
|
9388
|
+
},
|
|
9389
|
+
{
|
|
9390
|
+
"name": "slotNodes",
|
|
9391
|
+
"type": {
|
|
9392
|
+
"text": "boolean"
|
|
9393
|
+
},
|
|
9394
|
+
"fieldName": "slotNodes"
|
|
9395
|
+
},
|
|
9396
|
+
{
|
|
9397
|
+
"name": "hasTextContent",
|
|
9398
|
+
"type": {
|
|
9399
|
+
"text": "boolean"
|
|
9400
|
+
},
|
|
9401
|
+
"default": "false",
|
|
9402
|
+
"fieldName": "hasTextContent"
|
|
9403
|
+
},
|
|
9404
|
+
{
|
|
9405
|
+
"name": "error",
|
|
9406
|
+
"type": {
|
|
9407
|
+
"text": "boolean"
|
|
9408
|
+
},
|
|
9409
|
+
"description": "If declared, make font color red.",
|
|
9410
|
+
"default": "false",
|
|
9411
|
+
"fieldName": "error"
|
|
9412
|
+
},
|
|
9413
|
+
{
|
|
9414
|
+
"name": "onDark",
|
|
9415
|
+
"type": {
|
|
9416
|
+
"text": "boolean"
|
|
9417
|
+
},
|
|
9418
|
+
"description": "DEPRECATED - use `appearance` instead.",
|
|
9419
|
+
"default": "false",
|
|
9420
|
+
"fieldName": "onDark"
|
|
9421
|
+
}
|
|
9422
|
+
],
|
|
9423
|
+
"superclass": {
|
|
9424
|
+
"name": "LitElement",
|
|
9425
|
+
"package": "lit"
|
|
9426
|
+
},
|
|
9427
|
+
"customElement": true
|
|
9428
|
+
}
|
|
9429
|
+
],
|
|
9430
|
+
"exports": [
|
|
9431
|
+
{
|
|
9432
|
+
"kind": "js",
|
|
9433
|
+
"name": "AuroHelpText",
|
|
9434
|
+
"declaration": {
|
|
9435
|
+
"name": "AuroHelpText",
|
|
9436
|
+
"module": "components/helptext/src/auro-helptext.js"
|
|
9437
|
+
}
|
|
9438
|
+
}
|
|
9439
|
+
]
|
|
9440
|
+
},
|
|
9441
|
+
{
|
|
9442
|
+
"kind": "javascript-module",
|
|
9443
|
+
"path": "components/helptext/src/index.js",
|
|
9444
|
+
"declarations": [],
|
|
9445
|
+
"exports": [
|
|
9446
|
+
{
|
|
9447
|
+
"kind": "js",
|
|
9448
|
+
"name": "AuroHelpText",
|
|
9449
|
+
"declaration": {
|
|
9450
|
+
"name": "AuroHelpText",
|
|
9451
|
+
"module": "components/helptext/src/index.js"
|
|
9452
|
+
}
|
|
9453
|
+
}
|
|
9454
|
+
]
|
|
9455
|
+
},
|
|
9456
|
+
{
|
|
9457
|
+
"kind": "javascript-module",
|
|
9458
|
+
"path": "components/helptext/src/registered.js",
|
|
9459
|
+
"declarations": [],
|
|
9460
|
+
"exports": []
|
|
9461
|
+
},
|
|
9268
9462
|
{
|
|
9269
9463
|
"kind": "javascript-module",
|
|
9270
9464
|
"path": "components/form/src/auro-form.js",
|
|
@@ -9738,242 +9932,48 @@
|
|
|
9738
9932
|
},
|
|
9739
9933
|
"description": "Fires when the form is submitted. The event detail contains the current value of the form."
|
|
9740
9934
|
},
|
|
9741
|
-
{
|
|
9742
|
-
"description": "Fires when a child form element receives user input.",
|
|
9743
|
-
"name": "input"
|
|
9744
|
-
}
|
|
9745
|
-
],
|
|
9746
|
-
"superclass": {
|
|
9747
|
-
"name": "LitElement",
|
|
9748
|
-
"package": "lit"
|
|
9749
|
-
},
|
|
9750
|
-
"tagName": "auro-form",
|
|
9751
|
-
"customElement": true
|
|
9752
|
-
}
|
|
9753
|
-
],
|
|
9754
|
-
"exports": [
|
|
9755
|
-
{
|
|
9756
|
-
"kind": "js",
|
|
9757
|
-
"name": "AuroForm",
|
|
9758
|
-
"declaration": {
|
|
9759
|
-
"name": "AuroForm",
|
|
9760
|
-
"module": "components/form/src/auro-form.js"
|
|
9761
|
-
}
|
|
9762
|
-
}
|
|
9763
|
-
]
|
|
9764
|
-
},
|
|
9765
|
-
{
|
|
9766
|
-
"kind": "javascript-module",
|
|
9767
|
-
"path": "components/form/src/index.js",
|
|
9768
|
-
"declarations": [],
|
|
9769
|
-
"exports": [
|
|
9770
|
-
{
|
|
9771
|
-
"kind": "js",
|
|
9772
|
-
"name": "AuroForm",
|
|
9773
|
-
"declaration": {
|
|
9774
|
-
"name": "AuroForm",
|
|
9775
|
-
"module": "components/form/src/index.js"
|
|
9776
|
-
}
|
|
9777
|
-
}
|
|
9778
|
-
]
|
|
9779
|
-
},
|
|
9780
|
-
{
|
|
9781
|
-
"kind": "javascript-module",
|
|
9782
|
-
"path": "components/form/src/registered.js",
|
|
9783
|
-
"declarations": [],
|
|
9784
|
-
"exports": []
|
|
9785
|
-
},
|
|
9786
|
-
{
|
|
9787
|
-
"kind": "javascript-module",
|
|
9788
|
-
"path": "components/helptext/src/auro-helptext.js",
|
|
9789
|
-
"declarations": [
|
|
9790
|
-
{
|
|
9791
|
-
"kind": "class",
|
|
9792
|
-
"description": "Displays help text or error messages within form elements - Internal Use Only.",
|
|
9793
|
-
"name": "AuroHelpText",
|
|
9794
|
-
"members": [
|
|
9795
|
-
{
|
|
9796
|
-
"kind": "method",
|
|
9797
|
-
"name": "register",
|
|
9798
|
-
"static": true,
|
|
9799
|
-
"parameters": [
|
|
9800
|
-
{
|
|
9801
|
-
"name": "name",
|
|
9802
|
-
"default": "\"auro-helptext\"",
|
|
9803
|
-
"description": "The name of element that you want to register to.",
|
|
9804
|
-
"optional": true,
|
|
9805
|
-
"type": {
|
|
9806
|
-
"text": "string"
|
|
9807
|
-
}
|
|
9808
|
-
}
|
|
9809
|
-
],
|
|
9810
|
-
"description": "This will register this element with the browser."
|
|
9811
|
-
},
|
|
9812
|
-
{
|
|
9813
|
-
"kind": "method",
|
|
9814
|
-
"name": "handleSlotChange",
|
|
9815
|
-
"parameters": [
|
|
9816
|
-
{
|
|
9817
|
-
"name": "event"
|
|
9818
|
-
}
|
|
9819
|
-
]
|
|
9820
|
-
},
|
|
9821
|
-
{
|
|
9822
|
-
"kind": "method",
|
|
9823
|
-
"name": "checkSlotsForContent",
|
|
9824
|
-
"parameters": [
|
|
9825
|
-
{
|
|
9826
|
-
"name": "nodes",
|
|
9827
|
-
"description": "The list of nodes to check for content.",
|
|
9828
|
-
"type": {
|
|
9829
|
-
"text": "NodeList|Array"
|
|
9830
|
-
}
|
|
9831
|
-
}
|
|
9832
|
-
],
|
|
9833
|
-
"description": "Checks if any of the provided nodes or their nested slot nodes contain non-empty text content.",
|
|
9834
|
-
"return": {
|
|
9835
|
-
"type": {
|
|
9836
|
-
"text": "boolean"
|
|
9837
|
-
}
|
|
9838
|
-
},
|
|
9839
|
-
"privacy": "private"
|
|
9840
|
-
},
|
|
9841
|
-
{
|
|
9842
|
-
"kind": "field",
|
|
9843
|
-
"name": "error",
|
|
9844
|
-
"privacy": "public",
|
|
9845
|
-
"type": {
|
|
9846
|
-
"text": "boolean"
|
|
9847
|
-
},
|
|
9848
|
-
"description": "If declared, make font color red.",
|
|
9849
|
-
"default": "false",
|
|
9850
|
-
"attribute": "error",
|
|
9851
|
-
"reflects": true
|
|
9852
|
-
},
|
|
9853
|
-
{
|
|
9854
|
-
"kind": "field",
|
|
9855
|
-
"name": "appearance",
|
|
9856
|
-
"privacy": "public",
|
|
9857
|
-
"type": {
|
|
9858
|
-
"text": "string"
|
|
9859
|
-
},
|
|
9860
|
-
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
9861
|
-
"default": "\"default\"",
|
|
9862
|
-
"attribute": "appearance",
|
|
9863
|
-
"reflects": true
|
|
9864
|
-
},
|
|
9865
|
-
{
|
|
9866
|
-
"kind": "field",
|
|
9867
|
-
"name": "onDark",
|
|
9868
|
-
"privacy": "public",
|
|
9869
|
-
"type": {
|
|
9870
|
-
"text": "boolean"
|
|
9871
|
-
},
|
|
9872
|
-
"description": "DEPRECATED - use `appearance` instead.",
|
|
9873
|
-
"default": "false",
|
|
9874
|
-
"attribute": "onDark",
|
|
9875
|
-
"reflects": true
|
|
9876
|
-
},
|
|
9877
|
-
{
|
|
9878
|
-
"kind": "field",
|
|
9879
|
-
"name": "hasTextContent",
|
|
9880
|
-
"privacy": "private",
|
|
9881
|
-
"type": {
|
|
9882
|
-
"text": "boolean"
|
|
9883
|
-
},
|
|
9884
|
-
"default": "false",
|
|
9885
|
-
"attribute": "hasTextContent"
|
|
9886
|
-
},
|
|
9887
|
-
{
|
|
9888
|
-
"kind": "field",
|
|
9889
|
-
"name": "slotNodes",
|
|
9890
|
-
"privacy": "private",
|
|
9891
|
-
"type": {
|
|
9892
|
-
"text": "boolean"
|
|
9893
|
-
},
|
|
9894
|
-
"attribute": "slotNodes"
|
|
9895
|
-
}
|
|
9896
|
-
],
|
|
9897
|
-
"attributes": [
|
|
9898
|
-
{
|
|
9899
|
-
"name": "appearance",
|
|
9900
|
-
"type": {
|
|
9901
|
-
"text": "string"
|
|
9902
|
-
},
|
|
9903
|
-
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
9904
|
-
"default": "\"default\"",
|
|
9905
|
-
"fieldName": "appearance"
|
|
9906
|
-
},
|
|
9907
|
-
{
|
|
9908
|
-
"name": "slotNodes",
|
|
9909
|
-
"type": {
|
|
9910
|
-
"text": "boolean"
|
|
9911
|
-
},
|
|
9912
|
-
"fieldName": "slotNodes"
|
|
9913
|
-
},
|
|
9914
|
-
{
|
|
9915
|
-
"name": "hasTextContent",
|
|
9916
|
-
"type": {
|
|
9917
|
-
"text": "boolean"
|
|
9918
|
-
},
|
|
9919
|
-
"default": "false",
|
|
9920
|
-
"fieldName": "hasTextContent"
|
|
9921
|
-
},
|
|
9922
|
-
{
|
|
9923
|
-
"name": "error",
|
|
9924
|
-
"type": {
|
|
9925
|
-
"text": "boolean"
|
|
9926
|
-
},
|
|
9927
|
-
"description": "If declared, make font color red.",
|
|
9928
|
-
"default": "false",
|
|
9929
|
-
"fieldName": "error"
|
|
9930
|
-
},
|
|
9931
|
-
{
|
|
9932
|
-
"name": "onDark",
|
|
9933
|
-
"type": {
|
|
9934
|
-
"text": "boolean"
|
|
9935
|
-
},
|
|
9936
|
-
"description": "DEPRECATED - use `appearance` instead.",
|
|
9937
|
-
"default": "false",
|
|
9938
|
-
"fieldName": "onDark"
|
|
9935
|
+
{
|
|
9936
|
+
"description": "Fires when a child form element receives user input.",
|
|
9937
|
+
"name": "input"
|
|
9939
9938
|
}
|
|
9940
9939
|
],
|
|
9941
9940
|
"superclass": {
|
|
9942
9941
|
"name": "LitElement",
|
|
9943
9942
|
"package": "lit"
|
|
9944
9943
|
},
|
|
9944
|
+
"tagName": "auro-form",
|
|
9945
9945
|
"customElement": true
|
|
9946
9946
|
}
|
|
9947
9947
|
],
|
|
9948
9948
|
"exports": [
|
|
9949
9949
|
{
|
|
9950
9950
|
"kind": "js",
|
|
9951
|
-
"name": "
|
|
9951
|
+
"name": "AuroForm",
|
|
9952
9952
|
"declaration": {
|
|
9953
|
-
"name": "
|
|
9954
|
-
"module": "components/
|
|
9953
|
+
"name": "AuroForm",
|
|
9954
|
+
"module": "components/form/src/auro-form.js"
|
|
9955
9955
|
}
|
|
9956
9956
|
}
|
|
9957
9957
|
]
|
|
9958
9958
|
},
|
|
9959
9959
|
{
|
|
9960
9960
|
"kind": "javascript-module",
|
|
9961
|
-
"path": "components/
|
|
9961
|
+
"path": "components/form/src/index.js",
|
|
9962
9962
|
"declarations": [],
|
|
9963
9963
|
"exports": [
|
|
9964
9964
|
{
|
|
9965
9965
|
"kind": "js",
|
|
9966
|
-
"name": "
|
|
9966
|
+
"name": "AuroForm",
|
|
9967
9967
|
"declaration": {
|
|
9968
|
-
"name": "
|
|
9969
|
-
"module": "components/
|
|
9968
|
+
"name": "AuroForm",
|
|
9969
|
+
"module": "components/form/src/index.js"
|
|
9970
9970
|
}
|
|
9971
9971
|
}
|
|
9972
9972
|
]
|
|
9973
9973
|
},
|
|
9974
9974
|
{
|
|
9975
9975
|
"kind": "javascript-module",
|
|
9976
|
-
"path": "components/
|
|
9976
|
+
"path": "components/form/src/registered.js",
|
|
9977
9977
|
"declarations": [],
|
|
9978
9978
|
"exports": []
|
|
9979
9979
|
},
|
|
@@ -14008,267 +14008,120 @@
|
|
|
14008
14008
|
"kind": "js",
|
|
14009
14009
|
"name": "AuroInput",
|
|
14010
14010
|
"declaration": {
|
|
14011
|
-
"name": "AuroInput",
|
|
14012
|
-
"module": "components/input/src/index.js"
|
|
14013
|
-
}
|
|
14014
|
-
}
|
|
14015
|
-
]
|
|
14016
|
-
},
|
|
14017
|
-
{
|
|
14018
|
-
"kind": "javascript-module",
|
|
14019
|
-
"path": "components/input/src/registered.js",
|
|
14020
|
-
"declarations": [],
|
|
14021
|
-
"exports": []
|
|
14022
|
-
},
|
|
14023
|
-
{
|
|
14024
|
-
"kind": "javascript-module",
|
|
14025
|
-
"path": "components/input/src/utilities.js",
|
|
14026
|
-
"declarations": [
|
|
14027
|
-
{
|
|
14028
|
-
"kind": "class",
|
|
14029
|
-
"description": "",
|
|
14030
|
-
"name": "AuroInputUtilities",
|
|
14031
|
-
"members": [
|
|
14032
|
-
{
|
|
14033
|
-
"kind": "method",
|
|
14034
|
-
"name": "getMaskOptions",
|
|
14035
|
-
"parameters": [
|
|
14036
|
-
{
|
|
14037
|
-
"name": "type",
|
|
14038
|
-
"description": "The input type.",
|
|
14039
|
-
"type": {
|
|
14040
|
-
"text": "string"
|
|
14041
|
-
}
|
|
14042
|
-
},
|
|
14043
|
-
{
|
|
14044
|
-
"name": "format",
|
|
14045
|
-
"description": "The format of the mask to apply.",
|
|
14046
|
-
"type": {
|
|
14047
|
-
"text": "string"
|
|
14048
|
-
}
|
|
14049
|
-
}
|
|
14050
|
-
],
|
|
14051
|
-
"description": "Configures the mask to be used on the input element based on format and/or type.\nIMask tool documentation: https://imask.js.org/.",
|
|
14052
|
-
"privacy": "private",
|
|
14053
|
-
"return": {
|
|
14054
|
-
"type": {
|
|
14055
|
-
"text": "void"
|
|
14056
|
-
}
|
|
14057
|
-
}
|
|
14058
|
-
},
|
|
14059
|
-
{
|
|
14060
|
-
"kind": "method",
|
|
14061
|
-
"name": "toNorthAmericanFormat",
|
|
14062
|
-
"parameters": [
|
|
14063
|
-
{
|
|
14064
|
-
"name": "dateStr",
|
|
14065
|
-
"description": "Date string to format.",
|
|
14066
|
-
"type": {
|
|
14067
|
-
"text": "string"
|
|
14068
|
-
}
|
|
14069
|
-
},
|
|
14070
|
-
{
|
|
14071
|
-
"name": "format",
|
|
14072
|
-
"description": "Date format to use.",
|
|
14073
|
-
"type": {
|
|
14074
|
-
"text": "string"
|
|
14075
|
-
}
|
|
14076
|
-
}
|
|
14077
|
-
],
|
|
14078
|
-
"privacy": "private",
|
|
14079
|
-
"return": {
|
|
14080
|
-
"type": {
|
|
14081
|
-
"text": "void"
|
|
14082
|
-
}
|
|
14083
|
-
}
|
|
14084
|
-
},
|
|
14085
|
-
{
|
|
14086
|
-
"kind": "method",
|
|
14087
|
-
"name": "parseDate",
|
|
14088
|
-
"parameters": [
|
|
14089
|
-
{
|
|
14090
|
-
"name": "dateStr",
|
|
14091
|
-
"description": "Date string to parse.",
|
|
14092
|
-
"type": {
|
|
14093
|
-
"text": "string"
|
|
14094
|
-
}
|
|
14095
|
-
},
|
|
14096
|
-
{
|
|
14097
|
-
"name": "format",
|
|
14098
|
-
"description": "Date format to parse.",
|
|
14099
|
-
"type": {
|
|
14100
|
-
"text": "string"
|
|
14101
|
-
}
|
|
14102
|
-
}
|
|
14103
|
-
],
|
|
14104
|
-
"privacy": "private",
|
|
14105
|
-
"return": {
|
|
14106
|
-
"type": {
|
|
14107
|
-
"text": "void"
|
|
14108
|
-
}
|
|
14109
|
-
}
|
|
14110
|
-
}
|
|
14111
|
-
]
|
|
14112
|
-
}
|
|
14113
|
-
],
|
|
14114
|
-
"exports": [
|
|
14115
|
-
{
|
|
14116
|
-
"kind": "js",
|
|
14117
|
-
"name": "AuroInputUtilities",
|
|
14118
|
-
"declaration": {
|
|
14119
|
-
"name": "AuroInputUtilities",
|
|
14120
|
-
"module": "components/input/src/utilities.js"
|
|
14121
|
-
}
|
|
14122
|
-
}
|
|
14123
|
-
]
|
|
14124
|
-
},
|
|
14125
|
-
{
|
|
14126
|
-
"kind": "javascript-module",
|
|
14127
|
-
"path": "components/layoutElement/src/auroElement.js",
|
|
14128
|
-
"declarations": [
|
|
14129
|
-
{
|
|
14130
|
-
"kind": "class",
|
|
14131
|
-
"description": "",
|
|
14132
|
-
"name": "AuroElement",
|
|
14133
|
-
"members": [
|
|
14134
|
-
{
|
|
14135
|
-
"kind": "field",
|
|
14136
|
-
"name": "componentHasFocus",
|
|
14137
|
-
"description": "Returns true if the element has focus.",
|
|
14138
|
-
"privacy": "private",
|
|
14139
|
-
"return": {
|
|
14140
|
-
"type": {
|
|
14141
|
-
"text": "boolean"
|
|
14142
|
-
}
|
|
14143
|
-
},
|
|
14144
|
-
"readonly": true
|
|
14145
|
-
},
|
|
14146
|
-
{
|
|
14147
|
-
"kind": "method",
|
|
14148
|
-
"name": "resetShapeClasses"
|
|
14149
|
-
},
|
|
14150
|
-
{
|
|
14151
|
-
"kind": "method",
|
|
14152
|
-
"name": "resetLayoutClasses"
|
|
14153
|
-
},
|
|
14154
|
-
{
|
|
14155
|
-
"kind": "method",
|
|
14156
|
-
"name": "updateComponentArchitecture"
|
|
14157
|
-
},
|
|
14158
|
-
{
|
|
14159
|
-
"kind": "field",
|
|
14160
|
-
"name": "layout",
|
|
14161
|
-
"privacy": "public",
|
|
14162
|
-
"type": {
|
|
14163
|
-
"text": "string"
|
|
14164
|
-
},
|
|
14165
|
-
"description": "Defines the language of an element.",
|
|
14166
|
-
"default": "{'default'}",
|
|
14167
|
-
"attribute": "layout",
|
|
14168
|
-
"reflects": true
|
|
14169
|
-
},
|
|
14170
|
-
{
|
|
14171
|
-
"kind": "field",
|
|
14172
|
-
"name": "shape",
|
|
14173
|
-
"privacy": "public",
|
|
14174
|
-
"type": {
|
|
14175
|
-
"text": "string"
|
|
14176
|
-
},
|
|
14177
|
-
"attribute": "shape",
|
|
14178
|
-
"reflects": true
|
|
14179
|
-
},
|
|
14180
|
-
{
|
|
14181
|
-
"kind": "field",
|
|
14182
|
-
"name": "size",
|
|
14183
|
-
"privacy": "public",
|
|
14184
|
-
"type": {
|
|
14185
|
-
"text": "string"
|
|
14186
|
-
},
|
|
14187
|
-
"attribute": "size",
|
|
14188
|
-
"reflects": true
|
|
14189
|
-
},
|
|
14190
|
-
{
|
|
14191
|
-
"kind": "field",
|
|
14192
|
-
"name": "onDark",
|
|
14193
|
-
"privacy": "public",
|
|
14194
|
-
"type": {
|
|
14195
|
-
"text": "boolean"
|
|
14196
|
-
},
|
|
14197
|
-
"attribute": "ondark",
|
|
14198
|
-
"reflects": true
|
|
14199
|
-
}
|
|
14200
|
-
],
|
|
14201
|
-
"attributes": [
|
|
14202
|
-
{
|
|
14203
|
-
"name": "layout",
|
|
14204
|
-
"type": {
|
|
14205
|
-
"text": "string"
|
|
14206
|
-
},
|
|
14207
|
-
"description": "Defines the language of an element.",
|
|
14208
|
-
"default": "{'default'}",
|
|
14209
|
-
"fieldName": "layout"
|
|
14210
|
-
},
|
|
14211
|
-
{
|
|
14212
|
-
"name": "shape",
|
|
14213
|
-
"type": {
|
|
14214
|
-
"text": "string"
|
|
14215
|
-
},
|
|
14216
|
-
"fieldName": "shape"
|
|
14217
|
-
},
|
|
14218
|
-
{
|
|
14219
|
-
"name": "size",
|
|
14220
|
-
"type": {
|
|
14221
|
-
"text": "string"
|
|
14222
|
-
},
|
|
14223
|
-
"fieldName": "size"
|
|
14224
|
-
},
|
|
14225
|
-
{
|
|
14226
|
-
"name": "ondark",
|
|
14227
|
-
"type": {
|
|
14228
|
-
"text": "boolean"
|
|
14229
|
-
},
|
|
14230
|
-
"fieldName": "onDark"
|
|
14231
|
-
}
|
|
14232
|
-
],
|
|
14233
|
-
"superclass": {
|
|
14234
|
-
"name": "LitElement",
|
|
14235
|
-
"package": "lit"
|
|
14236
|
-
},
|
|
14237
|
-
"customElement": true
|
|
14238
|
-
}
|
|
14239
|
-
],
|
|
14240
|
-
"exports": [
|
|
14241
|
-
{
|
|
14242
|
-
"kind": "js",
|
|
14243
|
-
"name": "AuroElement",
|
|
14244
|
-
"declaration": {
|
|
14245
|
-
"name": "AuroElement",
|
|
14246
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
14011
|
+
"name": "AuroInput",
|
|
14012
|
+
"module": "components/input/src/index.js"
|
|
14247
14013
|
}
|
|
14248
14014
|
}
|
|
14249
14015
|
]
|
|
14250
14016
|
},
|
|
14251
14017
|
{
|
|
14252
14018
|
"kind": "javascript-module",
|
|
14253
|
-
"path": "components/
|
|
14019
|
+
"path": "components/input/src/registered.js",
|
|
14254
14020
|
"declarations": [],
|
|
14021
|
+
"exports": []
|
|
14022
|
+
},
|
|
14023
|
+
{
|
|
14024
|
+
"kind": "javascript-module",
|
|
14025
|
+
"path": "components/input/src/utilities.js",
|
|
14026
|
+
"declarations": [
|
|
14027
|
+
{
|
|
14028
|
+
"kind": "class",
|
|
14029
|
+
"description": "",
|
|
14030
|
+
"name": "AuroInputUtilities",
|
|
14031
|
+
"members": [
|
|
14032
|
+
{
|
|
14033
|
+
"kind": "method",
|
|
14034
|
+
"name": "getMaskOptions",
|
|
14035
|
+
"parameters": [
|
|
14036
|
+
{
|
|
14037
|
+
"name": "type",
|
|
14038
|
+
"description": "The input type.",
|
|
14039
|
+
"type": {
|
|
14040
|
+
"text": "string"
|
|
14041
|
+
}
|
|
14042
|
+
},
|
|
14043
|
+
{
|
|
14044
|
+
"name": "format",
|
|
14045
|
+
"description": "The format of the mask to apply.",
|
|
14046
|
+
"type": {
|
|
14047
|
+
"text": "string"
|
|
14048
|
+
}
|
|
14049
|
+
}
|
|
14050
|
+
],
|
|
14051
|
+
"description": "Configures the mask to be used on the input element based on format and/or type.\nIMask tool documentation: https://imask.js.org/.",
|
|
14052
|
+
"privacy": "private",
|
|
14053
|
+
"return": {
|
|
14054
|
+
"type": {
|
|
14055
|
+
"text": "void"
|
|
14056
|
+
}
|
|
14057
|
+
}
|
|
14058
|
+
},
|
|
14059
|
+
{
|
|
14060
|
+
"kind": "method",
|
|
14061
|
+
"name": "toNorthAmericanFormat",
|
|
14062
|
+
"parameters": [
|
|
14063
|
+
{
|
|
14064
|
+
"name": "dateStr",
|
|
14065
|
+
"description": "Date string to format.",
|
|
14066
|
+
"type": {
|
|
14067
|
+
"text": "string"
|
|
14068
|
+
}
|
|
14069
|
+
},
|
|
14070
|
+
{
|
|
14071
|
+
"name": "format",
|
|
14072
|
+
"description": "Date format to use.",
|
|
14073
|
+
"type": {
|
|
14074
|
+
"text": "string"
|
|
14075
|
+
}
|
|
14076
|
+
}
|
|
14077
|
+
],
|
|
14078
|
+
"privacy": "private",
|
|
14079
|
+
"return": {
|
|
14080
|
+
"type": {
|
|
14081
|
+
"text": "void"
|
|
14082
|
+
}
|
|
14083
|
+
}
|
|
14084
|
+
},
|
|
14085
|
+
{
|
|
14086
|
+
"kind": "method",
|
|
14087
|
+
"name": "parseDate",
|
|
14088
|
+
"parameters": [
|
|
14089
|
+
{
|
|
14090
|
+
"name": "dateStr",
|
|
14091
|
+
"description": "Date string to parse.",
|
|
14092
|
+
"type": {
|
|
14093
|
+
"text": "string"
|
|
14094
|
+
}
|
|
14095
|
+
},
|
|
14096
|
+
{
|
|
14097
|
+
"name": "format",
|
|
14098
|
+
"description": "Date format to parse.",
|
|
14099
|
+
"type": {
|
|
14100
|
+
"text": "string"
|
|
14101
|
+
}
|
|
14102
|
+
}
|
|
14103
|
+
],
|
|
14104
|
+
"privacy": "private",
|
|
14105
|
+
"return": {
|
|
14106
|
+
"type": {
|
|
14107
|
+
"text": "void"
|
|
14108
|
+
}
|
|
14109
|
+
}
|
|
14110
|
+
}
|
|
14111
|
+
]
|
|
14112
|
+
}
|
|
14113
|
+
],
|
|
14255
14114
|
"exports": [
|
|
14256
14115
|
{
|
|
14257
14116
|
"kind": "js",
|
|
14258
|
-
"name": "
|
|
14117
|
+
"name": "AuroInputUtilities",
|
|
14259
14118
|
"declaration": {
|
|
14260
|
-
"name": "
|
|
14261
|
-
"module": "components/
|
|
14119
|
+
"name": "AuroInputUtilities",
|
|
14120
|
+
"module": "components/input/src/utilities.js"
|
|
14262
14121
|
}
|
|
14263
14122
|
}
|
|
14264
14123
|
]
|
|
14265
14124
|
},
|
|
14266
|
-
{
|
|
14267
|
-
"kind": "javascript-module",
|
|
14268
|
-
"path": "components/layoutElement/src/registered.js",
|
|
14269
|
-
"declarations": [],
|
|
14270
|
-
"exports": []
|
|
14271
|
-
},
|
|
14272
14125
|
{
|
|
14273
14126
|
"kind": "javascript-module",
|
|
14274
14127
|
"path": "components/menu/src/auro-menu-utils.js",
|
|
@@ -16459,6 +16312,153 @@
|
|
|
16459
16312
|
"declarations": [],
|
|
16460
16313
|
"exports": []
|
|
16461
16314
|
},
|
|
16315
|
+
{
|
|
16316
|
+
"kind": "javascript-module",
|
|
16317
|
+
"path": "components/layoutElement/src/auroElement.js",
|
|
16318
|
+
"declarations": [
|
|
16319
|
+
{
|
|
16320
|
+
"kind": "class",
|
|
16321
|
+
"description": "",
|
|
16322
|
+
"name": "AuroElement",
|
|
16323
|
+
"members": [
|
|
16324
|
+
{
|
|
16325
|
+
"kind": "field",
|
|
16326
|
+
"name": "componentHasFocus",
|
|
16327
|
+
"description": "Returns true if the element has focus.",
|
|
16328
|
+
"privacy": "private",
|
|
16329
|
+
"return": {
|
|
16330
|
+
"type": {
|
|
16331
|
+
"text": "boolean"
|
|
16332
|
+
}
|
|
16333
|
+
},
|
|
16334
|
+
"readonly": true
|
|
16335
|
+
},
|
|
16336
|
+
{
|
|
16337
|
+
"kind": "method",
|
|
16338
|
+
"name": "resetShapeClasses"
|
|
16339
|
+
},
|
|
16340
|
+
{
|
|
16341
|
+
"kind": "method",
|
|
16342
|
+
"name": "resetLayoutClasses"
|
|
16343
|
+
},
|
|
16344
|
+
{
|
|
16345
|
+
"kind": "method",
|
|
16346
|
+
"name": "updateComponentArchitecture"
|
|
16347
|
+
},
|
|
16348
|
+
{
|
|
16349
|
+
"kind": "field",
|
|
16350
|
+
"name": "layout",
|
|
16351
|
+
"privacy": "public",
|
|
16352
|
+
"type": {
|
|
16353
|
+
"text": "string"
|
|
16354
|
+
},
|
|
16355
|
+
"description": "Defines the language of an element.",
|
|
16356
|
+
"default": "{'default'}",
|
|
16357
|
+
"attribute": "layout",
|
|
16358
|
+
"reflects": true
|
|
16359
|
+
},
|
|
16360
|
+
{
|
|
16361
|
+
"kind": "field",
|
|
16362
|
+
"name": "shape",
|
|
16363
|
+
"privacy": "public",
|
|
16364
|
+
"type": {
|
|
16365
|
+
"text": "string"
|
|
16366
|
+
},
|
|
16367
|
+
"attribute": "shape",
|
|
16368
|
+
"reflects": true
|
|
16369
|
+
},
|
|
16370
|
+
{
|
|
16371
|
+
"kind": "field",
|
|
16372
|
+
"name": "size",
|
|
16373
|
+
"privacy": "public",
|
|
16374
|
+
"type": {
|
|
16375
|
+
"text": "string"
|
|
16376
|
+
},
|
|
16377
|
+
"attribute": "size",
|
|
16378
|
+
"reflects": true
|
|
16379
|
+
},
|
|
16380
|
+
{
|
|
16381
|
+
"kind": "field",
|
|
16382
|
+
"name": "onDark",
|
|
16383
|
+
"privacy": "public",
|
|
16384
|
+
"type": {
|
|
16385
|
+
"text": "boolean"
|
|
16386
|
+
},
|
|
16387
|
+
"attribute": "ondark",
|
|
16388
|
+
"reflects": true
|
|
16389
|
+
}
|
|
16390
|
+
],
|
|
16391
|
+
"attributes": [
|
|
16392
|
+
{
|
|
16393
|
+
"name": "layout",
|
|
16394
|
+
"type": {
|
|
16395
|
+
"text": "string"
|
|
16396
|
+
},
|
|
16397
|
+
"description": "Defines the language of an element.",
|
|
16398
|
+
"default": "{'default'}",
|
|
16399
|
+
"fieldName": "layout"
|
|
16400
|
+
},
|
|
16401
|
+
{
|
|
16402
|
+
"name": "shape",
|
|
16403
|
+
"type": {
|
|
16404
|
+
"text": "string"
|
|
16405
|
+
},
|
|
16406
|
+
"fieldName": "shape"
|
|
16407
|
+
},
|
|
16408
|
+
{
|
|
16409
|
+
"name": "size",
|
|
16410
|
+
"type": {
|
|
16411
|
+
"text": "string"
|
|
16412
|
+
},
|
|
16413
|
+
"fieldName": "size"
|
|
16414
|
+
},
|
|
16415
|
+
{
|
|
16416
|
+
"name": "ondark",
|
|
16417
|
+
"type": {
|
|
16418
|
+
"text": "boolean"
|
|
16419
|
+
},
|
|
16420
|
+
"fieldName": "onDark"
|
|
16421
|
+
}
|
|
16422
|
+
],
|
|
16423
|
+
"superclass": {
|
|
16424
|
+
"name": "LitElement",
|
|
16425
|
+
"package": "lit"
|
|
16426
|
+
},
|
|
16427
|
+
"customElement": true
|
|
16428
|
+
}
|
|
16429
|
+
],
|
|
16430
|
+
"exports": [
|
|
16431
|
+
{
|
|
16432
|
+
"kind": "js",
|
|
16433
|
+
"name": "AuroElement",
|
|
16434
|
+
"declaration": {
|
|
16435
|
+
"name": "AuroElement",
|
|
16436
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
16437
|
+
}
|
|
16438
|
+
}
|
|
16439
|
+
]
|
|
16440
|
+
},
|
|
16441
|
+
{
|
|
16442
|
+
"kind": "javascript-module",
|
|
16443
|
+
"path": "components/layoutElement/src/index.js",
|
|
16444
|
+
"declarations": [],
|
|
16445
|
+
"exports": [
|
|
16446
|
+
{
|
|
16447
|
+
"kind": "js",
|
|
16448
|
+
"name": "AuroElement",
|
|
16449
|
+
"declaration": {
|
|
16450
|
+
"name": "AuroElement",
|
|
16451
|
+
"module": "components/layoutElement/src/index.js"
|
|
16452
|
+
}
|
|
16453
|
+
}
|
|
16454
|
+
]
|
|
16455
|
+
},
|
|
16456
|
+
{
|
|
16457
|
+
"kind": "javascript-module",
|
|
16458
|
+
"path": "components/layoutElement/src/registered.js",
|
|
16459
|
+
"declarations": [],
|
|
16460
|
+
"exports": []
|
|
16461
|
+
},
|
|
16462
16462
|
{
|
|
16463
16463
|
"kind": "javascript-module",
|
|
16464
16464
|
"path": "components/radio/src/auro-radio-group.js",
|