@vonage/vivid 3.10.0 → 3.11.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/accordion/index.js +1 -0
- package/breadcrumb/index.js +1 -0
- package/card/index.js +1 -0
- package/combobox/index.js +1 -0
- package/custom-elements.json +297 -327
- package/data-grid/index.js +2 -1
- package/dialog/index.js +1 -0
- package/index.js +3 -2
- package/lib/enums.d.ts +10 -9
- package/lib/layout/layout.d.ts +2 -0
- package/lib/pagination/definition.d.ts +3 -0
- package/lib/pagination/index.d.ts +1 -0
- package/lib/pagination/pagination.d.ts +18 -0
- package/lib/pagination/pagination.template.d.ts +4 -0
- package/lib/popup/popup.d.ts +2 -2
- package/lib/tooltip/tooltip.d.ts +10 -5
- package/listbox/index.js +1 -0
- package/menu/index.js +1 -0
- package/package.json +1 -1
- package/pagination/index.js +329 -0
- package/radio-group/index.js +2 -1
- package/select/index.js +1 -0
- package/shared/children.js +1 -1
- package/shared/definition.js +3 -2
- package/shared/definition10.js +1 -1
- package/shared/definition11.js +1 -1
- package/shared/definition12.js +8 -8
- package/shared/definition13.js +2 -1
- package/shared/definition14.js +1 -1
- package/shared/definition15.js +1 -1
- package/shared/definition16.js +1 -1
- package/shared/definition17.js +1 -1
- package/shared/definition18.js +1 -1
- package/shared/definition19.js +1 -1
- package/shared/definition2.js +1 -1
- package/shared/definition20.js +5 -17
- package/shared/definition21.js +1 -1
- package/shared/definition22.js +4 -3
- package/shared/definition23.js +2 -2
- package/shared/definition24.js +1 -1
- package/shared/definition25.js +1 -1
- package/shared/definition26.js +1 -1
- package/shared/definition27.js +7 -3
- package/shared/definition28.js +1 -1
- package/shared/definition30.js +1 -1
- package/shared/definition32.js +1 -1
- package/shared/definition33.js +1 -1
- package/shared/definition34.js +1 -1
- package/shared/definition35.js +1 -1
- package/shared/definition36.js +1 -1
- package/shared/definition37.js +1 -1
- package/shared/definition38.js +3 -2
- package/shared/definition39.js +1 -1
- package/shared/definition4.js +1 -1
- package/shared/definition40.js +1 -1
- package/shared/definition42.js +1 -1
- package/shared/definition43.js +1 -1
- package/shared/definition45.js +1 -1
- package/shared/definition46.js +1 -1
- package/shared/definition48.js +1 -1
- package/shared/definition5.js +1 -1
- package/shared/definition50.js +34 -26
- package/shared/definition51.js +3 -2
- package/shared/definition6.js +1 -1
- package/shared/definition7.js +5 -4
- package/shared/definition9.js +1 -1
- package/shared/enums.js +10 -9
- package/shared/form-elements.js +1 -1
- package/shared/index.js +1 -1
- package/shared/node-observation.js +74 -0
- package/shared/patterns/form-elements/form-elements.d.ts +4 -4
- package/shared/slotted.js +3 -73
- package/shared/text-field.js +1 -1
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/tabs/index.js +1 -0
- package/tree-item/index.js +1 -0
- package/tree-view/index.js +1 -0
- package/vivid.api.json +37 -16
package/custom-elements.json
CHANGED
|
@@ -3696,6 +3696,15 @@
|
|
|
3696
3696
|
"description": "sets the initial preferred spacing of a column from predefined available options",
|
|
3697
3697
|
"privacy": "public"
|
|
3698
3698
|
},
|
|
3699
|
+
{
|
|
3700
|
+
"kind": "field",
|
|
3701
|
+
"name": "rowSpacing",
|
|
3702
|
+
"type": {
|
|
3703
|
+
"text": "RowSpacing | undefined"
|
|
3704
|
+
},
|
|
3705
|
+
"description": "sets the initial preferred spacing of a row from predefined available options",
|
|
3706
|
+
"privacy": "public"
|
|
3707
|
+
},
|
|
3699
3708
|
{
|
|
3700
3709
|
"kind": "field",
|
|
3701
3710
|
"name": "autoSizing",
|
|
@@ -3731,6 +3740,14 @@
|
|
|
3731
3740
|
"description": "sets the initial preferred spacing of a column from predefined available options",
|
|
3732
3741
|
"fieldName": "columnSpacing"
|
|
3733
3742
|
},
|
|
3743
|
+
{
|
|
3744
|
+
"name": "row-spacing",
|
|
3745
|
+
"type": {
|
|
3746
|
+
"text": "RowSpacing | undefined"
|
|
3747
|
+
},
|
|
3748
|
+
"description": "sets the initial preferred spacing of a row from predefined available options",
|
|
3749
|
+
"fieldName": "rowSpacing"
|
|
3750
|
+
},
|
|
3734
3751
|
{
|
|
3735
3752
|
"name": "auto-sizing",
|
|
3736
3753
|
"type": {
|
|
@@ -4777,6 +4794,215 @@
|
|
|
4777
4794
|
}
|
|
4778
4795
|
]
|
|
4779
4796
|
},
|
|
4797
|
+
{
|
|
4798
|
+
"kind": "javascript-module",
|
|
4799
|
+
"path": "libs/components/src/lib/pagination/definition.ts",
|
|
4800
|
+
"declarations": [
|
|
4801
|
+
{
|
|
4802
|
+
"kind": "variable",
|
|
4803
|
+
"name": "paginationDefinition"
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"kind": "variable",
|
|
4807
|
+
"name": "registerPagination",
|
|
4808
|
+
"description": "Registers the pagination element with the design system.",
|
|
4809
|
+
"parameters": [
|
|
4810
|
+
{
|
|
4811
|
+
"description": "the prefix to use for the component name",
|
|
4812
|
+
"name": "prefix"
|
|
4813
|
+
}
|
|
4814
|
+
]
|
|
4815
|
+
}
|
|
4816
|
+
],
|
|
4817
|
+
"exports": [
|
|
4818
|
+
{
|
|
4819
|
+
"kind": "js",
|
|
4820
|
+
"name": "paginationDefinition",
|
|
4821
|
+
"declaration": {
|
|
4822
|
+
"name": "paginationDefinition",
|
|
4823
|
+
"module": "libs/components/src/lib/pagination/definition.ts"
|
|
4824
|
+
}
|
|
4825
|
+
},
|
|
4826
|
+
{
|
|
4827
|
+
"kind": "js",
|
|
4828
|
+
"name": "registerPagination",
|
|
4829
|
+
"declaration": {
|
|
4830
|
+
"name": "registerPagination",
|
|
4831
|
+
"module": "libs/components/src/lib/pagination/definition.ts"
|
|
4832
|
+
}
|
|
4833
|
+
}
|
|
4834
|
+
]
|
|
4835
|
+
},
|
|
4836
|
+
{
|
|
4837
|
+
"kind": "javascript-module",
|
|
4838
|
+
"path": "libs/components/src/lib/pagination/pagination.ts",
|
|
4839
|
+
"declarations": [
|
|
4840
|
+
{
|
|
4841
|
+
"kind": "class",
|
|
4842
|
+
"description": "Base class for pagination",
|
|
4843
|
+
"name": "Pagination",
|
|
4844
|
+
"members": [
|
|
4845
|
+
{
|
|
4846
|
+
"kind": "field",
|
|
4847
|
+
"name": "size",
|
|
4848
|
+
"type": {
|
|
4849
|
+
"text": "PaginationSize | undefined"
|
|
4850
|
+
}
|
|
4851
|
+
},
|
|
4852
|
+
{
|
|
4853
|
+
"kind": "field",
|
|
4854
|
+
"name": "paginationButtons",
|
|
4855
|
+
"type": {
|
|
4856
|
+
"text": "Button[] | undefined"
|
|
4857
|
+
}
|
|
4858
|
+
},
|
|
4859
|
+
{
|
|
4860
|
+
"kind": "field",
|
|
4861
|
+
"name": "prevButton",
|
|
4862
|
+
"type": {
|
|
4863
|
+
"text": "Button | undefined"
|
|
4864
|
+
}
|
|
4865
|
+
},
|
|
4866
|
+
{
|
|
4867
|
+
"kind": "field",
|
|
4868
|
+
"name": "nextButton",
|
|
4869
|
+
"type": {
|
|
4870
|
+
"text": "Button | undefined"
|
|
4871
|
+
}
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"kind": "field",
|
|
4875
|
+
"name": "navIcons",
|
|
4876
|
+
"type": {
|
|
4877
|
+
"text": "boolean"
|
|
4878
|
+
},
|
|
4879
|
+
"default": "false"
|
|
4880
|
+
},
|
|
4881
|
+
{
|
|
4882
|
+
"kind": "field",
|
|
4883
|
+
"name": "pagesList",
|
|
4884
|
+
"readonly": true
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"kind": "field",
|
|
4888
|
+
"name": "total",
|
|
4889
|
+
"type": {
|
|
4890
|
+
"text": "number"
|
|
4891
|
+
},
|
|
4892
|
+
"default": "0"
|
|
4893
|
+
},
|
|
4894
|
+
{
|
|
4895
|
+
"kind": "field",
|
|
4896
|
+
"name": "selectedIndex",
|
|
4897
|
+
"type": {
|
|
4898
|
+
"text": "number | undefined"
|
|
4899
|
+
},
|
|
4900
|
+
"default": "0"
|
|
4901
|
+
},
|
|
4902
|
+
{
|
|
4903
|
+
"kind": "method",
|
|
4904
|
+
"name": "totalChanged",
|
|
4905
|
+
"parameters": [
|
|
4906
|
+
{
|
|
4907
|
+
"name": "_",
|
|
4908
|
+
"type": {
|
|
4909
|
+
"text": "number"
|
|
4910
|
+
}
|
|
4911
|
+
},
|
|
4912
|
+
{
|
|
4913
|
+
"name": "newValue",
|
|
4914
|
+
"type": {
|
|
4915
|
+
"text": "number"
|
|
4916
|
+
}
|
|
4917
|
+
}
|
|
4918
|
+
]
|
|
4919
|
+
},
|
|
4920
|
+
{
|
|
4921
|
+
"kind": "method",
|
|
4922
|
+
"name": "selectedIndexChanged",
|
|
4923
|
+
"parameters": [
|
|
4924
|
+
{
|
|
4925
|
+
"name": "oldValue",
|
|
4926
|
+
"type": {
|
|
4927
|
+
"text": "number"
|
|
4928
|
+
}
|
|
4929
|
+
},
|
|
4930
|
+
{
|
|
4931
|
+
"name": "newValue",
|
|
4932
|
+
"type": {
|
|
4933
|
+
"text": "number"
|
|
4934
|
+
}
|
|
4935
|
+
}
|
|
4936
|
+
]
|
|
4937
|
+
},
|
|
4938
|
+
{
|
|
4939
|
+
"kind": "method",
|
|
4940
|
+
"name": "paginationButtonsChanged",
|
|
4941
|
+
"parameters": [
|
|
4942
|
+
{
|
|
4943
|
+
"name": "_",
|
|
4944
|
+
"type": {
|
|
4945
|
+
"text": "Button[] | undefined"
|
|
4946
|
+
}
|
|
4947
|
+
},
|
|
4948
|
+
{
|
|
4949
|
+
"name": "newValue",
|
|
4950
|
+
"type": {
|
|
4951
|
+
"text": "Button[]"
|
|
4952
|
+
}
|
|
4953
|
+
}
|
|
4954
|
+
]
|
|
4955
|
+
}
|
|
4956
|
+
],
|
|
4957
|
+
"attributes": [
|
|
4958
|
+
{
|
|
4959
|
+
"name": "size",
|
|
4960
|
+
"type": {
|
|
4961
|
+
"text": "PaginationSize | undefined"
|
|
4962
|
+
},
|
|
4963
|
+
"fieldName": "size"
|
|
4964
|
+
},
|
|
4965
|
+
{
|
|
4966
|
+
"name": "nav-icons",
|
|
4967
|
+
"type": {
|
|
4968
|
+
"text": "boolean"
|
|
4969
|
+
},
|
|
4970
|
+
"default": "false",
|
|
4971
|
+
"fieldName": "navIcons"
|
|
4972
|
+
},
|
|
4973
|
+
{
|
|
4974
|
+
"type": {
|
|
4975
|
+
"text": "number"
|
|
4976
|
+
},
|
|
4977
|
+
"default": "0",
|
|
4978
|
+
"fieldName": "total"
|
|
4979
|
+
},
|
|
4980
|
+
{
|
|
4981
|
+
"name": "selected-index",
|
|
4982
|
+
"type": {
|
|
4983
|
+
"text": "number | undefined"
|
|
4984
|
+
},
|
|
4985
|
+
"default": "0",
|
|
4986
|
+
"fieldName": "selectedIndex"
|
|
4987
|
+
}
|
|
4988
|
+
],
|
|
4989
|
+
"superclass": {
|
|
4990
|
+
"name": "FoundationElement",
|
|
4991
|
+
"package": "@microsoft/fast-foundation"
|
|
4992
|
+
}
|
|
4993
|
+
}
|
|
4994
|
+
],
|
|
4995
|
+
"exports": [
|
|
4996
|
+
{
|
|
4997
|
+
"kind": "js",
|
|
4998
|
+
"name": "Pagination",
|
|
4999
|
+
"declaration": {
|
|
5000
|
+
"name": "Pagination",
|
|
5001
|
+
"module": "libs/components/src/lib/pagination/pagination.ts"
|
|
5002
|
+
}
|
|
5003
|
+
}
|
|
5004
|
+
]
|
|
5005
|
+
},
|
|
4780
5006
|
{
|
|
4781
5007
|
"kind": "javascript-module",
|
|
4782
5008
|
"path": "libs/components/src/lib/popup/definition.ts",
|
|
@@ -4892,14 +5118,6 @@
|
|
|
4892
5118
|
"text": "() => void | undefined"
|
|
4893
5119
|
}
|
|
4894
5120
|
},
|
|
4895
|
-
{
|
|
4896
|
-
"kind": "field",
|
|
4897
|
-
"name": "anchorEl",
|
|
4898
|
-
"type": {
|
|
4899
|
-
"text": "Element | null | undefined"
|
|
4900
|
-
},
|
|
4901
|
-
"privacy": "protected"
|
|
4902
|
-
},
|
|
4903
5121
|
{
|
|
4904
5122
|
"kind": "field",
|
|
4905
5123
|
"name": "popupEl",
|
|
@@ -5000,7 +5218,7 @@
|
|
|
5000
5218
|
"kind": "field",
|
|
5001
5219
|
"name": "anchor",
|
|
5002
5220
|
"type": {
|
|
5003
|
-
"text": "string | HTMLElement"
|
|
5221
|
+
"text": "string | HTMLElement | undefined"
|
|
5004
5222
|
},
|
|
5005
5223
|
"description": "ID reference to element in the popup’s owner document or HTMLElement.",
|
|
5006
5224
|
"privacy": "public"
|
|
@@ -5047,14 +5265,13 @@
|
|
|
5047
5265
|
]
|
|
5048
5266
|
},
|
|
5049
5267
|
{
|
|
5050
|
-
"kind": "
|
|
5051
|
-
"name": "
|
|
5052
|
-
"
|
|
5053
|
-
"
|
|
5054
|
-
"text": "HTMLElement | null"
|
|
5055
|
-
}
|
|
5268
|
+
"kind": "field",
|
|
5269
|
+
"name": "anchorEl",
|
|
5270
|
+
"type": {
|
|
5271
|
+
"text": "HTMLElement | null"
|
|
5056
5272
|
},
|
|
5057
|
-
"description": "Gets the anchor element by id"
|
|
5273
|
+
"description": "Gets the anchor element by id",
|
|
5274
|
+
"readonly": true
|
|
5058
5275
|
},
|
|
5059
5276
|
{
|
|
5060
5277
|
"kind": "method",
|
|
@@ -5126,7 +5343,7 @@
|
|
|
5126
5343
|
{
|
|
5127
5344
|
"name": "anchor",
|
|
5128
5345
|
"type": {
|
|
5129
|
-
"text": "string | HTMLElement"
|
|
5346
|
+
"text": "string | HTMLElement | undefined"
|
|
5130
5347
|
},
|
|
5131
5348
|
"description": "ID reference to element in the popup’s owner document or HTMLElement.",
|
|
5132
5349
|
"fieldName": "anchor"
|
|
@@ -7089,6 +7306,15 @@
|
|
|
7089
7306
|
"description": "Base class for tooltip",
|
|
7090
7307
|
"name": "Tooltip",
|
|
7091
7308
|
"members": [
|
|
7309
|
+
{
|
|
7310
|
+
"kind": "field",
|
|
7311
|
+
"name": "#anchorEl",
|
|
7312
|
+
"privacy": "private",
|
|
7313
|
+
"type": {
|
|
7314
|
+
"text": "HTMLElement | null"
|
|
7315
|
+
},
|
|
7316
|
+
"default": "null"
|
|
7317
|
+
},
|
|
7092
7318
|
{
|
|
7093
7319
|
"kind": "field",
|
|
7094
7320
|
"name": "text",
|
|
@@ -7098,6 +7324,46 @@
|
|
|
7098
7324
|
"description": "the text of the tooltip\naccepts string",
|
|
7099
7325
|
"privacy": "public"
|
|
7100
7326
|
},
|
|
7327
|
+
{
|
|
7328
|
+
"kind": "field",
|
|
7329
|
+
"name": "placement",
|
|
7330
|
+
"type": {
|
|
7331
|
+
"text": "Placement | undefined"
|
|
7332
|
+
}
|
|
7333
|
+
},
|
|
7334
|
+
{
|
|
7335
|
+
"kind": "field",
|
|
7336
|
+
"name": "open",
|
|
7337
|
+
"type": {
|
|
7338
|
+
"text": "boolean"
|
|
7339
|
+
},
|
|
7340
|
+
"default": "false"
|
|
7341
|
+
},
|
|
7342
|
+
{
|
|
7343
|
+
"kind": "field",
|
|
7344
|
+
"name": "anchor",
|
|
7345
|
+
"type": {
|
|
7346
|
+
"text": "anchorType | undefined"
|
|
7347
|
+
}
|
|
7348
|
+
},
|
|
7349
|
+
{
|
|
7350
|
+
"kind": "method",
|
|
7351
|
+
"name": "anchorChanged",
|
|
7352
|
+
"parameters": [
|
|
7353
|
+
{
|
|
7354
|
+
"name": "_",
|
|
7355
|
+
"type": {
|
|
7356
|
+
"text": "anchorType"
|
|
7357
|
+
}
|
|
7358
|
+
},
|
|
7359
|
+
{
|
|
7360
|
+
"name": "newValue",
|
|
7361
|
+
"type": {
|
|
7362
|
+
"text": "anchorType"
|
|
7363
|
+
}
|
|
7364
|
+
}
|
|
7365
|
+
]
|
|
7366
|
+
},
|
|
7101
7367
|
{
|
|
7102
7368
|
"kind": "method",
|
|
7103
7369
|
"name": "#anchorUpdated",
|
|
@@ -7150,7 +7416,7 @@
|
|
|
7150
7416
|
},
|
|
7151
7417
|
"parameters": [
|
|
7152
7418
|
{
|
|
7153
|
-
"name": "
|
|
7419
|
+
"name": "_",
|
|
7154
7420
|
"type": {
|
|
7155
7421
|
"text": "boolean"
|
|
7156
7422
|
}
|
|
@@ -7161,298 +7427,7 @@
|
|
|
7161
7427
|
"text": "boolean"
|
|
7162
7428
|
}
|
|
7163
7429
|
}
|
|
7164
|
-
]
|
|
7165
|
-
"inheritedFrom": {
|
|
7166
|
-
"name": "Popup",
|
|
7167
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7168
|
-
}
|
|
7169
|
-
},
|
|
7170
|
-
{
|
|
7171
|
-
"kind": "field",
|
|
7172
|
-
"name": "#arrowPosition",
|
|
7173
|
-
"privacy": "private",
|
|
7174
|
-
"type": {
|
|
7175
|
-
"text": "any"
|
|
7176
|
-
},
|
|
7177
|
-
"readonly": true,
|
|
7178
|
-
"inheritedFrom": {
|
|
7179
|
-
"name": "Popup",
|
|
7180
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7181
|
-
}
|
|
7182
|
-
},
|
|
7183
|
-
{
|
|
7184
|
-
"kind": "field",
|
|
7185
|
-
"name": "#padding",
|
|
7186
|
-
"privacy": "private",
|
|
7187
|
-
"type": {
|
|
7188
|
-
"text": "number"
|
|
7189
|
-
},
|
|
7190
|
-
"readonly": true,
|
|
7191
|
-
"inheritedFrom": {
|
|
7192
|
-
"name": "Popup",
|
|
7193
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7194
|
-
}
|
|
7195
|
-
},
|
|
7196
|
-
{
|
|
7197
|
-
"kind": "field",
|
|
7198
|
-
"name": "#distance",
|
|
7199
|
-
"privacy": "private",
|
|
7200
|
-
"type": {
|
|
7201
|
-
"text": "number"
|
|
7202
|
-
},
|
|
7203
|
-
"readonly": true,
|
|
7204
|
-
"inheritedFrom": {
|
|
7205
|
-
"name": "Popup",
|
|
7206
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7207
|
-
}
|
|
7208
|
-
},
|
|
7209
|
-
{
|
|
7210
|
-
"kind": "field",
|
|
7211
|
-
"name": "#middleware",
|
|
7212
|
-
"privacy": "private",
|
|
7213
|
-
"type": {
|
|
7214
|
-
"text": "Array<any>"
|
|
7215
|
-
},
|
|
7216
|
-
"readonly": true,
|
|
7217
|
-
"inheritedFrom": {
|
|
7218
|
-
"name": "Popup",
|
|
7219
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7220
|
-
}
|
|
7221
|
-
},
|
|
7222
|
-
{
|
|
7223
|
-
"kind": "field",
|
|
7224
|
-
"name": "#cleanup",
|
|
7225
|
-
"privacy": "private",
|
|
7226
|
-
"type": {
|
|
7227
|
-
"text": "() => void | undefined"
|
|
7228
|
-
},
|
|
7229
|
-
"inheritedFrom": {
|
|
7230
|
-
"name": "Popup",
|
|
7231
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7232
|
-
}
|
|
7233
|
-
},
|
|
7234
|
-
{
|
|
7235
|
-
"kind": "field",
|
|
7236
|
-
"name": "anchorEl",
|
|
7237
|
-
"type": {
|
|
7238
|
-
"text": "Element | null | undefined"
|
|
7239
|
-
},
|
|
7240
|
-
"privacy": "protected",
|
|
7241
|
-
"inheritedFrom": {
|
|
7242
|
-
"name": "Popup",
|
|
7243
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7244
|
-
}
|
|
7245
|
-
},
|
|
7246
|
-
{
|
|
7247
|
-
"kind": "field",
|
|
7248
|
-
"name": "popupEl",
|
|
7249
|
-
"type": {
|
|
7250
|
-
"text": "HTMLElement"
|
|
7251
|
-
},
|
|
7252
|
-
"inheritedFrom": {
|
|
7253
|
-
"name": "Popup",
|
|
7254
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7255
|
-
}
|
|
7256
|
-
},
|
|
7257
|
-
{
|
|
7258
|
-
"kind": "field",
|
|
7259
|
-
"name": "arrowEl",
|
|
7260
|
-
"type": {
|
|
7261
|
-
"text": "HTMLElement"
|
|
7262
|
-
},
|
|
7263
|
-
"inheritedFrom": {
|
|
7264
|
-
"name": "Popup",
|
|
7265
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7266
|
-
}
|
|
7267
|
-
},
|
|
7268
|
-
{
|
|
7269
|
-
"kind": "field",
|
|
7270
|
-
"name": "open",
|
|
7271
|
-
"type": {
|
|
7272
|
-
"text": "boolean"
|
|
7273
|
-
},
|
|
7274
|
-
"default": "false",
|
|
7275
|
-
"description": "indicates whether the popup is open",
|
|
7276
|
-
"privacy": "public",
|
|
7277
|
-
"inheritedFrom": {
|
|
7278
|
-
"name": "Popup",
|
|
7279
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7280
|
-
}
|
|
7281
|
-
},
|
|
7282
|
-
{
|
|
7283
|
-
"kind": "field",
|
|
7284
|
-
"name": "dismissible",
|
|
7285
|
-
"type": {
|
|
7286
|
-
"text": "boolean"
|
|
7287
|
-
},
|
|
7288
|
-
"default": "false",
|
|
7289
|
-
"description": "adds close button to the popup",
|
|
7290
|
-
"privacy": "public",
|
|
7291
|
-
"inheritedFrom": {
|
|
7292
|
-
"name": "Popup",
|
|
7293
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7294
|
-
}
|
|
7295
|
-
},
|
|
7296
|
-
{
|
|
7297
|
-
"kind": "field",
|
|
7298
|
-
"name": "arrow",
|
|
7299
|
-
"type": {
|
|
7300
|
-
"text": "boolean"
|
|
7301
|
-
},
|
|
7302
|
-
"default": "false",
|
|
7303
|
-
"description": "adds small triangle to indicate the trigger element",
|
|
7304
|
-
"privacy": "public",
|
|
7305
|
-
"inheritedFrom": {
|
|
7306
|
-
"name": "Popup",
|
|
7307
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7308
|
-
}
|
|
7309
|
-
},
|
|
7310
|
-
{
|
|
7311
|
-
"kind": "field",
|
|
7312
|
-
"name": "alternate",
|
|
7313
|
-
"type": {
|
|
7314
|
-
"text": "boolean"
|
|
7315
|
-
},
|
|
7316
|
-
"default": "false",
|
|
7317
|
-
"description": "set the color-scheme to dark",
|
|
7318
|
-
"privacy": "public",
|
|
7319
|
-
"inheritedFrom": {
|
|
7320
|
-
"name": "Popup",
|
|
7321
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7322
|
-
}
|
|
7323
|
-
},
|
|
7324
|
-
{
|
|
7325
|
-
"kind": "field",
|
|
7326
|
-
"name": "placement",
|
|
7327
|
-
"type": {
|
|
7328
|
-
"text": "Placement | undefined"
|
|
7329
|
-
},
|
|
7330
|
-
"description": "the placement of the popup",
|
|
7331
|
-
"privacy": "public",
|
|
7332
|
-
"inheritedFrom": {
|
|
7333
|
-
"name": "Popup",
|
|
7334
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7335
|
-
}
|
|
7336
|
-
},
|
|
7337
|
-
{
|
|
7338
|
-
"kind": "field",
|
|
7339
|
-
"name": "strategy",
|
|
7340
|
-
"type": {
|
|
7341
|
-
"text": "Strategy | undefined"
|
|
7342
|
-
},
|
|
7343
|
-
"default": "'fixed'",
|
|
7344
|
-
"description": "the strategy of the popup",
|
|
7345
|
-
"privacy": "public",
|
|
7346
|
-
"inheritedFrom": {
|
|
7347
|
-
"name": "Popup",
|
|
7348
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7349
|
-
}
|
|
7350
|
-
},
|
|
7351
|
-
{
|
|
7352
|
-
"kind": "field",
|
|
7353
|
-
"name": "anchor",
|
|
7354
|
-
"type": {
|
|
7355
|
-
"text": "string | HTMLElement"
|
|
7356
|
-
},
|
|
7357
|
-
"description": "ID reference to element in the popup’s owner document or HTMLElement.",
|
|
7358
|
-
"privacy": "public",
|
|
7359
|
-
"inheritedFrom": {
|
|
7360
|
-
"name": "Popup",
|
|
7361
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7362
|
-
}
|
|
7363
|
-
},
|
|
7364
|
-
{
|
|
7365
|
-
"kind": "method",
|
|
7366
|
-
"name": "updatePosition",
|
|
7367
|
-
"description": "Updates popup's position",
|
|
7368
|
-
"privacy": "public",
|
|
7369
|
-
"async": true,
|
|
7370
|
-
"inheritedFrom": {
|
|
7371
|
-
"name": "Popup",
|
|
7372
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7373
|
-
}
|
|
7374
|
-
},
|
|
7375
|
-
{
|
|
7376
|
-
"kind": "method",
|
|
7377
|
-
"name": "#assignPopupPosition",
|
|
7378
|
-
"return": {
|
|
7379
|
-
"type": {
|
|
7380
|
-
"text": "void"
|
|
7381
|
-
}
|
|
7382
|
-
},
|
|
7383
|
-
"parameters": [
|
|
7384
|
-
{
|
|
7385
|
-
"name": "data",
|
|
7386
|
-
"type": {
|
|
7387
|
-
"text": "any"
|
|
7388
|
-
}
|
|
7389
|
-
}
|
|
7390
|
-
],
|
|
7391
|
-
"inheritedFrom": {
|
|
7392
|
-
"name": "Popup",
|
|
7393
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7394
|
-
}
|
|
7395
|
-
},
|
|
7396
|
-
{
|
|
7397
|
-
"kind": "method",
|
|
7398
|
-
"name": "#assignArrowPosition",
|
|
7399
|
-
"return": {
|
|
7400
|
-
"type": {
|
|
7401
|
-
"text": "void"
|
|
7402
|
-
}
|
|
7403
|
-
},
|
|
7404
|
-
"parameters": [
|
|
7405
|
-
{
|
|
7406
|
-
"name": "data",
|
|
7407
|
-
"type": {
|
|
7408
|
-
"text": "any"
|
|
7409
|
-
}
|
|
7410
|
-
}
|
|
7411
|
-
],
|
|
7412
|
-
"inheritedFrom": {
|
|
7413
|
-
"name": "Popup",
|
|
7414
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7415
|
-
}
|
|
7416
|
-
},
|
|
7417
|
-
{
|
|
7418
|
-
"kind": "method",
|
|
7419
|
-
"name": "#getAnchor",
|
|
7420
|
-
"return": {
|
|
7421
|
-
"type": {
|
|
7422
|
-
"text": "HTMLElement | null"
|
|
7423
|
-
}
|
|
7424
|
-
},
|
|
7425
|
-
"description": "Gets the anchor element by id",
|
|
7426
|
-
"inheritedFrom": {
|
|
7427
|
-
"name": "Popup",
|
|
7428
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7429
|
-
}
|
|
7430
|
-
},
|
|
7431
|
-
{
|
|
7432
|
-
"kind": "method",
|
|
7433
|
-
"name": "show",
|
|
7434
|
-
"return": {
|
|
7435
|
-
"type": {
|
|
7436
|
-
"text": "void"
|
|
7437
|
-
}
|
|
7438
|
-
},
|
|
7439
|
-
"inheritedFrom": {
|
|
7440
|
-
"name": "Popup",
|
|
7441
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7442
|
-
}
|
|
7443
|
-
},
|
|
7444
|
-
{
|
|
7445
|
-
"kind": "method",
|
|
7446
|
-
"name": "hide",
|
|
7447
|
-
"return": {
|
|
7448
|
-
"type": {
|
|
7449
|
-
"text": "void"
|
|
7450
|
-
}
|
|
7451
|
-
},
|
|
7452
|
-
"inheritedFrom": {
|
|
7453
|
-
"name": "Popup",
|
|
7454
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7455
|
-
}
|
|
7430
|
+
]
|
|
7456
7431
|
}
|
|
7457
7432
|
],
|
|
7458
7433
|
"attributes": [
|
|
@@ -7466,32 +7441,27 @@
|
|
|
7466
7441
|
},
|
|
7467
7442
|
{
|
|
7468
7443
|
"type": {
|
|
7469
|
-
"text": "
|
|
7444
|
+
"text": "Placement | undefined"
|
|
7445
|
+
},
|
|
7446
|
+
"fieldName": "placement"
|
|
7447
|
+
},
|
|
7448
|
+
{
|
|
7449
|
+
"type": {
|
|
7450
|
+
"text": "boolean"
|
|
7470
7451
|
},
|
|
7471
7452
|
"default": "false",
|
|
7472
|
-
"
|
|
7473
|
-
"fieldName": "open",
|
|
7474
|
-
"inheritedFrom": {
|
|
7475
|
-
"name": "Popup",
|
|
7476
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7477
|
-
}
|
|
7453
|
+
"fieldName": "open"
|
|
7478
7454
|
},
|
|
7479
7455
|
{
|
|
7480
|
-
"name": "anchor",
|
|
7481
7456
|
"type": {
|
|
7482
|
-
"text": "
|
|
7457
|
+
"text": "anchorType | undefined"
|
|
7483
7458
|
},
|
|
7484
|
-
"
|
|
7485
|
-
"fieldName": "anchor",
|
|
7486
|
-
"inheritedFrom": {
|
|
7487
|
-
"name": "Popup",
|
|
7488
|
-
"module": "libs/components/src/lib/popup/popup.ts"
|
|
7489
|
-
}
|
|
7459
|
+
"fieldName": "anchor"
|
|
7490
7460
|
}
|
|
7491
7461
|
],
|
|
7492
7462
|
"superclass": {
|
|
7493
|
-
"name": "
|
|
7494
|
-
"
|
|
7463
|
+
"name": "FoundationElement",
|
|
7464
|
+
"package": "@microsoft/fast-foundation"
|
|
7495
7465
|
}
|
|
7496
7466
|
}
|
|
7497
7467
|
],
|