@wra-gov/vue-components 0.29.1 → 0.29.3
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/index.d.ts +137 -0
- package/dist/vue-components.js +490 -362
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2987,6 +2987,143 @@ monthInputWidth: string;
|
|
|
2987
2987
|
yearInputWidth: string;
|
|
2988
2988
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2989
2989
|
|
|
2990
|
+
export declare const WraServiceBar: DefineComponent<ExtractPropTypes< {
|
|
2991
|
+
/**
|
|
2992
|
+
* The name of the service to display.
|
|
2993
|
+
*/
|
|
2994
|
+
serviceName: {
|
|
2995
|
+
type: PropType<string>;
|
|
2996
|
+
required: true;
|
|
2997
|
+
};
|
|
2998
|
+
/**
|
|
2999
|
+
* Array of navigation links. Each link should have a label, href, and aria label.
|
|
3000
|
+
*/
|
|
3001
|
+
navigationLinks: {
|
|
3002
|
+
type: PropType<Array<{
|
|
3003
|
+
label: string;
|
|
3004
|
+
href: string;
|
|
3005
|
+
ariaLabel: string;
|
|
3006
|
+
}>>;
|
|
3007
|
+
default: () => any[];
|
|
3008
|
+
};
|
|
3009
|
+
/**
|
|
3010
|
+
* If true, the service bar will be hidden when printing the page.
|
|
3011
|
+
*/
|
|
3012
|
+
hiddenPrint: {
|
|
3013
|
+
type: PropType<boolean>;
|
|
3014
|
+
default: boolean;
|
|
3015
|
+
};
|
|
3016
|
+
/**
|
|
3017
|
+
* Mobile breakpoint in pixels. Burger menu shows on screens smaller than this width.
|
|
3018
|
+
*/
|
|
3019
|
+
mobileBreakpoint: {
|
|
3020
|
+
type: PropType<number>;
|
|
3021
|
+
default: number;
|
|
3022
|
+
};
|
|
3023
|
+
}>, {}, {
|
|
3024
|
+
isMenuOpen: boolean;
|
|
3025
|
+
mdiMenu: string;
|
|
3026
|
+
mdiClose: string;
|
|
3027
|
+
windowWidth: number;
|
|
3028
|
+
}, {
|
|
3029
|
+
usesBurgerMenu(): boolean;
|
|
3030
|
+
}, {
|
|
3031
|
+
handleWindowResize(): void;
|
|
3032
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3033
|
+
/**
|
|
3034
|
+
* The name of the service to display.
|
|
3035
|
+
*/
|
|
3036
|
+
serviceName: {
|
|
3037
|
+
type: PropType<string>;
|
|
3038
|
+
required: true;
|
|
3039
|
+
};
|
|
3040
|
+
/**
|
|
3041
|
+
* Array of navigation links. Each link should have a label, href, and aria label.
|
|
3042
|
+
*/
|
|
3043
|
+
navigationLinks: {
|
|
3044
|
+
type: PropType<Array<{
|
|
3045
|
+
label: string;
|
|
3046
|
+
href: string;
|
|
3047
|
+
ariaLabel: string;
|
|
3048
|
+
}>>;
|
|
3049
|
+
default: () => any[];
|
|
3050
|
+
};
|
|
3051
|
+
/**
|
|
3052
|
+
* If true, the service bar will be hidden when printing the page.
|
|
3053
|
+
*/
|
|
3054
|
+
hiddenPrint: {
|
|
3055
|
+
type: PropType<boolean>;
|
|
3056
|
+
default: boolean;
|
|
3057
|
+
};
|
|
3058
|
+
/**
|
|
3059
|
+
* Mobile breakpoint in pixels. Burger menu shows on screens smaller than this width.
|
|
3060
|
+
*/
|
|
3061
|
+
mobileBreakpoint: {
|
|
3062
|
+
type: PropType<number>;
|
|
3063
|
+
default: number;
|
|
3064
|
+
};
|
|
3065
|
+
}>> & Readonly<{}>, {
|
|
3066
|
+
hiddenPrint: boolean;
|
|
3067
|
+
navigationLinks: {
|
|
3068
|
+
label: string;
|
|
3069
|
+
href: string;
|
|
3070
|
+
ariaLabel: string;
|
|
3071
|
+
}[];
|
|
3072
|
+
mobileBreakpoint: number;
|
|
3073
|
+
}, {}, {
|
|
3074
|
+
WraIcon: DefineComponent<ExtractPropTypes< {
|
|
3075
|
+
icon: {
|
|
3076
|
+
type: PropType<string>;
|
|
3077
|
+
required: true;
|
|
3078
|
+
};
|
|
3079
|
+
width: {
|
|
3080
|
+
type: PropType<number>;
|
|
3081
|
+
default: number;
|
|
3082
|
+
};
|
|
3083
|
+
height: {
|
|
3084
|
+
type: PropType<number>;
|
|
3085
|
+
default: number;
|
|
3086
|
+
};
|
|
3087
|
+
viewBox: {
|
|
3088
|
+
type: PropType<string>;
|
|
3089
|
+
default: string;
|
|
3090
|
+
};
|
|
3091
|
+
stroke: {
|
|
3092
|
+
type: PropType<string>;
|
|
3093
|
+
};
|
|
3094
|
+
fill: {
|
|
3095
|
+
type: PropType<string>;
|
|
3096
|
+
};
|
|
3097
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3098
|
+
icon: {
|
|
3099
|
+
type: PropType<string>;
|
|
3100
|
+
required: true;
|
|
3101
|
+
};
|
|
3102
|
+
width: {
|
|
3103
|
+
type: PropType<number>;
|
|
3104
|
+
default: number;
|
|
3105
|
+
};
|
|
3106
|
+
height: {
|
|
3107
|
+
type: PropType<number>;
|
|
3108
|
+
default: number;
|
|
3109
|
+
};
|
|
3110
|
+
viewBox: {
|
|
3111
|
+
type: PropType<string>;
|
|
3112
|
+
default: string;
|
|
3113
|
+
};
|
|
3114
|
+
stroke: {
|
|
3115
|
+
type: PropType<string>;
|
|
3116
|
+
};
|
|
3117
|
+
fill: {
|
|
3118
|
+
type: PropType<string>;
|
|
3119
|
+
};
|
|
3120
|
+
}>> & Readonly<{}>, {
|
|
3121
|
+
width: number;
|
|
3122
|
+
height: number;
|
|
3123
|
+
viewBox: string;
|
|
3124
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3125
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3126
|
+
|
|
2990
3127
|
export declare const WraServiceLogo: DefineComponent<ExtractPropTypes< {
|
|
2991
3128
|
/**
|
|
2992
3129
|
* The URL or path to the logo image to display.
|