@phila/phila-ui-app-header 0.3.0-beta.7 → 0.3.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/NavBar/NavbarInfo.vue.d.ts +178 -0
- package/dist/components/NavBar/NavbarInfo.vue.d.ts.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +633 -264
- package/package.json +3 -3
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import { NavbarInfoProps } from '../../index';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
tooltip: ({
|
|
9
|
+
$: import('vue').ComponentInternalInstance;
|
|
10
|
+
$data: {};
|
|
11
|
+
$props: {
|
|
12
|
+
readonly trigger?: import('@phila/phila-ui-tooltip').TooltipTrigger | undefined;
|
|
13
|
+
readonly type?: import('@phila/phila-ui-tooltip').TooltipType | undefined;
|
|
14
|
+
readonly color?: import('@phila/phila-ui-tooltip').TooltipColor | undefined;
|
|
15
|
+
readonly tail?: boolean | undefined;
|
|
16
|
+
readonly placement?: import('@phila/phila-ui-tooltip').TooltipPlacement | undefined;
|
|
17
|
+
readonly title?: string | undefined;
|
|
18
|
+
readonly dismissable?: boolean | undefined;
|
|
19
|
+
readonly className?: string | undefined;
|
|
20
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
21
|
+
$attrs: {
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
$refs: {
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
} & {
|
|
27
|
+
wrapperEl: HTMLSpanElement;
|
|
28
|
+
positionerEl: HTMLSpanElement;
|
|
29
|
+
};
|
|
30
|
+
$slots: Readonly<{
|
|
31
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
32
|
+
}>;
|
|
33
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
34
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
35
|
+
$host: Element | null;
|
|
36
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
37
|
+
$el: any;
|
|
38
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('@phila/phila-ui-tooltip').TooltipProps> & Readonly<{}>, {
|
|
39
|
+
show: () => Promise<void>;
|
|
40
|
+
hide: () => void;
|
|
41
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
42
|
+
type: import('@phila/phila-ui-tooltip').TooltipType;
|
|
43
|
+
color: import('@phila/phila-ui-tooltip').TooltipColor;
|
|
44
|
+
tail: boolean;
|
|
45
|
+
placement: import('@phila/phila-ui-tooltip').TooltipPlacement;
|
|
46
|
+
trigger: import('@phila/phila-ui-tooltip').TooltipTrigger;
|
|
47
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
48
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
49
|
+
created?: (() => void) | (() => void)[];
|
|
50
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
51
|
+
mounted?: (() => void) | (() => void)[];
|
|
52
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
53
|
+
updated?: (() => void) | (() => void)[];
|
|
54
|
+
activated?: (() => void) | (() => void)[];
|
|
55
|
+
deactivated?: (() => void) | (() => void)[];
|
|
56
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
57
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
58
|
+
destroyed?: (() => void) | (() => void)[];
|
|
59
|
+
unmounted?: (() => void) | (() => void)[];
|
|
60
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
61
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
62
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
63
|
+
};
|
|
64
|
+
$forceUpdate: () => void;
|
|
65
|
+
$nextTick: typeof import('vue').nextTick;
|
|
66
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
67
|
+
} & Readonly<{
|
|
68
|
+
type: import('@phila/phila-ui-tooltip').TooltipType;
|
|
69
|
+
color: import('@phila/phila-ui-tooltip').TooltipColor;
|
|
70
|
+
tail: boolean;
|
|
71
|
+
placement: import('@phila/phila-ui-tooltip').TooltipPlacement;
|
|
72
|
+
trigger: import('@phila/phila-ui-tooltip').TooltipTrigger;
|
|
73
|
+
}> & Omit<Readonly<import('@phila/phila-ui-tooltip').TooltipProps> & Readonly<{}>, "type" | "trigger" | "color" | "tail" | "placement" | "show" | "hide"> & import('vue').ShallowUnwrapRef<{
|
|
74
|
+
show: () => Promise<void>;
|
|
75
|
+
hide: () => void;
|
|
76
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
77
|
+
$slots: {
|
|
78
|
+
default?(_: {
|
|
79
|
+
tooltipId: string;
|
|
80
|
+
isOpen: boolean;
|
|
81
|
+
}): any;
|
|
82
|
+
body?(_: {}): any;
|
|
83
|
+
};
|
|
84
|
+
}) | null;
|
|
85
|
+
};
|
|
86
|
+
rootEl: HTMLDivElement;
|
|
87
|
+
};
|
|
88
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
89
|
+
declare const __VLS_component: import('vue').DefineComponent<NavbarInfoProps, {
|
|
90
|
+
show: () => Promise<void> | undefined;
|
|
91
|
+
hide: () => void | undefined;
|
|
92
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NavbarInfoProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
93
|
+
tooltip: ({
|
|
94
|
+
$: import('vue').ComponentInternalInstance;
|
|
95
|
+
$data: {};
|
|
96
|
+
$props: {
|
|
97
|
+
readonly trigger?: import('@phila/phila-ui-tooltip').TooltipTrigger | undefined;
|
|
98
|
+
readonly type?: import('@phila/phila-ui-tooltip').TooltipType | undefined;
|
|
99
|
+
readonly color?: import('@phila/phila-ui-tooltip').TooltipColor | undefined;
|
|
100
|
+
readonly tail?: boolean | undefined;
|
|
101
|
+
readonly placement?: import('@phila/phila-ui-tooltip').TooltipPlacement | undefined;
|
|
102
|
+
readonly title?: string | undefined;
|
|
103
|
+
readonly dismissable?: boolean | undefined;
|
|
104
|
+
readonly className?: string | undefined;
|
|
105
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
106
|
+
$attrs: {
|
|
107
|
+
[x: string]: unknown;
|
|
108
|
+
};
|
|
109
|
+
$refs: {
|
|
110
|
+
[x: string]: unknown;
|
|
111
|
+
} & {
|
|
112
|
+
wrapperEl: HTMLSpanElement;
|
|
113
|
+
positionerEl: HTMLSpanElement;
|
|
114
|
+
};
|
|
115
|
+
$slots: Readonly<{
|
|
116
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
117
|
+
}>;
|
|
118
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
119
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
120
|
+
$host: Element | null;
|
|
121
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
122
|
+
$el: any;
|
|
123
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('@phila/phila-ui-tooltip').TooltipProps> & Readonly<{}>, {
|
|
124
|
+
show: () => Promise<void>;
|
|
125
|
+
hide: () => void;
|
|
126
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
127
|
+
type: import('@phila/phila-ui-tooltip').TooltipType;
|
|
128
|
+
color: import('@phila/phila-ui-tooltip').TooltipColor;
|
|
129
|
+
tail: boolean;
|
|
130
|
+
placement: import('@phila/phila-ui-tooltip').TooltipPlacement;
|
|
131
|
+
trigger: import('@phila/phila-ui-tooltip').TooltipTrigger;
|
|
132
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
133
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
134
|
+
created?: (() => void) | (() => void)[];
|
|
135
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
136
|
+
mounted?: (() => void) | (() => void)[];
|
|
137
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
138
|
+
updated?: (() => void) | (() => void)[];
|
|
139
|
+
activated?: (() => void) | (() => void)[];
|
|
140
|
+
deactivated?: (() => void) | (() => void)[];
|
|
141
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
142
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
143
|
+
destroyed?: (() => void) | (() => void)[];
|
|
144
|
+
unmounted?: (() => void) | (() => void)[];
|
|
145
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
146
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
147
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
148
|
+
};
|
|
149
|
+
$forceUpdate: () => void;
|
|
150
|
+
$nextTick: typeof import('vue').nextTick;
|
|
151
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
152
|
+
} & Readonly<{
|
|
153
|
+
type: import('@phila/phila-ui-tooltip').TooltipType;
|
|
154
|
+
color: import('@phila/phila-ui-tooltip').TooltipColor;
|
|
155
|
+
tail: boolean;
|
|
156
|
+
placement: import('@phila/phila-ui-tooltip').TooltipPlacement;
|
|
157
|
+
trigger: import('@phila/phila-ui-tooltip').TooltipTrigger;
|
|
158
|
+
}> & Omit<Readonly<import('@phila/phila-ui-tooltip').TooltipProps> & Readonly<{}>, "type" | "trigger" | "color" | "tail" | "placement" | "show" | "hide"> & import('vue').ShallowUnwrapRef<{
|
|
159
|
+
show: () => Promise<void>;
|
|
160
|
+
hide: () => void;
|
|
161
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
162
|
+
$slots: {
|
|
163
|
+
default?(_: {
|
|
164
|
+
tooltipId: string;
|
|
165
|
+
isOpen: boolean;
|
|
166
|
+
}): any;
|
|
167
|
+
body?(_: {}): any;
|
|
168
|
+
};
|
|
169
|
+
}) | null;
|
|
170
|
+
}, HTMLDivElement>;
|
|
171
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
172
|
+
export default _default;
|
|
173
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
174
|
+
new (): {
|
|
175
|
+
$slots: S;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
//# sourceMappingURL=NavbarInfo.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavbarInfo.vue.d.ts","sourceRoot":"","sources":["../../../src/components/NavBar/NavbarInfo.vue"],"names":[],"mappings":"AA+FA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAkBnD,iBAAS,cAAc;WAyGT,OAAO,IAA6B;;yBAXpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAqD0kiB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;EArChuiB;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwBsliB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;kBAf/tiB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
#trusted-site[data-v-3fc90bb2]{width:100%;height:3rem;padding:0 var(--spacing-l);box-sizing:border-box;background-color:var(--ghost-grey-500-ghost-grey)}#trusted-site .content[data-v-3fc90bb2]{color:var(--Schemes-On-Surface);font-size:var(--Body-ExtraSmall-font-body-xs-size)}#trusted-site button[data-v-3fc90bb2]{--Schemes-Surface-Container-Lowest: transparent;font-size:var(--Body-ExtraSmall-font-body-xs-size)!important}#trusted-site .trusted-toggle[data-v-3fc90bb2]{height:100%}#trusted-site-info[data-v-3fc90bb2]{background-color:var(--ghost-grey-500-ghost-grey)}#trusted-site-info .circle-icon[data-v-3fc90bb2]{border:solid 1px currentColor;border-radius:100%;font-size:var(--scale-250);aspect-ratio:1;display:inline-flex;justify-content:center;align-content:center}#trusted-site-info .info-item:first-child .trusted-icon[data-v-3fc90bb2]{color:var(--Schemes-Secondary)}#trusted-site-info .info-item:last-child .trusted-icon[data-v-3fc90bb2]{color:var(--Palettes-Success-Success-400)}.phila-navbar-logo[data-v-3011c249]{font-size:1.2rem}.phila-navbar-logo.logo--single-line[data-v-3011c249]{font-size:1.6rem}body:has(.phila-navbar .phila-navbar-item-flyout-active){overflow:hidden}.phila-navbar[data-v-caf52a6d]{display:flex;justify-content:space-between;background-color:var(--union-blue-500-union-blue);column-gap:var(--spacing-3xl);height:5rem;overflow-x:clip;overflow-y:visible}.phila-navbar .phila-navbar-brand[data-v-caf52a6d],.phila-navbar .phila-navbar-list[data-v-caf52a6d],.phila-navbar .phila-navbar-search[data-v-caf52a6d],.phila-navbar .phila-navbar-end[data-v-caf52a6d],.phila-navbar .phila-navbar-item[data-v-caf52a6d],.phila-navbar .phila-navbar-burger[data-v-caf52a6d]{display:flex}[data-v-caf52a6d] a.phila-navbar-link,.phila-navbar a.phila-navbar-link[data-v-caf52a6d]{text-decoration:none;color:var(--Schemes-On-Inverse-Surface-Bright)}[data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]{list-style:none;padding:0;margin:0;column-gap:var(--spacing-l)}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item{height:100%;display:flex;align-items:center}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link{display:flex;align-items:center;height:100%}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:hover,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:active,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link.phila-navbar-item-flyout-active{color:var(--union-blue-200-union-blue);background-color:var(--Palettes-Secondary-Secondary-650)}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:active,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link.phila-navbar-item-flyout-active{outline-offset:0!important}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:focus{outline:2px solid var(--Focus-Ring-Color);outline-offset:2px}[data-v-caf52a6d] .phila-navbar-burger,.phila-navbar .phila-navbar-burger[data-v-caf52a6d]{flex:0 0 auto;aspect-ratio:1;height:5rem!important;width:5rem!important;align-items:center;justify-content:center;background-color:var(--flyers-orange-450-flyers-orange);border-radius:0!important;font-size:var(--scale-400);color:var(--Schemes-On-Surface);box-shadow:none}:is([data-v-caf52a6d] .phila-navbar-burger,.phila-navbar .phila-navbar-burger[data-v-caf52a6d]).phila-navbar-item-flyout-active{color:var(--Schemes-Primary, #2176d2);background-color:var(--Schemes-Surface-Container-Low)}[data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]{flex:1 1 auto;align-items:center}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) a{font-weight:400}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) img:hover{opacity:.8}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) .phila-navbar-brand-link{margin-left:var(--spacing-xl)}[data-v-caf52a6d] .nav-flyout,.phila-navbar .nav-flyout[data-v-caf52a6d]{position:absolute;top:var(--nav-height);left:0;width:100%;z-index:9999;overflow-y:auto;max-height:calc(100vh - var(--nav-bottom))}[data-v-caf52a6d] .phila-navbar-search,.phila-navbar .phila-navbar-search[data-v-caf52a6d]{flex:0 0 auto;align-items:center}:is([data-v-caf52a6d] .phila-navbar-search,.phila-navbar .phila-navbar-search[data-v-caf52a6d]) button{background-color:var(--Schemes-Primary);box-shadow:none}[data-v-caf52a6d] .phila-navbar-end,.phila-navbar .phila-navbar-end[data-v-caf52a6d]{flex:0 0 auto;align-items:center;padding-right:var(--spacing-l)}.site-wide-alert{display:flex;align-items:center;gap:var(--spacing-m, 1rem);align-self:stretch;background:var(--Schemes-Alert-Container, #ffe9b0)}.alert-content{display:flex;max-width:60rem;padding:var(--spacing-m, 1rem) var(--spacing-l, 1.5rem);align-items:flex-start;gap:var(--spacing-m, 1rem);flex:1 0 0}
|
|
1
|
+
#trusted-site[data-v-3fc90bb2]{width:100%;height:3rem;padding:0 var(--spacing-l);box-sizing:border-box;background-color:var(--ghost-grey-500-ghost-grey)}#trusted-site .content[data-v-3fc90bb2]{color:var(--Schemes-On-Surface);font-size:var(--Body-ExtraSmall-font-body-xs-size)}#trusted-site button[data-v-3fc90bb2]{--Schemes-Surface-Container-Lowest: transparent;font-size:var(--Body-ExtraSmall-font-body-xs-size)!important}#trusted-site .trusted-toggle[data-v-3fc90bb2]{height:100%}#trusted-site-info[data-v-3fc90bb2]{background-color:var(--ghost-grey-500-ghost-grey)}#trusted-site-info .circle-icon[data-v-3fc90bb2]{border:solid 1px currentColor;border-radius:100%;font-size:var(--scale-250);aspect-ratio:1;display:inline-flex;justify-content:center;align-content:center}#trusted-site-info .info-item:first-child .trusted-icon[data-v-3fc90bb2]{color:var(--Schemes-Secondary)}#trusted-site-info .info-item:last-child .trusted-icon[data-v-3fc90bb2]{color:var(--Palettes-Success-Success-400)}.phila-navbar-logo[data-v-3011c249]{font-size:1.2rem}.phila-navbar-logo.logo--single-line[data-v-3011c249]{font-size:1.6rem}body:has(.phila-navbar .phila-navbar-item-flyout-active){overflow:hidden}.phila-navbar[data-v-caf52a6d]{display:flex;justify-content:space-between;background-color:var(--union-blue-500-union-blue);column-gap:var(--spacing-3xl);height:5rem;overflow-x:clip;overflow-y:visible}.phila-navbar .phila-navbar-brand[data-v-caf52a6d],.phila-navbar .phila-navbar-list[data-v-caf52a6d],.phila-navbar .phila-navbar-search[data-v-caf52a6d],.phila-navbar .phila-navbar-end[data-v-caf52a6d],.phila-navbar .phila-navbar-item[data-v-caf52a6d],.phila-navbar .phila-navbar-burger[data-v-caf52a6d]{display:flex}[data-v-caf52a6d] a.phila-navbar-link,.phila-navbar a.phila-navbar-link[data-v-caf52a6d]{text-decoration:none;color:var(--Schemes-On-Inverse-Surface-Bright)}[data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]{list-style:none;padding:0;margin:0;column-gap:var(--spacing-l)}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item{height:100%;display:flex;align-items:center}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link{display:flex;align-items:center;height:100%}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:hover,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:active,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link.phila-navbar-item-flyout-active{color:var(--union-blue-200-union-blue);background-color:var(--Palettes-Secondary-Secondary-650)}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:active,:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link.phila-navbar-item-flyout-active{outline-offset:0!important}:is([data-v-caf52a6d] .phila-navbar-list,.phila-navbar .phila-navbar-list[data-v-caf52a6d]) .phila-navbar-link-list-item .phila-navbar-link:focus{outline:2px solid var(--Focus-Ring-Color);outline-offset:2px}[data-v-caf52a6d] .phila-navbar-burger,.phila-navbar .phila-navbar-burger[data-v-caf52a6d]{flex:0 0 auto;aspect-ratio:1;height:5rem!important;width:5rem!important;align-items:center;justify-content:center;background-color:var(--flyers-orange-450-flyers-orange);border-radius:0!important;font-size:var(--scale-400);color:var(--Schemes-On-Surface);box-shadow:none}:is([data-v-caf52a6d] .phila-navbar-burger,.phila-navbar .phila-navbar-burger[data-v-caf52a6d]).phila-navbar-item-flyout-active{color:var(--Schemes-Primary, #2176d2);background-color:var(--Schemes-Surface-Container-Low)}[data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]{flex:1 1 auto;align-items:center}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) a{font-weight:400}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) img:hover{opacity:.8}:is([data-v-caf52a6d] .phila-navbar-brand,.phila-navbar .phila-navbar-brand[data-v-caf52a6d]) .phila-navbar-brand-link{margin-left:var(--spacing-xl)}[data-v-caf52a6d] .nav-flyout,.phila-navbar .nav-flyout[data-v-caf52a6d]{position:absolute;top:var(--nav-height);left:0;width:100%;z-index:9999;overflow-y:auto;max-height:calc(100vh - var(--nav-bottom))}[data-v-caf52a6d] .phila-navbar-search,.phila-navbar .phila-navbar-search[data-v-caf52a6d]{flex:0 0 auto;align-items:center}:is([data-v-caf52a6d] .phila-navbar-search,.phila-navbar .phila-navbar-search[data-v-caf52a6d]) button{background-color:var(--Schemes-Primary);box-shadow:none}[data-v-caf52a6d] .phila-navbar-end,.phila-navbar .phila-navbar-end[data-v-caf52a6d]{flex:0 0 auto;align-items:center;padding-right:var(--spacing-l)}.site-wide-alert{display:flex;align-items:center;gap:var(--spacing-m, 1rem);align-self:stretch;background:var(--Schemes-Alert-Container, #ffe9b0)}.alert-content{display:flex;max-width:60rem;padding:var(--spacing-m, 1rem) var(--spacing-l, 1.5rem);align-items:flex-start;gap:var(--spacing-m, 1rem);flex:1 0 0}.tooltip[data-v-7ccd7c7d]{position:relative;display:inline-flex;flex-direction:column;align-items:flex-start;border-radius:var(--border-radius-xs);filter:drop-shadow(0px 1px 2px rgba(0,0,0,.3)) drop-shadow(0px 1px 3px rgba(0,0,0,.15));--tooltip-bg: var(--Schemes-On-Primary);background-color:var(--tooltip-bg);color:var(--Schemes-On-Background)}.tooltip.tooltip--grey[data-v-7ccd7c7d]{--tooltip-bg: var(--Schemes-Surface-Container-Lowest);color:var(--Schemes-On-Surface)}.tooltip.tooltip--plain[data-v-7ccd7c7d]{--tail-height: 10px;padding:var(--spacing-2xs) var(--spacing-xs);justify-content:center}.tooltip.tooltip--rich[data-v-7ccd7c7d]{--tail-height: 12px;padding:var(--spacing-s) var(--spacing-m);width:max-content;min-width:11.25rem;max-width:min(25rem,calc(100vw - 3rem));gap:var(--spacing-xs)}.tooltip .tooltip__tail[data-v-7ccd7c7d]{position:absolute;width:20px;height:var(--tail-height);background-color:var(--tooltip-bg)}.tooltip.tooltip--top-left .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--top-right .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--top-center .tooltip__tail[data-v-7ccd7c7d]{clip-path:polygon(0 0,100% 0,50% 100%);bottom:calc(-1 * var(--tail-height) + 1px)}.tooltip.tooltip--bottom-left .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--bottom-right .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--bottom-center .tooltip__tail[data-v-7ccd7c7d]{clip-path:polygon(50% 0,0 100%,100% 100%);top:calc(-1 * var(--tail-height) + 1px)}.tooltip.tooltip--top-left .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--bottom-left .tooltip__tail[data-v-7ccd7c7d]{left:8px}.tooltip.tooltip--top-right .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--bottom-right .tooltip__tail[data-v-7ccd7c7d]{right:8px}.tooltip.tooltip--top-center .tooltip__tail[data-v-7ccd7c7d],.tooltip.tooltip--bottom-center .tooltip__tail[data-v-7ccd7c7d]{left:50%;transform:translate(-50%)}.tooltip__plain-row[data-v-7ccd7c7d],.tooltip__title-row[data-v-7ccd7c7d]{display:flex;align-items:flex-start;justify-content:space-between;gap:var(--spacing-xs);width:100%}.tooltip__title-row h6[data-v-7ccd7c7d]{flex:1}.tooltip__dismiss[data-v-7ccd7c7d]{margin-left:auto;flex-shrink:0}.tooltip-trigger[data-v-b3f93b8c]{position:relative;display:inline-block}.tooltip-trigger__positioner[data-v-b3f93b8c]{position:absolute;z-index:1000}.tooltip-trigger__positioner.tooltip-trigger__positioner--top-left[data-v-b3f93b8c]{bottom:100%;left:-8px;padding-bottom:var(--positioner-gap);transform:translate(var(--adjust-x, 0px))}.tooltip-trigger__positioner.tooltip-trigger__positioner--top-right[data-v-b3f93b8c]{bottom:100%;right:-8px;padding-bottom:var(--positioner-gap);transform:translate(var(--adjust-x, 0px))}.tooltip-trigger__positioner.tooltip-trigger__positioner--top-center[data-v-b3f93b8c]{bottom:100%;left:50%;transform:translate(calc(-50% + var(--adjust-x, 0px)));padding-bottom:var(--positioner-gap)}.tooltip-trigger__positioner.tooltip-trigger__positioner--bottom-left[data-v-b3f93b8c]{top:100%;left:-8px;padding-top:var(--positioner-gap);transform:translate(var(--adjust-x, 0px))}.tooltip-trigger__positioner.tooltip-trigger__positioner--bottom-right[data-v-b3f93b8c]{top:100%;right:-8px;padding-top:var(--positioner-gap);transform:translate(var(--adjust-x, 0px))}.tooltip-trigger__positioner.tooltip-trigger__positioner--bottom-center[data-v-b3f93b8c]{top:100%;left:50%;transform:translate(calc(-50% + var(--adjust-x, 0px)));padding-top:var(--positioner-gap)}.navbar-info[data-v-c3989251]{display:flex;align-items:center;cursor:pointer}.navbar-info [data-v-c3989251] .navbar-info__trigger.icon-button--standard{color:var(--Schemes-On-Primary)}.navbar-info .navbar-info__group[data-v-c3989251]:not(:hover) .navbar-info__trigger.icon-button--standard{color:#fff}.navbar-info .navbar-info__group[data-v-c3989251]:hover .navbar-info__trigger.icon-button--standard{background:var(--Schemes-Surface-Container)}.navbar-info .navbar-info__group[data-v-c3989251] .navbar-info__trigger.icon-button--standard[aria-pressed=true]{color:#fff;background:transparent}.navbar-info__group[data-v-c3989251]{display:flex;align-items:center}.navbar-info__label[data-v-c3989251]{color:var(--Extended-Colors-link-default);text-decoration:underline;font-weight:400;margin-left:var(--spacing-xs);-webkit-user-select:none;user-select:none}.navbar-info__group:hover .navbar-info__label[data-v-c3989251]{color:var(--Extended-Colors-link-hover);text-decoration-color:var(--Extended-Colors-link-hover)}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { BaseProps } from '@phila/phila-ui-core';
|
|
|
2
2
|
import { LogoProps } from '@phila/phila-ui-logo';
|
|
3
3
|
import { Component } from 'vue';
|
|
4
4
|
export { default as AppHeader } from './AppHeader.vue';
|
|
5
|
+
export { default as NavbarInfo } from './components/NavBar/NavbarInfo.vue';
|
|
5
6
|
export interface CollapseProps {
|
|
6
7
|
collapseGroup?: string;
|
|
7
8
|
}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,MAAM,WAAW,aAAa;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IACtD,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AACD,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IACtD,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB;AACD,MAAM,WAAW,gBAAiB,SAAQ,aAAa;IACrD,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;CACnB;AACD,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AACD,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AACD,MAAM,WAAW,WAAW;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,uGAAuG;IACvG,IAAI,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kGAAkG;IAClG,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gGAAgG;IAChG,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAY,SAAQ,iBAAiB,EAAE,iBAAiB,EAAE,gBAAgB;IACzF,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,WAAW,CAAC;CAC3B;AAED,MAAM,WAAW,gBAAgB;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAe,SAAQ,SAAS,EAAE,WAAW,EAAE,gBAAgB;IAC9E,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,SAAS,CAAC;CAC1B"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,MAAM,WAAW,aAAa;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IACtD,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AACD,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IACtD,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB;AACD,MAAM,WAAW,gBAAiB,SAAQ,aAAa;IACrD,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;CACnB;AACD,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AACD,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AACD,MAAM,WAAW,WAAW;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,uGAAuG;IACvG,IAAI,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kGAAkG;IAClG,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gGAAgG;IAChG,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAY,SAAQ,iBAAiB,EAAE,iBAAiB,EAAE,gBAAgB;IACzF,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,WAAW,CAAC;CAC3B;AAED,MAAM,WAAW,gBAAgB;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAe,SAAQ,SAAS,EAAE,WAAW,EAAE,gBAAgB;IAC9E,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,SAAS,CAAC;CAC1B"}
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require('./index.css');const e=require("vue"),c=require("@fortawesome/vue-fontawesome"),u=require("@phila/phila-ui-core"),m=require("@phila/phila-ui-collapse-panel"),g=require("@phila/phila-ui-logo");var N={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},B=N,x={prefix:"fas",iconName:"circle-exclamation",icon:[512,512,["exclamation-circle"],"f06a","M256 512a256 256 0 1 1 0-512 256 256 0 1 1 0 512zm0-192a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.6 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z"]},p={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]},y=p,h=p,C={prefix:"fas",iconName:"lock",icon:[384,512,[128274],"f023","M128 96l0 64 128 0 0-64c0-35.3-28.7-64-64-64s-64 28.7-64 64zM64 160l0-64C64 25.3 121.3-32 192-32S320 25.3 320 96l0 64c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64z"]},b={prefix:"fas",iconName:"caret-up",icon:[320,512,[],"f0d8","M140.3 135.2c12.6-10.3 31.1-9.5 42.8 2.2l128 128c9.2 9.2 11.9 22.9 6.9 34.9S301.4 320 288.5 320l-256 0c-12.9 0-24.6-7.8-29.6-19.8S.7 274.5 9.9 265.4l128-128 2.4-2.2z"]},k={prefix:"fas",iconName:"caret-down",icon:[320,512,[],"f0d7","M140.3 376.8c12.6 10.2 31.1 9.5 42.8-2.2l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301.4 192 288.5 192l-256 0c-12.9 0-24.6 7.8-29.6 19.8S.7 237.5 9.9 246.6l128 128 2.4 2.2z"]},V={prefix:"fas",iconName:"building-columns",icon:[512,512,["bank","institution","museum","university"],"f19c","M271.9 20.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128c-12.6 7.2-18.8 22-15.1 36S17.5 208 32 208l32 0 0 208 0 0-51.2 38.4C4.7 460.4 0 469.9 0 480 0 497.7 14.3 512 32 512l448 0c17.7 0 32-14.3 32-32 0-10.1-4.7-19.6-12.8-25.6l-51.2-38.4 0-208 32 0c14.5 0 27.2-9.8 30.9-23.8s-2.5-28.8-15.1-36l-224-128zM400 208l0 208-64 0 0-208 64 0zm-112 0l0 208-64 0 0-208 64 0zm-112 0l0 208-64 0 0-208 64 0zM256 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},E={prefix:"fas",iconName:"bars",icon:[448,512,["navicon"],"f0c9","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]},w={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},_=w;const $="data:image/svg+xml,%3csvg%20width='16'%20height='11'%20viewBox='0%200%2016%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3crect%20width='16'%20height='11'%20fill='url(%23pattern0_61022_1867)'/%3e%3cdefs%3e%3cpattern%20id='pattern0_61022_1867'%20patternContentUnits='objectBoundingBox'%20width='1'%20height='1'%3e%3cuse%20xlink:href='%23image0_61022_1867'%20transform='scale(0.0625%200.0909091)'/%3e%3c/pattern%3e%3cimage%20id='image0_61022_1867'%20width='16'%20height='11'%20preserveAspectRatio='none'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAG1BMVEUdM7EeNLIeM7HgQCDaPh/bPh/bPx/////bPyBEby41AAAAUElEQVQI123MNw4CABDEwD3jC/9/MQ1BQrgeOSkIqYe2o2FZtthXgQLgbHVMZdlsfUQFQnHtjP1+8BUhBDKOqtmfot6ojqPzR7TjdU+f6vkED+IDPhTBcMAAAAAASUVORK5CYII='/%3e%3c/defs%3e%3c/svg%3e",S={id:"trusted-site",class:"is-flex is-justify-space-between"},A={class:"trusted-wrap"},L={class:"hidden-tablet trusted-toggle is-flex is-align-center"},M=["src"],z=["aria-label","aria-expanded"],T={class:"icon","aria-hidden":"true"},I={class:"hidden-desktop trusted-toggle is-flex is-align-center"},F=["aria-label","aria-expanded"],D={class:"icon","aria-hidden":"true"},U={key:0,class:"trusted-translation is-flex is-align-center"},G=["hidden"],H={class:"trusted-site-info-content content has-text-body-small is-flex is-justify-space-between"},O={class:"info-item-wrap is-flex"},j={class:"info-item is-flex is-12-mobile is-align-flex-start is-flex-1 my-4"},q={class:"trusted-icon is-flex is-flex-column has-text-center"},Q={class:"icon circle-icon p-3 mb-2"},K={class:"info-item is-flex is-12-mobile is-align-flex-start is-flex-1 my-4"},R={class:"trusted-icon is-flex is-flex-column has-text-center"},W={class:"icon circle-icon p-3 mb-2"},X={class:"info-content-close mt-4"},Y=e.defineComponent({__name:"TrustedSite",setup(n){const l=e.useSlots(),{isCollapsed:s,onClickToggle:t}=u.useCollapse({id:"trusted-site-info",escapeKeyClose:!0}),r=e.computed(()=>s("trusted-site-info"));return(i,o)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",S,[e.createElementVNode("div",A,[e.createElementVNode("div",L,[e.createElementVNode("img",{src:e.unref($),alt:"",class:"icon"},null,8,M),o[4]||(o[4]=e.createElementVNode("div",{class:"content mx-2"},"An official website of the City of Philadelphia government",-1)),e.createElementVNode("button",{class:"phila-button is-extra-small","aria-label":`${r.value?"Close":"Open"} Trusted Site information panel`,"aria-controls":"trusted-site-info","aria-expanded":r.value,onClick:o[0]||(o[0]=(...a)=>e.unref(t)&&e.unref(t)(...a))},[o[3]||(o[3]=e.createTextVNode(" Here's how you know ",-1)),e.createElementVNode("span",T,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:r.value?e.unref(b):e.unref(k)},null,8,["icon"])])],8,z)]),e.createElementVNode("div",I,[e.createElementVNode("button",{class:"phila-button is-extra-small","aria-label":`${r.value?"Close":"Open"} Trusted Site information panel`,"aria-controls":"trusted-site-info","aria-expanded":r.value,onClick:o[1]||(o[1]=(...a)=>e.unref(t)&&e.unref(t)(...a))},[o[5]||(o[5]=e.createTextVNode(" An official website ",-1)),e.createElementVNode("span",D,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:e.unref(_)},null,8,["icon"])])],8,F)])]),e.unref(l).translation?(e.openBlock(),e.createElementBlock("div",U,[e.renderSlot(i.$slots,"translation",{},void 0,!0)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{id:"trusted-site-info",class:"px-6",hidden:!r.value},[e.createElementVNode("div",H,[e.createElementVNode("div",O,[e.createElementVNode("div",j,[e.createElementVNode("div",q,[e.createElementVNode("span",Q,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:e.unref(V)},null,8,["icon"])]),o[6]||(o[6]=e.createElementVNode("span",{class:"has-text-bold"},".gov",-1))]),o[7]||(o[7]=e.createElementVNode("div",{class:"trusted-text m-4"},"Only government entities in the U.S. can end in .gov",-1))]),e.createElementVNode("div",K,[e.createElementVNode("div",R,[e.createElementVNode("div",W,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:e.unref(C)},null,8,["icon"])]),o[8]||(o[8]=e.createElementVNode("span",{class:"has-text-bold"},"https://",-1))]),o[9]||(o[9]=e.createElementVNode("div",{class:"trusted-text m-4"}," The https:// in the address bar means your information is encrypted and can not be accessed by anyone else ",-1))])]),e.createElementVNode("div",X,[e.createElementVNode("button",{class:"phila-button phila-button--primary icon-button is-extra-small","aria-label":"Close Trusted Site information panel",onClick:o[2]||(o[2]=(...a)=>e.unref(t)&&e.unref(t)(...a))},[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:e.unref(y)},null,8,["icon"])])])])],8,G)],64))}}),f=(n,l)=>{const s=n.__vccOpts||n;for(const[t,r]of l)s[t]=r;return s},Z=f(Y,[["__scopeId","data-v-3fc90bb2"]]),J=["aria-controls","aria-expanded","aria-label","onClick"],P={class:"icon"},ee=["id","hidden"],ne=e.defineComponent({__name:"NavbarBurger",props:{mobileNav:{},collapseGroup:{}},setup(n){return(l,s)=>(e.openBlock(),e.createBlock(e.unref(m.CollapsePanel),{id:"mobile-nav",group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","open-single":""},{toggle:e.withCtx(t=>[e.createElementVNode("button",{class:e.normalizeClass(["phila-navbar-burger phila-button icon-button",{"phila-navbar-item-flyout-active":t.open}]),"aria-controls":t.ariaControls,"aria-expanded":t.open,"aria-label":`${t.open?"Close":"Open"} mobile navigation panel`,onClick:t.onClick},[e.createElementVNode("span",P,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:t.open?e.unref(h):e.unref(E)},null,8,["icon"])])],10,J)]),default:e.withCtx(t=>[e.createElementVNode("div",{id:t.id,class:"phila-mobile-nav",hidden:!t.open},[e.renderSlot(l.$slots,"mobile-nav",{},()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.mobileNav)))])],8,ee)]),_:3},8,["group"]))}}),te=["href"],ae=["href","aria-controls","aria-expanded","onKeypress","onTouchend","onClick"],oe=["id","hidden"],le={key:0,class:"content nav-flyout has-background-ghost-gray px-6 py-4",tabindex:"-1"},ie={class:"is-flex is-flex-column is-flex-wrap-wrap",style:{gap:"var(--spacing-4xl)"}},se=["href"],re=e.defineComponent({__name:"NavbarLinks",props:{links:{},collapseGroup:{}},setup(n){const l=t=>!!(t.subLinks||t.subNav),s=t=>`main-nav-${t.text.split(" ").join("-").toLowerCase().replace(/[^a-z0-9-]/g,"")}`;return(t,r)=>(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.links,(i,o)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[l(i)?(e.openBlock(),e.createBlock(e.unref(m.CollapsePanel),{id:s(i),key:`collapse-${o}`,group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","mouse-over-toggle":"","open-single":"",class:"phila-navbar-link-list-item"},{toggle:e.withCtx(a=>[e.createElementVNode("a",{href:i.href,class:e.normalizeClass(["phila-navbar-link px-4",{"phila-navbar-item-flyout-active":a.open}]),"aria-controls":a.ariaControls,"aria-expanded":a.open,tabindex:"0",onKeypress:e.withKeys(a.onClick,["enter"]),onTouchend:a.onClick,onClick:a.onClick},[e.createTextVNode(e.toDisplayString(i.text)+" ",1),e.createVNode(e.unref(c.FontAwesomeIcon),{class:"ml-1",icon:a.open?e.unref(b):e.unref(k)},null,8,["icon"])],42,ae)]),default:e.withCtx(a=>[(e.openBlock(),e.createElementBlock("div",{id:a.id,key:i.text,hidden:!a.open},[i.subLinks?(e.openBlock(),e.createElementBlock("div",le,[e.createElementVNode("ul",ie,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.subLinks,d=>(e.openBlock(),e.createElementBlock("li",{key:d.text,class:"sub-nav-link is-flex is-align-center",style:{width:"150px"}},[e.createElementVNode("a",{href:d.href,class:"has-text-link has-text-weight-medium",tabindex:"0"},e.toDisplayString(d.text),9,se)]))),128))])])):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.subNav),{key:1}))],8,oe))]),_:2},1032,["id","group"])):(e.openBlock(),e.createElementBlock("div",{key:`link-${o}`,class:"phila-navbar-link-list-item"},[e.createElementVNode("a",{href:i.href,class:"phila-navbar-link px-4",tabindex:"0"},e.toDisplayString(i.text),9,te)]))],64))),256))}}),ce=e.defineComponent({__name:"NavbarBrandLogo",props:{logo:{},src:{},href:{},altText:{}},setup(n){const l=n,s=e.computed(()=>({variant:"city",layout:"stacked",colorScheme:"on-primary",href:l.href,...l.logo}));return(t,r)=>(e.openBlock(),e.createBlock(e.unref(g.Logo),e.mergeProps(s.value,{class:"phila-navbar-logo"}),null,16))}}),de=f(ce,[["__scopeId","data-v-3011c249"]]),ue={class:"pr-4"},me=["aria-controls","aria-expanded","aria-label","onClick"],fe={class:"icon"},ve=["id","hidden"],pe=e.defineComponent({__name:"NavbarSearch",props:{search:{},collapseGroup:{}},setup(n){return(l,s)=>(e.openBlock(),e.createBlock(e.unref(m.CollapsePanel),{id:"navbar-search",group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","open-single":""},{toggle:e.withCtx(t=>[e.createElementVNode("div",ue,[e.createElementVNode("button",{class:e.normalizeClass(["phila-button phila-button--primary icon-button is-small",{"phila-navbar-item-flyout-active":t.open}]),"aria-controls":t.ariaControls,"aria-expanded":t.open,"aria-label":`${t.open?"Close":"Open"} search panel`,onClick:t.onClick},[e.createElementVNode("span",fe,[e.createVNode(e.unref(c.FontAwesomeIcon),{icon:t.open?e.unref(h):e.unref(B)},null,8,["icon"])])],10,me)])]),default:e.withCtx(t=>[e.createElementVNode("div",{id:t.id,class:"nav-flyout is-12",hidden:!t.open},[e.renderSlot(l.$slots,"default",{},()=>[n.search&&t.open?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.search),{key:0})):e.createCommentVNode("",!0)])],8,ve)]),_:3},8,["group"]))}}),he={class:"phila-navbar-brand"},be={key:0,class:"phila-navbar-item phila-navbar-brand-link hidden-tablet"},ke={key:0,class:"content"},ge=["href"],Ne={class:"phila-navbar-item phila-navbar-list is-flex is-align-center is-justify-space-between content has-text-label-default hidden-tablet"},Be={class:"phila-navbar-search"},xe={key:0,class:"phila-navbar-end"},v="5rem",ye=e.defineComponent({__name:"index",props:{id:{},sticky:{type:Boolean},navbarBrand:{},mobileNav:{},collapseGroup:{},search:{},links:{default:()=>[{text:"Home",href:"#"}]}},setup(n){const l=n,{state:s}=u.useCollapse(),t=e.useTemplateRef("navBarElement"),r=e.ref(v),i=e.ref(0),o=u.debounce(()=>{const a=(t.value?.offsetTop||0)+(t.value?.offsetHeight||0),d=typeof window<"u"?window.innerWidth:1024;r.value=!l.sticky||d<1024?a+"px":v,i.value=a},100);return e.watch(()=>s.value,o,{deep:!0,immediate:!0}),e.onMounted(()=>{window.addEventListener("resize",o)}),e.onUnmounted(()=>{window.removeEventListener("resize",o)}),(a,d)=>(e.openBlock(),e.createElementBlock("nav",{ref_key:"navBarElement",ref:t,class:e.normalizeClass(["phila-navbar has-links-on-primary",{"is-sticky-desktop":n.sticky}]),"aria-label":"Main navigation",style:e.normalizeStyle(`--nav-height:${r.value};--nav-bottom:${i.value}px`)},[e.renderSlot(a.$slots,"navbar-burger",{},()=>[n.mobileNav||a.$slots["mobile-nav"]?(e.openBlock(),e.createBlock(ne,{key:0,"mobile-nav":n.mobileNav,"collapse-group":n.id},e.createSlots({_:2},[a.$slots["mobile-nav"]?{name:"mobile-nav",fn:e.withCtx(()=>[e.renderSlot(a.$slots,"mobile-nav",{},void 0,!0)]),key:"0"}:void 0]),1032,["mobile-nav","collapse-group"])):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",he,[e.renderSlot(a.$slots,"navbar-logo",{},()=>[n.navbarBrand?.brandingImage?(e.openBlock(),e.createBlock(de,e.mergeProps({key:0},n.navbarBrand.brandingImage,{logo:n.navbarBrand?.logo}),null,16,["logo"])):e.createCommentVNode("",!0)],!0),a.$slots["navbar-brand-link"]||n.navbarBrand?.brandingLink?(e.openBlock(),e.createElementBlock("div",be,[e.renderSlot(a.$slots,"navbar-brand-link",{},()=>[n.navbarBrand?.brandingLink?(e.openBlock(),e.createElementBlock("div",ke,[e.createElementVNode("a",{tabindex:"0",href:n.navbarBrand.brandingLink.href,class:"has-text-underline"},e.toDisplayString(n.navbarBrand.brandingLink.text),9,ge)])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",Ne,[e.renderSlot(a.$slots,"navbar-links",{},()=>[n.links?(e.openBlock(),e.createBlock(re,{key:0,links:n.links,"collapse-group":n.id},null,8,["links","collapse-group"])):e.createCommentVNode("",!0)],!0)]),e.createElementVNode("div",Be,[e.renderSlot(a.$slots,"navbar-search",{},()=>[n.search?(e.openBlock(),e.createBlock(pe,{key:0,search:n.search,"collapse-group":n.id},null,8,["search","collapse-group"])):e.createCommentVNode("",!0)],!0)]),a.$slots["navbar-end"]?(e.openBlock(),e.createElementBlock("div",xe,[e.renderSlot(a.$slots,"navbar-end",{},void 0,!0)])):e.createCommentVNode("",!0)],6))}}),Ce=f(ye,[["__scopeId","data-v-caf52a6d"]]),Ve={class:"site-wide-alert content"},Ee={class:"alert-content"},we={class:"content-text"},_e={class:"title"},$e={class:"body"},Se=e.defineComponent({__name:"AlertBanner",props:{bannerTitle:{},bannerMessage:{}},setup(n){const l=n;return(s,t)=>(e.openBlock(),e.createElementBlock("div",Ve,[e.createElementVNode("div",Ee,[e.createVNode(e.unref(u.Icon),{"icon-definition":e.unref(x),size:"small",decorative:!0},null,8,["icon-definition"]),e.createElementVNode("div",we,[e.createElementVNode("h6",_e,e.toDisplayString(l.bannerTitle),1),e.createElementVNode("div",$e,e.toDisplayString(l.bannerMessage),1)])])]))}}),Ae=e.defineComponent({__name:"AppHeader",props:{showTrustedSite:{type:Boolean,default:!0},translations:{default:void 0},className:{},id:{default:"main-nav"},sticky:{type:Boolean,default:!0},navbarBrand:{default:void 0},mobileNav:{default:void 0},collapseGroup:{},search:{default:void 0},links:{default:void 0},bannerTitle:{default:void 0},bannerMessage:{default:void 0}},setup(n){return(l,s)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[n.showTrustedSite?(e.openBlock(),e.createBlock(Z,{key:0},{translation:e.withCtx(()=>[e.renderSlot(l.$slots,"translations",{},()=>[n.translations?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.translations),{key:0})):e.createCommentVNode("",!0)])]),_:3})):e.createCommentVNode("",!0),e.createVNode(Ce,{id:n.id,sticky:n.sticky,"mobile-nav":n.mobileNav,links:n.links,"navbar-brand":n.navbarBrand,search:n.search},e.createSlots({_:2},[l.$slots["mobile-nav"]?{name:"mobile-nav",fn:e.withCtx(()=>[e.renderSlot(l.$slots,"mobile-nav")]),key:"0"}:void 0,l.$slots["navbar-end"]?{name:"navbar-end",fn:e.withCtx(()=>[e.renderSlot(l.$slots,"navbar-end")]),key:"1"}:void 0]),1032,["id","sticky","mobile-nav","links","navbar-brand","search"]),n.bannerTitle||n.bannerMessage?(e.openBlock(),e.createBlock(Se,{key:1,"banner-title":n.bannerTitle,"banner-message":n.bannerMessage},null,8,["banner-title","banner-message"])):e.createCommentVNode("",!0)],64))}});exports.AppHeader=Ae;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require('./index.css');const e=require("vue"),p=require("@fortawesome/vue-fontawesome"),d=require("@phila/phila-ui-core"),g=require("@phila/phila-ui-collapse-panel"),R=require("@phila/phila-ui-logo");var U={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},P=U,H={prefix:"fas",iconName:"circle-exclamation",icon:[512,512,["exclamation-circle"],"f06a","M256 512a256 256 0 1 1 0-512 256 256 0 1 1 0 512zm0-192a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.6 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z"]},w={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]},j=w,V=w,G={prefix:"fas",iconName:"lock",icon:[384,512,[128274],"f023","M128 96l0 64 128 0 0-64c0-35.3-28.7-64-64-64s-64 28.7-64 64zM64 160l0-64C64 25.3 121.3-32 192-32S320 25.3 320 96l0 64c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64z"]},$={prefix:"fas",iconName:"caret-up",icon:[320,512,[],"f0d8","M140.3 135.2c12.6-10.3 31.1-9.5 42.8 2.2l128 128c9.2 9.2 11.9 22.9 6.9 34.9S301.4 320 288.5 320l-256 0c-12.9 0-24.6-7.8-29.6-19.8S.7 274.5 9.9 265.4l128-128 2.4-2.2z"]},S={prefix:"fas",iconName:"caret-down",icon:[320,512,[],"f0d7","M140.3 376.8c12.6 10.2 31.1 9.5 42.8-2.2l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301.4 192 288.5 192l-256 0c-12.9 0-24.6 7.8-29.6 19.8S.7 237.5 9.9 246.6l128 128 2.4 2.2z"]},q={prefix:"fas",iconName:"building-columns",icon:[512,512,["bank","institution","museum","university"],"f19c","M271.9 20.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128c-12.6 7.2-18.8 22-15.1 36S17.5 208 32 208l32 0 0 208 0 0-51.2 38.4C4.7 460.4 0 469.9 0 480 0 497.7 14.3 512 32 512l448 0c17.7 0 32-14.3 32-32 0-10.1-4.7-19.6-12.8-25.6l-51.2-38.4 0-208 32 0c14.5 0 27.2-9.8 30.9-23.8s-2.5-28.8-15.1-36l-224-128zM400 208l0 208-64 0 0-208 64 0zm-112 0l0 208-64 0 0-208 64 0zm-112 0l0 208-64 0 0-208 64 0zM256 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},Q={prefix:"fas",iconName:"bars",icon:[448,512,["navicon"],"f0c9","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]},K={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},z=K;const W="data:image/svg+xml,%3csvg%20width='16'%20height='11'%20viewBox='0%200%2016%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3crect%20width='16'%20height='11'%20fill='url(%23pattern0_61022_1867)'/%3e%3cdefs%3e%3cpattern%20id='pattern0_61022_1867'%20patternContentUnits='objectBoundingBox'%20width='1'%20height='1'%3e%3cuse%20xlink:href='%23image0_61022_1867'%20transform='scale(0.0625%200.0909091)'/%3e%3c/pattern%3e%3cimage%20id='image0_61022_1867'%20width='16'%20height='11'%20preserveAspectRatio='none'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAG1BMVEUdM7EeNLIeM7HgQCDaPh/bPh/bPx/////bPyBEby41AAAAUElEQVQI123MNw4CABDEwD3jC/9/MQ1BQrgeOSkIqYe2o2FZtthXgQLgbHVMZdlsfUQFQnHtjP1+8BUhBDKOqtmfot6ojqPzR7TjdU+f6vkED+IDPhTBcMAAAAAASUVORK5CYII='/%3e%3c/defs%3e%3c/svg%3e",X={id:"trusted-site",class:"is-flex is-justify-space-between"},Y={class:"trusted-wrap"},Z={class:"hidden-tablet trusted-toggle is-flex is-align-center"},J=["src"],ee=["aria-label","aria-expanded"],te={class:"icon","aria-hidden":"true"},ne={class:"hidden-desktop trusted-toggle is-flex is-align-center"},oe=["aria-label","aria-expanded"],ae={class:"icon","aria-hidden":"true"},le={key:0,class:"trusted-translation is-flex is-align-center"},ie=["hidden"],se={class:"trusted-site-info-content content has-text-body-small is-flex is-justify-space-between"},re={class:"info-item-wrap is-flex"},ce={class:"info-item is-flex is-12-mobile is-align-flex-start is-flex-1 my-4"},de={class:"trusted-icon is-flex is-flex-column has-text-center"},ue={class:"icon circle-icon p-3 mb-2"},me={class:"info-item is-flex is-12-mobile is-align-flex-start is-flex-1 my-4"},fe={class:"trusted-icon is-flex is-flex-column has-text-center"},pe={class:"icon circle-icon p-3 mb-2"},ve={class:"info-content-close mt-4"},he=e.defineComponent({__name:"TrustedSite",setup(n){const t=e.useSlots(),{isCollapsed:l,onClickToggle:o}=d.useCollapse({id:"trusted-site-info",escapeKeyClose:!0}),s=e.computed(()=>l("trusted-site-info"));return(r,a)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",X,[e.createElementVNode("div",Y,[e.createElementVNode("div",Z,[e.createElementVNode("img",{src:e.unref(W),alt:"",class:"icon"},null,8,J),a[4]||(a[4]=e.createElementVNode("div",{class:"content mx-2"},"An official website of the City of Philadelphia government",-1)),e.createElementVNode("button",{class:"phila-button is-extra-small","aria-label":`${s.value?"Close":"Open"} Trusted Site information panel`,"aria-controls":"trusted-site-info","aria-expanded":s.value,onClick:a[0]||(a[0]=(...i)=>e.unref(o)&&e.unref(o)(...i))},[a[3]||(a[3]=e.createTextVNode(" Here's how you know ",-1)),e.createElementVNode("span",te,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:s.value?e.unref($):e.unref(S)},null,8,["icon"])])],8,ee)]),e.createElementVNode("div",ne,[e.createElementVNode("button",{class:"phila-button is-extra-small","aria-label":`${s.value?"Close":"Open"} Trusted Site information panel`,"aria-controls":"trusted-site-info","aria-expanded":s.value,onClick:a[1]||(a[1]=(...i)=>e.unref(o)&&e.unref(o)(...i))},[a[5]||(a[5]=e.createTextVNode(" An official website ",-1)),e.createElementVNode("span",ae,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:e.unref(z)},null,8,["icon"])])],8,oe)])]),e.unref(t).translation?(e.openBlock(),e.createElementBlock("div",le,[e.renderSlot(r.$slots,"translation",{},void 0,!0)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{id:"trusted-site-info",class:"px-6",hidden:!s.value},[e.createElementVNode("div",se,[e.createElementVNode("div",re,[e.createElementVNode("div",ce,[e.createElementVNode("div",de,[e.createElementVNode("span",ue,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:e.unref(q)},null,8,["icon"])]),a[6]||(a[6]=e.createElementVNode("span",{class:"has-text-bold"},".gov",-1))]),a[7]||(a[7]=e.createElementVNode("div",{class:"trusted-text m-4"},"Only government entities in the U.S. can end in .gov",-1))]),e.createElementVNode("div",me,[e.createElementVNode("div",fe,[e.createElementVNode("div",pe,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:e.unref(G)},null,8,["icon"])]),a[8]||(a[8]=e.createElementVNode("span",{class:"has-text-bold"},"https://",-1))]),a[9]||(a[9]=e.createElementVNode("div",{class:"trusted-text m-4"}," The https:// in the address bar means your information is encrypted and can not be accessed by anyone else ",-1))])]),e.createElementVNode("div",ve,[e.createElementVNode("button",{class:"phila-button phila-button--primary icon-button is-extra-small","aria-label":"Close Trusted Site information panel",onClick:a[2]||(a[2]=(...i)=>e.unref(o)&&e.unref(o)(...i))},[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:e.unref(j)},null,8,["icon"])])])])],8,ie)],64))}}),b=(n,t)=>{const l=n.__vccOpts||n;for(const[o,s]of t)l[o]=s;return l},be=b(he,[["__scopeId","data-v-3fc90bb2"]]),ke=["aria-controls","aria-expanded","aria-label","onClick"],ge={class:"icon"},ye=["id","hidden"],Be=e.defineComponent({__name:"NavbarBurger",props:{mobileNav:{},collapseGroup:{}},setup(n){return(t,l)=>(e.openBlock(),e.createBlock(e.unref(g.CollapsePanel),{id:"mobile-nav",group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","open-single":""},{toggle:e.withCtx(o=>[e.createElementVNode("button",{class:e.normalizeClass(["phila-navbar-burger phila-button icon-button",{"phila-navbar-item-flyout-active":o.open}]),"aria-controls":o.ariaControls,"aria-expanded":o.open,"aria-label":`${o.open?"Close":"Open"} mobile navigation panel`,onClick:o.onClick},[e.createElementVNode("span",ge,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:o.open?e.unref(V):e.unref(Q)},null,8,["icon"])])],10,ke)]),default:e.withCtx(o=>[e.createElementVNode("div",{id:o.id,class:"phila-mobile-nav",hidden:!o.open},[e.renderSlot(t.$slots,"mobile-nav",{},()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.mobileNav)))])],8,ye)]),_:3},8,["group"]))}}),Ne=["href"],xe=["href","aria-controls","aria-expanded","onKeypress","onTouchend","onClick"],Ce=["id","hidden"],_e={key:0,class:"content nav-flyout has-background-ghost-gray px-6 py-4",tabindex:"-1"},Ee={class:"is-flex is-flex-column is-flex-wrap-wrap",style:{gap:"var(--spacing-4xl)"}},we=["href"],Ve=e.defineComponent({__name:"NavbarLinks",props:{links:{},collapseGroup:{}},setup(n){const t=o=>!!(o.subLinks||o.subNav),l=o=>`main-nav-${o.text.split(" ").join("-").toLowerCase().replace(/[^a-z0-9-]/g,"")}`;return(o,s)=>(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.links,(r,a)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[t(r)?(e.openBlock(),e.createBlock(e.unref(g.CollapsePanel),{id:l(r),key:`collapse-${a}`,group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","mouse-over-toggle":"","open-single":"",class:"phila-navbar-link-list-item"},{toggle:e.withCtx(i=>[e.createElementVNode("a",{href:r.href,class:e.normalizeClass(["phila-navbar-link px-4",{"phila-navbar-item-flyout-active":i.open}]),"aria-controls":i.ariaControls,"aria-expanded":i.open,tabindex:"0",onKeypress:e.withKeys(i.onClick,["enter"]),onTouchend:i.onClick,onClick:i.onClick},[e.createTextVNode(e.toDisplayString(r.text)+" ",1),e.createVNode(e.unref(p.FontAwesomeIcon),{class:"ml-1",icon:i.open?e.unref($):e.unref(S)},null,8,["icon"])],42,xe)]),default:e.withCtx(i=>[(e.openBlock(),e.createElementBlock("div",{id:i.id,key:r.text,hidden:!i.open},[r.subLinks?(e.openBlock(),e.createElementBlock("div",_e,[e.createElementVNode("ul",Ee,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.subLinks,u=>(e.openBlock(),e.createElementBlock("li",{key:u.text,class:"sub-nav-link is-flex is-align-center",style:{width:"150px"}},[e.createElementVNode("a",{href:u.href,class:"has-text-link has-text-weight-medium",tabindex:"0"},e.toDisplayString(u.text),9,we)]))),128))])])):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.subNav),{key:1}))],8,Ce))]),_:2},1032,["id","group"])):(e.openBlock(),e.createElementBlock("div",{key:`link-${a}`,class:"phila-navbar-link-list-item"},[e.createElementVNode("a",{href:r.href,class:"phila-navbar-link px-4",tabindex:"0"},e.toDisplayString(r.text),9,Ne)]))],64))),256))}}),$e=e.defineComponent({__name:"NavbarBrandLogo",props:{logo:{},src:{},href:{},altText:{}},setup(n){const t=n,l=e.computed(()=>({variant:"city",layout:"stacked",colorScheme:"on-primary",href:t.href,...t.logo}));return(o,s)=>(e.openBlock(),e.createBlock(e.unref(R.Logo),e.mergeProps(l.value,{class:"phila-navbar-logo"}),null,16))}}),Se=b($e,[["__scopeId","data-v-3011c249"]]),ze={class:"pr-4"},Ae=["aria-controls","aria-expanded","aria-label","onClick"],Le={class:"icon"},Me=["id","hidden"],Te=e.defineComponent({__name:"NavbarSearch",props:{search:{},collapseGroup:{}},setup(n){return(t,l)=>(e.openBlock(),e.createBlock(e.unref(g.CollapsePanel),{id:"navbar-search",group:n.collapseGroup,"outside-click-close":"","escape-key-close":"","blur-close":"","open-single":""},{toggle:e.withCtx(o=>[e.createElementVNode("div",ze,[e.createElementVNode("button",{class:e.normalizeClass(["phila-button phila-button--primary icon-button is-small",{"phila-navbar-item-flyout-active":o.open}]),"aria-controls":o.ariaControls,"aria-expanded":o.open,"aria-label":`${o.open?"Close":"Open"} search panel`,onClick:o.onClick},[e.createElementVNode("span",Le,[e.createVNode(e.unref(p.FontAwesomeIcon),{icon:o.open?e.unref(V):e.unref(P)},null,8,["icon"])])],10,Ae)])]),default:e.withCtx(o=>[e.createElementVNode("div",{id:o.id,class:"nav-flyout is-12",hidden:!o.open},[e.renderSlot(t.$slots,"default",{},()=>[n.search&&o.open?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.search),{key:0})):e.createCommentVNode("",!0)])],8,Me)]),_:3},8,["group"]))}}),De={class:"phila-navbar-brand"},Ie={key:0,class:"phila-navbar-item phila-navbar-brand-link hidden-tablet"},Oe={key:0,class:"content"},Fe=["href"],Re={class:"phila-navbar-item phila-navbar-list is-flex is-align-center is-justify-space-between content has-text-label-default hidden-tablet"},Ue={class:"phila-navbar-search"},Pe={key:0,class:"phila-navbar-end"},C="5rem",He=e.defineComponent({__name:"index",props:{id:{},sticky:{type:Boolean},navbarBrand:{},mobileNav:{},collapseGroup:{},search:{},links:{default:()=>[{text:"Home",href:"#"}]}},setup(n){const t=n,{state:l}=d.useCollapse(),o=e.useTemplateRef("navBarElement"),s=e.ref(C),r=e.ref(0),a=d.debounce(()=>{const i=(o.value?.offsetTop||0)+(o.value?.offsetHeight||0),u=typeof window<"u"?window.innerWidth:1024;s.value=!t.sticky||u<1024?i+"px":C,r.value=i},100);return e.watch(()=>l.value,a,{deep:!0,immediate:!0}),e.onMounted(()=>{window.addEventListener("resize",a)}),e.onUnmounted(()=>{window.removeEventListener("resize",a)}),(i,u)=>(e.openBlock(),e.createElementBlock("nav",{ref_key:"navBarElement",ref:o,class:e.normalizeClass(["phila-navbar has-links-on-primary",{"is-sticky-desktop":n.sticky}]),"aria-label":"Main navigation",style:e.normalizeStyle(`--nav-height:${s.value};--nav-bottom:${r.value}px`)},[e.renderSlot(i.$slots,"navbar-burger",{},()=>[n.mobileNav||i.$slots["mobile-nav"]?(e.openBlock(),e.createBlock(Be,{key:0,"mobile-nav":n.mobileNav,"collapse-group":n.id},e.createSlots({_:2},[i.$slots["mobile-nav"]?{name:"mobile-nav",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"mobile-nav",{},void 0,!0)]),key:"0"}:void 0]),1032,["mobile-nav","collapse-group"])):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",De,[e.renderSlot(i.$slots,"navbar-logo",{},()=>[n.navbarBrand?.brandingImage?(e.openBlock(),e.createBlock(Se,e.mergeProps({key:0},n.navbarBrand.brandingImage,{logo:n.navbarBrand?.logo}),null,16,["logo"])):e.createCommentVNode("",!0)],!0),i.$slots["navbar-brand-link"]||n.navbarBrand?.brandingLink?(e.openBlock(),e.createElementBlock("div",Ie,[e.renderSlot(i.$slots,"navbar-brand-link",{},()=>[n.navbarBrand?.brandingLink?(e.openBlock(),e.createElementBlock("div",Oe,[e.createElementVNode("a",{tabindex:"0",href:n.navbarBrand.brandingLink.href,class:"has-text-underline"},e.toDisplayString(n.navbarBrand.brandingLink.text),9,Fe)])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",Re,[e.renderSlot(i.$slots,"navbar-links",{},()=>[n.links?(e.openBlock(),e.createBlock(Ve,{key:0,links:n.links,"collapse-group":n.id},null,8,["links","collapse-group"])):e.createCommentVNode("",!0)],!0)]),e.createElementVNode("div",Ue,[e.renderSlot(i.$slots,"navbar-search",{},()=>[n.search?(e.openBlock(),e.createBlock(Te,{key:0,search:n.search,"collapse-group":n.id},null,8,["search","collapse-group"])):e.createCommentVNode("",!0)],!0)]),i.$slots["navbar-end"]?(e.openBlock(),e.createElementBlock("div",Pe,[e.renderSlot(i.$slots,"navbar-end",{},void 0,!0)])):e.createCommentVNode("",!0)],6))}}),je=b(He,[["__scopeId","data-v-caf52a6d"]]),Ge={class:"site-wide-alert content"},qe={class:"alert-content"},Qe={class:"content-text"},Ke={class:"title"},We={class:"body"},Xe=e.defineComponent({__name:"AlertBanner",props:{bannerTitle:{},bannerMessage:{}},setup(n){const t=n;return(l,o)=>(e.openBlock(),e.createElementBlock("div",Ge,[e.createElementVNode("div",qe,[e.createVNode(e.unref(d.Icon),{"icon-definition":e.unref(H),size:"small",decorative:!0},null,8,["icon-definition"]),e.createElementVNode("div",Qe,[e.createElementVNode("h6",Ke,e.toDisplayString(t.bannerTitle),1),e.createElementVNode("div",We,e.toDisplayString(t.bannerMessage),1)])])]))}}),Ye=e.defineComponent({__name:"AppHeader",props:{showTrustedSite:{type:Boolean,default:!0},translations:{default:void 0},className:{},id:{default:"main-nav"},sticky:{type:Boolean,default:!0},navbarBrand:{default:void 0},mobileNav:{default:void 0},collapseGroup:{},search:{default:void 0},links:{default:void 0},bannerTitle:{default:void 0},bannerMessage:{default:void 0}},setup(n){return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[n.showTrustedSite?(e.openBlock(),e.createBlock(be,{key:0},{translation:e.withCtx(()=>[e.renderSlot(t.$slots,"translations",{},()=>[n.translations?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(n.translations),{key:0})):e.createCommentVNode("",!0)])]),_:3})):e.createCommentVNode("",!0),e.createVNode(je,{id:n.id,sticky:n.sticky,"mobile-nav":n.mobileNav,links:n.links,"navbar-brand":n.navbarBrand,search:n.search},e.createSlots({_:2},[t.$slots["mobile-nav"]?{name:"mobile-nav",fn:e.withCtx(()=>[e.renderSlot(t.$slots,"mobile-nav")]),key:"0"}:void 0,t.$slots["navbar-end"]?{name:"navbar-end",fn:e.withCtx(()=>[e.renderSlot(t.$slots,"navbar-end")]),key:"1"}:void 0]),1032,["id","sticky","mobile-nav","links","navbar-brand","search"]),n.bannerTitle||n.bannerMessage?(e.openBlock(),e.createBlock(Xe,{key:1,"banner-title":n.bannerTitle,"banner-message":n.bannerMessage},null,8,["banner-title","banner-message"])):e.createCommentVNode("",!0)],64))}}),Ze=["disabled"],_=e.defineComponent({inheritAttrs:!1,__name:"PhlButton",props:{href:{},to:{},target:{},rel:{},disabled:{type:Boolean,default:!1},clickTarget:{},variant:{default:"primary"},size:{default:"medium"},iconOnly:{type:Boolean,default:!1},iconRight:{type:Boolean},text:{},className:{},iconDefinition:{},iconClass:{},src:{},svgRaw:{}},setup(n){const t=n,l=a=>"href"in a&&a.href!==void 0||"to"in a&&a.to!==void 0,o=e.computed(()=>d.cn("phila-button",`phila-button--${t.variant}`,t.size&&`is-${t.size}`,t.iconOnly&&"icon-button",t.iconOnly&&t.variant==="standard"&&"icon-button--standard",t.className)),s=e.computed(()=>l(t)?"to"in t&&t.to!==void 0?{to:t.to,disabled:t.disabled,className:o.value}:{href:t.href,target:t.target,rel:t.rel,disabled:t.disabled,className:o.value}:{}),r=e.computed(()=>({iconDefinition:t.iconDefinition,iconClass:t.iconClass,src:t.src,iconRight:t.iconRight,iconOnly:t.iconOnly,text:t.text,size:t.size}));return(a,i)=>l(t)?(e.openBlock(),e.createBlock(e.unref(d.BaseLink),e.mergeProps({key:0},{...s.value,...a.$attrs},{role:"button"}),{default:e.withCtx(()=>[e.createVNode(e.unref(d.ActionContent),e.normalizeProps(e.guardReactiveProps(r.value)),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.text),1)])]),_:3},16)]),_:3},16)):(e.openBlock(),e.createElementBlock("button",e.mergeProps({key:1,type:"button",disabled:t.disabled,class:o.value},a.$attrs),[e.createVNode(e.unref(d.ActionContent),e.normalizeProps(e.guardReactiveProps(r.value)),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.text),1)])]),_:3},16)],16,Ze))}});var E={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]};const Je=["id"],et={key:0,class:"tooltip__tail","aria-hidden":"true"},tt={key:1,class:"tooltip__plain-row has-text-body-small"},nt={key:0,class:"tooltip__title-row"},ot={key:0},at=e.defineComponent({__name:"TooltipBubble",props:{id:{},type:{default:"plain"},color:{default:"default"},tail:{type:Boolean,default:!1},placement:{default:"top-center"},title:{},dismissable:{type:Boolean,default:!1},className:{}},emits:["dismiss"],setup(n){const t=n,l=e.computed(()=>d.cn("tooltip","content","resets-link-colors",`tooltip--${t.type}`,`tooltip--${t.color}`,t.tail&&`tooltip--${t.placement}`,t.className));return(o,s)=>(e.openBlock(),e.createElementBlock("div",{id:n.id,class:e.normalizeClass(l.value),role:"tooltip"},[n.tail?(e.openBlock(),e.createElementBlock("div",et)):e.createCommentVNode("",!0),n.type==="plain"?(e.openBlock(),e.createElementBlock("div",tt,[e.renderSlot(o.$slots,"default",{},void 0,!0),n.dismissable?(e.openBlock(),e.createBlock(e.unref(_),{key:0,class:"tooltip__dismiss",variant:"standard",size:"extra-small","icon-only":!0,"icon-definition":e.unref(E),"aria-label":"Dismiss tooltip",onClick:s[0]||(s[0]=r=>o.$emit("dismiss"))},null,8,["icon-definition"])):e.createCommentVNode("",!0)])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[n.title||n.dismissable?(e.openBlock(),e.createElementBlock("div",nt,[n.title?(e.openBlock(),e.createElementBlock("h6",ot,e.toDisplayString(n.title),1)):e.createCommentVNode("",!0),n.dismissable?(e.openBlock(),e.createBlock(e.unref(_),{key:1,class:"tooltip__dismiss",variant:"standard",size:"extra-small","icon-only":!0,"icon-definition":e.unref(E),"aria-label":"Dismiss tooltip",onClick:s[1]||(s[1]=r=>o.$emit("dismiss"))},null,8,["icon-definition"])):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.renderSlot(o.$slots,"default",{},void 0,!0)],64))],10,Je))}}),A=(n,t)=>{const l=n.__vccOpts||n;for(const[o,s]of t)l[o]=s;return l},lt=A(at,[["__scopeId","data-v-7ccd7c7d"]]),it=e.defineComponent({__name:"Tooltip",props:{trigger:{default:"hover"},type:{default:"plain"},color:{default:"default"},tail:{type:Boolean,default:!1},placement:{default:"auto"},title:{},dismissable:{type:Boolean},className:{}},setup(n,{expose:t}){const l=n,o=e.useId(),s=e.ref(!1),r=e.ref(null),a=e.ref(null),i=e.ref("top-center"),u=e.ref(0),L=()=>{const c=r.value?.getBoundingClientRect();if(!c)return"top-center";const{innerWidth:f,innerHeight:k}=window,h=c.top,I=k-c.bottom,N=a.value?.firstElementChild?.getBoundingClientRect().height??0,O=(N>0?h>=N:h>=I)?"top":"bottom",x=c.left+c.width/2,F=x<f/3?"left":x>f*2/3?"right":"center";return`${O}-${F}`},y=c=>{c.key==="Escape"&&m()},B=c=>{r.value&&!r.value.contains(c.target)&&m()};function M(){const c=a.value?.firstElementChild?.getBoundingClientRect();if(!c)return;const f=8,k=c.right-(window.innerWidth-f),h=f-c.left;k<=0&&h<=0||(u.value=window.innerWidth/2-(c.left+c.width/2))}const v=async()=>{l.placement==="auto"?i.value=L():i.value=l.placement,u.value=0,s.value=!0,document.addEventListener("keydown",y),l.trigger==="click"&&document.addEventListener("click",B),await e.nextTick(),M()},m=()=>{s.value=!1,document.removeEventListener("keydown",y),document.removeEventListener("click",B)},T=()=>{s.value?m():v()};e.onUnmounted(m),t({show:v,hide:m});const D=e.computed(()=>({type:l.type,color:l.color,tail:l.tail,placement:i.value,title:l.title,dismissable:l.dismissable}));return(c,f)=>(e.openBlock(),e.createElementBlock("span",e.mergeProps({ref_key:"wrapperEl",ref:r,class:e.unref(d.cn)("tooltip-trigger",l.className)},n.trigger==="click"?{onClick:T}:{onMouseenter:v,onMouseleave:m,onFocusin:v,onFocusout:m}),[e.renderSlot(c.$slots,"default",{tooltipId:e.unref(o),isOpen:s.value},void 0,!0),e.createElementVNode("span",{ref_key:"positionerEl",ref:a,class:e.normalizeClass(["tooltip-trigger__positioner",`tooltip-trigger__positioner--${i.value}`]),style:e.normalizeStyle({visibility:s.value?"visible":"hidden","--positioner-gap":n.tail?"var(--spacing-l)":"0.5rem","--adjust-x":`${u.value}px`}),onClick:f[0]||(f[0]=e.withModifiers(()=>{},["stop"]))},[e.createVNode(lt,e.mergeProps(D.value,{id:e.unref(o),onDismiss:m}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"body",{},void 0,!0)]),_:3},16,["id"])],6)],16))}}),st=A(it,[["__scopeId","data-v-b3f93b8c"]]),rt=["disabled"],ct=e.defineComponent({inheritAttrs:!1,__name:"PhlButton",props:{href:{},to:{},target:{},rel:{},disabled:{type:Boolean,default:!1},clickTarget:{},variant:{default:"primary"},size:{default:"medium"},iconOnly:{type:Boolean,default:!1},iconRight:{type:Boolean},text:{},className:{},iconDefinition:{},iconClass:{},src:{},svgRaw:{}},setup(n){const t=n,l=a=>"href"in a&&a.href!==void 0||"to"in a&&a.to!==void 0,o=e.computed(()=>d.cn("phila-button",`phila-button--${t.variant}`,t.size&&`is-${t.size}`,t.iconOnly&&"icon-button",t.iconOnly&&t.variant==="standard"&&"icon-button--standard",t.className)),s=e.computed(()=>l(t)?"to"in t&&t.to!==void 0?{to:t.to,disabled:t.disabled,className:o.value}:{href:t.href,target:t.target,rel:t.rel,disabled:t.disabled,className:o.value}:{}),r=e.computed(()=>({iconDefinition:t.iconDefinition,iconClass:t.iconClass,src:t.src,iconRight:t.iconRight,iconOnly:t.iconOnly,text:t.text,size:t.size}));return(a,i)=>l(t)?(e.openBlock(),e.createBlock(e.unref(d.BaseLink),e.mergeProps({key:0},{...s.value,...a.$attrs},{role:"button"}),{default:e.withCtx(()=>[e.createVNode(e.unref(d.ActionContent),e.normalizeProps(e.guardReactiveProps(r.value)),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.text),1)])]),_:3},16)]),_:3},16)):(e.openBlock(),e.createElementBlock("button",e.mergeProps({key:1,type:"button",disabled:t.disabled,class:o.value},a.$attrs),[e.createVNode(e.unref(d.ActionContent),e.normalizeProps(e.guardReactiveProps(r.value)),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.text),1)])]),_:3},16)],16,rt))}}),dt={class:"navbar-info"},ut={class:"navbar-info__group"},mt={key:0,class:"navbar-info__label has-text-body-default hidden-tablet","aria-hidden":"true"},ft={class:"has-text-body-small"},pt=e.defineComponent({__name:"NavbarInfo",props:{infoTitle:{},infoMessage:{},label:{}},setup(n,{expose:t}){const l=e.useTemplateRef("tooltip");return t({show:()=>l.value?.show(),hide:()=>l.value?.hide()}),(o,s)=>(e.openBlock(),e.createElementBlock("div",dt,[e.createVNode(e.unref(st),{ref_key:"tooltip",ref:l,type:"rich",title:n.infoTitle,trigger:"click",dismissable:!0},{default:e.withCtx(({tooltipId:r,isOpen:a})=>[e.createElementVNode("span",ut,[e.createVNode(e.unref(ct),{class:"navbar-info__trigger",variant:"standard",size:"small","icon-only":!0,"icon-definition":e.unref(z),"aria-label":"More information","aria-describedby":r,"aria-pressed":a},null,8,["icon-definition","aria-describedby","aria-pressed"]),n.label?(e.openBlock(),e.createElementBlock("span",mt,e.toDisplayString(n.label),1)):e.createCommentVNode("",!0)])]),body:e.withCtx(()=>[e.renderSlot(o.$slots,"default",{},()=>[e.createElementVNode("div",ft,e.toDisplayString(n.infoMessage),1)],!0)]),_:3},8,["title"])]))}}),vt=b(pt,[["__scopeId","data-v-c3989251"]]);exports.AppHeader=Ye;exports.NavbarInfo=vt;
|