@patternfly/pfe-core 2.3.1 → 2.4.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/controllers/cascade-controller.js +1 -1
- package/controllers/cascade-controller.js.map +1 -1
- package/controllers/floating-dom-controller.d.ts +1 -1
- package/controllers/floating-dom-controller.js +81 -83
- package/controllers/floating-dom-controller.js.map +1 -1
- package/controllers/internals-controller.js +17 -20
- package/controllers/internals-controller.js.map +1 -1
- package/controllers/logger.js +1 -1
- package/controllers/logger.js.map +1 -1
- package/controllers/overflow-controller.js +42 -40
- package/controllers/overflow-controller.js.map +1 -1
- package/controllers/property-observer-controller.js +1 -1
- package/controllers/property-observer-controller.js.map +1 -1
- package/controllers/roving-tabindex-controller.js +114 -106
- package/controllers/roving-tabindex-controller.js.map +1 -1
- package/controllers/scroll-spy-controller.js +93 -91
- package/controllers/scroll-spy-controller.js.map +1 -1
- package/controllers/slot-controller.js +1 -1
- package/controllers/slot-controller.js.map +1 -1
- package/controllers/timestamp-controller.d.ts +23 -0
- package/controllers/timestamp-controller.js +108 -0
- package/controllers/timestamp-controller.js.map +1 -0
- package/custom-elements.json +633 -450
- package/package.json +2 -1
package/custom-elements.json
CHANGED
|
@@ -598,123 +598,10 @@
|
|
|
598
598
|
"description": "",
|
|
599
599
|
"name": "CascadeController",
|
|
600
600
|
"members": [
|
|
601
|
-
{
|
|
602
|
-
"kind": "method",
|
|
603
|
-
"name": "hostUpdated"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"kind": "method",
|
|
607
|
-
"name": "hostConnected"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"kind": "method",
|
|
611
|
-
"name": "hostDisconnected"
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"kind": "method",
|
|
615
|
-
"name": "cascadeProperties",
|
|
616
|
-
"parameters": [
|
|
617
|
-
{
|
|
618
|
-
"name": "nodeList",
|
|
619
|
-
"default": "this.host.children"
|
|
620
|
-
}
|
|
621
|
-
],
|
|
622
|
-
"description": "Handles the cascading of properties to nested components when new elements are added\nAttribute updates/additions are handled by the attribute callback"
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
"kind": "method",
|
|
626
|
-
"name": "initProp",
|
|
627
|
-
"parameters": [
|
|
628
|
-
{
|
|
629
|
-
"name": "propName"
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"name": "cascade"
|
|
633
|
-
}
|
|
634
|
-
],
|
|
635
|
-
"description": "Gets the configured attribute name for the decorated property,\nfalling back to the lowercased property name, and caches the attribute name\nwith it's designated child selectors for value-propagation on change"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"kind": "method",
|
|
639
|
-
"name": "parse",
|
|
640
|
-
"parameters": [
|
|
641
|
-
{
|
|
642
|
-
"name": "mutations"
|
|
643
|
-
}
|
|
644
|
-
]
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
"kind": "method",
|
|
648
|
-
"name": "_copyAttribute",
|
|
649
|
-
"parameters": [
|
|
650
|
-
{
|
|
651
|
-
"name": "name"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"name": "el"
|
|
655
|
-
}
|
|
656
|
-
],
|
|
657
|
-
"description": "Copy the named attribute to a target element."
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"kind": "method",
|
|
661
|
-
"name": "_cascadeAttributes",
|
|
662
|
-
"parameters": [
|
|
663
|
-
{
|
|
664
|
-
"name": "selectors"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"name": "set"
|
|
668
|
-
}
|
|
669
|
-
]
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"kind": "method",
|
|
673
|
-
"name": "_cascadeAttribute",
|
|
674
|
-
"parameters": [
|
|
675
|
-
{
|
|
676
|
-
"name": "name",
|
|
677
|
-
"description": "The name of the attribute to cascade (not necessarily the same as the property name)."
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"name": "to",
|
|
681
|
-
"description": "A CSS selector that matches the elements that should received the cascaded attribute. The selector will be applied within `this` element's light and shadow DOM trees."
|
|
682
|
-
}
|
|
683
|
-
],
|
|
684
|
-
"description": "Trigger a cascade of the named attribute to any child elements that match\nthe `to` selector. The selector can match elements in the light DOM and\nshadow DOM."
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"kind": "field",
|
|
688
|
-
"name": "host",
|
|
689
|
-
"default": "host"
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"kind": "field",
|
|
693
|
-
"name": "options",
|
|
694
|
-
"default": "options"
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"kind": "field",
|
|
698
|
-
"name": "mo",
|
|
699
|
-
"default": "new MutationObserver(this.parse)"
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"kind": "field",
|
|
703
|
-
"name": "cache",
|
|
704
|
-
"default": "new Map()"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"kind": "field",
|
|
708
|
-
"name": "class"
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"kind": "field",
|
|
712
|
-
"name": "logger",
|
|
713
|
-
"default": "new Logger(this.host)"
|
|
714
|
-
},
|
|
715
601
|
{
|
|
716
602
|
"kind": "field",
|
|
717
|
-
"name": "
|
|
603
|
+
"name": "",
|
|
604
|
+
"static": true
|
|
718
605
|
}
|
|
719
606
|
]
|
|
720
607
|
}
|
|
@@ -1251,6 +1138,70 @@
|
|
|
1251
1138
|
"description": "Controls floating DOM within a web component, e.g. tooltips and popovers",
|
|
1252
1139
|
"name": "FloatingDOMController",
|
|
1253
1140
|
"members": [
|
|
1141
|
+
{
|
|
1142
|
+
"kind": "field",
|
|
1143
|
+
"name": "#open",
|
|
1144
|
+
"privacy": "private",
|
|
1145
|
+
"type": {
|
|
1146
|
+
"text": "boolean"
|
|
1147
|
+
},
|
|
1148
|
+
"default": "false"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"kind": "field",
|
|
1152
|
+
"name": "#opening",
|
|
1153
|
+
"privacy": "private",
|
|
1154
|
+
"type": {
|
|
1155
|
+
"text": "boolean"
|
|
1156
|
+
},
|
|
1157
|
+
"default": "false"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"kind": "field",
|
|
1161
|
+
"name": "#cleanup",
|
|
1162
|
+
"privacy": "private"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"kind": "field",
|
|
1166
|
+
"name": "#anchor",
|
|
1167
|
+
"privacy": "private"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"kind": "field",
|
|
1171
|
+
"name": "#alignment",
|
|
1172
|
+
"privacy": "private"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"kind": "field",
|
|
1176
|
+
"name": "#styles",
|
|
1177
|
+
"privacy": "private"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"kind": "field",
|
|
1181
|
+
"name": "#placement",
|
|
1182
|
+
"privacy": "private"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"kind": "field",
|
|
1186
|
+
"name": "#options",
|
|
1187
|
+
"privacy": "private",
|
|
1188
|
+
"default": "options"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"kind": "field",
|
|
1192
|
+
"name": "#invoker",
|
|
1193
|
+
"privacy": "private"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"kind": "field",
|
|
1197
|
+
"name": "#content",
|
|
1198
|
+
"privacy": "private"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"kind": "field",
|
|
1202
|
+
"name": "#arrow",
|
|
1203
|
+
"privacy": "private"
|
|
1204
|
+
},
|
|
1254
1205
|
{
|
|
1255
1206
|
"kind": "field",
|
|
1256
1207
|
"name": "alignment",
|
|
@@ -1280,6 +1231,26 @@
|
|
|
1280
1231
|
"kind": "method",
|
|
1281
1232
|
"name": "hostDisconnected"
|
|
1282
1233
|
},
|
|
1234
|
+
{
|
|
1235
|
+
"kind": "method",
|
|
1236
|
+
"name": "#update",
|
|
1237
|
+
"parameters": [
|
|
1238
|
+
{
|
|
1239
|
+
"name": "placement",
|
|
1240
|
+
"default": "'top'"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"name": "offset"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"name": "flip",
|
|
1247
|
+
"default": "true"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"name": "fallbackPlacements"
|
|
1251
|
+
}
|
|
1252
|
+
]
|
|
1253
|
+
},
|
|
1283
1254
|
{
|
|
1284
1255
|
"kind": "method",
|
|
1285
1256
|
"name": "show",
|
|
@@ -1304,12 +1275,15 @@
|
|
|
1304
1275
|
{
|
|
1305
1276
|
"kind": "field",
|
|
1306
1277
|
"name": "invoker",
|
|
1307
|
-
"default": "
|
|
1278
|
+
"default": "host"
|
|
1308
1279
|
},
|
|
1309
1280
|
{
|
|
1310
1281
|
"kind": "field",
|
|
1311
1282
|
"name": "shift",
|
|
1312
|
-
"
|
|
1283
|
+
"type": {
|
|
1284
|
+
"text": "boolean"
|
|
1285
|
+
},
|
|
1286
|
+
"default": "true"
|
|
1313
1287
|
}
|
|
1314
1288
|
]
|
|
1315
1289
|
}
|
|
@@ -1997,69 +1971,27 @@
|
|
|
1997
1971
|
"members": [
|
|
1998
1972
|
{
|
|
1999
1973
|
"kind": "field",
|
|
2000
|
-
"name": "
|
|
2001
|
-
"
|
|
2002
|
-
},
|
|
2003
|
-
{
|
|
2004
|
-
"kind": "field",
|
|
2005
|
-
"name": "labels"
|
|
1974
|
+
"name": "#internals",
|
|
1975
|
+
"privacy": "private"
|
|
2006
1976
|
},
|
|
2007
1977
|
{
|
|
2008
1978
|
"kind": "field",
|
|
2009
|
-
"name": "
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
"
|
|
2015
|
-
{
|
|
2016
|
-
"name": "args"
|
|
2017
|
-
}
|
|
2018
|
-
]
|
|
2019
|
-
},
|
|
2020
|
-
{
|
|
2021
|
-
"kind": "method",
|
|
2022
|
-
"name": "setValidity",
|
|
2023
|
-
"parameters": [
|
|
2024
|
-
{
|
|
2025
|
-
"name": "args"
|
|
2026
|
-
}
|
|
2027
|
-
]
|
|
2028
|
-
},
|
|
2029
|
-
{
|
|
2030
|
-
"kind": "method",
|
|
2031
|
-
"name": "checkValidity",
|
|
2032
|
-
"parameters": [
|
|
2033
|
-
{
|
|
2034
|
-
"name": "args"
|
|
2035
|
-
}
|
|
2036
|
-
]
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"kind": "method",
|
|
2040
|
-
"name": "reportValidity",
|
|
2041
|
-
"parameters": [
|
|
2042
|
-
{
|
|
2043
|
-
"name": "args"
|
|
2044
|
-
}
|
|
2045
|
-
]
|
|
2046
|
-
},
|
|
2047
|
-
{
|
|
2048
|
-
"kind": "method",
|
|
2049
|
-
"name": "submit"
|
|
2050
|
-
},
|
|
2051
|
-
{
|
|
2052
|
-
"kind": "method",
|
|
2053
|
-
"name": "reset"
|
|
1979
|
+
"name": "#formDisabled",
|
|
1980
|
+
"privacy": "private",
|
|
1981
|
+
"type": {
|
|
1982
|
+
"text": "boolean"
|
|
1983
|
+
},
|
|
1984
|
+
"default": "false"
|
|
2054
1985
|
},
|
|
2055
1986
|
{
|
|
2056
1987
|
"kind": "field",
|
|
2057
|
-
"name": "
|
|
2058
|
-
"
|
|
1988
|
+
"name": "formDisabled",
|
|
1989
|
+
"description": "True when the control is disabled via it's containing fieldset element"
|
|
2059
1990
|
},
|
|
2060
1991
|
{
|
|
2061
1992
|
"kind": "field",
|
|
2062
|
-
"name": "
|
|
1993
|
+
"name": "",
|
|
1994
|
+
"static": true
|
|
2063
1995
|
}
|
|
2064
1996
|
]
|
|
2065
1997
|
}
|
|
@@ -2924,91 +2856,8 @@
|
|
|
2924
2856
|
"members": [
|
|
2925
2857
|
{
|
|
2926
2858
|
"kind": "field",
|
|
2927
|
-
"name": "
|
|
2928
|
-
|
|
2929
|
-
{
|
|
2930
|
-
"kind": "method",
|
|
2931
|
-
"name": "debugLog",
|
|
2932
|
-
"static": true,
|
|
2933
|
-
"parameters": [
|
|
2934
|
-
{
|
|
2935
|
-
"name": "preference",
|
|
2936
|
-
"default": "null"
|
|
2937
|
-
}
|
|
2938
|
-
],
|
|
2939
|
-
"description": "A boolean value that indicates if the logging should be printed to the console; used for debugging.\nFor use in a JS file or script tag; can also be added in the constructor of a component during development."
|
|
2940
|
-
},
|
|
2941
|
-
{
|
|
2942
|
-
"kind": "method",
|
|
2943
|
-
"name": "log",
|
|
2944
|
-
"static": true,
|
|
2945
|
-
"parameters": [
|
|
2946
|
-
{
|
|
2947
|
-
"name": "msgs"
|
|
2948
|
-
}
|
|
2949
|
-
],
|
|
2950
|
-
"description": "A logging wrapper which checks the debugLog boolean and prints to the console if true."
|
|
2951
|
-
},
|
|
2952
|
-
{
|
|
2953
|
-
"kind": "method",
|
|
2954
|
-
"name": "warn",
|
|
2955
|
-
"static": true,
|
|
2956
|
-
"parameters": [
|
|
2957
|
-
{
|
|
2958
|
-
"name": "msgs"
|
|
2959
|
-
}
|
|
2960
|
-
],
|
|
2961
|
-
"description": "A console warning wrapper which formats your output with useful debugging information."
|
|
2962
|
-
},
|
|
2963
|
-
{
|
|
2964
|
-
"kind": "method",
|
|
2965
|
-
"name": "error",
|
|
2966
|
-
"static": true,
|
|
2967
|
-
"parameters": [
|
|
2968
|
-
{
|
|
2969
|
-
"name": "msgs"
|
|
2970
|
-
}
|
|
2971
|
-
],
|
|
2972
|
-
"description": "A console error wrapper which formats your output with useful debugging information.\nFor use inside a component's function."
|
|
2973
|
-
},
|
|
2974
|
-
{
|
|
2975
|
-
"kind": "method",
|
|
2976
|
-
"name": "log",
|
|
2977
|
-
"parameters": [
|
|
2978
|
-
{
|
|
2979
|
-
"name": "msgs"
|
|
2980
|
-
}
|
|
2981
|
-
],
|
|
2982
|
-
"description": "Local logging that outputs the tag name as a prefix automatically"
|
|
2983
|
-
},
|
|
2984
|
-
{
|
|
2985
|
-
"kind": "method",
|
|
2986
|
-
"name": "warn",
|
|
2987
|
-
"parameters": [
|
|
2988
|
-
{
|
|
2989
|
-
"name": "msgs"
|
|
2990
|
-
}
|
|
2991
|
-
],
|
|
2992
|
-
"description": "Local warning wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function."
|
|
2993
|
-
},
|
|
2994
|
-
{
|
|
2995
|
-
"kind": "method",
|
|
2996
|
-
"name": "error",
|
|
2997
|
-
"parameters": [
|
|
2998
|
-
{
|
|
2999
|
-
"name": "msgs"
|
|
3000
|
-
}
|
|
3001
|
-
],
|
|
3002
|
-
"description": "Local error wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function."
|
|
3003
|
-
},
|
|
3004
|
-
{
|
|
3005
|
-
"kind": "method",
|
|
3006
|
-
"name": "hostConnected"
|
|
3007
|
-
},
|
|
3008
|
-
{
|
|
3009
|
-
"kind": "field",
|
|
3010
|
-
"name": "host",
|
|
3011
|
-
"default": "host"
|
|
2859
|
+
"name": "",
|
|
2860
|
+
"static": true
|
|
3012
2861
|
}
|
|
3013
2862
|
]
|
|
3014
2863
|
}
|
|
@@ -3328,6 +3177,46 @@
|
|
|
3328
3177
|
"description": "",
|
|
3329
3178
|
"name": "OverflowController",
|
|
3330
3179
|
"members": [
|
|
3180
|
+
{
|
|
3181
|
+
"kind": "field",
|
|
3182
|
+
"name": "#container",
|
|
3183
|
+
"privacy": "private",
|
|
3184
|
+
"description": "Overflow container"
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
"kind": "field",
|
|
3188
|
+
"name": "#items",
|
|
3189
|
+
"privacy": "private",
|
|
3190
|
+
"description": "Children that can overflow",
|
|
3191
|
+
"type": {
|
|
3192
|
+
"text": "array"
|
|
3193
|
+
},
|
|
3194
|
+
"default": "[]"
|
|
3195
|
+
},
|
|
3196
|
+
{
|
|
3197
|
+
"kind": "field",
|
|
3198
|
+
"name": "#scrollTimeoutDelay",
|
|
3199
|
+
"privacy": "private",
|
|
3200
|
+
"type": {
|
|
3201
|
+
"text": "number"
|
|
3202
|
+
},
|
|
3203
|
+
"default": "0"
|
|
3204
|
+
},
|
|
3205
|
+
{
|
|
3206
|
+
"kind": "field",
|
|
3207
|
+
"name": "#scrollTimeout",
|
|
3208
|
+
"privacy": "private"
|
|
3209
|
+
},
|
|
3210
|
+
{
|
|
3211
|
+
"kind": "field",
|
|
3212
|
+
"name": "#hideOverflowButtons",
|
|
3213
|
+
"privacy": "private",
|
|
3214
|
+
"description": "Default state",
|
|
3215
|
+
"type": {
|
|
3216
|
+
"text": "boolean"
|
|
3217
|
+
},
|
|
3218
|
+
"default": "false"
|
|
3219
|
+
},
|
|
3331
3220
|
{
|
|
3332
3221
|
"kind": "field",
|
|
3333
3222
|
"name": "firstItem"
|
|
@@ -3336,6 +3225,10 @@
|
|
|
3336
3225
|
"kind": "field",
|
|
3337
3226
|
"name": "lastItem"
|
|
3338
3227
|
},
|
|
3228
|
+
{
|
|
3229
|
+
"kind": "method",
|
|
3230
|
+
"name": "#setOverflowState"
|
|
3231
|
+
},
|
|
3339
3232
|
{
|
|
3340
3233
|
"kind": "method",
|
|
3341
3234
|
"name": "init",
|
|
@@ -3874,53 +3767,10 @@
|
|
|
3874
3767
|
"description": "This controller holds a cache of observed property values which were set before the element updated",
|
|
3875
3768
|
"name": "PropertyObserverController",
|
|
3876
3769
|
"members": [
|
|
3877
|
-
{
|
|
3878
|
-
"kind": "method",
|
|
3879
|
-
"name": "delete",
|
|
3880
|
-
"parameters": [
|
|
3881
|
-
{
|
|
3882
|
-
"name": "key"
|
|
3883
|
-
}
|
|
3884
|
-
]
|
|
3885
|
-
},
|
|
3886
|
-
{
|
|
3887
|
-
"kind": "method",
|
|
3888
|
-
"name": "hostUpdate",
|
|
3889
|
-
"description": "Set any cached valued accumulated between constructor and connectedCallback"
|
|
3890
|
-
},
|
|
3891
|
-
{
|
|
3892
|
-
"kind": "method",
|
|
3893
|
-
"name": "hostUpdated",
|
|
3894
|
-
"description": "Once the element has updated, we no longer need this controller, so we remove it"
|
|
3895
|
-
},
|
|
3896
|
-
{
|
|
3897
|
-
"kind": "method",
|
|
3898
|
-
"name": "cache",
|
|
3899
|
-
"parameters": [
|
|
3900
|
-
{
|
|
3901
|
-
"name": "key"
|
|
3902
|
-
},
|
|
3903
|
-
{
|
|
3904
|
-
"name": "methodName"
|
|
3905
|
-
},
|
|
3906
|
-
{
|
|
3907
|
-
"name": "vals"
|
|
3908
|
-
}
|
|
3909
|
-
]
|
|
3910
|
-
},
|
|
3911
|
-
{
|
|
3912
|
-
"kind": "field",
|
|
3913
|
-
"name": "host",
|
|
3914
|
-
"default": "host"
|
|
3915
|
-
},
|
|
3916
|
-
{
|
|
3917
|
-
"kind": "field",
|
|
3918
|
-
"name": "values",
|
|
3919
|
-
"default": "new Map()"
|
|
3920
|
-
},
|
|
3921
3770
|
{
|
|
3922
3771
|
"kind": "field",
|
|
3923
|
-
"
|
|
3772
|
+
"name": "",
|
|
3773
|
+
"static": true
|
|
3924
3774
|
}
|
|
3925
3775
|
]
|
|
3926
3776
|
}
|
|
@@ -4241,6 +4091,46 @@
|
|
|
4241
4091
|
"description": "Implements roving tabindex, as described in WAI-ARIA practices, [Managing Focus Within\nComponents Using a Roving\ntabindex](https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_roving_tabindex)",
|
|
4242
4092
|
"name": "RovingTabindexController",
|
|
4243
4093
|
"members": [
|
|
4094
|
+
{
|
|
4095
|
+
"kind": "field",
|
|
4096
|
+
"name": "#activeItem",
|
|
4097
|
+
"privacy": "private",
|
|
4098
|
+
"description": "active focusable element"
|
|
4099
|
+
},
|
|
4100
|
+
{
|
|
4101
|
+
"kind": "field",
|
|
4102
|
+
"name": "#itemsContainer",
|
|
4103
|
+
"privacy": "private",
|
|
4104
|
+
"description": "closest ancestor containing items"
|
|
4105
|
+
},
|
|
4106
|
+
{
|
|
4107
|
+
"kind": "field",
|
|
4108
|
+
"name": "#items",
|
|
4109
|
+
"privacy": "private",
|
|
4110
|
+
"type": {
|
|
4111
|
+
"text": "array"
|
|
4112
|
+
},
|
|
4113
|
+
"default": "[]",
|
|
4114
|
+
"description": "array of all focusable elements"
|
|
4115
|
+
},
|
|
4116
|
+
{
|
|
4117
|
+
"kind": "field",
|
|
4118
|
+
"name": "#focusableItems",
|
|
4119
|
+
"privacy": "private",
|
|
4120
|
+
"description": "finds focusable items from a group of items"
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"kind": "field",
|
|
4124
|
+
"name": "#activeIndex",
|
|
4125
|
+
"privacy": "private",
|
|
4126
|
+
"description": "index of active item in array of focusable items"
|
|
4127
|
+
},
|
|
4128
|
+
{
|
|
4129
|
+
"kind": "field",
|
|
4130
|
+
"name": "#itemIndex",
|
|
4131
|
+
"privacy": "private",
|
|
4132
|
+
"description": "index of active item in array of items"
|
|
4133
|
+
},
|
|
4244
4134
|
{
|
|
4245
4135
|
"kind": "field",
|
|
4246
4136
|
"name": "activeItem",
|
|
@@ -4266,6 +4156,12 @@
|
|
|
4266
4156
|
"name": "prevItem",
|
|
4267
4157
|
"description": "previous item after active item in array of focusable items"
|
|
4268
4158
|
},
|
|
4159
|
+
{
|
|
4160
|
+
"kind": "field",
|
|
4161
|
+
"name": "#onKeydown",
|
|
4162
|
+
"privacy": "private",
|
|
4163
|
+
"description": "handles keyboard navigation"
|
|
4164
|
+
},
|
|
4269
4165
|
{
|
|
4270
4166
|
"kind": "method",
|
|
4271
4167
|
"name": "updateActiveItem",
|
|
@@ -4645,55 +4541,165 @@
|
|
|
4645
4541
|
"members": [
|
|
4646
4542
|
{
|
|
4647
4543
|
"kind": "field",
|
|
4648
|
-
"name": "
|
|
4544
|
+
"name": "#tagNames",
|
|
4545
|
+
"privacy": "private"
|
|
4649
4546
|
},
|
|
4650
4547
|
{
|
|
4651
4548
|
"kind": "field",
|
|
4652
|
-
"name": "
|
|
4549
|
+
"name": "#activeAttribute",
|
|
4550
|
+
"privacy": "private"
|
|
4653
4551
|
},
|
|
4654
4552
|
{
|
|
4655
4553
|
"kind": "field",
|
|
4656
|
-
"name": "
|
|
4554
|
+
"name": "#io",
|
|
4555
|
+
"privacy": "private"
|
|
4657
4556
|
},
|
|
4658
4557
|
{
|
|
4659
|
-
"kind": "
|
|
4660
|
-
"name": "
|
|
4558
|
+
"kind": "field",
|
|
4559
|
+
"name": "#passedLinks",
|
|
4560
|
+
"privacy": "private",
|
|
4561
|
+
"default": "new Set()",
|
|
4562
|
+
"description": "Which link's targets have already scrolled past?"
|
|
4661
4563
|
},
|
|
4662
4564
|
{
|
|
4663
|
-
"kind": "
|
|
4664
|
-
"name": "
|
|
4665
|
-
"
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
"description": "
|
|
4565
|
+
"kind": "field",
|
|
4566
|
+
"name": "#force",
|
|
4567
|
+
"privacy": "private",
|
|
4568
|
+
"type": {
|
|
4569
|
+
"text": "boolean"
|
|
4570
|
+
},
|
|
4571
|
+
"default": "false",
|
|
4572
|
+
"description": "Ignore intersections?"
|
|
4671
4573
|
},
|
|
4672
4574
|
{
|
|
4673
4575
|
"kind": "field",
|
|
4674
|
-
"name": "
|
|
4675
|
-
"
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4576
|
+
"name": "#intersected",
|
|
4577
|
+
"privacy": "private",
|
|
4578
|
+
"type": {
|
|
4579
|
+
"text": "boolean"
|
|
4580
|
+
},
|
|
4581
|
+
"default": "false",
|
|
4582
|
+
"description": "Has the intersection observer found an element?"
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
"kind": "field",
|
|
4586
|
+
"name": "#root",
|
|
4587
|
+
"privacy": "private"
|
|
4588
|
+
},
|
|
4589
|
+
{
|
|
4590
|
+
"kind": "field",
|
|
4591
|
+
"name": "#rootMargin",
|
|
4592
|
+
"privacy": "private"
|
|
4593
|
+
},
|
|
4594
|
+
{
|
|
4595
|
+
"kind": "field",
|
|
4596
|
+
"name": "#threshold",
|
|
4597
|
+
"privacy": "private"
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"kind": "field",
|
|
4601
|
+
"name": "#rootNode",
|
|
4602
|
+
"privacy": "private"
|
|
4603
|
+
},
|
|
4604
|
+
{
|
|
4605
|
+
"kind": "field",
|
|
4606
|
+
"name": "#getHash",
|
|
4607
|
+
"privacy": "private"
|
|
4608
|
+
},
|
|
4609
|
+
{
|
|
4610
|
+
"kind": "field",
|
|
4611
|
+
"name": "#linkChildren",
|
|
4612
|
+
"privacy": "private"
|
|
4613
|
+
},
|
|
4614
|
+
{
|
|
4615
|
+
"kind": "field",
|
|
4616
|
+
"name": "root"
|
|
4617
|
+
},
|
|
4618
|
+
{
|
|
4619
|
+
"kind": "field",
|
|
4620
|
+
"name": "rootMargin"
|
|
4621
|
+
},
|
|
4622
|
+
{
|
|
4623
|
+
"kind": "field",
|
|
4624
|
+
"name": "threshold"
|
|
4625
|
+
},
|
|
4626
|
+
{
|
|
4627
|
+
"kind": "method",
|
|
4628
|
+
"name": "hostConnected"
|
|
4629
|
+
},
|
|
4630
|
+
{
|
|
4631
|
+
"kind": "method",
|
|
4632
|
+
"name": "#initIo"
|
|
4633
|
+
},
|
|
4634
|
+
{
|
|
4635
|
+
"kind": "method",
|
|
4636
|
+
"name": "#markPassed",
|
|
4637
|
+
"parameters": [
|
|
4638
|
+
{
|
|
4639
|
+
"name": "link"
|
|
4640
|
+
},
|
|
4641
|
+
{
|
|
4642
|
+
"name": "force"
|
|
4643
|
+
}
|
|
4644
|
+
]
|
|
4645
|
+
},
|
|
4646
|
+
{
|
|
4647
|
+
"kind": "method",
|
|
4648
|
+
"name": "#setActive",
|
|
4649
|
+
"parameters": [
|
|
4650
|
+
{
|
|
4651
|
+
"name": "link"
|
|
4652
|
+
}
|
|
4653
|
+
]
|
|
4654
|
+
},
|
|
4655
|
+
{
|
|
4656
|
+
"kind": "method",
|
|
4657
|
+
"name": "#nextIntersection"
|
|
4658
|
+
},
|
|
4659
|
+
{
|
|
4660
|
+
"kind": "method",
|
|
4661
|
+
"name": "#onIo",
|
|
4662
|
+
"parameters": [
|
|
4663
|
+
{
|
|
4664
|
+
"name": "entries"
|
|
4665
|
+
}
|
|
4666
|
+
]
|
|
4667
|
+
},
|
|
4668
|
+
{
|
|
4669
|
+
"kind": "method",
|
|
4670
|
+
"name": "setActive",
|
|
4671
|
+
"parameters": [
|
|
4672
|
+
{
|
|
4673
|
+
"name": "link"
|
|
4674
|
+
}
|
|
4675
|
+
],
|
|
4676
|
+
"description": "Explicitly set the active item"
|
|
4677
|
+
},
|
|
4678
|
+
{
|
|
4679
|
+
"kind": "field",
|
|
4680
|
+
"name": "host",
|
|
4681
|
+
"default": "host"
|
|
4682
|
+
}
|
|
4683
|
+
]
|
|
4684
|
+
}
|
|
4685
|
+
],
|
|
4686
|
+
"exports": [
|
|
4687
|
+
{
|
|
4688
|
+
"kind": "js",
|
|
4689
|
+
"name": "ScrollSpyController",
|
|
4690
|
+
"declaration": {
|
|
4691
|
+
"name": "ScrollSpyController",
|
|
4692
|
+
"module": "controllers/scroll-spy-controller.js"
|
|
4693
|
+
}
|
|
4694
|
+
}
|
|
4695
|
+
]
|
|
4696
|
+
},
|
|
4697
|
+
{
|
|
4698
|
+
"kind": "javascript-module",
|
|
4699
|
+
"path": "controllers/scroll-spy-controller.ts",
|
|
4700
|
+
"declarations": [
|
|
4701
|
+
{
|
|
4702
|
+
"kind": "class",
|
|
4697
4703
|
"description": "",
|
|
4698
4704
|
"name": "ScrollSpyController",
|
|
4699
4705
|
"members": [
|
|
@@ -5073,121 +5079,10 @@
|
|
|
5073
5079
|
"description": "",
|
|
5074
5080
|
"name": "SlotController",
|
|
5075
5081
|
"members": [
|
|
5076
|
-
{
|
|
5077
|
-
"kind": "method",
|
|
5078
|
-
"name": "hostConnected"
|
|
5079
|
-
},
|
|
5080
|
-
{
|
|
5081
|
-
"kind": "method",
|
|
5082
|
-
"name": "hostUpdated"
|
|
5083
|
-
},
|
|
5084
|
-
{
|
|
5085
|
-
"kind": "method",
|
|
5086
|
-
"name": "hostDisconnected"
|
|
5087
|
-
},
|
|
5088
|
-
{
|
|
5089
|
-
"kind": "method",
|
|
5090
|
-
"name": "hasSlotted",
|
|
5091
|
-
"parameters": [
|
|
5092
|
-
{
|
|
5093
|
-
"name": "names"
|
|
5094
|
-
},
|
|
5095
|
-
{
|
|
5096
|
-
"description": "The slot name.",
|
|
5097
|
-
"name": "name",
|
|
5098
|
-
"type": {
|
|
5099
|
-
"text": "String|Array"
|
|
5100
|
-
}
|
|
5101
|
-
}
|
|
5102
|
-
],
|
|
5103
|
-
"description": "Returns a boolean statement of whether or not any of those slots exists in the light DOM."
|
|
5104
|
-
},
|
|
5105
|
-
{
|
|
5106
|
-
"kind": "method",
|
|
5107
|
-
"name": "getSlotted",
|
|
5108
|
-
"parameters": [
|
|
5109
|
-
{
|
|
5110
|
-
"name": "slotNames"
|
|
5111
|
-
}
|
|
5112
|
-
],
|
|
5113
|
-
"description": "Given a slot name or slot names, returns elements assigned to the requested slots as an array.\nIf no value is provided, it returns all children not assigned to a slot (without a slot attribute)."
|
|
5114
|
-
},
|
|
5115
|
-
{
|
|
5116
|
-
"kind": "method",
|
|
5117
|
-
"name": "onSlotChange",
|
|
5118
|
-
"parameters": [
|
|
5119
|
-
{
|
|
5120
|
-
"name": "event"
|
|
5121
|
-
}
|
|
5122
|
-
]
|
|
5123
|
-
},
|
|
5124
|
-
{
|
|
5125
|
-
"kind": "method",
|
|
5126
|
-
"name": "onMutation",
|
|
5127
|
-
"parameters": [
|
|
5128
|
-
{
|
|
5129
|
-
"name": "records"
|
|
5130
|
-
}
|
|
5131
|
-
]
|
|
5132
|
-
},
|
|
5133
|
-
{
|
|
5134
|
-
"kind": "method",
|
|
5135
|
-
"name": "getChildrenForSlot",
|
|
5136
|
-
"parameters": [
|
|
5137
|
-
{
|
|
5138
|
-
"name": "name"
|
|
5139
|
-
}
|
|
5140
|
-
]
|
|
5141
|
-
},
|
|
5142
|
-
{
|
|
5143
|
-
"kind": "method",
|
|
5144
|
-
"name": "initSlot",
|
|
5145
|
-
"parameters": [
|
|
5146
|
-
{
|
|
5147
|
-
"name": "slotName"
|
|
5148
|
-
}
|
|
5149
|
-
]
|
|
5150
|
-
},
|
|
5151
|
-
{
|
|
5152
|
-
"kind": "method",
|
|
5153
|
-
"name": "init",
|
|
5154
|
-
"description": "Maps the defined slots into an object that is easier to query"
|
|
5155
|
-
},
|
|
5156
5082
|
{
|
|
5157
5083
|
"kind": "field",
|
|
5158
|
-
"name": "
|
|
5159
|
-
"
|
|
5160
|
-
},
|
|
5161
|
-
{
|
|
5162
|
-
"kind": "field",
|
|
5163
|
-
"name": "nodes",
|
|
5164
|
-
"default": "new Map()"
|
|
5165
|
-
},
|
|
5166
|
-
{
|
|
5167
|
-
"kind": "field",
|
|
5168
|
-
"name": "firstUpdated",
|
|
5169
|
-
"type": {
|
|
5170
|
-
"text": "boolean"
|
|
5171
|
-
},
|
|
5172
|
-
"default": "false"
|
|
5173
|
-
},
|
|
5174
|
-
{
|
|
5175
|
-
"kind": "field",
|
|
5176
|
-
"name": "mo",
|
|
5177
|
-
"default": "new MutationObserver(this.onMutation)"
|
|
5178
|
-
},
|
|
5179
|
-
{
|
|
5180
|
-
"kind": "field",
|
|
5181
|
-
"name": "deprecations",
|
|
5182
|
-
"type": {
|
|
5183
|
-
"text": "object"
|
|
5184
|
-
},
|
|
5185
|
-
"default": "{}"
|
|
5186
|
-
},
|
|
5187
|
-
{
|
|
5188
|
-
"kind": "field",
|
|
5189
|
-
"name": "logger",
|
|
5190
|
-
"default": "new Logger(this.host)"
|
|
5084
|
+
"name": "",
|
|
5085
|
+
"static": true
|
|
5191
5086
|
}
|
|
5192
5087
|
]
|
|
5193
5088
|
}
|
|
@@ -5562,6 +5457,294 @@
|
|
|
5562
5457
|
}
|
|
5563
5458
|
]
|
|
5564
5459
|
},
|
|
5460
|
+
{
|
|
5461
|
+
"kind": "javascript-module",
|
|
5462
|
+
"path": "controllers/timestamp-controller.d.ts",
|
|
5463
|
+
"declarations": [
|
|
5464
|
+
{
|
|
5465
|
+
"kind": "class",
|
|
5466
|
+
"description": "",
|
|
5467
|
+
"name": "TimestampController",
|
|
5468
|
+
"members": [
|
|
5469
|
+
{
|
|
5470
|
+
"kind": "field",
|
|
5471
|
+
"name": "#private",
|
|
5472
|
+
"privacy": "private"
|
|
5473
|
+
},
|
|
5474
|
+
{
|
|
5475
|
+
"kind": "field",
|
|
5476
|
+
"name": "localeString",
|
|
5477
|
+
"type": {
|
|
5478
|
+
"text": "string"
|
|
5479
|
+
}
|
|
5480
|
+
},
|
|
5481
|
+
{
|
|
5482
|
+
"kind": "field",
|
|
5483
|
+
"name": "date",
|
|
5484
|
+
"type": {
|
|
5485
|
+
"text": "Date"
|
|
5486
|
+
}
|
|
5487
|
+
},
|
|
5488
|
+
{
|
|
5489
|
+
"kind": "field",
|
|
5490
|
+
"name": "isoString",
|
|
5491
|
+
"type": {
|
|
5492
|
+
"text": "string"
|
|
5493
|
+
}
|
|
5494
|
+
},
|
|
5495
|
+
{
|
|
5496
|
+
"kind": "field",
|
|
5497
|
+
"name": "time",
|
|
5498
|
+
"type": {
|
|
5499
|
+
"text": "string"
|
|
5500
|
+
}
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
"kind": "method",
|
|
5504
|
+
"name": "hostConnected",
|
|
5505
|
+
"return": {
|
|
5506
|
+
"type": {
|
|
5507
|
+
"text": "void"
|
|
5508
|
+
}
|
|
5509
|
+
}
|
|
5510
|
+
},
|
|
5511
|
+
{
|
|
5512
|
+
"kind": "method",
|
|
5513
|
+
"name": "set",
|
|
5514
|
+
"return": {
|
|
5515
|
+
"type": {
|
|
5516
|
+
"text": "void"
|
|
5517
|
+
}
|
|
5518
|
+
},
|
|
5519
|
+
"parameters": [
|
|
5520
|
+
{
|
|
5521
|
+
"name": "prop",
|
|
5522
|
+
"type": {
|
|
5523
|
+
"text": "PropertyKey"
|
|
5524
|
+
}
|
|
5525
|
+
},
|
|
5526
|
+
{
|
|
5527
|
+
"name": "value",
|
|
5528
|
+
"type": {
|
|
5529
|
+
"text": "unknown"
|
|
5530
|
+
}
|
|
5531
|
+
}
|
|
5532
|
+
]
|
|
5533
|
+
}
|
|
5534
|
+
]
|
|
5535
|
+
}
|
|
5536
|
+
],
|
|
5537
|
+
"exports": [
|
|
5538
|
+
{
|
|
5539
|
+
"kind": "js",
|
|
5540
|
+
"name": "TimestampController",
|
|
5541
|
+
"declaration": {
|
|
5542
|
+
"name": "TimestampController",
|
|
5543
|
+
"module": "controllers/timestamp-controller.d.ts"
|
|
5544
|
+
}
|
|
5545
|
+
}
|
|
5546
|
+
]
|
|
5547
|
+
},
|
|
5548
|
+
{
|
|
5549
|
+
"kind": "javascript-module",
|
|
5550
|
+
"path": "controllers/timestamp-controller.js",
|
|
5551
|
+
"declarations": [
|
|
5552
|
+
{
|
|
5553
|
+
"kind": "class",
|
|
5554
|
+
"description": "",
|
|
5555
|
+
"name": "TimestampController",
|
|
5556
|
+
"members": [
|
|
5557
|
+
{
|
|
5558
|
+
"kind": "method",
|
|
5559
|
+
"name": "#isTimestampOptionKey",
|
|
5560
|
+
"static": true,
|
|
5561
|
+
"parameters": [
|
|
5562
|
+
{
|
|
5563
|
+
"name": "prop"
|
|
5564
|
+
}
|
|
5565
|
+
]
|
|
5566
|
+
},
|
|
5567
|
+
{
|
|
5568
|
+
"kind": "field",
|
|
5569
|
+
"name": "#date",
|
|
5570
|
+
"privacy": "private",
|
|
5571
|
+
"default": "new Date()"
|
|
5572
|
+
},
|
|
5573
|
+
{
|
|
5574
|
+
"kind": "field",
|
|
5575
|
+
"name": "#options",
|
|
5576
|
+
"privacy": "private",
|
|
5577
|
+
"type": {
|
|
5578
|
+
"text": "object"
|
|
5579
|
+
},
|
|
5580
|
+
"default": "{}"
|
|
5581
|
+
},
|
|
5582
|
+
{
|
|
5583
|
+
"kind": "field",
|
|
5584
|
+
"name": "#host",
|
|
5585
|
+
"privacy": "private",
|
|
5586
|
+
"default": "host"
|
|
5587
|
+
},
|
|
5588
|
+
{
|
|
5589
|
+
"kind": "field",
|
|
5590
|
+
"name": "localeString"
|
|
5591
|
+
},
|
|
5592
|
+
{
|
|
5593
|
+
"kind": "field",
|
|
5594
|
+
"name": "date"
|
|
5595
|
+
},
|
|
5596
|
+
{
|
|
5597
|
+
"kind": "field",
|
|
5598
|
+
"name": "isoString"
|
|
5599
|
+
},
|
|
5600
|
+
{
|
|
5601
|
+
"kind": "field",
|
|
5602
|
+
"name": "time"
|
|
5603
|
+
},
|
|
5604
|
+
{
|
|
5605
|
+
"kind": "method",
|
|
5606
|
+
"name": "#getTimeRelative",
|
|
5607
|
+
"description": "Based off of Github Relative Time\nhttps://github.com/github/time-elements/blob/master/src/relative-time.js"
|
|
5608
|
+
},
|
|
5609
|
+
{
|
|
5610
|
+
"kind": "method",
|
|
5611
|
+
"name": "set",
|
|
5612
|
+
"parameters": [
|
|
5613
|
+
{
|
|
5614
|
+
"name": "prop"
|
|
5615
|
+
},
|
|
5616
|
+
{
|
|
5617
|
+
"name": "value"
|
|
5618
|
+
}
|
|
5619
|
+
]
|
|
5620
|
+
}
|
|
5621
|
+
]
|
|
5622
|
+
}
|
|
5623
|
+
],
|
|
5624
|
+
"exports": [
|
|
5625
|
+
{
|
|
5626
|
+
"kind": "js",
|
|
5627
|
+
"name": "TimestampController",
|
|
5628
|
+
"declaration": {
|
|
5629
|
+
"name": "TimestampController",
|
|
5630
|
+
"module": "controllers/timestamp-controller.js"
|
|
5631
|
+
}
|
|
5632
|
+
}
|
|
5633
|
+
]
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"kind": "javascript-module",
|
|
5637
|
+
"path": "controllers/timestamp-controller.ts",
|
|
5638
|
+
"declarations": [
|
|
5639
|
+
{
|
|
5640
|
+
"kind": "class",
|
|
5641
|
+
"description": "",
|
|
5642
|
+
"name": "TimestampController",
|
|
5643
|
+
"members": [
|
|
5644
|
+
{
|
|
5645
|
+
"kind": "method",
|
|
5646
|
+
"name": "#isTimestampOptionKey",
|
|
5647
|
+
"static": true,
|
|
5648
|
+
"return": {
|
|
5649
|
+
"type": {
|
|
5650
|
+
"text": "prop is keyof TimestampOptions"
|
|
5651
|
+
}
|
|
5652
|
+
},
|
|
5653
|
+
"parameters": [
|
|
5654
|
+
{
|
|
5655
|
+
"name": "prop",
|
|
5656
|
+
"type": {
|
|
5657
|
+
"text": "PropertyKey"
|
|
5658
|
+
}
|
|
5659
|
+
}
|
|
5660
|
+
]
|
|
5661
|
+
},
|
|
5662
|
+
{
|
|
5663
|
+
"kind": "field",
|
|
5664
|
+
"name": "#date",
|
|
5665
|
+
"privacy": "private",
|
|
5666
|
+
"default": "new Date()"
|
|
5667
|
+
},
|
|
5668
|
+
{
|
|
5669
|
+
"kind": "field",
|
|
5670
|
+
"name": "#options",
|
|
5671
|
+
"privacy": "private",
|
|
5672
|
+
"type": {
|
|
5673
|
+
"text": "TimestampOptions"
|
|
5674
|
+
},
|
|
5675
|
+
"default": "{}"
|
|
5676
|
+
},
|
|
5677
|
+
{
|
|
5678
|
+
"kind": "field",
|
|
5679
|
+
"name": "#host",
|
|
5680
|
+
"privacy": "private",
|
|
5681
|
+
"type": {
|
|
5682
|
+
"text": "ReactiveControllerHost"
|
|
5683
|
+
},
|
|
5684
|
+
"default": "host"
|
|
5685
|
+
},
|
|
5686
|
+
{
|
|
5687
|
+
"kind": "field",
|
|
5688
|
+
"name": "localeString"
|
|
5689
|
+
},
|
|
5690
|
+
{
|
|
5691
|
+
"kind": "field",
|
|
5692
|
+
"name": "date"
|
|
5693
|
+
},
|
|
5694
|
+
{
|
|
5695
|
+
"kind": "field",
|
|
5696
|
+
"name": "isoString"
|
|
5697
|
+
},
|
|
5698
|
+
{
|
|
5699
|
+
"kind": "field",
|
|
5700
|
+
"name": "time"
|
|
5701
|
+
},
|
|
5702
|
+
{
|
|
5703
|
+
"kind": "method",
|
|
5704
|
+
"name": "hostConnected",
|
|
5705
|
+
"return": {
|
|
5706
|
+
"type": {
|
|
5707
|
+
"text": "void"
|
|
5708
|
+
}
|
|
5709
|
+
}
|
|
5710
|
+
},
|
|
5711
|
+
{
|
|
5712
|
+
"kind": "method",
|
|
5713
|
+
"name": "#getTimeRelative",
|
|
5714
|
+
"description": "Based off of Github Relative Time\nhttps://github.com/github/time-elements/blob/master/src/relative-time.js"
|
|
5715
|
+
},
|
|
5716
|
+
{
|
|
5717
|
+
"kind": "method",
|
|
5718
|
+
"name": "set",
|
|
5719
|
+
"parameters": [
|
|
5720
|
+
{
|
|
5721
|
+
"name": "prop",
|
|
5722
|
+
"type": {
|
|
5723
|
+
"text": "PropertyKey"
|
|
5724
|
+
}
|
|
5725
|
+
},
|
|
5726
|
+
{
|
|
5727
|
+
"name": "value",
|
|
5728
|
+
"type": {
|
|
5729
|
+
"text": "unknown"
|
|
5730
|
+
}
|
|
5731
|
+
}
|
|
5732
|
+
]
|
|
5733
|
+
}
|
|
5734
|
+
]
|
|
5735
|
+
}
|
|
5736
|
+
],
|
|
5737
|
+
"exports": [
|
|
5738
|
+
{
|
|
5739
|
+
"kind": "js",
|
|
5740
|
+
"name": "TimestampController",
|
|
5741
|
+
"declaration": {
|
|
5742
|
+
"name": "TimestampController",
|
|
5743
|
+
"module": "controllers/timestamp-controller.ts"
|
|
5744
|
+
}
|
|
5745
|
+
}
|
|
5746
|
+
]
|
|
5747
|
+
},
|
|
5565
5748
|
{
|
|
5566
5749
|
"kind": "javascript-module",
|
|
5567
5750
|
"path": "decorators/bound.d.ts",
|