@skedulo/breeze-ui 0.9.4 → 0.9.5
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/dist/custom-elements.json +1169 -828
- package/dist/lib/cjs/breeze-ui.js +172 -160
- package/dist/lib/es/breeze-ui.js +2951 -2920
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/components/form-elements/input-base.d.ts +6 -0
- package/dist/types/components/form-elements/input-base.d.ts.map +1 -1
- package/dist/types/components/form-elements/labeled-input.d.ts +10 -5
- package/dist/types/components/form-elements/labeled-input.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -890,97 +890,6 @@
|
|
|
890
890
|
}
|
|
891
891
|
]
|
|
892
892
|
},
|
|
893
|
-
{
|
|
894
|
-
"kind": "javascript-module",
|
|
895
|
-
"path": "src/helpers/css-helpers.ts",
|
|
896
|
-
"declarations": [
|
|
897
|
-
{
|
|
898
|
-
"kind": "function",
|
|
899
|
-
"name": "getFocusStyles",
|
|
900
|
-
"parameters": [
|
|
901
|
-
{
|
|
902
|
-
"name": "selector",
|
|
903
|
-
"type": {
|
|
904
|
-
"text": "string"
|
|
905
|
-
},
|
|
906
|
-
"description": "A CSS selector targeting an interactive element."
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
"name": "extraRules",
|
|
910
|
-
"default": "css``",
|
|
911
|
-
"description": "Optional rules to append. Useful for overrides."
|
|
912
|
-
}
|
|
913
|
-
],
|
|
914
|
-
"description": "Returns a CSSResult applying focus outline styles to a given interactive\nelement. Reduces repetition throughout multiple components.\n\nTargets modern `:focus-visible` by default and includes a `:focus` fallback\nfor older browsers."
|
|
915
|
-
},
|
|
916
|
-
{
|
|
917
|
-
"kind": "variable",
|
|
918
|
-
"name": "invisibleButtonRules",
|
|
919
|
-
"default": "css`\n background: none;\n border: 0;\n border-radius: var(--brz-border-radius-default);\n color: var(--brz-color-neutral-750);\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n margin: 0;\n padding: 0;\n`",
|
|
920
|
-
"description": "CSS rules to apply invisible styles to buttons. Use within a CSS declaration\nblock."
|
|
921
|
-
},
|
|
922
|
-
{
|
|
923
|
-
"kind": "function",
|
|
924
|
-
"name": "getInvisibleButtonStyles",
|
|
925
|
-
"parameters": [
|
|
926
|
-
{
|
|
927
|
-
"name": "selector",
|
|
928
|
-
"type": {
|
|
929
|
-
"text": "string"
|
|
930
|
-
},
|
|
931
|
-
"description": "A CSS selector targeting a button"
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"name": "extraRules",
|
|
935
|
-
"default": "css``",
|
|
936
|
-
"description": "Optional rules to append. Useful for overrides."
|
|
937
|
-
}
|
|
938
|
-
],
|
|
939
|
-
"description": "Returns a CSSResult applying invisible styles to a button matching the given\nselector. Invisible buttons are a common pattern for icon-only close buttons.\n\nSince this applies to buttons, default focus styles are also automatically\nincluded for the selector. If you don't need them, or need to customise them,\nuse `invisibleButtonStyles` and `getFocusStyles()` separately instead."
|
|
940
|
-
}
|
|
941
|
-
],
|
|
942
|
-
"exports": [
|
|
943
|
-
{
|
|
944
|
-
"kind": "js",
|
|
945
|
-
"name": "getFocusStyles",
|
|
946
|
-
"declaration": {
|
|
947
|
-
"name": "getFocusStyles",
|
|
948
|
-
"module": "src/helpers/css-helpers.ts"
|
|
949
|
-
}
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
"kind": "js",
|
|
953
|
-
"name": "invisibleButtonRules",
|
|
954
|
-
"declaration": {
|
|
955
|
-
"name": "invisibleButtonRules",
|
|
956
|
-
"module": "src/helpers/css-helpers.ts"
|
|
957
|
-
}
|
|
958
|
-
},
|
|
959
|
-
{
|
|
960
|
-
"kind": "js",
|
|
961
|
-
"name": "getInvisibleButtonStyles",
|
|
962
|
-
"declaration": {
|
|
963
|
-
"name": "getInvisibleButtonStyles",
|
|
964
|
-
"module": "src/helpers/css-helpers.ts"
|
|
965
|
-
}
|
|
966
|
-
}
|
|
967
|
-
]
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"kind": "javascript-module",
|
|
971
|
-
"path": "src/helpers/index.ts",
|
|
972
|
-
"declarations": [],
|
|
973
|
-
"exports": [
|
|
974
|
-
{
|
|
975
|
-
"kind": "js",
|
|
976
|
-
"name": "*",
|
|
977
|
-
"declaration": {
|
|
978
|
-
"name": "*",
|
|
979
|
-
"package": "./css-helpers"
|
|
980
|
-
}
|
|
981
|
-
}
|
|
982
|
-
]
|
|
983
|
-
},
|
|
984
893
|
{
|
|
985
894
|
"kind": "javascript-module",
|
|
986
895
|
"path": "src/components/alert.ts",
|
|
@@ -8914,6 +8823,19 @@
|
|
|
8914
8823
|
"module": "src/components/form-elements/input-checkbox.ts"
|
|
8915
8824
|
}
|
|
8916
8825
|
},
|
|
8826
|
+
{
|
|
8827
|
+
"name": "required",
|
|
8828
|
+
"type": {
|
|
8829
|
+
"text": "boolean"
|
|
8830
|
+
},
|
|
8831
|
+
"default": "false",
|
|
8832
|
+
"description": "Indicates that the input requires a value",
|
|
8833
|
+
"fieldName": "required",
|
|
8834
|
+
"inheritedFrom": {
|
|
8835
|
+
"name": "InputBase",
|
|
8836
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
8837
|
+
}
|
|
8838
|
+
},
|
|
8917
8839
|
{
|
|
8918
8840
|
"name": "invalid",
|
|
8919
8841
|
"type": {
|
|
@@ -9070,12 +8992,14 @@
|
|
|
9070
8992
|
},
|
|
9071
8993
|
{
|
|
9072
8994
|
"kind": "field",
|
|
9073
|
-
"name": "
|
|
8995
|
+
"name": "required",
|
|
9074
8996
|
"type": {
|
|
9075
|
-
"text": "
|
|
8997
|
+
"text": "boolean"
|
|
9076
8998
|
},
|
|
9077
|
-
"
|
|
9078
|
-
"
|
|
8999
|
+
"default": "false",
|
|
9000
|
+
"description": "Indicates that the input requires a value",
|
|
9001
|
+
"attribute": "required",
|
|
9002
|
+
"reflects": true,
|
|
9079
9003
|
"inheritedFrom": {
|
|
9080
9004
|
"name": "InputBase",
|
|
9081
9005
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -9270,26 +9194,26 @@
|
|
|
9270
9194
|
}
|
|
9271
9195
|
},
|
|
9272
9196
|
{
|
|
9273
|
-
"name": "
|
|
9197
|
+
"name": "label-position",
|
|
9274
9198
|
"type": {
|
|
9275
|
-
"text": "
|
|
9199
|
+
"text": "LabelPosition"
|
|
9276
9200
|
},
|
|
9277
|
-
"default": "
|
|
9278
|
-
"description": "
|
|
9279
|
-
"fieldName": "
|
|
9201
|
+
"default": "'top'",
|
|
9202
|
+
"description": "The position of the supplied label",
|
|
9203
|
+
"fieldName": "labelPosition",
|
|
9280
9204
|
"inheritedFrom": {
|
|
9281
9205
|
"name": "LabeledInput",
|
|
9282
9206
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
9283
9207
|
}
|
|
9284
9208
|
},
|
|
9285
9209
|
{
|
|
9286
|
-
"name": "
|
|
9210
|
+
"name": "optional",
|
|
9287
9211
|
"type": {
|
|
9288
|
-
"text": "
|
|
9212
|
+
"text": "boolean"
|
|
9289
9213
|
},
|
|
9290
|
-
"default": "
|
|
9291
|
-
"description": "
|
|
9292
|
-
"fieldName": "
|
|
9214
|
+
"default": "false",
|
|
9215
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
9216
|
+
"fieldName": "optional",
|
|
9293
9217
|
"inheritedFrom": {
|
|
9294
9218
|
"name": "LabeledInput",
|
|
9295
9219
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -9308,6 +9232,19 @@
|
|
|
9308
9232
|
"module": "src/components/form-elements/input-base.ts"
|
|
9309
9233
|
}
|
|
9310
9234
|
},
|
|
9235
|
+
{
|
|
9236
|
+
"name": "required",
|
|
9237
|
+
"type": {
|
|
9238
|
+
"text": "boolean"
|
|
9239
|
+
},
|
|
9240
|
+
"default": "false",
|
|
9241
|
+
"description": "Indicates that the input requires a value",
|
|
9242
|
+
"fieldName": "required",
|
|
9243
|
+
"inheritedFrom": {
|
|
9244
|
+
"name": "InputBase",
|
|
9245
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
9246
|
+
}
|
|
9247
|
+
},
|
|
9311
9248
|
{
|
|
9312
9249
|
"name": "invalid",
|
|
9313
9250
|
"type": {
|
|
@@ -9515,13 +9452,13 @@
|
|
|
9515
9452
|
},
|
|
9516
9453
|
{
|
|
9517
9454
|
"kind": "field",
|
|
9518
|
-
"name": "
|
|
9455
|
+
"name": "labelPosition",
|
|
9519
9456
|
"type": {
|
|
9520
|
-
"text": "
|
|
9457
|
+
"text": "LabelPosition"
|
|
9521
9458
|
},
|
|
9522
|
-
"default": "
|
|
9523
|
-
"description": "
|
|
9524
|
-
"attribute": "
|
|
9459
|
+
"default": "'top'",
|
|
9460
|
+
"description": "The position of the supplied label",
|
|
9461
|
+
"attribute": "label-position",
|
|
9525
9462
|
"reflects": true,
|
|
9526
9463
|
"inheritedFrom": {
|
|
9527
9464
|
"name": "LabeledInput",
|
|
@@ -9530,13 +9467,13 @@
|
|
|
9530
9467
|
},
|
|
9531
9468
|
{
|
|
9532
9469
|
"kind": "field",
|
|
9533
|
-
"name": "
|
|
9470
|
+
"name": "optional",
|
|
9534
9471
|
"type": {
|
|
9535
|
-
"text": "
|
|
9472
|
+
"text": "boolean"
|
|
9536
9473
|
},
|
|
9537
|
-
"default": "
|
|
9538
|
-
"description": "
|
|
9539
|
-
"attribute": "
|
|
9474
|
+
"default": "false",
|
|
9475
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
9476
|
+
"attribute": "optional",
|
|
9540
9477
|
"reflects": true,
|
|
9541
9478
|
"inheritedFrom": {
|
|
9542
9479
|
"name": "LabeledInput",
|
|
@@ -9566,12 +9503,14 @@
|
|
|
9566
9503
|
},
|
|
9567
9504
|
{
|
|
9568
9505
|
"kind": "field",
|
|
9569
|
-
"name": "
|
|
9506
|
+
"name": "disabled",
|
|
9570
9507
|
"type": {
|
|
9571
|
-
"text": "
|
|
9508
|
+
"text": "boolean"
|
|
9572
9509
|
},
|
|
9573
|
-
"
|
|
9574
|
-
"
|
|
9510
|
+
"default": "false",
|
|
9511
|
+
"description": "Disables the input field",
|
|
9512
|
+
"attribute": "disabled",
|
|
9513
|
+
"reflects": true,
|
|
9575
9514
|
"inheritedFrom": {
|
|
9576
9515
|
"name": "InputBase",
|
|
9577
9516
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -9579,13 +9518,13 @@
|
|
|
9579
9518
|
},
|
|
9580
9519
|
{
|
|
9581
9520
|
"kind": "field",
|
|
9582
|
-
"name": "
|
|
9521
|
+
"name": "required",
|
|
9583
9522
|
"type": {
|
|
9584
9523
|
"text": "boolean"
|
|
9585
9524
|
},
|
|
9586
9525
|
"default": "false",
|
|
9587
|
-
"description": "
|
|
9588
|
-
"attribute": "
|
|
9526
|
+
"description": "Indicates that the input requires a value",
|
|
9527
|
+
"attribute": "required",
|
|
9589
9528
|
"reflects": true,
|
|
9590
9529
|
"inheritedFrom": {
|
|
9591
9530
|
"name": "InputBase",
|
|
@@ -9881,26 +9820,26 @@
|
|
|
9881
9820
|
}
|
|
9882
9821
|
},
|
|
9883
9822
|
{
|
|
9884
|
-
"name": "
|
|
9823
|
+
"name": "label-position",
|
|
9885
9824
|
"type": {
|
|
9886
|
-
"text": "
|
|
9825
|
+
"text": "LabelPosition"
|
|
9887
9826
|
},
|
|
9888
|
-
"default": "
|
|
9889
|
-
"description": "
|
|
9890
|
-
"fieldName": "
|
|
9827
|
+
"default": "'top'",
|
|
9828
|
+
"description": "The position of the supplied label",
|
|
9829
|
+
"fieldName": "labelPosition",
|
|
9891
9830
|
"inheritedFrom": {
|
|
9892
9831
|
"name": "LabeledInput",
|
|
9893
9832
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
9894
9833
|
}
|
|
9895
9834
|
},
|
|
9896
9835
|
{
|
|
9897
|
-
"name": "
|
|
9836
|
+
"name": "optional",
|
|
9898
9837
|
"type": {
|
|
9899
|
-
"text": "
|
|
9838
|
+
"text": "boolean"
|
|
9900
9839
|
},
|
|
9901
|
-
"default": "
|
|
9902
|
-
"description": "
|
|
9903
|
-
"fieldName": "
|
|
9840
|
+
"default": "false",
|
|
9841
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
9842
|
+
"fieldName": "optional",
|
|
9904
9843
|
"inheritedFrom": {
|
|
9905
9844
|
"name": "LabeledInput",
|
|
9906
9845
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -9919,6 +9858,19 @@
|
|
|
9919
9858
|
"module": "src/components/form-elements/input-base.ts"
|
|
9920
9859
|
}
|
|
9921
9860
|
},
|
|
9861
|
+
{
|
|
9862
|
+
"name": "required",
|
|
9863
|
+
"type": {
|
|
9864
|
+
"text": "boolean"
|
|
9865
|
+
},
|
|
9866
|
+
"default": "false",
|
|
9867
|
+
"description": "Indicates that the input requires a value",
|
|
9868
|
+
"fieldName": "required",
|
|
9869
|
+
"inheritedFrom": {
|
|
9870
|
+
"name": "InputBase",
|
|
9871
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
9872
|
+
}
|
|
9873
|
+
},
|
|
9922
9874
|
{
|
|
9923
9875
|
"name": "invalid",
|
|
9924
9876
|
"type": {
|
|
@@ -10516,13 +10468,13 @@
|
|
|
10516
10468
|
},
|
|
10517
10469
|
{
|
|
10518
10470
|
"kind": "field",
|
|
10519
|
-
"name": "
|
|
10471
|
+
"name": "labelPosition",
|
|
10520
10472
|
"type": {
|
|
10521
|
-
"text": "
|
|
10473
|
+
"text": "LabelPosition"
|
|
10522
10474
|
},
|
|
10523
|
-
"default": "
|
|
10524
|
-
"description": "
|
|
10525
|
-
"attribute": "
|
|
10475
|
+
"default": "'top'",
|
|
10476
|
+
"description": "The position of the supplied label",
|
|
10477
|
+
"attribute": "label-position",
|
|
10526
10478
|
"reflects": true,
|
|
10527
10479
|
"inheritedFrom": {
|
|
10528
10480
|
"name": "LabeledInput",
|
|
@@ -10531,13 +10483,13 @@
|
|
|
10531
10483
|
},
|
|
10532
10484
|
{
|
|
10533
10485
|
"kind": "field",
|
|
10534
|
-
"name": "
|
|
10486
|
+
"name": "optional",
|
|
10535
10487
|
"type": {
|
|
10536
|
-
"text": "
|
|
10488
|
+
"text": "boolean"
|
|
10537
10489
|
},
|
|
10538
|
-
"default": "
|
|
10539
|
-
"description": "
|
|
10540
|
-
"attribute": "
|
|
10490
|
+
"default": "false",
|
|
10491
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
10492
|
+
"attribute": "optional",
|
|
10541
10493
|
"reflects": true,
|
|
10542
10494
|
"inheritedFrom": {
|
|
10543
10495
|
"name": "LabeledInput",
|
|
@@ -10567,12 +10519,14 @@
|
|
|
10567
10519
|
},
|
|
10568
10520
|
{
|
|
10569
10521
|
"kind": "field",
|
|
10570
|
-
"name": "
|
|
10522
|
+
"name": "disabled",
|
|
10571
10523
|
"type": {
|
|
10572
|
-
"text": "
|
|
10524
|
+
"text": "boolean"
|
|
10573
10525
|
},
|
|
10574
|
-
"
|
|
10575
|
-
"
|
|
10526
|
+
"default": "false",
|
|
10527
|
+
"description": "Disables the input field",
|
|
10528
|
+
"attribute": "disabled",
|
|
10529
|
+
"reflects": true,
|
|
10576
10530
|
"inheritedFrom": {
|
|
10577
10531
|
"name": "InputBase",
|
|
10578
10532
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -10580,13 +10534,13 @@
|
|
|
10580
10534
|
},
|
|
10581
10535
|
{
|
|
10582
10536
|
"kind": "field",
|
|
10583
|
-
"name": "
|
|
10537
|
+
"name": "required",
|
|
10584
10538
|
"type": {
|
|
10585
10539
|
"text": "boolean"
|
|
10586
10540
|
},
|
|
10587
10541
|
"default": "false",
|
|
10588
|
-
"description": "
|
|
10589
|
-
"attribute": "
|
|
10542
|
+
"description": "Indicates that the input requires a value",
|
|
10543
|
+
"attribute": "required",
|
|
10590
10544
|
"reflects": true,
|
|
10591
10545
|
"inheritedFrom": {
|
|
10592
10546
|
"name": "InputBase",
|
|
@@ -10815,19 +10769,6 @@
|
|
|
10815
10769
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
10816
10770
|
}
|
|
10817
10771
|
},
|
|
10818
|
-
{
|
|
10819
|
-
"name": "required",
|
|
10820
|
-
"type": {
|
|
10821
|
-
"text": "boolean"
|
|
10822
|
-
},
|
|
10823
|
-
"default": "false",
|
|
10824
|
-
"description": "Makes the field go into a required state",
|
|
10825
|
-
"fieldName": "required",
|
|
10826
|
-
"inheritedFrom": {
|
|
10827
|
-
"name": "LabeledInput",
|
|
10828
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
10829
|
-
}
|
|
10830
|
-
},
|
|
10831
10772
|
{
|
|
10832
10773
|
"name": "label-position",
|
|
10833
10774
|
"type": {
|
|
@@ -10854,6 +10795,19 @@
|
|
|
10854
10795
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
10855
10796
|
}
|
|
10856
10797
|
},
|
|
10798
|
+
{
|
|
10799
|
+
"name": "optional",
|
|
10800
|
+
"type": {
|
|
10801
|
+
"text": "boolean"
|
|
10802
|
+
},
|
|
10803
|
+
"default": "false",
|
|
10804
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
10805
|
+
"fieldName": "optional",
|
|
10806
|
+
"inheritedFrom": {
|
|
10807
|
+
"name": "LabeledInput",
|
|
10808
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
10809
|
+
}
|
|
10810
|
+
},
|
|
10857
10811
|
{
|
|
10858
10812
|
"name": "disabled",
|
|
10859
10813
|
"type": {
|
|
@@ -10867,6 +10821,19 @@
|
|
|
10867
10821
|
"module": "src/components/form-elements/input-base.ts"
|
|
10868
10822
|
}
|
|
10869
10823
|
},
|
|
10824
|
+
{
|
|
10825
|
+
"name": "required",
|
|
10826
|
+
"type": {
|
|
10827
|
+
"text": "boolean"
|
|
10828
|
+
},
|
|
10829
|
+
"default": "false",
|
|
10830
|
+
"description": "Indicates that the input requires a value",
|
|
10831
|
+
"fieldName": "required",
|
|
10832
|
+
"inheritedFrom": {
|
|
10833
|
+
"name": "InputBase",
|
|
10834
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
10835
|
+
}
|
|
10836
|
+
},
|
|
10870
10837
|
{
|
|
10871
10838
|
"name": "invalid",
|
|
10872
10839
|
"type": {
|
|
@@ -11126,21 +11093,6 @@
|
|
|
11126
11093
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
11127
11094
|
}
|
|
11128
11095
|
},
|
|
11129
|
-
{
|
|
11130
|
-
"kind": "field",
|
|
11131
|
-
"name": "required",
|
|
11132
|
-
"type": {
|
|
11133
|
-
"text": "boolean"
|
|
11134
|
-
},
|
|
11135
|
-
"default": "false",
|
|
11136
|
-
"description": "Makes the field go into a required state",
|
|
11137
|
-
"attribute": "required",
|
|
11138
|
-
"reflects": true,
|
|
11139
|
-
"inheritedFrom": {
|
|
11140
|
-
"name": "LabeledInput",
|
|
11141
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
11142
|
-
}
|
|
11143
|
-
},
|
|
11144
11096
|
{
|
|
11145
11097
|
"kind": "field",
|
|
11146
11098
|
"name": "labelPosition",
|
|
@@ -11171,6 +11123,21 @@
|
|
|
11171
11123
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
11172
11124
|
}
|
|
11173
11125
|
},
|
|
11126
|
+
{
|
|
11127
|
+
"kind": "field",
|
|
11128
|
+
"name": "optional",
|
|
11129
|
+
"type": {
|
|
11130
|
+
"text": "boolean"
|
|
11131
|
+
},
|
|
11132
|
+
"default": "false",
|
|
11133
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
11134
|
+
"attribute": "optional",
|
|
11135
|
+
"reflects": true,
|
|
11136
|
+
"inheritedFrom": {
|
|
11137
|
+
"name": "LabeledInput",
|
|
11138
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
11139
|
+
}
|
|
11140
|
+
},
|
|
11174
11141
|
{
|
|
11175
11142
|
"kind": "method",
|
|
11176
11143
|
"name": "handleErrorChange",
|
|
@@ -11194,12 +11161,14 @@
|
|
|
11194
11161
|
},
|
|
11195
11162
|
{
|
|
11196
11163
|
"kind": "field",
|
|
11197
|
-
"name": "
|
|
11164
|
+
"name": "disabled",
|
|
11198
11165
|
"type": {
|
|
11199
|
-
"text": "
|
|
11166
|
+
"text": "boolean"
|
|
11200
11167
|
},
|
|
11201
|
-
"
|
|
11202
|
-
"
|
|
11168
|
+
"default": "false",
|
|
11169
|
+
"description": "Disables the input field",
|
|
11170
|
+
"attribute": "disabled",
|
|
11171
|
+
"reflects": true,
|
|
11203
11172
|
"inheritedFrom": {
|
|
11204
11173
|
"name": "InputBase",
|
|
11205
11174
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -11207,13 +11176,13 @@
|
|
|
11207
11176
|
},
|
|
11208
11177
|
{
|
|
11209
11178
|
"kind": "field",
|
|
11210
|
-
"name": "
|
|
11179
|
+
"name": "required",
|
|
11211
11180
|
"type": {
|
|
11212
11181
|
"text": "boolean"
|
|
11213
11182
|
},
|
|
11214
11183
|
"default": "false",
|
|
11215
|
-
"description": "
|
|
11216
|
-
"attribute": "
|
|
11184
|
+
"description": "Indicates that the input requires a value",
|
|
11185
|
+
"attribute": "required",
|
|
11217
11186
|
"reflects": true,
|
|
11218
11187
|
"inheritedFrom": {
|
|
11219
11188
|
"name": "InputBase",
|
|
@@ -11372,26 +11341,26 @@
|
|
|
11372
11341
|
}
|
|
11373
11342
|
},
|
|
11374
11343
|
{
|
|
11375
|
-
"name": "
|
|
11344
|
+
"name": "label-position",
|
|
11376
11345
|
"type": {
|
|
11377
|
-
"text": "
|
|
11346
|
+
"text": "LabelPosition"
|
|
11378
11347
|
},
|
|
11379
|
-
"default": "
|
|
11380
|
-
"description": "
|
|
11381
|
-
"fieldName": "
|
|
11348
|
+
"default": "'top'",
|
|
11349
|
+
"description": "The position of the supplied label",
|
|
11350
|
+
"fieldName": "labelPosition",
|
|
11382
11351
|
"inheritedFrom": {
|
|
11383
11352
|
"name": "LabeledInput",
|
|
11384
11353
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
11385
11354
|
}
|
|
11386
11355
|
},
|
|
11387
11356
|
{
|
|
11388
|
-
"name": "
|
|
11357
|
+
"name": "optional",
|
|
11389
11358
|
"type": {
|
|
11390
|
-
"text": "
|
|
11359
|
+
"text": "boolean"
|
|
11391
11360
|
},
|
|
11392
|
-
"default": "
|
|
11393
|
-
"description": "
|
|
11394
|
-
"fieldName": "
|
|
11361
|
+
"default": "false",
|
|
11362
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
11363
|
+
"fieldName": "optional",
|
|
11395
11364
|
"inheritedFrom": {
|
|
11396
11365
|
"name": "LabeledInput",
|
|
11397
11366
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -11410,6 +11379,19 @@
|
|
|
11410
11379
|
"module": "src/components/form-elements/input-base.ts"
|
|
11411
11380
|
}
|
|
11412
11381
|
},
|
|
11382
|
+
{
|
|
11383
|
+
"name": "required",
|
|
11384
|
+
"type": {
|
|
11385
|
+
"text": "boolean"
|
|
11386
|
+
},
|
|
11387
|
+
"default": "false",
|
|
11388
|
+
"description": "Indicates that the input requires a value",
|
|
11389
|
+
"fieldName": "required",
|
|
11390
|
+
"inheritedFrom": {
|
|
11391
|
+
"name": "InputBase",
|
|
11392
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
11393
|
+
}
|
|
11394
|
+
},
|
|
11413
11395
|
{
|
|
11414
11396
|
"name": "invalid",
|
|
11415
11397
|
"type": {
|
|
@@ -11542,13 +11524,13 @@
|
|
|
11542
11524
|
},
|
|
11543
11525
|
{
|
|
11544
11526
|
"kind": "field",
|
|
11545
|
-
"name": "
|
|
11527
|
+
"name": "labelPosition",
|
|
11546
11528
|
"type": {
|
|
11547
|
-
"text": "
|
|
11529
|
+
"text": "LabelPosition"
|
|
11548
11530
|
},
|
|
11549
|
-
"default": "
|
|
11550
|
-
"description": "
|
|
11551
|
-
"attribute": "
|
|
11531
|
+
"default": "'top'",
|
|
11532
|
+
"description": "The position of the supplied label",
|
|
11533
|
+
"attribute": "label-position",
|
|
11552
11534
|
"reflects": true,
|
|
11553
11535
|
"inheritedFrom": {
|
|
11554
11536
|
"name": "LabeledInput",
|
|
@@ -11557,13 +11539,13 @@
|
|
|
11557
11539
|
},
|
|
11558
11540
|
{
|
|
11559
11541
|
"kind": "field",
|
|
11560
|
-
"name": "
|
|
11542
|
+
"name": "optional",
|
|
11561
11543
|
"type": {
|
|
11562
|
-
"text": "
|
|
11544
|
+
"text": "boolean"
|
|
11563
11545
|
},
|
|
11564
|
-
"default": "
|
|
11565
|
-
"description": "
|
|
11566
|
-
"attribute": "
|
|
11546
|
+
"default": "false",
|
|
11547
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
11548
|
+
"attribute": "optional",
|
|
11567
11549
|
"reflects": true,
|
|
11568
11550
|
"inheritedFrom": {
|
|
11569
11551
|
"name": "LabeledInput",
|
|
@@ -11602,12 +11584,14 @@
|
|
|
11602
11584
|
},
|
|
11603
11585
|
{
|
|
11604
11586
|
"kind": "field",
|
|
11605
|
-
"name": "
|
|
11587
|
+
"name": "disabled",
|
|
11606
11588
|
"type": {
|
|
11607
|
-
"text": "
|
|
11589
|
+
"text": "boolean"
|
|
11608
11590
|
},
|
|
11609
|
-
"
|
|
11610
|
-
"
|
|
11591
|
+
"default": "false",
|
|
11592
|
+
"description": "Disables the input field",
|
|
11593
|
+
"attribute": "disabled",
|
|
11594
|
+
"reflects": true,
|
|
11611
11595
|
"inheritedFrom": {
|
|
11612
11596
|
"name": "InputBase",
|
|
11613
11597
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -11615,13 +11599,13 @@
|
|
|
11615
11599
|
},
|
|
11616
11600
|
{
|
|
11617
11601
|
"kind": "field",
|
|
11618
|
-
"name": "
|
|
11602
|
+
"name": "required",
|
|
11619
11603
|
"type": {
|
|
11620
11604
|
"text": "boolean"
|
|
11621
11605
|
},
|
|
11622
11606
|
"default": "false",
|
|
11623
|
-
"description": "
|
|
11624
|
-
"attribute": "
|
|
11607
|
+
"description": "Indicates that the input requires a value",
|
|
11608
|
+
"attribute": "required",
|
|
11625
11609
|
"reflects": true,
|
|
11626
11610
|
"inheritedFrom": {
|
|
11627
11611
|
"name": "InputBase",
|
|
@@ -12564,19 +12548,6 @@
|
|
|
12564
12548
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
12565
12549
|
}
|
|
12566
12550
|
},
|
|
12567
|
-
{
|
|
12568
|
-
"name": "required",
|
|
12569
|
-
"type": {
|
|
12570
|
-
"text": "boolean"
|
|
12571
|
-
},
|
|
12572
|
-
"default": "false",
|
|
12573
|
-
"description": "Makes the field go into a required state",
|
|
12574
|
-
"fieldName": "required",
|
|
12575
|
-
"inheritedFrom": {
|
|
12576
|
-
"name": "LabeledInput",
|
|
12577
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
12578
|
-
}
|
|
12579
|
-
},
|
|
12580
12551
|
{
|
|
12581
12552
|
"name": "label-position",
|
|
12582
12553
|
"type": {
|
|
@@ -12603,6 +12574,19 @@
|
|
|
12603
12574
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
12604
12575
|
}
|
|
12605
12576
|
},
|
|
12577
|
+
{
|
|
12578
|
+
"name": "optional",
|
|
12579
|
+
"type": {
|
|
12580
|
+
"text": "boolean"
|
|
12581
|
+
},
|
|
12582
|
+
"default": "false",
|
|
12583
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
12584
|
+
"fieldName": "optional",
|
|
12585
|
+
"inheritedFrom": {
|
|
12586
|
+
"name": "LabeledInput",
|
|
12587
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
12588
|
+
}
|
|
12589
|
+
},
|
|
12606
12590
|
{
|
|
12607
12591
|
"name": "disabled",
|
|
12608
12592
|
"type": {
|
|
@@ -12616,6 +12600,19 @@
|
|
|
12616
12600
|
"module": "src/components/form-elements/input-base.ts"
|
|
12617
12601
|
}
|
|
12618
12602
|
},
|
|
12603
|
+
{
|
|
12604
|
+
"name": "required",
|
|
12605
|
+
"type": {
|
|
12606
|
+
"text": "boolean"
|
|
12607
|
+
},
|
|
12608
|
+
"default": "false",
|
|
12609
|
+
"description": "Indicates that the input requires a value",
|
|
12610
|
+
"fieldName": "required",
|
|
12611
|
+
"inheritedFrom": {
|
|
12612
|
+
"name": "InputBase",
|
|
12613
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
12614
|
+
}
|
|
12615
|
+
},
|
|
12619
12616
|
{
|
|
12620
12617
|
"name": "invalid",
|
|
12621
12618
|
"type": {
|
|
@@ -12805,8 +12802,8 @@
|
|
|
12805
12802
|
"attribute": "required",
|
|
12806
12803
|
"reflects": true,
|
|
12807
12804
|
"inheritedFrom": {
|
|
12808
|
-
"name": "
|
|
12809
|
-
"module": "src/components/form-elements/
|
|
12805
|
+
"name": "InputBase",
|
|
12806
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
12810
12807
|
}
|
|
12811
12808
|
},
|
|
12812
12809
|
{
|
|
@@ -13192,6 +13189,21 @@
|
|
|
13192
13189
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
13193
13190
|
}
|
|
13194
13191
|
},
|
|
13192
|
+
{
|
|
13193
|
+
"kind": "field",
|
|
13194
|
+
"name": "optional",
|
|
13195
|
+
"type": {
|
|
13196
|
+
"text": "boolean"
|
|
13197
|
+
},
|
|
13198
|
+
"default": "false",
|
|
13199
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
13200
|
+
"attribute": "optional",
|
|
13201
|
+
"reflects": true,
|
|
13202
|
+
"inheritedFrom": {
|
|
13203
|
+
"name": "LabeledInput",
|
|
13204
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
13205
|
+
}
|
|
13206
|
+
},
|
|
13195
13207
|
{
|
|
13196
13208
|
"kind": "method",
|
|
13197
13209
|
"name": "handleErrorChange",
|
|
@@ -13213,19 +13225,6 @@
|
|
|
13213
13225
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
13214
13226
|
}
|
|
13215
13227
|
},
|
|
13216
|
-
{
|
|
13217
|
-
"kind": "field",
|
|
13218
|
-
"name": "shadowRootOptions",
|
|
13219
|
-
"type": {
|
|
13220
|
-
"text": "ShadowRootInit"
|
|
13221
|
-
},
|
|
13222
|
-
"static": true,
|
|
13223
|
-
"default": "{\n mode: 'open',\n delegatesFocus: true,\n }",
|
|
13224
|
-
"inheritedFrom": {
|
|
13225
|
-
"name": "InputBase",
|
|
13226
|
-
"module": "src/components/form-elements/input-base.ts"
|
|
13227
|
-
}
|
|
13228
|
-
},
|
|
13229
13228
|
{
|
|
13230
13229
|
"kind": "field",
|
|
13231
13230
|
"name": "disabled",
|
|
@@ -13460,26 +13459,26 @@
|
|
|
13460
13459
|
}
|
|
13461
13460
|
},
|
|
13462
13461
|
{
|
|
13463
|
-
"name": "
|
|
13462
|
+
"name": "label-position",
|
|
13464
13463
|
"type": {
|
|
13465
|
-
"text": "
|
|
13464
|
+
"text": "LabelPosition"
|
|
13466
13465
|
},
|
|
13467
|
-
"default": "
|
|
13468
|
-
"description": "
|
|
13469
|
-
"fieldName": "
|
|
13466
|
+
"default": "'top'",
|
|
13467
|
+
"description": "The position of the supplied label",
|
|
13468
|
+
"fieldName": "labelPosition",
|
|
13470
13469
|
"inheritedFrom": {
|
|
13471
13470
|
"name": "LabeledInput",
|
|
13472
13471
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
13473
13472
|
}
|
|
13474
13473
|
},
|
|
13475
13474
|
{
|
|
13476
|
-
"name": "
|
|
13475
|
+
"name": "optional",
|
|
13477
13476
|
"type": {
|
|
13478
|
-
"text": "
|
|
13477
|
+
"text": "boolean"
|
|
13479
13478
|
},
|
|
13480
|
-
"default": "
|
|
13481
|
-
"description": "
|
|
13482
|
-
"fieldName": "
|
|
13479
|
+
"default": "false",
|
|
13480
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
13481
|
+
"fieldName": "optional",
|
|
13483
13482
|
"inheritedFrom": {
|
|
13484
13483
|
"name": "LabeledInput",
|
|
13485
13484
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -13498,6 +13497,19 @@
|
|
|
13498
13497
|
"module": "src/components/form-elements/input-base.ts"
|
|
13499
13498
|
}
|
|
13500
13499
|
},
|
|
13500
|
+
{
|
|
13501
|
+
"name": "required",
|
|
13502
|
+
"type": {
|
|
13503
|
+
"text": "boolean"
|
|
13504
|
+
},
|
|
13505
|
+
"default": "false",
|
|
13506
|
+
"description": "Indicates that the input requires a value",
|
|
13507
|
+
"fieldName": "required",
|
|
13508
|
+
"inheritedFrom": {
|
|
13509
|
+
"name": "InputBase",
|
|
13510
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
13511
|
+
}
|
|
13512
|
+
},
|
|
13501
13513
|
{
|
|
13502
13514
|
"name": "invalid",
|
|
13503
13515
|
"type": {
|
|
@@ -13662,13 +13674,13 @@
|
|
|
13662
13674
|
},
|
|
13663
13675
|
{
|
|
13664
13676
|
"kind": "field",
|
|
13665
|
-
"name": "
|
|
13677
|
+
"name": "labelPosition",
|
|
13666
13678
|
"type": {
|
|
13667
|
-
"text": "
|
|
13679
|
+
"text": "LabelPosition"
|
|
13668
13680
|
},
|
|
13669
|
-
"default": "
|
|
13670
|
-
"description": "
|
|
13671
|
-
"attribute": "
|
|
13681
|
+
"default": "'top'",
|
|
13682
|
+
"description": "The position of the supplied label",
|
|
13683
|
+
"attribute": "label-position",
|
|
13672
13684
|
"reflects": true,
|
|
13673
13685
|
"inheritedFrom": {
|
|
13674
13686
|
"name": "LabeledInput",
|
|
@@ -13677,13 +13689,13 @@
|
|
|
13677
13689
|
},
|
|
13678
13690
|
{
|
|
13679
13691
|
"kind": "field",
|
|
13680
|
-
"name": "
|
|
13692
|
+
"name": "optional",
|
|
13681
13693
|
"type": {
|
|
13682
|
-
"text": "
|
|
13694
|
+
"text": "boolean"
|
|
13683
13695
|
},
|
|
13684
|
-
"default": "
|
|
13685
|
-
"description": "
|
|
13686
|
-
"attribute": "
|
|
13696
|
+
"default": "false",
|
|
13697
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
13698
|
+
"attribute": "optional",
|
|
13687
13699
|
"reflects": true,
|
|
13688
13700
|
"inheritedFrom": {
|
|
13689
13701
|
"name": "LabeledInput",
|
|
@@ -13713,12 +13725,14 @@
|
|
|
13713
13725
|
},
|
|
13714
13726
|
{
|
|
13715
13727
|
"kind": "field",
|
|
13716
|
-
"name": "
|
|
13728
|
+
"name": "disabled",
|
|
13717
13729
|
"type": {
|
|
13718
|
-
"text": "
|
|
13730
|
+
"text": "boolean"
|
|
13719
13731
|
},
|
|
13720
|
-
"
|
|
13721
|
-
"
|
|
13732
|
+
"default": "false",
|
|
13733
|
+
"description": "Disables the input field",
|
|
13734
|
+
"attribute": "disabled",
|
|
13735
|
+
"reflects": true,
|
|
13722
13736
|
"inheritedFrom": {
|
|
13723
13737
|
"name": "InputBase",
|
|
13724
13738
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -13726,13 +13740,13 @@
|
|
|
13726
13740
|
},
|
|
13727
13741
|
{
|
|
13728
13742
|
"kind": "field",
|
|
13729
|
-
"name": "
|
|
13743
|
+
"name": "required",
|
|
13730
13744
|
"type": {
|
|
13731
13745
|
"text": "boolean"
|
|
13732
13746
|
},
|
|
13733
13747
|
"default": "false",
|
|
13734
|
-
"description": "
|
|
13735
|
-
"attribute": "
|
|
13748
|
+
"description": "Indicates that the input requires a value",
|
|
13749
|
+
"attribute": "required",
|
|
13736
13750
|
"reflects": true,
|
|
13737
13751
|
"inheritedFrom": {
|
|
13738
13752
|
"name": "InputBase",
|
|
@@ -13938,26 +13952,26 @@
|
|
|
13938
13952
|
}
|
|
13939
13953
|
},
|
|
13940
13954
|
{
|
|
13941
|
-
"name": "
|
|
13955
|
+
"name": "label-position",
|
|
13942
13956
|
"type": {
|
|
13943
|
-
"text": "
|
|
13957
|
+
"text": "LabelPosition"
|
|
13944
13958
|
},
|
|
13945
|
-
"default": "
|
|
13946
|
-
"description": "
|
|
13947
|
-
"fieldName": "
|
|
13959
|
+
"default": "'top'",
|
|
13960
|
+
"description": "The position of the supplied label",
|
|
13961
|
+
"fieldName": "labelPosition",
|
|
13948
13962
|
"inheritedFrom": {
|
|
13949
13963
|
"name": "LabeledInput",
|
|
13950
13964
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
13951
13965
|
}
|
|
13952
13966
|
},
|
|
13953
13967
|
{
|
|
13954
|
-
"name": "
|
|
13968
|
+
"name": "optional",
|
|
13955
13969
|
"type": {
|
|
13956
|
-
"text": "
|
|
13970
|
+
"text": "boolean"
|
|
13957
13971
|
},
|
|
13958
|
-
"default": "
|
|
13959
|
-
"description": "
|
|
13960
|
-
"fieldName": "
|
|
13972
|
+
"default": "false",
|
|
13973
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
13974
|
+
"fieldName": "optional",
|
|
13961
13975
|
"inheritedFrom": {
|
|
13962
13976
|
"name": "LabeledInput",
|
|
13963
13977
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -13976,6 +13990,19 @@
|
|
|
13976
13990
|
"module": "src/components/form-elements/input-base.ts"
|
|
13977
13991
|
}
|
|
13978
13992
|
},
|
|
13993
|
+
{
|
|
13994
|
+
"name": "required",
|
|
13995
|
+
"type": {
|
|
13996
|
+
"text": "boolean"
|
|
13997
|
+
},
|
|
13998
|
+
"default": "false",
|
|
13999
|
+
"description": "Indicates that the input requires a value",
|
|
14000
|
+
"fieldName": "required",
|
|
14001
|
+
"inheritedFrom": {
|
|
14002
|
+
"name": "InputBase",
|
|
14003
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
14004
|
+
}
|
|
14005
|
+
},
|
|
13979
14006
|
{
|
|
13980
14007
|
"name": "invalid",
|
|
13981
14008
|
"type": {
|
|
@@ -14153,13 +14180,13 @@
|
|
|
14153
14180
|
},
|
|
14154
14181
|
{
|
|
14155
14182
|
"kind": "field",
|
|
14156
|
-
"name": "
|
|
14183
|
+
"name": "labelPosition",
|
|
14157
14184
|
"type": {
|
|
14158
|
-
"text": "
|
|
14185
|
+
"text": "LabelPosition"
|
|
14159
14186
|
},
|
|
14160
|
-
"default": "
|
|
14161
|
-
"description": "
|
|
14162
|
-
"attribute": "
|
|
14187
|
+
"default": "'top'",
|
|
14188
|
+
"description": "The position of the supplied label",
|
|
14189
|
+
"attribute": "label-position",
|
|
14163
14190
|
"reflects": true,
|
|
14164
14191
|
"inheritedFrom": {
|
|
14165
14192
|
"name": "LabeledInput",
|
|
@@ -14168,13 +14195,13 @@
|
|
|
14168
14195
|
},
|
|
14169
14196
|
{
|
|
14170
14197
|
"kind": "field",
|
|
14171
|
-
"name": "
|
|
14198
|
+
"name": "optional",
|
|
14172
14199
|
"type": {
|
|
14173
|
-
"text": "
|
|
14200
|
+
"text": "boolean"
|
|
14174
14201
|
},
|
|
14175
|
-
"default": "
|
|
14176
|
-
"description": "
|
|
14177
|
-
"attribute": "
|
|
14202
|
+
"default": "false",
|
|
14203
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
14204
|
+
"attribute": "optional",
|
|
14178
14205
|
"reflects": true,
|
|
14179
14206
|
"inheritedFrom": {
|
|
14180
14207
|
"name": "LabeledInput",
|
|
@@ -14191,12 +14218,14 @@
|
|
|
14191
14218
|
},
|
|
14192
14219
|
{
|
|
14193
14220
|
"kind": "field",
|
|
14194
|
-
"name": "
|
|
14221
|
+
"name": "disabled",
|
|
14195
14222
|
"type": {
|
|
14196
|
-
"text": "
|
|
14223
|
+
"text": "boolean"
|
|
14197
14224
|
},
|
|
14198
|
-
"
|
|
14199
|
-
"
|
|
14225
|
+
"default": "false",
|
|
14226
|
+
"description": "Disables the input field",
|
|
14227
|
+
"attribute": "disabled",
|
|
14228
|
+
"reflects": true,
|
|
14200
14229
|
"inheritedFrom": {
|
|
14201
14230
|
"name": "InputBase",
|
|
14202
14231
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -14204,13 +14233,13 @@
|
|
|
14204
14233
|
},
|
|
14205
14234
|
{
|
|
14206
14235
|
"kind": "field",
|
|
14207
|
-
"name": "
|
|
14236
|
+
"name": "required",
|
|
14208
14237
|
"type": {
|
|
14209
14238
|
"text": "boolean"
|
|
14210
14239
|
},
|
|
14211
14240
|
"default": "false",
|
|
14212
|
-
"description": "
|
|
14213
|
-
"attribute": "
|
|
14241
|
+
"description": "Indicates that the input requires a value",
|
|
14242
|
+
"attribute": "required",
|
|
14214
14243
|
"reflects": true,
|
|
14215
14244
|
"inheritedFrom": {
|
|
14216
14245
|
"name": "InputBase",
|
|
@@ -14483,19 +14512,6 @@
|
|
|
14483
14512
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
14484
14513
|
}
|
|
14485
14514
|
},
|
|
14486
|
-
{
|
|
14487
|
-
"name": "required",
|
|
14488
|
-
"type": {
|
|
14489
|
-
"text": "boolean"
|
|
14490
|
-
},
|
|
14491
|
-
"default": "false",
|
|
14492
|
-
"description": "Makes the field go into a required state",
|
|
14493
|
-
"fieldName": "required",
|
|
14494
|
-
"inheritedFrom": {
|
|
14495
|
-
"name": "LabeledInput",
|
|
14496
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
14497
|
-
}
|
|
14498
|
-
},
|
|
14499
14515
|
{
|
|
14500
14516
|
"name": "label-position",
|
|
14501
14517
|
"type": {
|
|
@@ -14522,6 +14538,19 @@
|
|
|
14522
14538
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
14523
14539
|
}
|
|
14524
14540
|
},
|
|
14541
|
+
{
|
|
14542
|
+
"name": "optional",
|
|
14543
|
+
"type": {
|
|
14544
|
+
"text": "boolean"
|
|
14545
|
+
},
|
|
14546
|
+
"default": "false",
|
|
14547
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
14548
|
+
"fieldName": "optional",
|
|
14549
|
+
"inheritedFrom": {
|
|
14550
|
+
"name": "LabeledInput",
|
|
14551
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
14552
|
+
}
|
|
14553
|
+
},
|
|
14525
14554
|
{
|
|
14526
14555
|
"name": "disabled",
|
|
14527
14556
|
"type": {
|
|
@@ -14535,6 +14564,19 @@
|
|
|
14535
14564
|
"module": "src/components/form-elements/input-base.ts"
|
|
14536
14565
|
}
|
|
14537
14566
|
},
|
|
14567
|
+
{
|
|
14568
|
+
"name": "required",
|
|
14569
|
+
"type": {
|
|
14570
|
+
"text": "boolean"
|
|
14571
|
+
},
|
|
14572
|
+
"default": "false",
|
|
14573
|
+
"description": "Indicates that the input requires a value",
|
|
14574
|
+
"fieldName": "required",
|
|
14575
|
+
"inheritedFrom": {
|
|
14576
|
+
"name": "InputBase",
|
|
14577
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
14578
|
+
}
|
|
14579
|
+
},
|
|
14538
14580
|
{
|
|
14539
14581
|
"name": "invalid",
|
|
14540
14582
|
"type": {
|
|
@@ -14874,8 +14916,8 @@
|
|
|
14874
14916
|
"attribute": "required",
|
|
14875
14917
|
"reflects": true,
|
|
14876
14918
|
"inheritedFrom": {
|
|
14877
|
-
"name": "
|
|
14878
|
-
"module": "src/components/form-elements/
|
|
14919
|
+
"name": "InputBase",
|
|
14920
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
14879
14921
|
}
|
|
14880
14922
|
},
|
|
14881
14923
|
{
|
|
@@ -15190,6 +15232,21 @@
|
|
|
15190
15232
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
15191
15233
|
}
|
|
15192
15234
|
},
|
|
15235
|
+
{
|
|
15236
|
+
"kind": "field",
|
|
15237
|
+
"name": "optional",
|
|
15238
|
+
"type": {
|
|
15239
|
+
"text": "boolean"
|
|
15240
|
+
},
|
|
15241
|
+
"default": "false",
|
|
15242
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
15243
|
+
"attribute": "optional",
|
|
15244
|
+
"reflects": true,
|
|
15245
|
+
"inheritedFrom": {
|
|
15246
|
+
"name": "LabeledInput",
|
|
15247
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
15248
|
+
}
|
|
15249
|
+
},
|
|
15193
15250
|
{
|
|
15194
15251
|
"kind": "method",
|
|
15195
15252
|
"name": "handleErrorChange",
|
|
@@ -15211,19 +15268,6 @@
|
|
|
15211
15268
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
15212
15269
|
}
|
|
15213
15270
|
},
|
|
15214
|
-
{
|
|
15215
|
-
"kind": "field",
|
|
15216
|
-
"name": "shadowRootOptions",
|
|
15217
|
-
"type": {
|
|
15218
|
-
"text": "ShadowRootInit"
|
|
15219
|
-
},
|
|
15220
|
-
"static": true,
|
|
15221
|
-
"default": "{\n mode: 'open',\n delegatesFocus: true,\n }",
|
|
15222
|
-
"inheritedFrom": {
|
|
15223
|
-
"name": "InputBase",
|
|
15224
|
-
"module": "src/components/form-elements/input-base.ts"
|
|
15225
|
-
}
|
|
15226
|
-
},
|
|
15227
15271
|
{
|
|
15228
15272
|
"kind": "field",
|
|
15229
15273
|
"name": "disabled",
|
|
@@ -15393,19 +15437,6 @@
|
|
|
15393
15437
|
"tagName": "sp-labeled-input",
|
|
15394
15438
|
"customElement": true,
|
|
15395
15439
|
"attributes": [
|
|
15396
|
-
{
|
|
15397
|
-
"name": "required",
|
|
15398
|
-
"type": {
|
|
15399
|
-
"text": "boolean"
|
|
15400
|
-
},
|
|
15401
|
-
"default": "false",
|
|
15402
|
-
"description": "Makes the field go into a required state",
|
|
15403
|
-
"fieldName": "required",
|
|
15404
|
-
"inheritedFrom": {
|
|
15405
|
-
"name": "LabeledInput",
|
|
15406
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
15407
|
-
}
|
|
15408
|
-
},
|
|
15409
15440
|
{
|
|
15410
15441
|
"name": "label-position",
|
|
15411
15442
|
"type": {
|
|
@@ -15432,6 +15463,19 @@
|
|
|
15432
15463
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
15433
15464
|
}
|
|
15434
15465
|
},
|
|
15466
|
+
{
|
|
15467
|
+
"name": "optional",
|
|
15468
|
+
"type": {
|
|
15469
|
+
"text": "boolean"
|
|
15470
|
+
},
|
|
15471
|
+
"default": "false",
|
|
15472
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
15473
|
+
"fieldName": "optional",
|
|
15474
|
+
"inheritedFrom": {
|
|
15475
|
+
"name": "LabeledInput",
|
|
15476
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
15477
|
+
}
|
|
15478
|
+
},
|
|
15435
15479
|
{
|
|
15436
15480
|
"name": "disabled",
|
|
15437
15481
|
"type": {
|
|
@@ -15445,6 +15489,19 @@
|
|
|
15445
15489
|
"module": "src/components/form-elements/input-base.ts"
|
|
15446
15490
|
}
|
|
15447
15491
|
},
|
|
15492
|
+
{
|
|
15493
|
+
"name": "required",
|
|
15494
|
+
"type": {
|
|
15495
|
+
"text": "boolean"
|
|
15496
|
+
},
|
|
15497
|
+
"default": "false",
|
|
15498
|
+
"description": "Indicates that the input requires a value",
|
|
15499
|
+
"fieldName": "required",
|
|
15500
|
+
"inheritedFrom": {
|
|
15501
|
+
"name": "InputBase",
|
|
15502
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
15503
|
+
}
|
|
15504
|
+
},
|
|
15448
15505
|
{
|
|
15449
15506
|
"name": "invalid",
|
|
15450
15507
|
"type": {
|
|
@@ -15498,21 +15555,6 @@
|
|
|
15498
15555
|
}
|
|
15499
15556
|
],
|
|
15500
15557
|
"members": [
|
|
15501
|
-
{
|
|
15502
|
-
"kind": "field",
|
|
15503
|
-
"name": "required",
|
|
15504
|
-
"type": {
|
|
15505
|
-
"text": "boolean"
|
|
15506
|
-
},
|
|
15507
|
-
"default": "false",
|
|
15508
|
-
"description": "Makes the field go into a required state",
|
|
15509
|
-
"attribute": "required",
|
|
15510
|
-
"reflects": true,
|
|
15511
|
-
"inheritedFrom": {
|
|
15512
|
-
"name": "LabeledInput",
|
|
15513
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
15514
|
-
}
|
|
15515
|
-
},
|
|
15516
15558
|
{
|
|
15517
15559
|
"kind": "field",
|
|
15518
15560
|
"name": "labelPosition",
|
|
@@ -15543,6 +15585,21 @@
|
|
|
15543
15585
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
15544
15586
|
}
|
|
15545
15587
|
},
|
|
15588
|
+
{
|
|
15589
|
+
"kind": "field",
|
|
15590
|
+
"name": "optional",
|
|
15591
|
+
"type": {
|
|
15592
|
+
"text": "boolean"
|
|
15593
|
+
},
|
|
15594
|
+
"default": "false",
|
|
15595
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
15596
|
+
"attribute": "optional",
|
|
15597
|
+
"reflects": true,
|
|
15598
|
+
"inheritedFrom": {
|
|
15599
|
+
"name": "LabeledInput",
|
|
15600
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
15601
|
+
}
|
|
15602
|
+
},
|
|
15546
15603
|
{
|
|
15547
15604
|
"kind": "method",
|
|
15548
15605
|
"name": "handleErrorChange",
|
|
@@ -15588,12 +15645,14 @@
|
|
|
15588
15645
|
},
|
|
15589
15646
|
{
|
|
15590
15647
|
"kind": "field",
|
|
15591
|
-
"name": "
|
|
15648
|
+
"name": "disabled",
|
|
15592
15649
|
"type": {
|
|
15593
|
-
"text": "
|
|
15650
|
+
"text": "boolean"
|
|
15594
15651
|
},
|
|
15595
|
-
"
|
|
15596
|
-
"
|
|
15652
|
+
"default": "false",
|
|
15653
|
+
"description": "Disables the input field",
|
|
15654
|
+
"attribute": "disabled",
|
|
15655
|
+
"reflects": true,
|
|
15597
15656
|
"inheritedFrom": {
|
|
15598
15657
|
"name": "InputBase",
|
|
15599
15658
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -15601,13 +15660,13 @@
|
|
|
15601
15660
|
},
|
|
15602
15661
|
{
|
|
15603
15662
|
"kind": "field",
|
|
15604
|
-
"name": "
|
|
15663
|
+
"name": "required",
|
|
15605
15664
|
"type": {
|
|
15606
15665
|
"text": "boolean"
|
|
15607
15666
|
},
|
|
15608
15667
|
"default": "false",
|
|
15609
|
-
"description": "
|
|
15610
|
-
"attribute": "
|
|
15668
|
+
"description": "Indicates that the input requires a value",
|
|
15669
|
+
"attribute": "required",
|
|
15611
15670
|
"reflects": true,
|
|
15612
15671
|
"inheritedFrom": {
|
|
15613
15672
|
"name": "InputBase",
|
|
@@ -19304,181 +19363,91 @@
|
|
|
19304
19363
|
},
|
|
19305
19364
|
{
|
|
19306
19365
|
"kind": "javascript-module",
|
|
19307
|
-
"path": "src/
|
|
19366
|
+
"path": "src/helpers/css-helpers.ts",
|
|
19308
19367
|
"declarations": [
|
|
19309
19368
|
{
|
|
19310
|
-
"kind": "
|
|
19311
|
-
"
|
|
19312
|
-
"
|
|
19313
|
-
"members": [
|
|
19314
|
-
{
|
|
19315
|
-
"kind": "field",
|
|
19316
|
-
"name": "colorVar",
|
|
19317
|
-
"type": {
|
|
19318
|
-
"text": "string"
|
|
19319
|
-
},
|
|
19320
|
-
"default": "''",
|
|
19321
|
-
"attribute": "colorVar"
|
|
19322
|
-
},
|
|
19323
|
-
{
|
|
19324
|
-
"kind": "field",
|
|
19325
|
-
"name": "lightText",
|
|
19326
|
-
"type": {
|
|
19327
|
-
"text": "boolean"
|
|
19328
|
-
},
|
|
19329
|
-
"default": "false",
|
|
19330
|
-
"attribute": "light-text"
|
|
19331
|
-
}
|
|
19332
|
-
],
|
|
19333
|
-
"attributes": [
|
|
19369
|
+
"kind": "function",
|
|
19370
|
+
"name": "getFocusStyles",
|
|
19371
|
+
"parameters": [
|
|
19334
19372
|
{
|
|
19335
|
-
"name": "
|
|
19373
|
+
"name": "selector",
|
|
19336
19374
|
"type": {
|
|
19337
19375
|
"text": "string"
|
|
19338
19376
|
},
|
|
19339
|
-
"
|
|
19340
|
-
"fieldName": "colorVar"
|
|
19377
|
+
"description": "A CSS selector targeting an interactive element."
|
|
19341
19378
|
},
|
|
19342
19379
|
{
|
|
19343
|
-
"name": "
|
|
19344
|
-
"
|
|
19345
|
-
|
|
19346
|
-
},
|
|
19347
|
-
"default": "false",
|
|
19348
|
-
"fieldName": "lightText"
|
|
19380
|
+
"name": "extraRules",
|
|
19381
|
+
"default": "css``",
|
|
19382
|
+
"description": "Optional rules to append. Useful for overrides."
|
|
19349
19383
|
}
|
|
19350
19384
|
],
|
|
19351
|
-
"
|
|
19352
|
-
"name": "LitElement",
|
|
19353
|
-
"package": "lit"
|
|
19354
|
-
},
|
|
19355
|
-
"tagName": "brz-sb-color-swatch",
|
|
19356
|
-
"customElement": true
|
|
19385
|
+
"description": "Returns a CSSResult applying focus outline styles to a given interactive\nelement. Reduces repetition throughout multiple components.\n\nTargets modern `:focus-visible` by default and includes a `:focus` fallback\nfor older browsers."
|
|
19357
19386
|
},
|
|
19358
19387
|
{
|
|
19359
|
-
"kind": "
|
|
19360
|
-
"
|
|
19361
|
-
"
|
|
19362
|
-
"
|
|
19388
|
+
"kind": "variable",
|
|
19389
|
+
"name": "invisibleButtonRules",
|
|
19390
|
+
"default": "css`\n background: none;\n border: 0;\n border-radius: var(--brz-border-radius-default);\n color: var(--brz-color-neutral-750);\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n margin: 0;\n padding: 0;\n`",
|
|
19391
|
+
"description": "CSS rules to apply invisible styles to buttons. Use within a CSS declaration\nblock."
|
|
19392
|
+
},
|
|
19393
|
+
{
|
|
19394
|
+
"kind": "function",
|
|
19395
|
+
"name": "getInvisibleButtonStyles",
|
|
19396
|
+
"parameters": [
|
|
19363
19397
|
{
|
|
19364
|
-
"
|
|
19365
|
-
"name": "stacked",
|
|
19398
|
+
"name": "selector",
|
|
19366
19399
|
"type": {
|
|
19367
|
-
"text": "
|
|
19400
|
+
"text": "string"
|
|
19368
19401
|
},
|
|
19369
|
-
"
|
|
19370
|
-
|
|
19371
|
-
}
|
|
19372
|
-
],
|
|
19373
|
-
"attributes": [
|
|
19402
|
+
"description": "A CSS selector targeting a button"
|
|
19403
|
+
},
|
|
19374
19404
|
{
|
|
19375
|
-
"name": "
|
|
19376
|
-
"
|
|
19377
|
-
|
|
19378
|
-
},
|
|
19379
|
-
"default": "false",
|
|
19380
|
-
"fieldName": "stacked"
|
|
19405
|
+
"name": "extraRules",
|
|
19406
|
+
"default": "css``",
|
|
19407
|
+
"description": "Optional rules to append. Useful for overrides."
|
|
19381
19408
|
}
|
|
19382
19409
|
],
|
|
19383
|
-
"
|
|
19384
|
-
"name": "LitElement",
|
|
19385
|
-
"package": "lit"
|
|
19386
|
-
},
|
|
19387
|
-
"tagName": "brz-sb-color-swatch-group",
|
|
19388
|
-
"customElement": true
|
|
19410
|
+
"description": "Returns a CSSResult applying invisible styles to a button matching the given\nselector. Invisible buttons are a common pattern for icon-only close buttons.\n\nSince this applies to buttons, default focus styles are also automatically\nincluded for the selector. If you don't need them, or need to customise them,\nuse `invisibleButtonStyles` and `getFocusStyles()` separately instead."
|
|
19389
19411
|
}
|
|
19390
19412
|
],
|
|
19391
19413
|
"exports": [
|
|
19392
19414
|
{
|
|
19393
19415
|
"kind": "js",
|
|
19394
|
-
"name": "
|
|
19416
|
+
"name": "getFocusStyles",
|
|
19395
19417
|
"declaration": {
|
|
19396
|
-
"name": "
|
|
19397
|
-
"module": "src/
|
|
19418
|
+
"name": "getFocusStyles",
|
|
19419
|
+
"module": "src/helpers/css-helpers.ts"
|
|
19398
19420
|
}
|
|
19399
19421
|
},
|
|
19400
19422
|
{
|
|
19401
|
-
"kind": "
|
|
19402
|
-
"name": "
|
|
19423
|
+
"kind": "js",
|
|
19424
|
+
"name": "invisibleButtonRules",
|
|
19403
19425
|
"declaration": {
|
|
19404
|
-
"name": "
|
|
19405
|
-
"module": "src/
|
|
19426
|
+
"name": "invisibleButtonRules",
|
|
19427
|
+
"module": "src/helpers/css-helpers.ts"
|
|
19406
19428
|
}
|
|
19407
19429
|
},
|
|
19408
19430
|
{
|
|
19409
19431
|
"kind": "js",
|
|
19410
|
-
"name": "
|
|
19432
|
+
"name": "getInvisibleButtonStyles",
|
|
19411
19433
|
"declaration": {
|
|
19412
|
-
"name": "
|
|
19413
|
-
"module": "src/
|
|
19414
|
-
}
|
|
19415
|
-
},
|
|
19416
|
-
{
|
|
19417
|
-
"kind": "custom-element-definition",
|
|
19418
|
-
"name": "brz-sb-color-swatch-group",
|
|
19419
|
-
"declaration": {
|
|
19420
|
-
"name": "ColorSwatchGroup",
|
|
19421
|
-
"module": "src/storybook/colors.stories.ts"
|
|
19434
|
+
"name": "getInvisibleButtonStyles",
|
|
19435
|
+
"module": "src/helpers/css-helpers.ts"
|
|
19422
19436
|
}
|
|
19423
19437
|
}
|
|
19424
19438
|
]
|
|
19425
19439
|
},
|
|
19426
19440
|
{
|
|
19427
19441
|
"kind": "javascript-module",
|
|
19428
|
-
"path": "src/
|
|
19429
|
-
"declarations": [
|
|
19430
|
-
{
|
|
19431
|
-
"kind": "class",
|
|
19432
|
-
"description": "",
|
|
19433
|
-
"name": "FadeInOutStory",
|
|
19434
|
-
"members": [
|
|
19435
|
-
{
|
|
19436
|
-
"kind": "field",
|
|
19437
|
-
"name": "shown",
|
|
19438
|
-
"type": {
|
|
19439
|
-
"text": "boolean"
|
|
19440
|
-
},
|
|
19441
|
-
"default": "false",
|
|
19442
|
-
"attribute": "shown"
|
|
19443
|
-
},
|
|
19444
|
-
{
|
|
19445
|
-
"kind": "method",
|
|
19446
|
-
"name": "handleToggle"
|
|
19447
|
-
}
|
|
19448
|
-
],
|
|
19449
|
-
"attributes": [
|
|
19450
|
-
{
|
|
19451
|
-
"name": "shown",
|
|
19452
|
-
"type": {
|
|
19453
|
-
"text": "boolean"
|
|
19454
|
-
},
|
|
19455
|
-
"default": "false",
|
|
19456
|
-
"fieldName": "shown"
|
|
19457
|
-
}
|
|
19458
|
-
],
|
|
19459
|
-
"superclass": {
|
|
19460
|
-
"name": "LitElement",
|
|
19461
|
-
"package": "lit"
|
|
19462
|
-
},
|
|
19463
|
-
"tagName": "brz-sb-fade-in-out",
|
|
19464
|
-
"customElement": true
|
|
19465
|
-
}
|
|
19466
|
-
],
|
|
19442
|
+
"path": "src/helpers/index.ts",
|
|
19443
|
+
"declarations": [],
|
|
19467
19444
|
"exports": [
|
|
19468
19445
|
{
|
|
19469
19446
|
"kind": "js",
|
|
19470
|
-
"name": "
|
|
19471
|
-
"declaration": {
|
|
19472
|
-
"name": "FadeInOutStory",
|
|
19473
|
-
"module": "src/storybook/fade-in-out.stories.ts"
|
|
19474
|
-
}
|
|
19475
|
-
},
|
|
19476
|
-
{
|
|
19477
|
-
"kind": "custom-element-definition",
|
|
19478
|
-
"name": "brz-sb-fade-in-out",
|
|
19447
|
+
"name": "*",
|
|
19479
19448
|
"declaration": {
|
|
19480
|
-
"name": "
|
|
19481
|
-
"
|
|
19449
|
+
"name": "*",
|
|
19450
|
+
"package": "./css-helpers"
|
|
19482
19451
|
}
|
|
19483
19452
|
}
|
|
19484
19453
|
]
|
|
@@ -19620,6 +19589,187 @@
|
|
|
19620
19589
|
}
|
|
19621
19590
|
]
|
|
19622
19591
|
},
|
|
19592
|
+
{
|
|
19593
|
+
"kind": "javascript-module",
|
|
19594
|
+
"path": "src/storybook/colors.stories.ts",
|
|
19595
|
+
"declarations": [
|
|
19596
|
+
{
|
|
19597
|
+
"kind": "class",
|
|
19598
|
+
"description": "Story component to render a colour swatch.\nWill extract the hex code from a supplied color var and use it as the background.",
|
|
19599
|
+
"name": "ColorSwatch",
|
|
19600
|
+
"members": [
|
|
19601
|
+
{
|
|
19602
|
+
"kind": "field",
|
|
19603
|
+
"name": "colorVar",
|
|
19604
|
+
"type": {
|
|
19605
|
+
"text": "string"
|
|
19606
|
+
},
|
|
19607
|
+
"default": "''",
|
|
19608
|
+
"attribute": "colorVar"
|
|
19609
|
+
},
|
|
19610
|
+
{
|
|
19611
|
+
"kind": "field",
|
|
19612
|
+
"name": "lightText",
|
|
19613
|
+
"type": {
|
|
19614
|
+
"text": "boolean"
|
|
19615
|
+
},
|
|
19616
|
+
"default": "false",
|
|
19617
|
+
"attribute": "light-text"
|
|
19618
|
+
}
|
|
19619
|
+
],
|
|
19620
|
+
"attributes": [
|
|
19621
|
+
{
|
|
19622
|
+
"name": "colorVar",
|
|
19623
|
+
"type": {
|
|
19624
|
+
"text": "string"
|
|
19625
|
+
},
|
|
19626
|
+
"default": "''",
|
|
19627
|
+
"fieldName": "colorVar"
|
|
19628
|
+
},
|
|
19629
|
+
{
|
|
19630
|
+
"name": "light-text",
|
|
19631
|
+
"type": {
|
|
19632
|
+
"text": "boolean"
|
|
19633
|
+
},
|
|
19634
|
+
"default": "false",
|
|
19635
|
+
"fieldName": "lightText"
|
|
19636
|
+
}
|
|
19637
|
+
],
|
|
19638
|
+
"superclass": {
|
|
19639
|
+
"name": "LitElement",
|
|
19640
|
+
"package": "lit"
|
|
19641
|
+
},
|
|
19642
|
+
"tagName": "brz-sb-color-swatch",
|
|
19643
|
+
"customElement": true
|
|
19644
|
+
},
|
|
19645
|
+
{
|
|
19646
|
+
"kind": "class",
|
|
19647
|
+
"description": "Story component for laying out a group of swatches",
|
|
19648
|
+
"name": "ColorSwatchGroup",
|
|
19649
|
+
"members": [
|
|
19650
|
+
{
|
|
19651
|
+
"kind": "field",
|
|
19652
|
+
"name": "stacked",
|
|
19653
|
+
"type": {
|
|
19654
|
+
"text": "boolean"
|
|
19655
|
+
},
|
|
19656
|
+
"default": "false",
|
|
19657
|
+
"attribute": "stacked"
|
|
19658
|
+
}
|
|
19659
|
+
],
|
|
19660
|
+
"attributes": [
|
|
19661
|
+
{
|
|
19662
|
+
"name": "stacked",
|
|
19663
|
+
"type": {
|
|
19664
|
+
"text": "boolean"
|
|
19665
|
+
},
|
|
19666
|
+
"default": "false",
|
|
19667
|
+
"fieldName": "stacked"
|
|
19668
|
+
}
|
|
19669
|
+
],
|
|
19670
|
+
"superclass": {
|
|
19671
|
+
"name": "LitElement",
|
|
19672
|
+
"package": "lit"
|
|
19673
|
+
},
|
|
19674
|
+
"tagName": "brz-sb-color-swatch-group",
|
|
19675
|
+
"customElement": true
|
|
19676
|
+
}
|
|
19677
|
+
],
|
|
19678
|
+
"exports": [
|
|
19679
|
+
{
|
|
19680
|
+
"kind": "js",
|
|
19681
|
+
"name": "ColorSwatch",
|
|
19682
|
+
"declaration": {
|
|
19683
|
+
"name": "ColorSwatch",
|
|
19684
|
+
"module": "src/storybook/colors.stories.ts"
|
|
19685
|
+
}
|
|
19686
|
+
},
|
|
19687
|
+
{
|
|
19688
|
+
"kind": "custom-element-definition",
|
|
19689
|
+
"name": "brz-sb-color-swatch",
|
|
19690
|
+
"declaration": {
|
|
19691
|
+
"name": "ColorSwatch",
|
|
19692
|
+
"module": "src/storybook/colors.stories.ts"
|
|
19693
|
+
}
|
|
19694
|
+
},
|
|
19695
|
+
{
|
|
19696
|
+
"kind": "js",
|
|
19697
|
+
"name": "ColorSwatchGroup",
|
|
19698
|
+
"declaration": {
|
|
19699
|
+
"name": "ColorSwatchGroup",
|
|
19700
|
+
"module": "src/storybook/colors.stories.ts"
|
|
19701
|
+
}
|
|
19702
|
+
},
|
|
19703
|
+
{
|
|
19704
|
+
"kind": "custom-element-definition",
|
|
19705
|
+
"name": "brz-sb-color-swatch-group",
|
|
19706
|
+
"declaration": {
|
|
19707
|
+
"name": "ColorSwatchGroup",
|
|
19708
|
+
"module": "src/storybook/colors.stories.ts"
|
|
19709
|
+
}
|
|
19710
|
+
}
|
|
19711
|
+
]
|
|
19712
|
+
},
|
|
19713
|
+
{
|
|
19714
|
+
"kind": "javascript-module",
|
|
19715
|
+
"path": "src/storybook/fade-in-out.stories.ts",
|
|
19716
|
+
"declarations": [
|
|
19717
|
+
{
|
|
19718
|
+
"kind": "class",
|
|
19719
|
+
"description": "",
|
|
19720
|
+
"name": "FadeInOutStory",
|
|
19721
|
+
"members": [
|
|
19722
|
+
{
|
|
19723
|
+
"kind": "field",
|
|
19724
|
+
"name": "shown",
|
|
19725
|
+
"type": {
|
|
19726
|
+
"text": "boolean"
|
|
19727
|
+
},
|
|
19728
|
+
"default": "false",
|
|
19729
|
+
"attribute": "shown"
|
|
19730
|
+
},
|
|
19731
|
+
{
|
|
19732
|
+
"kind": "method",
|
|
19733
|
+
"name": "handleToggle"
|
|
19734
|
+
}
|
|
19735
|
+
],
|
|
19736
|
+
"attributes": [
|
|
19737
|
+
{
|
|
19738
|
+
"name": "shown",
|
|
19739
|
+
"type": {
|
|
19740
|
+
"text": "boolean"
|
|
19741
|
+
},
|
|
19742
|
+
"default": "false",
|
|
19743
|
+
"fieldName": "shown"
|
|
19744
|
+
}
|
|
19745
|
+
],
|
|
19746
|
+
"superclass": {
|
|
19747
|
+
"name": "LitElement",
|
|
19748
|
+
"package": "lit"
|
|
19749
|
+
},
|
|
19750
|
+
"tagName": "brz-sb-fade-in-out",
|
|
19751
|
+
"customElement": true
|
|
19752
|
+
}
|
|
19753
|
+
],
|
|
19754
|
+
"exports": [
|
|
19755
|
+
{
|
|
19756
|
+
"kind": "js",
|
|
19757
|
+
"name": "FadeInOutStory",
|
|
19758
|
+
"declaration": {
|
|
19759
|
+
"name": "FadeInOutStory",
|
|
19760
|
+
"module": "src/storybook/fade-in-out.stories.ts"
|
|
19761
|
+
}
|
|
19762
|
+
},
|
|
19763
|
+
{
|
|
19764
|
+
"kind": "custom-element-definition",
|
|
19765
|
+
"name": "brz-sb-fade-in-out",
|
|
19766
|
+
"declaration": {
|
|
19767
|
+
"name": "FadeInOutStory",
|
|
19768
|
+
"module": "src/storybook/fade-in-out.stories.ts"
|
|
19769
|
+
}
|
|
19770
|
+
}
|
|
19771
|
+
]
|
|
19772
|
+
},
|
|
19623
19773
|
{
|
|
19624
19774
|
"kind": "javascript-module",
|
|
19625
19775
|
"path": "src/styles/borders.ts",
|
|
@@ -20641,22 +20791,24 @@
|
|
|
20641
20791
|
"members": [
|
|
20642
20792
|
{
|
|
20643
20793
|
"kind": "field",
|
|
20644
|
-
"name": "
|
|
20794
|
+
"name": "disabled",
|
|
20645
20795
|
"type": {
|
|
20646
|
-
"text": "
|
|
20796
|
+
"text": "boolean"
|
|
20647
20797
|
},
|
|
20648
|
-
"
|
|
20649
|
-
"
|
|
20798
|
+
"default": "false",
|
|
20799
|
+
"description": "Disables the input field",
|
|
20800
|
+
"attribute": "disabled",
|
|
20801
|
+
"reflects": true
|
|
20650
20802
|
},
|
|
20651
20803
|
{
|
|
20652
20804
|
"kind": "field",
|
|
20653
|
-
"name": "
|
|
20805
|
+
"name": "required",
|
|
20654
20806
|
"type": {
|
|
20655
20807
|
"text": "boolean"
|
|
20656
20808
|
},
|
|
20657
20809
|
"default": "false",
|
|
20658
|
-
"description": "
|
|
20659
|
-
"attribute": "
|
|
20810
|
+
"description": "Indicates that the input requires a value",
|
|
20811
|
+
"attribute": "required",
|
|
20660
20812
|
"reflects": true
|
|
20661
20813
|
},
|
|
20662
20814
|
{
|
|
@@ -20746,6 +20898,15 @@
|
|
|
20746
20898
|
"description": "Disables the input field",
|
|
20747
20899
|
"fieldName": "disabled"
|
|
20748
20900
|
},
|
|
20901
|
+
{
|
|
20902
|
+
"name": "required",
|
|
20903
|
+
"type": {
|
|
20904
|
+
"text": "boolean"
|
|
20905
|
+
},
|
|
20906
|
+
"default": "false",
|
|
20907
|
+
"description": "Indicates that the input requires a value",
|
|
20908
|
+
"fieldName": "required"
|
|
20909
|
+
},
|
|
20749
20910
|
{
|
|
20750
20911
|
"name": "invalid",
|
|
20751
20912
|
"type": {
|
|
@@ -20912,12 +21073,14 @@
|
|
|
20912
21073
|
},
|
|
20913
21074
|
{
|
|
20914
21075
|
"kind": "field",
|
|
20915
|
-
"name": "
|
|
21076
|
+
"name": "required",
|
|
20916
21077
|
"type": {
|
|
20917
|
-
"text": "
|
|
21078
|
+
"text": "boolean"
|
|
20918
21079
|
},
|
|
20919
|
-
"
|
|
20920
|
-
"
|
|
21080
|
+
"default": "false",
|
|
21081
|
+
"description": "Indicates that the input requires a value",
|
|
21082
|
+
"attribute": "required",
|
|
21083
|
+
"reflects": true,
|
|
20921
21084
|
"inheritedFrom": {
|
|
20922
21085
|
"name": "InputBase",
|
|
20923
21086
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -21043,6 +21206,19 @@
|
|
|
21043
21206
|
"description": "Puts the checkbox into indeterminate state",
|
|
21044
21207
|
"fieldName": "indeterminate"
|
|
21045
21208
|
},
|
|
21209
|
+
{
|
|
21210
|
+
"name": "required",
|
|
21211
|
+
"type": {
|
|
21212
|
+
"text": "boolean"
|
|
21213
|
+
},
|
|
21214
|
+
"default": "false",
|
|
21215
|
+
"description": "Indicates that the input requires a value",
|
|
21216
|
+
"fieldName": "required",
|
|
21217
|
+
"inheritedFrom": {
|
|
21218
|
+
"name": "InputBase",
|
|
21219
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
21220
|
+
}
|
|
21221
|
+
},
|
|
21046
21222
|
{
|
|
21047
21223
|
"name": "invalid",
|
|
21048
21224
|
"type": {
|
|
@@ -21286,13 +21462,13 @@
|
|
|
21286
21462
|
},
|
|
21287
21463
|
{
|
|
21288
21464
|
"kind": "field",
|
|
21289
|
-
"name": "
|
|
21465
|
+
"name": "labelPosition",
|
|
21290
21466
|
"type": {
|
|
21291
|
-
"text": "
|
|
21467
|
+
"text": "LabelPosition"
|
|
21292
21468
|
},
|
|
21293
|
-
"default": "
|
|
21294
|
-
"description": "
|
|
21295
|
-
"attribute": "
|
|
21469
|
+
"default": "'top'",
|
|
21470
|
+
"description": "The position of the supplied label",
|
|
21471
|
+
"attribute": "label-position",
|
|
21296
21472
|
"reflects": true,
|
|
21297
21473
|
"inheritedFrom": {
|
|
21298
21474
|
"name": "LabeledInput",
|
|
@@ -21301,13 +21477,13 @@
|
|
|
21301
21477
|
},
|
|
21302
21478
|
{
|
|
21303
21479
|
"kind": "field",
|
|
21304
|
-
"name": "
|
|
21480
|
+
"name": "optional",
|
|
21305
21481
|
"type": {
|
|
21306
|
-
"text": "
|
|
21482
|
+
"text": "boolean"
|
|
21307
21483
|
},
|
|
21308
|
-
"default": "
|
|
21309
|
-
"description": "
|
|
21310
|
-
"attribute": "
|
|
21484
|
+
"default": "false",
|
|
21485
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
21486
|
+
"attribute": "optional",
|
|
21311
21487
|
"reflects": true,
|
|
21312
21488
|
"inheritedFrom": {
|
|
21313
21489
|
"name": "LabeledInput",
|
|
@@ -21337,12 +21513,14 @@
|
|
|
21337
21513
|
},
|
|
21338
21514
|
{
|
|
21339
21515
|
"kind": "field",
|
|
21340
|
-
"name": "
|
|
21516
|
+
"name": "disabled",
|
|
21341
21517
|
"type": {
|
|
21342
|
-
"text": "
|
|
21518
|
+
"text": "boolean"
|
|
21343
21519
|
},
|
|
21344
|
-
"
|
|
21345
|
-
"
|
|
21520
|
+
"default": "false",
|
|
21521
|
+
"description": "Disables the input field",
|
|
21522
|
+
"attribute": "disabled",
|
|
21523
|
+
"reflects": true,
|
|
21346
21524
|
"inheritedFrom": {
|
|
21347
21525
|
"name": "InputBase",
|
|
21348
21526
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -21350,13 +21528,13 @@
|
|
|
21350
21528
|
},
|
|
21351
21529
|
{
|
|
21352
21530
|
"kind": "field",
|
|
21353
|
-
"name": "
|
|
21531
|
+
"name": "required",
|
|
21354
21532
|
"type": {
|
|
21355
21533
|
"text": "boolean"
|
|
21356
21534
|
},
|
|
21357
21535
|
"default": "false",
|
|
21358
|
-
"description": "
|
|
21359
|
-
"attribute": "
|
|
21536
|
+
"description": "Indicates that the input requires a value",
|
|
21537
|
+
"attribute": "required",
|
|
21360
21538
|
"reflects": true,
|
|
21361
21539
|
"inheritedFrom": {
|
|
21362
21540
|
"name": "InputBase",
|
|
@@ -21554,26 +21732,26 @@
|
|
|
21554
21732
|
}
|
|
21555
21733
|
},
|
|
21556
21734
|
{
|
|
21557
|
-
"name": "
|
|
21735
|
+
"name": "label-position",
|
|
21558
21736
|
"type": {
|
|
21559
|
-
"text": "
|
|
21737
|
+
"text": "LabelPosition"
|
|
21560
21738
|
},
|
|
21561
|
-
"default": "
|
|
21562
|
-
"description": "
|
|
21563
|
-
"fieldName": "
|
|
21739
|
+
"default": "'top'",
|
|
21740
|
+
"description": "The position of the supplied label",
|
|
21741
|
+
"fieldName": "labelPosition",
|
|
21564
21742
|
"inheritedFrom": {
|
|
21565
21743
|
"name": "LabeledInput",
|
|
21566
21744
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
21567
21745
|
}
|
|
21568
21746
|
},
|
|
21569
21747
|
{
|
|
21570
|
-
"name": "
|
|
21748
|
+
"name": "optional",
|
|
21571
21749
|
"type": {
|
|
21572
|
-
"text": "
|
|
21750
|
+
"text": "boolean"
|
|
21573
21751
|
},
|
|
21574
|
-
"default": "
|
|
21575
|
-
"description": "
|
|
21576
|
-
"fieldName": "
|
|
21752
|
+
"default": "false",
|
|
21753
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
21754
|
+
"fieldName": "optional",
|
|
21577
21755
|
"inheritedFrom": {
|
|
21578
21756
|
"name": "LabeledInput",
|
|
21579
21757
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -21592,6 +21770,19 @@
|
|
|
21592
21770
|
"module": "src/components/form-elements/input-base.ts"
|
|
21593
21771
|
}
|
|
21594
21772
|
},
|
|
21773
|
+
{
|
|
21774
|
+
"name": "required",
|
|
21775
|
+
"type": {
|
|
21776
|
+
"text": "boolean"
|
|
21777
|
+
},
|
|
21778
|
+
"default": "false",
|
|
21779
|
+
"description": "Indicates that the input requires a value",
|
|
21780
|
+
"fieldName": "required",
|
|
21781
|
+
"inheritedFrom": {
|
|
21782
|
+
"name": "InputBase",
|
|
21783
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
21784
|
+
}
|
|
21785
|
+
},
|
|
21595
21786
|
{
|
|
21596
21787
|
"name": "invalid",
|
|
21597
21788
|
"type": {
|
|
@@ -22336,13 +22527,13 @@
|
|
|
22336
22527
|
},
|
|
22337
22528
|
{
|
|
22338
22529
|
"kind": "field",
|
|
22339
|
-
"name": "
|
|
22530
|
+
"name": "labelPosition",
|
|
22340
22531
|
"type": {
|
|
22341
|
-
"text": "
|
|
22532
|
+
"text": "LabelPosition"
|
|
22342
22533
|
},
|
|
22343
|
-
"default": "
|
|
22344
|
-
"description": "
|
|
22345
|
-
"attribute": "
|
|
22534
|
+
"default": "'top'",
|
|
22535
|
+
"description": "The position of the supplied label",
|
|
22536
|
+
"attribute": "label-position",
|
|
22346
22537
|
"reflects": true,
|
|
22347
22538
|
"inheritedFrom": {
|
|
22348
22539
|
"name": "LabeledInput",
|
|
@@ -22351,13 +22542,13 @@
|
|
|
22351
22542
|
},
|
|
22352
22543
|
{
|
|
22353
22544
|
"kind": "field",
|
|
22354
|
-
"name": "
|
|
22545
|
+
"name": "optional",
|
|
22355
22546
|
"type": {
|
|
22356
|
-
"text": "
|
|
22547
|
+
"text": "boolean"
|
|
22357
22548
|
},
|
|
22358
|
-
"default": "
|
|
22359
|
-
"description": "
|
|
22360
|
-
"attribute": "
|
|
22549
|
+
"default": "false",
|
|
22550
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
22551
|
+
"attribute": "optional",
|
|
22361
22552
|
"reflects": true,
|
|
22362
22553
|
"inheritedFrom": {
|
|
22363
22554
|
"name": "LabeledInput",
|
|
@@ -22387,12 +22578,14 @@
|
|
|
22387
22578
|
},
|
|
22388
22579
|
{
|
|
22389
22580
|
"kind": "field",
|
|
22390
|
-
"name": "
|
|
22581
|
+
"name": "disabled",
|
|
22391
22582
|
"type": {
|
|
22392
|
-
"text": "
|
|
22583
|
+
"text": "boolean"
|
|
22393
22584
|
},
|
|
22394
|
-
"
|
|
22395
|
-
"
|
|
22585
|
+
"default": "false",
|
|
22586
|
+
"description": "Disables the input field",
|
|
22587
|
+
"attribute": "disabled",
|
|
22588
|
+
"reflects": true,
|
|
22396
22589
|
"inheritedFrom": {
|
|
22397
22590
|
"name": "InputBase",
|
|
22398
22591
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -22400,13 +22593,13 @@
|
|
|
22400
22593
|
},
|
|
22401
22594
|
{
|
|
22402
22595
|
"kind": "field",
|
|
22403
|
-
"name": "
|
|
22596
|
+
"name": "required",
|
|
22404
22597
|
"type": {
|
|
22405
22598
|
"text": "boolean"
|
|
22406
22599
|
},
|
|
22407
22600
|
"default": "false",
|
|
22408
|
-
"description": "
|
|
22409
|
-
"attribute": "
|
|
22601
|
+
"description": "Indicates that the input requires a value",
|
|
22602
|
+
"attribute": "required",
|
|
22410
22603
|
"reflects": true,
|
|
22411
22604
|
"inheritedFrom": {
|
|
22412
22605
|
"name": "InputBase",
|
|
@@ -22663,26 +22856,26 @@
|
|
|
22663
22856
|
}
|
|
22664
22857
|
},
|
|
22665
22858
|
{
|
|
22666
|
-
"name": "
|
|
22859
|
+
"name": "label-position",
|
|
22667
22860
|
"type": {
|
|
22668
|
-
"text": "
|
|
22861
|
+
"text": "LabelPosition"
|
|
22669
22862
|
},
|
|
22670
|
-
"default": "
|
|
22671
|
-
"description": "
|
|
22672
|
-
"fieldName": "
|
|
22863
|
+
"default": "'top'",
|
|
22864
|
+
"description": "The position of the supplied label",
|
|
22865
|
+
"fieldName": "labelPosition",
|
|
22673
22866
|
"inheritedFrom": {
|
|
22674
22867
|
"name": "LabeledInput",
|
|
22675
22868
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
22676
22869
|
}
|
|
22677
22870
|
},
|
|
22678
22871
|
{
|
|
22679
|
-
"name": "
|
|
22872
|
+
"name": "optional",
|
|
22680
22873
|
"type": {
|
|
22681
|
-
"text": "
|
|
22874
|
+
"text": "boolean"
|
|
22682
22875
|
},
|
|
22683
|
-
"default": "
|
|
22684
|
-
"description": "
|
|
22685
|
-
"fieldName": "
|
|
22876
|
+
"default": "false",
|
|
22877
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
22878
|
+
"fieldName": "optional",
|
|
22686
22879
|
"inheritedFrom": {
|
|
22687
22880
|
"name": "LabeledInput",
|
|
22688
22881
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -22701,6 +22894,19 @@
|
|
|
22701
22894
|
"module": "src/components/form-elements/input-base.ts"
|
|
22702
22895
|
}
|
|
22703
22896
|
},
|
|
22897
|
+
{
|
|
22898
|
+
"name": "required",
|
|
22899
|
+
"type": {
|
|
22900
|
+
"text": "boolean"
|
|
22901
|
+
},
|
|
22902
|
+
"default": "false",
|
|
22903
|
+
"description": "Indicates that the input requires a value",
|
|
22904
|
+
"fieldName": "required",
|
|
22905
|
+
"inheritedFrom": {
|
|
22906
|
+
"name": "InputBase",
|
|
22907
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
22908
|
+
}
|
|
22909
|
+
},
|
|
22704
22910
|
{
|
|
22705
22911
|
"name": "invalid",
|
|
22706
22912
|
"type": {
|
|
@@ -22968,21 +23174,6 @@
|
|
|
22968
23174
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
22969
23175
|
}
|
|
22970
23176
|
},
|
|
22971
|
-
{
|
|
22972
|
-
"kind": "field",
|
|
22973
|
-
"name": "required",
|
|
22974
|
-
"type": {
|
|
22975
|
-
"text": "boolean"
|
|
22976
|
-
},
|
|
22977
|
-
"default": "false",
|
|
22978
|
-
"description": "Makes the field go into a required state",
|
|
22979
|
-
"attribute": "required",
|
|
22980
|
-
"reflects": true,
|
|
22981
|
-
"inheritedFrom": {
|
|
22982
|
-
"name": "LabeledInput",
|
|
22983
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
22984
|
-
}
|
|
22985
|
-
},
|
|
22986
23177
|
{
|
|
22987
23178
|
"kind": "field",
|
|
22988
23179
|
"name": "labelPosition",
|
|
@@ -23013,6 +23204,21 @@
|
|
|
23013
23204
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
23014
23205
|
}
|
|
23015
23206
|
},
|
|
23207
|
+
{
|
|
23208
|
+
"kind": "field",
|
|
23209
|
+
"name": "optional",
|
|
23210
|
+
"type": {
|
|
23211
|
+
"text": "boolean"
|
|
23212
|
+
},
|
|
23213
|
+
"default": "false",
|
|
23214
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
23215
|
+
"attribute": "optional",
|
|
23216
|
+
"reflects": true,
|
|
23217
|
+
"inheritedFrom": {
|
|
23218
|
+
"name": "LabeledInput",
|
|
23219
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
23220
|
+
}
|
|
23221
|
+
},
|
|
23016
23222
|
{
|
|
23017
23223
|
"kind": "method",
|
|
23018
23224
|
"name": "handleErrorChange",
|
|
@@ -23036,12 +23242,14 @@
|
|
|
23036
23242
|
},
|
|
23037
23243
|
{
|
|
23038
23244
|
"kind": "field",
|
|
23039
|
-
"name": "
|
|
23245
|
+
"name": "disabled",
|
|
23040
23246
|
"type": {
|
|
23041
|
-
"text": "
|
|
23247
|
+
"text": "boolean"
|
|
23042
23248
|
},
|
|
23043
|
-
"
|
|
23044
|
-
"
|
|
23249
|
+
"default": "false",
|
|
23250
|
+
"description": "Disables the input field",
|
|
23251
|
+
"attribute": "disabled",
|
|
23252
|
+
"reflects": true,
|
|
23045
23253
|
"inheritedFrom": {
|
|
23046
23254
|
"name": "InputBase",
|
|
23047
23255
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -23049,13 +23257,13 @@
|
|
|
23049
23257
|
},
|
|
23050
23258
|
{
|
|
23051
23259
|
"kind": "field",
|
|
23052
|
-
"name": "
|
|
23260
|
+
"name": "required",
|
|
23053
23261
|
"type": {
|
|
23054
23262
|
"text": "boolean"
|
|
23055
23263
|
},
|
|
23056
23264
|
"default": "false",
|
|
23057
|
-
"description": "
|
|
23058
|
-
"attribute": "
|
|
23265
|
+
"description": "Indicates that the input requires a value",
|
|
23266
|
+
"attribute": "required",
|
|
23059
23267
|
"reflects": true,
|
|
23060
23268
|
"inheritedFrom": {
|
|
23061
23269
|
"name": "InputBase",
|
|
@@ -23246,19 +23454,6 @@
|
|
|
23246
23454
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
23247
23455
|
}
|
|
23248
23456
|
},
|
|
23249
|
-
{
|
|
23250
|
-
"name": "required",
|
|
23251
|
-
"type": {
|
|
23252
|
-
"text": "boolean"
|
|
23253
|
-
},
|
|
23254
|
-
"default": "false",
|
|
23255
|
-
"description": "Makes the field go into a required state",
|
|
23256
|
-
"fieldName": "required",
|
|
23257
|
-
"inheritedFrom": {
|
|
23258
|
-
"name": "LabeledInput",
|
|
23259
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
23260
|
-
}
|
|
23261
|
-
},
|
|
23262
23457
|
{
|
|
23263
23458
|
"name": "label-position",
|
|
23264
23459
|
"type": {
|
|
@@ -23285,6 +23480,19 @@
|
|
|
23285
23480
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
23286
23481
|
}
|
|
23287
23482
|
},
|
|
23483
|
+
{
|
|
23484
|
+
"name": "optional",
|
|
23485
|
+
"type": {
|
|
23486
|
+
"text": "boolean"
|
|
23487
|
+
},
|
|
23488
|
+
"default": "false",
|
|
23489
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
23490
|
+
"fieldName": "optional",
|
|
23491
|
+
"inheritedFrom": {
|
|
23492
|
+
"name": "LabeledInput",
|
|
23493
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
23494
|
+
}
|
|
23495
|
+
},
|
|
23288
23496
|
{
|
|
23289
23497
|
"name": "disabled",
|
|
23290
23498
|
"type": {
|
|
@@ -23298,6 +23506,19 @@
|
|
|
23298
23506
|
"module": "src/components/form-elements/input-base.ts"
|
|
23299
23507
|
}
|
|
23300
23508
|
},
|
|
23509
|
+
{
|
|
23510
|
+
"name": "required",
|
|
23511
|
+
"type": {
|
|
23512
|
+
"text": "boolean"
|
|
23513
|
+
},
|
|
23514
|
+
"default": "false",
|
|
23515
|
+
"description": "Indicates that the input requires a value",
|
|
23516
|
+
"fieldName": "required",
|
|
23517
|
+
"inheritedFrom": {
|
|
23518
|
+
"name": "InputBase",
|
|
23519
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
23520
|
+
}
|
|
23521
|
+
},
|
|
23301
23522
|
{
|
|
23302
23523
|
"name": "invalid",
|
|
23303
23524
|
"type": {
|
|
@@ -23495,13 +23716,13 @@
|
|
|
23495
23716
|
},
|
|
23496
23717
|
{
|
|
23497
23718
|
"kind": "field",
|
|
23498
|
-
"name": "
|
|
23719
|
+
"name": "labelPosition",
|
|
23499
23720
|
"type": {
|
|
23500
|
-
"text": "
|
|
23721
|
+
"text": "LabelPosition"
|
|
23501
23722
|
},
|
|
23502
|
-
"default": "
|
|
23503
|
-
"description": "
|
|
23504
|
-
"attribute": "
|
|
23723
|
+
"default": "'top'",
|
|
23724
|
+
"description": "The position of the supplied label",
|
|
23725
|
+
"attribute": "label-position",
|
|
23505
23726
|
"reflects": true,
|
|
23506
23727
|
"inheritedFrom": {
|
|
23507
23728
|
"name": "LabeledInput",
|
|
@@ -23510,13 +23731,13 @@
|
|
|
23510
23731
|
},
|
|
23511
23732
|
{
|
|
23512
23733
|
"kind": "field",
|
|
23513
|
-
"name": "
|
|
23734
|
+
"name": "optional",
|
|
23514
23735
|
"type": {
|
|
23515
|
-
"text": "
|
|
23736
|
+
"text": "boolean"
|
|
23516
23737
|
},
|
|
23517
|
-
"default": "
|
|
23518
|
-
"description": "
|
|
23519
|
-
"attribute": "
|
|
23738
|
+
"default": "false",
|
|
23739
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
23740
|
+
"attribute": "optional",
|
|
23520
23741
|
"reflects": true,
|
|
23521
23742
|
"inheritedFrom": {
|
|
23522
23743
|
"name": "LabeledInput",
|
|
@@ -23555,12 +23776,14 @@
|
|
|
23555
23776
|
},
|
|
23556
23777
|
{
|
|
23557
23778
|
"kind": "field",
|
|
23558
|
-
"name": "
|
|
23779
|
+
"name": "disabled",
|
|
23559
23780
|
"type": {
|
|
23560
|
-
"text": "
|
|
23781
|
+
"text": "boolean"
|
|
23561
23782
|
},
|
|
23562
|
-
"
|
|
23563
|
-
"
|
|
23783
|
+
"default": "false",
|
|
23784
|
+
"description": "Disables the input field",
|
|
23785
|
+
"attribute": "disabled",
|
|
23786
|
+
"reflects": true,
|
|
23564
23787
|
"inheritedFrom": {
|
|
23565
23788
|
"name": "InputBase",
|
|
23566
23789
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -23568,13 +23791,13 @@
|
|
|
23568
23791
|
},
|
|
23569
23792
|
{
|
|
23570
23793
|
"kind": "field",
|
|
23571
|
-
"name": "
|
|
23794
|
+
"name": "required",
|
|
23572
23795
|
"type": {
|
|
23573
23796
|
"text": "boolean"
|
|
23574
23797
|
},
|
|
23575
23798
|
"default": "false",
|
|
23576
|
-
"description": "
|
|
23577
|
-
"attribute": "
|
|
23799
|
+
"description": "Indicates that the input requires a value",
|
|
23800
|
+
"attribute": "required",
|
|
23578
23801
|
"reflects": true,
|
|
23579
23802
|
"inheritedFrom": {
|
|
23580
23803
|
"name": "InputBase",
|
|
@@ -23705,26 +23928,26 @@
|
|
|
23705
23928
|
}
|
|
23706
23929
|
},
|
|
23707
23930
|
{
|
|
23708
|
-
"name": "
|
|
23931
|
+
"name": "label-position",
|
|
23709
23932
|
"type": {
|
|
23710
|
-
"text": "
|
|
23933
|
+
"text": "LabelPosition"
|
|
23711
23934
|
},
|
|
23712
|
-
"default": "
|
|
23713
|
-
"description": "
|
|
23714
|
-
"fieldName": "
|
|
23935
|
+
"default": "'top'",
|
|
23936
|
+
"description": "The position of the supplied label",
|
|
23937
|
+
"fieldName": "labelPosition",
|
|
23715
23938
|
"inheritedFrom": {
|
|
23716
23939
|
"name": "LabeledInput",
|
|
23717
23940
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
23718
23941
|
}
|
|
23719
23942
|
},
|
|
23720
23943
|
{
|
|
23721
|
-
"name": "
|
|
23944
|
+
"name": "optional",
|
|
23722
23945
|
"type": {
|
|
23723
|
-
"text": "
|
|
23946
|
+
"text": "boolean"
|
|
23724
23947
|
},
|
|
23725
|
-
"default": "
|
|
23726
|
-
"description": "
|
|
23727
|
-
"fieldName": "
|
|
23948
|
+
"default": "false",
|
|
23949
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
23950
|
+
"fieldName": "optional",
|
|
23728
23951
|
"inheritedFrom": {
|
|
23729
23952
|
"name": "LabeledInput",
|
|
23730
23953
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -23743,6 +23966,19 @@
|
|
|
23743
23966
|
"module": "src/components/form-elements/input-base.ts"
|
|
23744
23967
|
}
|
|
23745
23968
|
},
|
|
23969
|
+
{
|
|
23970
|
+
"name": "required",
|
|
23971
|
+
"type": {
|
|
23972
|
+
"text": "boolean"
|
|
23973
|
+
},
|
|
23974
|
+
"default": "false",
|
|
23975
|
+
"description": "Indicates that the input requires a value",
|
|
23976
|
+
"fieldName": "required",
|
|
23977
|
+
"inheritedFrom": {
|
|
23978
|
+
"name": "InputBase",
|
|
23979
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
23980
|
+
}
|
|
23981
|
+
},
|
|
23746
23982
|
{
|
|
23747
23983
|
"name": "invalid",
|
|
23748
23984
|
"type": {
|
|
@@ -24260,21 +24496,6 @@
|
|
|
24260
24496
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
24261
24497
|
}
|
|
24262
24498
|
},
|
|
24263
|
-
{
|
|
24264
|
-
"kind": "field",
|
|
24265
|
-
"name": "required",
|
|
24266
|
-
"type": {
|
|
24267
|
-
"text": "boolean"
|
|
24268
|
-
},
|
|
24269
|
-
"default": "false",
|
|
24270
|
-
"description": "Makes the field go into a required state",
|
|
24271
|
-
"attribute": "required",
|
|
24272
|
-
"reflects": true,
|
|
24273
|
-
"inheritedFrom": {
|
|
24274
|
-
"name": "LabeledInput",
|
|
24275
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
24276
|
-
}
|
|
24277
|
-
},
|
|
24278
24499
|
{
|
|
24279
24500
|
"kind": "field",
|
|
24280
24501
|
"name": "labelPosition",
|
|
@@ -24305,6 +24526,21 @@
|
|
|
24305
24526
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
24306
24527
|
}
|
|
24307
24528
|
},
|
|
24529
|
+
{
|
|
24530
|
+
"kind": "field",
|
|
24531
|
+
"name": "optional",
|
|
24532
|
+
"type": {
|
|
24533
|
+
"text": "boolean"
|
|
24534
|
+
},
|
|
24535
|
+
"default": "false",
|
|
24536
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
24537
|
+
"attribute": "optional",
|
|
24538
|
+
"reflects": true,
|
|
24539
|
+
"inheritedFrom": {
|
|
24540
|
+
"name": "LabeledInput",
|
|
24541
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
24542
|
+
}
|
|
24543
|
+
},
|
|
24308
24544
|
{
|
|
24309
24545
|
"kind": "method",
|
|
24310
24546
|
"name": "handleErrorChange",
|
|
@@ -24328,12 +24564,14 @@
|
|
|
24328
24564
|
},
|
|
24329
24565
|
{
|
|
24330
24566
|
"kind": "field",
|
|
24331
|
-
"name": "
|
|
24567
|
+
"name": "disabled",
|
|
24332
24568
|
"type": {
|
|
24333
|
-
"text": "
|
|
24569
|
+
"text": "boolean"
|
|
24334
24570
|
},
|
|
24335
|
-
"
|
|
24336
|
-
"
|
|
24571
|
+
"default": "false",
|
|
24572
|
+
"description": "Disables the input field",
|
|
24573
|
+
"attribute": "disabled",
|
|
24574
|
+
"reflects": true,
|
|
24337
24575
|
"inheritedFrom": {
|
|
24338
24576
|
"name": "InputBase",
|
|
24339
24577
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -24341,13 +24579,13 @@
|
|
|
24341
24579
|
},
|
|
24342
24580
|
{
|
|
24343
24581
|
"kind": "field",
|
|
24344
|
-
"name": "
|
|
24582
|
+
"name": "required",
|
|
24345
24583
|
"type": {
|
|
24346
24584
|
"text": "boolean"
|
|
24347
24585
|
},
|
|
24348
24586
|
"default": "false",
|
|
24349
|
-
"description": "
|
|
24350
|
-
"attribute": "
|
|
24587
|
+
"description": "Indicates that the input requires a value",
|
|
24588
|
+
"attribute": "required",
|
|
24351
24589
|
"reflects": true,
|
|
24352
24590
|
"inheritedFrom": {
|
|
24353
24591
|
"name": "InputBase",
|
|
@@ -24566,19 +24804,6 @@
|
|
|
24566
24804
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
24567
24805
|
}
|
|
24568
24806
|
},
|
|
24569
|
-
{
|
|
24570
|
-
"name": "required",
|
|
24571
|
-
"type": {
|
|
24572
|
-
"text": "boolean"
|
|
24573
|
-
},
|
|
24574
|
-
"default": "false",
|
|
24575
|
-
"description": "Makes the field go into a required state",
|
|
24576
|
-
"fieldName": "required",
|
|
24577
|
-
"inheritedFrom": {
|
|
24578
|
-
"name": "LabeledInput",
|
|
24579
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
24580
|
-
}
|
|
24581
|
-
},
|
|
24582
24807
|
{
|
|
24583
24808
|
"name": "label-position",
|
|
24584
24809
|
"type": {
|
|
@@ -24605,6 +24830,19 @@
|
|
|
24605
24830
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
24606
24831
|
}
|
|
24607
24832
|
},
|
|
24833
|
+
{
|
|
24834
|
+
"name": "optional",
|
|
24835
|
+
"type": {
|
|
24836
|
+
"text": "boolean"
|
|
24837
|
+
},
|
|
24838
|
+
"default": "false",
|
|
24839
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
24840
|
+
"fieldName": "optional",
|
|
24841
|
+
"inheritedFrom": {
|
|
24842
|
+
"name": "LabeledInput",
|
|
24843
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
24844
|
+
}
|
|
24845
|
+
},
|
|
24608
24846
|
{
|
|
24609
24847
|
"name": "disabled",
|
|
24610
24848
|
"type": {
|
|
@@ -24618,6 +24856,19 @@
|
|
|
24618
24856
|
"module": "src/components/form-elements/input-base.ts"
|
|
24619
24857
|
}
|
|
24620
24858
|
},
|
|
24859
|
+
{
|
|
24860
|
+
"name": "required",
|
|
24861
|
+
"type": {
|
|
24862
|
+
"text": "boolean"
|
|
24863
|
+
},
|
|
24864
|
+
"default": "false",
|
|
24865
|
+
"description": "Indicates that the input requires a value",
|
|
24866
|
+
"fieldName": "required",
|
|
24867
|
+
"inheritedFrom": {
|
|
24868
|
+
"name": "InputBase",
|
|
24869
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
24870
|
+
}
|
|
24871
|
+
},
|
|
24621
24872
|
{
|
|
24622
24873
|
"name": "invalid",
|
|
24623
24874
|
"type": {
|
|
@@ -24863,8 +25114,8 @@
|
|
|
24863
25114
|
"attribute": "required",
|
|
24864
25115
|
"reflects": true,
|
|
24865
25116
|
"inheritedFrom": {
|
|
24866
|
-
"name": "
|
|
24867
|
-
"module": "src/components/form-elements/
|
|
25117
|
+
"name": "InputBase",
|
|
25118
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
24868
25119
|
}
|
|
24869
25120
|
},
|
|
24870
25121
|
{
|
|
@@ -25250,6 +25501,21 @@
|
|
|
25250
25501
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
25251
25502
|
}
|
|
25252
25503
|
},
|
|
25504
|
+
{
|
|
25505
|
+
"kind": "field",
|
|
25506
|
+
"name": "optional",
|
|
25507
|
+
"type": {
|
|
25508
|
+
"text": "boolean"
|
|
25509
|
+
},
|
|
25510
|
+
"default": "false",
|
|
25511
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
25512
|
+
"attribute": "optional",
|
|
25513
|
+
"reflects": true,
|
|
25514
|
+
"inheritedFrom": {
|
|
25515
|
+
"name": "LabeledInput",
|
|
25516
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
25517
|
+
}
|
|
25518
|
+
},
|
|
25253
25519
|
{
|
|
25254
25520
|
"kind": "method",
|
|
25255
25521
|
"name": "handleErrorChange",
|
|
@@ -25271,19 +25537,6 @@
|
|
|
25271
25537
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
25272
25538
|
}
|
|
25273
25539
|
},
|
|
25274
|
-
{
|
|
25275
|
-
"kind": "field",
|
|
25276
|
-
"name": "shadowRootOptions",
|
|
25277
|
-
"type": {
|
|
25278
|
-
"text": "ShadowRootInit"
|
|
25279
|
-
},
|
|
25280
|
-
"static": true,
|
|
25281
|
-
"default": "{\n mode: 'open',\n delegatesFocus: true,\n }",
|
|
25282
|
-
"inheritedFrom": {
|
|
25283
|
-
"name": "InputBase",
|
|
25284
|
-
"module": "src/components/form-elements/input-base.ts"
|
|
25285
|
-
}
|
|
25286
|
-
},
|
|
25287
25540
|
{
|
|
25288
25541
|
"kind": "field",
|
|
25289
25542
|
"name": "disabled",
|
|
@@ -25502,19 +25755,6 @@
|
|
|
25502
25755
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
25503
25756
|
}
|
|
25504
25757
|
},
|
|
25505
|
-
{
|
|
25506
|
-
"name": "required",
|
|
25507
|
-
"type": {
|
|
25508
|
-
"text": "boolean"
|
|
25509
|
-
},
|
|
25510
|
-
"default": "false",
|
|
25511
|
-
"description": "Makes the field go into a required state",
|
|
25512
|
-
"fieldName": "required",
|
|
25513
|
-
"inheritedFrom": {
|
|
25514
|
-
"name": "LabeledInput",
|
|
25515
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
25516
|
-
}
|
|
25517
|
-
},
|
|
25518
25758
|
{
|
|
25519
25759
|
"name": "label-position",
|
|
25520
25760
|
"type": {
|
|
@@ -25541,6 +25781,19 @@
|
|
|
25541
25781
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
25542
25782
|
}
|
|
25543
25783
|
},
|
|
25784
|
+
{
|
|
25785
|
+
"name": "optional",
|
|
25786
|
+
"type": {
|
|
25787
|
+
"text": "boolean"
|
|
25788
|
+
},
|
|
25789
|
+
"default": "false",
|
|
25790
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
25791
|
+
"fieldName": "optional",
|
|
25792
|
+
"inheritedFrom": {
|
|
25793
|
+
"name": "LabeledInput",
|
|
25794
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
25795
|
+
}
|
|
25796
|
+
},
|
|
25544
25797
|
{
|
|
25545
25798
|
"name": "disabled",
|
|
25546
25799
|
"type": {
|
|
@@ -25554,6 +25807,19 @@
|
|
|
25554
25807
|
"module": "src/components/form-elements/input-base.ts"
|
|
25555
25808
|
}
|
|
25556
25809
|
},
|
|
25810
|
+
{
|
|
25811
|
+
"name": "required",
|
|
25812
|
+
"type": {
|
|
25813
|
+
"text": "boolean"
|
|
25814
|
+
},
|
|
25815
|
+
"default": "false",
|
|
25816
|
+
"description": "Indicates that the input requires a value",
|
|
25817
|
+
"fieldName": "required",
|
|
25818
|
+
"inheritedFrom": {
|
|
25819
|
+
"name": "InputBase",
|
|
25820
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
25821
|
+
}
|
|
25822
|
+
},
|
|
25557
25823
|
{
|
|
25558
25824
|
"name": "invalid",
|
|
25559
25825
|
"type": {
|
|
@@ -25720,21 +25986,6 @@
|
|
|
25720
25986
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
25721
25987
|
}
|
|
25722
25988
|
},
|
|
25723
|
-
{
|
|
25724
|
-
"kind": "field",
|
|
25725
|
-
"name": "required",
|
|
25726
|
-
"type": {
|
|
25727
|
-
"text": "boolean"
|
|
25728
|
-
},
|
|
25729
|
-
"default": "false",
|
|
25730
|
-
"description": "Makes the field go into a required state",
|
|
25731
|
-
"attribute": "required",
|
|
25732
|
-
"reflects": true,
|
|
25733
|
-
"inheritedFrom": {
|
|
25734
|
-
"name": "LabeledInput",
|
|
25735
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
25736
|
-
}
|
|
25737
|
-
},
|
|
25738
25989
|
{
|
|
25739
25990
|
"kind": "field",
|
|
25740
25991
|
"name": "labelPosition",
|
|
@@ -25765,6 +26016,21 @@
|
|
|
25765
26016
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
25766
26017
|
}
|
|
25767
26018
|
},
|
|
26019
|
+
{
|
|
26020
|
+
"kind": "field",
|
|
26021
|
+
"name": "optional",
|
|
26022
|
+
"type": {
|
|
26023
|
+
"text": "boolean"
|
|
26024
|
+
},
|
|
26025
|
+
"default": "false",
|
|
26026
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
26027
|
+
"attribute": "optional",
|
|
26028
|
+
"reflects": true,
|
|
26029
|
+
"inheritedFrom": {
|
|
26030
|
+
"name": "LabeledInput",
|
|
26031
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
26032
|
+
}
|
|
26033
|
+
},
|
|
25768
26034
|
{
|
|
25769
26035
|
"kind": "method",
|
|
25770
26036
|
"name": "handleErrorChange",
|
|
@@ -25801,12 +26067,14 @@
|
|
|
25801
26067
|
},
|
|
25802
26068
|
{
|
|
25803
26069
|
"kind": "field",
|
|
25804
|
-
"name": "
|
|
26070
|
+
"name": "disabled",
|
|
25805
26071
|
"type": {
|
|
25806
|
-
"text": "
|
|
26072
|
+
"text": "boolean"
|
|
25807
26073
|
},
|
|
25808
|
-
"
|
|
25809
|
-
"
|
|
26074
|
+
"default": "false",
|
|
26075
|
+
"description": "Disables the input field",
|
|
26076
|
+
"attribute": "disabled",
|
|
26077
|
+
"reflects": true,
|
|
25810
26078
|
"inheritedFrom": {
|
|
25811
26079
|
"name": "InputBase",
|
|
25812
26080
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -25814,13 +26082,13 @@
|
|
|
25814
26082
|
},
|
|
25815
26083
|
{
|
|
25816
26084
|
"kind": "field",
|
|
25817
|
-
"name": "
|
|
26085
|
+
"name": "required",
|
|
25818
26086
|
"type": {
|
|
25819
26087
|
"text": "boolean"
|
|
25820
26088
|
},
|
|
25821
26089
|
"default": "false",
|
|
25822
|
-
"description": "
|
|
25823
|
-
"attribute": "
|
|
26090
|
+
"description": "Indicates that the input requires a value",
|
|
26091
|
+
"attribute": "required",
|
|
25824
26092
|
"reflects": true,
|
|
25825
26093
|
"inheritedFrom": {
|
|
25826
26094
|
"name": "InputBase",
|
|
@@ -25954,25 +26222,12 @@
|
|
|
25954
26222
|
"fieldName": "leadingIcon"
|
|
25955
26223
|
},
|
|
25956
26224
|
{
|
|
25957
|
-
"name": "trailing-icon",
|
|
25958
|
-
"type": {
|
|
25959
|
-
"text": "IconKey | undefined"
|
|
25960
|
-
},
|
|
25961
|
-
"description": "Puts the supplied icon inside of the input at the trailing edge",
|
|
25962
|
-
"fieldName": "trailingIcon"
|
|
25963
|
-
},
|
|
25964
|
-
{
|
|
25965
|
-
"name": "required",
|
|
25966
|
-
"type": {
|
|
25967
|
-
"text": "boolean"
|
|
25968
|
-
},
|
|
25969
|
-
"default": "false",
|
|
25970
|
-
"description": "Makes the field go into a required state",
|
|
25971
|
-
"fieldName": "required",
|
|
25972
|
-
"inheritedFrom": {
|
|
25973
|
-
"name": "LabeledInput",
|
|
25974
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
25975
|
-
}
|
|
26225
|
+
"name": "trailing-icon",
|
|
26226
|
+
"type": {
|
|
26227
|
+
"text": "IconKey | undefined"
|
|
26228
|
+
},
|
|
26229
|
+
"description": "Puts the supplied icon inside of the input at the trailing edge",
|
|
26230
|
+
"fieldName": "trailingIcon"
|
|
25976
26231
|
},
|
|
25977
26232
|
{
|
|
25978
26233
|
"name": "label-position",
|
|
@@ -26000,6 +26255,19 @@
|
|
|
26000
26255
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
26001
26256
|
}
|
|
26002
26257
|
},
|
|
26258
|
+
{
|
|
26259
|
+
"name": "optional",
|
|
26260
|
+
"type": {
|
|
26261
|
+
"text": "boolean"
|
|
26262
|
+
},
|
|
26263
|
+
"default": "false",
|
|
26264
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
26265
|
+
"fieldName": "optional",
|
|
26266
|
+
"inheritedFrom": {
|
|
26267
|
+
"name": "LabeledInput",
|
|
26268
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
26269
|
+
}
|
|
26270
|
+
},
|
|
26003
26271
|
{
|
|
26004
26272
|
"name": "disabled",
|
|
26005
26273
|
"type": {
|
|
@@ -26013,6 +26281,19 @@
|
|
|
26013
26281
|
"module": "src/components/form-elements/input-base.ts"
|
|
26014
26282
|
}
|
|
26015
26283
|
},
|
|
26284
|
+
{
|
|
26285
|
+
"name": "required",
|
|
26286
|
+
"type": {
|
|
26287
|
+
"text": "boolean"
|
|
26288
|
+
},
|
|
26289
|
+
"default": "false",
|
|
26290
|
+
"description": "Indicates that the input requires a value",
|
|
26291
|
+
"fieldName": "required",
|
|
26292
|
+
"inheritedFrom": {
|
|
26293
|
+
"name": "InputBase",
|
|
26294
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
26295
|
+
}
|
|
26296
|
+
},
|
|
26016
26297
|
{
|
|
26017
26298
|
"name": "invalid",
|
|
26018
26299
|
"type": {
|
|
@@ -26237,13 +26518,13 @@
|
|
|
26237
26518
|
},
|
|
26238
26519
|
{
|
|
26239
26520
|
"kind": "field",
|
|
26240
|
-
"name": "
|
|
26521
|
+
"name": "labelPosition",
|
|
26241
26522
|
"type": {
|
|
26242
|
-
"text": "
|
|
26523
|
+
"text": "LabelPosition"
|
|
26243
26524
|
},
|
|
26244
|
-
"default": "
|
|
26245
|
-
"description": "
|
|
26246
|
-
"attribute": "
|
|
26525
|
+
"default": "'top'",
|
|
26526
|
+
"description": "The position of the supplied label",
|
|
26527
|
+
"attribute": "label-position",
|
|
26247
26528
|
"reflects": true,
|
|
26248
26529
|
"inheritedFrom": {
|
|
26249
26530
|
"name": "LabeledInput",
|
|
@@ -26252,13 +26533,13 @@
|
|
|
26252
26533
|
},
|
|
26253
26534
|
{
|
|
26254
26535
|
"kind": "field",
|
|
26255
|
-
"name": "
|
|
26536
|
+
"name": "optional",
|
|
26256
26537
|
"type": {
|
|
26257
|
-
"text": "
|
|
26538
|
+
"text": "boolean"
|
|
26258
26539
|
},
|
|
26259
|
-
"default": "
|
|
26260
|
-
"description": "
|
|
26261
|
-
"attribute": "
|
|
26540
|
+
"default": "false",
|
|
26541
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
26542
|
+
"attribute": "optional",
|
|
26262
26543
|
"reflects": true,
|
|
26263
26544
|
"inheritedFrom": {
|
|
26264
26545
|
"name": "LabeledInput",
|
|
@@ -26288,12 +26569,14 @@
|
|
|
26288
26569
|
},
|
|
26289
26570
|
{
|
|
26290
26571
|
"kind": "field",
|
|
26291
|
-
"name": "
|
|
26572
|
+
"name": "disabled",
|
|
26292
26573
|
"type": {
|
|
26293
|
-
"text": "
|
|
26574
|
+
"text": "boolean"
|
|
26294
26575
|
},
|
|
26295
|
-
"
|
|
26296
|
-
"
|
|
26576
|
+
"default": "false",
|
|
26577
|
+
"description": "Disables the input field",
|
|
26578
|
+
"attribute": "disabled",
|
|
26579
|
+
"reflects": true,
|
|
26297
26580
|
"inheritedFrom": {
|
|
26298
26581
|
"name": "InputBase",
|
|
26299
26582
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -26301,13 +26584,13 @@
|
|
|
26301
26584
|
},
|
|
26302
26585
|
{
|
|
26303
26586
|
"kind": "field",
|
|
26304
|
-
"name": "
|
|
26587
|
+
"name": "required",
|
|
26305
26588
|
"type": {
|
|
26306
26589
|
"text": "boolean"
|
|
26307
26590
|
},
|
|
26308
26591
|
"default": "false",
|
|
26309
|
-
"description": "
|
|
26310
|
-
"attribute": "
|
|
26592
|
+
"description": "Indicates that the input requires a value",
|
|
26593
|
+
"attribute": "required",
|
|
26311
26594
|
"reflects": true,
|
|
26312
26595
|
"inheritedFrom": {
|
|
26313
26596
|
"name": "InputBase",
|
|
@@ -26485,26 +26768,26 @@
|
|
|
26485
26768
|
}
|
|
26486
26769
|
},
|
|
26487
26770
|
{
|
|
26488
|
-
"name": "
|
|
26771
|
+
"name": "label-position",
|
|
26489
26772
|
"type": {
|
|
26490
|
-
"text": "
|
|
26773
|
+
"text": "LabelPosition"
|
|
26491
26774
|
},
|
|
26492
|
-
"default": "
|
|
26493
|
-
"description": "
|
|
26494
|
-
"fieldName": "
|
|
26775
|
+
"default": "'top'",
|
|
26776
|
+
"description": "The position of the supplied label",
|
|
26777
|
+
"fieldName": "labelPosition",
|
|
26495
26778
|
"inheritedFrom": {
|
|
26496
26779
|
"name": "LabeledInput",
|
|
26497
26780
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
26498
26781
|
}
|
|
26499
26782
|
},
|
|
26500
26783
|
{
|
|
26501
|
-
"name": "
|
|
26784
|
+
"name": "optional",
|
|
26502
26785
|
"type": {
|
|
26503
|
-
"text": "
|
|
26786
|
+
"text": "boolean"
|
|
26504
26787
|
},
|
|
26505
|
-
"default": "
|
|
26506
|
-
"description": "
|
|
26507
|
-
"fieldName": "
|
|
26788
|
+
"default": "false",
|
|
26789
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
26790
|
+
"fieldName": "optional",
|
|
26508
26791
|
"inheritedFrom": {
|
|
26509
26792
|
"name": "LabeledInput",
|
|
26510
26793
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -26523,6 +26806,19 @@
|
|
|
26523
26806
|
"module": "src/components/form-elements/input-base.ts"
|
|
26524
26807
|
}
|
|
26525
26808
|
},
|
|
26809
|
+
{
|
|
26810
|
+
"name": "required",
|
|
26811
|
+
"type": {
|
|
26812
|
+
"text": "boolean"
|
|
26813
|
+
},
|
|
26814
|
+
"default": "false",
|
|
26815
|
+
"description": "Indicates that the input requires a value",
|
|
26816
|
+
"fieldName": "required",
|
|
26817
|
+
"inheritedFrom": {
|
|
26818
|
+
"name": "InputBase",
|
|
26819
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
26820
|
+
}
|
|
26821
|
+
},
|
|
26526
26822
|
{
|
|
26527
26823
|
"name": "invalid",
|
|
26528
26824
|
"type": {
|
|
@@ -26765,13 +27061,13 @@
|
|
|
26765
27061
|
},
|
|
26766
27062
|
{
|
|
26767
27063
|
"kind": "field",
|
|
26768
|
-
"name": "
|
|
27064
|
+
"name": "labelPosition",
|
|
26769
27065
|
"type": {
|
|
26770
|
-
"text": "
|
|
27066
|
+
"text": "LabelPosition"
|
|
26771
27067
|
},
|
|
26772
|
-
"default": "
|
|
26773
|
-
"description": "
|
|
26774
|
-
"attribute": "
|
|
27068
|
+
"default": "'top'",
|
|
27069
|
+
"description": "The position of the supplied label",
|
|
27070
|
+
"attribute": "label-position",
|
|
26775
27071
|
"reflects": true,
|
|
26776
27072
|
"inheritedFrom": {
|
|
26777
27073
|
"name": "LabeledInput",
|
|
@@ -26780,13 +27076,13 @@
|
|
|
26780
27076
|
},
|
|
26781
27077
|
{
|
|
26782
27078
|
"kind": "field",
|
|
26783
|
-
"name": "
|
|
27079
|
+
"name": "optional",
|
|
26784
27080
|
"type": {
|
|
26785
|
-
"text": "
|
|
27081
|
+
"text": "boolean"
|
|
26786
27082
|
},
|
|
26787
|
-
"default": "
|
|
26788
|
-
"description": "
|
|
26789
|
-
"attribute": "
|
|
27083
|
+
"default": "false",
|
|
27084
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
27085
|
+
"attribute": "optional",
|
|
26790
27086
|
"reflects": true,
|
|
26791
27087
|
"inheritedFrom": {
|
|
26792
27088
|
"name": "LabeledInput",
|
|
@@ -26803,12 +27099,14 @@
|
|
|
26803
27099
|
},
|
|
26804
27100
|
{
|
|
26805
27101
|
"kind": "field",
|
|
26806
|
-
"name": "
|
|
27102
|
+
"name": "disabled",
|
|
26807
27103
|
"type": {
|
|
26808
|
-
"text": "
|
|
27104
|
+
"text": "boolean"
|
|
26809
27105
|
},
|
|
26810
|
-
"
|
|
26811
|
-
"
|
|
27106
|
+
"default": "false",
|
|
27107
|
+
"description": "Disables the input field",
|
|
27108
|
+
"attribute": "disabled",
|
|
27109
|
+
"reflects": true,
|
|
26812
27110
|
"inheritedFrom": {
|
|
26813
27111
|
"name": "InputBase",
|
|
26814
27112
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -26816,13 +27114,13 @@
|
|
|
26816
27114
|
},
|
|
26817
27115
|
{
|
|
26818
27116
|
"kind": "field",
|
|
26819
|
-
"name": "
|
|
27117
|
+
"name": "required",
|
|
26820
27118
|
"type": {
|
|
26821
27119
|
"text": "boolean"
|
|
26822
27120
|
},
|
|
26823
27121
|
"default": "false",
|
|
26824
|
-
"description": "
|
|
26825
|
-
"attribute": "
|
|
27122
|
+
"description": "Indicates that the input requires a value",
|
|
27123
|
+
"attribute": "required",
|
|
26826
27124
|
"reflects": true,
|
|
26827
27125
|
"inheritedFrom": {
|
|
26828
27126
|
"name": "InputBase",
|
|
@@ -27000,26 +27298,26 @@
|
|
|
27000
27298
|
}
|
|
27001
27299
|
},
|
|
27002
27300
|
{
|
|
27003
|
-
"name": "
|
|
27301
|
+
"name": "label-position",
|
|
27004
27302
|
"type": {
|
|
27005
|
-
"text": "
|
|
27303
|
+
"text": "LabelPosition"
|
|
27006
27304
|
},
|
|
27007
|
-
"default": "
|
|
27008
|
-
"description": "
|
|
27009
|
-
"fieldName": "
|
|
27305
|
+
"default": "'top'",
|
|
27306
|
+
"description": "The position of the supplied label",
|
|
27307
|
+
"fieldName": "labelPosition",
|
|
27010
27308
|
"inheritedFrom": {
|
|
27011
27309
|
"name": "LabeledInput",
|
|
27012
27310
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
27013
27311
|
}
|
|
27014
27312
|
},
|
|
27015
27313
|
{
|
|
27016
|
-
"name": "
|
|
27314
|
+
"name": "optional",
|
|
27017
27315
|
"type": {
|
|
27018
|
-
"text": "
|
|
27316
|
+
"text": "boolean"
|
|
27019
27317
|
},
|
|
27020
|
-
"default": "
|
|
27021
|
-
"description": "
|
|
27022
|
-
"fieldName": "
|
|
27318
|
+
"default": "false",
|
|
27319
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
27320
|
+
"fieldName": "optional",
|
|
27023
27321
|
"inheritedFrom": {
|
|
27024
27322
|
"name": "LabeledInput",
|
|
27025
27323
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
@@ -27038,6 +27336,19 @@
|
|
|
27038
27336
|
"module": "src/components/form-elements/input-base.ts"
|
|
27039
27337
|
}
|
|
27040
27338
|
},
|
|
27339
|
+
{
|
|
27340
|
+
"name": "required",
|
|
27341
|
+
"type": {
|
|
27342
|
+
"text": "boolean"
|
|
27343
|
+
},
|
|
27344
|
+
"default": "false",
|
|
27345
|
+
"description": "Indicates that the input requires a value",
|
|
27346
|
+
"fieldName": "required",
|
|
27347
|
+
"inheritedFrom": {
|
|
27348
|
+
"name": "InputBase",
|
|
27349
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
27350
|
+
}
|
|
27351
|
+
},
|
|
27041
27352
|
{
|
|
27042
27353
|
"name": "invalid",
|
|
27043
27354
|
"type": {
|
|
@@ -27453,8 +27764,8 @@
|
|
|
27453
27764
|
"attribute": "required",
|
|
27454
27765
|
"reflects": true,
|
|
27455
27766
|
"inheritedFrom": {
|
|
27456
|
-
"name": "
|
|
27457
|
-
"module": "src/components/form-elements/
|
|
27767
|
+
"name": "InputBase",
|
|
27768
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
27458
27769
|
}
|
|
27459
27770
|
},
|
|
27460
27771
|
{
|
|
@@ -27769,6 +28080,21 @@
|
|
|
27769
28080
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
27770
28081
|
}
|
|
27771
28082
|
},
|
|
28083
|
+
{
|
|
28084
|
+
"kind": "field",
|
|
28085
|
+
"name": "optional",
|
|
28086
|
+
"type": {
|
|
28087
|
+
"text": "boolean"
|
|
28088
|
+
},
|
|
28089
|
+
"default": "false",
|
|
28090
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
28091
|
+
"attribute": "optional",
|
|
28092
|
+
"reflects": true,
|
|
28093
|
+
"inheritedFrom": {
|
|
28094
|
+
"name": "LabeledInput",
|
|
28095
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
28096
|
+
}
|
|
28097
|
+
},
|
|
27772
28098
|
{
|
|
27773
28099
|
"kind": "method",
|
|
27774
28100
|
"name": "handleErrorChange",
|
|
@@ -27790,19 +28116,6 @@
|
|
|
27790
28116
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
27791
28117
|
}
|
|
27792
28118
|
},
|
|
27793
|
-
{
|
|
27794
|
-
"kind": "field",
|
|
27795
|
-
"name": "shadowRootOptions",
|
|
27796
|
-
"type": {
|
|
27797
|
-
"text": "ShadowRootInit"
|
|
27798
|
-
},
|
|
27799
|
-
"static": true,
|
|
27800
|
-
"default": "{\n mode: 'open',\n delegatesFocus: true,\n }",
|
|
27801
|
-
"inheritedFrom": {
|
|
27802
|
-
"name": "InputBase",
|
|
27803
|
-
"module": "src/components/form-elements/input-base.ts"
|
|
27804
|
-
}
|
|
27805
|
-
},
|
|
27806
28119
|
{
|
|
27807
28120
|
"kind": "field",
|
|
27808
28121
|
"name": "disabled",
|
|
@@ -28048,19 +28361,6 @@
|
|
|
28048
28361
|
"module": "src/components/form-elements/input-text-base.ts"
|
|
28049
28362
|
}
|
|
28050
28363
|
},
|
|
28051
|
-
{
|
|
28052
|
-
"name": "required",
|
|
28053
|
-
"type": {
|
|
28054
|
-
"text": "boolean"
|
|
28055
|
-
},
|
|
28056
|
-
"default": "false",
|
|
28057
|
-
"description": "Makes the field go into a required state",
|
|
28058
|
-
"fieldName": "required",
|
|
28059
|
-
"inheritedFrom": {
|
|
28060
|
-
"name": "LabeledInput",
|
|
28061
|
-
"module": "src/components/form-elements/labeled-input.ts"
|
|
28062
|
-
}
|
|
28063
|
-
},
|
|
28064
28364
|
{
|
|
28065
28365
|
"name": "label-position",
|
|
28066
28366
|
"type": {
|
|
@@ -28087,6 +28387,19 @@
|
|
|
28087
28387
|
"module": "src/components/form-elements/labeled-input.ts"
|
|
28088
28388
|
}
|
|
28089
28389
|
},
|
|
28390
|
+
{
|
|
28391
|
+
"name": "optional",
|
|
28392
|
+
"type": {
|
|
28393
|
+
"text": "boolean"
|
|
28394
|
+
},
|
|
28395
|
+
"default": "false",
|
|
28396
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
28397
|
+
"fieldName": "optional",
|
|
28398
|
+
"inheritedFrom": {
|
|
28399
|
+
"name": "LabeledInput",
|
|
28400
|
+
"module": "src/components/form-elements/labeled-input.ts"
|
|
28401
|
+
}
|
|
28402
|
+
},
|
|
28090
28403
|
{
|
|
28091
28404
|
"name": "disabled",
|
|
28092
28405
|
"type": {
|
|
@@ -28100,6 +28413,19 @@
|
|
|
28100
28413
|
"module": "src/components/form-elements/input-base.ts"
|
|
28101
28414
|
}
|
|
28102
28415
|
},
|
|
28416
|
+
{
|
|
28417
|
+
"name": "required",
|
|
28418
|
+
"type": {
|
|
28419
|
+
"text": "boolean"
|
|
28420
|
+
},
|
|
28421
|
+
"default": "false",
|
|
28422
|
+
"description": "Indicates that the input requires a value",
|
|
28423
|
+
"fieldName": "required",
|
|
28424
|
+
"inheritedFrom": {
|
|
28425
|
+
"name": "InputBase",
|
|
28426
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
28427
|
+
}
|
|
28428
|
+
},
|
|
28103
28429
|
{
|
|
28104
28430
|
"name": "invalid",
|
|
28105
28431
|
"type": {
|
|
@@ -28278,17 +28604,6 @@
|
|
|
28278
28604
|
}
|
|
28279
28605
|
],
|
|
28280
28606
|
"members": [
|
|
28281
|
-
{
|
|
28282
|
-
"kind": "field",
|
|
28283
|
-
"name": "required",
|
|
28284
|
-
"type": {
|
|
28285
|
-
"text": "boolean"
|
|
28286
|
-
},
|
|
28287
|
-
"default": "false",
|
|
28288
|
-
"description": "Makes the field go into a required state",
|
|
28289
|
-
"attribute": "required",
|
|
28290
|
-
"reflects": true
|
|
28291
|
-
},
|
|
28292
28607
|
{
|
|
28293
28608
|
"kind": "field",
|
|
28294
28609
|
"name": "labelPosition",
|
|
@@ -28311,6 +28626,17 @@
|
|
|
28311
28626
|
"attribute": "size",
|
|
28312
28627
|
"reflects": true
|
|
28313
28628
|
},
|
|
28629
|
+
{
|
|
28630
|
+
"kind": "field",
|
|
28631
|
+
"name": "optional",
|
|
28632
|
+
"type": {
|
|
28633
|
+
"text": "boolean"
|
|
28634
|
+
},
|
|
28635
|
+
"default": "false",
|
|
28636
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
28637
|
+
"attribute": "optional",
|
|
28638
|
+
"reflects": true
|
|
28639
|
+
},
|
|
28314
28640
|
{
|
|
28315
28641
|
"kind": "method",
|
|
28316
28642
|
"name": "handleErrorChange"
|
|
@@ -28340,12 +28666,14 @@
|
|
|
28340
28666
|
},
|
|
28341
28667
|
{
|
|
28342
28668
|
"kind": "field",
|
|
28343
|
-
"name": "
|
|
28669
|
+
"name": "disabled",
|
|
28344
28670
|
"type": {
|
|
28345
|
-
"text": "
|
|
28671
|
+
"text": "boolean"
|
|
28346
28672
|
},
|
|
28347
|
-
"
|
|
28348
|
-
"
|
|
28673
|
+
"default": "false",
|
|
28674
|
+
"description": "Disables the input field",
|
|
28675
|
+
"attribute": "disabled",
|
|
28676
|
+
"reflects": true,
|
|
28349
28677
|
"inheritedFrom": {
|
|
28350
28678
|
"name": "InputBase",
|
|
28351
28679
|
"module": "src/components/form-elements/input-base.ts"
|
|
@@ -28353,13 +28681,13 @@
|
|
|
28353
28681
|
},
|
|
28354
28682
|
{
|
|
28355
28683
|
"kind": "field",
|
|
28356
|
-
"name": "
|
|
28684
|
+
"name": "required",
|
|
28357
28685
|
"type": {
|
|
28358
28686
|
"text": "boolean"
|
|
28359
28687
|
},
|
|
28360
28688
|
"default": "false",
|
|
28361
|
-
"description": "
|
|
28362
|
-
"attribute": "
|
|
28689
|
+
"description": "Indicates that the input requires a value",
|
|
28690
|
+
"attribute": "required",
|
|
28363
28691
|
"reflects": true,
|
|
28364
28692
|
"inheritedFrom": {
|
|
28365
28693
|
"name": "InputBase",
|
|
@@ -28467,15 +28795,6 @@
|
|
|
28467
28795
|
}
|
|
28468
28796
|
],
|
|
28469
28797
|
"attributes": [
|
|
28470
|
-
{
|
|
28471
|
-
"name": "required",
|
|
28472
|
-
"type": {
|
|
28473
|
-
"text": "boolean"
|
|
28474
|
-
},
|
|
28475
|
-
"default": "false",
|
|
28476
|
-
"description": "Makes the field go into a required state",
|
|
28477
|
-
"fieldName": "required"
|
|
28478
|
-
},
|
|
28479
28798
|
{
|
|
28480
28799
|
"name": "label-position",
|
|
28481
28800
|
"type": {
|
|
@@ -28494,6 +28813,15 @@
|
|
|
28494
28813
|
"description": "The size of the input",
|
|
28495
28814
|
"fieldName": "size"
|
|
28496
28815
|
},
|
|
28816
|
+
{
|
|
28817
|
+
"name": "optional",
|
|
28818
|
+
"type": {
|
|
28819
|
+
"text": "boolean"
|
|
28820
|
+
},
|
|
28821
|
+
"default": "false",
|
|
28822
|
+
"description": "Indicates that the input value is optional. Appends \"(optional)\" text to\nthe label.\n\nIf the input is already `required`, this does nothing.",
|
|
28823
|
+
"fieldName": "optional"
|
|
28824
|
+
},
|
|
28497
28825
|
{
|
|
28498
28826
|
"name": "disabled",
|
|
28499
28827
|
"type": {
|
|
@@ -28507,6 +28835,19 @@
|
|
|
28507
28835
|
"module": "src/components/form-elements/input-base.ts"
|
|
28508
28836
|
}
|
|
28509
28837
|
},
|
|
28838
|
+
{
|
|
28839
|
+
"name": "required",
|
|
28840
|
+
"type": {
|
|
28841
|
+
"text": "boolean"
|
|
28842
|
+
},
|
|
28843
|
+
"default": "false",
|
|
28844
|
+
"description": "Indicates that the input requires a value",
|
|
28845
|
+
"fieldName": "required",
|
|
28846
|
+
"inheritedFrom": {
|
|
28847
|
+
"name": "InputBase",
|
|
28848
|
+
"module": "src/components/form-elements/input-base.ts"
|
|
28849
|
+
}
|
|
28850
|
+
},
|
|
28510
28851
|
{
|
|
28511
28852
|
"name": "invalid",
|
|
28512
28853
|
"type": {
|