@momentum-design/components 0.104.4 → 0.104.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +269 -275
- package/dist/browser/index.js.map +4 -4
- package/dist/components/dialog/dialog.component.d.ts +1 -10
- package/dist/components/dialog/dialog.component.js +13 -45
- package/dist/components/menubar/menubar.component.js +1 -1
- package/dist/components/menupopover/menupopover.component.js +2 -1
- package/dist/components/popover/popover.component.d.ts +13 -5
- package/dist/components/popover/popover.component.js +25 -20
- package/dist/components/popover/popover.constants.d.ts +1 -0
- package/dist/components/popover/popover.constants.js +1 -0
- package/dist/components/popover/popover.utils.d.ts +0 -2
- package/dist/components/popover/popover.utils.js +0 -29
- package/dist/components/select/select.component.d.ts +13 -0
- package/dist/components/select/select.component.js +19 -0
- package/dist/components/select/select.styles.js +1 -0
- package/dist/custom-elements.json +619 -150
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/dist/utils/mixins/BackdropMixin.d.ts +14 -0
- package/dist/utils/mixins/BackdropMixin.js +99 -0
- package/package.json +1 -1
@@ -9239,6 +9239,21 @@
|
|
9239
9239
|
"module": "components/popover/popover.component.js"
|
9240
9240
|
}
|
9241
9241
|
},
|
9242
|
+
{
|
9243
|
+
"kind": "field",
|
9244
|
+
"name": "zIndex",
|
9245
|
+
"type": {
|
9246
|
+
"text": "number"
|
9247
|
+
},
|
9248
|
+
"description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`.",
|
9249
|
+
"default": "1000",
|
9250
|
+
"attribute": "z-index",
|
9251
|
+
"reflects": true,
|
9252
|
+
"inheritedFrom": {
|
9253
|
+
"name": "Popover",
|
9254
|
+
"module": "components/popover/popover.component.js"
|
9255
|
+
}
|
9256
|
+
},
|
9242
9257
|
{
|
9243
9258
|
"kind": "field",
|
9244
9259
|
"name": "preventScroll",
|
@@ -10042,13 +10057,13 @@
|
|
10042
10057
|
},
|
10043
10058
|
{
|
10044
10059
|
"kind": "field",
|
10045
|
-
"name": "
|
10060
|
+
"name": "backdropAppendTo",
|
10046
10061
|
"type": {
|
10047
|
-
"text": "
|
10062
|
+
"text": "string | undefined"
|
10048
10063
|
},
|
10049
|
-
"description": "
|
10050
|
-
"default": "
|
10051
|
-
"attribute": "
|
10064
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
10065
|
+
"default": "''",
|
10066
|
+
"attribute": "backdrop-append-to",
|
10052
10067
|
"reflects": true,
|
10053
10068
|
"inheritedFrom": {
|
10054
10069
|
"name": "Popover",
|
@@ -10057,13 +10072,13 @@
|
|
10057
10072
|
},
|
10058
10073
|
{
|
10059
10074
|
"kind": "field",
|
10060
|
-
"name": "
|
10075
|
+
"name": "isBackdropInvisible",
|
10061
10076
|
"type": {
|
10062
|
-
"text": "boolean"
|
10077
|
+
"text": "boolean | undefined"
|
10063
10078
|
},
|
10064
|
-
"description": "
|
10079
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
10065
10080
|
"default": "false",
|
10066
|
-
"attribute": "
|
10081
|
+
"attribute": "is-backdrop-invisible",
|
10067
10082
|
"reflects": true,
|
10068
10083
|
"inheritedFrom": {
|
10069
10084
|
"name": "Popover",
|
@@ -10072,13 +10087,28 @@
|
|
10072
10087
|
},
|
10073
10088
|
{
|
10074
10089
|
"kind": "field",
|
10075
|
-
"name": "
|
10090
|
+
"name": "flip",
|
10076
10091
|
"type": {
|
10077
|
-
"text": "
|
10092
|
+
"text": "boolean"
|
10078
10093
|
},
|
10079
|
-
"description": "
|
10080
|
-
"default": "
|
10081
|
-
"attribute": "
|
10094
|
+
"description": "Changes the placement of popover to keep it in view when scrolling.",
|
10095
|
+
"default": "true",
|
10096
|
+
"attribute": "flip",
|
10097
|
+
"reflects": true,
|
10098
|
+
"inheritedFrom": {
|
10099
|
+
"name": "Popover",
|
10100
|
+
"module": "components/popover/popover.component.js"
|
10101
|
+
}
|
10102
|
+
},
|
10103
|
+
{
|
10104
|
+
"kind": "field",
|
10105
|
+
"name": "size",
|
10106
|
+
"type": {
|
10107
|
+
"text": "boolean"
|
10108
|
+
},
|
10109
|
+
"description": "Changes the size of popover to keep it in view when scrolling.",
|
10110
|
+
"default": "false",
|
10111
|
+
"attribute": "size",
|
10082
10112
|
"reflects": true,
|
10083
10113
|
"inheritedFrom": {
|
10084
10114
|
"name": "Popover",
|
@@ -10838,6 +10868,32 @@
|
|
10838
10868
|
"module": "src/components/popover/popover.component.ts"
|
10839
10869
|
}
|
10840
10870
|
},
|
10871
|
+
{
|
10872
|
+
"name": "backdrop-append-to",
|
10873
|
+
"type": {
|
10874
|
+
"text": "string | undefined"
|
10875
|
+
},
|
10876
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
10877
|
+
"default": "''",
|
10878
|
+
"fieldName": "backdropAppendTo",
|
10879
|
+
"inheritedFrom": {
|
10880
|
+
"name": "Popover",
|
10881
|
+
"module": "src/components/popover/popover.component.ts"
|
10882
|
+
}
|
10883
|
+
},
|
10884
|
+
{
|
10885
|
+
"name": "is-backdrop-invisible",
|
10886
|
+
"type": {
|
10887
|
+
"text": "boolean | undefined"
|
10888
|
+
},
|
10889
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
10890
|
+
"default": "false",
|
10891
|
+
"fieldName": "isBackdropInvisible",
|
10892
|
+
"inheritedFrom": {
|
10893
|
+
"name": "Popover",
|
10894
|
+
"module": "src/components/popover/popover.component.ts"
|
10895
|
+
}
|
10896
|
+
},
|
10841
10897
|
{
|
10842
10898
|
"name": "flip",
|
10843
10899
|
"type": {
|
@@ -11104,7 +11160,11 @@
|
|
11104
11160
|
"description": "The z-index of the dialog\n\nThe backdrop will have z-index of `zIndex - 1`",
|
11105
11161
|
"default": "1000",
|
11106
11162
|
"attribute": "z-index",
|
11107
|
-
"reflects": true
|
11163
|
+
"reflects": true,
|
11164
|
+
"inheritedFrom": {
|
11165
|
+
"name": "BackdropMixin",
|
11166
|
+
"module": "utils/mixins/BackdropMixin.js"
|
11167
|
+
}
|
11108
11168
|
},
|
11109
11169
|
{
|
11110
11170
|
"kind": "field",
|
@@ -12032,6 +12092,10 @@
|
|
12032
12092
|
}
|
12033
12093
|
],
|
12034
12094
|
"mixins": [
|
12095
|
+
{
|
12096
|
+
"name": "BackdropMixin",
|
12097
|
+
"module": "/src/utils/mixins/BackdropMixin"
|
12098
|
+
},
|
12035
12099
|
{
|
12036
12100
|
"name": "PreventScrollMixin",
|
12037
12101
|
"module": "/src/utils/mixins/PreventScrollMixin"
|
@@ -21036,6 +21100,21 @@
|
|
21036
21100
|
}
|
21037
21101
|
}
|
21038
21102
|
},
|
21103
|
+
{
|
21104
|
+
"kind": "field",
|
21105
|
+
"name": "zIndex",
|
21106
|
+
"type": {
|
21107
|
+
"text": "number"
|
21108
|
+
},
|
21109
|
+
"description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`.",
|
21110
|
+
"default": "1000",
|
21111
|
+
"attribute": "z-index",
|
21112
|
+
"reflects": true,
|
21113
|
+
"inheritedFrom": {
|
21114
|
+
"name": "Popover",
|
21115
|
+
"module": "components/popover/popover.component.js"
|
21116
|
+
}
|
21117
|
+
},
|
21039
21118
|
{
|
21040
21119
|
"kind": "field",
|
21041
21120
|
"name": "preventScroll",
|
@@ -21869,13 +21948,13 @@
|
|
21869
21948
|
},
|
21870
21949
|
{
|
21871
21950
|
"kind": "field",
|
21872
|
-
"name": "
|
21951
|
+
"name": "backdropAppendTo",
|
21873
21952
|
"type": {
|
21874
|
-
"text": "
|
21953
|
+
"text": "string | undefined"
|
21875
21954
|
},
|
21876
|
-
"description": "
|
21877
|
-
"default": "
|
21878
|
-
"attribute": "
|
21955
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
21956
|
+
"default": "''",
|
21957
|
+
"attribute": "backdrop-append-to",
|
21879
21958
|
"reflects": true,
|
21880
21959
|
"inheritedFrom": {
|
21881
21960
|
"name": "Popover",
|
@@ -21884,13 +21963,13 @@
|
|
21884
21963
|
},
|
21885
21964
|
{
|
21886
21965
|
"kind": "field",
|
21887
|
-
"name": "
|
21966
|
+
"name": "isBackdropInvisible",
|
21888
21967
|
"type": {
|
21889
|
-
"text": "boolean"
|
21968
|
+
"text": "boolean | undefined"
|
21890
21969
|
},
|
21891
|
-
"description": "
|
21970
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
21892
21971
|
"default": "false",
|
21893
|
-
"attribute": "
|
21972
|
+
"attribute": "is-backdrop-invisible",
|
21894
21973
|
"reflects": true,
|
21895
21974
|
"inheritedFrom": {
|
21896
21975
|
"name": "Popover",
|
@@ -21899,13 +21978,28 @@
|
|
21899
21978
|
},
|
21900
21979
|
{
|
21901
21980
|
"kind": "field",
|
21902
|
-
"name": "
|
21981
|
+
"name": "flip",
|
21903
21982
|
"type": {
|
21904
|
-
"text": "
|
21983
|
+
"text": "boolean"
|
21905
21984
|
},
|
21906
|
-
"description": "
|
21907
|
-
"default": "
|
21908
|
-
"attribute": "
|
21985
|
+
"description": "Changes the placement of popover to keep it in view when scrolling.",
|
21986
|
+
"default": "true",
|
21987
|
+
"attribute": "flip",
|
21988
|
+
"reflects": true,
|
21989
|
+
"inheritedFrom": {
|
21990
|
+
"name": "Popover",
|
21991
|
+
"module": "components/popover/popover.component.js"
|
21992
|
+
}
|
21993
|
+
},
|
21994
|
+
{
|
21995
|
+
"kind": "field",
|
21996
|
+
"name": "size",
|
21997
|
+
"type": {
|
21998
|
+
"text": "boolean"
|
21999
|
+
},
|
22000
|
+
"description": "Changes the size of popover to keep it in view when scrolling.",
|
22001
|
+
"default": "false",
|
22002
|
+
"attribute": "size",
|
21909
22003
|
"reflects": true,
|
21910
22004
|
"inheritedFrom": {
|
21911
22005
|
"name": "Popover",
|
@@ -22625,6 +22719,32 @@
|
|
22625
22719
|
"module": "src/components/popover/popover.component.ts"
|
22626
22720
|
}
|
22627
22721
|
},
|
22722
|
+
{
|
22723
|
+
"name": "backdrop-append-to",
|
22724
|
+
"type": {
|
22725
|
+
"text": "string | undefined"
|
22726
|
+
},
|
22727
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
22728
|
+
"default": "''",
|
22729
|
+
"fieldName": "backdropAppendTo",
|
22730
|
+
"inheritedFrom": {
|
22731
|
+
"name": "Popover",
|
22732
|
+
"module": "src/components/popover/popover.component.ts"
|
22733
|
+
}
|
22734
|
+
},
|
22735
|
+
{
|
22736
|
+
"name": "is-backdrop-invisible",
|
22737
|
+
"type": {
|
22738
|
+
"text": "boolean | undefined"
|
22739
|
+
},
|
22740
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
22741
|
+
"default": "false",
|
22742
|
+
"fieldName": "isBackdropInvisible",
|
22743
|
+
"inheritedFrom": {
|
22744
|
+
"name": "Popover",
|
22745
|
+
"module": "src/components/popover/popover.component.ts"
|
22746
|
+
}
|
22747
|
+
},
|
22628
22748
|
{
|
22629
22749
|
"name": "flip",
|
22630
22750
|
"type": {
|
@@ -26907,6 +27027,28 @@
|
|
26907
27027
|
"attribute": "backdrop",
|
26908
27028
|
"reflects": true
|
26909
27029
|
},
|
27030
|
+
{
|
27031
|
+
"kind": "field",
|
27032
|
+
"name": "backdropAppendTo",
|
27033
|
+
"type": {
|
27034
|
+
"text": "string | undefined"
|
27035
|
+
},
|
27036
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
27037
|
+
"default": "''",
|
27038
|
+
"attribute": "backdrop-append-to",
|
27039
|
+
"reflects": true
|
27040
|
+
},
|
27041
|
+
{
|
27042
|
+
"kind": "field",
|
27043
|
+
"name": "isBackdropInvisible",
|
27044
|
+
"type": {
|
27045
|
+
"text": "boolean | undefined"
|
27046
|
+
},
|
27047
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
27048
|
+
"default": "false",
|
27049
|
+
"attribute": "is-backdrop-invisible",
|
27050
|
+
"reflects": true
|
27051
|
+
},
|
26910
27052
|
{
|
26911
27053
|
"kind": "field",
|
26912
27054
|
"name": "flip",
|
@@ -26938,7 +27080,11 @@
|
|
26938
27080
|
"description": "The z-index of the popover.",
|
26939
27081
|
"default": "1000",
|
26940
27082
|
"attribute": "z-index",
|
26941
|
-
"reflects": true
|
27083
|
+
"reflects": true,
|
27084
|
+
"inheritedFrom": {
|
27085
|
+
"name": "BackdropMixin",
|
27086
|
+
"module": "utils/mixins/BackdropMixin.js"
|
27087
|
+
}
|
26942
27088
|
},
|
26943
27089
|
{
|
26944
27090
|
"kind": "field",
|
@@ -27960,6 +28106,24 @@
|
|
27960
28106
|
"default": "false",
|
27961
28107
|
"fieldName": "backdrop"
|
27962
28108
|
},
|
28109
|
+
{
|
28110
|
+
"name": "backdrop-append-to",
|
28111
|
+
"type": {
|
28112
|
+
"text": "string | undefined"
|
28113
|
+
},
|
28114
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
28115
|
+
"default": "''",
|
28116
|
+
"fieldName": "backdropAppendTo"
|
28117
|
+
},
|
28118
|
+
{
|
28119
|
+
"name": "is-backdrop-invisible",
|
28120
|
+
"type": {
|
28121
|
+
"text": "boolean | undefined"
|
28122
|
+
},
|
28123
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
28124
|
+
"default": "false",
|
28125
|
+
"fieldName": "isBackdropInvisible"
|
28126
|
+
},
|
27963
28127
|
{
|
27964
28128
|
"name": "flip",
|
27965
28129
|
"type": {
|
@@ -28082,6 +28246,10 @@
|
|
28082
28246
|
}
|
28083
28247
|
],
|
28084
28248
|
"mixins": [
|
28249
|
+
{
|
28250
|
+
"name": "BackdropMixin",
|
28251
|
+
"module": "/src/utils/mixins/BackdropMixin"
|
28252
|
+
},
|
28085
28253
|
{
|
28086
28254
|
"name": "PreventScrollMixin",
|
28087
28255
|
"module": "/src/utils/mixins/PreventScrollMixin"
|
@@ -31987,6 +32155,46 @@
|
|
31987
32155
|
}
|
31988
32156
|
]
|
31989
32157
|
},
|
32158
|
+
{
|
32159
|
+
"kind": "javascript-module",
|
32160
|
+
"path": "components/selectlistbox/selectlistbox.component.js",
|
32161
|
+
"declarations": [
|
32162
|
+
{
|
32163
|
+
"kind": "class",
|
32164
|
+
"description": "Selectlistbox component as Light DOM component to act as a simple wrapper\nfor mdc-option components to ensure accessibility and proper role assignment.\n\nOnce [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\nand mdc-option can be used directly in the select component with a listbox in a different\nshadow root and aria-owns attribute to connect them.",
|
32165
|
+
"name": "Selectlistbox",
|
32166
|
+
"slots": [
|
32167
|
+
{
|
32168
|
+
"description": "This is a default/unnamed slot, which can be used to insert mdc-option components.",
|
32169
|
+
"name": "default"
|
32170
|
+
}
|
32171
|
+
],
|
32172
|
+
"members": [
|
32173
|
+
{
|
32174
|
+
"kind": "field",
|
32175
|
+
"name": "role"
|
32176
|
+
}
|
32177
|
+
],
|
32178
|
+
"superclass": {
|
32179
|
+
"name": "Component",
|
32180
|
+
"module": "/src/models"
|
32181
|
+
},
|
32182
|
+
"tagName": "mdc-selectlistbox",
|
32183
|
+
"jsDoc": "/**\n * Selectlistbox component as Light DOM component to act as a simple wrapper\n * for mdc-option components to ensure accessibility and proper role assignment.\n *\n * Once [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\n * and mdc-option can be used directly in the select component with a listbox in a different\n * shadow root and aria-owns attribute to connect them.\n *\n * @tagname mdc-selectlistbox\n *\n * @slot default - This is a default/unnamed slot, which can be used to insert mdc-option components.\n */",
|
32184
|
+
"customElement": true
|
32185
|
+
}
|
32186
|
+
],
|
32187
|
+
"exports": [
|
32188
|
+
{
|
32189
|
+
"kind": "js",
|
32190
|
+
"name": "default",
|
32191
|
+
"declaration": {
|
32192
|
+
"name": "Selectlistbox",
|
32193
|
+
"module": "components/selectlistbox/selectlistbox.component.js"
|
32194
|
+
}
|
32195
|
+
}
|
32196
|
+
]
|
32197
|
+
},
|
31990
32198
|
{
|
31991
32199
|
"kind": "javascript-module",
|
31992
32200
|
"path": "components/select/select.component.js",
|
@@ -32126,6 +32334,27 @@
|
|
32126
32334
|
"attribute": "strategy",
|
32127
32335
|
"reflects": true
|
32128
32336
|
},
|
32337
|
+
{
|
32338
|
+
"kind": "field",
|
32339
|
+
"name": "popoverZIndex",
|
32340
|
+
"type": {
|
32341
|
+
"text": "number"
|
32342
|
+
},
|
32343
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
32344
|
+
"default": "1000",
|
32345
|
+
"attribute": "popover-z-index",
|
32346
|
+
"reflects": true
|
32347
|
+
},
|
32348
|
+
{
|
32349
|
+
"kind": "field",
|
32350
|
+
"name": "backdropAppendTo",
|
32351
|
+
"type": {
|
32352
|
+
"text": "string | undefined"
|
32353
|
+
},
|
32354
|
+
"description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
|
32355
|
+
"attribute": "backdrop-append-to",
|
32356
|
+
"reflects": true
|
32357
|
+
},
|
32129
32358
|
{
|
32130
32359
|
"kind": "method",
|
32131
32360
|
"name": "getAllValidOptions",
|
@@ -32777,6 +33006,23 @@
|
|
32777
33006
|
"default": "absolute",
|
32778
33007
|
"fieldName": "strategy"
|
32779
33008
|
},
|
33009
|
+
{
|
33010
|
+
"name": "popover-z-index",
|
33011
|
+
"type": {
|
33012
|
+
"text": "number"
|
33013
|
+
},
|
33014
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
33015
|
+
"default": "1000",
|
33016
|
+
"fieldName": "popoverZIndex"
|
33017
|
+
},
|
33018
|
+
{
|
33019
|
+
"name": "backdrop-append-to",
|
33020
|
+
"type": {
|
33021
|
+
"text": "string | undefined"
|
33022
|
+
},
|
33023
|
+
"description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
|
33024
|
+
"fieldName": "backdropAppendTo"
|
33025
|
+
},
|
32780
33026
|
{
|
32781
33027
|
"name": "name",
|
32782
33028
|
"type": {
|
@@ -32973,30 +33219,72 @@
|
|
32973
33219
|
},
|
32974
33220
|
{
|
32975
33221
|
"kind": "javascript-module",
|
32976
|
-
"path": "components/
|
33222
|
+
"path": "components/skeleton/skeleton.component.js",
|
32977
33223
|
"declarations": [
|
32978
33224
|
{
|
32979
33225
|
"kind": "class",
|
32980
|
-
"description": "
|
32981
|
-
"name": "
|
33226
|
+
"description": "`mdc-skeleton` is a component that shows a grey placeholder area.\nIt provides visual feedback to users that content is being loaded.\n\n**Skeleton Variants:**\n- **rectangular**: Default variant with 0.25rem border radius\n- **rounded**: Has 0.5rem border radius\n- **circular**: Has 50% border radius for circular shapes\n- **button**: Optimized for button placeholders with 1.25rem border radius\n\n**Sizing Behavior:**\n1. If wrapping content, takes dimensions of wrapped content\n2. Otherwise grows to fill parent container",
|
33227
|
+
"name": "Skeleton",
|
33228
|
+
"cssProperties": [
|
33229
|
+
{
|
33230
|
+
"description": "background color of the skeleton",
|
33231
|
+
"name": "--mdc-skeleton-background-color"
|
33232
|
+
},
|
33233
|
+
{
|
33234
|
+
"description": "height of the skeleton",
|
33235
|
+
"name": "--mdc-skeleton-height"
|
33236
|
+
},
|
33237
|
+
{
|
33238
|
+
"description": "width of the skeleton",
|
33239
|
+
"name": "--mdc-skeleton-width"
|
33240
|
+
}
|
33241
|
+
],
|
32982
33242
|
"slots": [
|
32983
33243
|
{
|
32984
|
-
"description": "
|
32985
|
-
"name": "
|
33244
|
+
"description": "Content to wrap (optional). When provided, skeleton takes dimensions of this content.",
|
33245
|
+
"name": ""
|
32986
33246
|
}
|
32987
33247
|
],
|
32988
33248
|
"members": [
|
32989
33249
|
{
|
32990
33250
|
"kind": "field",
|
32991
|
-
"name": "
|
33251
|
+
"name": "variant",
|
33252
|
+
"type": {
|
33253
|
+
"text": "SkeletonVariant"
|
33254
|
+
},
|
33255
|
+
"description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
|
33256
|
+
"default": "rectangular",
|
33257
|
+
"attribute": "variant",
|
33258
|
+
"reflects": true
|
33259
|
+
},
|
33260
|
+
{
|
33261
|
+
"kind": "method",
|
33262
|
+
"name": "checkSlotContent",
|
33263
|
+
"privacy": "private",
|
33264
|
+
"return": {
|
33265
|
+
"type": {
|
33266
|
+
"text": "void"
|
33267
|
+
}
|
33268
|
+
}
|
33269
|
+
}
|
33270
|
+
],
|
33271
|
+
"attributes": [
|
33272
|
+
{
|
33273
|
+
"name": "variant",
|
33274
|
+
"type": {
|
33275
|
+
"text": "SkeletonVariant"
|
33276
|
+
},
|
33277
|
+
"description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
|
33278
|
+
"default": "rectangular",
|
33279
|
+
"fieldName": "variant"
|
32992
33280
|
}
|
32993
33281
|
],
|
32994
33282
|
"superclass": {
|
32995
33283
|
"name": "Component",
|
32996
33284
|
"module": "/src/models"
|
32997
33285
|
},
|
32998
|
-
"tagName": "mdc-
|
32999
|
-
"jsDoc": "/**\n *
|
33286
|
+
"tagName": "mdc-skeleton",
|
33287
|
+
"jsDoc": "/**\n * `mdc-skeleton` is a component that shows a grey placeholder area.\n * It provides visual feedback to users that content is being loaded.\n *\n * **Skeleton Variants:**\n * - **rectangular**: Default variant with 0.25rem border radius\n * - **rounded**: Has 0.5rem border radius\n * - **circular**: Has 50% border radius for circular shapes\n * - **button**: Optimized for button placeholders with 1.25rem border radius\n *\n * **Sizing Behavior:**\n * 1. If wrapping content, takes dimensions of wrapped content\n * 2. Otherwise grows to fill parent container\n *\n * @tagname mdc-skeleton\n *\n * @slot - Content to wrap (optional). When provided, skeleton takes dimensions of this content.\n *\n * @cssproperty --mdc-skeleton-background-color - background color of the skeleton\n * @cssproperty --mdc-skeleton-height - height of the skeleton\n * @cssproperty --mdc-skeleton-width - width of the skeleton\n */",
|
33000
33288
|
"customElement": true
|
33001
33289
|
}
|
33002
33290
|
],
|
@@ -33005,8 +33293,8 @@
|
|
33005
33293
|
"kind": "js",
|
33006
33294
|
"name": "default",
|
33007
33295
|
"declaration": {
|
33008
|
-
"name": "
|
33009
|
-
"module": "components/
|
33296
|
+
"name": "Skeleton",
|
33297
|
+
"module": "components/skeleton/skeleton.component.js"
|
33010
33298
|
}
|
33011
33299
|
}
|
33012
33300
|
]
|
@@ -33198,88 +33486,6 @@
|
|
33198
33486
|
}
|
33199
33487
|
]
|
33200
33488
|
},
|
33201
|
-
{
|
33202
|
-
"kind": "javascript-module",
|
33203
|
-
"path": "components/skeleton/skeleton.component.js",
|
33204
|
-
"declarations": [
|
33205
|
-
{
|
33206
|
-
"kind": "class",
|
33207
|
-
"description": "`mdc-skeleton` is a component that shows a grey placeholder area.\nIt provides visual feedback to users that content is being loaded.\n\n**Skeleton Variants:**\n- **rectangular**: Default variant with 0.25rem border radius\n- **rounded**: Has 0.5rem border radius\n- **circular**: Has 50% border radius for circular shapes\n- **button**: Optimized for button placeholders with 1.25rem border radius\n\n**Sizing Behavior:**\n1. If wrapping content, takes dimensions of wrapped content\n2. Otherwise grows to fill parent container",
|
33208
|
-
"name": "Skeleton",
|
33209
|
-
"cssProperties": [
|
33210
|
-
{
|
33211
|
-
"description": "background color of the skeleton",
|
33212
|
-
"name": "--mdc-skeleton-background-color"
|
33213
|
-
},
|
33214
|
-
{
|
33215
|
-
"description": "height of the skeleton",
|
33216
|
-
"name": "--mdc-skeleton-height"
|
33217
|
-
},
|
33218
|
-
{
|
33219
|
-
"description": "width of the skeleton",
|
33220
|
-
"name": "--mdc-skeleton-width"
|
33221
|
-
}
|
33222
|
-
],
|
33223
|
-
"slots": [
|
33224
|
-
{
|
33225
|
-
"description": "Content to wrap (optional). When provided, skeleton takes dimensions of this content.",
|
33226
|
-
"name": ""
|
33227
|
-
}
|
33228
|
-
],
|
33229
|
-
"members": [
|
33230
|
-
{
|
33231
|
-
"kind": "field",
|
33232
|
-
"name": "variant",
|
33233
|
-
"type": {
|
33234
|
-
"text": "SkeletonVariant"
|
33235
|
-
},
|
33236
|
-
"description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
|
33237
|
-
"default": "rectangular",
|
33238
|
-
"attribute": "variant",
|
33239
|
-
"reflects": true
|
33240
|
-
},
|
33241
|
-
{
|
33242
|
-
"kind": "method",
|
33243
|
-
"name": "checkSlotContent",
|
33244
|
-
"privacy": "private",
|
33245
|
-
"return": {
|
33246
|
-
"type": {
|
33247
|
-
"text": "void"
|
33248
|
-
}
|
33249
|
-
}
|
33250
|
-
}
|
33251
|
-
],
|
33252
|
-
"attributes": [
|
33253
|
-
{
|
33254
|
-
"name": "variant",
|
33255
|
-
"type": {
|
33256
|
-
"text": "SkeletonVariant"
|
33257
|
-
},
|
33258
|
-
"description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
|
33259
|
-
"default": "rectangular",
|
33260
|
-
"fieldName": "variant"
|
33261
|
-
}
|
33262
|
-
],
|
33263
|
-
"superclass": {
|
33264
|
-
"name": "Component",
|
33265
|
-
"module": "/src/models"
|
33266
|
-
},
|
33267
|
-
"tagName": "mdc-skeleton",
|
33268
|
-
"jsDoc": "/**\n * `mdc-skeleton` is a component that shows a grey placeholder area.\n * It provides visual feedback to users that content is being loaded.\n *\n * **Skeleton Variants:**\n * - **rectangular**: Default variant with 0.25rem border radius\n * - **rounded**: Has 0.5rem border radius\n * - **circular**: Has 50% border radius for circular shapes\n * - **button**: Optimized for button placeholders with 1.25rem border radius\n *\n * **Sizing Behavior:**\n * 1. If wrapping content, takes dimensions of wrapped content\n * 2. Otherwise grows to fill parent container\n *\n * @tagname mdc-skeleton\n *\n * @slot - Content to wrap (optional). When provided, skeleton takes dimensions of this content.\n *\n * @cssproperty --mdc-skeleton-background-color - background color of the skeleton\n * @cssproperty --mdc-skeleton-height - height of the skeleton\n * @cssproperty --mdc-skeleton-width - width of the skeleton\n */",
|
33269
|
-
"customElement": true
|
33270
|
-
}
|
33271
|
-
],
|
33272
|
-
"exports": [
|
33273
|
-
{
|
33274
|
-
"kind": "js",
|
33275
|
-
"name": "default",
|
33276
|
-
"declaration": {
|
33277
|
-
"name": "Skeleton",
|
33278
|
-
"module": "components/skeleton/skeleton.component.js"
|
33279
|
-
}
|
33280
|
-
}
|
33281
|
-
]
|
33282
|
-
},
|
33283
33489
|
{
|
33284
33490
|
"kind": "javascript-module",
|
33285
33491
|
"path": "components/spinner/spinner.component.js",
|
@@ -37676,6 +37882,21 @@
|
|
37676
37882
|
},
|
37677
37883
|
"description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
|
37678
37884
|
},
|
37885
|
+
{
|
37886
|
+
"kind": "field",
|
37887
|
+
"name": "zIndex",
|
37888
|
+
"type": {
|
37889
|
+
"text": "number"
|
37890
|
+
},
|
37891
|
+
"description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`.",
|
37892
|
+
"default": "1000",
|
37893
|
+
"attribute": "z-index",
|
37894
|
+
"reflects": true,
|
37895
|
+
"inheritedFrom": {
|
37896
|
+
"name": "Popover",
|
37897
|
+
"module": "components/popover/popover.component.js"
|
37898
|
+
}
|
37899
|
+
},
|
37679
37900
|
{
|
37680
37901
|
"kind": "field",
|
37681
37902
|
"name": "preventScroll",
|
@@ -38509,13 +38730,13 @@
|
|
38509
38730
|
},
|
38510
38731
|
{
|
38511
38732
|
"kind": "field",
|
38512
|
-
"name": "
|
38733
|
+
"name": "backdropAppendTo",
|
38513
38734
|
"type": {
|
38514
|
-
"text": "
|
38735
|
+
"text": "string | undefined"
|
38515
38736
|
},
|
38516
|
-
"description": "
|
38517
|
-
"default": "
|
38518
|
-
"attribute": "
|
38737
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
38738
|
+
"default": "''",
|
38739
|
+
"attribute": "backdrop-append-to",
|
38519
38740
|
"reflects": true,
|
38520
38741
|
"inheritedFrom": {
|
38521
38742
|
"name": "Popover",
|
@@ -38524,13 +38745,13 @@
|
|
38524
38745
|
},
|
38525
38746
|
{
|
38526
38747
|
"kind": "field",
|
38527
|
-
"name": "
|
38748
|
+
"name": "isBackdropInvisible",
|
38528
38749
|
"type": {
|
38529
|
-
"text": "boolean"
|
38750
|
+
"text": "boolean | undefined"
|
38530
38751
|
},
|
38531
|
-
"description": "
|
38752
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
38532
38753
|
"default": "false",
|
38533
|
-
"attribute": "
|
38754
|
+
"attribute": "is-backdrop-invisible",
|
38534
38755
|
"reflects": true,
|
38535
38756
|
"inheritedFrom": {
|
38536
38757
|
"name": "Popover",
|
@@ -38539,13 +38760,28 @@
|
|
38539
38760
|
},
|
38540
38761
|
{
|
38541
38762
|
"kind": "field",
|
38542
|
-
"name": "
|
38763
|
+
"name": "flip",
|
38543
38764
|
"type": {
|
38544
|
-
"text": "
|
38765
|
+
"text": "boolean"
|
38545
38766
|
},
|
38546
|
-
"description": "
|
38547
|
-
"default": "
|
38548
|
-
"attribute": "
|
38767
|
+
"description": "Changes the placement of popover to keep it in view when scrolling.",
|
38768
|
+
"default": "true",
|
38769
|
+
"attribute": "flip",
|
38770
|
+
"reflects": true,
|
38771
|
+
"inheritedFrom": {
|
38772
|
+
"name": "Popover",
|
38773
|
+
"module": "components/popover/popover.component.js"
|
38774
|
+
}
|
38775
|
+
},
|
38776
|
+
{
|
38777
|
+
"kind": "field",
|
38778
|
+
"name": "size",
|
38779
|
+
"type": {
|
38780
|
+
"text": "boolean"
|
38781
|
+
},
|
38782
|
+
"description": "Changes the size of popover to keep it in view when scrolling.",
|
38783
|
+
"default": "false",
|
38784
|
+
"attribute": "size",
|
38549
38785
|
"reflects": true,
|
38550
38786
|
"inheritedFrom": {
|
38551
38787
|
"name": "Popover",
|
@@ -39315,6 +39551,32 @@
|
|
39315
39551
|
"module": "src/components/popover/popover.component.ts"
|
39316
39552
|
}
|
39317
39553
|
},
|
39554
|
+
{
|
39555
|
+
"name": "backdrop-append-to",
|
39556
|
+
"type": {
|
39557
|
+
"text": "string | undefined"
|
39558
|
+
},
|
39559
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
39560
|
+
"default": "''",
|
39561
|
+
"fieldName": "backdropAppendTo",
|
39562
|
+
"inheritedFrom": {
|
39563
|
+
"name": "Popover",
|
39564
|
+
"module": "src/components/popover/popover.component.ts"
|
39565
|
+
}
|
39566
|
+
},
|
39567
|
+
{
|
39568
|
+
"name": "is-backdrop-invisible",
|
39569
|
+
"type": {
|
39570
|
+
"text": "boolean | undefined"
|
39571
|
+
},
|
39572
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
39573
|
+
"default": "false",
|
39574
|
+
"fieldName": "isBackdropInvisible",
|
39575
|
+
"inheritedFrom": {
|
39576
|
+
"name": "Popover",
|
39577
|
+
"module": "src/components/popover/popover.component.ts"
|
39578
|
+
}
|
39579
|
+
},
|
39318
39580
|
{
|
39319
39581
|
"name": "flip",
|
39320
39582
|
"type": {
|
@@ -39689,6 +39951,21 @@
|
|
39689
39951
|
],
|
39690
39952
|
"description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
|
39691
39953
|
},
|
39954
|
+
{
|
39955
|
+
"kind": "field",
|
39956
|
+
"name": "zIndex",
|
39957
|
+
"type": {
|
39958
|
+
"text": "number"
|
39959
|
+
},
|
39960
|
+
"description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`.",
|
39961
|
+
"default": "1000",
|
39962
|
+
"attribute": "z-index",
|
39963
|
+
"reflects": true,
|
39964
|
+
"inheritedFrom": {
|
39965
|
+
"name": "Popover",
|
39966
|
+
"module": "components/popover/popover.component.js"
|
39967
|
+
}
|
39968
|
+
},
|
39692
39969
|
{
|
39693
39970
|
"kind": "field",
|
39694
39971
|
"name": "preventScroll",
|
@@ -40537,13 +40814,13 @@
|
|
40537
40814
|
},
|
40538
40815
|
{
|
40539
40816
|
"kind": "field",
|
40540
|
-
"name": "
|
40817
|
+
"name": "backdropAppendTo",
|
40541
40818
|
"type": {
|
40542
|
-
"text": "
|
40819
|
+
"text": "string | undefined"
|
40543
40820
|
},
|
40544
|
-
"description": "
|
40545
|
-
"default": "
|
40546
|
-
"attribute": "
|
40821
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
40822
|
+
"default": "''",
|
40823
|
+
"attribute": "backdrop-append-to",
|
40547
40824
|
"reflects": true,
|
40548
40825
|
"inheritedFrom": {
|
40549
40826
|
"name": "Popover",
|
@@ -40552,13 +40829,13 @@
|
|
40552
40829
|
},
|
40553
40830
|
{
|
40554
40831
|
"kind": "field",
|
40555
|
-
"name": "
|
40832
|
+
"name": "isBackdropInvisible",
|
40556
40833
|
"type": {
|
40557
|
-
"text": "boolean"
|
40834
|
+
"text": "boolean | undefined"
|
40558
40835
|
},
|
40559
|
-
"description": "
|
40836
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
40560
40837
|
"default": "false",
|
40561
|
-
"attribute": "
|
40838
|
+
"attribute": "is-backdrop-invisible",
|
40562
40839
|
"reflects": true,
|
40563
40840
|
"inheritedFrom": {
|
40564
40841
|
"name": "Popover",
|
@@ -40567,13 +40844,28 @@
|
|
40567
40844
|
},
|
40568
40845
|
{
|
40569
40846
|
"kind": "field",
|
40570
|
-
"name": "
|
40847
|
+
"name": "flip",
|
40571
40848
|
"type": {
|
40572
|
-
"text": "
|
40849
|
+
"text": "boolean"
|
40573
40850
|
},
|
40574
|
-
"description": "
|
40575
|
-
"default": "
|
40576
|
-
"attribute": "
|
40851
|
+
"description": "Changes the placement of popover to keep it in view when scrolling.",
|
40852
|
+
"default": "true",
|
40853
|
+
"attribute": "flip",
|
40854
|
+
"reflects": true,
|
40855
|
+
"inheritedFrom": {
|
40856
|
+
"name": "Popover",
|
40857
|
+
"module": "components/popover/popover.component.js"
|
40858
|
+
}
|
40859
|
+
},
|
40860
|
+
{
|
40861
|
+
"kind": "field",
|
40862
|
+
"name": "size",
|
40863
|
+
"type": {
|
40864
|
+
"text": "boolean"
|
40865
|
+
},
|
40866
|
+
"description": "Changes the size of popover to keep it in view when scrolling.",
|
40867
|
+
"default": "false",
|
40868
|
+
"attribute": "size",
|
40577
40869
|
"reflects": true,
|
40578
40870
|
"inheritedFrom": {
|
40579
40871
|
"name": "Popover",
|
@@ -41344,6 +41636,32 @@
|
|
41344
41636
|
"module": "src/components/popover/popover.component.ts"
|
41345
41637
|
}
|
41346
41638
|
},
|
41639
|
+
{
|
41640
|
+
"name": "backdrop-append-to",
|
41641
|
+
"type": {
|
41642
|
+
"text": "string | undefined"
|
41643
|
+
},
|
41644
|
+
"description": "Element ID the backdrop will be a append to (if `backdrop` is true).",
|
41645
|
+
"default": "''",
|
41646
|
+
"fieldName": "backdropAppendTo",
|
41647
|
+
"inheritedFrom": {
|
41648
|
+
"name": "Popover",
|
41649
|
+
"module": "src/components/popover/popover.component.ts"
|
41650
|
+
}
|
41651
|
+
},
|
41652
|
+
{
|
41653
|
+
"name": "is-backdrop-invisible",
|
41654
|
+
"type": {
|
41655
|
+
"text": "boolean | undefined"
|
41656
|
+
},
|
41657
|
+
"description": "Set this property to true to make the backdrop invisible (if `backdrop` is true).\nThis is useful for components that do want a backdrop which stops interaction,\nbut do not want the backdrop to be visible as a overlay.",
|
41658
|
+
"default": "false",
|
41659
|
+
"fieldName": "isBackdropInvisible",
|
41660
|
+
"inheritedFrom": {
|
41661
|
+
"name": "Popover",
|
41662
|
+
"module": "src/components/popover/popover.component.ts"
|
41663
|
+
}
|
41664
|
+
},
|
41347
41665
|
{
|
41348
41666
|
"name": "flip",
|
41349
41667
|
"type": {
|
@@ -42193,6 +42511,157 @@
|
|
42193
42511
|
}
|
42194
42512
|
]
|
42195
42513
|
},
|
42514
|
+
{
|
42515
|
+
"kind": "javascript-module",
|
42516
|
+
"path": "utils/mixins/BackdropMixin.js",
|
42517
|
+
"declarations": [
|
42518
|
+
{
|
42519
|
+
"kind": "class",
|
42520
|
+
"description": "",
|
42521
|
+
"name": "BackdropMixinInterface",
|
42522
|
+
"members": [
|
42523
|
+
{
|
42524
|
+
"kind": "field",
|
42525
|
+
"name": "zIndex",
|
42526
|
+
"type": {
|
42527
|
+
"text": "number"
|
42528
|
+
}
|
42529
|
+
},
|
42530
|
+
{
|
42531
|
+
"kind": "field",
|
42532
|
+
"name": "backdropElement",
|
42533
|
+
"type": {
|
42534
|
+
"text": "HTMLElement | null"
|
42535
|
+
},
|
42536
|
+
"privacy": "protected"
|
42537
|
+
},
|
42538
|
+
{
|
42539
|
+
"kind": "field",
|
42540
|
+
"name": "isBackdropInvisible",
|
42541
|
+
"type": {
|
42542
|
+
"text": "boolean | undefined"
|
42543
|
+
},
|
42544
|
+
"privacy": "protected"
|
42545
|
+
},
|
42546
|
+
{
|
42547
|
+
"kind": "field",
|
42548
|
+
"name": "backdropAppendTo",
|
42549
|
+
"type": {
|
42550
|
+
"text": "string | undefined"
|
42551
|
+
},
|
42552
|
+
"privacy": "protected"
|
42553
|
+
},
|
42554
|
+
{
|
42555
|
+
"kind": "method",
|
42556
|
+
"name": "createBackdrop",
|
42557
|
+
"privacy": "protected",
|
42558
|
+
"return": {
|
42559
|
+
"type": {
|
42560
|
+
"text": "void"
|
42561
|
+
}
|
42562
|
+
},
|
42563
|
+
"parameters": [
|
42564
|
+
{
|
42565
|
+
"name": "classNamePrefix",
|
42566
|
+
"type": {
|
42567
|
+
"text": "string"
|
42568
|
+
}
|
42569
|
+
}
|
42570
|
+
]
|
42571
|
+
},
|
42572
|
+
{
|
42573
|
+
"kind": "method",
|
42574
|
+
"name": "removeBackdrop",
|
42575
|
+
"privacy": "protected",
|
42576
|
+
"return": {
|
42577
|
+
"type": {
|
42578
|
+
"text": "void"
|
42579
|
+
}
|
42580
|
+
}
|
42581
|
+
},
|
42582
|
+
{
|
42583
|
+
"kind": "method",
|
42584
|
+
"name": "keepElementAboveBackdrop",
|
42585
|
+
"privacy": "protected",
|
42586
|
+
"return": {
|
42587
|
+
"type": {
|
42588
|
+
"text": "void"
|
42589
|
+
}
|
42590
|
+
},
|
42591
|
+
"parameters": [
|
42592
|
+
{
|
42593
|
+
"name": "element",
|
42594
|
+
"optional": true,
|
42595
|
+
"type": {
|
42596
|
+
"text": "HTMLElement | null"
|
42597
|
+
}
|
42598
|
+
}
|
42599
|
+
]
|
42600
|
+
},
|
42601
|
+
{
|
42602
|
+
"kind": "method",
|
42603
|
+
"name": "moveElementBackAfterBackdropRemoval",
|
42604
|
+
"privacy": "protected",
|
42605
|
+
"return": {
|
42606
|
+
"type": {
|
42607
|
+
"text": "void"
|
42608
|
+
}
|
42609
|
+
},
|
42610
|
+
"parameters": [
|
42611
|
+
{
|
42612
|
+
"name": "element",
|
42613
|
+
"optional": true,
|
42614
|
+
"type": {
|
42615
|
+
"text": "HTMLElement | null"
|
42616
|
+
}
|
42617
|
+
}
|
42618
|
+
]
|
42619
|
+
}
|
42620
|
+
]
|
42621
|
+
},
|
42622
|
+
{
|
42623
|
+
"kind": "mixin",
|
42624
|
+
"description": "",
|
42625
|
+
"name": "BackdropMixin",
|
42626
|
+
"members": [
|
42627
|
+
{
|
42628
|
+
"kind": "field",
|
42629
|
+
"name": "zIndex",
|
42630
|
+
"type": {
|
42631
|
+
"text": "number"
|
42632
|
+
},
|
42633
|
+
"description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`."
|
42634
|
+
}
|
42635
|
+
],
|
42636
|
+
"parameters": [
|
42637
|
+
{
|
42638
|
+
"name": "superClass",
|
42639
|
+
"type": {
|
42640
|
+
"text": "T"
|
42641
|
+
}
|
42642
|
+
}
|
42643
|
+
]
|
42644
|
+
}
|
42645
|
+
],
|
42646
|
+
"exports": [
|
42647
|
+
{
|
42648
|
+
"kind": "js",
|
42649
|
+
"name": "BackdropMixinInterface",
|
42650
|
+
"declaration": {
|
42651
|
+
"name": "BackdropMixinInterface",
|
42652
|
+
"module": "utils/mixins/BackdropMixin.js"
|
42653
|
+
}
|
42654
|
+
},
|
42655
|
+
{
|
42656
|
+
"kind": "js",
|
42657
|
+
"name": "BackdropMixin",
|
42658
|
+
"declaration": {
|
42659
|
+
"name": "BackdropMixin",
|
42660
|
+
"module": "utils/mixins/BackdropMixin.js"
|
42661
|
+
}
|
42662
|
+
}
|
42663
|
+
]
|
42664
|
+
},
|
42196
42665
|
{
|
42197
42666
|
"kind": "javascript-module",
|
42198
42667
|
"path": "utils/mixins/ButtonComponentMixin.js",
|