@tylertech/forge 3.5.1 → 3.6.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1171 -1128
- package/dist/checkbox/forge-checkbox.css +1 -0
- package/dist/lib.js +27 -19
- package/dist/lib.js.map +4 -4
- package/dist/radio/forge-radio.css +2 -0
- package/dist/switch/forge-switch.css +2 -0
- package/dist/vscode.css-custom-data.json +15 -0
- package/dist/vscode.html-custom-data.json +81 -106
- package/esm/app-bar/profile-button/app-bar-profile-button.js +5 -2
- package/esm/avatar/avatar-constants.d.ts +0 -7
- package/esm/avatar/avatar-constants.js +1 -10
- package/esm/avatar/avatar.d.ts +24 -21
- package/esm/avatar/avatar.js +68 -45
- package/esm/avatar/index.d.ts +1 -3
- package/esm/avatar/index.js +4 -6
- package/esm/button/base/base-button-adapter.js +1 -1
- package/esm/button-area/button-area.js +1 -1
- package/esm/checkbox/checkbox.d.ts +1 -0
- package/esm/checkbox/checkbox.js +2 -1
- package/esm/dialog/dialog-adapter.d.ts +7 -0
- package/esm/dialog/dialog-adapter.js +43 -19
- package/esm/dialog/dialog-constants.d.ts +6 -0
- package/esm/dialog/dialog-constants.js +6 -2
- package/esm/dialog/dialog-core.d.ts +8 -0
- package/esm/dialog/dialog-core.js +20 -0
- package/esm/dialog/dialog.d.ts +14 -0
- package/esm/dialog/dialog.js +13 -1
- package/esm/icon-button/icon-button-constants.d.ts +4 -0
- package/esm/icon-button/icon-button-constants.js +2 -0
- package/esm/icon-button/icon-button-core.d.ts +4 -4
- package/esm/icon-button/icon-button-core.js +16 -14
- package/esm/icon-button/icon-button.d.ts +32 -29
- package/esm/icon-button/icon-button.js +5 -30
- package/esm/profile-card/profile-card.js +5 -2
- package/esm/radio/radio/radio.d.ts +1 -0
- package/esm/radio/radio/radio.js +2 -1
- package/esm/split-view/split-view/split-view-adapter.js +1 -0
- package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
- package/esm/switch/switch.d.ts +1 -0
- package/esm/switch/switch.js +2 -1
- package/esm/table/table-utils.js +6 -6
- package/esm/tabs/tab-bar/tab-bar-adapter.d.ts +0 -5
- package/esm/tabs/tab-bar/tab-bar-adapter.js +3 -11
- package/esm/tabs/tab-bar/tab-bar-constants.d.ts +0 -3
- package/esm/tabs/tab-bar/tab-bar-constants.js +0 -4
- package/esm/tabs/tab-bar/tab-bar-core.js +7 -7
- package/esm/tabs/tab-bar/tab-bar.d.ts +6 -3
- package/esm/tabs/tab-bar/tab-bar.js +6 -3
- package/package.json +2 -2
- package/sass/button-area/_core.scss +3 -0
- package/sass/checkbox/_core.scss +2 -2
- package/sass/core/styles/tokens/checkbox/_tokens.scss +1 -0
- package/sass/core/styles/tokens/radio/_tokens.scss +1 -0
- package/sass/core/styles/tokens/switch/_tokens.scss +1 -0
- package/sass/dialog/dialog.scss +5 -0
- package/sass/radio/radio/_core.scss +2 -2
- package/sass/switch/_core.scss +2 -2
- package/esm/avatar/avatar-adapter.d.ts +0 -36
- package/esm/avatar/avatar-adapter.js +0 -55
- package/esm/avatar/avatar-core.d.ts +0 -38
- package/esm/avatar/avatar-core.js +0 -101
package/custom-elements.json
CHANGED
|
@@ -655,6 +655,14 @@
|
|
|
655
655
|
"kind": "javascript-module",
|
|
656
656
|
"path": "src/lib/avatar/avatar.ts",
|
|
657
657
|
"declarations": [
|
|
658
|
+
{
|
|
659
|
+
"kind": "variable",
|
|
660
|
+
"name": "AVATAR_TAG_NAME",
|
|
661
|
+
"type": {
|
|
662
|
+
"text": "string"
|
|
663
|
+
},
|
|
664
|
+
"default": "'forge-avatar'"
|
|
665
|
+
},
|
|
658
666
|
{
|
|
659
667
|
"kind": "class",
|
|
660
668
|
"description": "",
|
|
@@ -723,8 +731,9 @@
|
|
|
723
731
|
"text": "string"
|
|
724
732
|
},
|
|
725
733
|
"privacy": "public",
|
|
734
|
+
"default": "''",
|
|
726
735
|
"description": "The text to display in the avatar.",
|
|
727
|
-
"
|
|
736
|
+
"attribute": "text"
|
|
728
737
|
},
|
|
729
738
|
{
|
|
730
739
|
"kind": "field",
|
|
@@ -734,7 +743,8 @@
|
|
|
734
743
|
},
|
|
735
744
|
"privacy": "public",
|
|
736
745
|
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
737
|
-
"default": "2"
|
|
746
|
+
"default": "2",
|
|
747
|
+
"attribute": "letter-count"
|
|
738
748
|
},
|
|
739
749
|
{
|
|
740
750
|
"kind": "field",
|
|
@@ -743,37 +753,61 @@
|
|
|
743
753
|
"text": "string"
|
|
744
754
|
},
|
|
745
755
|
"privacy": "public",
|
|
746
|
-
"
|
|
756
|
+
"default": "''",
|
|
757
|
+
"description": "The background image URL to use.",
|
|
758
|
+
"attribute": "image-url"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"kind": "field",
|
|
762
|
+
"name": "_image",
|
|
763
|
+
"type": {
|
|
764
|
+
"text": "HTMLImageElement | undefined"
|
|
765
|
+
},
|
|
766
|
+
"privacy": "private"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"kind": "method",
|
|
770
|
+
"name": "_tryLoadImage",
|
|
771
|
+
"privacy": "private",
|
|
772
|
+
"return": {
|
|
773
|
+
"type": {
|
|
774
|
+
"text": "Promise<void>"
|
|
775
|
+
}
|
|
776
|
+
}
|
|
747
777
|
}
|
|
748
778
|
],
|
|
749
779
|
"attributes": [
|
|
750
780
|
{
|
|
781
|
+
"name": "text",
|
|
751
782
|
"type": {
|
|
752
783
|
"text": "string"
|
|
753
784
|
},
|
|
785
|
+
"default": "''",
|
|
754
786
|
"description": "The text to display in the avatar.",
|
|
755
|
-
"
|
|
756
|
-
"default": "\"\""
|
|
787
|
+
"fieldName": "text"
|
|
757
788
|
},
|
|
758
789
|
{
|
|
790
|
+
"name": "letter-count",
|
|
759
791
|
"type": {
|
|
760
|
-
"text": "
|
|
792
|
+
"text": "number"
|
|
761
793
|
},
|
|
762
794
|
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
763
|
-
"
|
|
764
|
-
"
|
|
795
|
+
"default": "2",
|
|
796
|
+
"fieldName": "letterCount"
|
|
765
797
|
},
|
|
766
798
|
{
|
|
799
|
+
"name": "image-url",
|
|
767
800
|
"type": {
|
|
768
801
|
"text": "string"
|
|
769
802
|
},
|
|
803
|
+
"default": "''",
|
|
770
804
|
"description": "The background image URL to use.",
|
|
771
|
-
"
|
|
805
|
+
"fieldName": "imageUrl"
|
|
772
806
|
}
|
|
773
807
|
],
|
|
774
808
|
"superclass": {
|
|
775
|
-
"name": "
|
|
776
|
-
"
|
|
809
|
+
"name": "LitElement",
|
|
810
|
+
"package": "lit"
|
|
777
811
|
},
|
|
778
812
|
"tagName": "forge-avatar",
|
|
779
813
|
"summary": "Avatars represent an entity via text or image.",
|
|
@@ -787,6 +821,14 @@
|
|
|
787
821
|
}
|
|
788
822
|
],
|
|
789
823
|
"exports": [
|
|
824
|
+
{
|
|
825
|
+
"kind": "js",
|
|
826
|
+
"name": "AVATAR_TAG_NAME",
|
|
827
|
+
"declaration": {
|
|
828
|
+
"name": "AVATAR_TAG_NAME",
|
|
829
|
+
"module": "src/lib/avatar/avatar.ts"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
790
832
|
{
|
|
791
833
|
"kind": "js",
|
|
792
834
|
"name": "AvatarComponent",
|
|
@@ -3287,6 +3329,10 @@
|
|
|
3287
3329
|
"description": "How the checkbox and label are distributed along their main axis.",
|
|
3288
3330
|
"name": "--forge-checkbox-justify"
|
|
3289
3331
|
},
|
|
3332
|
+
{
|
|
3333
|
+
"description": "How the checkbox and label are distributed along their cross axis.",
|
|
3334
|
+
"name": "--forge-checkbox-align"
|
|
3335
|
+
},
|
|
3290
3336
|
{
|
|
3291
3337
|
"description": "Whether the checkbox and label are arranged along the inline or block axis.",
|
|
3292
3338
|
"name": "--forge-checkbox-direction"
|
|
@@ -7029,6 +7075,28 @@
|
|
|
7029
7075
|
"default": "'center'",
|
|
7030
7076
|
"attribute": "placement"
|
|
7031
7077
|
},
|
|
7078
|
+
{
|
|
7079
|
+
"kind": "field",
|
|
7080
|
+
"name": "label",
|
|
7081
|
+
"type": {
|
|
7082
|
+
"text": "string"
|
|
7083
|
+
},
|
|
7084
|
+
"privacy": "public",
|
|
7085
|
+
"description": "The accessible label of the dialog.",
|
|
7086
|
+
"default": "''",
|
|
7087
|
+
"attribute": "label"
|
|
7088
|
+
},
|
|
7089
|
+
{
|
|
7090
|
+
"kind": "field",
|
|
7091
|
+
"name": "description",
|
|
7092
|
+
"type": {
|
|
7093
|
+
"text": "string"
|
|
7094
|
+
},
|
|
7095
|
+
"privacy": "public",
|
|
7096
|
+
"description": "The accessible description of the dialog.",
|
|
7097
|
+
"default": "''",
|
|
7098
|
+
"attribute": "description"
|
|
7099
|
+
},
|
|
7032
7100
|
{
|
|
7033
7101
|
"kind": "method",
|
|
7034
7102
|
"name": "show",
|
|
@@ -7220,6 +7288,24 @@
|
|
|
7220
7288
|
"description": "The placement of the dialog.",
|
|
7221
7289
|
"default": "'center'",
|
|
7222
7290
|
"fieldName": "placement"
|
|
7291
|
+
},
|
|
7292
|
+
{
|
|
7293
|
+
"name": "label",
|
|
7294
|
+
"type": {
|
|
7295
|
+
"text": "string"
|
|
7296
|
+
},
|
|
7297
|
+
"description": "The accessible label of the dialog.",
|
|
7298
|
+
"default": "''",
|
|
7299
|
+
"fieldName": "label"
|
|
7300
|
+
},
|
|
7301
|
+
{
|
|
7302
|
+
"name": "description",
|
|
7303
|
+
"type": {
|
|
7304
|
+
"text": "string"
|
|
7305
|
+
},
|
|
7306
|
+
"description": "The accessible description of the dialog.",
|
|
7307
|
+
"default": "''",
|
|
7308
|
+
"fieldName": "description"
|
|
7223
7309
|
}
|
|
7224
7310
|
],
|
|
7225
7311
|
"mixins": [
|
|
@@ -10070,14 +10156,25 @@
|
|
|
10070
10156
|
},
|
|
10071
10157
|
{
|
|
10072
10158
|
"kind": "field",
|
|
10073
|
-
"name": "
|
|
10159
|
+
"name": "pressed",
|
|
10074
10160
|
"type": {
|
|
10075
10161
|
"text": "boolean"
|
|
10076
10162
|
},
|
|
10077
10163
|
"privacy": "public",
|
|
10078
|
-
"description": "Whether or not the button is
|
|
10164
|
+
"description": "Whether or not the toggle button is pressed. Only applies when `toggle` is `true`.",
|
|
10079
10165
|
"default": "false"
|
|
10080
10166
|
},
|
|
10167
|
+
{
|
|
10168
|
+
"kind": "field",
|
|
10169
|
+
"name": "on",
|
|
10170
|
+
"type": {
|
|
10171
|
+
"text": "boolean"
|
|
10172
|
+
},
|
|
10173
|
+
"privacy": "public",
|
|
10174
|
+
"description": "Alias for `pressed` _(deprecated)_. Whether or not the toggle button is pressed. Only applies when `toggle` is `true`.",
|
|
10175
|
+
"default": "false",
|
|
10176
|
+
"deprecated": "Use `pressed` instead."
|
|
10177
|
+
},
|
|
10081
10178
|
{
|
|
10082
10179
|
"kind": "field",
|
|
10083
10180
|
"name": "theme",
|
|
@@ -10085,7 +10182,7 @@
|
|
|
10085
10182
|
"text": "IconButtonTheme"
|
|
10086
10183
|
},
|
|
10087
10184
|
"privacy": "public",
|
|
10088
|
-
"description": "The
|
|
10185
|
+
"description": "The variant of the button. Valid values are `text`, `outlined`, `filled`, and `raised`.",
|
|
10089
10186
|
"default": "\"default\""
|
|
10090
10187
|
},
|
|
10091
10188
|
{
|
|
@@ -10102,7 +10199,7 @@
|
|
|
10102
10199
|
"kind": "field",
|
|
10103
10200
|
"name": "shape",
|
|
10104
10201
|
"type": {
|
|
10105
|
-
"text": "
|
|
10202
|
+
"text": "IconButtonShape"
|
|
10106
10203
|
},
|
|
10107
10204
|
"privacy": "public",
|
|
10108
10205
|
"description": "The shape of the button. Valid values are `circular` and `squared`.",
|
|
@@ -10120,13 +10217,13 @@
|
|
|
10120
10217
|
},
|
|
10121
10218
|
{
|
|
10122
10219
|
"kind": "field",
|
|
10123
|
-
"name": "
|
|
10220
|
+
"name": "name",
|
|
10124
10221
|
"type": {
|
|
10125
|
-
"text": "
|
|
10222
|
+
"text": "string"
|
|
10126
10223
|
},
|
|
10127
10224
|
"privacy": "public",
|
|
10128
|
-
"description": "The
|
|
10129
|
-
"default": "\"
|
|
10225
|
+
"description": "The name of the button.",
|
|
10226
|
+
"default": "\"\"",
|
|
10130
10227
|
"inheritedFrom": {
|
|
10131
10228
|
"name": "BaseButton",
|
|
10132
10229
|
"module": "src/lib/button/base/base-button.ts"
|
|
@@ -10134,13 +10231,13 @@
|
|
|
10134
10231
|
},
|
|
10135
10232
|
{
|
|
10136
10233
|
"kind": "field",
|
|
10137
|
-
"name": "
|
|
10234
|
+
"name": "value",
|
|
10138
10235
|
"type": {
|
|
10139
|
-
"text": "
|
|
10236
|
+
"text": "string"
|
|
10140
10237
|
},
|
|
10141
10238
|
"privacy": "public",
|
|
10142
|
-
"description": "
|
|
10143
|
-
"default": "
|
|
10239
|
+
"description": "The value of the button.",
|
|
10240
|
+
"default": "\"\"",
|
|
10144
10241
|
"inheritedFrom": {
|
|
10145
10242
|
"name": "BaseButton",
|
|
10146
10243
|
"module": "src/lib/button/base/base-button.ts"
|
|
@@ -10148,13 +10245,13 @@
|
|
|
10148
10245
|
},
|
|
10149
10246
|
{
|
|
10150
10247
|
"kind": "field",
|
|
10151
|
-
"name": "
|
|
10248
|
+
"name": "type",
|
|
10152
10249
|
"type": {
|
|
10153
|
-
"text": "
|
|
10250
|
+
"text": "ButtonType"
|
|
10154
10251
|
},
|
|
10155
10252
|
"privacy": "public",
|
|
10156
|
-
"description": "
|
|
10157
|
-
"default": "
|
|
10253
|
+
"description": "Sets the type of the button. Possible values are `button`, `submit`, and `reset`.",
|
|
10254
|
+
"default": "\"button\"",
|
|
10158
10255
|
"inheritedFrom": {
|
|
10159
10256
|
"name": "BaseButton",
|
|
10160
10257
|
"module": "src/lib/button/base/base-button.ts"
|
|
@@ -10162,12 +10259,12 @@
|
|
|
10162
10259
|
},
|
|
10163
10260
|
{
|
|
10164
10261
|
"kind": "field",
|
|
10165
|
-
"name": "
|
|
10262
|
+
"name": "disabled",
|
|
10166
10263
|
"type": {
|
|
10167
10264
|
"text": "boolean"
|
|
10168
10265
|
},
|
|
10169
10266
|
"privacy": "public",
|
|
10170
|
-
"description": "
|
|
10267
|
+
"description": "Disables the button.",
|
|
10171
10268
|
"default": "false",
|
|
10172
10269
|
"inheritedFrom": {
|
|
10173
10270
|
"name": "BaseButton",
|
|
@@ -10176,13 +10273,13 @@
|
|
|
10176
10273
|
},
|
|
10177
10274
|
{
|
|
10178
10275
|
"kind": "field",
|
|
10179
|
-
"name": "
|
|
10276
|
+
"name": "popoverIcon",
|
|
10180
10277
|
"type": {
|
|
10181
|
-
"text": "
|
|
10278
|
+
"text": "boolean"
|
|
10182
10279
|
},
|
|
10183
10280
|
"privacy": "public",
|
|
10184
|
-
"description": "
|
|
10185
|
-
"default": "
|
|
10281
|
+
"description": "Shows a popover icon on the button.",
|
|
10282
|
+
"default": "false",
|
|
10186
10283
|
"inheritedFrom": {
|
|
10187
10284
|
"name": "BaseButton",
|
|
10188
10285
|
"module": "src/lib/button/base/base-button.ts"
|
|
@@ -10190,13 +10287,13 @@
|
|
|
10190
10287
|
},
|
|
10191
10288
|
{
|
|
10192
10289
|
"kind": "field",
|
|
10193
|
-
"name": "
|
|
10290
|
+
"name": "dense",
|
|
10194
10291
|
"type": {
|
|
10195
|
-
"text": "
|
|
10292
|
+
"text": "boolean"
|
|
10196
10293
|
},
|
|
10197
10294
|
"privacy": "public",
|
|
10198
|
-
"description": "
|
|
10199
|
-
"default": "
|
|
10295
|
+
"description": "Sets the density of the button.",
|
|
10296
|
+
"default": "false",
|
|
10200
10297
|
"inheritedFrom": {
|
|
10201
10298
|
"name": "BaseButton",
|
|
10202
10299
|
"module": "src/lib/button/base/base-button.ts"
|
|
@@ -10261,60 +10358,66 @@
|
|
|
10261
10358
|
"name": "forge-icon-button-toggle"
|
|
10262
10359
|
}
|
|
10263
10360
|
],
|
|
10264
|
-
"
|
|
10361
|
+
"superclass": {
|
|
10362
|
+
"name": "BaseButton",
|
|
10363
|
+
"module": "/src/lib/button/base/base-button"
|
|
10364
|
+
},
|
|
10365
|
+
"tagName": "forge-icon-button",
|
|
10366
|
+
"globalConfigProperties": [
|
|
10265
10367
|
{
|
|
10266
|
-
"
|
|
10267
|
-
|
|
10268
|
-
},
|
|
10269
|
-
"description": "Whether or not the icon button can be toggled.",
|
|
10270
|
-
"name": "toggle",
|
|
10271
|
-
"default": "false"
|
|
10368
|
+
"name": "variant",
|
|
10369
|
+
"description": ""
|
|
10272
10370
|
},
|
|
10273
10371
|
{
|
|
10274
|
-
"
|
|
10275
|
-
|
|
10276
|
-
},
|
|
10277
|
-
"description": "Whether or not the button is on. Only applies when `toggle` is `true`.",
|
|
10278
|
-
"name": "on",
|
|
10279
|
-
"default": "false"
|
|
10372
|
+
"name": "shape",
|
|
10373
|
+
"description": ""
|
|
10280
10374
|
},
|
|
10281
10375
|
{
|
|
10282
|
-
"
|
|
10283
|
-
|
|
10284
|
-
|
|
10285
|
-
|
|
10286
|
-
|
|
10287
|
-
|
|
10376
|
+
"name": "density",
|
|
10377
|
+
"description": ""
|
|
10378
|
+
}
|
|
10379
|
+
],
|
|
10380
|
+
"cssClasses": [
|
|
10381
|
+
{
|
|
10382
|
+
"name": "forge-icon-button",
|
|
10383
|
+
"description": "Apply to the interactive button element."
|
|
10288
10384
|
},
|
|
10289
10385
|
{
|
|
10290
|
-
"
|
|
10291
|
-
|
|
10292
|
-
},
|
|
10293
|
-
"description": "The theme of the button. Valid values are `default`, `primary`, `secondary`, `tertiary`, `success`, `error`, `warning`, `info`.",
|
|
10294
|
-
"name": "theme",
|
|
10295
|
-
"default": "\"default\""
|
|
10386
|
+
"name": "forge-icon-button--outlined",
|
|
10387
|
+
"description": "The outlined variant."
|
|
10296
10388
|
},
|
|
10297
10389
|
{
|
|
10298
|
-
"
|
|
10299
|
-
|
|
10300
|
-
},
|
|
10301
|
-
"description": "The shape of the button. Valid values are `circular` and `squared`.",
|
|
10302
|
-
"name": "shape",
|
|
10303
|
-
"default": "\"circular\""
|
|
10390
|
+
"name": "forge-icon-button--tonal",
|
|
10391
|
+
"description": "The tonal variant."
|
|
10304
10392
|
},
|
|
10305
10393
|
{
|
|
10306
|
-
"
|
|
10307
|
-
|
|
10308
|
-
},
|
|
10309
|
-
"description": "The density of the button. Valid values are `small`, `medium`, and `large`.",
|
|
10310
|
-
"name": "density",
|
|
10311
|
-
"default": "\"large\""
|
|
10394
|
+
"name": "forge-icon-button--filled",
|
|
10395
|
+
"description": "The filled variant."
|
|
10312
10396
|
},
|
|
10397
|
+
{
|
|
10398
|
+
"name": "forge-icon-button--raised",
|
|
10399
|
+
"description": "The raised variant."
|
|
10400
|
+
},
|
|
10401
|
+
{
|
|
10402
|
+
"name": "forge-icon-button--small",
|
|
10403
|
+
"description": "The small density."
|
|
10404
|
+
},
|
|
10405
|
+
{
|
|
10406
|
+
"name": "forge-icon-button--medium",
|
|
10407
|
+
"description": "The medium density."
|
|
10408
|
+
},
|
|
10409
|
+
{
|
|
10410
|
+
"name": "forge-icon-button--squared",
|
|
10411
|
+
"description": "The squared shape."
|
|
10412
|
+
}
|
|
10413
|
+
],
|
|
10414
|
+
"customElement": true,
|
|
10415
|
+
"attributes": [
|
|
10313
10416
|
{
|
|
10314
10417
|
"type": {
|
|
10315
10418
|
"text": "ButtonType"
|
|
10316
10419
|
},
|
|
10317
|
-
"description": "
|
|
10420
|
+
"description": "Sets the type of the button. Possible values are `button`, `submit`, and `reset`.",
|
|
10318
10421
|
"name": "type",
|
|
10319
10422
|
"default": "\"button\"",
|
|
10320
10423
|
"inheritedFrom": {
|
|
@@ -10326,7 +10429,7 @@
|
|
|
10326
10429
|
"type": {
|
|
10327
10430
|
"text": "boolean"
|
|
10328
10431
|
},
|
|
10329
|
-
"description": "
|
|
10432
|
+
"description": "Disables the button.",
|
|
10330
10433
|
"name": "disabled",
|
|
10331
10434
|
"default": "false",
|
|
10332
10435
|
"inheritedFrom": {
|
|
@@ -10338,7 +10441,7 @@
|
|
|
10338
10441
|
"type": {
|
|
10339
10442
|
"text": "boolean"
|
|
10340
10443
|
},
|
|
10341
|
-
"description": "
|
|
10444
|
+
"description": "Shows a popover icon on the button.",
|
|
10342
10445
|
"name": "popover-icon",
|
|
10343
10446
|
"default": "false",
|
|
10344
10447
|
"inheritedFrom": {
|
|
@@ -10350,7 +10453,7 @@
|
|
|
10350
10453
|
"type": {
|
|
10351
10454
|
"text": "boolean"
|
|
10352
10455
|
},
|
|
10353
|
-
"description": "
|
|
10456
|
+
"description": "Sets the density of the button.",
|
|
10354
10457
|
"name": "dense",
|
|
10355
10458
|
"default": "false",
|
|
10356
10459
|
"inheritedFrom": {
|
|
@@ -10374,7 +10477,7 @@
|
|
|
10374
10477
|
"type": {
|
|
10375
10478
|
"text": "string"
|
|
10376
10479
|
},
|
|
10377
|
-
"description": "The
|
|
10480
|
+
"description": "The value of the button.",
|
|
10378
10481
|
"name": "value",
|
|
10379
10482
|
"default": "\"\"",
|
|
10380
10483
|
"inheritedFrom": {
|
|
@@ -10382,62 +10485,7 @@
|
|
|
10382
10485
|
"module": "src/lib/button/base/base-button.ts"
|
|
10383
10486
|
}
|
|
10384
10487
|
}
|
|
10385
|
-
]
|
|
10386
|
-
"superclass": {
|
|
10387
|
-
"name": "BaseButton",
|
|
10388
|
-
"module": "/src/lib/button/base/base-button"
|
|
10389
|
-
},
|
|
10390
|
-
"tagName": "forge-icon-button",
|
|
10391
|
-
"summary": "Icons buttons are used to trigger an action or event.",
|
|
10392
|
-
"globalConfigProperties": [
|
|
10393
|
-
{
|
|
10394
|
-
"name": "variant",
|
|
10395
|
-
"description": ""
|
|
10396
|
-
},
|
|
10397
|
-
{
|
|
10398
|
-
"name": "shape",
|
|
10399
|
-
"description": ""
|
|
10400
|
-
},
|
|
10401
|
-
{
|
|
10402
|
-
"name": "density",
|
|
10403
|
-
"description": ""
|
|
10404
|
-
}
|
|
10405
|
-
],
|
|
10406
|
-
"cssClasses": [
|
|
10407
|
-
{
|
|
10408
|
-
"name": "forge-icon-button",
|
|
10409
|
-
"description": "Apply to the interactive button element."
|
|
10410
|
-
},
|
|
10411
|
-
{
|
|
10412
|
-
"name": "forge-icon-button--outlined",
|
|
10413
|
-
"description": "The outlined variant."
|
|
10414
|
-
},
|
|
10415
|
-
{
|
|
10416
|
-
"name": "forge-icon-button--tonal",
|
|
10417
|
-
"description": "The tonal variant."
|
|
10418
|
-
},
|
|
10419
|
-
{
|
|
10420
|
-
"name": "forge-icon-button--filled",
|
|
10421
|
-
"description": "The filled variant."
|
|
10422
|
-
},
|
|
10423
|
-
{
|
|
10424
|
-
"name": "forge-icon-button--raised",
|
|
10425
|
-
"description": "The raised variant."
|
|
10426
|
-
},
|
|
10427
|
-
{
|
|
10428
|
-
"name": "forge-icon-button--small",
|
|
10429
|
-
"description": "The small density."
|
|
10430
|
-
},
|
|
10431
|
-
{
|
|
10432
|
-
"name": "forge-icon-button--medium",
|
|
10433
|
-
"description": "The medium density."
|
|
10434
|
-
},
|
|
10435
|
-
{
|
|
10436
|
-
"name": "forge-icon-button--squared",
|
|
10437
|
-
"description": "The squared shape."
|
|
10438
|
-
}
|
|
10439
|
-
],
|
|
10440
|
-
"customElement": true
|
|
10488
|
+
]
|
|
10441
10489
|
}
|
|
10442
10490
|
],
|
|
10443
10491
|
"exports": [
|
|
@@ -16323,6 +16371,10 @@
|
|
|
16323
16371
|
"description": "How the switch and label are distributed along their main axis.",
|
|
16324
16372
|
"name": "--forge-switch-justify"
|
|
16325
16373
|
},
|
|
16374
|
+
{
|
|
16375
|
+
"description": "How the switch and label are distributed along their cross axis.",
|
|
16376
|
+
"name": "--forge-switch-align"
|
|
16377
|
+
},
|
|
16326
16378
|
{
|
|
16327
16379
|
"description": "Whether the switch and label are arranged along the inline or block axis.",
|
|
16328
16380
|
"name": "--forge-switch-direction"
|
|
@@ -21152,186 +21204,6 @@
|
|
|
21152
21204
|
}
|
|
21153
21205
|
]
|
|
21154
21206
|
},
|
|
21155
|
-
{
|
|
21156
|
-
"kind": "javascript-module",
|
|
21157
|
-
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
21158
|
-
"declarations": [
|
|
21159
|
-
{
|
|
21160
|
-
"kind": "class",
|
|
21161
|
-
"description": "",
|
|
21162
|
-
"name": "AppBarSearchComponent",
|
|
21163
|
-
"cssProperties": [
|
|
21164
|
-
{
|
|
21165
|
-
"description": "Controls the border-color of the container outline, the font-color, and icon color.",
|
|
21166
|
-
"name": "--forge-theme-on-primary"
|
|
21167
|
-
},
|
|
21168
|
-
{
|
|
21169
|
-
"description": "Controls the font color of the buttons.",
|
|
21170
|
-
"name": "--forge-theme-on-surface"
|
|
21171
|
-
},
|
|
21172
|
-
{
|
|
21173
|
-
"description": "Controls the placeholder font color.",
|
|
21174
|
-
"name": "--forge-theme-text-medium"
|
|
21175
|
-
},
|
|
21176
|
-
{
|
|
21177
|
-
"description": "Controls the background-color of the container.",
|
|
21178
|
-
"name": "--forge-app-bar-search-theme-background"
|
|
21179
|
-
},
|
|
21180
|
-
{
|
|
21181
|
-
"description": "Controls the focused background-color of the container.",
|
|
21182
|
-
"name": "--forge-app-bar-search-theme-background-focused"
|
|
21183
|
-
},
|
|
21184
|
-
{
|
|
21185
|
-
"description": "Controls the hover opacity of the outline.",
|
|
21186
|
-
"name": "--forge-app-bar-search-theme-hover-opacity"
|
|
21187
|
-
},
|
|
21188
|
-
{
|
|
21189
|
-
"description": "Controls the disabled opacity of the component.",
|
|
21190
|
-
"name": "--forge-app-bar-search-theme-disabled-opacity"
|
|
21191
|
-
}
|
|
21192
|
-
],
|
|
21193
|
-
"cssParts": [
|
|
21194
|
-
{
|
|
21195
|
-
"description": "The root element",
|
|
21196
|
-
"name": "root"
|
|
21197
|
-
},
|
|
21198
|
-
{
|
|
21199
|
-
"description": "The input container element.",
|
|
21200
|
-
"name": "container"
|
|
21201
|
-
},
|
|
21202
|
-
{
|
|
21203
|
-
"description": "The icon container element.",
|
|
21204
|
-
"name": "icon-container"
|
|
21205
|
-
},
|
|
21206
|
-
{
|
|
21207
|
-
"description": "The <forge-icon> element.",
|
|
21208
|
-
"name": "icon"
|
|
21209
|
-
},
|
|
21210
|
-
{
|
|
21211
|
-
"description": "The context container element.",
|
|
21212
|
-
"name": "context"
|
|
21213
|
-
},
|
|
21214
|
-
{
|
|
21215
|
-
"description": "The context divider element.",
|
|
21216
|
-
"name": "context-divider"
|
|
21217
|
-
},
|
|
21218
|
-
{
|
|
21219
|
-
"description": "The context button element.",
|
|
21220
|
-
"name": "context-button"
|
|
21221
|
-
},
|
|
21222
|
-
{
|
|
21223
|
-
"description": "The context button text element.",
|
|
21224
|
-
"name": "context-button-text"
|
|
21225
|
-
},
|
|
21226
|
-
{
|
|
21227
|
-
"description": "The context button icon element.",
|
|
21228
|
-
"name": "context-button-icon"
|
|
21229
|
-
},
|
|
21230
|
-
{
|
|
21231
|
-
"description": "The global icon container element.",
|
|
21232
|
-
"name": "global-icon-container"
|
|
21233
|
-
},
|
|
21234
|
-
{
|
|
21235
|
-
"description": "The global icon <forge-icon> element.",
|
|
21236
|
-
"name": "global-icon"
|
|
21237
|
-
},
|
|
21238
|
-
{
|
|
21239
|
-
"description": "The action container element around the slot.",
|
|
21240
|
-
"name": "actions-container"
|
|
21241
|
-
}
|
|
21242
|
-
],
|
|
21243
|
-
"slots": [
|
|
21244
|
-
{
|
|
21245
|
-
"description": "The default (unnamed) slot is where child `<input>` elements will be placed.",
|
|
21246
|
-
"name": ""
|
|
21247
|
-
},
|
|
21248
|
-
{
|
|
21249
|
-
"description": "Places actions at the end of the input.",
|
|
21250
|
-
"name": "action"
|
|
21251
|
-
}
|
|
21252
|
-
],
|
|
21253
|
-
"members": [
|
|
21254
|
-
{
|
|
21255
|
-
"kind": "field",
|
|
21256
|
-
"name": "value",
|
|
21257
|
-
"type": {
|
|
21258
|
-
"text": "string"
|
|
21259
|
-
},
|
|
21260
|
-
"privacy": "public",
|
|
21261
|
-
"description": "The value of the input."
|
|
21262
|
-
},
|
|
21263
|
-
{
|
|
21264
|
-
"kind": "field",
|
|
21265
|
-
"name": "disabled",
|
|
21266
|
-
"type": {
|
|
21267
|
-
"text": "boolean"
|
|
21268
|
-
},
|
|
21269
|
-
"privacy": "public",
|
|
21270
|
-
"description": "A boolean property that, if true, indicates that the input should be disabled.",
|
|
21271
|
-
"default": "false"
|
|
21272
|
-
},
|
|
21273
|
-
{
|
|
21274
|
-
"kind": "field",
|
|
21275
|
-
"name": "placeholder",
|
|
21276
|
-
"type": {
|
|
21277
|
-
"text": "string"
|
|
21278
|
-
},
|
|
21279
|
-
"privacy": "public",
|
|
21280
|
-
"description": "The placeholder text of the input."
|
|
21281
|
-
}
|
|
21282
|
-
],
|
|
21283
|
-
"events": [
|
|
21284
|
-
{
|
|
21285
|
-
"type": {
|
|
21286
|
-
"text": "CustomEvent<IAppBarSearchInputEventData>"
|
|
21287
|
-
},
|
|
21288
|
-
"description": "Emits when the users executes the search via pressing the Enter key while the `<input>` has focus.",
|
|
21289
|
-
"name": "forge-app-bar-search-input"
|
|
21290
|
-
}
|
|
21291
|
-
],
|
|
21292
|
-
"attributes": [
|
|
21293
|
-
{
|
|
21294
|
-
"type": {
|
|
21295
|
-
"text": "boolean"
|
|
21296
|
-
},
|
|
21297
|
-
"description": "A boolean attribute that, if present, indicates that the input should be disabled.",
|
|
21298
|
-
"name": "disabled",
|
|
21299
|
-
"default": "false"
|
|
21300
|
-
},
|
|
21301
|
-
{
|
|
21302
|
-
"type": {
|
|
21303
|
-
"text": "string"
|
|
21304
|
-
},
|
|
21305
|
-
"description": "The value of the input.",
|
|
21306
|
-
"name": "value"
|
|
21307
|
-
},
|
|
21308
|
-
{
|
|
21309
|
-
"type": {
|
|
21310
|
-
"text": "string"
|
|
21311
|
-
},
|
|
21312
|
-
"description": "The placeholder text of the input.",
|
|
21313
|
-
"name": "placeholder"
|
|
21314
|
-
}
|
|
21315
|
-
],
|
|
21316
|
-
"superclass": {
|
|
21317
|
-
"name": "BaseComponent",
|
|
21318
|
-
"module": "/src/lib/core/base/base-component"
|
|
21319
|
-
},
|
|
21320
|
-
"tagName": "forge-app-bar-search",
|
|
21321
|
-
"customElement": true
|
|
21322
|
-
}
|
|
21323
|
-
],
|
|
21324
|
-
"exports": [
|
|
21325
|
-
{
|
|
21326
|
-
"kind": "js",
|
|
21327
|
-
"name": "AppBarSearchComponent",
|
|
21328
|
-
"declaration": {
|
|
21329
|
-
"name": "AppBarSearchComponent",
|
|
21330
|
-
"module": "src/lib/app-bar/search/app-bar-search.ts"
|
|
21331
|
-
}
|
|
21332
|
-
}
|
|
21333
|
-
]
|
|
21334
|
-
},
|
|
21335
21207
|
{
|
|
21336
21208
|
"kind": "javascript-module",
|
|
21337
21209
|
"path": "src/lib/button/base/base-button.ts",
|
|
@@ -21522,6 +21394,186 @@
|
|
|
21522
21394
|
}
|
|
21523
21395
|
]
|
|
21524
21396
|
},
|
|
21397
|
+
{
|
|
21398
|
+
"kind": "javascript-module",
|
|
21399
|
+
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
21400
|
+
"declarations": [
|
|
21401
|
+
{
|
|
21402
|
+
"kind": "class",
|
|
21403
|
+
"description": "",
|
|
21404
|
+
"name": "AppBarSearchComponent",
|
|
21405
|
+
"cssProperties": [
|
|
21406
|
+
{
|
|
21407
|
+
"description": "Controls the border-color of the container outline, the font-color, and icon color.",
|
|
21408
|
+
"name": "--forge-theme-on-primary"
|
|
21409
|
+
},
|
|
21410
|
+
{
|
|
21411
|
+
"description": "Controls the font color of the buttons.",
|
|
21412
|
+
"name": "--forge-theme-on-surface"
|
|
21413
|
+
},
|
|
21414
|
+
{
|
|
21415
|
+
"description": "Controls the placeholder font color.",
|
|
21416
|
+
"name": "--forge-theme-text-medium"
|
|
21417
|
+
},
|
|
21418
|
+
{
|
|
21419
|
+
"description": "Controls the background-color of the container.",
|
|
21420
|
+
"name": "--forge-app-bar-search-theme-background"
|
|
21421
|
+
},
|
|
21422
|
+
{
|
|
21423
|
+
"description": "Controls the focused background-color of the container.",
|
|
21424
|
+
"name": "--forge-app-bar-search-theme-background-focused"
|
|
21425
|
+
},
|
|
21426
|
+
{
|
|
21427
|
+
"description": "Controls the hover opacity of the outline.",
|
|
21428
|
+
"name": "--forge-app-bar-search-theme-hover-opacity"
|
|
21429
|
+
},
|
|
21430
|
+
{
|
|
21431
|
+
"description": "Controls the disabled opacity of the component.",
|
|
21432
|
+
"name": "--forge-app-bar-search-theme-disabled-opacity"
|
|
21433
|
+
}
|
|
21434
|
+
],
|
|
21435
|
+
"cssParts": [
|
|
21436
|
+
{
|
|
21437
|
+
"description": "The root element",
|
|
21438
|
+
"name": "root"
|
|
21439
|
+
},
|
|
21440
|
+
{
|
|
21441
|
+
"description": "The input container element.",
|
|
21442
|
+
"name": "container"
|
|
21443
|
+
},
|
|
21444
|
+
{
|
|
21445
|
+
"description": "The icon container element.",
|
|
21446
|
+
"name": "icon-container"
|
|
21447
|
+
},
|
|
21448
|
+
{
|
|
21449
|
+
"description": "The <forge-icon> element.",
|
|
21450
|
+
"name": "icon"
|
|
21451
|
+
},
|
|
21452
|
+
{
|
|
21453
|
+
"description": "The context container element.",
|
|
21454
|
+
"name": "context"
|
|
21455
|
+
},
|
|
21456
|
+
{
|
|
21457
|
+
"description": "The context divider element.",
|
|
21458
|
+
"name": "context-divider"
|
|
21459
|
+
},
|
|
21460
|
+
{
|
|
21461
|
+
"description": "The context button element.",
|
|
21462
|
+
"name": "context-button"
|
|
21463
|
+
},
|
|
21464
|
+
{
|
|
21465
|
+
"description": "The context button text element.",
|
|
21466
|
+
"name": "context-button-text"
|
|
21467
|
+
},
|
|
21468
|
+
{
|
|
21469
|
+
"description": "The context button icon element.",
|
|
21470
|
+
"name": "context-button-icon"
|
|
21471
|
+
},
|
|
21472
|
+
{
|
|
21473
|
+
"description": "The global icon container element.",
|
|
21474
|
+
"name": "global-icon-container"
|
|
21475
|
+
},
|
|
21476
|
+
{
|
|
21477
|
+
"description": "The global icon <forge-icon> element.",
|
|
21478
|
+
"name": "global-icon"
|
|
21479
|
+
},
|
|
21480
|
+
{
|
|
21481
|
+
"description": "The action container element around the slot.",
|
|
21482
|
+
"name": "actions-container"
|
|
21483
|
+
}
|
|
21484
|
+
],
|
|
21485
|
+
"slots": [
|
|
21486
|
+
{
|
|
21487
|
+
"description": "The default (unnamed) slot is where child `<input>` elements will be placed.",
|
|
21488
|
+
"name": ""
|
|
21489
|
+
},
|
|
21490
|
+
{
|
|
21491
|
+
"description": "Places actions at the end of the input.",
|
|
21492
|
+
"name": "action"
|
|
21493
|
+
}
|
|
21494
|
+
],
|
|
21495
|
+
"members": [
|
|
21496
|
+
{
|
|
21497
|
+
"kind": "field",
|
|
21498
|
+
"name": "value",
|
|
21499
|
+
"type": {
|
|
21500
|
+
"text": "string"
|
|
21501
|
+
},
|
|
21502
|
+
"privacy": "public",
|
|
21503
|
+
"description": "The value of the input."
|
|
21504
|
+
},
|
|
21505
|
+
{
|
|
21506
|
+
"kind": "field",
|
|
21507
|
+
"name": "disabled",
|
|
21508
|
+
"type": {
|
|
21509
|
+
"text": "boolean"
|
|
21510
|
+
},
|
|
21511
|
+
"privacy": "public",
|
|
21512
|
+
"description": "A boolean property that, if true, indicates that the input should be disabled.",
|
|
21513
|
+
"default": "false"
|
|
21514
|
+
},
|
|
21515
|
+
{
|
|
21516
|
+
"kind": "field",
|
|
21517
|
+
"name": "placeholder",
|
|
21518
|
+
"type": {
|
|
21519
|
+
"text": "string"
|
|
21520
|
+
},
|
|
21521
|
+
"privacy": "public",
|
|
21522
|
+
"description": "The placeholder text of the input."
|
|
21523
|
+
}
|
|
21524
|
+
],
|
|
21525
|
+
"events": [
|
|
21526
|
+
{
|
|
21527
|
+
"type": {
|
|
21528
|
+
"text": "CustomEvent<IAppBarSearchInputEventData>"
|
|
21529
|
+
},
|
|
21530
|
+
"description": "Emits when the users executes the search via pressing the Enter key while the `<input>` has focus.",
|
|
21531
|
+
"name": "forge-app-bar-search-input"
|
|
21532
|
+
}
|
|
21533
|
+
],
|
|
21534
|
+
"attributes": [
|
|
21535
|
+
{
|
|
21536
|
+
"type": {
|
|
21537
|
+
"text": "boolean"
|
|
21538
|
+
},
|
|
21539
|
+
"description": "A boolean attribute that, if present, indicates that the input should be disabled.",
|
|
21540
|
+
"name": "disabled",
|
|
21541
|
+
"default": "false"
|
|
21542
|
+
},
|
|
21543
|
+
{
|
|
21544
|
+
"type": {
|
|
21545
|
+
"text": "string"
|
|
21546
|
+
},
|
|
21547
|
+
"description": "The value of the input.",
|
|
21548
|
+
"name": "value"
|
|
21549
|
+
},
|
|
21550
|
+
{
|
|
21551
|
+
"type": {
|
|
21552
|
+
"text": "string"
|
|
21553
|
+
},
|
|
21554
|
+
"description": "The placeholder text of the input.",
|
|
21555
|
+
"name": "placeholder"
|
|
21556
|
+
}
|
|
21557
|
+
],
|
|
21558
|
+
"superclass": {
|
|
21559
|
+
"name": "BaseComponent",
|
|
21560
|
+
"module": "/src/lib/core/base/base-component"
|
|
21561
|
+
},
|
|
21562
|
+
"tagName": "forge-app-bar-search",
|
|
21563
|
+
"customElement": true
|
|
21564
|
+
}
|
|
21565
|
+
],
|
|
21566
|
+
"exports": [
|
|
21567
|
+
{
|
|
21568
|
+
"kind": "js",
|
|
21569
|
+
"name": "AppBarSearchComponent",
|
|
21570
|
+
"declaration": {
|
|
21571
|
+
"name": "AppBarSearchComponent",
|
|
21572
|
+
"module": "src/lib/app-bar/search/app-bar-search.ts"
|
|
21573
|
+
}
|
|
21574
|
+
}
|
|
21575
|
+
]
|
|
21576
|
+
},
|
|
21525
21577
|
{
|
|
21526
21578
|
"kind": "javascript-module",
|
|
21527
21579
|
"path": "src/lib/button-toggle/button-toggle/button-toggle.ts",
|
|
@@ -24607,188 +24659,6 @@
|
|
|
24607
24659
|
}
|
|
24608
24660
|
]
|
|
24609
24661
|
},
|
|
24610
|
-
{
|
|
24611
|
-
"kind": "javascript-module",
|
|
24612
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
24613
|
-
"declarations": [
|
|
24614
|
-
{
|
|
24615
|
-
"kind": "class",
|
|
24616
|
-
"description": "",
|
|
24617
|
-
"name": "ModalDrawerComponent",
|
|
24618
|
-
"cssProperties": [
|
|
24619
|
-
{
|
|
24620
|
-
"description": "The width of the drawer.",
|
|
24621
|
-
"name": "--forge-drawer-width"
|
|
24622
|
-
},
|
|
24623
|
-
{
|
|
24624
|
-
"description": "The background color of the drawer.",
|
|
24625
|
-
"name": "--forge-drawer-background"
|
|
24626
|
-
},
|
|
24627
|
-
{
|
|
24628
|
-
"description": "The border of the drawer.",
|
|
24629
|
-
"name": "--forge-drawer-border-color"
|
|
24630
|
-
},
|
|
24631
|
-
{
|
|
24632
|
-
"description": "The border width of the drawer.",
|
|
24633
|
-
"name": "--forge-drawer-border-width"
|
|
24634
|
-
},
|
|
24635
|
-
{
|
|
24636
|
-
"description": "The transition duration of the drawer.",
|
|
24637
|
-
"name": "--forge-drawer-transition-duration"
|
|
24638
|
-
},
|
|
24639
|
-
{
|
|
24640
|
-
"description": "The transition timing function of the drawer.",
|
|
24641
|
-
"name": "--forge-drawer-transition-easing"
|
|
24642
|
-
},
|
|
24643
|
-
{
|
|
24644
|
-
"description": "The duration of the drawer closing animation.",
|
|
24645
|
-
"name": "--forge-drawer-duration-close"
|
|
24646
|
-
}
|
|
24647
|
-
],
|
|
24648
|
-
"cssParts": [
|
|
24649
|
-
{
|
|
24650
|
-
"description": "The component's root element.",
|
|
24651
|
-
"name": "root"
|
|
24652
|
-
},
|
|
24653
|
-
{
|
|
24654
|
-
"description": "The content container element.",
|
|
24655
|
-
"name": "content"
|
|
24656
|
-
},
|
|
24657
|
-
{
|
|
24658
|
-
"description": "The backdrop root element.",
|
|
24659
|
-
"name": "backdrop"
|
|
24660
|
-
}
|
|
24661
|
-
],
|
|
24662
|
-
"slots": [
|
|
24663
|
-
{
|
|
24664
|
-
"description": "The content to display in the scrollable content container.",
|
|
24665
|
-
"name": ""
|
|
24666
|
-
},
|
|
24667
|
-
{
|
|
24668
|
-
"description": "The header content above the main content.",
|
|
24669
|
-
"name": "header"
|
|
24670
|
-
},
|
|
24671
|
-
{
|
|
24672
|
-
"description": "The footer content below the main content.",
|
|
24673
|
-
"name": "footer"
|
|
24674
|
-
}
|
|
24675
|
-
],
|
|
24676
|
-
"members": [
|
|
24677
|
-
{
|
|
24678
|
-
"kind": "field",
|
|
24679
|
-
"name": "open",
|
|
24680
|
-
"type": {
|
|
24681
|
-
"text": "boolean"
|
|
24682
|
-
},
|
|
24683
|
-
"privacy": "public",
|
|
24684
|
-
"description": "Toggles whether the drawer is visible or not.",
|
|
24685
|
-
"default": "false",
|
|
24686
|
-
"attribute": "open",
|
|
24687
|
-
"inheritedFrom": {
|
|
24688
|
-
"name": "BaseDrawerComponent",
|
|
24689
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24690
|
-
}
|
|
24691
|
-
},
|
|
24692
|
-
{
|
|
24693
|
-
"kind": "field",
|
|
24694
|
-
"name": "direction",
|
|
24695
|
-
"type": {
|
|
24696
|
-
"text": "DrawerDirection"
|
|
24697
|
-
},
|
|
24698
|
-
"privacy": "public",
|
|
24699
|
-
"description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
|
|
24700
|
-
"default": "\"left\"",
|
|
24701
|
-
"attribute": "direction",
|
|
24702
|
-
"inheritedFrom": {
|
|
24703
|
-
"name": "BaseDrawerComponent",
|
|
24704
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24705
|
-
}
|
|
24706
|
-
}
|
|
24707
|
-
],
|
|
24708
|
-
"events": [
|
|
24709
|
-
{
|
|
24710
|
-
"type": {
|
|
24711
|
-
"text": "CustomEvent<void>"
|
|
24712
|
-
},
|
|
24713
|
-
"description": "Dispatched when the modal drawer is closed by clicking the backdrop.",
|
|
24714
|
-
"name": "forge-modal-drawer-close"
|
|
24715
|
-
},
|
|
24716
|
-
{
|
|
24717
|
-
"type": {
|
|
24718
|
-
"text": "CustomEvent<void>"
|
|
24719
|
-
},
|
|
24720
|
-
"description": "Dispatched after the drawer has opened.",
|
|
24721
|
-
"name": "forge-drawer-after-open",
|
|
24722
|
-
"inheritedFrom": {
|
|
24723
|
-
"name": "BaseDrawerComponent",
|
|
24724
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24725
|
-
}
|
|
24726
|
-
},
|
|
24727
|
-
{
|
|
24728
|
-
"type": {
|
|
24729
|
-
"text": "CustomEvent<void>"
|
|
24730
|
-
},
|
|
24731
|
-
"description": "Dispatched after the drawer has closed.",
|
|
24732
|
-
"name": "forge-drawer-after-close",
|
|
24733
|
-
"inheritedFrom": {
|
|
24734
|
-
"name": "BaseDrawerComponent",
|
|
24735
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24736
|
-
}
|
|
24737
|
-
}
|
|
24738
|
-
],
|
|
24739
|
-
"superclass": {
|
|
24740
|
-
"name": "BaseDrawerComponent",
|
|
24741
|
-
"module": "/src/lib/drawer/base"
|
|
24742
|
-
},
|
|
24743
|
-
"tagName": "forge-modal-drawer",
|
|
24744
|
-
"dependencies": [
|
|
24745
|
-
{
|
|
24746
|
-
"name": "forge-backdrop",
|
|
24747
|
-
"description": ""
|
|
24748
|
-
}
|
|
24749
|
-
],
|
|
24750
|
-
"customElement": true,
|
|
24751
|
-
"attributes": [
|
|
24752
|
-
{
|
|
24753
|
-
"name": "open",
|
|
24754
|
-
"type": {
|
|
24755
|
-
"text": "boolean"
|
|
24756
|
-
},
|
|
24757
|
-
"description": "Toggles whether the drawer is visible or not.",
|
|
24758
|
-
"default": "false",
|
|
24759
|
-
"fieldName": "open",
|
|
24760
|
-
"inheritedFrom": {
|
|
24761
|
-
"name": "BaseDrawerComponent",
|
|
24762
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24763
|
-
}
|
|
24764
|
-
},
|
|
24765
|
-
{
|
|
24766
|
-
"name": "direction",
|
|
24767
|
-
"type": {
|
|
24768
|
-
"text": "DrawerDirection"
|
|
24769
|
-
},
|
|
24770
|
-
"description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
|
|
24771
|
-
"default": "\"left\"",
|
|
24772
|
-
"fieldName": "direction",
|
|
24773
|
-
"inheritedFrom": {
|
|
24774
|
-
"name": "BaseDrawerComponent",
|
|
24775
|
-
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
24776
|
-
}
|
|
24777
|
-
}
|
|
24778
|
-
]
|
|
24779
|
-
}
|
|
24780
|
-
],
|
|
24781
|
-
"exports": [
|
|
24782
|
-
{
|
|
24783
|
-
"kind": "js",
|
|
24784
|
-
"name": "ModalDrawerComponent",
|
|
24785
|
-
"declaration": {
|
|
24786
|
-
"name": "ModalDrawerComponent",
|
|
24787
|
-
"module": "src/lib/drawer/modal-drawer/modal-drawer.ts"
|
|
24788
|
-
}
|
|
24789
|
-
}
|
|
24790
|
-
]
|
|
24791
|
-
},
|
|
24792
24662
|
{
|
|
24793
24663
|
"kind": "javascript-module",
|
|
24794
24664
|
"path": "src/lib/field/base/base-field.ts",
|
|
@@ -25856,6 +25726,188 @@
|
|
|
25856
25726
|
}
|
|
25857
25727
|
]
|
|
25858
25728
|
},
|
|
25729
|
+
{
|
|
25730
|
+
"kind": "javascript-module",
|
|
25731
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
25732
|
+
"declarations": [
|
|
25733
|
+
{
|
|
25734
|
+
"kind": "class",
|
|
25735
|
+
"description": "",
|
|
25736
|
+
"name": "ModalDrawerComponent",
|
|
25737
|
+
"cssProperties": [
|
|
25738
|
+
{
|
|
25739
|
+
"description": "The width of the drawer.",
|
|
25740
|
+
"name": "--forge-drawer-width"
|
|
25741
|
+
},
|
|
25742
|
+
{
|
|
25743
|
+
"description": "The background color of the drawer.",
|
|
25744
|
+
"name": "--forge-drawer-background"
|
|
25745
|
+
},
|
|
25746
|
+
{
|
|
25747
|
+
"description": "The border of the drawer.",
|
|
25748
|
+
"name": "--forge-drawer-border-color"
|
|
25749
|
+
},
|
|
25750
|
+
{
|
|
25751
|
+
"description": "The border width of the drawer.",
|
|
25752
|
+
"name": "--forge-drawer-border-width"
|
|
25753
|
+
},
|
|
25754
|
+
{
|
|
25755
|
+
"description": "The transition duration of the drawer.",
|
|
25756
|
+
"name": "--forge-drawer-transition-duration"
|
|
25757
|
+
},
|
|
25758
|
+
{
|
|
25759
|
+
"description": "The transition timing function of the drawer.",
|
|
25760
|
+
"name": "--forge-drawer-transition-easing"
|
|
25761
|
+
},
|
|
25762
|
+
{
|
|
25763
|
+
"description": "The duration of the drawer closing animation.",
|
|
25764
|
+
"name": "--forge-drawer-duration-close"
|
|
25765
|
+
}
|
|
25766
|
+
],
|
|
25767
|
+
"cssParts": [
|
|
25768
|
+
{
|
|
25769
|
+
"description": "The component's root element.",
|
|
25770
|
+
"name": "root"
|
|
25771
|
+
},
|
|
25772
|
+
{
|
|
25773
|
+
"description": "The content container element.",
|
|
25774
|
+
"name": "content"
|
|
25775
|
+
},
|
|
25776
|
+
{
|
|
25777
|
+
"description": "The backdrop root element.",
|
|
25778
|
+
"name": "backdrop"
|
|
25779
|
+
}
|
|
25780
|
+
],
|
|
25781
|
+
"slots": [
|
|
25782
|
+
{
|
|
25783
|
+
"description": "The content to display in the scrollable content container.",
|
|
25784
|
+
"name": ""
|
|
25785
|
+
},
|
|
25786
|
+
{
|
|
25787
|
+
"description": "The header content above the main content.",
|
|
25788
|
+
"name": "header"
|
|
25789
|
+
},
|
|
25790
|
+
{
|
|
25791
|
+
"description": "The footer content below the main content.",
|
|
25792
|
+
"name": "footer"
|
|
25793
|
+
}
|
|
25794
|
+
],
|
|
25795
|
+
"members": [
|
|
25796
|
+
{
|
|
25797
|
+
"kind": "field",
|
|
25798
|
+
"name": "open",
|
|
25799
|
+
"type": {
|
|
25800
|
+
"text": "boolean"
|
|
25801
|
+
},
|
|
25802
|
+
"privacy": "public",
|
|
25803
|
+
"description": "Toggles whether the drawer is visible or not.",
|
|
25804
|
+
"default": "false",
|
|
25805
|
+
"attribute": "open",
|
|
25806
|
+
"inheritedFrom": {
|
|
25807
|
+
"name": "BaseDrawerComponent",
|
|
25808
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25809
|
+
}
|
|
25810
|
+
},
|
|
25811
|
+
{
|
|
25812
|
+
"kind": "field",
|
|
25813
|
+
"name": "direction",
|
|
25814
|
+
"type": {
|
|
25815
|
+
"text": "DrawerDirection"
|
|
25816
|
+
},
|
|
25817
|
+
"privacy": "public",
|
|
25818
|
+
"description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
|
|
25819
|
+
"default": "\"left\"",
|
|
25820
|
+
"attribute": "direction",
|
|
25821
|
+
"inheritedFrom": {
|
|
25822
|
+
"name": "BaseDrawerComponent",
|
|
25823
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25824
|
+
}
|
|
25825
|
+
}
|
|
25826
|
+
],
|
|
25827
|
+
"events": [
|
|
25828
|
+
{
|
|
25829
|
+
"type": {
|
|
25830
|
+
"text": "CustomEvent<void>"
|
|
25831
|
+
},
|
|
25832
|
+
"description": "Dispatched when the modal drawer is closed by clicking the backdrop.",
|
|
25833
|
+
"name": "forge-modal-drawer-close"
|
|
25834
|
+
},
|
|
25835
|
+
{
|
|
25836
|
+
"type": {
|
|
25837
|
+
"text": "CustomEvent<void>"
|
|
25838
|
+
},
|
|
25839
|
+
"description": "Dispatched after the drawer has opened.",
|
|
25840
|
+
"name": "forge-drawer-after-open",
|
|
25841
|
+
"inheritedFrom": {
|
|
25842
|
+
"name": "BaseDrawerComponent",
|
|
25843
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25844
|
+
}
|
|
25845
|
+
},
|
|
25846
|
+
{
|
|
25847
|
+
"type": {
|
|
25848
|
+
"text": "CustomEvent<void>"
|
|
25849
|
+
},
|
|
25850
|
+
"description": "Dispatched after the drawer has closed.",
|
|
25851
|
+
"name": "forge-drawer-after-close",
|
|
25852
|
+
"inheritedFrom": {
|
|
25853
|
+
"name": "BaseDrawerComponent",
|
|
25854
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25855
|
+
}
|
|
25856
|
+
}
|
|
25857
|
+
],
|
|
25858
|
+
"superclass": {
|
|
25859
|
+
"name": "BaseDrawerComponent",
|
|
25860
|
+
"module": "/src/lib/drawer/base"
|
|
25861
|
+
},
|
|
25862
|
+
"tagName": "forge-modal-drawer",
|
|
25863
|
+
"dependencies": [
|
|
25864
|
+
{
|
|
25865
|
+
"name": "forge-backdrop",
|
|
25866
|
+
"description": ""
|
|
25867
|
+
}
|
|
25868
|
+
],
|
|
25869
|
+
"customElement": true,
|
|
25870
|
+
"attributes": [
|
|
25871
|
+
{
|
|
25872
|
+
"name": "open",
|
|
25873
|
+
"type": {
|
|
25874
|
+
"text": "boolean"
|
|
25875
|
+
},
|
|
25876
|
+
"description": "Toggles whether the drawer is visible or not.",
|
|
25877
|
+
"default": "false",
|
|
25878
|
+
"fieldName": "open",
|
|
25879
|
+
"inheritedFrom": {
|
|
25880
|
+
"name": "BaseDrawerComponent",
|
|
25881
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25882
|
+
}
|
|
25883
|
+
},
|
|
25884
|
+
{
|
|
25885
|
+
"name": "direction",
|
|
25886
|
+
"type": {
|
|
25887
|
+
"text": "DrawerDirection"
|
|
25888
|
+
},
|
|
25889
|
+
"description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
|
|
25890
|
+
"default": "\"left\"",
|
|
25891
|
+
"fieldName": "direction",
|
|
25892
|
+
"inheritedFrom": {
|
|
25893
|
+
"name": "BaseDrawerComponent",
|
|
25894
|
+
"module": "src/lib/drawer/base/base-drawer.ts"
|
|
25895
|
+
}
|
|
25896
|
+
}
|
|
25897
|
+
]
|
|
25898
|
+
}
|
|
25899
|
+
],
|
|
25900
|
+
"exports": [
|
|
25901
|
+
{
|
|
25902
|
+
"kind": "js",
|
|
25903
|
+
"name": "ModalDrawerComponent",
|
|
25904
|
+
"declaration": {
|
|
25905
|
+
"name": "ModalDrawerComponent",
|
|
25906
|
+
"module": "src/lib/drawer/modal-drawer/modal-drawer.ts"
|
|
25907
|
+
}
|
|
25908
|
+
}
|
|
25909
|
+
]
|
|
25910
|
+
},
|
|
25859
25911
|
{
|
|
25860
25912
|
"kind": "javascript-module",
|
|
25861
25913
|
"path": "src/lib/key/key/key.ts",
|
|
@@ -28095,6 +28147,10 @@
|
|
|
28095
28147
|
"description": "The alignment of the radio button and its label in the inline direction.",
|
|
28096
28148
|
"name": "--forge-radio-justify"
|
|
28097
28149
|
},
|
|
28150
|
+
{
|
|
28151
|
+
"description": "The alignment of the radio button and its label in the block direction.",
|
|
28152
|
+
"name": "--forge-radio-align"
|
|
28153
|
+
},
|
|
28098
28154
|
{
|
|
28099
28155
|
"description": "The direction of the radio button and its label.",
|
|
28100
28156
|
"name": "--forge-radio-direction"
|
|
@@ -28893,6 +28949,507 @@
|
|
|
28893
28949
|
}
|
|
28894
28950
|
]
|
|
28895
28951
|
},
|
|
28952
|
+
{
|
|
28953
|
+
"kind": "javascript-module",
|
|
28954
|
+
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
28955
|
+
"declarations": [
|
|
28956
|
+
{
|
|
28957
|
+
"kind": "class",
|
|
28958
|
+
"description": "",
|
|
28959
|
+
"name": "SelectDropdownComponent",
|
|
28960
|
+
"members": [
|
|
28961
|
+
{
|
|
28962
|
+
"kind": "field",
|
|
28963
|
+
"name": "target",
|
|
28964
|
+
"type": {
|
|
28965
|
+
"text": "string"
|
|
28966
|
+
},
|
|
28967
|
+
"privacy": "public",
|
|
28968
|
+
"description": "Sets the target element CSS selector"
|
|
28969
|
+
},
|
|
28970
|
+
{
|
|
28971
|
+
"kind": "field",
|
|
28972
|
+
"name": "selectedTextTarget",
|
|
28973
|
+
"type": {
|
|
28974
|
+
"text": "string"
|
|
28975
|
+
},
|
|
28976
|
+
"privacy": "public",
|
|
28977
|
+
"description": "Sets the selected text element CSS selector"
|
|
28978
|
+
},
|
|
28979
|
+
{
|
|
28980
|
+
"kind": "field",
|
|
28981
|
+
"name": "syncSelectedText",
|
|
28982
|
+
"type": {
|
|
28983
|
+
"text": "boolean"
|
|
28984
|
+
},
|
|
28985
|
+
"privacy": "public",
|
|
28986
|
+
"description": "Controls whether the selected text is synchronized to the target elements' text content. Default is false."
|
|
28987
|
+
},
|
|
28988
|
+
{
|
|
28989
|
+
"kind": "field",
|
|
28990
|
+
"name": "value",
|
|
28991
|
+
"type": {
|
|
28992
|
+
"text": "any"
|
|
28993
|
+
},
|
|
28994
|
+
"privacy": "public",
|
|
28995
|
+
"description": "Gets/sets the value.",
|
|
28996
|
+
"attribute": "value",
|
|
28997
|
+
"inheritedFrom": {
|
|
28998
|
+
"name": "BaseSelectComponent",
|
|
28999
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29000
|
+
}
|
|
29001
|
+
},
|
|
29002
|
+
{
|
|
29003
|
+
"kind": "field",
|
|
29004
|
+
"name": "selectedIndex",
|
|
29005
|
+
"type": {
|
|
29006
|
+
"text": "number | number[]"
|
|
29007
|
+
},
|
|
29008
|
+
"privacy": "public",
|
|
29009
|
+
"description": "Gets/sets the selected index.",
|
|
29010
|
+
"attribute": "selected-index",
|
|
29011
|
+
"inheritedFrom": {
|
|
29012
|
+
"name": "BaseSelectComponent",
|
|
29013
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29014
|
+
}
|
|
29015
|
+
},
|
|
29016
|
+
{
|
|
29017
|
+
"kind": "field",
|
|
29018
|
+
"name": "options",
|
|
29019
|
+
"type": {
|
|
29020
|
+
"text": "ISelectOption[] | ISelectOptionGroup[]"
|
|
29021
|
+
},
|
|
29022
|
+
"privacy": "public",
|
|
29023
|
+
"description": "Gets/sets the available options.",
|
|
29024
|
+
"inheritedFrom": {
|
|
29025
|
+
"name": "BaseSelectComponent",
|
|
29026
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29027
|
+
}
|
|
29028
|
+
},
|
|
29029
|
+
{
|
|
29030
|
+
"kind": "field",
|
|
29031
|
+
"name": "multiple",
|
|
29032
|
+
"type": {
|
|
29033
|
+
"text": "boolean"
|
|
29034
|
+
},
|
|
29035
|
+
"privacy": "public",
|
|
29036
|
+
"description": "Gets/sets the multiple select state.",
|
|
29037
|
+
"attribute": "multiple",
|
|
29038
|
+
"inheritedFrom": {
|
|
29039
|
+
"name": "BaseSelectComponent",
|
|
29040
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29041
|
+
}
|
|
29042
|
+
},
|
|
29043
|
+
{
|
|
29044
|
+
"kind": "field",
|
|
29045
|
+
"name": "open",
|
|
29046
|
+
"type": {
|
|
29047
|
+
"text": "boolean"
|
|
29048
|
+
},
|
|
29049
|
+
"privacy": "public",
|
|
29050
|
+
"description": "Gets the open state of the dropdown.",
|
|
29051
|
+
"attribute": "open",
|
|
29052
|
+
"inheritedFrom": {
|
|
29053
|
+
"name": "BaseSelectComponent",
|
|
29054
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29055
|
+
}
|
|
29056
|
+
},
|
|
29057
|
+
{
|
|
29058
|
+
"kind": "field",
|
|
29059
|
+
"name": "optionBuilder",
|
|
29060
|
+
"type": {
|
|
29061
|
+
"text": "SelectOptionBuilder"
|
|
29062
|
+
},
|
|
29063
|
+
"privacy": "public",
|
|
29064
|
+
"description": "Sets the option builder callback that will be executed when building the option list in the dropdown.",
|
|
29065
|
+
"inheritedFrom": {
|
|
29066
|
+
"name": "BaseSelectComponent",
|
|
29067
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29068
|
+
}
|
|
29069
|
+
},
|
|
29070
|
+
{
|
|
29071
|
+
"kind": "field",
|
|
29072
|
+
"name": "selectedTextBuilder",
|
|
29073
|
+
"type": {
|
|
29074
|
+
"text": "SelectSelectedTextBuilder"
|
|
29075
|
+
},
|
|
29076
|
+
"privacy": "public",
|
|
29077
|
+
"description": "Sets the selected text builder callback that will be executed when getting the selected text to display in the field.",
|
|
29078
|
+
"inheritedFrom": {
|
|
29079
|
+
"name": "BaseSelectComponent",
|
|
29080
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29081
|
+
}
|
|
29082
|
+
},
|
|
29083
|
+
{
|
|
29084
|
+
"kind": "field",
|
|
29085
|
+
"name": "beforeValueChange",
|
|
29086
|
+
"type": {
|
|
29087
|
+
"text": "SelectBeforeValueChangeCallback<any>"
|
|
29088
|
+
},
|
|
29089
|
+
"privacy": "public",
|
|
29090
|
+
"description": "Sets the callback to be executed when the user selects a value.",
|
|
29091
|
+
"inheritedFrom": {
|
|
29092
|
+
"name": "BaseSelectComponent",
|
|
29093
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29094
|
+
}
|
|
29095
|
+
},
|
|
29096
|
+
{
|
|
29097
|
+
"kind": "field",
|
|
29098
|
+
"name": "popupElement",
|
|
29099
|
+
"type": {
|
|
29100
|
+
"text": "IPopoverComponent | undefined"
|
|
29101
|
+
},
|
|
29102
|
+
"privacy": "public",
|
|
29103
|
+
"description": "Gets the popup element (when the dropdown is open).",
|
|
29104
|
+
"readonly": true,
|
|
29105
|
+
"inheritedFrom": {
|
|
29106
|
+
"name": "BaseSelectComponent",
|
|
29107
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29108
|
+
}
|
|
29109
|
+
},
|
|
29110
|
+
{
|
|
29111
|
+
"kind": "method",
|
|
29112
|
+
"name": "appendOptions",
|
|
29113
|
+
"privacy": "public",
|
|
29114
|
+
"return": {
|
|
29115
|
+
"type": {
|
|
29116
|
+
"text": "void"
|
|
29117
|
+
}
|
|
29118
|
+
},
|
|
29119
|
+
"parameters": [
|
|
29120
|
+
{
|
|
29121
|
+
"name": "options",
|
|
29122
|
+
"type": {
|
|
29123
|
+
"text": "ISelectOption[] | ISelectOptionGroup[]"
|
|
29124
|
+
}
|
|
29125
|
+
}
|
|
29126
|
+
],
|
|
29127
|
+
"description": "Dynamically appends options to the dropdown while it's open.",
|
|
29128
|
+
"inheritedFrom": {
|
|
29129
|
+
"name": "BaseSelectComponent",
|
|
29130
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29131
|
+
}
|
|
29132
|
+
},
|
|
29133
|
+
{
|
|
29134
|
+
"kind": "method",
|
|
29135
|
+
"name": "selectAll",
|
|
29136
|
+
"privacy": "public",
|
|
29137
|
+
"return": {
|
|
29138
|
+
"type": {
|
|
29139
|
+
"text": "void"
|
|
29140
|
+
}
|
|
29141
|
+
},
|
|
29142
|
+
"description": "Selects all options.",
|
|
29143
|
+
"inheritedFrom": {
|
|
29144
|
+
"name": "BaseSelectComponent",
|
|
29145
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29146
|
+
}
|
|
29147
|
+
},
|
|
29148
|
+
{
|
|
29149
|
+
"kind": "method",
|
|
29150
|
+
"name": "deselectAll",
|
|
29151
|
+
"privacy": "public",
|
|
29152
|
+
"return": {
|
|
29153
|
+
"type": {
|
|
29154
|
+
"text": "void"
|
|
29155
|
+
}
|
|
29156
|
+
},
|
|
29157
|
+
"description": "Deselects all options.",
|
|
29158
|
+
"inheritedFrom": {
|
|
29159
|
+
"name": "BaseSelectComponent",
|
|
29160
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29161
|
+
}
|
|
29162
|
+
},
|
|
29163
|
+
{
|
|
29164
|
+
"kind": "field",
|
|
29165
|
+
"name": "popupClasses",
|
|
29166
|
+
"type": {
|
|
29167
|
+
"text": "string | string[]"
|
|
29168
|
+
},
|
|
29169
|
+
"privacy": "public",
|
|
29170
|
+
"description": "Gets/sets the list of classes to apply to the popup element.",
|
|
29171
|
+
"attribute": "popup-classes",
|
|
29172
|
+
"inheritedFrom": {
|
|
29173
|
+
"name": "ListDropdownAware",
|
|
29174
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29175
|
+
}
|
|
29176
|
+
},
|
|
29177
|
+
{
|
|
29178
|
+
"kind": "field",
|
|
29179
|
+
"name": "popupHeaderBuilder",
|
|
29180
|
+
"type": {
|
|
29181
|
+
"text": "ListDropdownHeaderBuilder"
|
|
29182
|
+
},
|
|
29183
|
+
"privacy": "public",
|
|
29184
|
+
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
29185
|
+
"inheritedFrom": {
|
|
29186
|
+
"name": "ListDropdownAware",
|
|
29187
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29188
|
+
}
|
|
29189
|
+
},
|
|
29190
|
+
{
|
|
29191
|
+
"kind": "field",
|
|
29192
|
+
"name": "popupFooterBuilder",
|
|
29193
|
+
"type": {
|
|
29194
|
+
"text": "ListDropdownFooterBuilder"
|
|
29195
|
+
},
|
|
29196
|
+
"privacy": "public",
|
|
29197
|
+
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
29198
|
+
"inheritedFrom": {
|
|
29199
|
+
"name": "ListDropdownAware",
|
|
29200
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29201
|
+
}
|
|
29202
|
+
},
|
|
29203
|
+
{
|
|
29204
|
+
"kind": "field",
|
|
29205
|
+
"name": "syncPopupWidth",
|
|
29206
|
+
"type": {
|
|
29207
|
+
"text": "boolean"
|
|
29208
|
+
},
|
|
29209
|
+
"privacy": "public",
|
|
29210
|
+
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
29211
|
+
"default": "false",
|
|
29212
|
+
"attribute": "sync-popup-width",
|
|
29213
|
+
"inheritedFrom": {
|
|
29214
|
+
"name": "ListDropdownAware",
|
|
29215
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29216
|
+
}
|
|
29217
|
+
},
|
|
29218
|
+
{
|
|
29219
|
+
"kind": "field",
|
|
29220
|
+
"name": "optionLimit",
|
|
29221
|
+
"type": {
|
|
29222
|
+
"text": "number"
|
|
29223
|
+
},
|
|
29224
|
+
"privacy": "public",
|
|
29225
|
+
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
29226
|
+
"default": "0",
|
|
29227
|
+
"attribute": "option-limit",
|
|
29228
|
+
"inheritedFrom": {
|
|
29229
|
+
"name": "ListDropdownAware",
|
|
29230
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29231
|
+
}
|
|
29232
|
+
},
|
|
29233
|
+
{
|
|
29234
|
+
"kind": "field",
|
|
29235
|
+
"name": "observeScroll",
|
|
29236
|
+
"type": {
|
|
29237
|
+
"text": "boolean"
|
|
29238
|
+
},
|
|
29239
|
+
"privacy": "public",
|
|
29240
|
+
"description": "Controls the observation of scroll events on the dropdown.",
|
|
29241
|
+
"default": "false",
|
|
29242
|
+
"attribute": "observe-scroll",
|
|
29243
|
+
"inheritedFrom": {
|
|
29244
|
+
"name": "ListDropdownAware",
|
|
29245
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29246
|
+
}
|
|
29247
|
+
},
|
|
29248
|
+
{
|
|
29249
|
+
"kind": "field",
|
|
29250
|
+
"name": "observeScrollThreshold",
|
|
29251
|
+
"type": {
|
|
29252
|
+
"text": "number"
|
|
29253
|
+
},
|
|
29254
|
+
"privacy": "public",
|
|
29255
|
+
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
29256
|
+
"default": "0",
|
|
29257
|
+
"attribute": "observe-scroll-threshold",
|
|
29258
|
+
"inheritedFrom": {
|
|
29259
|
+
"name": "ListDropdownAware",
|
|
29260
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29261
|
+
}
|
|
29262
|
+
},
|
|
29263
|
+
{
|
|
29264
|
+
"kind": "field",
|
|
29265
|
+
"name": "constrainPopupWidth",
|
|
29266
|
+
"type": {
|
|
29267
|
+
"text": "boolean"
|
|
29268
|
+
},
|
|
29269
|
+
"privacy": "public",
|
|
29270
|
+
"description": "Gets/sets whether the popup width will be constrained to a max width of the viewport width (default: `100vw`).",
|
|
29271
|
+
"default": "true",
|
|
29272
|
+
"attribute": "constrain-popup-width",
|
|
29273
|
+
"inheritedFrom": {
|
|
29274
|
+
"name": "ListDropdownAware",
|
|
29275
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29276
|
+
}
|
|
29277
|
+
},
|
|
29278
|
+
{
|
|
29279
|
+
"kind": "field",
|
|
29280
|
+
"name": "wrapOptionText",
|
|
29281
|
+
"type": {
|
|
29282
|
+
"text": "boolean"
|
|
29283
|
+
},
|
|
29284
|
+
"privacy": "public",
|
|
29285
|
+
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
29286
|
+
"default": "false",
|
|
29287
|
+
"attribute": "wrap-option-text",
|
|
29288
|
+
"inheritedFrom": {
|
|
29289
|
+
"name": "ListDropdownAware",
|
|
29290
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29291
|
+
}
|
|
29292
|
+
}
|
|
29293
|
+
],
|
|
29294
|
+
"superclass": {
|
|
29295
|
+
"name": "BaseSelectComponent",
|
|
29296
|
+
"module": "/src/lib/select/core/base-select"
|
|
29297
|
+
},
|
|
29298
|
+
"tagName": "forge-select-dropdown",
|
|
29299
|
+
"customElement": true,
|
|
29300
|
+
"attributes": [
|
|
29301
|
+
{
|
|
29302
|
+
"name": "value",
|
|
29303
|
+
"type": {
|
|
29304
|
+
"text": "any"
|
|
29305
|
+
},
|
|
29306
|
+
"description": "Gets/sets the value.",
|
|
29307
|
+
"fieldName": "value",
|
|
29308
|
+
"inheritedFrom": {
|
|
29309
|
+
"name": "BaseSelectComponent",
|
|
29310
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29311
|
+
}
|
|
29312
|
+
},
|
|
29313
|
+
{
|
|
29314
|
+
"name": "selected-index",
|
|
29315
|
+
"type": {
|
|
29316
|
+
"text": "number | number[]"
|
|
29317
|
+
},
|
|
29318
|
+
"description": "Gets/sets the selected index.",
|
|
29319
|
+
"fieldName": "selectedIndex",
|
|
29320
|
+
"inheritedFrom": {
|
|
29321
|
+
"name": "BaseSelectComponent",
|
|
29322
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29323
|
+
}
|
|
29324
|
+
},
|
|
29325
|
+
{
|
|
29326
|
+
"name": "multiple",
|
|
29327
|
+
"type": {
|
|
29328
|
+
"text": "boolean"
|
|
29329
|
+
},
|
|
29330
|
+
"description": "Gets/sets the multiple select state.",
|
|
29331
|
+
"fieldName": "multiple",
|
|
29332
|
+
"inheritedFrom": {
|
|
29333
|
+
"name": "BaseSelectComponent",
|
|
29334
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29335
|
+
}
|
|
29336
|
+
},
|
|
29337
|
+
{
|
|
29338
|
+
"name": "open",
|
|
29339
|
+
"type": {
|
|
29340
|
+
"text": "boolean"
|
|
29341
|
+
},
|
|
29342
|
+
"description": "Gets the open state of the dropdown.",
|
|
29343
|
+
"fieldName": "open",
|
|
29344
|
+
"inheritedFrom": {
|
|
29345
|
+
"name": "BaseSelectComponent",
|
|
29346
|
+
"module": "src/lib/select/core/base-select.ts"
|
|
29347
|
+
}
|
|
29348
|
+
},
|
|
29349
|
+
{
|
|
29350
|
+
"name": "popup-classes",
|
|
29351
|
+
"type": {
|
|
29352
|
+
"text": "string | string[]"
|
|
29353
|
+
},
|
|
29354
|
+
"description": "Gets/sets the list of classes to apply to the popup element.",
|
|
29355
|
+
"fieldName": "popupClasses",
|
|
29356
|
+
"inheritedFrom": {
|
|
29357
|
+
"name": "ListDropdownAware",
|
|
29358
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29359
|
+
}
|
|
29360
|
+
},
|
|
29361
|
+
{
|
|
29362
|
+
"name": "sync-popup-width",
|
|
29363
|
+
"type": {
|
|
29364
|
+
"text": "boolean"
|
|
29365
|
+
},
|
|
29366
|
+
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
29367
|
+
"default": "false",
|
|
29368
|
+
"fieldName": "syncPopupWidth",
|
|
29369
|
+
"inheritedFrom": {
|
|
29370
|
+
"name": "ListDropdownAware",
|
|
29371
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29372
|
+
}
|
|
29373
|
+
},
|
|
29374
|
+
{
|
|
29375
|
+
"name": "option-limit",
|
|
29376
|
+
"type": {
|
|
29377
|
+
"text": "number"
|
|
29378
|
+
},
|
|
29379
|
+
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
29380
|
+
"default": "0",
|
|
29381
|
+
"fieldName": "optionLimit",
|
|
29382
|
+
"inheritedFrom": {
|
|
29383
|
+
"name": "ListDropdownAware",
|
|
29384
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29385
|
+
}
|
|
29386
|
+
},
|
|
29387
|
+
{
|
|
29388
|
+
"name": "observe-scroll",
|
|
29389
|
+
"type": {
|
|
29390
|
+
"text": "boolean"
|
|
29391
|
+
},
|
|
29392
|
+
"description": "Controls the observation of scroll events on the dropdown.",
|
|
29393
|
+
"default": "false",
|
|
29394
|
+
"fieldName": "observeScroll",
|
|
29395
|
+
"inheritedFrom": {
|
|
29396
|
+
"name": "ListDropdownAware",
|
|
29397
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29398
|
+
}
|
|
29399
|
+
},
|
|
29400
|
+
{
|
|
29401
|
+
"name": "observe-scroll-threshold",
|
|
29402
|
+
"type": {
|
|
29403
|
+
"text": "number"
|
|
29404
|
+
},
|
|
29405
|
+
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
29406
|
+
"default": "0",
|
|
29407
|
+
"fieldName": "observeScrollThreshold",
|
|
29408
|
+
"inheritedFrom": {
|
|
29409
|
+
"name": "ListDropdownAware",
|
|
29410
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29411
|
+
}
|
|
29412
|
+
},
|
|
29413
|
+
{
|
|
29414
|
+
"name": "constrain-popup-width",
|
|
29415
|
+
"type": {
|
|
29416
|
+
"text": "boolean"
|
|
29417
|
+
},
|
|
29418
|
+
"description": "Gets/sets whether the popup width will be constrained to a max width of the viewport width (default: `100vw`).",
|
|
29419
|
+
"default": "true",
|
|
29420
|
+
"fieldName": "constrainPopupWidth",
|
|
29421
|
+
"inheritedFrom": {
|
|
29422
|
+
"name": "ListDropdownAware",
|
|
29423
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29424
|
+
}
|
|
29425
|
+
},
|
|
29426
|
+
{
|
|
29427
|
+
"name": "wrap-option-text",
|
|
29428
|
+
"type": {
|
|
29429
|
+
"text": "boolean"
|
|
29430
|
+
},
|
|
29431
|
+
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
29432
|
+
"default": "false",
|
|
29433
|
+
"fieldName": "wrapOptionText",
|
|
29434
|
+
"inheritedFrom": {
|
|
29435
|
+
"name": "ListDropdownAware",
|
|
29436
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
29437
|
+
}
|
|
29438
|
+
}
|
|
29439
|
+
]
|
|
29440
|
+
}
|
|
29441
|
+
],
|
|
29442
|
+
"exports": [
|
|
29443
|
+
{
|
|
29444
|
+
"kind": "js",
|
|
29445
|
+
"name": "SelectDropdownComponent",
|
|
29446
|
+
"declaration": {
|
|
29447
|
+
"name": "SelectDropdownComponent",
|
|
29448
|
+
"module": "src/lib/select/select-dropdown/select-dropdown.ts"
|
|
29449
|
+
}
|
|
29450
|
+
}
|
|
29451
|
+
]
|
|
29452
|
+
},
|
|
28896
29453
|
{
|
|
28897
29454
|
"kind": "javascript-module",
|
|
28898
29455
|
"path": "src/lib/select/select/select.ts",
|
|
@@ -29875,507 +30432,6 @@
|
|
|
29875
30432
|
}
|
|
29876
30433
|
]
|
|
29877
30434
|
},
|
|
29878
|
-
{
|
|
29879
|
-
"kind": "javascript-module",
|
|
29880
|
-
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
29881
|
-
"declarations": [
|
|
29882
|
-
{
|
|
29883
|
-
"kind": "class",
|
|
29884
|
-
"description": "",
|
|
29885
|
-
"name": "SelectDropdownComponent",
|
|
29886
|
-
"members": [
|
|
29887
|
-
{
|
|
29888
|
-
"kind": "field",
|
|
29889
|
-
"name": "target",
|
|
29890
|
-
"type": {
|
|
29891
|
-
"text": "string"
|
|
29892
|
-
},
|
|
29893
|
-
"privacy": "public",
|
|
29894
|
-
"description": "Sets the target element CSS selector"
|
|
29895
|
-
},
|
|
29896
|
-
{
|
|
29897
|
-
"kind": "field",
|
|
29898
|
-
"name": "selectedTextTarget",
|
|
29899
|
-
"type": {
|
|
29900
|
-
"text": "string"
|
|
29901
|
-
},
|
|
29902
|
-
"privacy": "public",
|
|
29903
|
-
"description": "Sets the selected text element CSS selector"
|
|
29904
|
-
},
|
|
29905
|
-
{
|
|
29906
|
-
"kind": "field",
|
|
29907
|
-
"name": "syncSelectedText",
|
|
29908
|
-
"type": {
|
|
29909
|
-
"text": "boolean"
|
|
29910
|
-
},
|
|
29911
|
-
"privacy": "public",
|
|
29912
|
-
"description": "Controls whether the selected text is synchronized to the target elements' text content. Default is false."
|
|
29913
|
-
},
|
|
29914
|
-
{
|
|
29915
|
-
"kind": "field",
|
|
29916
|
-
"name": "value",
|
|
29917
|
-
"type": {
|
|
29918
|
-
"text": "any"
|
|
29919
|
-
},
|
|
29920
|
-
"privacy": "public",
|
|
29921
|
-
"description": "Gets/sets the value.",
|
|
29922
|
-
"attribute": "value",
|
|
29923
|
-
"inheritedFrom": {
|
|
29924
|
-
"name": "BaseSelectComponent",
|
|
29925
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29926
|
-
}
|
|
29927
|
-
},
|
|
29928
|
-
{
|
|
29929
|
-
"kind": "field",
|
|
29930
|
-
"name": "selectedIndex",
|
|
29931
|
-
"type": {
|
|
29932
|
-
"text": "number | number[]"
|
|
29933
|
-
},
|
|
29934
|
-
"privacy": "public",
|
|
29935
|
-
"description": "Gets/sets the selected index.",
|
|
29936
|
-
"attribute": "selected-index",
|
|
29937
|
-
"inheritedFrom": {
|
|
29938
|
-
"name": "BaseSelectComponent",
|
|
29939
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29940
|
-
}
|
|
29941
|
-
},
|
|
29942
|
-
{
|
|
29943
|
-
"kind": "field",
|
|
29944
|
-
"name": "options",
|
|
29945
|
-
"type": {
|
|
29946
|
-
"text": "ISelectOption[] | ISelectOptionGroup[]"
|
|
29947
|
-
},
|
|
29948
|
-
"privacy": "public",
|
|
29949
|
-
"description": "Gets/sets the available options.",
|
|
29950
|
-
"inheritedFrom": {
|
|
29951
|
-
"name": "BaseSelectComponent",
|
|
29952
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29953
|
-
}
|
|
29954
|
-
},
|
|
29955
|
-
{
|
|
29956
|
-
"kind": "field",
|
|
29957
|
-
"name": "multiple",
|
|
29958
|
-
"type": {
|
|
29959
|
-
"text": "boolean"
|
|
29960
|
-
},
|
|
29961
|
-
"privacy": "public",
|
|
29962
|
-
"description": "Gets/sets the multiple select state.",
|
|
29963
|
-
"attribute": "multiple",
|
|
29964
|
-
"inheritedFrom": {
|
|
29965
|
-
"name": "BaseSelectComponent",
|
|
29966
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29967
|
-
}
|
|
29968
|
-
},
|
|
29969
|
-
{
|
|
29970
|
-
"kind": "field",
|
|
29971
|
-
"name": "open",
|
|
29972
|
-
"type": {
|
|
29973
|
-
"text": "boolean"
|
|
29974
|
-
},
|
|
29975
|
-
"privacy": "public",
|
|
29976
|
-
"description": "Gets the open state of the dropdown.",
|
|
29977
|
-
"attribute": "open",
|
|
29978
|
-
"inheritedFrom": {
|
|
29979
|
-
"name": "BaseSelectComponent",
|
|
29980
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29981
|
-
}
|
|
29982
|
-
},
|
|
29983
|
-
{
|
|
29984
|
-
"kind": "field",
|
|
29985
|
-
"name": "optionBuilder",
|
|
29986
|
-
"type": {
|
|
29987
|
-
"text": "SelectOptionBuilder"
|
|
29988
|
-
},
|
|
29989
|
-
"privacy": "public",
|
|
29990
|
-
"description": "Sets the option builder callback that will be executed when building the option list in the dropdown.",
|
|
29991
|
-
"inheritedFrom": {
|
|
29992
|
-
"name": "BaseSelectComponent",
|
|
29993
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
29994
|
-
}
|
|
29995
|
-
},
|
|
29996
|
-
{
|
|
29997
|
-
"kind": "field",
|
|
29998
|
-
"name": "selectedTextBuilder",
|
|
29999
|
-
"type": {
|
|
30000
|
-
"text": "SelectSelectedTextBuilder"
|
|
30001
|
-
},
|
|
30002
|
-
"privacy": "public",
|
|
30003
|
-
"description": "Sets the selected text builder callback that will be executed when getting the selected text to display in the field.",
|
|
30004
|
-
"inheritedFrom": {
|
|
30005
|
-
"name": "BaseSelectComponent",
|
|
30006
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30007
|
-
}
|
|
30008
|
-
},
|
|
30009
|
-
{
|
|
30010
|
-
"kind": "field",
|
|
30011
|
-
"name": "beforeValueChange",
|
|
30012
|
-
"type": {
|
|
30013
|
-
"text": "SelectBeforeValueChangeCallback<any>"
|
|
30014
|
-
},
|
|
30015
|
-
"privacy": "public",
|
|
30016
|
-
"description": "Sets the callback to be executed when the user selects a value.",
|
|
30017
|
-
"inheritedFrom": {
|
|
30018
|
-
"name": "BaseSelectComponent",
|
|
30019
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30020
|
-
}
|
|
30021
|
-
},
|
|
30022
|
-
{
|
|
30023
|
-
"kind": "field",
|
|
30024
|
-
"name": "popupElement",
|
|
30025
|
-
"type": {
|
|
30026
|
-
"text": "IPopoverComponent | undefined"
|
|
30027
|
-
},
|
|
30028
|
-
"privacy": "public",
|
|
30029
|
-
"description": "Gets the popup element (when the dropdown is open).",
|
|
30030
|
-
"readonly": true,
|
|
30031
|
-
"inheritedFrom": {
|
|
30032
|
-
"name": "BaseSelectComponent",
|
|
30033
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30034
|
-
}
|
|
30035
|
-
},
|
|
30036
|
-
{
|
|
30037
|
-
"kind": "method",
|
|
30038
|
-
"name": "appendOptions",
|
|
30039
|
-
"privacy": "public",
|
|
30040
|
-
"return": {
|
|
30041
|
-
"type": {
|
|
30042
|
-
"text": "void"
|
|
30043
|
-
}
|
|
30044
|
-
},
|
|
30045
|
-
"parameters": [
|
|
30046
|
-
{
|
|
30047
|
-
"name": "options",
|
|
30048
|
-
"type": {
|
|
30049
|
-
"text": "ISelectOption[] | ISelectOptionGroup[]"
|
|
30050
|
-
}
|
|
30051
|
-
}
|
|
30052
|
-
],
|
|
30053
|
-
"description": "Dynamically appends options to the dropdown while it's open.",
|
|
30054
|
-
"inheritedFrom": {
|
|
30055
|
-
"name": "BaseSelectComponent",
|
|
30056
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30057
|
-
}
|
|
30058
|
-
},
|
|
30059
|
-
{
|
|
30060
|
-
"kind": "method",
|
|
30061
|
-
"name": "selectAll",
|
|
30062
|
-
"privacy": "public",
|
|
30063
|
-
"return": {
|
|
30064
|
-
"type": {
|
|
30065
|
-
"text": "void"
|
|
30066
|
-
}
|
|
30067
|
-
},
|
|
30068
|
-
"description": "Selects all options.",
|
|
30069
|
-
"inheritedFrom": {
|
|
30070
|
-
"name": "BaseSelectComponent",
|
|
30071
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30072
|
-
}
|
|
30073
|
-
},
|
|
30074
|
-
{
|
|
30075
|
-
"kind": "method",
|
|
30076
|
-
"name": "deselectAll",
|
|
30077
|
-
"privacy": "public",
|
|
30078
|
-
"return": {
|
|
30079
|
-
"type": {
|
|
30080
|
-
"text": "void"
|
|
30081
|
-
}
|
|
30082
|
-
},
|
|
30083
|
-
"description": "Deselects all options.",
|
|
30084
|
-
"inheritedFrom": {
|
|
30085
|
-
"name": "BaseSelectComponent",
|
|
30086
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30087
|
-
}
|
|
30088
|
-
},
|
|
30089
|
-
{
|
|
30090
|
-
"kind": "field",
|
|
30091
|
-
"name": "popupClasses",
|
|
30092
|
-
"type": {
|
|
30093
|
-
"text": "string | string[]"
|
|
30094
|
-
},
|
|
30095
|
-
"privacy": "public",
|
|
30096
|
-
"description": "Gets/sets the list of classes to apply to the popup element.",
|
|
30097
|
-
"attribute": "popup-classes",
|
|
30098
|
-
"inheritedFrom": {
|
|
30099
|
-
"name": "ListDropdownAware",
|
|
30100
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30101
|
-
}
|
|
30102
|
-
},
|
|
30103
|
-
{
|
|
30104
|
-
"kind": "field",
|
|
30105
|
-
"name": "popupHeaderBuilder",
|
|
30106
|
-
"type": {
|
|
30107
|
-
"text": "ListDropdownHeaderBuilder"
|
|
30108
|
-
},
|
|
30109
|
-
"privacy": "public",
|
|
30110
|
-
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
30111
|
-
"inheritedFrom": {
|
|
30112
|
-
"name": "ListDropdownAware",
|
|
30113
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30114
|
-
}
|
|
30115
|
-
},
|
|
30116
|
-
{
|
|
30117
|
-
"kind": "field",
|
|
30118
|
-
"name": "popupFooterBuilder",
|
|
30119
|
-
"type": {
|
|
30120
|
-
"text": "ListDropdownFooterBuilder"
|
|
30121
|
-
},
|
|
30122
|
-
"privacy": "public",
|
|
30123
|
-
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
30124
|
-
"inheritedFrom": {
|
|
30125
|
-
"name": "ListDropdownAware",
|
|
30126
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30127
|
-
}
|
|
30128
|
-
},
|
|
30129
|
-
{
|
|
30130
|
-
"kind": "field",
|
|
30131
|
-
"name": "syncPopupWidth",
|
|
30132
|
-
"type": {
|
|
30133
|
-
"text": "boolean"
|
|
30134
|
-
},
|
|
30135
|
-
"privacy": "public",
|
|
30136
|
-
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
30137
|
-
"default": "false",
|
|
30138
|
-
"attribute": "sync-popup-width",
|
|
30139
|
-
"inheritedFrom": {
|
|
30140
|
-
"name": "ListDropdownAware",
|
|
30141
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30142
|
-
}
|
|
30143
|
-
},
|
|
30144
|
-
{
|
|
30145
|
-
"kind": "field",
|
|
30146
|
-
"name": "optionLimit",
|
|
30147
|
-
"type": {
|
|
30148
|
-
"text": "number"
|
|
30149
|
-
},
|
|
30150
|
-
"privacy": "public",
|
|
30151
|
-
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
30152
|
-
"default": "0",
|
|
30153
|
-
"attribute": "option-limit",
|
|
30154
|
-
"inheritedFrom": {
|
|
30155
|
-
"name": "ListDropdownAware",
|
|
30156
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30157
|
-
}
|
|
30158
|
-
},
|
|
30159
|
-
{
|
|
30160
|
-
"kind": "field",
|
|
30161
|
-
"name": "observeScroll",
|
|
30162
|
-
"type": {
|
|
30163
|
-
"text": "boolean"
|
|
30164
|
-
},
|
|
30165
|
-
"privacy": "public",
|
|
30166
|
-
"description": "Controls the observation of scroll events on the dropdown.",
|
|
30167
|
-
"default": "false",
|
|
30168
|
-
"attribute": "observe-scroll",
|
|
30169
|
-
"inheritedFrom": {
|
|
30170
|
-
"name": "ListDropdownAware",
|
|
30171
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30172
|
-
}
|
|
30173
|
-
},
|
|
30174
|
-
{
|
|
30175
|
-
"kind": "field",
|
|
30176
|
-
"name": "observeScrollThreshold",
|
|
30177
|
-
"type": {
|
|
30178
|
-
"text": "number"
|
|
30179
|
-
},
|
|
30180
|
-
"privacy": "public",
|
|
30181
|
-
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
30182
|
-
"default": "0",
|
|
30183
|
-
"attribute": "observe-scroll-threshold",
|
|
30184
|
-
"inheritedFrom": {
|
|
30185
|
-
"name": "ListDropdownAware",
|
|
30186
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30187
|
-
}
|
|
30188
|
-
},
|
|
30189
|
-
{
|
|
30190
|
-
"kind": "field",
|
|
30191
|
-
"name": "constrainPopupWidth",
|
|
30192
|
-
"type": {
|
|
30193
|
-
"text": "boolean"
|
|
30194
|
-
},
|
|
30195
|
-
"privacy": "public",
|
|
30196
|
-
"description": "Gets/sets whether the popup width will be constrained to a max width of the viewport width (default: `100vw`).",
|
|
30197
|
-
"default": "true",
|
|
30198
|
-
"attribute": "constrain-popup-width",
|
|
30199
|
-
"inheritedFrom": {
|
|
30200
|
-
"name": "ListDropdownAware",
|
|
30201
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30202
|
-
}
|
|
30203
|
-
},
|
|
30204
|
-
{
|
|
30205
|
-
"kind": "field",
|
|
30206
|
-
"name": "wrapOptionText",
|
|
30207
|
-
"type": {
|
|
30208
|
-
"text": "boolean"
|
|
30209
|
-
},
|
|
30210
|
-
"privacy": "public",
|
|
30211
|
-
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
30212
|
-
"default": "false",
|
|
30213
|
-
"attribute": "wrap-option-text",
|
|
30214
|
-
"inheritedFrom": {
|
|
30215
|
-
"name": "ListDropdownAware",
|
|
30216
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30217
|
-
}
|
|
30218
|
-
}
|
|
30219
|
-
],
|
|
30220
|
-
"superclass": {
|
|
30221
|
-
"name": "BaseSelectComponent",
|
|
30222
|
-
"module": "/src/lib/select/core/base-select"
|
|
30223
|
-
},
|
|
30224
|
-
"tagName": "forge-select-dropdown",
|
|
30225
|
-
"customElement": true,
|
|
30226
|
-
"attributes": [
|
|
30227
|
-
{
|
|
30228
|
-
"name": "value",
|
|
30229
|
-
"type": {
|
|
30230
|
-
"text": "any"
|
|
30231
|
-
},
|
|
30232
|
-
"description": "Gets/sets the value.",
|
|
30233
|
-
"fieldName": "value",
|
|
30234
|
-
"inheritedFrom": {
|
|
30235
|
-
"name": "BaseSelectComponent",
|
|
30236
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30237
|
-
}
|
|
30238
|
-
},
|
|
30239
|
-
{
|
|
30240
|
-
"name": "selected-index",
|
|
30241
|
-
"type": {
|
|
30242
|
-
"text": "number | number[]"
|
|
30243
|
-
},
|
|
30244
|
-
"description": "Gets/sets the selected index.",
|
|
30245
|
-
"fieldName": "selectedIndex",
|
|
30246
|
-
"inheritedFrom": {
|
|
30247
|
-
"name": "BaseSelectComponent",
|
|
30248
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30249
|
-
}
|
|
30250
|
-
},
|
|
30251
|
-
{
|
|
30252
|
-
"name": "multiple",
|
|
30253
|
-
"type": {
|
|
30254
|
-
"text": "boolean"
|
|
30255
|
-
},
|
|
30256
|
-
"description": "Gets/sets the multiple select state.",
|
|
30257
|
-
"fieldName": "multiple",
|
|
30258
|
-
"inheritedFrom": {
|
|
30259
|
-
"name": "BaseSelectComponent",
|
|
30260
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30261
|
-
}
|
|
30262
|
-
},
|
|
30263
|
-
{
|
|
30264
|
-
"name": "open",
|
|
30265
|
-
"type": {
|
|
30266
|
-
"text": "boolean"
|
|
30267
|
-
},
|
|
30268
|
-
"description": "Gets the open state of the dropdown.",
|
|
30269
|
-
"fieldName": "open",
|
|
30270
|
-
"inheritedFrom": {
|
|
30271
|
-
"name": "BaseSelectComponent",
|
|
30272
|
-
"module": "src/lib/select/core/base-select.ts"
|
|
30273
|
-
}
|
|
30274
|
-
},
|
|
30275
|
-
{
|
|
30276
|
-
"name": "popup-classes",
|
|
30277
|
-
"type": {
|
|
30278
|
-
"text": "string | string[]"
|
|
30279
|
-
},
|
|
30280
|
-
"description": "Gets/sets the list of classes to apply to the popup element.",
|
|
30281
|
-
"fieldName": "popupClasses",
|
|
30282
|
-
"inheritedFrom": {
|
|
30283
|
-
"name": "ListDropdownAware",
|
|
30284
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30285
|
-
}
|
|
30286
|
-
},
|
|
30287
|
-
{
|
|
30288
|
-
"name": "sync-popup-width",
|
|
30289
|
-
"type": {
|
|
30290
|
-
"text": "boolean"
|
|
30291
|
-
},
|
|
30292
|
-
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
30293
|
-
"default": "false",
|
|
30294
|
-
"fieldName": "syncPopupWidth",
|
|
30295
|
-
"inheritedFrom": {
|
|
30296
|
-
"name": "ListDropdownAware",
|
|
30297
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30298
|
-
}
|
|
30299
|
-
},
|
|
30300
|
-
{
|
|
30301
|
-
"name": "option-limit",
|
|
30302
|
-
"type": {
|
|
30303
|
-
"text": "number"
|
|
30304
|
-
},
|
|
30305
|
-
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
30306
|
-
"default": "0",
|
|
30307
|
-
"fieldName": "optionLimit",
|
|
30308
|
-
"inheritedFrom": {
|
|
30309
|
-
"name": "ListDropdownAware",
|
|
30310
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30311
|
-
}
|
|
30312
|
-
},
|
|
30313
|
-
{
|
|
30314
|
-
"name": "observe-scroll",
|
|
30315
|
-
"type": {
|
|
30316
|
-
"text": "boolean"
|
|
30317
|
-
},
|
|
30318
|
-
"description": "Controls the observation of scroll events on the dropdown.",
|
|
30319
|
-
"default": "false",
|
|
30320
|
-
"fieldName": "observeScroll",
|
|
30321
|
-
"inheritedFrom": {
|
|
30322
|
-
"name": "ListDropdownAware",
|
|
30323
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30324
|
-
}
|
|
30325
|
-
},
|
|
30326
|
-
{
|
|
30327
|
-
"name": "observe-scroll-threshold",
|
|
30328
|
-
"type": {
|
|
30329
|
-
"text": "number"
|
|
30330
|
-
},
|
|
30331
|
-
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
30332
|
-
"default": "0",
|
|
30333
|
-
"fieldName": "observeScrollThreshold",
|
|
30334
|
-
"inheritedFrom": {
|
|
30335
|
-
"name": "ListDropdownAware",
|
|
30336
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30337
|
-
}
|
|
30338
|
-
},
|
|
30339
|
-
{
|
|
30340
|
-
"name": "constrain-popup-width",
|
|
30341
|
-
"type": {
|
|
30342
|
-
"text": "boolean"
|
|
30343
|
-
},
|
|
30344
|
-
"description": "Gets/sets whether the popup width will be constrained to a max width of the viewport width (default: `100vw`).",
|
|
30345
|
-
"default": "true",
|
|
30346
|
-
"fieldName": "constrainPopupWidth",
|
|
30347
|
-
"inheritedFrom": {
|
|
30348
|
-
"name": "ListDropdownAware",
|
|
30349
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30350
|
-
}
|
|
30351
|
-
},
|
|
30352
|
-
{
|
|
30353
|
-
"name": "wrap-option-text",
|
|
30354
|
-
"type": {
|
|
30355
|
-
"text": "boolean"
|
|
30356
|
-
},
|
|
30357
|
-
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
30358
|
-
"default": "false",
|
|
30359
|
-
"fieldName": "wrapOptionText",
|
|
30360
|
-
"inheritedFrom": {
|
|
30361
|
-
"name": "ListDropdownAware",
|
|
30362
|
-
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30363
|
-
}
|
|
30364
|
-
}
|
|
30365
|
-
]
|
|
30366
|
-
}
|
|
30367
|
-
],
|
|
30368
|
-
"exports": [
|
|
30369
|
-
{
|
|
30370
|
-
"kind": "js",
|
|
30371
|
-
"name": "SelectDropdownComponent",
|
|
30372
|
-
"declaration": {
|
|
30373
|
-
"name": "SelectDropdownComponent",
|
|
30374
|
-
"module": "src/lib/select/select-dropdown/select-dropdown.ts"
|
|
30375
|
-
}
|
|
30376
|
-
}
|
|
30377
|
-
]
|
|
30378
|
-
},
|
|
30379
30435
|
{
|
|
30380
30436
|
"kind": "javascript-module",
|
|
30381
30437
|
"path": "src/lib/split-view/split-view/split-view.ts",
|
|
@@ -32063,13 +32119,16 @@
|
|
|
32063
32119
|
"description": "Controls whether scroll buttons are displayed when the tabs overflow their container.",
|
|
32064
32120
|
"name": "scroll-buttons",
|
|
32065
32121
|
"default": "false"
|
|
32122
|
+
}
|
|
32123
|
+
],
|
|
32124
|
+
"mixins": [
|
|
32125
|
+
{
|
|
32126
|
+
"name": "WithDefaultAria",
|
|
32127
|
+
"module": "/src/lib/core/mixins/internals/with-default-aria"
|
|
32066
32128
|
},
|
|
32067
32129
|
{
|
|
32068
|
-
"
|
|
32069
|
-
|
|
32070
|
-
},
|
|
32071
|
-
"description": "The ARIA label to forward to the internal tablist element.",
|
|
32072
|
-
"name": "data-aria-label"
|
|
32130
|
+
"name": "WithElementInternals",
|
|
32131
|
+
"module": "/src/lib/core/mixins/internals/with-element-internals"
|
|
32073
32132
|
}
|
|
32074
32133
|
],
|
|
32075
32134
|
"superclass": {
|
|
@@ -32134,7 +32193,7 @@
|
|
|
32134
32193
|
]
|
|
32135
32194
|
}
|
|
32136
32195
|
],
|
|
32137
|
-
"branchName": "
|
|
32196
|
+
"branchName": "icon-button-pressed",
|
|
32138
32197
|
"forgeTypes": {
|
|
32139
32198
|
"Theme": {
|
|
32140
32199
|
"path": "src/lib/constants.ts",
|
|
@@ -32266,31 +32325,15 @@
|
|
|
32266
32325
|
},
|
|
32267
32326
|
"HTMLElementEventMap": {
|
|
32268
32327
|
"path": "src/lib/tabs/tab-bar/tab-bar.ts",
|
|
32269
|
-
"lineNumber":
|
|
32328
|
+
"lineNumber": 35
|
|
32270
32329
|
},
|
|
32271
32330
|
"AutocompleteComponent": {
|
|
32272
32331
|
"path": "src/lib/autocomplete/autocomplete.ts",
|
|
32273
32332
|
"lineNumber": 71
|
|
32274
32333
|
},
|
|
32275
|
-
"IAvatarAdapter": {
|
|
32276
|
-
"path": "src/lib/avatar/avatar-adapter.ts",
|
|
32277
|
-
"lineNumber": 6
|
|
32278
|
-
},
|
|
32279
|
-
"AvatarAdapter": {
|
|
32280
|
-
"path": "src/lib/avatar/avatar-adapter.ts",
|
|
32281
|
-
"lineNumber": 16
|
|
32282
|
-
},
|
|
32283
|
-
"IAvatarCore": {
|
|
32284
|
-
"path": "src/lib/avatar/avatar-core.ts",
|
|
32285
|
-
"lineNumber": 5
|
|
32286
|
-
},
|
|
32287
|
-
"AvatarCore": {
|
|
32288
|
-
"path": "src/lib/avatar/avatar-core.ts",
|
|
32289
|
-
"lineNumber": 11
|
|
32290
|
-
},
|
|
32291
32334
|
"IAvatarComponent": {
|
|
32292
32335
|
"path": "src/lib/avatar/avatar.ts",
|
|
32293
|
-
"lineNumber":
|
|
32336
|
+
"lineNumber": 9
|
|
32294
32337
|
},
|
|
32295
32338
|
"AvatarComponent": {
|
|
32296
32339
|
"path": "src/lib/avatar/avatar.ts",
|
|
@@ -32662,7 +32705,7 @@
|
|
|
32662
32705
|
},
|
|
32663
32706
|
"CheckboxComponent": {
|
|
32664
32707
|
"path": "src/lib/checkbox/checkbox.ts",
|
|
32665
|
-
"lineNumber":
|
|
32708
|
+
"lineNumber": 93
|
|
32666
32709
|
},
|
|
32667
32710
|
"IChipFieldAdapter": {
|
|
32668
32711
|
"path": "src/lib/chip-field/chip-field-adapter.ts",
|
|
@@ -32898,51 +32941,51 @@
|
|
|
32898
32941
|
},
|
|
32899
32942
|
"IDialogAdapter": {
|
|
32900
32943
|
"path": "src/lib/dialog/dialog-adapter.ts",
|
|
32901
|
-
"lineNumber":
|
|
32944
|
+
"lineNumber": 7
|
|
32902
32945
|
},
|
|
32903
32946
|
"DialogAdapter": {
|
|
32904
32947
|
"path": "src/lib/dialog/dialog-adapter.ts",
|
|
32905
|
-
"lineNumber":
|
|
32948
|
+
"lineNumber": 34
|
|
32906
32949
|
},
|
|
32907
32950
|
"IDialogMoveEventData": {
|
|
32908
32951
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32909
|
-
"lineNumber":
|
|
32952
|
+
"lineNumber": 74
|
|
32910
32953
|
},
|
|
32911
32954
|
"IDialogMoveContext": {
|
|
32912
32955
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32913
|
-
"lineNumber":
|
|
32956
|
+
"lineNumber": 79
|
|
32914
32957
|
},
|
|
32915
32958
|
"IDialogMoveStartEventData": {
|
|
32916
32959
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32917
|
-
"lineNumber":
|
|
32960
|
+
"lineNumber": 86
|
|
32918
32961
|
},
|
|
32919
32962
|
"DialogMode": {
|
|
32920
32963
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32921
|
-
"lineNumber":
|
|
32964
|
+
"lineNumber": 88
|
|
32922
32965
|
},
|
|
32923
32966
|
"DialogType": {
|
|
32924
32967
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32925
|
-
"lineNumber":
|
|
32968
|
+
"lineNumber": 89
|
|
32926
32969
|
},
|
|
32927
32970
|
"DialogAnimationType": {
|
|
32928
32971
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32929
|
-
"lineNumber":
|
|
32972
|
+
"lineNumber": 90
|
|
32930
32973
|
},
|
|
32931
32974
|
"DialogPositionStrategy": {
|
|
32932
32975
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32933
|
-
"lineNumber":
|
|
32976
|
+
"lineNumber": 91
|
|
32934
32977
|
},
|
|
32935
32978
|
"DialogPlacement": {
|
|
32936
32979
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32937
|
-
"lineNumber":
|
|
32980
|
+
"lineNumber": 92
|
|
32938
32981
|
},
|
|
32939
32982
|
"DialogSizeStrategy": {
|
|
32940
32983
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32941
|
-
"lineNumber":
|
|
32984
|
+
"lineNumber": 93
|
|
32942
32985
|
},
|
|
32943
32986
|
"DialogPreset": {
|
|
32944
32987
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
32945
|
-
"lineNumber":
|
|
32988
|
+
"lineNumber": 94
|
|
32946
32989
|
},
|
|
32947
32990
|
"IDialogCore": {
|
|
32948
32991
|
"path": "src/lib/dialog/dialog-core.ts",
|
|
@@ -32950,7 +32993,7 @@
|
|
|
32950
32993
|
},
|
|
32951
32994
|
"DialogCore": {
|
|
32952
32995
|
"path": "src/lib/dialog/dialog-core.ts",
|
|
32953
|
-
"lineNumber":
|
|
32996
|
+
"lineNumber": 38
|
|
32954
32997
|
},
|
|
32955
32998
|
"IDialogProperties": {
|
|
32956
32999
|
"path": "src/lib/dialog/dialog.ts",
|
|
@@ -32958,11 +33001,11 @@
|
|
|
32958
33001
|
},
|
|
32959
33002
|
"IDialogComponent": {
|
|
32960
33003
|
"path": "src/lib/dialog/dialog.ts",
|
|
32961
|
-
"lineNumber":
|
|
33004
|
+
"lineNumber": 47
|
|
32962
33005
|
},
|
|
32963
33006
|
"DialogComponent": {
|
|
32964
33007
|
"path": "src/lib/dialog/dialog.ts",
|
|
32965
|
-
"lineNumber":
|
|
33008
|
+
"lineNumber": 166
|
|
32966
33009
|
},
|
|
32967
33010
|
"IDividerComponent": {
|
|
32968
33011
|
"path": "src/lib/divider/divider.ts",
|
|
@@ -33238,19 +33281,19 @@
|
|
|
33238
33281
|
},
|
|
33239
33282
|
"IconButtonVariant": {
|
|
33240
33283
|
"path": "src/lib/icon-button/icon-button-constants.ts",
|
|
33241
|
-
"lineNumber":
|
|
33284
|
+
"lineNumber": 40
|
|
33242
33285
|
},
|
|
33243
33286
|
"IconButtonTheme": {
|
|
33244
33287
|
"path": "src/lib/icon-button/icon-button-constants.ts",
|
|
33245
|
-
"lineNumber":
|
|
33288
|
+
"lineNumber": 41
|
|
33246
33289
|
},
|
|
33247
33290
|
"IconButtonShape": {
|
|
33248
33291
|
"path": "src/lib/icon-button/icon-button-constants.ts",
|
|
33249
|
-
"lineNumber":
|
|
33292
|
+
"lineNumber": 42
|
|
33250
33293
|
},
|
|
33251
33294
|
"IconButtonDensity": {
|
|
33252
33295
|
"path": "src/lib/icon-button/icon-button-constants.ts",
|
|
33253
|
-
"lineNumber":
|
|
33296
|
+
"lineNumber": 43
|
|
33254
33297
|
},
|
|
33255
33298
|
"IIconButtonCore": {
|
|
33256
33299
|
"path": "src/lib/icon-button/icon-button-core.ts",
|
|
@@ -33266,7 +33309,7 @@
|
|
|
33266
33309
|
},
|
|
33267
33310
|
"IconButtonComponent": {
|
|
33268
33311
|
"path": "src/lib/icon-button/icon-button.ts",
|
|
33269
|
-
"lineNumber":
|
|
33312
|
+
"lineNumber": 115
|
|
33270
33313
|
},
|
|
33271
33314
|
"LegacyInlineMessageThemes": {
|
|
33272
33315
|
"path": "src/lib/inline-message/inline-message-constants.ts",
|
|
@@ -33998,7 +34041,7 @@
|
|
|
33998
34041
|
},
|
|
33999
34042
|
"SwitchComponent": {
|
|
34000
34043
|
"path": "src/lib/switch/switch.ts",
|
|
34001
|
-
"lineNumber":
|
|
34044
|
+
"lineNumber": 143
|
|
34002
34045
|
},
|
|
34003
34046
|
"MultiSortManager": {
|
|
34004
34047
|
"path": "src/lib/table/multi-sort-manager.ts",
|
|
@@ -34544,34 +34587,6 @@
|
|
|
34544
34587
|
"path": "src/lib/app-bar/profile-button/app-bar-profile-button.ts",
|
|
34545
34588
|
"lineNumber": 70
|
|
34546
34589
|
},
|
|
34547
|
-
"IAppBarSearchAdapter": {
|
|
34548
|
-
"path": "src/lib/app-bar/search/app-bar-search-adapter.ts",
|
|
34549
|
-
"lineNumber": 6
|
|
34550
|
-
},
|
|
34551
|
-
"AppBarSearchAdapter": {
|
|
34552
|
-
"path": "src/lib/app-bar/search/app-bar-search-adapter.ts",
|
|
34553
|
-
"lineNumber": 14
|
|
34554
|
-
},
|
|
34555
|
-
"IAppBarSearchInputEventData": {
|
|
34556
|
-
"path": "src/lib/app-bar/search/app-bar-search-constants.ts",
|
|
34557
|
-
"lineNumber": 27
|
|
34558
|
-
},
|
|
34559
|
-
"IAppBarSearchCore": {
|
|
34560
|
-
"path": "src/lib/app-bar/search/app-bar-search-core.ts",
|
|
34561
|
-
"lineNumber": 4
|
|
34562
|
-
},
|
|
34563
|
-
"AppBarSearchCore": {
|
|
34564
|
-
"path": "src/lib/app-bar/search/app-bar-search-core.ts",
|
|
34565
|
-
"lineNumber": 10
|
|
34566
|
-
},
|
|
34567
|
-
"IAppBarSearchComponent": {
|
|
34568
|
-
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
34569
|
-
"lineNumber": 13
|
|
34570
|
-
},
|
|
34571
|
-
"AppBarSearchComponent": {
|
|
34572
|
-
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
34573
|
-
"lineNumber": 66
|
|
34574
|
-
},
|
|
34575
34590
|
"IBaseButtonAdapter": {
|
|
34576
34591
|
"path": "src/lib/button/base/base-button-adapter.ts",
|
|
34577
34592
|
"lineNumber": 13
|
|
@@ -34608,6 +34623,34 @@
|
|
|
34608
34623
|
"path": "src/lib/button/base/base-button.ts",
|
|
34609
34624
|
"lineNumber": 43
|
|
34610
34625
|
},
|
|
34626
|
+
"IAppBarSearchAdapter": {
|
|
34627
|
+
"path": "src/lib/app-bar/search/app-bar-search-adapter.ts",
|
|
34628
|
+
"lineNumber": 6
|
|
34629
|
+
},
|
|
34630
|
+
"AppBarSearchAdapter": {
|
|
34631
|
+
"path": "src/lib/app-bar/search/app-bar-search-adapter.ts",
|
|
34632
|
+
"lineNumber": 14
|
|
34633
|
+
},
|
|
34634
|
+
"IAppBarSearchInputEventData": {
|
|
34635
|
+
"path": "src/lib/app-bar/search/app-bar-search-constants.ts",
|
|
34636
|
+
"lineNumber": 27
|
|
34637
|
+
},
|
|
34638
|
+
"IAppBarSearchCore": {
|
|
34639
|
+
"path": "src/lib/app-bar/search/app-bar-search-core.ts",
|
|
34640
|
+
"lineNumber": 4
|
|
34641
|
+
},
|
|
34642
|
+
"AppBarSearchCore": {
|
|
34643
|
+
"path": "src/lib/app-bar/search/app-bar-search-core.ts",
|
|
34644
|
+
"lineNumber": 10
|
|
34645
|
+
},
|
|
34646
|
+
"IAppBarSearchComponent": {
|
|
34647
|
+
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
34648
|
+
"lineNumber": 13
|
|
34649
|
+
},
|
|
34650
|
+
"AppBarSearchComponent": {
|
|
34651
|
+
"path": "src/lib/app-bar/search/app-bar-search.ts",
|
|
34652
|
+
"lineNumber": 66
|
|
34653
|
+
},
|
|
34611
34654
|
"IButtonToggleAdapter": {
|
|
34612
34655
|
"path": "src/lib/button-toggle/button-toggle/button-toggle-adapter.ts",
|
|
34613
34656
|
"lineNumber": 10
|
|
@@ -35172,30 +35215,6 @@
|
|
|
35172
35215
|
"path": "src/lib/drawer/mini-drawer/mini-drawer.ts",
|
|
35173
35216
|
"lineNumber": 50
|
|
35174
35217
|
},
|
|
35175
|
-
"IModalDrawerAdapter": {
|
|
35176
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
|
|
35177
|
-
"lineNumber": 6
|
|
35178
|
-
},
|
|
35179
|
-
"ModalDrawerAdapter": {
|
|
35180
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
|
|
35181
|
-
"lineNumber": 12
|
|
35182
|
-
},
|
|
35183
|
-
"IModalDrawerCore": {
|
|
35184
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
|
|
35185
|
-
"lineNumber": 7
|
|
35186
|
-
},
|
|
35187
|
-
"ModalDrawerCore": {
|
|
35188
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
|
|
35189
|
-
"lineNumber": 9
|
|
35190
|
-
},
|
|
35191
|
-
"IModalDrawerComponent": {
|
|
35192
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
35193
|
-
"lineNumber": 11
|
|
35194
|
-
},
|
|
35195
|
-
"ModalDrawerComponent": {
|
|
35196
|
-
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
35197
|
-
"lineNumber": 46
|
|
35198
|
-
},
|
|
35199
35218
|
"IBaseFieldAdapter": {
|
|
35200
35219
|
"path": "src/lib/field/base/base-field-adapter.ts",
|
|
35201
35220
|
"lineNumber": 5
|
|
@@ -35260,6 +35279,30 @@
|
|
|
35260
35279
|
"path": "src/lib/field/base/with-base-field.ts",
|
|
35261
35280
|
"lineNumber": 97
|
|
35262
35281
|
},
|
|
35282
|
+
"IModalDrawerAdapter": {
|
|
35283
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
|
|
35284
|
+
"lineNumber": 6
|
|
35285
|
+
},
|
|
35286
|
+
"ModalDrawerAdapter": {
|
|
35287
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
|
|
35288
|
+
"lineNumber": 12
|
|
35289
|
+
},
|
|
35290
|
+
"IModalDrawerCore": {
|
|
35291
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
|
|
35292
|
+
"lineNumber": 7
|
|
35293
|
+
},
|
|
35294
|
+
"ModalDrawerCore": {
|
|
35295
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
|
|
35296
|
+
"lineNumber": 9
|
|
35297
|
+
},
|
|
35298
|
+
"IModalDrawerComponent": {
|
|
35299
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
35300
|
+
"lineNumber": 11
|
|
35301
|
+
},
|
|
35302
|
+
"ModalDrawerComponent": {
|
|
35303
|
+
"path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
|
|
35304
|
+
"lineNumber": 46
|
|
35305
|
+
},
|
|
35263
35306
|
"KeyComponent": {
|
|
35264
35307
|
"path": "src/lib/key/key/key.ts",
|
|
35265
35308
|
"lineNumber": 19
|
|
@@ -35458,7 +35501,7 @@
|
|
|
35458
35501
|
},
|
|
35459
35502
|
"RadioComponent": {
|
|
35460
35503
|
"path": "src/lib/radio/radio/radio.ts",
|
|
35461
|
-
"lineNumber":
|
|
35504
|
+
"lineNumber": 83
|
|
35462
35505
|
},
|
|
35463
35506
|
"IRadioGroupAdapter": {
|
|
35464
35507
|
"path": "src/lib/radio/radio-group/radio-group-adapter.ts",
|
|
@@ -35568,6 +35611,30 @@
|
|
|
35568
35611
|
"path": "src/lib/select/option-group/option-group.ts",
|
|
35569
35612
|
"lineNumber": 20
|
|
35570
35613
|
},
|
|
35614
|
+
"ISelectDropdownAdapter": {
|
|
35615
|
+
"path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
|
|
35616
|
+
"lineNumber": 7
|
|
35617
|
+
},
|
|
35618
|
+
"SelectDropdownAdapter": {
|
|
35619
|
+
"path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
|
|
35620
|
+
"lineNumber": 16
|
|
35621
|
+
},
|
|
35622
|
+
"ISelectDropdownCore": {
|
|
35623
|
+
"path": "src/lib/select/select-dropdown/select-dropdown-core.ts",
|
|
35624
|
+
"lineNumber": 5
|
|
35625
|
+
},
|
|
35626
|
+
"SelectDropdownCore": {
|
|
35627
|
+
"path": "src/lib/select/select-dropdown/select-dropdown-core.ts",
|
|
35628
|
+
"lineNumber": 11
|
|
35629
|
+
},
|
|
35630
|
+
"ISelectDropdownComponent": {
|
|
35631
|
+
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
35632
|
+
"lineNumber": 20
|
|
35633
|
+
},
|
|
35634
|
+
"SelectDropdownComponent": {
|
|
35635
|
+
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
35636
|
+
"lineNumber": 39
|
|
35637
|
+
},
|
|
35571
35638
|
"OptionListenerDestructor": {
|
|
35572
35639
|
"path": "src/lib/select/select/select-adapter.ts",
|
|
35573
35640
|
"lineNumber": 11
|
|
@@ -35596,30 +35663,6 @@
|
|
|
35596
35663
|
"path": "src/lib/select/select/select.ts",
|
|
35597
35664
|
"lineNumber": 156
|
|
35598
35665
|
},
|
|
35599
|
-
"ISelectDropdownAdapter": {
|
|
35600
|
-
"path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
|
|
35601
|
-
"lineNumber": 7
|
|
35602
|
-
},
|
|
35603
|
-
"SelectDropdownAdapter": {
|
|
35604
|
-
"path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
|
|
35605
|
-
"lineNumber": 16
|
|
35606
|
-
},
|
|
35607
|
-
"ISelectDropdownCore": {
|
|
35608
|
-
"path": "src/lib/select/select-dropdown/select-dropdown-core.ts",
|
|
35609
|
-
"lineNumber": 5
|
|
35610
|
-
},
|
|
35611
|
-
"SelectDropdownCore": {
|
|
35612
|
-
"path": "src/lib/select/select-dropdown/select-dropdown-core.ts",
|
|
35613
|
-
"lineNumber": 11
|
|
35614
|
-
},
|
|
35615
|
-
"ISelectDropdownComponent": {
|
|
35616
|
-
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
35617
|
-
"lineNumber": 20
|
|
35618
|
-
},
|
|
35619
|
-
"SelectDropdownComponent": {
|
|
35620
|
-
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
35621
|
-
"lineNumber": 39
|
|
35622
|
-
},
|
|
35623
35666
|
"ISplitViewBase": {
|
|
35624
35667
|
"path": "src/lib/split-view/core/split-view-base.ts",
|
|
35625
35668
|
"lineNumber": 4
|
|
@@ -35806,23 +35849,23 @@
|
|
|
35806
35849
|
},
|
|
35807
35850
|
"ITabBarAdapter": {
|
|
35808
35851
|
"path": "src/lib/tabs/tab-bar/tab-bar-adapter.ts",
|
|
35809
|
-
"lineNumber":
|
|
35852
|
+
"lineNumber": 10
|
|
35810
35853
|
},
|
|
35811
35854
|
"ITabBarScrollInfo": {
|
|
35812
35855
|
"path": "src/lib/tabs/tab-bar/tab-bar-adapter.ts",
|
|
35813
|
-
"lineNumber":
|
|
35856
|
+
"lineNumber": 29
|
|
35814
35857
|
},
|
|
35815
35858
|
"ITabBarScrollButtonState": {
|
|
35816
35859
|
"path": "src/lib/tabs/tab-bar/tab-bar-adapter.ts",
|
|
35817
|
-
"lineNumber":
|
|
35860
|
+
"lineNumber": 34
|
|
35818
35861
|
},
|
|
35819
35862
|
"TabBarAdapter": {
|
|
35820
35863
|
"path": "src/lib/tabs/tab-bar/tab-bar-adapter.ts",
|
|
35821
|
-
"lineNumber":
|
|
35864
|
+
"lineNumber": 39
|
|
35822
35865
|
},
|
|
35823
35866
|
"ITabBarChangeEventData": {
|
|
35824
35867
|
"path": "src/lib/tabs/tab-bar/tab-bar-constants.ts",
|
|
35825
|
-
"lineNumber":
|
|
35868
|
+
"lineNumber": 55
|
|
35826
35869
|
},
|
|
35827
35870
|
"ITabBarCore": {
|
|
35828
35871
|
"path": "src/lib/tabs/tab-bar/tab-bar-core.ts",
|
|
@@ -35834,11 +35877,11 @@
|
|
|
35834
35877
|
},
|
|
35835
35878
|
"ITabBarComponent": {
|
|
35836
35879
|
"path": "src/lib/tabs/tab-bar/tab-bar.ts",
|
|
35837
|
-
"lineNumber":
|
|
35880
|
+
"lineNumber": 17
|
|
35838
35881
|
},
|
|
35839
35882
|
"TabBarComponent": {
|
|
35840
35883
|
"path": "src/lib/tabs/tab-bar/tab-bar.ts",
|
|
35841
|
-
"lineNumber":
|
|
35884
|
+
"lineNumber": 83
|
|
35842
35885
|
},
|
|
35843
35886
|
"IViewComponent": {
|
|
35844
35887
|
"path": "src/lib/view-switcher/view/view.ts",
|