@ulu/frontend-vue 0.1.0-beta.1
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/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/breakpoints-ClT9bfZm.js +211 -0
- package/dist/frontend-vue.css +1 -0
- package/dist/frontend-vue.js +82 -0
- package/dist/frontend-vue.umd.cjs +561 -0
- package/dist/index-P5Rwl_Dl.js +7263 -0
- package/dist/index.es-HlG3u0J5.js +3134 -0
- package/lib/_index.scss +14 -0
- package/lib/components/_index.scss +6 -0
- package/lib/components/collapsible/UluAccordion.vue +82 -0
- package/lib/components/collapsible/UluCollapsibleRegion.vue +278 -0
- package/lib/components/collapsible/UluDropdown.vue +42 -0
- package/lib/components/collapsible/UluModal.vue +384 -0
- package/lib/components/collapsible/UluOverflowPopover.vue +52 -0
- package/lib/components/collapsible/UluTab.vue +9 -0
- package/lib/components/collapsible/UluTabGroup.vue +31 -0
- package/lib/components/collapsible/UluTabList.vue +9 -0
- package/lib/components/collapsible/UluTabPanel.vue +9 -0
- package/lib/components/collapsible/UluTabPanels.vue +9 -0
- package/lib/components/elements/UluAlert.vue +81 -0
- package/lib/components/elements/UluBadge.vue +58 -0
- package/lib/components/elements/UluBadgeStack.vue +27 -0
- package/lib/components/elements/UluButton.vue +161 -0
- package/lib/components/elements/UluCallout.vue +30 -0
- package/lib/components/elements/UluCard.vue +241 -0
- package/lib/components/elements/UluDefinitionList.vue +40 -0
- package/lib/components/elements/UluExternalLink.vue +47 -0
- package/lib/components/elements/UluIcon.vue +108 -0
- package/lib/components/elements/UluList.vue +87 -0
- package/lib/components/elements/UluMain.vue +5 -0
- package/lib/components/elements/UluSpokeSpinner.vue +25 -0
- package/lib/components/elements/UluTag.vue +53 -0
- package/lib/components/forms/UluCheckboxMenu.vue +36 -0
- package/lib/components/forms/UluFileDisplay.vue +39 -0
- package/lib/components/forms/UluFormDropzone.vue +62 -0
- package/lib/components/forms/UluFormFile.vue +47 -0
- package/lib/components/forms/UluFormMessage.vue +20 -0
- package/lib/components/forms/UluFormSelect.vue +37 -0
- package/lib/components/forms/UluFormText.vue +32 -0
- package/lib/components/forms/UluSearchForm.vue +31 -0
- package/lib/components/index.js +54 -0
- package/lib/components/layout/UluAdaptiveLayout.vue +11 -0
- package/lib/components/layout/UluDataGrid.vue +41 -0
- package/lib/components/layout/UluTitleRail.vue +56 -0
- package/lib/components/layout/UluWhenBreakpoint.vue +86 -0
- package/lib/components/navigation/UluBreadcrumb.vue +72 -0
- package/lib/components/navigation/UluMenu.vue +105 -0
- package/lib/components/navigation/UluMenuStack.vue +49 -0
- package/lib/components/navigation/UluNavStrip.vue +48 -0
- package/lib/components/navigation/UluSkipLink.vue +5 -0
- package/lib/components/systems/facets/UluFacets.vue +380 -0
- package/lib/components/systems/facets/UluFacetsList.vue +39 -0
- package/lib/components/systems/facets/UluFacetsSearch.vue +67 -0
- package/lib/components/systems/facets/_facets.scss +64 -0
- package/lib/components/systems/index.js +17 -0
- package/lib/components/systems/scroll-anchors/UluScrollAnchors.vue +152 -0
- package/lib/components/systems/scroll-anchors/UluScrollAnchorsNav.vue +37 -0
- package/lib/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue +124 -0
- package/lib/components/systems/scroll-anchors/UluScrollAnchorsSection.vue +63 -0
- package/lib/components/systems/scroll-anchors/symbols.js +6 -0
- package/lib/components/systems/skeleton/UluShowSkeleton.vue +13 -0
- package/lib/components/systems/skeleton/UluSkeletonContent.vue +60 -0
- package/lib/components/systems/skeleton/UluSkeletonMedia.vue +11 -0
- package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +9 -0
- package/lib/components/systems/slider/UluImageSlideShow.vue +75 -0
- package/lib/components/systems/slider/UluSlideShow.vue +331 -0
- package/lib/components/systems/slider/UluSlideShowSlide.vue +25 -0
- package/lib/components/systems/table-sticky/UluTableSticky.vue +793 -0
- package/lib/components/systems/table-sticky/UluTableStickyRows.vue +73 -0
- package/lib/components/systems/table-sticky/UluTableStickyTable.vue +237 -0
- package/lib/components/systems/table-sticky/_table-sticky.scss +185 -0
- package/lib/components/utils/UluCondText.vue +28 -0
- package/lib/components/utils/UluEmpty.vue +3 -0
- package/lib/components/utils/UluEmptyView.vue +3 -0
- package/lib/components/utils/UluPlaceholderImage.vue +53 -0
- package/lib/components/utils/UluPlaceholderText.vue +25 -0
- package/lib/components/utils/UluRouteAnnouncer.vue +83 -0
- package/lib/components/visualizations/UluAnimateNumber.vue +32 -0
- package/lib/components/visualizations/UluProgressBar.vue +94 -0
- package/lib/components/visualizations/UluProgressDonut.vue +97 -0
- package/lib/composables/index.js +10 -0
- package/lib/composables/useBreakpointManager.js +68 -0
- package/lib/composables/useIcon.js +62 -0
- package/lib/composables/useModifiers.js +93 -0
- package/lib/composables/useWindowResize.js +64 -0
- package/lib/index.js +10 -0
- package/lib/plugins/_index.scss +7 -0
- package/lib/plugins/breakpoints/index.js +47 -0
- package/lib/plugins/index.js +11 -0
- package/lib/plugins/modals/UluModalsDisplay.vue +59 -0
- package/lib/plugins/modals/api.js +76 -0
- package/lib/plugins/modals/index.js +60 -0
- package/lib/plugins/modals/useModals.js +9 -0
- package/lib/plugins/popovers/UluPopover.vue +189 -0
- package/lib/plugins/popovers/UluTooltipDisplay.vue +15 -0
- package/lib/plugins/popovers/UluTooltipPopover.vue +83 -0
- package/lib/plugins/popovers/defaults.js +108 -0
- package/lib/plugins/popovers/directive.js +95 -0
- package/lib/plugins/popovers/index.js +18 -0
- package/lib/plugins/popovers/manager.js +54 -0
- package/lib/plugins/popovers/useFollow.js +80 -0
- package/lib/plugins/popovers/utils.js +5 -0
- package/lib/plugins/toast/UluToast.vue +87 -0
- package/lib/plugins/toast/UluToastDisplay.vue +35 -0
- package/lib/plugins/toast/_toast.scss +198 -0
- package/lib/plugins/toast/defaults.js +30 -0
- package/lib/plugins/toast/index.js +17 -0
- package/lib/plugins/toast/store.js +71 -0
- package/lib/plugins/toast/useToast.js +18 -0
- package/lib/settings.js +119 -0
- package/lib/utils/dom.js +14 -0
- package/lib/utils/placeholder.js +6 -0
- package/lib/utils/vue-router.js +219 -0
- package/package.json +75 -0
|
@@ -0,0 +1,3134 @@
|
|
|
1
|
+
import { defineComponent as jt, computed as E, watch as un, h as ke } from "vue";
|
|
2
|
+
/*!
|
|
3
|
+
* Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
|
|
4
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
5
|
+
* Copyright 2024 Fonticons, Inc.
|
|
6
|
+
*/
|
|
7
|
+
function dn(t, e, n) {
|
|
8
|
+
return (e = gn(e)) in t ? Object.defineProperty(t, e, {
|
|
9
|
+
value: n,
|
|
10
|
+
enumerable: !0,
|
|
11
|
+
configurable: !0,
|
|
12
|
+
writable: !0
|
|
13
|
+
}) : t[e] = n, t;
|
|
14
|
+
}
|
|
15
|
+
function Qt(t, e) {
|
|
16
|
+
var n = Object.keys(t);
|
|
17
|
+
if (Object.getOwnPropertySymbols) {
|
|
18
|
+
var a = Object.getOwnPropertySymbols(t);
|
|
19
|
+
e && (a = a.filter(function(r) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(t, r).enumerable;
|
|
21
|
+
})), n.push.apply(n, a);
|
|
22
|
+
}
|
|
23
|
+
return n;
|
|
24
|
+
}
|
|
25
|
+
function l(t) {
|
|
26
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
27
|
+
var n = arguments[e] != null ? arguments[e] : {};
|
|
28
|
+
e % 2 ? Qt(Object(n), !0).forEach(function(a) {
|
|
29
|
+
dn(t, a, n[a]);
|
|
30
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : Qt(Object(n)).forEach(function(a) {
|
|
31
|
+
Object.defineProperty(t, a, Object.getOwnPropertyDescriptor(n, a));
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
}
|
|
36
|
+
function mn(t, e) {
|
|
37
|
+
if (typeof t != "object" || !t) return t;
|
|
38
|
+
var n = t[Symbol.toPrimitive];
|
|
39
|
+
if (n !== void 0) {
|
|
40
|
+
var a = n.call(t, e);
|
|
41
|
+
if (typeof a != "object") return a;
|
|
42
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
43
|
+
}
|
|
44
|
+
return (e === "string" ? String : Number)(t);
|
|
45
|
+
}
|
|
46
|
+
function gn(t) {
|
|
47
|
+
var e = mn(t, "string");
|
|
48
|
+
return typeof e == "symbol" ? e : e + "";
|
|
49
|
+
}
|
|
50
|
+
const Zt = () => {
|
|
51
|
+
};
|
|
52
|
+
let Rt = {}, Ee = {}, Ie = null, Ce = {
|
|
53
|
+
mark: Zt,
|
|
54
|
+
measure: Zt
|
|
55
|
+
};
|
|
56
|
+
try {
|
|
57
|
+
typeof window < "u" && (Rt = window), typeof document < "u" && (Ee = document), typeof MutationObserver < "u" && (Ie = MutationObserver), typeof performance < "u" && (Ce = performance);
|
|
58
|
+
} catch {
|
|
59
|
+
}
|
|
60
|
+
const {
|
|
61
|
+
userAgent: Jt = ""
|
|
62
|
+
} = Rt.navigator || {}, D = Rt, y = Ee, te = Ie, nt = Ce;
|
|
63
|
+
D.document;
|
|
64
|
+
const M = !!y.documentElement && !!y.head && typeof y.addEventListener == "function" && typeof y.createElement == "function", Ne = ~Jt.indexOf("MSIE") || ~Jt.indexOf("Trident/");
|
|
65
|
+
var pn = /fa(s|r|l|t|d|dr|dl|dt|b|k|kd|ss|sr|sl|st|sds|sdr|sdl|sdt)?[\-\ ]/, hn = /Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Sharp Duotone|Sharp|Kit)?.*/i, _e = {
|
|
66
|
+
classic: {
|
|
67
|
+
fa: "solid",
|
|
68
|
+
fas: "solid",
|
|
69
|
+
"fa-solid": "solid",
|
|
70
|
+
far: "regular",
|
|
71
|
+
"fa-regular": "regular",
|
|
72
|
+
fal: "light",
|
|
73
|
+
"fa-light": "light",
|
|
74
|
+
fat: "thin",
|
|
75
|
+
"fa-thin": "thin",
|
|
76
|
+
fab: "brands",
|
|
77
|
+
"fa-brands": "brands"
|
|
78
|
+
},
|
|
79
|
+
duotone: {
|
|
80
|
+
fa: "solid",
|
|
81
|
+
fad: "solid",
|
|
82
|
+
"fa-solid": "solid",
|
|
83
|
+
"fa-duotone": "solid",
|
|
84
|
+
fadr: "regular",
|
|
85
|
+
"fa-regular": "regular",
|
|
86
|
+
fadl: "light",
|
|
87
|
+
"fa-light": "light",
|
|
88
|
+
fadt: "thin",
|
|
89
|
+
"fa-thin": "thin"
|
|
90
|
+
},
|
|
91
|
+
sharp: {
|
|
92
|
+
fa: "solid",
|
|
93
|
+
fass: "solid",
|
|
94
|
+
"fa-solid": "solid",
|
|
95
|
+
fasr: "regular",
|
|
96
|
+
"fa-regular": "regular",
|
|
97
|
+
fasl: "light",
|
|
98
|
+
"fa-light": "light",
|
|
99
|
+
fast: "thin",
|
|
100
|
+
"fa-thin": "thin"
|
|
101
|
+
},
|
|
102
|
+
"sharp-duotone": {
|
|
103
|
+
fa: "solid",
|
|
104
|
+
fasds: "solid",
|
|
105
|
+
"fa-solid": "solid",
|
|
106
|
+
fasdr: "regular",
|
|
107
|
+
"fa-regular": "regular",
|
|
108
|
+
fasdl: "light",
|
|
109
|
+
"fa-light": "light",
|
|
110
|
+
fasdt: "thin",
|
|
111
|
+
"fa-thin": "thin"
|
|
112
|
+
}
|
|
113
|
+
}, yn = {
|
|
114
|
+
GROUP: "duotone-group",
|
|
115
|
+
PRIMARY: "primary",
|
|
116
|
+
SECONDARY: "secondary"
|
|
117
|
+
}, Fe = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], A = "classic", ct = "duotone", bn = "sharp", vn = "sharp-duotone", Te = [A, ct, bn, vn], xn = {
|
|
118
|
+
classic: {
|
|
119
|
+
900: "fas",
|
|
120
|
+
400: "far",
|
|
121
|
+
normal: "far",
|
|
122
|
+
300: "fal",
|
|
123
|
+
100: "fat"
|
|
124
|
+
},
|
|
125
|
+
duotone: {
|
|
126
|
+
900: "fad",
|
|
127
|
+
400: "fadr",
|
|
128
|
+
300: "fadl",
|
|
129
|
+
100: "fadt"
|
|
130
|
+
},
|
|
131
|
+
sharp: {
|
|
132
|
+
900: "fass",
|
|
133
|
+
400: "fasr",
|
|
134
|
+
300: "fasl",
|
|
135
|
+
100: "fast"
|
|
136
|
+
},
|
|
137
|
+
"sharp-duotone": {
|
|
138
|
+
900: "fasds",
|
|
139
|
+
400: "fasdr",
|
|
140
|
+
300: "fasdl",
|
|
141
|
+
100: "fasdt"
|
|
142
|
+
}
|
|
143
|
+
}, An = {
|
|
144
|
+
"Font Awesome 6 Free": {
|
|
145
|
+
900: "fas",
|
|
146
|
+
400: "far"
|
|
147
|
+
},
|
|
148
|
+
"Font Awesome 6 Pro": {
|
|
149
|
+
900: "fas",
|
|
150
|
+
400: "far",
|
|
151
|
+
normal: "far",
|
|
152
|
+
300: "fal",
|
|
153
|
+
100: "fat"
|
|
154
|
+
},
|
|
155
|
+
"Font Awesome 6 Brands": {
|
|
156
|
+
400: "fab",
|
|
157
|
+
normal: "fab"
|
|
158
|
+
},
|
|
159
|
+
"Font Awesome 6 Duotone": {
|
|
160
|
+
900: "fad",
|
|
161
|
+
400: "fadr",
|
|
162
|
+
normal: "fadr",
|
|
163
|
+
300: "fadl",
|
|
164
|
+
100: "fadt"
|
|
165
|
+
},
|
|
166
|
+
"Font Awesome 6 Sharp": {
|
|
167
|
+
900: "fass",
|
|
168
|
+
400: "fasr",
|
|
169
|
+
normal: "fasr",
|
|
170
|
+
300: "fasl",
|
|
171
|
+
100: "fast"
|
|
172
|
+
},
|
|
173
|
+
"Font Awesome 6 Sharp Duotone": {
|
|
174
|
+
900: "fasds",
|
|
175
|
+
400: "fasdr",
|
|
176
|
+
normal: "fasdr",
|
|
177
|
+
300: "fasdl",
|
|
178
|
+
100: "fasdt"
|
|
179
|
+
}
|
|
180
|
+
}, wn = /* @__PURE__ */ new Map([["classic", {
|
|
181
|
+
defaultShortPrefixId: "fas",
|
|
182
|
+
defaultStyleId: "solid",
|
|
183
|
+
styleIds: ["solid", "regular", "light", "thin", "brands"],
|
|
184
|
+
futureStyleIds: [],
|
|
185
|
+
defaultFontWeight: 900
|
|
186
|
+
}], ["sharp", {
|
|
187
|
+
defaultShortPrefixId: "fass",
|
|
188
|
+
defaultStyleId: "solid",
|
|
189
|
+
styleIds: ["solid", "regular", "light", "thin"],
|
|
190
|
+
futureStyleIds: [],
|
|
191
|
+
defaultFontWeight: 900
|
|
192
|
+
}], ["duotone", {
|
|
193
|
+
defaultShortPrefixId: "fad",
|
|
194
|
+
defaultStyleId: "solid",
|
|
195
|
+
styleIds: ["solid", "regular", "light", "thin"],
|
|
196
|
+
futureStyleIds: [],
|
|
197
|
+
defaultFontWeight: 900
|
|
198
|
+
}], ["sharp-duotone", {
|
|
199
|
+
defaultShortPrefixId: "fasds",
|
|
200
|
+
defaultStyleId: "solid",
|
|
201
|
+
styleIds: ["solid", "regular", "light", "thin"],
|
|
202
|
+
futureStyleIds: [],
|
|
203
|
+
defaultFontWeight: 900
|
|
204
|
+
}]]), Sn = {
|
|
205
|
+
classic: {
|
|
206
|
+
solid: "fas",
|
|
207
|
+
regular: "far",
|
|
208
|
+
light: "fal",
|
|
209
|
+
thin: "fat",
|
|
210
|
+
brands: "fab"
|
|
211
|
+
},
|
|
212
|
+
duotone: {
|
|
213
|
+
solid: "fad",
|
|
214
|
+
regular: "fadr",
|
|
215
|
+
light: "fadl",
|
|
216
|
+
thin: "fadt"
|
|
217
|
+
},
|
|
218
|
+
sharp: {
|
|
219
|
+
solid: "fass",
|
|
220
|
+
regular: "fasr",
|
|
221
|
+
light: "fasl",
|
|
222
|
+
thin: "fast"
|
|
223
|
+
},
|
|
224
|
+
"sharp-duotone": {
|
|
225
|
+
solid: "fasds",
|
|
226
|
+
regular: "fasdr",
|
|
227
|
+
light: "fasdl",
|
|
228
|
+
thin: "fasdt"
|
|
229
|
+
}
|
|
230
|
+
}, On = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], ee = {
|
|
231
|
+
kit: {
|
|
232
|
+
fak: "kit",
|
|
233
|
+
"fa-kit": "kit"
|
|
234
|
+
},
|
|
235
|
+
"kit-duotone": {
|
|
236
|
+
fakd: "kit-duotone",
|
|
237
|
+
"fa-kit-duotone": "kit-duotone"
|
|
238
|
+
}
|
|
239
|
+
}, Pn = ["kit"], kn = {
|
|
240
|
+
kit: {
|
|
241
|
+
"fa-kit": "fak"
|
|
242
|
+
}
|
|
243
|
+
}, En = ["fak", "fakd"], In = {
|
|
244
|
+
kit: {
|
|
245
|
+
fak: "fa-kit"
|
|
246
|
+
}
|
|
247
|
+
}, ne = {
|
|
248
|
+
kit: {
|
|
249
|
+
kit: "fak"
|
|
250
|
+
},
|
|
251
|
+
"kit-duotone": {
|
|
252
|
+
"kit-duotone": "fakd"
|
|
253
|
+
}
|
|
254
|
+
}, at = {
|
|
255
|
+
GROUP: "duotone-group",
|
|
256
|
+
SWAP_OPACITY: "swap-opacity",
|
|
257
|
+
PRIMARY: "primary",
|
|
258
|
+
SECONDARY: "secondary"
|
|
259
|
+
}, Cn = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], Nn = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], _n = {
|
|
260
|
+
"Font Awesome Kit": {
|
|
261
|
+
400: "fak",
|
|
262
|
+
normal: "fak"
|
|
263
|
+
},
|
|
264
|
+
"Font Awesome Kit Duotone": {
|
|
265
|
+
400: "fakd",
|
|
266
|
+
normal: "fakd"
|
|
267
|
+
}
|
|
268
|
+
}, Fn = {
|
|
269
|
+
classic: {
|
|
270
|
+
"fa-brands": "fab",
|
|
271
|
+
"fa-duotone": "fad",
|
|
272
|
+
"fa-light": "fal",
|
|
273
|
+
"fa-regular": "far",
|
|
274
|
+
"fa-solid": "fas",
|
|
275
|
+
"fa-thin": "fat"
|
|
276
|
+
},
|
|
277
|
+
duotone: {
|
|
278
|
+
"fa-regular": "fadr",
|
|
279
|
+
"fa-light": "fadl",
|
|
280
|
+
"fa-thin": "fadt"
|
|
281
|
+
},
|
|
282
|
+
sharp: {
|
|
283
|
+
"fa-solid": "fass",
|
|
284
|
+
"fa-regular": "fasr",
|
|
285
|
+
"fa-light": "fasl",
|
|
286
|
+
"fa-thin": "fast"
|
|
287
|
+
},
|
|
288
|
+
"sharp-duotone": {
|
|
289
|
+
"fa-solid": "fasds",
|
|
290
|
+
"fa-regular": "fasdr",
|
|
291
|
+
"fa-light": "fasdl",
|
|
292
|
+
"fa-thin": "fasdt"
|
|
293
|
+
}
|
|
294
|
+
}, Tn = {
|
|
295
|
+
classic: ["fas", "far", "fal", "fat", "fad"],
|
|
296
|
+
duotone: ["fadr", "fadl", "fadt"],
|
|
297
|
+
sharp: ["fass", "fasr", "fasl", "fast"],
|
|
298
|
+
"sharp-duotone": ["fasds", "fasdr", "fasdl", "fasdt"]
|
|
299
|
+
}, xt = {
|
|
300
|
+
classic: {
|
|
301
|
+
fab: "fa-brands",
|
|
302
|
+
fad: "fa-duotone",
|
|
303
|
+
fal: "fa-light",
|
|
304
|
+
far: "fa-regular",
|
|
305
|
+
fas: "fa-solid",
|
|
306
|
+
fat: "fa-thin"
|
|
307
|
+
},
|
|
308
|
+
duotone: {
|
|
309
|
+
fadr: "fa-regular",
|
|
310
|
+
fadl: "fa-light",
|
|
311
|
+
fadt: "fa-thin"
|
|
312
|
+
},
|
|
313
|
+
sharp: {
|
|
314
|
+
fass: "fa-solid",
|
|
315
|
+
fasr: "fa-regular",
|
|
316
|
+
fasl: "fa-light",
|
|
317
|
+
fast: "fa-thin"
|
|
318
|
+
},
|
|
319
|
+
"sharp-duotone": {
|
|
320
|
+
fasds: "fa-solid",
|
|
321
|
+
fasdr: "fa-regular",
|
|
322
|
+
fasdl: "fa-light",
|
|
323
|
+
fasdt: "fa-thin"
|
|
324
|
+
}
|
|
325
|
+
}, Mn = ["fa-solid", "fa-regular", "fa-light", "fa-thin", "fa-duotone", "fa-brands"], At = ["fa", "fas", "far", "fal", "fat", "fad", "fadr", "fadl", "fadt", "fab", "fass", "fasr", "fasl", "fast", "fasds", "fasdr", "fasdl", "fasdt", ...Cn, ...Mn], Ln = ["solid", "regular", "light", "thin", "duotone", "brands"], Me = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], Dn = Me.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), zn = [...Object.keys(Tn), ...Ln, "2xs", "xs", "sm", "lg", "xl", "2xl", "beat", "border", "fade", "beat-fade", "bounce", "flip-both", "flip-horizontal", "flip-vertical", "flip", "fw", "inverse", "layers-counter", "layers-text", "layers", "li", "pull-left", "pull-right", "pulse", "rotate-180", "rotate-270", "rotate-90", "rotate-by", "shake", "spin-pulse", "spin-reverse", "spin", "stack-1x", "stack-2x", "stack", "ul", at.GROUP, at.SWAP_OPACITY, at.PRIMARY, at.SECONDARY].concat(Me.map((t) => "".concat(t, "x"))).concat(Dn.map((t) => "w-".concat(t))), jn = {
|
|
326
|
+
"Font Awesome 5 Free": {
|
|
327
|
+
900: "fas",
|
|
328
|
+
400: "far"
|
|
329
|
+
},
|
|
330
|
+
"Font Awesome 5 Pro": {
|
|
331
|
+
900: "fas",
|
|
332
|
+
400: "far",
|
|
333
|
+
normal: "far",
|
|
334
|
+
300: "fal"
|
|
335
|
+
},
|
|
336
|
+
"Font Awesome 5 Brands": {
|
|
337
|
+
400: "fab",
|
|
338
|
+
normal: "fab"
|
|
339
|
+
},
|
|
340
|
+
"Font Awesome 5 Duotone": {
|
|
341
|
+
900: "fad"
|
|
342
|
+
}
|
|
343
|
+
};
|
|
344
|
+
const F = "___FONT_AWESOME___", wt = 16, Le = "fa", De = "svg-inline--fa", U = "data-fa-i2svg", St = "data-fa-pseudo-element", Rn = "data-fa-pseudo-element-pending", Yt = "data-prefix", Ut = "data-icon", ae = "fontawesome-i2svg", Yn = "async", Un = ["HTML", "HEAD", "STYLE", "SCRIPT"], ze = (() => {
|
|
345
|
+
try {
|
|
346
|
+
return process.env.NODE_ENV === "production";
|
|
347
|
+
} catch {
|
|
348
|
+
return !1;
|
|
349
|
+
}
|
|
350
|
+
})();
|
|
351
|
+
function J(t) {
|
|
352
|
+
return new Proxy(t, {
|
|
353
|
+
get(e, n) {
|
|
354
|
+
return n in e ? e[n] : e[A];
|
|
355
|
+
}
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
const je = l({}, _e);
|
|
359
|
+
je[A] = l(l(l(l({}, {
|
|
360
|
+
"fa-duotone": "duotone"
|
|
361
|
+
}), _e[A]), ee.kit), ee["kit-duotone"]);
|
|
362
|
+
const Wn = J(je), Ot = l({}, Sn);
|
|
363
|
+
Ot[A] = l(l(l(l({}, {
|
|
364
|
+
duotone: "fad"
|
|
365
|
+
}), Ot[A]), ne.kit), ne["kit-duotone"]);
|
|
366
|
+
const re = J(Ot), Pt = l({}, xt);
|
|
367
|
+
Pt[A] = l(l({}, Pt[A]), In.kit);
|
|
368
|
+
const Wt = J(Pt), kt = l({}, Fn);
|
|
369
|
+
kt[A] = l(l({}, kt[A]), kn.kit);
|
|
370
|
+
J(kt);
|
|
371
|
+
const Bn = pn, Re = "fa-layers-text", Hn = hn, Gn = l({}, xn);
|
|
372
|
+
J(Gn);
|
|
373
|
+
const $n = ["class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask"], pt = yn, Xn = [...Pn, ...zn], V = D.FontAwesomeConfig || {};
|
|
374
|
+
function Vn(t) {
|
|
375
|
+
var e = y.querySelector("script[" + t + "]");
|
|
376
|
+
if (e)
|
|
377
|
+
return e.getAttribute(t);
|
|
378
|
+
}
|
|
379
|
+
function Kn(t) {
|
|
380
|
+
return t === "" ? !0 : t === "false" ? !1 : t === "true" ? !0 : t;
|
|
381
|
+
}
|
|
382
|
+
y && typeof y.querySelector == "function" && [["data-family-prefix", "familyPrefix"], ["data-css-prefix", "cssPrefix"], ["data-family-default", "familyDefault"], ["data-style-default", "styleDefault"], ["data-replacement-class", "replacementClass"], ["data-auto-replace-svg", "autoReplaceSvg"], ["data-auto-add-css", "autoAddCss"], ["data-auto-a11y", "autoA11y"], ["data-search-pseudo-elements", "searchPseudoElements"], ["data-observe-mutations", "observeMutations"], ["data-mutate-approach", "mutateApproach"], ["data-keep-original-source", "keepOriginalSource"], ["data-measure-performance", "measurePerformance"], ["data-show-missing-icons", "showMissingIcons"]].forEach((e) => {
|
|
383
|
+
let [n, a] = e;
|
|
384
|
+
const r = Kn(Vn(n));
|
|
385
|
+
r != null && (V[a] = r);
|
|
386
|
+
});
|
|
387
|
+
const Ye = {
|
|
388
|
+
styleDefault: "solid",
|
|
389
|
+
familyDefault: A,
|
|
390
|
+
cssPrefix: Le,
|
|
391
|
+
replacementClass: De,
|
|
392
|
+
autoReplaceSvg: !0,
|
|
393
|
+
autoAddCss: !0,
|
|
394
|
+
autoA11y: !0,
|
|
395
|
+
searchPseudoElements: !1,
|
|
396
|
+
observeMutations: !0,
|
|
397
|
+
mutateApproach: "async",
|
|
398
|
+
keepOriginalSource: !0,
|
|
399
|
+
measurePerformance: !1,
|
|
400
|
+
showMissingIcons: !0
|
|
401
|
+
};
|
|
402
|
+
V.familyPrefix && (V.cssPrefix = V.familyPrefix);
|
|
403
|
+
const G = l(l({}, Ye), V);
|
|
404
|
+
G.autoReplaceSvg || (G.observeMutations = !1);
|
|
405
|
+
const u = {};
|
|
406
|
+
Object.keys(Ye).forEach((t) => {
|
|
407
|
+
Object.defineProperty(u, t, {
|
|
408
|
+
enumerable: !0,
|
|
409
|
+
set: function(e) {
|
|
410
|
+
G[t] = e, K.forEach((n) => n(u));
|
|
411
|
+
},
|
|
412
|
+
get: function() {
|
|
413
|
+
return G[t];
|
|
414
|
+
}
|
|
415
|
+
});
|
|
416
|
+
});
|
|
417
|
+
Object.defineProperty(u, "familyPrefix", {
|
|
418
|
+
enumerable: !0,
|
|
419
|
+
set: function(t) {
|
|
420
|
+
G.cssPrefix = t, K.forEach((e) => e(u));
|
|
421
|
+
},
|
|
422
|
+
get: function() {
|
|
423
|
+
return G.cssPrefix;
|
|
424
|
+
}
|
|
425
|
+
});
|
|
426
|
+
D.FontAwesomeConfig = u;
|
|
427
|
+
const K = [];
|
|
428
|
+
function qn(t) {
|
|
429
|
+
return K.push(t), () => {
|
|
430
|
+
K.splice(K.indexOf(t), 1);
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
const L = wt, N = {
|
|
434
|
+
size: 16,
|
|
435
|
+
x: 0,
|
|
436
|
+
y: 0,
|
|
437
|
+
rotate: 0,
|
|
438
|
+
flipX: !1,
|
|
439
|
+
flipY: !1
|
|
440
|
+
};
|
|
441
|
+
function Qn(t) {
|
|
442
|
+
if (!t || !M)
|
|
443
|
+
return;
|
|
444
|
+
const e = y.createElement("style");
|
|
445
|
+
e.setAttribute("type", "text/css"), e.innerHTML = t;
|
|
446
|
+
const n = y.head.childNodes;
|
|
447
|
+
let a = null;
|
|
448
|
+
for (let r = n.length - 1; r > -1; r--) {
|
|
449
|
+
const i = n[r], o = (i.tagName || "").toUpperCase();
|
|
450
|
+
["STYLE", "LINK"].indexOf(o) > -1 && (a = i);
|
|
451
|
+
}
|
|
452
|
+
return y.head.insertBefore(e, a), t;
|
|
453
|
+
}
|
|
454
|
+
const Zn = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
455
|
+
function Q() {
|
|
456
|
+
let t = 12, e = "";
|
|
457
|
+
for (; t-- > 0; )
|
|
458
|
+
e += Zn[Math.random() * 62 | 0];
|
|
459
|
+
return e;
|
|
460
|
+
}
|
|
461
|
+
function $(t) {
|
|
462
|
+
const e = [];
|
|
463
|
+
for (let n = (t || []).length >>> 0; n--; )
|
|
464
|
+
e[n] = t[n];
|
|
465
|
+
return e;
|
|
466
|
+
}
|
|
467
|
+
function Bt(t) {
|
|
468
|
+
return t.classList ? $(t.classList) : (t.getAttribute("class") || "").split(" ").filter((e) => e);
|
|
469
|
+
}
|
|
470
|
+
function Ue(t) {
|
|
471
|
+
return "".concat(t).replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(/</g, "<").replace(/>/g, ">");
|
|
472
|
+
}
|
|
473
|
+
function Jn(t) {
|
|
474
|
+
return Object.keys(t || {}).reduce((e, n) => e + "".concat(n, '="').concat(Ue(t[n]), '" '), "").trim();
|
|
475
|
+
}
|
|
476
|
+
function ut(t) {
|
|
477
|
+
return Object.keys(t || {}).reduce((e, n) => e + "".concat(n, ": ").concat(t[n].trim(), ";"), "");
|
|
478
|
+
}
|
|
479
|
+
function Ht(t) {
|
|
480
|
+
return t.size !== N.size || t.x !== N.x || t.y !== N.y || t.rotate !== N.rotate || t.flipX || t.flipY;
|
|
481
|
+
}
|
|
482
|
+
function ta(t) {
|
|
483
|
+
let {
|
|
484
|
+
transform: e,
|
|
485
|
+
containerWidth: n,
|
|
486
|
+
iconWidth: a
|
|
487
|
+
} = t;
|
|
488
|
+
const r = {
|
|
489
|
+
transform: "translate(".concat(n / 2, " 256)")
|
|
490
|
+
}, i = "translate(".concat(e.x * 32, ", ").concat(e.y * 32, ") "), o = "scale(".concat(e.size / 16 * (e.flipX ? -1 : 1), ", ").concat(e.size / 16 * (e.flipY ? -1 : 1), ") "), s = "rotate(".concat(e.rotate, " 0 0)"), c = {
|
|
491
|
+
transform: "".concat(i, " ").concat(o, " ").concat(s)
|
|
492
|
+
}, f = {
|
|
493
|
+
transform: "translate(".concat(a / 2 * -1, " -256)")
|
|
494
|
+
};
|
|
495
|
+
return {
|
|
496
|
+
outer: r,
|
|
497
|
+
inner: c,
|
|
498
|
+
path: f
|
|
499
|
+
};
|
|
500
|
+
}
|
|
501
|
+
function ea(t) {
|
|
502
|
+
let {
|
|
503
|
+
transform: e,
|
|
504
|
+
width: n = wt,
|
|
505
|
+
height: a = wt,
|
|
506
|
+
startCentered: r = !1
|
|
507
|
+
} = t, i = "";
|
|
508
|
+
return r && Ne ? i += "translate(".concat(e.x / L - n / 2, "em, ").concat(e.y / L - a / 2, "em) ") : r ? i += "translate(calc(-50% + ".concat(e.x / L, "em), calc(-50% + ").concat(e.y / L, "em)) ") : i += "translate(".concat(e.x / L, "em, ").concat(e.y / L, "em) "), i += "scale(".concat(e.size / L * (e.flipX ? -1 : 1), ", ").concat(e.size / L * (e.flipY ? -1 : 1), ") "), i += "rotate(".concat(e.rotate, "deg) "), i;
|
|
509
|
+
}
|
|
510
|
+
var na = `:root, :host {
|
|
511
|
+
--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
|
|
512
|
+
--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
|
|
513
|
+
--fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
|
|
514
|
+
--fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
|
|
515
|
+
--fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
|
|
516
|
+
--fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";
|
|
517
|
+
--fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";
|
|
518
|
+
--fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";
|
|
519
|
+
--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
|
|
520
|
+
--fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
|
|
521
|
+
--fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
|
|
522
|
+
--fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
|
|
523
|
+
--fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";
|
|
524
|
+
--fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";
|
|
525
|
+
--fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";
|
|
526
|
+
--fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";
|
|
527
|
+
--fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone";
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
531
|
+
overflow: visible;
|
|
532
|
+
box-sizing: content-box;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.svg-inline--fa {
|
|
536
|
+
display: var(--fa-display, inline-block);
|
|
537
|
+
height: 1em;
|
|
538
|
+
overflow: visible;
|
|
539
|
+
vertical-align: -0.125em;
|
|
540
|
+
}
|
|
541
|
+
.svg-inline--fa.fa-2xs {
|
|
542
|
+
vertical-align: 0.1em;
|
|
543
|
+
}
|
|
544
|
+
.svg-inline--fa.fa-xs {
|
|
545
|
+
vertical-align: 0em;
|
|
546
|
+
}
|
|
547
|
+
.svg-inline--fa.fa-sm {
|
|
548
|
+
vertical-align: -0.0714285705em;
|
|
549
|
+
}
|
|
550
|
+
.svg-inline--fa.fa-lg {
|
|
551
|
+
vertical-align: -0.2em;
|
|
552
|
+
}
|
|
553
|
+
.svg-inline--fa.fa-xl {
|
|
554
|
+
vertical-align: -0.25em;
|
|
555
|
+
}
|
|
556
|
+
.svg-inline--fa.fa-2xl {
|
|
557
|
+
vertical-align: -0.3125em;
|
|
558
|
+
}
|
|
559
|
+
.svg-inline--fa.fa-pull-left {
|
|
560
|
+
margin-right: var(--fa-pull-margin, 0.3em);
|
|
561
|
+
width: auto;
|
|
562
|
+
}
|
|
563
|
+
.svg-inline--fa.fa-pull-right {
|
|
564
|
+
margin-left: var(--fa-pull-margin, 0.3em);
|
|
565
|
+
width: auto;
|
|
566
|
+
}
|
|
567
|
+
.svg-inline--fa.fa-li {
|
|
568
|
+
width: var(--fa-li-width, 2em);
|
|
569
|
+
top: 0.25em;
|
|
570
|
+
}
|
|
571
|
+
.svg-inline--fa.fa-fw {
|
|
572
|
+
width: var(--fa-fw-width, 1.25em);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.fa-layers svg.svg-inline--fa {
|
|
576
|
+
bottom: 0;
|
|
577
|
+
left: 0;
|
|
578
|
+
margin: auto;
|
|
579
|
+
position: absolute;
|
|
580
|
+
right: 0;
|
|
581
|
+
top: 0;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.fa-layers-counter, .fa-layers-text {
|
|
585
|
+
display: inline-block;
|
|
586
|
+
position: absolute;
|
|
587
|
+
text-align: center;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.fa-layers {
|
|
591
|
+
display: inline-block;
|
|
592
|
+
height: 1em;
|
|
593
|
+
position: relative;
|
|
594
|
+
text-align: center;
|
|
595
|
+
vertical-align: -0.125em;
|
|
596
|
+
width: 1em;
|
|
597
|
+
}
|
|
598
|
+
.fa-layers svg.svg-inline--fa {
|
|
599
|
+
transform-origin: center center;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.fa-layers-text {
|
|
603
|
+
left: 50%;
|
|
604
|
+
top: 50%;
|
|
605
|
+
transform: translate(-50%, -50%);
|
|
606
|
+
transform-origin: center center;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.fa-layers-counter {
|
|
610
|
+
background-color: var(--fa-counter-background-color, #ff253a);
|
|
611
|
+
border-radius: var(--fa-counter-border-radius, 1em);
|
|
612
|
+
box-sizing: border-box;
|
|
613
|
+
color: var(--fa-inverse, #fff);
|
|
614
|
+
line-height: var(--fa-counter-line-height, 1);
|
|
615
|
+
max-width: var(--fa-counter-max-width, 5em);
|
|
616
|
+
min-width: var(--fa-counter-min-width, 1.5em);
|
|
617
|
+
overflow: hidden;
|
|
618
|
+
padding: var(--fa-counter-padding, 0.25em 0.5em);
|
|
619
|
+
right: var(--fa-right, 0);
|
|
620
|
+
text-overflow: ellipsis;
|
|
621
|
+
top: var(--fa-top, 0);
|
|
622
|
+
transform: scale(var(--fa-counter-scale, 0.25));
|
|
623
|
+
transform-origin: top right;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.fa-layers-bottom-right {
|
|
627
|
+
bottom: var(--fa-bottom, 0);
|
|
628
|
+
right: var(--fa-right, 0);
|
|
629
|
+
top: auto;
|
|
630
|
+
transform: scale(var(--fa-layers-scale, 0.25));
|
|
631
|
+
transform-origin: bottom right;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.fa-layers-bottom-left {
|
|
635
|
+
bottom: var(--fa-bottom, 0);
|
|
636
|
+
left: var(--fa-left, 0);
|
|
637
|
+
right: auto;
|
|
638
|
+
top: auto;
|
|
639
|
+
transform: scale(var(--fa-layers-scale, 0.25));
|
|
640
|
+
transform-origin: bottom left;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.fa-layers-top-right {
|
|
644
|
+
top: var(--fa-top, 0);
|
|
645
|
+
right: var(--fa-right, 0);
|
|
646
|
+
transform: scale(var(--fa-layers-scale, 0.25));
|
|
647
|
+
transform-origin: top right;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.fa-layers-top-left {
|
|
651
|
+
left: var(--fa-left, 0);
|
|
652
|
+
right: auto;
|
|
653
|
+
top: var(--fa-top, 0);
|
|
654
|
+
transform: scale(var(--fa-layers-scale, 0.25));
|
|
655
|
+
transform-origin: top left;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.fa-1x {
|
|
659
|
+
font-size: 1em;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.fa-2x {
|
|
663
|
+
font-size: 2em;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.fa-3x {
|
|
667
|
+
font-size: 3em;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.fa-4x {
|
|
671
|
+
font-size: 4em;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.fa-5x {
|
|
675
|
+
font-size: 5em;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.fa-6x {
|
|
679
|
+
font-size: 6em;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.fa-7x {
|
|
683
|
+
font-size: 7em;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.fa-8x {
|
|
687
|
+
font-size: 8em;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.fa-9x {
|
|
691
|
+
font-size: 9em;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.fa-10x {
|
|
695
|
+
font-size: 10em;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.fa-2xs {
|
|
699
|
+
font-size: 0.625em;
|
|
700
|
+
line-height: 0.1em;
|
|
701
|
+
vertical-align: 0.225em;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.fa-xs {
|
|
705
|
+
font-size: 0.75em;
|
|
706
|
+
line-height: 0.0833333337em;
|
|
707
|
+
vertical-align: 0.125em;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.fa-sm {
|
|
711
|
+
font-size: 0.875em;
|
|
712
|
+
line-height: 0.0714285718em;
|
|
713
|
+
vertical-align: 0.0535714295em;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.fa-lg {
|
|
717
|
+
font-size: 1.25em;
|
|
718
|
+
line-height: 0.05em;
|
|
719
|
+
vertical-align: -0.075em;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.fa-xl {
|
|
723
|
+
font-size: 1.5em;
|
|
724
|
+
line-height: 0.0416666682em;
|
|
725
|
+
vertical-align: -0.125em;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.fa-2xl {
|
|
729
|
+
font-size: 2em;
|
|
730
|
+
line-height: 0.03125em;
|
|
731
|
+
vertical-align: -0.1875em;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.fa-fw {
|
|
735
|
+
text-align: center;
|
|
736
|
+
width: 1.25em;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.fa-ul {
|
|
740
|
+
list-style-type: none;
|
|
741
|
+
margin-left: var(--fa-li-margin, 2.5em);
|
|
742
|
+
padding-left: 0;
|
|
743
|
+
}
|
|
744
|
+
.fa-ul > li {
|
|
745
|
+
position: relative;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.fa-li {
|
|
749
|
+
left: calc(-1 * var(--fa-li-width, 2em));
|
|
750
|
+
position: absolute;
|
|
751
|
+
text-align: center;
|
|
752
|
+
width: var(--fa-li-width, 2em);
|
|
753
|
+
line-height: inherit;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.fa-border {
|
|
757
|
+
border-color: var(--fa-border-color, #eee);
|
|
758
|
+
border-radius: var(--fa-border-radius, 0.1em);
|
|
759
|
+
border-style: var(--fa-border-style, solid);
|
|
760
|
+
border-width: var(--fa-border-width, 0.08em);
|
|
761
|
+
padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.fa-pull-left {
|
|
765
|
+
float: left;
|
|
766
|
+
margin-right: var(--fa-pull-margin, 0.3em);
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.fa-pull-right {
|
|
770
|
+
float: right;
|
|
771
|
+
margin-left: var(--fa-pull-margin, 0.3em);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.fa-beat {
|
|
775
|
+
animation-name: fa-beat;
|
|
776
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
777
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
778
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
779
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
780
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.fa-bounce {
|
|
784
|
+
animation-name: fa-bounce;
|
|
785
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
786
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
787
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
788
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
789
|
+
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.fa-fade {
|
|
793
|
+
animation-name: fa-fade;
|
|
794
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
795
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
796
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
797
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
798
|
+
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.fa-beat-fade {
|
|
802
|
+
animation-name: fa-beat-fade;
|
|
803
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
804
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
805
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
806
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
807
|
+
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.fa-flip {
|
|
811
|
+
animation-name: fa-flip;
|
|
812
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
813
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
814
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
815
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
816
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.fa-shake {
|
|
820
|
+
animation-name: fa-shake;
|
|
821
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
822
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
823
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
824
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
825
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.fa-spin {
|
|
829
|
+
animation-name: fa-spin;
|
|
830
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
831
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
832
|
+
animation-duration: var(--fa-animation-duration, 2s);
|
|
833
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
834
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.fa-spin-reverse {
|
|
838
|
+
--fa-animation-direction: reverse;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.fa-pulse,
|
|
842
|
+
.fa-spin-pulse {
|
|
843
|
+
animation-name: fa-spin;
|
|
844
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
845
|
+
animation-duration: var(--fa-animation-duration, 1s);
|
|
846
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
847
|
+
animation-timing-function: var(--fa-animation-timing, steps(8));
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
@media (prefers-reduced-motion: reduce) {
|
|
851
|
+
.fa-beat,
|
|
852
|
+
.fa-bounce,
|
|
853
|
+
.fa-fade,
|
|
854
|
+
.fa-beat-fade,
|
|
855
|
+
.fa-flip,
|
|
856
|
+
.fa-pulse,
|
|
857
|
+
.fa-shake,
|
|
858
|
+
.fa-spin,
|
|
859
|
+
.fa-spin-pulse {
|
|
860
|
+
animation-delay: -1ms;
|
|
861
|
+
animation-duration: 1ms;
|
|
862
|
+
animation-iteration-count: 1;
|
|
863
|
+
transition-delay: 0s;
|
|
864
|
+
transition-duration: 0s;
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
@keyframes fa-beat {
|
|
868
|
+
0%, 90% {
|
|
869
|
+
transform: scale(1);
|
|
870
|
+
}
|
|
871
|
+
45% {
|
|
872
|
+
transform: scale(var(--fa-beat-scale, 1.25));
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
@keyframes fa-bounce {
|
|
876
|
+
0% {
|
|
877
|
+
transform: scale(1, 1) translateY(0);
|
|
878
|
+
}
|
|
879
|
+
10% {
|
|
880
|
+
transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
|
|
881
|
+
}
|
|
882
|
+
30% {
|
|
883
|
+
transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
|
|
884
|
+
}
|
|
885
|
+
50% {
|
|
886
|
+
transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
|
|
887
|
+
}
|
|
888
|
+
57% {
|
|
889
|
+
transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
|
|
890
|
+
}
|
|
891
|
+
64% {
|
|
892
|
+
transform: scale(1, 1) translateY(0);
|
|
893
|
+
}
|
|
894
|
+
100% {
|
|
895
|
+
transform: scale(1, 1) translateY(0);
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
@keyframes fa-fade {
|
|
899
|
+
50% {
|
|
900
|
+
opacity: var(--fa-fade-opacity, 0.4);
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
@keyframes fa-beat-fade {
|
|
904
|
+
0%, 100% {
|
|
905
|
+
opacity: var(--fa-beat-fade-opacity, 0.4);
|
|
906
|
+
transform: scale(1);
|
|
907
|
+
}
|
|
908
|
+
50% {
|
|
909
|
+
opacity: 1;
|
|
910
|
+
transform: scale(var(--fa-beat-fade-scale, 1.125));
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
@keyframes fa-flip {
|
|
914
|
+
50% {
|
|
915
|
+
transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
@keyframes fa-shake {
|
|
919
|
+
0% {
|
|
920
|
+
transform: rotate(-15deg);
|
|
921
|
+
}
|
|
922
|
+
4% {
|
|
923
|
+
transform: rotate(15deg);
|
|
924
|
+
}
|
|
925
|
+
8%, 24% {
|
|
926
|
+
transform: rotate(-18deg);
|
|
927
|
+
}
|
|
928
|
+
12%, 28% {
|
|
929
|
+
transform: rotate(18deg);
|
|
930
|
+
}
|
|
931
|
+
16% {
|
|
932
|
+
transform: rotate(-22deg);
|
|
933
|
+
}
|
|
934
|
+
20% {
|
|
935
|
+
transform: rotate(22deg);
|
|
936
|
+
}
|
|
937
|
+
32% {
|
|
938
|
+
transform: rotate(-12deg);
|
|
939
|
+
}
|
|
940
|
+
36% {
|
|
941
|
+
transform: rotate(12deg);
|
|
942
|
+
}
|
|
943
|
+
40%, 100% {
|
|
944
|
+
transform: rotate(0deg);
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
@keyframes fa-spin {
|
|
948
|
+
0% {
|
|
949
|
+
transform: rotate(0deg);
|
|
950
|
+
}
|
|
951
|
+
100% {
|
|
952
|
+
transform: rotate(360deg);
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
.fa-rotate-90 {
|
|
956
|
+
transform: rotate(90deg);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.fa-rotate-180 {
|
|
960
|
+
transform: rotate(180deg);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.fa-rotate-270 {
|
|
964
|
+
transform: rotate(270deg);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.fa-flip-horizontal {
|
|
968
|
+
transform: scale(-1, 1);
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.fa-flip-vertical {
|
|
972
|
+
transform: scale(1, -1);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.fa-flip-both,
|
|
976
|
+
.fa-flip-horizontal.fa-flip-vertical {
|
|
977
|
+
transform: scale(-1, -1);
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.fa-rotate-by {
|
|
981
|
+
transform: rotate(var(--fa-rotate-angle, 0));
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.fa-stack {
|
|
985
|
+
display: inline-block;
|
|
986
|
+
vertical-align: middle;
|
|
987
|
+
height: 2em;
|
|
988
|
+
position: relative;
|
|
989
|
+
width: 2.5em;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.fa-stack-1x,
|
|
993
|
+
.fa-stack-2x {
|
|
994
|
+
bottom: 0;
|
|
995
|
+
left: 0;
|
|
996
|
+
margin: auto;
|
|
997
|
+
position: absolute;
|
|
998
|
+
right: 0;
|
|
999
|
+
top: 0;
|
|
1000
|
+
z-index: var(--fa-stack-z-index, auto);
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.svg-inline--fa.fa-stack-1x {
|
|
1004
|
+
height: 1em;
|
|
1005
|
+
width: 1.25em;
|
|
1006
|
+
}
|
|
1007
|
+
.svg-inline--fa.fa-stack-2x {
|
|
1008
|
+
height: 2em;
|
|
1009
|
+
width: 2.5em;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.fa-inverse {
|
|
1013
|
+
color: var(--fa-inverse, #fff);
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.sr-only,
|
|
1017
|
+
.fa-sr-only {
|
|
1018
|
+
position: absolute;
|
|
1019
|
+
width: 1px;
|
|
1020
|
+
height: 1px;
|
|
1021
|
+
padding: 0;
|
|
1022
|
+
margin: -1px;
|
|
1023
|
+
overflow: hidden;
|
|
1024
|
+
clip: rect(0, 0, 0, 0);
|
|
1025
|
+
white-space: nowrap;
|
|
1026
|
+
border-width: 0;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.sr-only-focusable:not(:focus),
|
|
1030
|
+
.fa-sr-only-focusable:not(:focus) {
|
|
1031
|
+
position: absolute;
|
|
1032
|
+
width: 1px;
|
|
1033
|
+
height: 1px;
|
|
1034
|
+
padding: 0;
|
|
1035
|
+
margin: -1px;
|
|
1036
|
+
overflow: hidden;
|
|
1037
|
+
clip: rect(0, 0, 0, 0);
|
|
1038
|
+
white-space: nowrap;
|
|
1039
|
+
border-width: 0;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.svg-inline--fa .fa-primary {
|
|
1043
|
+
fill: var(--fa-primary-color, currentColor);
|
|
1044
|
+
opacity: var(--fa-primary-opacity, 1);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.svg-inline--fa .fa-secondary {
|
|
1048
|
+
fill: var(--fa-secondary-color, currentColor);
|
|
1049
|
+
opacity: var(--fa-secondary-opacity, 0.4);
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.svg-inline--fa.fa-swap-opacity .fa-primary {
|
|
1053
|
+
opacity: var(--fa-secondary-opacity, 0.4);
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.svg-inline--fa.fa-swap-opacity .fa-secondary {
|
|
1057
|
+
opacity: var(--fa-primary-opacity, 1);
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.svg-inline--fa mask .fa-primary,
|
|
1061
|
+
.svg-inline--fa mask .fa-secondary {
|
|
1062
|
+
fill: black;
|
|
1063
|
+
}`;
|
|
1064
|
+
function We() {
|
|
1065
|
+
const t = Le, e = De, n = u.cssPrefix, a = u.replacementClass;
|
|
1066
|
+
let r = na;
|
|
1067
|
+
if (n !== t || a !== e) {
|
|
1068
|
+
const i = new RegExp("\\.".concat(t, "\\-"), "g"), o = new RegExp("\\--".concat(t, "\\-"), "g"), s = new RegExp("\\.".concat(e), "g");
|
|
1069
|
+
r = r.replace(i, ".".concat(n, "-")).replace(o, "--".concat(n, "-")).replace(s, ".".concat(a));
|
|
1070
|
+
}
|
|
1071
|
+
return r;
|
|
1072
|
+
}
|
|
1073
|
+
let ie = !1;
|
|
1074
|
+
function ht() {
|
|
1075
|
+
u.autoAddCss && !ie && (Qn(We()), ie = !0);
|
|
1076
|
+
}
|
|
1077
|
+
var aa = {
|
|
1078
|
+
mixout() {
|
|
1079
|
+
return {
|
|
1080
|
+
dom: {
|
|
1081
|
+
css: We,
|
|
1082
|
+
insertCss: ht
|
|
1083
|
+
}
|
|
1084
|
+
};
|
|
1085
|
+
},
|
|
1086
|
+
hooks() {
|
|
1087
|
+
return {
|
|
1088
|
+
beforeDOMElementCreation() {
|
|
1089
|
+
ht();
|
|
1090
|
+
},
|
|
1091
|
+
beforeI2svg() {
|
|
1092
|
+
ht();
|
|
1093
|
+
}
|
|
1094
|
+
};
|
|
1095
|
+
}
|
|
1096
|
+
};
|
|
1097
|
+
const T = D || {};
|
|
1098
|
+
T[F] || (T[F] = {});
|
|
1099
|
+
T[F].styles || (T[F].styles = {});
|
|
1100
|
+
T[F].hooks || (T[F].hooks = {});
|
|
1101
|
+
T[F].shims || (T[F].shims = []);
|
|
1102
|
+
var _ = T[F];
|
|
1103
|
+
const Be = [], He = function() {
|
|
1104
|
+
y.removeEventListener("DOMContentLoaded", He), ot = 1, Be.map((t) => t());
|
|
1105
|
+
};
|
|
1106
|
+
let ot = !1;
|
|
1107
|
+
M && (ot = (y.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(y.readyState), ot || y.addEventListener("DOMContentLoaded", He));
|
|
1108
|
+
function ra(t) {
|
|
1109
|
+
M && (ot ? setTimeout(t, 0) : Be.push(t));
|
|
1110
|
+
}
|
|
1111
|
+
function tt(t) {
|
|
1112
|
+
const {
|
|
1113
|
+
tag: e,
|
|
1114
|
+
attributes: n = {},
|
|
1115
|
+
children: a = []
|
|
1116
|
+
} = t;
|
|
1117
|
+
return typeof t == "string" ? Ue(t) : "<".concat(e, " ").concat(Jn(n), ">").concat(a.map(tt).join(""), "</").concat(e, ">");
|
|
1118
|
+
}
|
|
1119
|
+
function oe(t, e, n) {
|
|
1120
|
+
if (t && t[e] && t[e][n])
|
|
1121
|
+
return {
|
|
1122
|
+
prefix: e,
|
|
1123
|
+
iconName: n,
|
|
1124
|
+
icon: t[e][n]
|
|
1125
|
+
};
|
|
1126
|
+
}
|
|
1127
|
+
var yt = function(e, n, a, r) {
|
|
1128
|
+
var i = Object.keys(e), o = i.length, s = n, c, f, d;
|
|
1129
|
+
for (a === void 0 ? (c = 1, d = e[i[0]]) : (c = 0, d = a); c < o; c++)
|
|
1130
|
+
f = i[c], d = s(d, e[f], f, e);
|
|
1131
|
+
return d;
|
|
1132
|
+
};
|
|
1133
|
+
function ia(t) {
|
|
1134
|
+
const e = [];
|
|
1135
|
+
let n = 0;
|
|
1136
|
+
const a = t.length;
|
|
1137
|
+
for (; n < a; ) {
|
|
1138
|
+
const r = t.charCodeAt(n++);
|
|
1139
|
+
if (r >= 55296 && r <= 56319 && n < a) {
|
|
1140
|
+
const i = t.charCodeAt(n++);
|
|
1141
|
+
(i & 64512) == 56320 ? e.push(((r & 1023) << 10) + (i & 1023) + 65536) : (e.push(r), n--);
|
|
1142
|
+
} else
|
|
1143
|
+
e.push(r);
|
|
1144
|
+
}
|
|
1145
|
+
return e;
|
|
1146
|
+
}
|
|
1147
|
+
function Et(t) {
|
|
1148
|
+
const e = ia(t);
|
|
1149
|
+
return e.length === 1 ? e[0].toString(16) : null;
|
|
1150
|
+
}
|
|
1151
|
+
function oa(t, e) {
|
|
1152
|
+
const n = t.length;
|
|
1153
|
+
let a = t.charCodeAt(e), r;
|
|
1154
|
+
return a >= 55296 && a <= 56319 && n > e + 1 && (r = t.charCodeAt(e + 1), r >= 56320 && r <= 57343) ? (a - 55296) * 1024 + r - 56320 + 65536 : a;
|
|
1155
|
+
}
|
|
1156
|
+
function se(t) {
|
|
1157
|
+
return Object.keys(t).reduce((e, n) => {
|
|
1158
|
+
const a = t[n];
|
|
1159
|
+
return !!a.icon ? e[a.iconName] = a.icon : e[n] = a, e;
|
|
1160
|
+
}, {});
|
|
1161
|
+
}
|
|
1162
|
+
function It(t, e) {
|
|
1163
|
+
let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
1164
|
+
const {
|
|
1165
|
+
skipHooks: a = !1
|
|
1166
|
+
} = n, r = se(e);
|
|
1167
|
+
typeof _.hooks.addPack == "function" && !a ? _.hooks.addPack(t, se(e)) : _.styles[t] = l(l({}, _.styles[t] || {}), r), t === "fas" && It("fa", e);
|
|
1168
|
+
}
|
|
1169
|
+
const {
|
|
1170
|
+
styles: Z,
|
|
1171
|
+
shims: sa
|
|
1172
|
+
} = _, Ge = Object.keys(Wt), la = Ge.reduce((t, e) => (t[e] = Object.keys(Wt[e]), t), {});
|
|
1173
|
+
let Gt = null, $e = {}, Xe = {}, Ve = {}, Ke = {}, qe = {};
|
|
1174
|
+
function fa(t) {
|
|
1175
|
+
return ~Xn.indexOf(t);
|
|
1176
|
+
}
|
|
1177
|
+
function ca(t, e) {
|
|
1178
|
+
const n = e.split("-"), a = n[0], r = n.slice(1).join("-");
|
|
1179
|
+
return a === t && r !== "" && !fa(r) ? r : null;
|
|
1180
|
+
}
|
|
1181
|
+
const Qe = () => {
|
|
1182
|
+
const t = (a) => yt(Z, (r, i, o) => (r[o] = yt(i, a, {}), r), {});
|
|
1183
|
+
$e = t((a, r, i) => (r[3] && (a[r[3]] = i), r[2] && r[2].filter((s) => typeof s == "number").forEach((s) => {
|
|
1184
|
+
a[s.toString(16)] = i;
|
|
1185
|
+
}), a)), Xe = t((a, r, i) => (a[i] = i, r[2] && r[2].filter((s) => typeof s == "string").forEach((s) => {
|
|
1186
|
+
a[s] = i;
|
|
1187
|
+
}), a)), qe = t((a, r, i) => {
|
|
1188
|
+
const o = r[2];
|
|
1189
|
+
return a[i] = i, o.forEach((s) => {
|
|
1190
|
+
a[s] = i;
|
|
1191
|
+
}), a;
|
|
1192
|
+
});
|
|
1193
|
+
const e = "far" in Z || u.autoFetchSvg, n = yt(sa, (a, r) => {
|
|
1194
|
+
const i = r[0];
|
|
1195
|
+
let o = r[1];
|
|
1196
|
+
const s = r[2];
|
|
1197
|
+
return o === "far" && !e && (o = "fas"), typeof i == "string" && (a.names[i] = {
|
|
1198
|
+
prefix: o,
|
|
1199
|
+
iconName: s
|
|
1200
|
+
}), typeof i == "number" && (a.unicodes[i.toString(16)] = {
|
|
1201
|
+
prefix: o,
|
|
1202
|
+
iconName: s
|
|
1203
|
+
}), a;
|
|
1204
|
+
}, {
|
|
1205
|
+
names: {},
|
|
1206
|
+
unicodes: {}
|
|
1207
|
+
});
|
|
1208
|
+
Ve = n.names, Ke = n.unicodes, Gt = dt(u.styleDefault, {
|
|
1209
|
+
family: u.familyDefault
|
|
1210
|
+
});
|
|
1211
|
+
};
|
|
1212
|
+
qn((t) => {
|
|
1213
|
+
Gt = dt(t.styleDefault, {
|
|
1214
|
+
family: u.familyDefault
|
|
1215
|
+
});
|
|
1216
|
+
});
|
|
1217
|
+
Qe();
|
|
1218
|
+
function $t(t, e) {
|
|
1219
|
+
return ($e[t] || {})[e];
|
|
1220
|
+
}
|
|
1221
|
+
function ua(t, e) {
|
|
1222
|
+
return (Xe[t] || {})[e];
|
|
1223
|
+
}
|
|
1224
|
+
function Y(t, e) {
|
|
1225
|
+
return (qe[t] || {})[e];
|
|
1226
|
+
}
|
|
1227
|
+
function Ze(t) {
|
|
1228
|
+
return Ve[t] || {
|
|
1229
|
+
prefix: null,
|
|
1230
|
+
iconName: null
|
|
1231
|
+
};
|
|
1232
|
+
}
|
|
1233
|
+
function da(t) {
|
|
1234
|
+
const e = Ke[t], n = $t("fas", t);
|
|
1235
|
+
return e || (n ? {
|
|
1236
|
+
prefix: "fas",
|
|
1237
|
+
iconName: n
|
|
1238
|
+
} : null) || {
|
|
1239
|
+
prefix: null,
|
|
1240
|
+
iconName: null
|
|
1241
|
+
};
|
|
1242
|
+
}
|
|
1243
|
+
function z() {
|
|
1244
|
+
return Gt;
|
|
1245
|
+
}
|
|
1246
|
+
const Je = () => ({
|
|
1247
|
+
prefix: null,
|
|
1248
|
+
iconName: null,
|
|
1249
|
+
rest: []
|
|
1250
|
+
});
|
|
1251
|
+
function ma(t) {
|
|
1252
|
+
let e = A;
|
|
1253
|
+
const n = Ge.reduce((a, r) => (a[r] = "".concat(u.cssPrefix, "-").concat(r), a), {});
|
|
1254
|
+
return Te.forEach((a) => {
|
|
1255
|
+
(t.includes(n[a]) || t.some((r) => la[a].includes(r))) && (e = a);
|
|
1256
|
+
}), e;
|
|
1257
|
+
}
|
|
1258
|
+
function dt(t) {
|
|
1259
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
1260
|
+
const {
|
|
1261
|
+
family: n = A
|
|
1262
|
+
} = e, a = Wn[n][t];
|
|
1263
|
+
if (n === ct && !t)
|
|
1264
|
+
return "fad";
|
|
1265
|
+
const r = re[n][t] || re[n][a], i = t in _.styles ? t : null;
|
|
1266
|
+
return r || i || null;
|
|
1267
|
+
}
|
|
1268
|
+
function ga(t) {
|
|
1269
|
+
let e = [], n = null;
|
|
1270
|
+
return t.forEach((a) => {
|
|
1271
|
+
const r = ca(u.cssPrefix, a);
|
|
1272
|
+
r ? n = r : a && e.push(a);
|
|
1273
|
+
}), {
|
|
1274
|
+
iconName: n,
|
|
1275
|
+
rest: e
|
|
1276
|
+
};
|
|
1277
|
+
}
|
|
1278
|
+
function le(t) {
|
|
1279
|
+
return t.sort().filter((e, n, a) => a.indexOf(e) === n);
|
|
1280
|
+
}
|
|
1281
|
+
function mt(t) {
|
|
1282
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
1283
|
+
const {
|
|
1284
|
+
skipLookups: n = !1
|
|
1285
|
+
} = e;
|
|
1286
|
+
let a = null;
|
|
1287
|
+
const r = At.concat(Nn), i = le(t.filter((h) => r.includes(h))), o = le(t.filter((h) => !At.includes(h))), s = i.filter((h) => (a = h, !Fe.includes(h))), [c = null] = s, f = ma(i), d = l(l({}, ga(o)), {}, {
|
|
1288
|
+
prefix: dt(c, {
|
|
1289
|
+
family: f
|
|
1290
|
+
})
|
|
1291
|
+
});
|
|
1292
|
+
return l(l(l({}, d), ba({
|
|
1293
|
+
values: t,
|
|
1294
|
+
family: f,
|
|
1295
|
+
styles: Z,
|
|
1296
|
+
config: u,
|
|
1297
|
+
canonical: d,
|
|
1298
|
+
givenPrefix: a
|
|
1299
|
+
})), pa(n, a, d));
|
|
1300
|
+
}
|
|
1301
|
+
function pa(t, e, n) {
|
|
1302
|
+
let {
|
|
1303
|
+
prefix: a,
|
|
1304
|
+
iconName: r
|
|
1305
|
+
} = n;
|
|
1306
|
+
if (t || !a || !r)
|
|
1307
|
+
return {
|
|
1308
|
+
prefix: a,
|
|
1309
|
+
iconName: r
|
|
1310
|
+
};
|
|
1311
|
+
const i = e === "fa" ? Ze(r) : {}, o = Y(a, r);
|
|
1312
|
+
return r = i.iconName || o || r, a = i.prefix || a, a === "far" && !Z.far && Z.fas && !u.autoFetchSvg && (a = "fas"), {
|
|
1313
|
+
prefix: a,
|
|
1314
|
+
iconName: r
|
|
1315
|
+
};
|
|
1316
|
+
}
|
|
1317
|
+
const ha = Te.filter((t) => t !== A || t !== ct), ya = Object.keys(xt).filter((t) => t !== A).map((t) => Object.keys(xt[t])).flat();
|
|
1318
|
+
function ba(t) {
|
|
1319
|
+
const {
|
|
1320
|
+
values: e,
|
|
1321
|
+
family: n,
|
|
1322
|
+
canonical: a,
|
|
1323
|
+
givenPrefix: r = "",
|
|
1324
|
+
styles: i = {},
|
|
1325
|
+
config: o = {}
|
|
1326
|
+
} = t, s = n === ct, c = e.includes("fa-duotone") || e.includes("fad"), f = o.familyDefault === "duotone", d = a.prefix === "fad" || a.prefix === "fa-duotone";
|
|
1327
|
+
if (!s && (c || f || d) && (a.prefix = "fad"), (e.includes("fa-brands") || e.includes("fab")) && (a.prefix = "fab"), !a.prefix && ha.includes(n) && (Object.keys(i).find((p) => ya.includes(p)) || o.autoFetchSvg)) {
|
|
1328
|
+
const p = wn.get(n).defaultShortPrefixId;
|
|
1329
|
+
a.prefix = p, a.iconName = Y(a.prefix, a.iconName) || a.iconName;
|
|
1330
|
+
}
|
|
1331
|
+
return (a.prefix === "fa" || r === "fa") && (a.prefix = z() || "fas"), a;
|
|
1332
|
+
}
|
|
1333
|
+
class va {
|
|
1334
|
+
constructor() {
|
|
1335
|
+
this.definitions = {};
|
|
1336
|
+
}
|
|
1337
|
+
add() {
|
|
1338
|
+
for (var e = arguments.length, n = new Array(e), a = 0; a < e; a++)
|
|
1339
|
+
n[a] = arguments[a];
|
|
1340
|
+
const r = n.reduce(this._pullDefinitions, {});
|
|
1341
|
+
Object.keys(r).forEach((i) => {
|
|
1342
|
+
this.definitions[i] = l(l({}, this.definitions[i] || {}), r[i]), It(i, r[i]);
|
|
1343
|
+
const o = Wt[A][i];
|
|
1344
|
+
o && It(o, r[i]), Qe();
|
|
1345
|
+
});
|
|
1346
|
+
}
|
|
1347
|
+
reset() {
|
|
1348
|
+
this.definitions = {};
|
|
1349
|
+
}
|
|
1350
|
+
_pullDefinitions(e, n) {
|
|
1351
|
+
const a = n.prefix && n.iconName && n.icon ? {
|
|
1352
|
+
0: n
|
|
1353
|
+
} : n;
|
|
1354
|
+
return Object.keys(a).map((r) => {
|
|
1355
|
+
const {
|
|
1356
|
+
prefix: i,
|
|
1357
|
+
iconName: o,
|
|
1358
|
+
icon: s
|
|
1359
|
+
} = a[r], c = s[2];
|
|
1360
|
+
e[i] || (e[i] = {}), c.length > 0 && c.forEach((f) => {
|
|
1361
|
+
typeof f == "string" && (e[i][f] = s);
|
|
1362
|
+
}), e[i][o] = s;
|
|
1363
|
+
}), e;
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
let fe = [], B = {};
|
|
1367
|
+
const H = {}, xa = Object.keys(H);
|
|
1368
|
+
function Aa(t, e) {
|
|
1369
|
+
let {
|
|
1370
|
+
mixoutsTo: n
|
|
1371
|
+
} = e;
|
|
1372
|
+
return fe = t, B = {}, Object.keys(H).forEach((a) => {
|
|
1373
|
+
xa.indexOf(a) === -1 && delete H[a];
|
|
1374
|
+
}), fe.forEach((a) => {
|
|
1375
|
+
const r = a.mixout ? a.mixout() : {};
|
|
1376
|
+
if (Object.keys(r).forEach((i) => {
|
|
1377
|
+
typeof r[i] == "function" && (n[i] = r[i]), typeof r[i] == "object" && Object.keys(r[i]).forEach((o) => {
|
|
1378
|
+
n[i] || (n[i] = {}), n[i][o] = r[i][o];
|
|
1379
|
+
});
|
|
1380
|
+
}), a.hooks) {
|
|
1381
|
+
const i = a.hooks();
|
|
1382
|
+
Object.keys(i).forEach((o) => {
|
|
1383
|
+
B[o] || (B[o] = []), B[o].push(i[o]);
|
|
1384
|
+
});
|
|
1385
|
+
}
|
|
1386
|
+
a.provides && a.provides(H);
|
|
1387
|
+
}), n;
|
|
1388
|
+
}
|
|
1389
|
+
function Ct(t, e) {
|
|
1390
|
+
for (var n = arguments.length, a = new Array(n > 2 ? n - 2 : 0), r = 2; r < n; r++)
|
|
1391
|
+
a[r - 2] = arguments[r];
|
|
1392
|
+
return (B[t] || []).forEach((o) => {
|
|
1393
|
+
e = o.apply(null, [e, ...a]);
|
|
1394
|
+
}), e;
|
|
1395
|
+
}
|
|
1396
|
+
function W(t) {
|
|
1397
|
+
for (var e = arguments.length, n = new Array(e > 1 ? e - 1 : 0), a = 1; a < e; a++)
|
|
1398
|
+
n[a - 1] = arguments[a];
|
|
1399
|
+
(B[t] || []).forEach((i) => {
|
|
1400
|
+
i.apply(null, n);
|
|
1401
|
+
});
|
|
1402
|
+
}
|
|
1403
|
+
function j() {
|
|
1404
|
+
const t = arguments[0], e = Array.prototype.slice.call(arguments, 1);
|
|
1405
|
+
return H[t] ? H[t].apply(null, e) : void 0;
|
|
1406
|
+
}
|
|
1407
|
+
function Nt(t) {
|
|
1408
|
+
t.prefix === "fa" && (t.prefix = "fas");
|
|
1409
|
+
let {
|
|
1410
|
+
iconName: e
|
|
1411
|
+
} = t;
|
|
1412
|
+
const n = t.prefix || z();
|
|
1413
|
+
if (e)
|
|
1414
|
+
return e = Y(n, e) || e, oe(tn.definitions, n, e) || oe(_.styles, n, e);
|
|
1415
|
+
}
|
|
1416
|
+
const tn = new va(), wa = () => {
|
|
1417
|
+
u.autoReplaceSvg = !1, u.observeMutations = !1, W("noAuto");
|
|
1418
|
+
}, Sa = {
|
|
1419
|
+
i2svg: function() {
|
|
1420
|
+
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
1421
|
+
return M ? (W("beforeI2svg", t), j("pseudoElements2svg", t), j("i2svg", t)) : Promise.reject(new Error("Operation requires a DOM of some kind."));
|
|
1422
|
+
},
|
|
1423
|
+
watch: function() {
|
|
1424
|
+
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
1425
|
+
const {
|
|
1426
|
+
autoReplaceSvgRoot: e
|
|
1427
|
+
} = t;
|
|
1428
|
+
u.autoReplaceSvg === !1 && (u.autoReplaceSvg = !0), u.observeMutations = !0, ra(() => {
|
|
1429
|
+
Pa({
|
|
1430
|
+
autoReplaceSvgRoot: e
|
|
1431
|
+
}), W("watch", t);
|
|
1432
|
+
});
|
|
1433
|
+
}
|
|
1434
|
+
}, Oa = {
|
|
1435
|
+
icon: (t) => {
|
|
1436
|
+
if (t === null)
|
|
1437
|
+
return null;
|
|
1438
|
+
if (typeof t == "object" && t.prefix && t.iconName)
|
|
1439
|
+
return {
|
|
1440
|
+
prefix: t.prefix,
|
|
1441
|
+
iconName: Y(t.prefix, t.iconName) || t.iconName
|
|
1442
|
+
};
|
|
1443
|
+
if (Array.isArray(t) && t.length === 2) {
|
|
1444
|
+
const e = t[1].indexOf("fa-") === 0 ? t[1].slice(3) : t[1], n = dt(t[0]);
|
|
1445
|
+
return {
|
|
1446
|
+
prefix: n,
|
|
1447
|
+
iconName: Y(n, e) || e
|
|
1448
|
+
};
|
|
1449
|
+
}
|
|
1450
|
+
if (typeof t == "string" && (t.indexOf("".concat(u.cssPrefix, "-")) > -1 || t.match(Bn))) {
|
|
1451
|
+
const e = mt(t.split(" "), {
|
|
1452
|
+
skipLookups: !0
|
|
1453
|
+
});
|
|
1454
|
+
return {
|
|
1455
|
+
prefix: e.prefix || z(),
|
|
1456
|
+
iconName: Y(e.prefix, e.iconName) || e.iconName
|
|
1457
|
+
};
|
|
1458
|
+
}
|
|
1459
|
+
if (typeof t == "string") {
|
|
1460
|
+
const e = z();
|
|
1461
|
+
return {
|
|
1462
|
+
prefix: e,
|
|
1463
|
+
iconName: Y(e, t) || t
|
|
1464
|
+
};
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1467
|
+
}, O = {
|
|
1468
|
+
noAuto: wa,
|
|
1469
|
+
config: u,
|
|
1470
|
+
dom: Sa,
|
|
1471
|
+
parse: Oa,
|
|
1472
|
+
library: tn,
|
|
1473
|
+
findIconDefinition: Nt,
|
|
1474
|
+
toHtml: tt
|
|
1475
|
+
}, Pa = function() {
|
|
1476
|
+
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
1477
|
+
const {
|
|
1478
|
+
autoReplaceSvgRoot: e = y
|
|
1479
|
+
} = t;
|
|
1480
|
+
(Object.keys(_.styles).length > 0 || u.autoFetchSvg) && M && u.autoReplaceSvg && O.dom.i2svg({
|
|
1481
|
+
node: e
|
|
1482
|
+
});
|
|
1483
|
+
};
|
|
1484
|
+
function gt(t, e) {
|
|
1485
|
+
return Object.defineProperty(t, "abstract", {
|
|
1486
|
+
get: e
|
|
1487
|
+
}), Object.defineProperty(t, "html", {
|
|
1488
|
+
get: function() {
|
|
1489
|
+
return t.abstract.map((n) => tt(n));
|
|
1490
|
+
}
|
|
1491
|
+
}), Object.defineProperty(t, "node", {
|
|
1492
|
+
get: function() {
|
|
1493
|
+
if (!M) return;
|
|
1494
|
+
const n = y.createElement("div");
|
|
1495
|
+
return n.innerHTML = t.html, n.children;
|
|
1496
|
+
}
|
|
1497
|
+
}), t;
|
|
1498
|
+
}
|
|
1499
|
+
function ka(t) {
|
|
1500
|
+
let {
|
|
1501
|
+
children: e,
|
|
1502
|
+
main: n,
|
|
1503
|
+
mask: a,
|
|
1504
|
+
attributes: r,
|
|
1505
|
+
styles: i,
|
|
1506
|
+
transform: o
|
|
1507
|
+
} = t;
|
|
1508
|
+
if (Ht(o) && n.found && !a.found) {
|
|
1509
|
+
const {
|
|
1510
|
+
width: s,
|
|
1511
|
+
height: c
|
|
1512
|
+
} = n, f = {
|
|
1513
|
+
x: s / c / 2,
|
|
1514
|
+
y: 0.5
|
|
1515
|
+
};
|
|
1516
|
+
r.style = ut(l(l({}, i), {}, {
|
|
1517
|
+
"transform-origin": "".concat(f.x + o.x / 16, "em ").concat(f.y + o.y / 16, "em")
|
|
1518
|
+
}));
|
|
1519
|
+
}
|
|
1520
|
+
return [{
|
|
1521
|
+
tag: "svg",
|
|
1522
|
+
attributes: r,
|
|
1523
|
+
children: e
|
|
1524
|
+
}];
|
|
1525
|
+
}
|
|
1526
|
+
function Ea(t) {
|
|
1527
|
+
let {
|
|
1528
|
+
prefix: e,
|
|
1529
|
+
iconName: n,
|
|
1530
|
+
children: a,
|
|
1531
|
+
attributes: r,
|
|
1532
|
+
symbol: i
|
|
1533
|
+
} = t;
|
|
1534
|
+
const o = i === !0 ? "".concat(e, "-").concat(u.cssPrefix, "-").concat(n) : i;
|
|
1535
|
+
return [{
|
|
1536
|
+
tag: "svg",
|
|
1537
|
+
attributes: {
|
|
1538
|
+
style: "display: none;"
|
|
1539
|
+
},
|
|
1540
|
+
children: [{
|
|
1541
|
+
tag: "symbol",
|
|
1542
|
+
attributes: l(l({}, r), {}, {
|
|
1543
|
+
id: o
|
|
1544
|
+
}),
|
|
1545
|
+
children: a
|
|
1546
|
+
}]
|
|
1547
|
+
}];
|
|
1548
|
+
}
|
|
1549
|
+
function Xt(t) {
|
|
1550
|
+
const {
|
|
1551
|
+
icons: {
|
|
1552
|
+
main: e,
|
|
1553
|
+
mask: n
|
|
1554
|
+
},
|
|
1555
|
+
prefix: a,
|
|
1556
|
+
iconName: r,
|
|
1557
|
+
transform: i,
|
|
1558
|
+
symbol: o,
|
|
1559
|
+
title: s,
|
|
1560
|
+
maskId: c,
|
|
1561
|
+
titleId: f,
|
|
1562
|
+
extra: d,
|
|
1563
|
+
watchable: h = !1
|
|
1564
|
+
} = t, {
|
|
1565
|
+
width: p,
|
|
1566
|
+
height: v
|
|
1567
|
+
} = n.found ? n : e, C = En.includes(a), k = [u.replacementClass, r ? "".concat(u.cssPrefix, "-").concat(r) : ""].filter((P) => d.classes.indexOf(P) === -1).filter((P) => P !== "" || !!P).concat(d.classes).join(" ");
|
|
1568
|
+
let w = {
|
|
1569
|
+
children: [],
|
|
1570
|
+
attributes: l(l({}, d.attributes), {}, {
|
|
1571
|
+
"data-prefix": a,
|
|
1572
|
+
"data-icon": r,
|
|
1573
|
+
class: k,
|
|
1574
|
+
role: d.attributes.role || "img",
|
|
1575
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1576
|
+
viewBox: "0 0 ".concat(p, " ").concat(v)
|
|
1577
|
+
})
|
|
1578
|
+
};
|
|
1579
|
+
const m = C && !~d.classes.indexOf("fa-fw") ? {
|
|
1580
|
+
width: "".concat(p / v * 16 * 0.0625, "em")
|
|
1581
|
+
} : {};
|
|
1582
|
+
h && (w.attributes[U] = ""), s && (w.children.push({
|
|
1583
|
+
tag: "title",
|
|
1584
|
+
attributes: {
|
|
1585
|
+
id: w.attributes["aria-labelledby"] || "title-".concat(f || Q())
|
|
1586
|
+
},
|
|
1587
|
+
children: [s]
|
|
1588
|
+
}), delete w.attributes.title);
|
|
1589
|
+
const g = l(l({}, w), {}, {
|
|
1590
|
+
prefix: a,
|
|
1591
|
+
iconName: r,
|
|
1592
|
+
main: e,
|
|
1593
|
+
mask: n,
|
|
1594
|
+
maskId: c,
|
|
1595
|
+
transform: i,
|
|
1596
|
+
symbol: o,
|
|
1597
|
+
styles: l(l({}, m), d.styles)
|
|
1598
|
+
}), {
|
|
1599
|
+
children: b,
|
|
1600
|
+
attributes: x
|
|
1601
|
+
} = n.found && e.found ? j("generateAbstractMask", g) || {
|
|
1602
|
+
children: [],
|
|
1603
|
+
attributes: {}
|
|
1604
|
+
} : j("generateAbstractIcon", g) || {
|
|
1605
|
+
children: [],
|
|
1606
|
+
attributes: {}
|
|
1607
|
+
};
|
|
1608
|
+
return g.children = b, g.attributes = x, o ? Ea(g) : ka(g);
|
|
1609
|
+
}
|
|
1610
|
+
function ce(t) {
|
|
1611
|
+
const {
|
|
1612
|
+
content: e,
|
|
1613
|
+
width: n,
|
|
1614
|
+
height: a,
|
|
1615
|
+
transform: r,
|
|
1616
|
+
title: i,
|
|
1617
|
+
extra: o,
|
|
1618
|
+
watchable: s = !1
|
|
1619
|
+
} = t, c = l(l(l({}, o.attributes), i ? {
|
|
1620
|
+
title: i
|
|
1621
|
+
} : {}), {}, {
|
|
1622
|
+
class: o.classes.join(" ")
|
|
1623
|
+
});
|
|
1624
|
+
s && (c[U] = "");
|
|
1625
|
+
const f = l({}, o.styles);
|
|
1626
|
+
Ht(r) && (f.transform = ea({
|
|
1627
|
+
transform: r,
|
|
1628
|
+
startCentered: !0,
|
|
1629
|
+
width: n,
|
|
1630
|
+
height: a
|
|
1631
|
+
}), f["-webkit-transform"] = f.transform);
|
|
1632
|
+
const d = ut(f);
|
|
1633
|
+
d.length > 0 && (c.style = d);
|
|
1634
|
+
const h = [];
|
|
1635
|
+
return h.push({
|
|
1636
|
+
tag: "span",
|
|
1637
|
+
attributes: c,
|
|
1638
|
+
children: [e]
|
|
1639
|
+
}), i && h.push({
|
|
1640
|
+
tag: "span",
|
|
1641
|
+
attributes: {
|
|
1642
|
+
class: "sr-only"
|
|
1643
|
+
},
|
|
1644
|
+
children: [i]
|
|
1645
|
+
}), h;
|
|
1646
|
+
}
|
|
1647
|
+
function Ia(t) {
|
|
1648
|
+
const {
|
|
1649
|
+
content: e,
|
|
1650
|
+
title: n,
|
|
1651
|
+
extra: a
|
|
1652
|
+
} = t, r = l(l(l({}, a.attributes), n ? {
|
|
1653
|
+
title: n
|
|
1654
|
+
} : {}), {}, {
|
|
1655
|
+
class: a.classes.join(" ")
|
|
1656
|
+
}), i = ut(a.styles);
|
|
1657
|
+
i.length > 0 && (r.style = i);
|
|
1658
|
+
const o = [];
|
|
1659
|
+
return o.push({
|
|
1660
|
+
tag: "span",
|
|
1661
|
+
attributes: r,
|
|
1662
|
+
children: [e]
|
|
1663
|
+
}), n && o.push({
|
|
1664
|
+
tag: "span",
|
|
1665
|
+
attributes: {
|
|
1666
|
+
class: "sr-only"
|
|
1667
|
+
},
|
|
1668
|
+
children: [n]
|
|
1669
|
+
}), o;
|
|
1670
|
+
}
|
|
1671
|
+
const {
|
|
1672
|
+
styles: bt
|
|
1673
|
+
} = _;
|
|
1674
|
+
function _t(t) {
|
|
1675
|
+
const e = t[0], n = t[1], [a] = t.slice(4);
|
|
1676
|
+
let r = null;
|
|
1677
|
+
return Array.isArray(a) ? r = {
|
|
1678
|
+
tag: "g",
|
|
1679
|
+
attributes: {
|
|
1680
|
+
class: "".concat(u.cssPrefix, "-").concat(pt.GROUP)
|
|
1681
|
+
},
|
|
1682
|
+
children: [{
|
|
1683
|
+
tag: "path",
|
|
1684
|
+
attributes: {
|
|
1685
|
+
class: "".concat(u.cssPrefix, "-").concat(pt.SECONDARY),
|
|
1686
|
+
fill: "currentColor",
|
|
1687
|
+
d: a[0]
|
|
1688
|
+
}
|
|
1689
|
+
}, {
|
|
1690
|
+
tag: "path",
|
|
1691
|
+
attributes: {
|
|
1692
|
+
class: "".concat(u.cssPrefix, "-").concat(pt.PRIMARY),
|
|
1693
|
+
fill: "currentColor",
|
|
1694
|
+
d: a[1]
|
|
1695
|
+
}
|
|
1696
|
+
}]
|
|
1697
|
+
} : r = {
|
|
1698
|
+
tag: "path",
|
|
1699
|
+
attributes: {
|
|
1700
|
+
fill: "currentColor",
|
|
1701
|
+
d: a
|
|
1702
|
+
}
|
|
1703
|
+
}, {
|
|
1704
|
+
found: !0,
|
|
1705
|
+
width: e,
|
|
1706
|
+
height: n,
|
|
1707
|
+
icon: r
|
|
1708
|
+
};
|
|
1709
|
+
}
|
|
1710
|
+
const Ca = {
|
|
1711
|
+
found: !1,
|
|
1712
|
+
width: 512,
|
|
1713
|
+
height: 512
|
|
1714
|
+
};
|
|
1715
|
+
function Na(t, e) {
|
|
1716
|
+
!ze && !u.showMissingIcons && t && console.error('Icon with name "'.concat(t, '" and prefix "').concat(e, '" is missing.'));
|
|
1717
|
+
}
|
|
1718
|
+
function Ft(t, e) {
|
|
1719
|
+
let n = e;
|
|
1720
|
+
return e === "fa" && u.styleDefault !== null && (e = z()), new Promise((a, r) => {
|
|
1721
|
+
if (n === "fa") {
|
|
1722
|
+
const i = Ze(t) || {};
|
|
1723
|
+
t = i.iconName || t, e = i.prefix || e;
|
|
1724
|
+
}
|
|
1725
|
+
if (t && e && bt[e] && bt[e][t]) {
|
|
1726
|
+
const i = bt[e][t];
|
|
1727
|
+
return a(_t(i));
|
|
1728
|
+
}
|
|
1729
|
+
Na(t, e), a(l(l({}, Ca), {}, {
|
|
1730
|
+
icon: u.showMissingIcons && t ? j("missingIconAbstract") || {} : {}
|
|
1731
|
+
}));
|
|
1732
|
+
});
|
|
1733
|
+
}
|
|
1734
|
+
const ue = () => {
|
|
1735
|
+
}, Tt = u.measurePerformance && nt && nt.mark && nt.measure ? nt : {
|
|
1736
|
+
mark: ue,
|
|
1737
|
+
measure: ue
|
|
1738
|
+
}, X = 'FA "6.7.2"', _a = (t) => (Tt.mark("".concat(X, " ").concat(t, " begins")), () => en(t)), en = (t) => {
|
|
1739
|
+
Tt.mark("".concat(X, " ").concat(t, " ends")), Tt.measure("".concat(X, " ").concat(t), "".concat(X, " ").concat(t, " begins"), "".concat(X, " ").concat(t, " ends"));
|
|
1740
|
+
};
|
|
1741
|
+
var Vt = {
|
|
1742
|
+
begin: _a,
|
|
1743
|
+
end: en
|
|
1744
|
+
};
|
|
1745
|
+
const rt = () => {
|
|
1746
|
+
};
|
|
1747
|
+
function de(t) {
|
|
1748
|
+
return typeof (t.getAttribute ? t.getAttribute(U) : null) == "string";
|
|
1749
|
+
}
|
|
1750
|
+
function Fa(t) {
|
|
1751
|
+
const e = t.getAttribute ? t.getAttribute(Yt) : null, n = t.getAttribute ? t.getAttribute(Ut) : null;
|
|
1752
|
+
return e && n;
|
|
1753
|
+
}
|
|
1754
|
+
function Ta(t) {
|
|
1755
|
+
return t && t.classList && t.classList.contains && t.classList.contains(u.replacementClass);
|
|
1756
|
+
}
|
|
1757
|
+
function Ma() {
|
|
1758
|
+
return u.autoReplaceSvg === !0 ? it.replace : it[u.autoReplaceSvg] || it.replace;
|
|
1759
|
+
}
|
|
1760
|
+
function La(t) {
|
|
1761
|
+
return y.createElementNS("http://www.w3.org/2000/svg", t);
|
|
1762
|
+
}
|
|
1763
|
+
function Da(t) {
|
|
1764
|
+
return y.createElement(t);
|
|
1765
|
+
}
|
|
1766
|
+
function nn(t) {
|
|
1767
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
1768
|
+
const {
|
|
1769
|
+
ceFn: n = t.tag === "svg" ? La : Da
|
|
1770
|
+
} = e;
|
|
1771
|
+
if (typeof t == "string")
|
|
1772
|
+
return y.createTextNode(t);
|
|
1773
|
+
const a = n(t.tag);
|
|
1774
|
+
return Object.keys(t.attributes || []).forEach(function(i) {
|
|
1775
|
+
a.setAttribute(i, t.attributes[i]);
|
|
1776
|
+
}), (t.children || []).forEach(function(i) {
|
|
1777
|
+
a.appendChild(nn(i, {
|
|
1778
|
+
ceFn: n
|
|
1779
|
+
}));
|
|
1780
|
+
}), a;
|
|
1781
|
+
}
|
|
1782
|
+
function za(t) {
|
|
1783
|
+
let e = " ".concat(t.outerHTML, " ");
|
|
1784
|
+
return e = "".concat(e, "Font Awesome fontawesome.com "), e;
|
|
1785
|
+
}
|
|
1786
|
+
const it = {
|
|
1787
|
+
replace: function(t) {
|
|
1788
|
+
const e = t[0];
|
|
1789
|
+
if (e.parentNode)
|
|
1790
|
+
if (t[1].forEach((n) => {
|
|
1791
|
+
e.parentNode.insertBefore(nn(n), e);
|
|
1792
|
+
}), e.getAttribute(U) === null && u.keepOriginalSource) {
|
|
1793
|
+
let n = y.createComment(za(e));
|
|
1794
|
+
e.parentNode.replaceChild(n, e);
|
|
1795
|
+
} else
|
|
1796
|
+
e.remove();
|
|
1797
|
+
},
|
|
1798
|
+
nest: function(t) {
|
|
1799
|
+
const e = t[0], n = t[1];
|
|
1800
|
+
if (~Bt(e).indexOf(u.replacementClass))
|
|
1801
|
+
return it.replace(t);
|
|
1802
|
+
const a = new RegExp("".concat(u.cssPrefix, "-.*"));
|
|
1803
|
+
if (delete n[0].attributes.id, n[0].attributes.class) {
|
|
1804
|
+
const i = n[0].attributes.class.split(" ").reduce((o, s) => (s === u.replacementClass || s.match(a) ? o.toSvg.push(s) : o.toNode.push(s), o), {
|
|
1805
|
+
toNode: [],
|
|
1806
|
+
toSvg: []
|
|
1807
|
+
});
|
|
1808
|
+
n[0].attributes.class = i.toSvg.join(" "), i.toNode.length === 0 ? e.removeAttribute("class") : e.setAttribute("class", i.toNode.join(" "));
|
|
1809
|
+
}
|
|
1810
|
+
const r = n.map((i) => tt(i)).join(`
|
|
1811
|
+
`);
|
|
1812
|
+
e.setAttribute(U, ""), e.innerHTML = r;
|
|
1813
|
+
}
|
|
1814
|
+
};
|
|
1815
|
+
function me(t) {
|
|
1816
|
+
t();
|
|
1817
|
+
}
|
|
1818
|
+
function an(t, e) {
|
|
1819
|
+
const n = typeof e == "function" ? e : rt;
|
|
1820
|
+
if (t.length === 0)
|
|
1821
|
+
n();
|
|
1822
|
+
else {
|
|
1823
|
+
let a = me;
|
|
1824
|
+
u.mutateApproach === Yn && (a = D.requestAnimationFrame || me), a(() => {
|
|
1825
|
+
const r = Ma(), i = Vt.begin("mutate");
|
|
1826
|
+
t.map(r), i(), n();
|
|
1827
|
+
});
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
let Kt = !1;
|
|
1831
|
+
function rn() {
|
|
1832
|
+
Kt = !0;
|
|
1833
|
+
}
|
|
1834
|
+
function Mt() {
|
|
1835
|
+
Kt = !1;
|
|
1836
|
+
}
|
|
1837
|
+
let st = null;
|
|
1838
|
+
function ge(t) {
|
|
1839
|
+
if (!te || !u.observeMutations)
|
|
1840
|
+
return;
|
|
1841
|
+
const {
|
|
1842
|
+
treeCallback: e = rt,
|
|
1843
|
+
nodeCallback: n = rt,
|
|
1844
|
+
pseudoElementsCallback: a = rt,
|
|
1845
|
+
observeMutationsRoot: r = y
|
|
1846
|
+
} = t;
|
|
1847
|
+
st = new te((i) => {
|
|
1848
|
+
if (Kt) return;
|
|
1849
|
+
const o = z();
|
|
1850
|
+
$(i).forEach((s) => {
|
|
1851
|
+
if (s.type === "childList" && s.addedNodes.length > 0 && !de(s.addedNodes[0]) && (u.searchPseudoElements && a(s.target), e(s.target)), s.type === "attributes" && s.target.parentNode && u.searchPseudoElements && a(s.target.parentNode), s.type === "attributes" && de(s.target) && ~$n.indexOf(s.attributeName))
|
|
1852
|
+
if (s.attributeName === "class" && Fa(s.target)) {
|
|
1853
|
+
const {
|
|
1854
|
+
prefix: c,
|
|
1855
|
+
iconName: f
|
|
1856
|
+
} = mt(Bt(s.target));
|
|
1857
|
+
s.target.setAttribute(Yt, c || o), f && s.target.setAttribute(Ut, f);
|
|
1858
|
+
} else Ta(s.target) && n(s.target);
|
|
1859
|
+
});
|
|
1860
|
+
}), M && st.observe(r, {
|
|
1861
|
+
childList: !0,
|
|
1862
|
+
attributes: !0,
|
|
1863
|
+
characterData: !0,
|
|
1864
|
+
subtree: !0
|
|
1865
|
+
});
|
|
1866
|
+
}
|
|
1867
|
+
function ja() {
|
|
1868
|
+
st && st.disconnect();
|
|
1869
|
+
}
|
|
1870
|
+
function Ra(t) {
|
|
1871
|
+
const e = t.getAttribute("style");
|
|
1872
|
+
let n = [];
|
|
1873
|
+
return e && (n = e.split(";").reduce((a, r) => {
|
|
1874
|
+
const i = r.split(":"), o = i[0], s = i.slice(1);
|
|
1875
|
+
return o && s.length > 0 && (a[o] = s.join(":").trim()), a;
|
|
1876
|
+
}, {})), n;
|
|
1877
|
+
}
|
|
1878
|
+
function Ya(t) {
|
|
1879
|
+
const e = t.getAttribute("data-prefix"), n = t.getAttribute("data-icon"), a = t.innerText !== void 0 ? t.innerText.trim() : "";
|
|
1880
|
+
let r = mt(Bt(t));
|
|
1881
|
+
return r.prefix || (r.prefix = z()), e && n && (r.prefix = e, r.iconName = n), r.iconName && r.prefix || (r.prefix && a.length > 0 && (r.iconName = ua(r.prefix, t.innerText) || $t(r.prefix, Et(t.innerText))), !r.iconName && u.autoFetchSvg && t.firstChild && t.firstChild.nodeType === Node.TEXT_NODE && (r.iconName = t.firstChild.data)), r;
|
|
1882
|
+
}
|
|
1883
|
+
function Ua(t) {
|
|
1884
|
+
const e = $(t.attributes).reduce((r, i) => (r.name !== "class" && r.name !== "style" && (r[i.name] = i.value), r), {}), n = t.getAttribute("title"), a = t.getAttribute("data-fa-title-id");
|
|
1885
|
+
return u.autoA11y && (n ? e["aria-labelledby"] = "".concat(u.replacementClass, "-title-").concat(a || Q()) : (e["aria-hidden"] = "true", e.focusable = "false")), e;
|
|
1886
|
+
}
|
|
1887
|
+
function Wa() {
|
|
1888
|
+
return {
|
|
1889
|
+
iconName: null,
|
|
1890
|
+
title: null,
|
|
1891
|
+
titleId: null,
|
|
1892
|
+
prefix: null,
|
|
1893
|
+
transform: N,
|
|
1894
|
+
symbol: !1,
|
|
1895
|
+
mask: {
|
|
1896
|
+
iconName: null,
|
|
1897
|
+
prefix: null,
|
|
1898
|
+
rest: []
|
|
1899
|
+
},
|
|
1900
|
+
maskId: null,
|
|
1901
|
+
extra: {
|
|
1902
|
+
classes: [],
|
|
1903
|
+
styles: {},
|
|
1904
|
+
attributes: {}
|
|
1905
|
+
}
|
|
1906
|
+
};
|
|
1907
|
+
}
|
|
1908
|
+
function pe(t) {
|
|
1909
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
|
|
1910
|
+
styleParser: !0
|
|
1911
|
+
};
|
|
1912
|
+
const {
|
|
1913
|
+
iconName: n,
|
|
1914
|
+
prefix: a,
|
|
1915
|
+
rest: r
|
|
1916
|
+
} = Ya(t), i = Ua(t), o = Ct("parseNodeAttributes", {}, t);
|
|
1917
|
+
let s = e.styleParser ? Ra(t) : [];
|
|
1918
|
+
return l({
|
|
1919
|
+
iconName: n,
|
|
1920
|
+
title: t.getAttribute("title"),
|
|
1921
|
+
titleId: t.getAttribute("data-fa-title-id"),
|
|
1922
|
+
prefix: a,
|
|
1923
|
+
transform: N,
|
|
1924
|
+
mask: {
|
|
1925
|
+
iconName: null,
|
|
1926
|
+
prefix: null,
|
|
1927
|
+
rest: []
|
|
1928
|
+
},
|
|
1929
|
+
maskId: null,
|
|
1930
|
+
symbol: !1,
|
|
1931
|
+
extra: {
|
|
1932
|
+
classes: r,
|
|
1933
|
+
styles: s,
|
|
1934
|
+
attributes: i
|
|
1935
|
+
}
|
|
1936
|
+
}, o);
|
|
1937
|
+
}
|
|
1938
|
+
const {
|
|
1939
|
+
styles: Ba
|
|
1940
|
+
} = _;
|
|
1941
|
+
function on(t) {
|
|
1942
|
+
const e = u.autoReplaceSvg === "nest" ? pe(t, {
|
|
1943
|
+
styleParser: !1
|
|
1944
|
+
}) : pe(t);
|
|
1945
|
+
return ~e.extra.classes.indexOf(Re) ? j("generateLayersText", t, e) : j("generateSvgReplacementMutation", t, e);
|
|
1946
|
+
}
|
|
1947
|
+
function Ha() {
|
|
1948
|
+
return [...On, ...At];
|
|
1949
|
+
}
|
|
1950
|
+
function he(t) {
|
|
1951
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
|
|
1952
|
+
if (!M) return Promise.resolve();
|
|
1953
|
+
const n = y.documentElement.classList, a = (d) => n.add("".concat(ae, "-").concat(d)), r = (d) => n.remove("".concat(ae, "-").concat(d)), i = u.autoFetchSvg ? Ha() : Fe.concat(Object.keys(Ba));
|
|
1954
|
+
i.includes("fa") || i.push("fa");
|
|
1955
|
+
const o = [".".concat(Re, ":not([").concat(U, "])")].concat(i.map((d) => ".".concat(d, ":not([").concat(U, "])"))).join(", ");
|
|
1956
|
+
if (o.length === 0)
|
|
1957
|
+
return Promise.resolve();
|
|
1958
|
+
let s = [];
|
|
1959
|
+
try {
|
|
1960
|
+
s = $(t.querySelectorAll(o));
|
|
1961
|
+
} catch {
|
|
1962
|
+
}
|
|
1963
|
+
if (s.length > 0)
|
|
1964
|
+
a("pending"), r("complete");
|
|
1965
|
+
else
|
|
1966
|
+
return Promise.resolve();
|
|
1967
|
+
const c = Vt.begin("onTree"), f = s.reduce((d, h) => {
|
|
1968
|
+
try {
|
|
1969
|
+
const p = on(h);
|
|
1970
|
+
p && d.push(p);
|
|
1971
|
+
} catch (p) {
|
|
1972
|
+
ze || p.name === "MissingIcon" && console.error(p);
|
|
1973
|
+
}
|
|
1974
|
+
return d;
|
|
1975
|
+
}, []);
|
|
1976
|
+
return new Promise((d, h) => {
|
|
1977
|
+
Promise.all(f).then((p) => {
|
|
1978
|
+
an(p, () => {
|
|
1979
|
+
a("active"), a("complete"), r("pending"), typeof e == "function" && e(), c(), d();
|
|
1980
|
+
});
|
|
1981
|
+
}).catch((p) => {
|
|
1982
|
+
c(), h(p);
|
|
1983
|
+
});
|
|
1984
|
+
});
|
|
1985
|
+
}
|
|
1986
|
+
function Ga(t) {
|
|
1987
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
|
|
1988
|
+
on(t).then((n) => {
|
|
1989
|
+
n && an([n], e);
|
|
1990
|
+
});
|
|
1991
|
+
}
|
|
1992
|
+
function $a(t) {
|
|
1993
|
+
return function(e) {
|
|
1994
|
+
let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
1995
|
+
const a = (e || {}).icon ? e : Nt(e || {});
|
|
1996
|
+
let {
|
|
1997
|
+
mask: r
|
|
1998
|
+
} = n;
|
|
1999
|
+
return r && (r = (r || {}).icon ? r : Nt(r || {})), t(a, l(l({}, n), {}, {
|
|
2000
|
+
mask: r
|
|
2001
|
+
}));
|
|
2002
|
+
};
|
|
2003
|
+
}
|
|
2004
|
+
const Xa = function(t) {
|
|
2005
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
2006
|
+
const {
|
|
2007
|
+
transform: n = N,
|
|
2008
|
+
symbol: a = !1,
|
|
2009
|
+
mask: r = null,
|
|
2010
|
+
maskId: i = null,
|
|
2011
|
+
title: o = null,
|
|
2012
|
+
titleId: s = null,
|
|
2013
|
+
classes: c = [],
|
|
2014
|
+
attributes: f = {},
|
|
2015
|
+
styles: d = {}
|
|
2016
|
+
} = e;
|
|
2017
|
+
if (!t) return;
|
|
2018
|
+
const {
|
|
2019
|
+
prefix: h,
|
|
2020
|
+
iconName: p,
|
|
2021
|
+
icon: v
|
|
2022
|
+
} = t;
|
|
2023
|
+
return gt(l({
|
|
2024
|
+
type: "icon"
|
|
2025
|
+
}, t), () => (W("beforeDOMElementCreation", {
|
|
2026
|
+
iconDefinition: t,
|
|
2027
|
+
params: e
|
|
2028
|
+
}), u.autoA11y && (o ? f["aria-labelledby"] = "".concat(u.replacementClass, "-title-").concat(s || Q()) : (f["aria-hidden"] = "true", f.focusable = "false")), Xt({
|
|
2029
|
+
icons: {
|
|
2030
|
+
main: _t(v),
|
|
2031
|
+
mask: r ? _t(r.icon) : {
|
|
2032
|
+
found: !1,
|
|
2033
|
+
width: null,
|
|
2034
|
+
height: null,
|
|
2035
|
+
icon: {}
|
|
2036
|
+
}
|
|
2037
|
+
},
|
|
2038
|
+
prefix: h,
|
|
2039
|
+
iconName: p,
|
|
2040
|
+
transform: l(l({}, N), n),
|
|
2041
|
+
symbol: a,
|
|
2042
|
+
title: o,
|
|
2043
|
+
maskId: i,
|
|
2044
|
+
titleId: s,
|
|
2045
|
+
extra: {
|
|
2046
|
+
attributes: f,
|
|
2047
|
+
styles: d,
|
|
2048
|
+
classes: c
|
|
2049
|
+
}
|
|
2050
|
+
})));
|
|
2051
|
+
};
|
|
2052
|
+
var Va = {
|
|
2053
|
+
mixout() {
|
|
2054
|
+
return {
|
|
2055
|
+
icon: $a(Xa)
|
|
2056
|
+
};
|
|
2057
|
+
},
|
|
2058
|
+
hooks() {
|
|
2059
|
+
return {
|
|
2060
|
+
mutationObserverCallbacks(t) {
|
|
2061
|
+
return t.treeCallback = he, t.nodeCallback = Ga, t;
|
|
2062
|
+
}
|
|
2063
|
+
};
|
|
2064
|
+
},
|
|
2065
|
+
provides(t) {
|
|
2066
|
+
t.i2svg = function(e) {
|
|
2067
|
+
const {
|
|
2068
|
+
node: n = y,
|
|
2069
|
+
callback: a = () => {
|
|
2070
|
+
}
|
|
2071
|
+
} = e;
|
|
2072
|
+
return he(n, a);
|
|
2073
|
+
}, t.generateSvgReplacementMutation = function(e, n) {
|
|
2074
|
+
const {
|
|
2075
|
+
iconName: a,
|
|
2076
|
+
title: r,
|
|
2077
|
+
titleId: i,
|
|
2078
|
+
prefix: o,
|
|
2079
|
+
transform: s,
|
|
2080
|
+
symbol: c,
|
|
2081
|
+
mask: f,
|
|
2082
|
+
maskId: d,
|
|
2083
|
+
extra: h
|
|
2084
|
+
} = n;
|
|
2085
|
+
return new Promise((p, v) => {
|
|
2086
|
+
Promise.all([Ft(a, o), f.iconName ? Ft(f.iconName, f.prefix) : Promise.resolve({
|
|
2087
|
+
found: !1,
|
|
2088
|
+
width: 512,
|
|
2089
|
+
height: 512,
|
|
2090
|
+
icon: {}
|
|
2091
|
+
})]).then((C) => {
|
|
2092
|
+
let [k, w] = C;
|
|
2093
|
+
p([e, Xt({
|
|
2094
|
+
icons: {
|
|
2095
|
+
main: k,
|
|
2096
|
+
mask: w
|
|
2097
|
+
},
|
|
2098
|
+
prefix: o,
|
|
2099
|
+
iconName: a,
|
|
2100
|
+
transform: s,
|
|
2101
|
+
symbol: c,
|
|
2102
|
+
maskId: d,
|
|
2103
|
+
title: r,
|
|
2104
|
+
titleId: i,
|
|
2105
|
+
extra: h,
|
|
2106
|
+
watchable: !0
|
|
2107
|
+
})]);
|
|
2108
|
+
}).catch(v);
|
|
2109
|
+
});
|
|
2110
|
+
}, t.generateAbstractIcon = function(e) {
|
|
2111
|
+
let {
|
|
2112
|
+
children: n,
|
|
2113
|
+
attributes: a,
|
|
2114
|
+
main: r,
|
|
2115
|
+
transform: i,
|
|
2116
|
+
styles: o
|
|
2117
|
+
} = e;
|
|
2118
|
+
const s = ut(o);
|
|
2119
|
+
s.length > 0 && (a.style = s);
|
|
2120
|
+
let c;
|
|
2121
|
+
return Ht(i) && (c = j("generateAbstractTransformGrouping", {
|
|
2122
|
+
main: r,
|
|
2123
|
+
transform: i,
|
|
2124
|
+
containerWidth: r.width,
|
|
2125
|
+
iconWidth: r.width
|
|
2126
|
+
})), n.push(c || r.icon), {
|
|
2127
|
+
children: n,
|
|
2128
|
+
attributes: a
|
|
2129
|
+
};
|
|
2130
|
+
};
|
|
2131
|
+
}
|
|
2132
|
+
}, Ka = {
|
|
2133
|
+
mixout() {
|
|
2134
|
+
return {
|
|
2135
|
+
layer(t) {
|
|
2136
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
2137
|
+
const {
|
|
2138
|
+
classes: n = []
|
|
2139
|
+
} = e;
|
|
2140
|
+
return gt({
|
|
2141
|
+
type: "layer"
|
|
2142
|
+
}, () => {
|
|
2143
|
+
W("beforeDOMElementCreation", {
|
|
2144
|
+
assembler: t,
|
|
2145
|
+
params: e
|
|
2146
|
+
});
|
|
2147
|
+
let a = [];
|
|
2148
|
+
return t((r) => {
|
|
2149
|
+
Array.isArray(r) ? r.map((i) => {
|
|
2150
|
+
a = a.concat(i.abstract);
|
|
2151
|
+
}) : a = a.concat(r.abstract);
|
|
2152
|
+
}), [{
|
|
2153
|
+
tag: "span",
|
|
2154
|
+
attributes: {
|
|
2155
|
+
class: ["".concat(u.cssPrefix, "-layers"), ...n].join(" ")
|
|
2156
|
+
},
|
|
2157
|
+
children: a
|
|
2158
|
+
}];
|
|
2159
|
+
});
|
|
2160
|
+
}
|
|
2161
|
+
};
|
|
2162
|
+
}
|
|
2163
|
+
}, qa = {
|
|
2164
|
+
mixout() {
|
|
2165
|
+
return {
|
|
2166
|
+
counter(t) {
|
|
2167
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
2168
|
+
const {
|
|
2169
|
+
title: n = null,
|
|
2170
|
+
classes: a = [],
|
|
2171
|
+
attributes: r = {},
|
|
2172
|
+
styles: i = {}
|
|
2173
|
+
} = e;
|
|
2174
|
+
return gt({
|
|
2175
|
+
type: "counter",
|
|
2176
|
+
content: t
|
|
2177
|
+
}, () => (W("beforeDOMElementCreation", {
|
|
2178
|
+
content: t,
|
|
2179
|
+
params: e
|
|
2180
|
+
}), Ia({
|
|
2181
|
+
content: t.toString(),
|
|
2182
|
+
title: n,
|
|
2183
|
+
extra: {
|
|
2184
|
+
attributes: r,
|
|
2185
|
+
styles: i,
|
|
2186
|
+
classes: ["".concat(u.cssPrefix, "-layers-counter"), ...a]
|
|
2187
|
+
}
|
|
2188
|
+
})));
|
|
2189
|
+
}
|
|
2190
|
+
};
|
|
2191
|
+
}
|
|
2192
|
+
}, Qa = {
|
|
2193
|
+
mixout() {
|
|
2194
|
+
return {
|
|
2195
|
+
text(t) {
|
|
2196
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
2197
|
+
const {
|
|
2198
|
+
transform: n = N,
|
|
2199
|
+
title: a = null,
|
|
2200
|
+
classes: r = [],
|
|
2201
|
+
attributes: i = {},
|
|
2202
|
+
styles: o = {}
|
|
2203
|
+
} = e;
|
|
2204
|
+
return gt({
|
|
2205
|
+
type: "text",
|
|
2206
|
+
content: t
|
|
2207
|
+
}, () => (W("beforeDOMElementCreation", {
|
|
2208
|
+
content: t,
|
|
2209
|
+
params: e
|
|
2210
|
+
}), ce({
|
|
2211
|
+
content: t,
|
|
2212
|
+
transform: l(l({}, N), n),
|
|
2213
|
+
title: a,
|
|
2214
|
+
extra: {
|
|
2215
|
+
attributes: i,
|
|
2216
|
+
styles: o,
|
|
2217
|
+
classes: ["".concat(u.cssPrefix, "-layers-text"), ...r]
|
|
2218
|
+
}
|
|
2219
|
+
})));
|
|
2220
|
+
}
|
|
2221
|
+
};
|
|
2222
|
+
},
|
|
2223
|
+
provides(t) {
|
|
2224
|
+
t.generateLayersText = function(e, n) {
|
|
2225
|
+
const {
|
|
2226
|
+
title: a,
|
|
2227
|
+
transform: r,
|
|
2228
|
+
extra: i
|
|
2229
|
+
} = n;
|
|
2230
|
+
let o = null, s = null;
|
|
2231
|
+
if (Ne) {
|
|
2232
|
+
const c = parseInt(getComputedStyle(e).fontSize, 10), f = e.getBoundingClientRect();
|
|
2233
|
+
o = f.width / c, s = f.height / c;
|
|
2234
|
+
}
|
|
2235
|
+
return u.autoA11y && !a && (i.attributes["aria-hidden"] = "true"), Promise.resolve([e, ce({
|
|
2236
|
+
content: e.innerHTML,
|
|
2237
|
+
width: o,
|
|
2238
|
+
height: s,
|
|
2239
|
+
transform: r,
|
|
2240
|
+
title: a,
|
|
2241
|
+
extra: i,
|
|
2242
|
+
watchable: !0
|
|
2243
|
+
})]);
|
|
2244
|
+
};
|
|
2245
|
+
}
|
|
2246
|
+
};
|
|
2247
|
+
const Za = new RegExp('"', "ug"), ye = [1105920, 1112319], be = l(l(l(l({}, {
|
|
2248
|
+
FontAwesome: {
|
|
2249
|
+
normal: "fas",
|
|
2250
|
+
400: "fas"
|
|
2251
|
+
}
|
|
2252
|
+
}), An), jn), _n), Lt = Object.keys(be).reduce((t, e) => (t[e.toLowerCase()] = be[e], t), {}), Ja = Object.keys(Lt).reduce((t, e) => {
|
|
2253
|
+
const n = Lt[e];
|
|
2254
|
+
return t[e] = n[900] || [...Object.entries(n)][0][1], t;
|
|
2255
|
+
}, {});
|
|
2256
|
+
function tr(t) {
|
|
2257
|
+
const e = t.replace(Za, ""), n = oa(e, 0), a = n >= ye[0] && n <= ye[1], r = e.length === 2 ? e[0] === e[1] : !1;
|
|
2258
|
+
return {
|
|
2259
|
+
value: Et(r ? e[0] : e),
|
|
2260
|
+
isSecondary: a || r
|
|
2261
|
+
};
|
|
2262
|
+
}
|
|
2263
|
+
function er(t, e) {
|
|
2264
|
+
const n = t.replace(/^['"]|['"]$/g, "").toLowerCase(), a = parseInt(e), r = isNaN(a) ? "normal" : a;
|
|
2265
|
+
return (Lt[n] || {})[r] || Ja[n];
|
|
2266
|
+
}
|
|
2267
|
+
function ve(t, e) {
|
|
2268
|
+
const n = "".concat(Rn).concat(e.replace(":", "-"));
|
|
2269
|
+
return new Promise((a, r) => {
|
|
2270
|
+
if (t.getAttribute(n) !== null)
|
|
2271
|
+
return a();
|
|
2272
|
+
const o = $(t.children).filter((p) => p.getAttribute(St) === e)[0], s = D.getComputedStyle(t, e), c = s.getPropertyValue("font-family"), f = c.match(Hn), d = s.getPropertyValue("font-weight"), h = s.getPropertyValue("content");
|
|
2273
|
+
if (o && !f)
|
|
2274
|
+
return t.removeChild(o), a();
|
|
2275
|
+
if (f && h !== "none" && h !== "") {
|
|
2276
|
+
const p = s.getPropertyValue("content");
|
|
2277
|
+
let v = er(c, d);
|
|
2278
|
+
const {
|
|
2279
|
+
value: C,
|
|
2280
|
+
isSecondary: k
|
|
2281
|
+
} = tr(p), w = f[0].startsWith("FontAwesome");
|
|
2282
|
+
let m = $t(v, C), g = m;
|
|
2283
|
+
if (w) {
|
|
2284
|
+
const b = da(C);
|
|
2285
|
+
b.iconName && b.prefix && (m = b.iconName, v = b.prefix);
|
|
2286
|
+
}
|
|
2287
|
+
if (m && !k && (!o || o.getAttribute(Yt) !== v || o.getAttribute(Ut) !== g)) {
|
|
2288
|
+
t.setAttribute(n, g), o && t.removeChild(o);
|
|
2289
|
+
const b = Wa(), {
|
|
2290
|
+
extra: x
|
|
2291
|
+
} = b;
|
|
2292
|
+
x.attributes[St] = e, Ft(m, v).then((P) => {
|
|
2293
|
+
const et = Xt(l(l({}, b), {}, {
|
|
2294
|
+
icons: {
|
|
2295
|
+
main: P,
|
|
2296
|
+
mask: Je()
|
|
2297
|
+
},
|
|
2298
|
+
prefix: v,
|
|
2299
|
+
iconName: g,
|
|
2300
|
+
extra: x,
|
|
2301
|
+
watchable: !0
|
|
2302
|
+
})), R = y.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
2303
|
+
e === "::before" ? t.insertBefore(R, t.firstChild) : t.appendChild(R), R.outerHTML = et.map((cn) => tt(cn)).join(`
|
|
2304
|
+
`), t.removeAttribute(n), a();
|
|
2305
|
+
}).catch(r);
|
|
2306
|
+
} else
|
|
2307
|
+
a();
|
|
2308
|
+
} else
|
|
2309
|
+
a();
|
|
2310
|
+
});
|
|
2311
|
+
}
|
|
2312
|
+
function nr(t) {
|
|
2313
|
+
return Promise.all([ve(t, "::before"), ve(t, "::after")]);
|
|
2314
|
+
}
|
|
2315
|
+
function ar(t) {
|
|
2316
|
+
return t.parentNode !== document.head && !~Un.indexOf(t.tagName.toUpperCase()) && !t.getAttribute(St) && (!t.parentNode || t.parentNode.tagName !== "svg");
|
|
2317
|
+
}
|
|
2318
|
+
function xe(t) {
|
|
2319
|
+
if (M)
|
|
2320
|
+
return new Promise((e, n) => {
|
|
2321
|
+
const a = $(t.querySelectorAll("*")).filter(ar).map(nr), r = Vt.begin("searchPseudoElements");
|
|
2322
|
+
rn(), Promise.all(a).then(() => {
|
|
2323
|
+
r(), Mt(), e();
|
|
2324
|
+
}).catch(() => {
|
|
2325
|
+
r(), Mt(), n();
|
|
2326
|
+
});
|
|
2327
|
+
});
|
|
2328
|
+
}
|
|
2329
|
+
var rr = {
|
|
2330
|
+
hooks() {
|
|
2331
|
+
return {
|
|
2332
|
+
mutationObserverCallbacks(t) {
|
|
2333
|
+
return t.pseudoElementsCallback = xe, t;
|
|
2334
|
+
}
|
|
2335
|
+
};
|
|
2336
|
+
},
|
|
2337
|
+
provides(t) {
|
|
2338
|
+
t.pseudoElements2svg = function(e) {
|
|
2339
|
+
const {
|
|
2340
|
+
node: n = y
|
|
2341
|
+
} = e;
|
|
2342
|
+
u.searchPseudoElements && xe(n);
|
|
2343
|
+
};
|
|
2344
|
+
}
|
|
2345
|
+
};
|
|
2346
|
+
let Ae = !1;
|
|
2347
|
+
var ir = {
|
|
2348
|
+
mixout() {
|
|
2349
|
+
return {
|
|
2350
|
+
dom: {
|
|
2351
|
+
unwatch() {
|
|
2352
|
+
rn(), Ae = !0;
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2355
|
+
};
|
|
2356
|
+
},
|
|
2357
|
+
hooks() {
|
|
2358
|
+
return {
|
|
2359
|
+
bootstrap() {
|
|
2360
|
+
ge(Ct("mutationObserverCallbacks", {}));
|
|
2361
|
+
},
|
|
2362
|
+
noAuto() {
|
|
2363
|
+
ja();
|
|
2364
|
+
},
|
|
2365
|
+
watch(t) {
|
|
2366
|
+
const {
|
|
2367
|
+
observeMutationsRoot: e
|
|
2368
|
+
} = t;
|
|
2369
|
+
Ae ? Mt() : ge(Ct("mutationObserverCallbacks", {
|
|
2370
|
+
observeMutationsRoot: e
|
|
2371
|
+
}));
|
|
2372
|
+
}
|
|
2373
|
+
};
|
|
2374
|
+
}
|
|
2375
|
+
};
|
|
2376
|
+
const we = (t) => {
|
|
2377
|
+
let e = {
|
|
2378
|
+
size: 16,
|
|
2379
|
+
x: 0,
|
|
2380
|
+
y: 0,
|
|
2381
|
+
flipX: !1,
|
|
2382
|
+
flipY: !1,
|
|
2383
|
+
rotate: 0
|
|
2384
|
+
};
|
|
2385
|
+
return t.toLowerCase().split(" ").reduce((n, a) => {
|
|
2386
|
+
const r = a.toLowerCase().split("-"), i = r[0];
|
|
2387
|
+
let o = r.slice(1).join("-");
|
|
2388
|
+
if (i && o === "h")
|
|
2389
|
+
return n.flipX = !0, n;
|
|
2390
|
+
if (i && o === "v")
|
|
2391
|
+
return n.flipY = !0, n;
|
|
2392
|
+
if (o = parseFloat(o), isNaN(o))
|
|
2393
|
+
return n;
|
|
2394
|
+
switch (i) {
|
|
2395
|
+
case "grow":
|
|
2396
|
+
n.size = n.size + o;
|
|
2397
|
+
break;
|
|
2398
|
+
case "shrink":
|
|
2399
|
+
n.size = n.size - o;
|
|
2400
|
+
break;
|
|
2401
|
+
case "left":
|
|
2402
|
+
n.x = n.x - o;
|
|
2403
|
+
break;
|
|
2404
|
+
case "right":
|
|
2405
|
+
n.x = n.x + o;
|
|
2406
|
+
break;
|
|
2407
|
+
case "up":
|
|
2408
|
+
n.y = n.y - o;
|
|
2409
|
+
break;
|
|
2410
|
+
case "down":
|
|
2411
|
+
n.y = n.y + o;
|
|
2412
|
+
break;
|
|
2413
|
+
case "rotate":
|
|
2414
|
+
n.rotate = n.rotate + o;
|
|
2415
|
+
break;
|
|
2416
|
+
}
|
|
2417
|
+
return n;
|
|
2418
|
+
}, e);
|
|
2419
|
+
};
|
|
2420
|
+
var or = {
|
|
2421
|
+
mixout() {
|
|
2422
|
+
return {
|
|
2423
|
+
parse: {
|
|
2424
|
+
transform: (t) => we(t)
|
|
2425
|
+
}
|
|
2426
|
+
};
|
|
2427
|
+
},
|
|
2428
|
+
hooks() {
|
|
2429
|
+
return {
|
|
2430
|
+
parseNodeAttributes(t, e) {
|
|
2431
|
+
const n = e.getAttribute("data-fa-transform");
|
|
2432
|
+
return n && (t.transform = we(n)), t;
|
|
2433
|
+
}
|
|
2434
|
+
};
|
|
2435
|
+
},
|
|
2436
|
+
provides(t) {
|
|
2437
|
+
t.generateAbstractTransformGrouping = function(e) {
|
|
2438
|
+
let {
|
|
2439
|
+
main: n,
|
|
2440
|
+
transform: a,
|
|
2441
|
+
containerWidth: r,
|
|
2442
|
+
iconWidth: i
|
|
2443
|
+
} = e;
|
|
2444
|
+
const o = {
|
|
2445
|
+
transform: "translate(".concat(r / 2, " 256)")
|
|
2446
|
+
}, s = "translate(".concat(a.x * 32, ", ").concat(a.y * 32, ") "), c = "scale(".concat(a.size / 16 * (a.flipX ? -1 : 1), ", ").concat(a.size / 16 * (a.flipY ? -1 : 1), ") "), f = "rotate(".concat(a.rotate, " 0 0)"), d = {
|
|
2447
|
+
transform: "".concat(s, " ").concat(c, " ").concat(f)
|
|
2448
|
+
}, h = {
|
|
2449
|
+
transform: "translate(".concat(i / 2 * -1, " -256)")
|
|
2450
|
+
}, p = {
|
|
2451
|
+
outer: o,
|
|
2452
|
+
inner: d,
|
|
2453
|
+
path: h
|
|
2454
|
+
};
|
|
2455
|
+
return {
|
|
2456
|
+
tag: "g",
|
|
2457
|
+
attributes: l({}, p.outer),
|
|
2458
|
+
children: [{
|
|
2459
|
+
tag: "g",
|
|
2460
|
+
attributes: l({}, p.inner),
|
|
2461
|
+
children: [{
|
|
2462
|
+
tag: n.icon.tag,
|
|
2463
|
+
children: n.icon.children,
|
|
2464
|
+
attributes: l(l({}, n.icon.attributes), p.path)
|
|
2465
|
+
}]
|
|
2466
|
+
}]
|
|
2467
|
+
};
|
|
2468
|
+
};
|
|
2469
|
+
}
|
|
2470
|
+
};
|
|
2471
|
+
const vt = {
|
|
2472
|
+
x: 0,
|
|
2473
|
+
y: 0,
|
|
2474
|
+
width: "100%",
|
|
2475
|
+
height: "100%"
|
|
2476
|
+
};
|
|
2477
|
+
function Se(t) {
|
|
2478
|
+
let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0;
|
|
2479
|
+
return t.attributes && (t.attributes.fill || e) && (t.attributes.fill = "black"), t;
|
|
2480
|
+
}
|
|
2481
|
+
function sr(t) {
|
|
2482
|
+
return t.tag === "g" ? t.children : [t];
|
|
2483
|
+
}
|
|
2484
|
+
var lr = {
|
|
2485
|
+
hooks() {
|
|
2486
|
+
return {
|
|
2487
|
+
parseNodeAttributes(t, e) {
|
|
2488
|
+
const n = e.getAttribute("data-fa-mask"), a = n ? mt(n.split(" ").map((r) => r.trim())) : Je();
|
|
2489
|
+
return a.prefix || (a.prefix = z()), t.mask = a, t.maskId = e.getAttribute("data-fa-mask-id"), t;
|
|
2490
|
+
}
|
|
2491
|
+
};
|
|
2492
|
+
},
|
|
2493
|
+
provides(t) {
|
|
2494
|
+
t.generateAbstractMask = function(e) {
|
|
2495
|
+
let {
|
|
2496
|
+
children: n,
|
|
2497
|
+
attributes: a,
|
|
2498
|
+
main: r,
|
|
2499
|
+
mask: i,
|
|
2500
|
+
maskId: o,
|
|
2501
|
+
transform: s
|
|
2502
|
+
} = e;
|
|
2503
|
+
const {
|
|
2504
|
+
width: c,
|
|
2505
|
+
icon: f
|
|
2506
|
+
} = r, {
|
|
2507
|
+
width: d,
|
|
2508
|
+
icon: h
|
|
2509
|
+
} = i, p = ta({
|
|
2510
|
+
transform: s,
|
|
2511
|
+
containerWidth: d,
|
|
2512
|
+
iconWidth: c
|
|
2513
|
+
}), v = {
|
|
2514
|
+
tag: "rect",
|
|
2515
|
+
attributes: l(l({}, vt), {}, {
|
|
2516
|
+
fill: "white"
|
|
2517
|
+
})
|
|
2518
|
+
}, C = f.children ? {
|
|
2519
|
+
children: f.children.map(Se)
|
|
2520
|
+
} : {}, k = {
|
|
2521
|
+
tag: "g",
|
|
2522
|
+
attributes: l({}, p.inner),
|
|
2523
|
+
children: [Se(l({
|
|
2524
|
+
tag: f.tag,
|
|
2525
|
+
attributes: l(l({}, f.attributes), p.path)
|
|
2526
|
+
}, C))]
|
|
2527
|
+
}, w = {
|
|
2528
|
+
tag: "g",
|
|
2529
|
+
attributes: l({}, p.outer),
|
|
2530
|
+
children: [k]
|
|
2531
|
+
}, m = "mask-".concat(o || Q()), g = "clip-".concat(o || Q()), b = {
|
|
2532
|
+
tag: "mask",
|
|
2533
|
+
attributes: l(l({}, vt), {}, {
|
|
2534
|
+
id: m,
|
|
2535
|
+
maskUnits: "userSpaceOnUse",
|
|
2536
|
+
maskContentUnits: "userSpaceOnUse"
|
|
2537
|
+
}),
|
|
2538
|
+
children: [v, w]
|
|
2539
|
+
}, x = {
|
|
2540
|
+
tag: "defs",
|
|
2541
|
+
children: [{
|
|
2542
|
+
tag: "clipPath",
|
|
2543
|
+
attributes: {
|
|
2544
|
+
id: g
|
|
2545
|
+
},
|
|
2546
|
+
children: sr(h)
|
|
2547
|
+
}, b]
|
|
2548
|
+
};
|
|
2549
|
+
return n.push(x, {
|
|
2550
|
+
tag: "rect",
|
|
2551
|
+
attributes: l({
|
|
2552
|
+
fill: "currentColor",
|
|
2553
|
+
"clip-path": "url(#".concat(g, ")"),
|
|
2554
|
+
mask: "url(#".concat(m, ")")
|
|
2555
|
+
}, vt)
|
|
2556
|
+
}), {
|
|
2557
|
+
children: n,
|
|
2558
|
+
attributes: a
|
|
2559
|
+
};
|
|
2560
|
+
};
|
|
2561
|
+
}
|
|
2562
|
+
}, fr = {
|
|
2563
|
+
provides(t) {
|
|
2564
|
+
let e = !1;
|
|
2565
|
+
D.matchMedia && (e = D.matchMedia("(prefers-reduced-motion: reduce)").matches), t.missingIconAbstract = function() {
|
|
2566
|
+
const n = [], a = {
|
|
2567
|
+
fill: "currentColor"
|
|
2568
|
+
}, r = {
|
|
2569
|
+
attributeType: "XML",
|
|
2570
|
+
repeatCount: "indefinite",
|
|
2571
|
+
dur: "2s"
|
|
2572
|
+
};
|
|
2573
|
+
n.push({
|
|
2574
|
+
tag: "path",
|
|
2575
|
+
attributes: l(l({}, a), {}, {
|
|
2576
|
+
d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"
|
|
2577
|
+
})
|
|
2578
|
+
});
|
|
2579
|
+
const i = l(l({}, r), {}, {
|
|
2580
|
+
attributeName: "opacity"
|
|
2581
|
+
}), o = {
|
|
2582
|
+
tag: "circle",
|
|
2583
|
+
attributes: l(l({}, a), {}, {
|
|
2584
|
+
cx: "256",
|
|
2585
|
+
cy: "364",
|
|
2586
|
+
r: "28"
|
|
2587
|
+
}),
|
|
2588
|
+
children: []
|
|
2589
|
+
};
|
|
2590
|
+
return e || o.children.push({
|
|
2591
|
+
tag: "animate",
|
|
2592
|
+
attributes: l(l({}, r), {}, {
|
|
2593
|
+
attributeName: "r",
|
|
2594
|
+
values: "28;14;28;28;14;28;"
|
|
2595
|
+
})
|
|
2596
|
+
}, {
|
|
2597
|
+
tag: "animate",
|
|
2598
|
+
attributes: l(l({}, i), {}, {
|
|
2599
|
+
values: "1;0;1;1;0;1;"
|
|
2600
|
+
})
|
|
2601
|
+
}), n.push(o), n.push({
|
|
2602
|
+
tag: "path",
|
|
2603
|
+
attributes: l(l({}, a), {}, {
|
|
2604
|
+
opacity: "1",
|
|
2605
|
+
d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"
|
|
2606
|
+
}),
|
|
2607
|
+
children: e ? [] : [{
|
|
2608
|
+
tag: "animate",
|
|
2609
|
+
attributes: l(l({}, i), {}, {
|
|
2610
|
+
values: "1;0;0;0;0;1;"
|
|
2611
|
+
})
|
|
2612
|
+
}]
|
|
2613
|
+
}), e || n.push({
|
|
2614
|
+
tag: "path",
|
|
2615
|
+
attributes: l(l({}, a), {}, {
|
|
2616
|
+
opacity: "0",
|
|
2617
|
+
d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"
|
|
2618
|
+
}),
|
|
2619
|
+
children: [{
|
|
2620
|
+
tag: "animate",
|
|
2621
|
+
attributes: l(l({}, i), {}, {
|
|
2622
|
+
values: "0;0;1;1;0;0;"
|
|
2623
|
+
})
|
|
2624
|
+
}]
|
|
2625
|
+
}), {
|
|
2626
|
+
tag: "g",
|
|
2627
|
+
attributes: {
|
|
2628
|
+
class: "missing"
|
|
2629
|
+
},
|
|
2630
|
+
children: n
|
|
2631
|
+
};
|
|
2632
|
+
};
|
|
2633
|
+
}
|
|
2634
|
+
}, cr = {
|
|
2635
|
+
hooks() {
|
|
2636
|
+
return {
|
|
2637
|
+
parseNodeAttributes(t, e) {
|
|
2638
|
+
const n = e.getAttribute("data-fa-symbol"), a = n === null ? !1 : n === "" ? !0 : n;
|
|
2639
|
+
return t.symbol = a, t;
|
|
2640
|
+
}
|
|
2641
|
+
};
|
|
2642
|
+
}
|
|
2643
|
+
}, ur = [aa, Va, Ka, qa, Qa, rr, ir, or, lr, fr, cr];
|
|
2644
|
+
Aa(ur, {
|
|
2645
|
+
mixoutsTo: O
|
|
2646
|
+
});
|
|
2647
|
+
O.noAuto;
|
|
2648
|
+
const sn = O.config;
|
|
2649
|
+
O.library;
|
|
2650
|
+
O.dom;
|
|
2651
|
+
const lt = O.parse;
|
|
2652
|
+
O.findIconDefinition;
|
|
2653
|
+
O.toHtml;
|
|
2654
|
+
const dr = O.icon;
|
|
2655
|
+
O.layer;
|
|
2656
|
+
const mr = O.text;
|
|
2657
|
+
O.counter;
|
|
2658
|
+
function Oe(t, e) {
|
|
2659
|
+
var n = Object.keys(t);
|
|
2660
|
+
if (Object.getOwnPropertySymbols) {
|
|
2661
|
+
var a = Object.getOwnPropertySymbols(t);
|
|
2662
|
+
e && (a = a.filter(function(r) {
|
|
2663
|
+
return Object.getOwnPropertyDescriptor(t, r).enumerable;
|
|
2664
|
+
})), n.push.apply(n, a);
|
|
2665
|
+
}
|
|
2666
|
+
return n;
|
|
2667
|
+
}
|
|
2668
|
+
function I(t) {
|
|
2669
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
2670
|
+
var n = arguments[e] != null ? arguments[e] : {};
|
|
2671
|
+
e % 2 ? Oe(Object(n), !0).forEach(function(a) {
|
|
2672
|
+
S(t, a, n[a]);
|
|
2673
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : Oe(Object(n)).forEach(function(a) {
|
|
2674
|
+
Object.defineProperty(t, a, Object.getOwnPropertyDescriptor(n, a));
|
|
2675
|
+
});
|
|
2676
|
+
}
|
|
2677
|
+
return t;
|
|
2678
|
+
}
|
|
2679
|
+
function gr(t, e) {
|
|
2680
|
+
if (typeof t != "object" || !t) return t;
|
|
2681
|
+
var n = t[Symbol.toPrimitive];
|
|
2682
|
+
if (n !== void 0) {
|
|
2683
|
+
var a = n.call(t, e);
|
|
2684
|
+
if (typeof a != "object") return a;
|
|
2685
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
2686
|
+
}
|
|
2687
|
+
return (e === "string" ? String : Number)(t);
|
|
2688
|
+
}
|
|
2689
|
+
function pr(t) {
|
|
2690
|
+
var e = gr(t, "string");
|
|
2691
|
+
return typeof e == "symbol" ? e : e + "";
|
|
2692
|
+
}
|
|
2693
|
+
function ft(t) {
|
|
2694
|
+
"@babel/helpers - typeof";
|
|
2695
|
+
return ft = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
|
|
2696
|
+
return typeof e;
|
|
2697
|
+
} : function(e) {
|
|
2698
|
+
return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
|
|
2699
|
+
}, ft(t);
|
|
2700
|
+
}
|
|
2701
|
+
function S(t, e, n) {
|
|
2702
|
+
return e = pr(e), e in t ? Object.defineProperty(t, e, {
|
|
2703
|
+
value: n,
|
|
2704
|
+
enumerable: !0,
|
|
2705
|
+
configurable: !0,
|
|
2706
|
+
writable: !0
|
|
2707
|
+
}) : t[e] = n, t;
|
|
2708
|
+
}
|
|
2709
|
+
function hr(t, e) {
|
|
2710
|
+
if (t == null) return {};
|
|
2711
|
+
var n = {};
|
|
2712
|
+
for (var a in t)
|
|
2713
|
+
if (Object.prototype.hasOwnProperty.call(t, a)) {
|
|
2714
|
+
if (e.indexOf(a) >= 0) continue;
|
|
2715
|
+
n[a] = t[a];
|
|
2716
|
+
}
|
|
2717
|
+
return n;
|
|
2718
|
+
}
|
|
2719
|
+
function yr(t, e) {
|
|
2720
|
+
if (t == null) return {};
|
|
2721
|
+
var n = hr(t, e), a, r;
|
|
2722
|
+
if (Object.getOwnPropertySymbols) {
|
|
2723
|
+
var i = Object.getOwnPropertySymbols(t);
|
|
2724
|
+
for (r = 0; r < i.length; r++)
|
|
2725
|
+
a = i[r], !(e.indexOf(a) >= 0) && Object.prototype.propertyIsEnumerable.call(t, a) && (n[a] = t[a]);
|
|
2726
|
+
}
|
|
2727
|
+
return n;
|
|
2728
|
+
}
|
|
2729
|
+
function Dt(t) {
|
|
2730
|
+
return br(t) || vr(t) || xr(t) || Ar();
|
|
2731
|
+
}
|
|
2732
|
+
function br(t) {
|
|
2733
|
+
if (Array.isArray(t)) return zt(t);
|
|
2734
|
+
}
|
|
2735
|
+
function vr(t) {
|
|
2736
|
+
if (typeof Symbol < "u" && t[Symbol.iterator] != null || t["@@iterator"] != null) return Array.from(t);
|
|
2737
|
+
}
|
|
2738
|
+
function xr(t, e) {
|
|
2739
|
+
if (t) {
|
|
2740
|
+
if (typeof t == "string") return zt(t, e);
|
|
2741
|
+
var n = Object.prototype.toString.call(t).slice(8, -1);
|
|
2742
|
+
if (n === "Object" && t.constructor && (n = t.constructor.name), n === "Map" || n === "Set") return Array.from(t);
|
|
2743
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return zt(t, e);
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
function zt(t, e) {
|
|
2747
|
+
(e == null || e > t.length) && (e = t.length);
|
|
2748
|
+
for (var n = 0, a = new Array(e); n < e; n++) a[n] = t[n];
|
|
2749
|
+
return a;
|
|
2750
|
+
}
|
|
2751
|
+
function Ar() {
|
|
2752
|
+
throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
2753
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
|
|
2754
|
+
}
|
|
2755
|
+
var wr = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}, ln = { exports: {} };
|
|
2756
|
+
(function(t) {
|
|
2757
|
+
(function(e) {
|
|
2758
|
+
var n = function(m, g, b) {
|
|
2759
|
+
if (!f(g) || h(g) || p(g) || v(g) || c(g))
|
|
2760
|
+
return g;
|
|
2761
|
+
var x, P = 0, et = 0;
|
|
2762
|
+
if (d(g))
|
|
2763
|
+
for (x = [], et = g.length; P < et; P++)
|
|
2764
|
+
x.push(n(m, g[P], b));
|
|
2765
|
+
else {
|
|
2766
|
+
x = {};
|
|
2767
|
+
for (var R in g)
|
|
2768
|
+
Object.prototype.hasOwnProperty.call(g, R) && (x[m(R, b)] = n(m, g[R], b));
|
|
2769
|
+
}
|
|
2770
|
+
return x;
|
|
2771
|
+
}, a = function(m, g) {
|
|
2772
|
+
g = g || {};
|
|
2773
|
+
var b = g.separator || "_", x = g.split || /(?=[A-Z])/;
|
|
2774
|
+
return m.split(x).join(b);
|
|
2775
|
+
}, r = function(m) {
|
|
2776
|
+
return C(m) ? m : (m = m.replace(/[\-_\s]+(.)?/g, function(g, b) {
|
|
2777
|
+
return b ? b.toUpperCase() : "";
|
|
2778
|
+
}), m.substr(0, 1).toLowerCase() + m.substr(1));
|
|
2779
|
+
}, i = function(m) {
|
|
2780
|
+
var g = r(m);
|
|
2781
|
+
return g.substr(0, 1).toUpperCase() + g.substr(1);
|
|
2782
|
+
}, o = function(m, g) {
|
|
2783
|
+
return a(m, g).toLowerCase();
|
|
2784
|
+
}, s = Object.prototype.toString, c = function(m) {
|
|
2785
|
+
return typeof m == "function";
|
|
2786
|
+
}, f = function(m) {
|
|
2787
|
+
return m === Object(m);
|
|
2788
|
+
}, d = function(m) {
|
|
2789
|
+
return s.call(m) == "[object Array]";
|
|
2790
|
+
}, h = function(m) {
|
|
2791
|
+
return s.call(m) == "[object Date]";
|
|
2792
|
+
}, p = function(m) {
|
|
2793
|
+
return s.call(m) == "[object RegExp]";
|
|
2794
|
+
}, v = function(m) {
|
|
2795
|
+
return s.call(m) == "[object Boolean]";
|
|
2796
|
+
}, C = function(m) {
|
|
2797
|
+
return m = m - 0, m === m;
|
|
2798
|
+
}, k = function(m, g) {
|
|
2799
|
+
var b = g && "process" in g ? g.process : g;
|
|
2800
|
+
return typeof b != "function" ? m : function(x, P) {
|
|
2801
|
+
return b(x, m, P);
|
|
2802
|
+
};
|
|
2803
|
+
}, w = {
|
|
2804
|
+
camelize: r,
|
|
2805
|
+
decamelize: o,
|
|
2806
|
+
pascalize: i,
|
|
2807
|
+
depascalize: o,
|
|
2808
|
+
camelizeKeys: function(m, g) {
|
|
2809
|
+
return n(k(r, g), m);
|
|
2810
|
+
},
|
|
2811
|
+
decamelizeKeys: function(m, g) {
|
|
2812
|
+
return n(k(o, g), m, g);
|
|
2813
|
+
},
|
|
2814
|
+
pascalizeKeys: function(m, g) {
|
|
2815
|
+
return n(k(i, g), m);
|
|
2816
|
+
},
|
|
2817
|
+
depascalizeKeys: function() {
|
|
2818
|
+
return this.decamelizeKeys.apply(this, arguments);
|
|
2819
|
+
}
|
|
2820
|
+
};
|
|
2821
|
+
t.exports ? t.exports = w : e.humps = w;
|
|
2822
|
+
})(wr);
|
|
2823
|
+
})(ln);
|
|
2824
|
+
var Sr = ln.exports, Or = ["class", "style"];
|
|
2825
|
+
function Pr(t) {
|
|
2826
|
+
return t.split(";").map(function(e) {
|
|
2827
|
+
return e.trim();
|
|
2828
|
+
}).filter(function(e) {
|
|
2829
|
+
return e;
|
|
2830
|
+
}).reduce(function(e, n) {
|
|
2831
|
+
var a = n.indexOf(":"), r = Sr.camelize(n.slice(0, a)), i = n.slice(a + 1).trim();
|
|
2832
|
+
return e[r] = i, e;
|
|
2833
|
+
}, {});
|
|
2834
|
+
}
|
|
2835
|
+
function kr(t) {
|
|
2836
|
+
return t.split(/\s+/).reduce(function(e, n) {
|
|
2837
|
+
return e[n] = !0, e;
|
|
2838
|
+
}, {});
|
|
2839
|
+
}
|
|
2840
|
+
function qt(t) {
|
|
2841
|
+
var e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
2842
|
+
if (typeof t == "string")
|
|
2843
|
+
return t;
|
|
2844
|
+
var a = (t.children || []).map(function(c) {
|
|
2845
|
+
return qt(c);
|
|
2846
|
+
}), r = Object.keys(t.attributes || {}).reduce(function(c, f) {
|
|
2847
|
+
var d = t.attributes[f];
|
|
2848
|
+
switch (f) {
|
|
2849
|
+
case "class":
|
|
2850
|
+
c.class = kr(d);
|
|
2851
|
+
break;
|
|
2852
|
+
case "style":
|
|
2853
|
+
c.style = Pr(d);
|
|
2854
|
+
break;
|
|
2855
|
+
default:
|
|
2856
|
+
c.attrs[f] = d;
|
|
2857
|
+
}
|
|
2858
|
+
return c;
|
|
2859
|
+
}, {
|
|
2860
|
+
attrs: {},
|
|
2861
|
+
class: {},
|
|
2862
|
+
style: {}
|
|
2863
|
+
});
|
|
2864
|
+
n.class;
|
|
2865
|
+
var i = n.style, o = i === void 0 ? {} : i, s = yr(n, Or);
|
|
2866
|
+
return ke(t.tag, I(I(I({}, e), {}, {
|
|
2867
|
+
class: r.class,
|
|
2868
|
+
style: I(I({}, r.style), o)
|
|
2869
|
+
}, r.attrs), s), a);
|
|
2870
|
+
}
|
|
2871
|
+
var fn = !1;
|
|
2872
|
+
try {
|
|
2873
|
+
fn = process.env.NODE_ENV === "production";
|
|
2874
|
+
} catch {
|
|
2875
|
+
}
|
|
2876
|
+
function Er() {
|
|
2877
|
+
if (!fn && console && typeof console.error == "function") {
|
|
2878
|
+
var t;
|
|
2879
|
+
(t = console).error.apply(t, arguments);
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
function q(t, e) {
|
|
2883
|
+
return Array.isArray(e) && e.length > 0 || !Array.isArray(e) && e ? S({}, t, e) : {};
|
|
2884
|
+
}
|
|
2885
|
+
function Ir(t) {
|
|
2886
|
+
var e, n = (e = {
|
|
2887
|
+
"fa-spin": t.spin,
|
|
2888
|
+
"fa-pulse": t.pulse,
|
|
2889
|
+
"fa-fw": t.fixedWidth,
|
|
2890
|
+
"fa-border": t.border,
|
|
2891
|
+
"fa-li": t.listItem,
|
|
2892
|
+
"fa-inverse": t.inverse,
|
|
2893
|
+
"fa-flip": t.flip === !0,
|
|
2894
|
+
"fa-flip-horizontal": t.flip === "horizontal" || t.flip === "both",
|
|
2895
|
+
"fa-flip-vertical": t.flip === "vertical" || t.flip === "both"
|
|
2896
|
+
}, S(S(S(S(S(S(S(S(S(S(e, "fa-".concat(t.size), t.size !== null), "fa-rotate-".concat(t.rotation), t.rotation !== null), "fa-pull-".concat(t.pull), t.pull !== null), "fa-swap-opacity", t.swapOpacity), "fa-bounce", t.bounce), "fa-shake", t.shake), "fa-beat", t.beat), "fa-fade", t.fade), "fa-beat-fade", t.beatFade), "fa-flash", t.flash), S(S(e, "fa-spin-pulse", t.spinPulse), "fa-spin-reverse", t.spinReverse));
|
|
2897
|
+
return Object.keys(n).map(function(a) {
|
|
2898
|
+
return n[a] ? a : null;
|
|
2899
|
+
}).filter(function(a) {
|
|
2900
|
+
return a;
|
|
2901
|
+
});
|
|
2902
|
+
}
|
|
2903
|
+
function Pe(t) {
|
|
2904
|
+
if (t && ft(t) === "object" && t.prefix && t.iconName && t.icon)
|
|
2905
|
+
return t;
|
|
2906
|
+
if (lt.icon)
|
|
2907
|
+
return lt.icon(t);
|
|
2908
|
+
if (t === null)
|
|
2909
|
+
return null;
|
|
2910
|
+
if (ft(t) === "object" && t.prefix && t.iconName)
|
|
2911
|
+
return t;
|
|
2912
|
+
if (Array.isArray(t) && t.length === 2)
|
|
2913
|
+
return {
|
|
2914
|
+
prefix: t[0],
|
|
2915
|
+
iconName: t[1]
|
|
2916
|
+
};
|
|
2917
|
+
if (typeof t == "string")
|
|
2918
|
+
return {
|
|
2919
|
+
prefix: "fas",
|
|
2920
|
+
iconName: t
|
|
2921
|
+
};
|
|
2922
|
+
}
|
|
2923
|
+
var Nr = jt({
|
|
2924
|
+
name: "FontAwesomeIcon",
|
|
2925
|
+
props: {
|
|
2926
|
+
border: {
|
|
2927
|
+
type: Boolean,
|
|
2928
|
+
default: !1
|
|
2929
|
+
},
|
|
2930
|
+
fixedWidth: {
|
|
2931
|
+
type: Boolean,
|
|
2932
|
+
default: !1
|
|
2933
|
+
},
|
|
2934
|
+
flip: {
|
|
2935
|
+
type: [Boolean, String],
|
|
2936
|
+
default: !1,
|
|
2937
|
+
validator: function(e) {
|
|
2938
|
+
return [!0, !1, "horizontal", "vertical", "both"].indexOf(e) > -1;
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
icon: {
|
|
2942
|
+
type: [Object, Array, String],
|
|
2943
|
+
required: !0
|
|
2944
|
+
},
|
|
2945
|
+
mask: {
|
|
2946
|
+
type: [Object, Array, String],
|
|
2947
|
+
default: null
|
|
2948
|
+
},
|
|
2949
|
+
maskId: {
|
|
2950
|
+
type: String,
|
|
2951
|
+
default: null
|
|
2952
|
+
},
|
|
2953
|
+
listItem: {
|
|
2954
|
+
type: Boolean,
|
|
2955
|
+
default: !1
|
|
2956
|
+
},
|
|
2957
|
+
pull: {
|
|
2958
|
+
type: String,
|
|
2959
|
+
default: null,
|
|
2960
|
+
validator: function(e) {
|
|
2961
|
+
return ["right", "left"].indexOf(e) > -1;
|
|
2962
|
+
}
|
|
2963
|
+
},
|
|
2964
|
+
pulse: {
|
|
2965
|
+
type: Boolean,
|
|
2966
|
+
default: !1
|
|
2967
|
+
},
|
|
2968
|
+
rotation: {
|
|
2969
|
+
type: [String, Number],
|
|
2970
|
+
default: null,
|
|
2971
|
+
validator: function(e) {
|
|
2972
|
+
return [90, 180, 270].indexOf(Number.parseInt(e, 10)) > -1;
|
|
2973
|
+
}
|
|
2974
|
+
},
|
|
2975
|
+
swapOpacity: {
|
|
2976
|
+
type: Boolean,
|
|
2977
|
+
default: !1
|
|
2978
|
+
},
|
|
2979
|
+
size: {
|
|
2980
|
+
type: String,
|
|
2981
|
+
default: null,
|
|
2982
|
+
validator: function(e) {
|
|
2983
|
+
return ["2xs", "xs", "sm", "lg", "xl", "2xl", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x"].indexOf(e) > -1;
|
|
2984
|
+
}
|
|
2985
|
+
},
|
|
2986
|
+
spin: {
|
|
2987
|
+
type: Boolean,
|
|
2988
|
+
default: !1
|
|
2989
|
+
},
|
|
2990
|
+
transform: {
|
|
2991
|
+
type: [String, Object],
|
|
2992
|
+
default: null
|
|
2993
|
+
},
|
|
2994
|
+
symbol: {
|
|
2995
|
+
type: [Boolean, String],
|
|
2996
|
+
default: !1
|
|
2997
|
+
},
|
|
2998
|
+
title: {
|
|
2999
|
+
type: String,
|
|
3000
|
+
default: null
|
|
3001
|
+
},
|
|
3002
|
+
titleId: {
|
|
3003
|
+
type: String,
|
|
3004
|
+
default: null
|
|
3005
|
+
},
|
|
3006
|
+
inverse: {
|
|
3007
|
+
type: Boolean,
|
|
3008
|
+
default: !1
|
|
3009
|
+
},
|
|
3010
|
+
bounce: {
|
|
3011
|
+
type: Boolean,
|
|
3012
|
+
default: !1
|
|
3013
|
+
},
|
|
3014
|
+
shake: {
|
|
3015
|
+
type: Boolean,
|
|
3016
|
+
default: !1
|
|
3017
|
+
},
|
|
3018
|
+
beat: {
|
|
3019
|
+
type: Boolean,
|
|
3020
|
+
default: !1
|
|
3021
|
+
},
|
|
3022
|
+
fade: {
|
|
3023
|
+
type: Boolean,
|
|
3024
|
+
default: !1
|
|
3025
|
+
},
|
|
3026
|
+
beatFade: {
|
|
3027
|
+
type: Boolean,
|
|
3028
|
+
default: !1
|
|
3029
|
+
},
|
|
3030
|
+
flash: {
|
|
3031
|
+
type: Boolean,
|
|
3032
|
+
default: !1
|
|
3033
|
+
},
|
|
3034
|
+
spinPulse: {
|
|
3035
|
+
type: Boolean,
|
|
3036
|
+
default: !1
|
|
3037
|
+
},
|
|
3038
|
+
spinReverse: {
|
|
3039
|
+
type: Boolean,
|
|
3040
|
+
default: !1
|
|
3041
|
+
}
|
|
3042
|
+
},
|
|
3043
|
+
setup: function(e, n) {
|
|
3044
|
+
var a = n.attrs, r = E(function() {
|
|
3045
|
+
return Pe(e.icon);
|
|
3046
|
+
}), i = E(function() {
|
|
3047
|
+
return q("classes", Ir(e));
|
|
3048
|
+
}), o = E(function() {
|
|
3049
|
+
return q("transform", typeof e.transform == "string" ? lt.transform(e.transform) : e.transform);
|
|
3050
|
+
}), s = E(function() {
|
|
3051
|
+
return q("mask", Pe(e.mask));
|
|
3052
|
+
}), c = E(function() {
|
|
3053
|
+
return dr(r.value, I(I(I(I({}, i.value), o.value), s.value), {}, {
|
|
3054
|
+
symbol: e.symbol,
|
|
3055
|
+
title: e.title,
|
|
3056
|
+
titleId: e.titleId,
|
|
3057
|
+
maskId: e.maskId
|
|
3058
|
+
}));
|
|
3059
|
+
});
|
|
3060
|
+
un(c, function(d) {
|
|
3061
|
+
if (!d)
|
|
3062
|
+
return Er("Could not find one or more icon(s)", r.value, s.value);
|
|
3063
|
+
}, {
|
|
3064
|
+
immediate: !0
|
|
3065
|
+
});
|
|
3066
|
+
var f = E(function() {
|
|
3067
|
+
return c.value ? qt(c.value.abstract[0], {}, a) : null;
|
|
3068
|
+
});
|
|
3069
|
+
return function() {
|
|
3070
|
+
return f.value;
|
|
3071
|
+
};
|
|
3072
|
+
}
|
|
3073
|
+
}), _r = jt({
|
|
3074
|
+
name: "FontAwesomeLayers",
|
|
3075
|
+
props: {
|
|
3076
|
+
fixedWidth: {
|
|
3077
|
+
type: Boolean,
|
|
3078
|
+
default: !1
|
|
3079
|
+
}
|
|
3080
|
+
},
|
|
3081
|
+
setup: function(e, n) {
|
|
3082
|
+
var a = n.slots, r = sn.familyPrefix, i = E(function() {
|
|
3083
|
+
return ["".concat(r, "-layers")].concat(Dt(e.fixedWidth ? ["".concat(r, "-fw")] : []));
|
|
3084
|
+
});
|
|
3085
|
+
return function() {
|
|
3086
|
+
return ke("div", {
|
|
3087
|
+
class: i.value
|
|
3088
|
+
}, a.default ? a.default() : []);
|
|
3089
|
+
};
|
|
3090
|
+
}
|
|
3091
|
+
}), Fr = jt({
|
|
3092
|
+
name: "FontAwesomeLayersText",
|
|
3093
|
+
props: {
|
|
3094
|
+
value: {
|
|
3095
|
+
type: [String, Number],
|
|
3096
|
+
default: ""
|
|
3097
|
+
},
|
|
3098
|
+
transform: {
|
|
3099
|
+
type: [String, Object],
|
|
3100
|
+
default: null
|
|
3101
|
+
},
|
|
3102
|
+
counter: {
|
|
3103
|
+
type: Boolean,
|
|
3104
|
+
default: !1
|
|
3105
|
+
},
|
|
3106
|
+
position: {
|
|
3107
|
+
type: String,
|
|
3108
|
+
default: null,
|
|
3109
|
+
validator: function(e) {
|
|
3110
|
+
return ["bottom-left", "bottom-right", "top-left", "top-right"].indexOf(e) > -1;
|
|
3111
|
+
}
|
|
3112
|
+
}
|
|
3113
|
+
},
|
|
3114
|
+
setup: function(e, n) {
|
|
3115
|
+
var a = n.attrs, r = sn.familyPrefix, i = E(function() {
|
|
3116
|
+
return q("classes", [].concat(Dt(e.counter ? ["".concat(r, "-layers-counter")] : []), Dt(e.position ? ["".concat(r, "-layers-").concat(e.position)] : [])));
|
|
3117
|
+
}), o = E(function() {
|
|
3118
|
+
return q("transform", typeof e.transform == "string" ? lt.transform(e.transform) : e.transform);
|
|
3119
|
+
}), s = E(function() {
|
|
3120
|
+
var f = mr(e.value.toString(), I(I({}, o.value), i.value)), d = f.abstract;
|
|
3121
|
+
return e.counter && (d[0].attributes.class = d[0].attributes.class.replace("fa-layers-text", "")), d[0];
|
|
3122
|
+
}), c = E(function() {
|
|
3123
|
+
return qt(s.value, {}, a);
|
|
3124
|
+
});
|
|
3125
|
+
return function() {
|
|
3126
|
+
return c.value;
|
|
3127
|
+
};
|
|
3128
|
+
}
|
|
3129
|
+
});
|
|
3130
|
+
export {
|
|
3131
|
+
Nr as FontAwesomeIcon,
|
|
3132
|
+
_r as FontAwesomeLayers,
|
|
3133
|
+
Fr as FontAwesomeLayersText
|
|
3134
|
+
};
|