sit-onyx 1.0.0-alpha.45 → 1.0.0-alpha.46
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/OnyxIconButton/OnyxIconButton.vue.d.ts +0 -3
- package/dist/components/OnyxIconButton/types.d.ts +0 -6
- package/dist/components/OnyxInput/OnyxInput.stories.d.ts +14 -4
- package/dist/components/OnyxInput/types.d.ts +7 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +85 -84
- package/package.json +1 -1
|
@@ -3,19 +3,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
3
3
|
disabled: boolean;
|
|
4
4
|
type: string;
|
|
5
5
|
variation: string;
|
|
6
|
-
size: string;
|
|
7
6
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
7
|
click: () => void;
|
|
9
8
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OnyxIconButtonProps>, {
|
|
10
9
|
disabled: boolean;
|
|
11
10
|
type: string;
|
|
12
11
|
variation: string;
|
|
13
|
-
size: string;
|
|
14
12
|
}>>> & {
|
|
15
13
|
onClick?: (() => any) | undefined;
|
|
16
14
|
}, {
|
|
17
15
|
type: "button" | "submit" | "reset";
|
|
18
|
-
size: "12px" | "16px" | "24px" | "32px" | "48px" | "64px" | "96px";
|
|
19
16
|
disabled: boolean;
|
|
20
17
|
variation: "primary" | "secondary" | "danger";
|
|
21
18
|
}, {}>, Readonly<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { ButtonType, ButtonVariation } from "../OnyxButton/types";
|
|
2
|
-
import type { IconSize } from "../OnyxIcon/types";
|
|
3
2
|
export type OnyxIconButtonProps = {
|
|
4
3
|
/**
|
|
5
4
|
* The aria-label of the button.
|
|
@@ -26,9 +25,4 @@ export type OnyxIconButtonProps = {
|
|
|
26
25
|
* The icon which will be displayed. The custom content in the `default` won't have an effect if the `icon` property is set.
|
|
27
26
|
*/
|
|
28
27
|
icon?: string;
|
|
29
|
-
/**
|
|
30
|
-
* Icon size. Pixel values will be translated to the according `rem` value by the base of `16px`=`1rem`.
|
|
31
|
-
* @default 24px
|
|
32
|
-
*/
|
|
33
|
-
size?: IconSize;
|
|
34
28
|
};
|
|
@@ -15,7 +15,7 @@ export declare const Default: {
|
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
* This example shows
|
|
18
|
+
* This example shows an input with a placeholder.
|
|
19
19
|
*/
|
|
20
20
|
export declare const Placeholder: {
|
|
21
21
|
args: {
|
|
@@ -63,7 +63,7 @@ export declare const Loading: {
|
|
|
63
63
|
};
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
66
|
-
* This example shows
|
|
66
|
+
* This example shows an input with a maxlength and counter.
|
|
67
67
|
*/
|
|
68
68
|
export declare const Maxlength: {
|
|
69
69
|
args: {
|
|
@@ -73,7 +73,7 @@ export declare const Maxlength: {
|
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
76
|
-
* This example shows
|
|
76
|
+
* This example shows an input with a message / help text.
|
|
77
77
|
*/
|
|
78
78
|
export declare const WithMessage: {
|
|
79
79
|
args: {
|
|
@@ -82,7 +82,7 @@ export declare const WithMessage: {
|
|
|
82
82
|
};
|
|
83
83
|
};
|
|
84
84
|
/**
|
|
85
|
-
* This example shows
|
|
85
|
+
* This example shows an input with autocomplete where the browser suggest to fill the input value.
|
|
86
86
|
* Note: For this example you need to have set your name in your browser settings.
|
|
87
87
|
*/
|
|
88
88
|
export declare const Autocomplete: {
|
|
@@ -91,3 +91,13 @@ export declare const Autocomplete: {
|
|
|
91
91
|
autocomplete: "name";
|
|
92
92
|
};
|
|
93
93
|
};
|
|
94
|
+
/**
|
|
95
|
+
* This example shows an input without a visual label.
|
|
96
|
+
* For accessibility / screen readers it must still be passed.
|
|
97
|
+
*/
|
|
98
|
+
export declare const HiddenLabel: {
|
|
99
|
+
args: {
|
|
100
|
+
label: string;
|
|
101
|
+
hideLabel: true;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type OnyxInputProps = {
|
|
2
2
|
/**
|
|
3
|
-
* Label to show above the input.
|
|
3
|
+
* Label to show above the input. Required due to accessibility / screen readers.
|
|
4
|
+
* If you want to visually hide the label, use the `hideLabel` property.
|
|
4
5
|
*/
|
|
5
6
|
label: string;
|
|
6
7
|
/**
|
|
@@ -81,6 +82,11 @@ export type OnyxInputProps = {
|
|
|
81
82
|
* Message / help text to display below the input.
|
|
82
83
|
*/
|
|
83
84
|
message?: string;
|
|
85
|
+
/**
|
|
86
|
+
* If `true`, the label will be visually hidden.
|
|
87
|
+
* For accessibility / screen readers, the aria-label will still be set.
|
|
88
|
+
*/
|
|
89
|
+
hideLabel?: boolean;
|
|
84
90
|
};
|
|
85
91
|
export declare const INPUT_TYPES: readonly ["email", "password", "search", "tel", "text", "url"];
|
|
86
92
|
export type InputType = (typeof INPUT_TYPES)[number];
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),I={key:0,class:"onyx-app__nav"},z={class:"onyx-app__page"},q={key:1,class:"onyx-app__page-overlay"},M={key:2,class:"onyx-app__app-overlay"},P=e.defineComponent({__name:"OnyxAppLayout",props:{navBarAlignment:{default:"top"}},setup(n){const o=n,t=e.useSlots();return(l,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["onyx-app",{"onyx-app--horizontal":o.navBarAlignment==="left"}])},[e.unref(t).navBar?(e.openBlock(),e.createElementBlock("nav",I,[e.renderSlot(l.$slots,"navBar")])):e.createCommentVNode("",!0),e.createElementVNode("div",z,[e.renderSlot(l.$slots,"default")]),e.unref(t).pageOverlay?(e.openBlock(),e.createElementBlock("div",q,[e.renderSlot(l.$slots,"pageOverlay")])):e.createCommentVNode("",!0),e.unref(t).appOverlay?(e.openBlock(),e.createElementBlock("div",M,[e.renderSlot(l.$slots,"appOverlay")])):e.createCommentVNode("",!0)],2))}}),A=["innerHTML"],h=e.defineComponent({__name:"OnyxIcon",props:{icon:{},size:{default:"24px"},color:{default:"currentColor"}},setup(n){const o=n;return(t,l)=>(e.openBlock(),e.createElementBlock("figure",{class:e.normalizeClass(["onyx-icon",[o.size!=="24px"?`onyx-icon--${o.size}`:"",o.color!=="currentColor"?`onyx-icon--${o.color}`:""]]),"aria-hidden":"true",innerHTML:o.icon},null,10,A))}}),g=(n,o)=>{const t=n.__vccOpts||n;for(const[l,a]of o)t[l]=a;return t},D={},U={class:"onyx-skeleton"};function R(n,o){return e.openBlock(),e.createElementBlock("figure",U)}const f=g(D,[["render",R]]),Y=["disabled"],G={class:"onyx-button__label onyx-truncation-ellipsis"},F=e.defineComponent({__name:"OnyxButton",props:{label:{},disabled:{type:Boolean,default:!1},type:{default:"button"},variation:{default:"primary"},mode:{default:"default"},icon:{},skeleton:{type:Boolean,default:!1}},emits:["click"],setup(n,{emit:o}){const t=n,l=o;return(a,r)=>t.skeleton?(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-button-skeleton"})):(e.openBlock(),e.createElementBlock("button",{key:1,class:e.normalizeClass(["onyx-button",[`onyx-button--${t.variation}`,`onyx-button--${t.mode}`]]),disabled:t.disabled,onClick:r[0]||(r[0]=i=>l("click"))},[t.icon?(e.openBlock(),e.createBlock(h,{key:0,icon:t.icon,size:"24px"},null,8,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("span",G,e.toDisplayString(t.label),1)],10,Y))}}),H=["button","submit","reset"],j=["primary","secondary","danger"],X=["default","outline","plain"],Z="(optional)",K={tooShort:"Please lengthen this text to {minLength} characters or more (you are currently using 1 character) | Please lengthen this text to {minLength} characters or more (you are currently using {n} characters)",tooLong:"Please shorten this text to {maxLength} characters or less (you are currently using 1 character) | Please shorten this text to {maxLength} characters or less (you are currently using {n} characters)",rangeUnderflow:"Value must be greater than or equal to {min}",rangeOverflow:"Value must be less than or equal to {max}",patternMismatch:"Please match the format requested.",valueMissing:"Please fill in this field.",stepMismatch:"Please enter a value that is a multiple of {step}.",badInput:'"{value}" does not match the expected type.',typeMismatch:{generic:'"{value}" does not match the expected type.',email:'"{value}" must be a valid email address.',number:'"{value}" must be a number.',tel:'"{value}" must be a valid phone number.',url:'"{value}" must a valid URL.'}},J="Select all",x={optional:Z,validations:K,selectAll:J},N=Symbol(),O=n=>{const o=e.computed(()=>e.unref(n==null?void 0:n.locale)??"en-US"),t=e.computed(()=>n!=null&&n.messages&&o.value in n.messages?n.messages[o.value]:x),l=e.computed(()=>(a,r={})=>{let i=$(a,t.value)??$(a,x)??"";const c=typeof r.n=="number"?r.n:void 0;return i=Q(i,c),ee(i,r)});return{locale:o,t:l}},W=(n,o)=>n.provide(N,O(o)),v=()=>e.inject(N,()=>O(),!0),$=(n,o)=>{const t=n.split(".").reduce((l,a)=>!l||typeof l=="string"?l:l[a],o);return t&&typeof t=="string"?t:void 0},Q=(n,o)=>{const t=n.split(" | ").map(a=>a.trim());if(t.length<=1)return n;let l=1;return o===0&&(l=0),o&&(o<=0||o>1)&&(l=2),t.length===2?l===1?t[0]:t[1]:t[l]},ee=(n,o)=>o?Object.entries(o).reduce((l,[a,r])=>r===void 0?l:l.replace(new RegExp(`{${a}}`,"gi"),r.toString()),n).replace(/\s?{.*}\s?/gi,""):n,te={key:0,class:"onyx-checkbox-skeleton"},oe={class:"onyx-checkbox__container"},ne=["aria-label","indeterminate","disabled","required"],k=e.defineComponent({__name:"OnyxCheckbox",props:{modelValue:{type:Boolean,default:!1},label:{},indeterminate:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},hideLabel:{type:Boolean},truncation:{default:"ellipsis"},skeleton:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,a=e.computed({get:()=>t.modelValue,set:c=>l("update:modelValue",c)}),r=e.ref(!1),i=e.computed(()=>t.hideLabel?"":`onyx-${t.required?"required":"optional"}-marker`);return(c,u)=>t.skeleton?(e.openBlock(),e.createElementBlock("div",te,[e.createVNode(f,{class:"onyx-checkbox-skeleton__input"}),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-checkbox-skeleton__label"}))])):(e.openBlock(),e.createElementBlock("label",{key:1,class:e.normalizeClass(["onyx-checkbox",[i.value]])},[e.createElementVNode("div",oe,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":u[0]||(u[0]=s=>a.value=s),"aria-label":t.hideLabel?t.label:void 0,class:e.normalizeClass(["onyx-checkbox__input",{"onyx-checkbox__input--touched":r.value}]),type:"checkbox",indeterminate:t.indeterminate,disabled:t.disabled,required:t.required,onBlur:u[1]||(u[1]=s=>r.value=!0)},null,42,ne),[[e.vModelCheckbox,a.value]])]),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("p",{key:0,class:e.normalizeClass(["onyx-checkbox__label",[`onyx-truncation-${t.truncation}`]])},e.toDisplayString(t.label),3))],2))}}),le=["disabled"],ae={key:0,class:"onyx-checkbox-group__label"},re=e.defineComponent({__name:"OnyxCheckboxGroup",props:{options:{},modelValue:{default:()=>[]},headline:{},direction:{default:"vertical"},withCheckAll:{type:Boolean,default:!1},checkAllLabel:{},disabled:{type:Boolean,default:!1},skeleton:{}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,{t:a}=v(),r=(s,p)=>{const d=p?[...t.modelValue,s]:t.modelValue.filter(y=>y!==s);l("update:modelValue",d)},i=e.computed(()=>t.options.filter(s=>!s.disabled&&!s.skeleton)),c=s=>{const p=s?i.value.map(({id:d})=>d):[];l("update:modelValue",p)},u=e.computed(()=>{const s=i.value.map(({id:d})=>d),p=t.modelValue.filter(d=>s.includes(d));return!s.length||!p.length?{modelValue:!1}:p.length===s.length?{modelValue:!0}:{indeterminate:!0,modelValue:!1}});return(s,p)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"onyx-checkbox-group",disabled:t.disabled},[t.headline?(e.openBlock(),e.createElementBlock("legend",ae,[e.createVNode(e.unref(b),{is:"h3"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.headline),1)]),_:1})])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["onyx-checkbox-group__content",{"onyx-checkbox-group__content--horizontal":t.direction==="horizontal"}])},[t.skeleton===void 0?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[t.withCheckAll?(e.openBlock(),e.createBlock(k,e.mergeProps({key:0},u.value,{label:t.checkAllLabel||e.unref(a)("selectAll"),"onUpdate:modelValue":c}),null,16,["label"])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.options,d=>(e.openBlock(),e.createBlock(k,e.mergeProps({key:d.id.toString()},d,{"model-value":t.modelValue.includes(d.id),"onUpdate:modelValue":y=>r(d.id,y)}),null,16,["model-value","onUpdate:modelValue"]))),128))],64)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.skeleton,d=>(e.openBlock(),e.createBlock(k,{key:d,label:`Skeleton ${d}`,skeleton:""},null,8,["label"]))),128))],2)],8,le))}}),se=["horizontal","vertical"],b=e.defineComponent({__name:"OnyxHeadline",props:{is:{},monospace:{type:Boolean,default:!1}},setup(n){const o=n;return(t,l)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(o.is),{class:e.normalizeClass(["onyx-headline",`onyx-headline--${o.is}`,o.monospace?"onyx-headline--monospace":""])},{default:e.withCtx(()=>[e.renderSlot(t.$slots,"default")]),_:3},8,["class"]))}}),ce=["h1","h2","h3","h4","h5","h6"],ie=["12px","16px","24px","32px","48px","64px","96px"],ue={},de={class:"onyx-circle-spinner",viewBox:"0 0 50 50"},pe=e.createElementVNode("circle",{class:"onyx-circle-spinner__circle",cx:"50%",cy:"50%",r:"45%"},null,-1),me=[pe];function ye(n,o){return e.openBlock(),e.createElementBlock("svg",de,me)}const _e=g(ue,[["render",ye]]),fe={},he={class:"onyx-loading-dots"},ke=e.createElementVNode("span",{class:"onyx-loading-dots__center"},null,-1),xe=[ke];function ge(n,o){return e.openBlock(),e.createElementBlock("div",he,xe)}const ve=g(fe,[["render",ge]]),B=e.defineComponent({__name:"OnyxLoadingIndicator",props:{type:{default:"dots"}},setup(n){const o=n;return(t,l)=>o.type==="circle"?(e.openBlock(),e.createBlock(_e,{key:0})):o.type==="dots"?(e.openBlock(),e.createBlock(ve,{key:1})):e.createCommentVNode("",!0)}}),be=["aria-label","disabled"],Be=e.defineComponent({__name:"OnyxIconButton",props:{label:{},disabled:{type:Boolean,default:!1},type:{default:"button"},variation:{default:"primary"},loading:{type:Boolean},icon:{},size:{default:"24px"}},emits:["click"],setup(n,{emit:o}){const t=n,l=o;return(a,r)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["onyx-icon-button",{[`onyx-icon-button--${t.variation}`]:!0,"onyx-icon-button--loading":t.loading}]),"aria-label":t.label,disabled:t.disabled||t.loading,onClick:r[0]||(r[0]=i=>l("click"))},[t.loading?(e.openBlock(),e.createBlock(B,{key:0,type:"circle"})):t.icon?(e.openBlock(),e.createBlock(h,{key:1,icon:t.icon,size:t.size},null,8,["icon","size"])):e.renderSlot(a.$slots,"default",{key:2})],10,be))}}),Ce={class:"onyx-input"},Ee={class:"onyx-truncation-ellipsis"},Ve={class:"onyx-input__wrapper"},$e=["placeholder","type","required","autocapitalize","autocomplete","autofocus","name","pattern","readonly","disabled","minlength","maxlength"],Se={key:0,class:"onyx-input__footer onyx-text--small"},Ne={key:0,class:"onyx-truncation-ellipsis"},Oe={key:1,class:"onyx-input__counter"},Te=e.defineComponent({__name:"OnyxInput",props:{label:{},modelValue:{default:""},type:{default:"text"},placeholder:{},required:{type:Boolean,default:!1},autocapitalize:{default:"sentences"},autocomplete:{},autofocus:{type:Boolean},name:{},pattern:{},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},maxlength:{},minlength:{},withCounter:{type:Boolean},message:{}},emits:["update:modelValue","change","focus","blur"],setup(n,{emit:o}){const t=n,l=o,a=e.computed({get:()=>t.modelValue,set:u=>l("update:modelValue",u)}),r=u=>{const s=u.target.value;l("change",s)},i=e.computed(()=>t.pattern instanceof RegExp?t.pattern.source:t.pattern),c=e.computed(()=>t.withCounter&&t.maxlength);return(u,s)=>(e.openBlock(),e.createElementBlock("div",Ce,[e.createElementVNode("label",null,[e.createElementVNode("div",{class:e.normalizeClass(["onyx-input__label onyx-text--small",{"onyx-required-marker":t.required,"onyx-optional-marker":!t.required}])},[e.createElementVNode("div",Ee,e.toDisplayString(t.label),1)],2),e.createElementVNode("div",Ve,[t.loading?(e.openBlock(),e.createBlock(e.unref(B),{key:0,class:"onyx-input__loading",type:"circle"})):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":s[0]||(s[0]=p=>a.value=p),class:"onyx-input__native",placeholder:t.placeholder,type:t.type,required:t.required,autocapitalize:t.autocapitalize,autocomplete:t.autocomplete,autofocus:t.autofocus,name:t.name,pattern:i.value,readonly:t.readonly,disabled:t.disabled||t.loading,minlength:t.minlength,maxlength:t.maxlength,onChange:r,onFocus:s[1]||(s[1]=p=>l("focus")),onBlur:s[2]||(s[2]=p=>l("blur"))},null,40,$e),[[e.vModelDynamic,a.value]])])]),t.message||c.value?(e.openBlock(),e.createElementBlock("div",Se,[t.message?(e.openBlock(),e.createElementBlock("span",Ne,e.toDisplayString(t.message),1)):e.createCommentVNode("",!0),c.value?(e.openBlock(),e.createElementBlock("span",Oe,e.toDisplayString(a.value.length)+"/"+e.toDisplayString(t.maxlength),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)]))}}),we=["email","password","search","tel","text","url"],Le=["none","sentences","words","characters"],Ie='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="M12.2 10.55v2h5.836l-8.193 8.193 1.414 1.414 8.193-8.193V19.8h2v-9.25z"/></svg>',ze=n=>/^http(s?):\/\//.test(n),qe=["href","target","rel"],Me=e.defineComponent({__name:"OnyxLink",props:{href:{},target:{default:"_self"},withExternalIcon:{type:[Boolean,String],default:"auto"}},emits:["click"],setup(n,{emit:o}){const t=n,l=o,a=e.computed(()=>t.withExternalIcon!=="auto"?t.withExternalIcon:ze(t.href));return(r,i)=>(e.openBlock(),e.createElementBlock("a",{class:"onyx-link",href:t.href,target:t.target,rel:t.target==="_blank"?"noreferrer":void 0,onClick:i[0]||(i[0]=c=>l("click"))},[e.renderSlot(r.$slots,"default"),a.value?(e.openBlock(),e.createBlock(h,{key:0,class:"onyx-link__icon",icon:e.unref(Ie),size:"16px"},null,8,["icon"])):e.createCommentVNode("",!0)],8,qe))}}),Pe=["_self","_blank","_parent","_top"],Ae={key:0,class:"onyx-page__sidebar"},De={class:"onyx-page__main"},Ue={key:1,class:"onyx-page__footer"},Re={key:2,class:"onyx-page__toasts"},Ye=e.defineComponent({__name:"OnyxPageLayout",props:{footerAsideSidebar:{type:Boolean},hideSidebar:{type:Boolean}},setup(n){const o=n,t=e.useSlots(),l=e.computed(()=>{let a="";return!t.footer&&t.sidebar&&(a="onyx-page--side-main"),t.footer&&(!t.sidebar||o.hideSidebar)&&(a="onyx-page--main-footer"),t.footer&&t.sidebar&&(o.footerAsideSidebar?a="onyx-page--side-main-footer-partial":a="onyx-page--side-main-footer-full"),a});return(a,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["onyx-page",l.value])},[e.unref(t).sidebar&&!o.hideSidebar?(e.openBlock(),e.createElementBlock("aside",Ae,[e.renderSlot(a.$slots,"sidebar")])):e.createCommentVNode("",!0),e.createElementVNode("main",De,[e.renderSlot(a.$slots,"default")]),e.unref(t).footer?(e.openBlock(),e.createElementBlock("footer",Ue,[e.renderSlot(a.$slots,"footer")])):e.createCommentVNode("",!0),e.unref(t).toasts?(e.openBlock(),e.createElementBlock("div",Re,[e.renderSlot(a.$slots,"toasts")])):e.createCommentVNode("",!0)],2))}}),Ge=(()=>{let n=0;return()=>n++})(),Fe=n=>`${n}-${Ge()}`,He={key:0,class:"onyx-radio-button-skeleton"},je=["title"],Xe=["required","name","value","checked","disabled"],S=e.defineComponent({__name:"OnyxRadioButton",props:{id:{},label:{},value:{},disabled:{type:Boolean,default:!1},truncation:{default:"ellipsis"},skeleton:{type:Boolean},selected:{type:Boolean,default:!1},name:{},required:{type:Boolean,default:!1},errorMessage:{}},setup(n){const o=n,t=e.ref();return e.watchEffect(()=>{var l;return(l=t.value)==null?void 0:l.setCustomValidity(o.errorMessage??"")}),(l,a)=>o.skeleton?(e.openBlock(),e.createElementBlock("div",He,[e.createVNode(f,{class:"onyx-radio-button-skeleton__input"}),e.createVNode(f,{class:"onyx-radio-button-skeleton__label"})])):(e.openBlock(),e.createElementBlock("label",{key:1,class:"onyx-radio-button",title:o.errorMessage},[e.createElementVNode("input",{ref_key:"selectorRef",ref:t,class:"onyx-radio-button__selector",type:"radio",required:o.required,name:o.name,value:o.id,checked:o.selected,disabled:o.disabled},null,8,Xe),e.createElementVNode("span",{class:e.normalizeClass(["onyx-radio-button__label",[`onyx-truncation-${o.truncation}`]])},e.toDisplayString(o.label),3)],8,je))}}),Ze=["disabled"],Ke={key:0,class:"onyx-radio-button-group__headline"},Je=e.defineComponent({__name:"OnyxRadioButtonGroup",props:{name:{default:()=>Fe("radio-button-group-name")},modelValue:{},headline:{default:""},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},errorMessage:{default:""},direction:{default:"vertical"},options:{},skeleton:{}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,a=r=>l("update:modelValue",t.options.find(({id:i})=>r.target.value===i));return(r,i)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"onyx-radio-button-group",disabled:t.disabled,onChange:i[0]||(i[0]=c=>a(c))},[t.headline?(e.openBlock(),e.createElementBlock("legend",Ke,[e.createVNode(b,{is:"h3",class:e.normalizeClass({"onyx-required-marker":t.required,"onyx-optional-marker":!t.required})},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.headline),1)]),_:1},8,["class"])])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["onyx-radio-button-group__content",{"onyx-radio-button-group__content--horizontal":t.direction==="horizontal"}])},[t.skeleton===void 0?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.options,c=>{var u;return e.openBlock(),e.createBlock(S,e.mergeProps({key:c.id},c,{name:t.name,"error-message":t.errorMessage,selected:c.id===((u=t.modelValue)==null?void 0:u.id),required:t.required}),null,16,["name","error-message","selected","required"])}),128)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.skeleton,c=>(e.openBlock(),e.createBlock(S,{id:`skeleton-${c}`,key:c,label:"Skeleton ${i}",name:t.name,skeleton:""},null,8,["id","name"]))),128))],2)],40,Ze))}}),T=(n,o)=>{const t=Object.entries(n).filter(([a,r])=>r!==void 0),l=Object.entries(o).filter(([a,r])=>r!==void 0);return t.length!==l.length?!1:t.every(([a,r])=>r===o[a])},w=()=>Object.entries(Object.getOwnPropertyDescriptors(ValidityState.prototype)).filter(([n,o])=>o.enumerable).map(([n])=>n),L=n=>w().reduce((o,t)=>(o[t]=n[t],o),{}),We=n=>{if(n.valueMissing)return"valueMissing";const o=w().filter(t=>t!=="valid").sort();for(const t of o)if(t in n&&n[t])return t},Qe='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m21.311 10.793-8.293 8.293-3.291-3.292-1.415 1.415 4.706 4.705 9.707-9.707z"/></svg>',et='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m22.707 10.707-1.414-1.414L16 14.586l-5.293-5.293-1.414 1.414L14.586 16l-5.293 5.293 1.414 1.414L16 17.414l5.293 5.293 1.414-1.414L17.414 16z"/></svg>',tt={key:0,class:"onyx-switch-skeleton"},ot=["aria-label","disabled","required"],nt={class:"onyx-switch__container"},lt={class:"onyx-switch__icon"},at=e.defineComponent({__name:"OnyxSwitch",props:{modelValue:{type:Boolean,default:!1},label:{},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},errorMessage:{},hideLabel:{type:Boolean},truncation:{default:"ellipsis"},skeleton:{type:Boolean,default:!1}},emits:["update:modelValue","validityChange"],setup(n,{emit:o}){var s;const t=n,l=o,{errorMessage:a}=e.toRefs(t),r=e.ref(),i=e.ref((s=r.value)==null?void 0:s.validity),c=e.computed({get:()=>t.modelValue,set:p=>{l("update:modelValue",p)}});e.watch([r,a],()=>{r.value&&r.value.setCustomValidity(t.errorMessage||"")}),e.watch([r,c,a],()=>{if(!r.value)return;const p=L(r.value.validity);(!i.value||!T(p,i.value))&&(i.value=p,l("validityChange",i.value))},{immediate:!0});const u=e.computed(()=>t.hideLabel?"":`onyx-${t.required?"required":"optional"}-marker`);return(p,d)=>t.skeleton?(e.openBlock(),e.createElementBlock("div",tt,[e.createVNode(f,{class:"onyx-switch-skeleton__input"}),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-switch-skeleton__label"}))])):(e.openBlock(),e.createElementBlock("label",{key:1,class:e.normalizeClass(["onyx-switch",[u.value]])},[e.withDirectives(e.createElementVNode("input",{ref_key:"inputElement",ref:r,"onUpdate:modelValue":d[0]||(d[0]=y=>c.value=y),class:"onyx-switch__input",type:"checkbox","aria-label":t.hideLabel?t.label:void 0,disabled:t.disabled,required:t.required},null,8,ot),[[e.vModelCheckbox,c.value]]),e.createElementVNode("span",nt,[e.createElementVNode("span",lt,[e.createVNode(e.unref(h),{icon:c.value?e.unref(Qe):e.unref(et),size:"24px"},null,8,["icon"])])]),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(["onyx-switch__label",[`onyx-truncation-${t.truncation}`]])},e.toDisplayString(t.label),3))],2))}}),rt=Object.keys(x.validations.typeMismatch),st={key:0,class:"onyx-test-input__error","aria-live":"polite"},ct={class:"onyx-test-input__info"},it=e.defineComponent({__name:"TestInput",props:{modelValue:{default:""},label:{default:""},errorMessage:{},required:{type:Boolean},pattern:{},type:{default:"text"},max:{},maxLength:{},min:{},step:{},minLength:{}},emits:["update:modelValue","change","validityChange"],setup(n,{emit:o}){var y;const t=n,l=o,{t:a}=v(),{errorMessage:r}=e.toRefs(t),i=e.ref(!1),c=e.ref(null),u=e.ref((y=c.value)==null?void 0:y.validity),s=e.computed({get:()=>t.modelValue,set:m=>l("update:modelValue",m)}),p=e.computed(()=>{if(!u.value||u.value.valid)return"";const m=We(u.value);if(t.errorMessage||m==="customError")return t.errorMessage;if(!m)return"";if(m==="typeMismatch"){const _=rt.includes(t.type)?t.type:"generic";return a.value(`validations.typeMismatch.${_}`,{value:s.value})}return a.value(`validations.${m}`,{value:s.value,n:s.value.toString().length,minLength:t.minLength,maxLength:t.maxLength,min:t.min,max:t.max,step:t.step})}),d=m=>{const _=m.target;l("change",_.value)};return e.watch([c,r],()=>{c.value&&c.value.setCustomValidity(t.errorMessage||"")}),e.watch([c,s,r],()=>{if(!c.value)return;const m=L(c.value.validity);(!u.value||!T(m,u.value))&&(u.value=m,l("validityChange",u.value))},{immediate:!0}),(m,_)=>{var C,E;return e.openBlock(),e.createElementBlock("label",{class:e.normalizeClass(["onyx-test-input",{"onyx-test-input--touched":i.value}])},[e.createElementVNode("span",{class:e.normalizeClass(["onyx-test-input__label",{"onyx-test-input__label--required":t.required}])},e.toDisplayString(t.label),3),e.withDirectives(e.createElementVNode("input",e.mergeProps(t,{ref_key:"inputElement",ref:c,"onUpdate:modelValue":_[0]||(_[0]=V=>s.value=V),onChange:d,onBlur:_[1]||(_[1]=V=>i.value=!0)}),null,16),[[e.vModelDynamic,s.value]]),i.value&&!((C=u.value)!=null&&C.valid)?(e.openBlock(),e.createElementBlock("p",st,e.toDisplayString(p.value),1)):e.createCommentVNode("",!0),e.createElementVNode("p",ct,' Model value: "'+e.toDisplayString(s.value)+'", is valid: '+e.toDisplayString((E=u.value)==null?void 0:E.valid),1)],2)}}}),ut=["primary","secondary","neutral","danger","warning","success","info"],dt=["small","default","large"],pt=["ellipsis","multiline"],mt=n=>({install:o=>{W(o,n.i18n);const t=o.runWithContext(()=>v());e.watchEffect(()=>yt(t.t.value("optional")))}}),yt=n=>globalThis.document.body.style.setProperty("--onyx-global-optional-text",n);exports.AUTOCAPITALIZE=Le;exports.BUTTON_MODES=X;exports.BUTTON_TYPES=H;exports.BUTTON_VARIATIONS=j;exports.CHECKBOX_GROUP_DIRECTIONS=se;exports.HEADLINE_TYPES=ce;exports.ICON_SIZES=ie;exports.INPUT_TYPES=we;exports.LINK_TARGETS=Pe;exports.ONYX_COLORS=ut;exports.OnyxAppLayout=P;exports.OnyxButton=F;exports.OnyxCheckboxGroup=re;exports.OnyxHeadline=b;exports.OnyxIcon=h;exports.OnyxIconButton=Be;exports.OnyxInput=Te;exports.OnyxLink=Me;exports.OnyxLoadingIndicator=B;exports.OnyxPageLayout=Ye;exports.OnyxRadioButtonGroup=Je;exports.OnyxSkeleton=f;exports.OnyxSwitch=at;exports.TEXT_SIZES=dt;exports.TRUNCATION_TYPES=pt;exports.TestInput=it;exports.createOnyx=mt;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),I={key:0,class:"onyx-app__nav"},q={class:"onyx-app__page"},z={key:1,class:"onyx-app__page-overlay"},M={key:2,class:"onyx-app__app-overlay"},P=e.defineComponent({__name:"OnyxAppLayout",props:{navBarAlignment:{default:"top"}},setup(n){const o=n,t=e.useSlots();return(l,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["onyx-app",{"onyx-app--horizontal":o.navBarAlignment==="left"}])},[e.unref(t).navBar?(e.openBlock(),e.createElementBlock("nav",I,[e.renderSlot(l.$slots,"navBar")])):e.createCommentVNode("",!0),e.createElementVNode("div",q,[e.renderSlot(l.$slots,"default")]),e.unref(t).pageOverlay?(e.openBlock(),e.createElementBlock("div",z,[e.renderSlot(l.$slots,"pageOverlay")])):e.createCommentVNode("",!0),e.unref(t).appOverlay?(e.openBlock(),e.createElementBlock("div",M,[e.renderSlot(l.$slots,"appOverlay")])):e.createCommentVNode("",!0)],2))}}),A=["innerHTML"],h=e.defineComponent({__name:"OnyxIcon",props:{icon:{},size:{default:"24px"},color:{default:"currentColor"}},setup(n){const o=n;return(t,l)=>(e.openBlock(),e.createElementBlock("figure",{class:e.normalizeClass(["onyx-icon",[o.size!=="24px"?`onyx-icon--${o.size}`:"",o.color!=="currentColor"?`onyx-icon--${o.color}`:""]]),"aria-hidden":"true",innerHTML:o.icon},null,10,A))}}),g=(n,o)=>{const t=n.__vccOpts||n;for(const[l,a]of o)t[l]=a;return t},D={},U={class:"onyx-skeleton"};function R(n,o){return e.openBlock(),e.createElementBlock("figure",U)}const f=g(D,[["render",R]]),Y=["disabled"],G={class:"onyx-button__label onyx-truncation-ellipsis"},F=e.defineComponent({__name:"OnyxButton",props:{label:{},disabled:{type:Boolean,default:!1},type:{default:"button"},variation:{default:"primary"},mode:{default:"default"},icon:{},skeleton:{type:Boolean,default:!1}},emits:["click"],setup(n,{emit:o}){const t=n,l=o;return(a,r)=>t.skeleton?(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-button-skeleton"})):(e.openBlock(),e.createElementBlock("button",{key:1,class:e.normalizeClass(["onyx-button",[`onyx-button--${t.variation}`,`onyx-button--${t.mode}`]]),disabled:t.disabled,onClick:r[0]||(r[0]=i=>l("click"))},[t.icon?(e.openBlock(),e.createBlock(h,{key:0,icon:t.icon,size:"24px"},null,8,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("span",G,e.toDisplayString(t.label),1)],10,Y))}}),H=["button","submit","reset"],j=["primary","secondary","danger"],X=["default","outline","plain"],Z="(optional)",K={tooShort:"Please lengthen this text to {minLength} characters or more (you are currently using 1 character) | Please lengthen this text to {minLength} characters or more (you are currently using {n} characters)",tooLong:"Please shorten this text to {maxLength} characters or less (you are currently using 1 character) | Please shorten this text to {maxLength} characters or less (you are currently using {n} characters)",rangeUnderflow:"Value must be greater than or equal to {min}",rangeOverflow:"Value must be less than or equal to {max}",patternMismatch:"Please match the format requested.",valueMissing:"Please fill in this field.",stepMismatch:"Please enter a value that is a multiple of {step}.",badInput:'"{value}" does not match the expected type.',typeMismatch:{generic:'"{value}" does not match the expected type.',email:'"{value}" must be a valid email address.',number:'"{value}" must be a number.',tel:'"{value}" must be a valid phone number.',url:'"{value}" must a valid URL.'}},J="Select all",x={optional:Z,validations:K,selectAll:J},N=Symbol(),O=n=>{const o=e.computed(()=>e.unref(n==null?void 0:n.locale)??"en-US"),t=e.computed(()=>n!=null&&n.messages&&o.value in n.messages?n.messages[o.value]:x),l=e.computed(()=>(a,r={})=>{let i=$(a,t.value)??$(a,x)??"";const c=typeof r.n=="number"?r.n:void 0;return i=Q(i,c),ee(i,r)});return{locale:o,t:l}},W=(n,o)=>n.provide(N,O(o)),v=()=>e.inject(N,()=>O(),!0),$=(n,o)=>{const t=n.split(".").reduce((l,a)=>!l||typeof l=="string"?l:l[a],o);return t&&typeof t=="string"?t:void 0},Q=(n,o)=>{const t=n.split(" | ").map(a=>a.trim());if(t.length<=1)return n;let l=1;return o===0&&(l=0),o&&(o<=0||o>1)&&(l=2),t.length===2?l===1?t[0]:t[1]:t[l]},ee=(n,o)=>o?Object.entries(o).reduce((l,[a,r])=>r===void 0?l:l.replace(new RegExp(`{${a}}`,"gi"),r.toString()),n).replace(/\s?{.*}\s?/gi,""):n,te={key:0,class:"onyx-checkbox-skeleton"},oe={class:"onyx-checkbox__container"},ne=["aria-label","indeterminate","disabled","required"],k=e.defineComponent({__name:"OnyxCheckbox",props:{modelValue:{type:Boolean,default:!1},label:{},indeterminate:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},hideLabel:{type:Boolean},truncation:{default:"ellipsis"},skeleton:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,a=e.computed({get:()=>t.modelValue,set:c=>l("update:modelValue",c)}),r=e.ref(!1),i=e.computed(()=>t.hideLabel?"":`onyx-${t.required?"required":"optional"}-marker`);return(c,u)=>t.skeleton?(e.openBlock(),e.createElementBlock("div",te,[e.createVNode(f,{class:"onyx-checkbox-skeleton__input"}),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-checkbox-skeleton__label"}))])):(e.openBlock(),e.createElementBlock("label",{key:1,class:e.normalizeClass(["onyx-checkbox",[i.value]])},[e.createElementVNode("div",oe,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":u[0]||(u[0]=s=>a.value=s),"aria-label":t.hideLabel?t.label:void 0,class:e.normalizeClass(["onyx-checkbox__input",{"onyx-checkbox__input--touched":r.value}]),type:"checkbox",indeterminate:t.indeterminate,disabled:t.disabled,required:t.required,onBlur:u[1]||(u[1]=s=>r.value=!0)},null,42,ne),[[e.vModelCheckbox,a.value]])]),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("p",{key:0,class:e.normalizeClass(["onyx-checkbox__label",[`onyx-truncation-${t.truncation}`]])},e.toDisplayString(t.label),3))],2))}}),le=["disabled"],ae={key:0,class:"onyx-checkbox-group__label"},re=e.defineComponent({__name:"OnyxCheckboxGroup",props:{options:{},modelValue:{default:()=>[]},headline:{},direction:{default:"vertical"},withCheckAll:{type:Boolean,default:!1},checkAllLabel:{},disabled:{type:Boolean,default:!1},skeleton:{}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,{t:a}=v(),r=(s,p)=>{const d=p?[...t.modelValue,s]:t.modelValue.filter(y=>y!==s);l("update:modelValue",d)},i=e.computed(()=>t.options.filter(s=>!s.disabled&&!s.skeleton)),c=s=>{const p=s?i.value.map(({id:d})=>d):[];l("update:modelValue",p)},u=e.computed(()=>{const s=i.value.map(({id:d})=>d),p=t.modelValue.filter(d=>s.includes(d));return!s.length||!p.length?{modelValue:!1}:p.length===s.length?{modelValue:!0}:{indeterminate:!0,modelValue:!1}});return(s,p)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"onyx-checkbox-group",disabled:t.disabled},[t.headline?(e.openBlock(),e.createElementBlock("legend",ae,[e.createVNode(e.unref(b),{is:"h3"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.headline),1)]),_:1})])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["onyx-checkbox-group__content",{"onyx-checkbox-group__content--horizontal":t.direction==="horizontal"}])},[t.skeleton===void 0?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[t.withCheckAll?(e.openBlock(),e.createBlock(k,e.mergeProps({key:0},u.value,{label:t.checkAllLabel||e.unref(a)("selectAll"),"onUpdate:modelValue":c}),null,16,["label"])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.options,d=>(e.openBlock(),e.createBlock(k,e.mergeProps({key:d.id.toString()},d,{"model-value":t.modelValue.includes(d.id),"onUpdate:modelValue":y=>r(d.id,y)}),null,16,["model-value","onUpdate:modelValue"]))),128))],64)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.skeleton,d=>(e.openBlock(),e.createBlock(k,{key:d,label:`Skeleton ${d}`,skeleton:""},null,8,["label"]))),128))],2)],8,le))}}),se=["horizontal","vertical"],b=e.defineComponent({__name:"OnyxHeadline",props:{is:{},monospace:{type:Boolean,default:!1}},setup(n){const o=n;return(t,l)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(o.is),{class:e.normalizeClass(["onyx-headline",`onyx-headline--${o.is}`,o.monospace?"onyx-headline--monospace":""])},{default:e.withCtx(()=>[e.renderSlot(t.$slots,"default")]),_:3},8,["class"]))}}),ce=["h1","h2","h3","h4","h5","h6"],ie=["12px","16px","24px","32px","48px","64px","96px"],ue={},de={class:"onyx-circle-spinner",viewBox:"0 0 50 50"},pe=e.createElementVNode("circle",{class:"onyx-circle-spinner__circle",cx:"50%",cy:"50%",r:"45%"},null,-1),me=[pe];function ye(n,o){return e.openBlock(),e.createElementBlock("svg",de,me)}const _e=g(ue,[["render",ye]]),fe={},he={class:"onyx-loading-dots"},ke=e.createElementVNode("span",{class:"onyx-loading-dots__center"},null,-1),xe=[ke];function ge(n,o){return e.openBlock(),e.createElementBlock("div",he,xe)}const ve=g(fe,[["render",ge]]),B=e.defineComponent({__name:"OnyxLoadingIndicator",props:{type:{default:"dots"}},setup(n){const o=n;return(t,l)=>o.type==="circle"?(e.openBlock(),e.createBlock(_e,{key:0})):o.type==="dots"?(e.openBlock(),e.createBlock(ve,{key:1})):e.createCommentVNode("",!0)}}),be=["aria-label","disabled"],Be=e.defineComponent({__name:"OnyxIconButton",props:{label:{},disabled:{type:Boolean,default:!1},type:{default:"button"},variation:{default:"primary"},loading:{type:Boolean},icon:{}},emits:["click"],setup(n,{emit:o}){const t=n,l=o;return(a,r)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["onyx-icon-button",{[`onyx-icon-button--${t.variation}`]:!0,"onyx-icon-button--loading":t.loading}]),"aria-label":t.label,disabled:t.disabled||t.loading,onClick:r[0]||(r[0]=i=>l("click"))},[t.loading?(e.openBlock(),e.createBlock(B,{key:0,type:"circle"})):t.icon?(e.openBlock(),e.createBlock(h,{key:1,icon:t.icon},null,8,["icon"])):e.renderSlot(a.$slots,"default",{key:2})],10,be))}}),Ce={class:"onyx-input"},Ee={class:"onyx-truncation-ellipsis"},Ve={class:"onyx-input__wrapper"},$e=["placeholder","type","required","autocapitalize","autocomplete","autofocus","name","pattern","readonly","disabled","minlength","maxlength","aria-label"],Se={key:0,class:"onyx-input__footer onyx-text--small"},Ne={key:0,class:"onyx-truncation-ellipsis"},Oe={key:1,class:"onyx-input__counter"},Te=e.defineComponent({__name:"OnyxInput",props:{label:{},modelValue:{default:""},type:{default:"text"},placeholder:{},required:{type:Boolean,default:!1},autocapitalize:{default:"sentences"},autocomplete:{},autofocus:{type:Boolean},name:{},pattern:{},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},maxlength:{},minlength:{},withCounter:{type:Boolean},message:{},hideLabel:{type:Boolean}},emits:["update:modelValue","change","focus","blur"],setup(n,{emit:o}){const t=n,l=o,a=e.computed({get:()=>t.modelValue,set:u=>l("update:modelValue",u)}),r=u=>{const s=u.target.value;l("change",s)},i=e.computed(()=>t.pattern instanceof RegExp?t.pattern.source:t.pattern),c=e.computed(()=>t.withCounter&&t.maxlength);return(u,s)=>(e.openBlock(),e.createElementBlock("div",Ce,[e.createElementVNode("label",null,[t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["onyx-input__label onyx-text--small",{"onyx-required-marker":t.required,"onyx-optional-marker":!t.required}])},[e.createElementVNode("div",Ee,e.toDisplayString(t.label),1)],2)),e.createElementVNode("div",Ve,[t.loading?(e.openBlock(),e.createBlock(e.unref(B),{key:0,class:"onyx-input__loading",type:"circle"})):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":s[0]||(s[0]=p=>a.value=p),class:"onyx-input__native",placeholder:t.placeholder,type:t.type,required:t.required,autocapitalize:t.autocapitalize,autocomplete:t.autocomplete,autofocus:t.autofocus,name:t.name,pattern:i.value,readonly:t.readonly,disabled:t.disabled||t.loading,minlength:t.minlength,maxlength:t.maxlength,"aria-label":t.hideLabel?t.label:void 0,onChange:r,onFocus:s[1]||(s[1]=p=>l("focus")),onBlur:s[2]||(s[2]=p=>l("blur"))},null,40,$e),[[e.vModelDynamic,a.value]])])]),t.message||c.value?(e.openBlock(),e.createElementBlock("div",Se,[t.message?(e.openBlock(),e.createElementBlock("span",Ne,e.toDisplayString(t.message),1)):e.createCommentVNode("",!0),c.value?(e.openBlock(),e.createElementBlock("span",Oe,e.toDisplayString(a.value.length)+"/"+e.toDisplayString(t.maxlength),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)]))}}),we=["email","password","search","tel","text","url"],Le=["none","sentences","words","characters"],Ie='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="M12.2 10.55v2h5.836l-8.193 8.193 1.414 1.414 8.193-8.193V19.8h2v-9.25z"/></svg>',qe=n=>/^http(s?):\/\//.test(n),ze=["href","target","rel"],Me=e.defineComponent({__name:"OnyxLink",props:{href:{},target:{default:"_self"},withExternalIcon:{type:[Boolean,String],default:"auto"}},emits:["click"],setup(n,{emit:o}){const t=n,l=o,a=e.computed(()=>t.withExternalIcon!=="auto"?t.withExternalIcon:qe(t.href));return(r,i)=>(e.openBlock(),e.createElementBlock("a",{class:"onyx-link",href:t.href,target:t.target,rel:t.target==="_blank"?"noreferrer":void 0,onClick:i[0]||(i[0]=c=>l("click"))},[e.renderSlot(r.$slots,"default"),a.value?(e.openBlock(),e.createBlock(h,{key:0,class:"onyx-link__icon",icon:e.unref(Ie),size:"16px"},null,8,["icon"])):e.createCommentVNode("",!0)],8,ze))}}),Pe=["_self","_blank","_parent","_top"],Ae={key:0,class:"onyx-page__sidebar"},De={class:"onyx-page__main"},Ue={key:1,class:"onyx-page__footer"},Re={key:2,class:"onyx-page__toasts"},Ye=e.defineComponent({__name:"OnyxPageLayout",props:{footerAsideSidebar:{type:Boolean},hideSidebar:{type:Boolean}},setup(n){const o=n,t=e.useSlots(),l=e.computed(()=>{let a="";return!t.footer&&t.sidebar&&(a="onyx-page--side-main"),t.footer&&(!t.sidebar||o.hideSidebar)&&(a="onyx-page--main-footer"),t.footer&&t.sidebar&&(o.footerAsideSidebar?a="onyx-page--side-main-footer-partial":a="onyx-page--side-main-footer-full"),a});return(a,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["onyx-page",l.value])},[e.unref(t).sidebar&&!o.hideSidebar?(e.openBlock(),e.createElementBlock("aside",Ae,[e.renderSlot(a.$slots,"sidebar")])):e.createCommentVNode("",!0),e.createElementVNode("main",De,[e.renderSlot(a.$slots,"default")]),e.unref(t).footer?(e.openBlock(),e.createElementBlock("footer",Ue,[e.renderSlot(a.$slots,"footer")])):e.createCommentVNode("",!0),e.unref(t).toasts?(e.openBlock(),e.createElementBlock("div",Re,[e.renderSlot(a.$slots,"toasts")])):e.createCommentVNode("",!0)],2))}}),Ge=(()=>{let n=0;return()=>n++})(),Fe=n=>`${n}-${Ge()}`,He={key:0,class:"onyx-radio-button-skeleton"},je=["title"],Xe=["required","name","value","checked","disabled"],S=e.defineComponent({__name:"OnyxRadioButton",props:{id:{},label:{},value:{},disabled:{type:Boolean,default:!1},truncation:{default:"ellipsis"},skeleton:{type:Boolean},selected:{type:Boolean,default:!1},name:{},required:{type:Boolean,default:!1},errorMessage:{}},setup(n){const o=n,t=e.ref();return e.watchEffect(()=>{var l;return(l=t.value)==null?void 0:l.setCustomValidity(o.errorMessage??"")}),(l,a)=>o.skeleton?(e.openBlock(),e.createElementBlock("div",He,[e.createVNode(f,{class:"onyx-radio-button-skeleton__input"}),e.createVNode(f,{class:"onyx-radio-button-skeleton__label"})])):(e.openBlock(),e.createElementBlock("label",{key:1,class:"onyx-radio-button",title:o.errorMessage},[e.createElementVNode("input",{ref_key:"selectorRef",ref:t,class:"onyx-radio-button__selector",type:"radio",required:o.required,name:o.name,value:o.id,checked:o.selected,disabled:o.disabled},null,8,Xe),e.createElementVNode("span",{class:e.normalizeClass(["onyx-radio-button__label",[`onyx-truncation-${o.truncation}`]])},e.toDisplayString(o.label),3)],8,je))}}),Ze=["disabled"],Ke={key:0,class:"onyx-radio-button-group__headline"},Je=e.defineComponent({__name:"OnyxRadioButtonGroup",props:{name:{default:()=>Fe("radio-button-group-name")},modelValue:{},headline:{default:""},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},errorMessage:{default:""},direction:{default:"vertical"},options:{},skeleton:{}},emits:["update:modelValue"],setup(n,{emit:o}){const t=n,l=o,a=r=>l("update:modelValue",t.options.find(({id:i})=>r.target.value===i));return(r,i)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"onyx-radio-button-group",disabled:t.disabled,onChange:i[0]||(i[0]=c=>a(c))},[t.headline?(e.openBlock(),e.createElementBlock("legend",Ke,[e.createVNode(b,{is:"h3",class:e.normalizeClass({"onyx-required-marker":t.required,"onyx-optional-marker":!t.required})},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.headline),1)]),_:1},8,["class"])])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["onyx-radio-button-group__content",{"onyx-radio-button-group__content--horizontal":t.direction==="horizontal"}])},[t.skeleton===void 0?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.options,c=>{var u;return e.openBlock(),e.createBlock(S,e.mergeProps({key:c.id},c,{name:t.name,"error-message":t.errorMessage,selected:c.id===((u=t.modelValue)==null?void 0:u.id),required:t.required}),null,16,["name","error-message","selected","required"])}),128)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.skeleton,c=>(e.openBlock(),e.createBlock(S,{id:`skeleton-${c}`,key:c,label:"Skeleton ${i}",name:t.name,skeleton:""},null,8,["id","name"]))),128))],2)],40,Ze))}}),T=(n,o)=>{const t=Object.entries(n).filter(([a,r])=>r!==void 0),l=Object.entries(o).filter(([a,r])=>r!==void 0);return t.length!==l.length?!1:t.every(([a,r])=>r===o[a])},w=()=>Object.entries(Object.getOwnPropertyDescriptors(ValidityState.prototype)).filter(([n,o])=>o.enumerable).map(([n])=>n),L=n=>w().reduce((o,t)=>(o[t]=n[t],o),{}),We=n=>{if(n.valueMissing)return"valueMissing";const o=w().filter(t=>t!=="valid").sort();for(const t of o)if(t in n&&n[t])return t},Qe='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m21.311 10.793-8.293 8.293-3.291-3.292-1.415 1.415 4.706 4.705 9.707-9.707z"/></svg>',et='<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m22.707 10.707-1.414-1.414L16 14.586l-5.293-5.293-1.414 1.414L14.586 16l-5.293 5.293 1.414 1.414L16 17.414l5.293 5.293 1.414-1.414L17.414 16z"/></svg>',tt={key:0,class:"onyx-switch-skeleton"},ot=["aria-label","disabled","required"],nt={class:"onyx-switch__container"},lt={class:"onyx-switch__icon"},at=e.defineComponent({__name:"OnyxSwitch",props:{modelValue:{type:Boolean,default:!1},label:{},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},errorMessage:{},hideLabel:{type:Boolean},truncation:{default:"ellipsis"},skeleton:{type:Boolean,default:!1}},emits:["update:modelValue","validityChange"],setup(n,{emit:o}){var s;const t=n,l=o,{errorMessage:a}=e.toRefs(t),r=e.ref(),i=e.ref((s=r.value)==null?void 0:s.validity),c=e.computed({get:()=>t.modelValue,set:p=>{l("update:modelValue",p)}});e.watch([r,a],()=>{r.value&&r.value.setCustomValidity(t.errorMessage||"")}),e.watch([r,c,a],()=>{if(!r.value)return;const p=L(r.value.validity);(!i.value||!T(p,i.value))&&(i.value=p,l("validityChange",i.value))},{immediate:!0});const u=e.computed(()=>t.hideLabel?"":`onyx-${t.required?"required":"optional"}-marker`);return(p,d)=>t.skeleton?(e.openBlock(),e.createElementBlock("div",tt,[e.createVNode(f,{class:"onyx-switch-skeleton__input"}),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(f,{key:0,class:"onyx-switch-skeleton__label"}))])):(e.openBlock(),e.createElementBlock("label",{key:1,class:e.normalizeClass(["onyx-switch",[u.value]])},[e.withDirectives(e.createElementVNode("input",{ref_key:"inputElement",ref:r,"onUpdate:modelValue":d[0]||(d[0]=y=>c.value=y),class:"onyx-switch__input",type:"checkbox","aria-label":t.hideLabel?t.label:void 0,disabled:t.disabled,required:t.required},null,8,ot),[[e.vModelCheckbox,c.value]]),e.createElementVNode("span",nt,[e.createElementVNode("span",lt,[e.createVNode(e.unref(h),{icon:c.value?e.unref(Qe):e.unref(et),size:"24px"},null,8,["icon"])])]),t.hideLabel?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(["onyx-switch__label",[`onyx-truncation-${t.truncation}`]])},e.toDisplayString(t.label),3))],2))}}),rt=Object.keys(x.validations.typeMismatch),st={key:0,class:"onyx-test-input__error","aria-live":"polite"},ct={class:"onyx-test-input__info"},it=e.defineComponent({__name:"TestInput",props:{modelValue:{default:""},label:{default:""},errorMessage:{},required:{type:Boolean},pattern:{},type:{default:"text"},max:{},maxLength:{},min:{},step:{},minLength:{}},emits:["update:modelValue","change","validityChange"],setup(n,{emit:o}){var y;const t=n,l=o,{t:a}=v(),{errorMessage:r}=e.toRefs(t),i=e.ref(!1),c=e.ref(null),u=e.ref((y=c.value)==null?void 0:y.validity),s=e.computed({get:()=>t.modelValue,set:m=>l("update:modelValue",m)}),p=e.computed(()=>{if(!u.value||u.value.valid)return"";const m=We(u.value);if(t.errorMessage||m==="customError")return t.errorMessage;if(!m)return"";if(m==="typeMismatch"){const _=rt.includes(t.type)?t.type:"generic";return a.value(`validations.typeMismatch.${_}`,{value:s.value})}return a.value(`validations.${m}`,{value:s.value,n:s.value.toString().length,minLength:t.minLength,maxLength:t.maxLength,min:t.min,max:t.max,step:t.step})}),d=m=>{const _=m.target;l("change",_.value)};return e.watch([c,r],()=>{c.value&&c.value.setCustomValidity(t.errorMessage||"")}),e.watch([c,s,r],()=>{if(!c.value)return;const m=L(c.value.validity);(!u.value||!T(m,u.value))&&(u.value=m,l("validityChange",u.value))},{immediate:!0}),(m,_)=>{var C,E;return e.openBlock(),e.createElementBlock("label",{class:e.normalizeClass(["onyx-test-input",{"onyx-test-input--touched":i.value}])},[e.createElementVNode("span",{class:e.normalizeClass(["onyx-test-input__label",{"onyx-test-input__label--required":t.required}])},e.toDisplayString(t.label),3),e.withDirectives(e.createElementVNode("input",e.mergeProps(t,{ref_key:"inputElement",ref:c,"onUpdate:modelValue":_[0]||(_[0]=V=>s.value=V),onChange:d,onBlur:_[1]||(_[1]=V=>i.value=!0)}),null,16),[[e.vModelDynamic,s.value]]),i.value&&!((C=u.value)!=null&&C.valid)?(e.openBlock(),e.createElementBlock("p",st,e.toDisplayString(p.value),1)):e.createCommentVNode("",!0),e.createElementVNode("p",ct,' Model value: "'+e.toDisplayString(s.value)+'", is valid: '+e.toDisplayString((E=u.value)==null?void 0:E.valid),1)],2)}}}),ut=["primary","secondary","neutral","danger","warning","success","info"],dt=["small","default","large"],pt=["ellipsis","multiline"],mt=n=>({install:o=>{W(o,n.i18n);const t=o.runWithContext(()=>v());e.watchEffect(()=>yt(t.t.value("optional")))}}),yt=n=>globalThis.document.body.style.setProperty("--onyx-global-optional-text",n);exports.AUTOCAPITALIZE=Le;exports.BUTTON_MODES=X;exports.BUTTON_TYPES=H;exports.BUTTON_VARIATIONS=j;exports.CHECKBOX_GROUP_DIRECTIONS=se;exports.HEADLINE_TYPES=ce;exports.ICON_SIZES=ie;exports.INPUT_TYPES=we;exports.LINK_TARGETS=Pe;exports.ONYX_COLORS=ut;exports.OnyxAppLayout=P;exports.OnyxButton=F;exports.OnyxCheckboxGroup=re;exports.OnyxHeadline=b;exports.OnyxIcon=h;exports.OnyxIconButton=Be;exports.OnyxInput=Te;exports.OnyxLink=Me;exports.OnyxLoadingIndicator=B;exports.OnyxPageLayout=Ye;exports.OnyxRadioButtonGroup=Je;exports.OnyxSkeleton=f;exports.OnyxSwitch=at;exports.TEXT_SIZES=dt;exports.TRUNCATION_TYPES=pt;exports.TestInput=it;exports.createOnyx=mt;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as v, useSlots as j, openBlock as o, createElementBlock as r, normalizeClass as h, unref as b, renderSlot as $, createCommentVNode as
|
|
1
|
+
import { defineComponent as v, useSlots as j, openBlock as o, createElementBlock as r, normalizeClass as h, unref as b, renderSlot as $, createCommentVNode as p, createElementVNode as y, createBlock as f, toDisplayString as g, inject as oe, computed as x, ref as V, createVNode as w, withDirectives as T, vModelCheckbox as H, withCtx as z, createTextVNode as F, Fragment as C, mergeProps as L, renderList as q, resolveDynamicComponent as le, vModelDynamic as K, watchEffect as X, toRefs as Z, watch as I } from "vue";
|
|
2
2
|
const se = {
|
|
3
3
|
key: 0,
|
|
4
4
|
class: "onyx-app__nav"
|
|
@@ -20,16 +20,16 @@ const se = {
|
|
|
20
20
|
}, [
|
|
21
21
|
b(e).navBar ? (o(), r("nav", se, [
|
|
22
22
|
$(a.$slots, "navBar")
|
|
23
|
-
])) :
|
|
24
|
-
|
|
23
|
+
])) : p("", !0),
|
|
24
|
+
y("div", re, [
|
|
25
25
|
$(a.$slots, "default")
|
|
26
26
|
]),
|
|
27
27
|
b(e).pageOverlay ? (o(), r("div", ie, [
|
|
28
28
|
$(a.$slots, "pageOverlay")
|
|
29
|
-
])) :
|
|
29
|
+
])) : p("", !0),
|
|
30
30
|
b(e).appOverlay ? (o(), r("div", ue, [
|
|
31
31
|
$(a.$slots, "appOverlay")
|
|
32
|
-
])) :
|
|
32
|
+
])) : p("", !0)
|
|
33
33
|
], 2));
|
|
34
34
|
}
|
|
35
35
|
}), ce = ["innerHTML"], E = /* @__PURE__ */ v({
|
|
@@ -86,8 +86,8 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
86
86
|
key: 0,
|
|
87
87
|
icon: e.icon,
|
|
88
88
|
size: "24px"
|
|
89
|
-
}, null, 8, ["icon"])) :
|
|
90
|
-
|
|
89
|
+
}, null, 8, ["icon"])) : p("", !0),
|
|
90
|
+
y("span", me, g(e.label), 1)
|
|
91
91
|
], 10, _e));
|
|
92
92
|
}
|
|
93
93
|
}), bt = ["button", "submit", "reset"], kt = ["primary", "secondary", "danger"], $t = ["default", "outline", "plain"], he = "(optional)", fe = {
|
|
@@ -106,13 +106,13 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
106
106
|
tel: '"{value}" must be a valid phone number.',
|
|
107
107
|
url: '"{value}" must a valid URL.'
|
|
108
108
|
}
|
|
109
|
-
}, xe = "Select all",
|
|
109
|
+
}, xe = "Select all", P = {
|
|
110
110
|
optional: he,
|
|
111
111
|
validations: fe,
|
|
112
112
|
selectAll: xe
|
|
113
113
|
}, J = Symbol(), W = (n) => {
|
|
114
|
-
const t = x(() => b(n == null ? void 0 : n.locale) ?? "en-US"), e = x(() => n != null && n.messages && t.value in n.messages ? n.messages[t.value] :
|
|
115
|
-
let c = G(l, e.value) ?? G(l,
|
|
114
|
+
const t = x(() => b(n == null ? void 0 : n.locale) ?? "en-US"), e = x(() => n != null && n.messages && t.value in n.messages ? n.messages[t.value] : P), a = x(() => (l, s = {}) => {
|
|
115
|
+
let c = G(l, e.value) ?? G(l, P) ?? "";
|
|
116
116
|
const u = typeof s.n == "number" ? s.n : void 0;
|
|
117
117
|
return c = ge(c, u), be(c, s);
|
|
118
118
|
});
|
|
@@ -146,10 +146,10 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
146
146
|
const e = n, a = t, l = x({
|
|
147
147
|
get: () => e.modelValue,
|
|
148
148
|
set: (u) => a("update:modelValue", u)
|
|
149
|
-
}), s =
|
|
149
|
+
}), s = V(!1), c = x(() => e.hideLabel ? "" : `onyx-${e.required ? "required" : "optional"}-marker`);
|
|
150
150
|
return (u, d) => e.skeleton ? (o(), r("div", ke, [
|
|
151
151
|
w(S, { class: "onyx-checkbox-skeleton__input" }),
|
|
152
|
-
e.hideLabel ?
|
|
152
|
+
e.hideLabel ? p("", !0) : (o(), f(S, {
|
|
153
153
|
key: 0,
|
|
154
154
|
class: "onyx-checkbox-skeleton__label"
|
|
155
155
|
}))
|
|
@@ -157,8 +157,8 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
157
157
|
key: 1,
|
|
158
158
|
class: h(["onyx-checkbox", [c.value]])
|
|
159
159
|
}, [
|
|
160
|
-
|
|
161
|
-
T(
|
|
160
|
+
y("div", $e, [
|
|
161
|
+
T(y("input", {
|
|
162
162
|
"onUpdate:modelValue": d[0] || (d[0] = (i) => l.value = i),
|
|
163
163
|
"aria-label": e.hideLabel ? e.label : void 0,
|
|
164
164
|
class: h(["onyx-checkbox__input", {
|
|
@@ -173,13 +173,13 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
173
173
|
[H, l.value]
|
|
174
174
|
])
|
|
175
175
|
]),
|
|
176
|
-
e.hideLabel ?
|
|
176
|
+
e.hideLabel ? p("", !0) : (o(), r("p", {
|
|
177
177
|
key: 0,
|
|
178
178
|
class: h(["onyx-checkbox__label", [`onyx-truncation-${e.truncation}`]])
|
|
179
179
|
}, g(e.label), 3))
|
|
180
180
|
], 2));
|
|
181
181
|
}
|
|
182
|
-
}),
|
|
182
|
+
}), Be = ["disabled"], Ve = {
|
|
183
183
|
key: 0,
|
|
184
184
|
class: "onyx-checkbox-group__label"
|
|
185
185
|
}, Ot = /* @__PURE__ */ v({
|
|
@@ -210,22 +210,22 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
210
210
|
class: "onyx-checkbox-group",
|
|
211
211
|
disabled: e.disabled
|
|
212
212
|
}, [
|
|
213
|
-
e.headline ? (o(), r("legend",
|
|
213
|
+
e.headline ? (o(), r("legend", Ve, [
|
|
214
214
|
w(b(Q), { is: "h3" }, {
|
|
215
|
-
default:
|
|
215
|
+
default: z(() => [
|
|
216
216
|
F(g(e.headline), 1)
|
|
217
217
|
]),
|
|
218
218
|
_: 1
|
|
219
219
|
})
|
|
220
|
-
])) :
|
|
221
|
-
|
|
220
|
+
])) : p("", !0),
|
|
221
|
+
y("div", {
|
|
222
222
|
class: h(["onyx-checkbox-group__content", { "onyx-checkbox-group__content--horizontal": e.direction === "horizontal" }])
|
|
223
223
|
}, [
|
|
224
224
|
e.skeleton === void 0 ? (o(), r(C, { key: 0 }, [
|
|
225
225
|
e.withCheckAll ? (o(), f(M, L({ key: 0 }, d.value, {
|
|
226
226
|
label: e.checkAllLabel || b(l)("selectAll"),
|
|
227
227
|
"onUpdate:modelValue": u
|
|
228
|
-
}), null, 16, ["label"])) :
|
|
228
|
+
}), null, 16, ["label"])) : p("", !0),
|
|
229
229
|
(o(!0), r(C, null, q(e.options, (_) => (o(), f(M, L({
|
|
230
230
|
key: _.id.toString()
|
|
231
231
|
}, _, {
|
|
@@ -238,9 +238,9 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
238
238
|
skeleton: ""
|
|
239
239
|
}, null, 8, ["label"]))), 128))
|
|
240
240
|
], 2)
|
|
241
|
-
], 8,
|
|
241
|
+
], 8, Be));
|
|
242
242
|
}
|
|
243
|
-
}),
|
|
243
|
+
}), Bt = ["horizontal", "vertical"], Q = /* @__PURE__ */ v({
|
|
244
244
|
__name: "OnyxHeadline",
|
|
245
245
|
props: {
|
|
246
246
|
is: {},
|
|
@@ -255,16 +255,16 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
255
255
|
t.monospace ? "onyx-headline--monospace" : ""
|
|
256
256
|
])
|
|
257
257
|
}, {
|
|
258
|
-
default:
|
|
258
|
+
default: z(() => [
|
|
259
259
|
$(e.$slots, "default")
|
|
260
260
|
]),
|
|
261
261
|
_: 3
|
|
262
262
|
}, 8, ["class"]));
|
|
263
263
|
}
|
|
264
|
-
}),
|
|
264
|
+
}), Vt = ["h1", "h2", "h3", "h4", "h5", "h6"], wt = ["12px", "16px", "24px", "32px", "48px", "64px", "96px"], we = {}, Se = {
|
|
265
265
|
class: "onyx-circle-spinner",
|
|
266
266
|
viewBox: "0 0 50 50"
|
|
267
|
-
}, Ce = /* @__PURE__ */
|
|
267
|
+
}, Ce = /* @__PURE__ */ y("circle", {
|
|
268
268
|
class: "onyx-circle-spinner__circle",
|
|
269
269
|
cx: "50%",
|
|
270
270
|
cy: "50%",
|
|
@@ -275,20 +275,20 @@ const S = /* @__PURE__ */ A(de, [["render", ye]]), _e = ["disabled"], me = { cla
|
|
|
275
275
|
function qe(n, t) {
|
|
276
276
|
return o(), r("svg", Se, Le);
|
|
277
277
|
}
|
|
278
|
-
const Ie = /* @__PURE__ */ A(we, [["render", qe]]), Te = {}, Ee = { class: "onyx-loading-dots" }, Me = /* @__PURE__ */
|
|
278
|
+
const Ie = /* @__PURE__ */ A(we, [["render", qe]]), Te = {}, Ee = { class: "onyx-loading-dots" }, Me = /* @__PURE__ */ y("span", { class: "onyx-loading-dots__center" }, null, -1), Pe = [
|
|
279
279
|
Me
|
|
280
280
|
];
|
|
281
|
-
function
|
|
282
|
-
return o(), r("div", Ee,
|
|
281
|
+
function ze(n, t) {
|
|
282
|
+
return o(), r("div", Ee, Pe);
|
|
283
283
|
}
|
|
284
|
-
const Ae = /* @__PURE__ */ A(Te, [["render",
|
|
284
|
+
const Ae = /* @__PURE__ */ A(Te, [["render", ze]]), ee = /* @__PURE__ */ v({
|
|
285
285
|
__name: "OnyxLoadingIndicator",
|
|
286
286
|
props: {
|
|
287
287
|
type: { default: "dots" }
|
|
288
288
|
},
|
|
289
289
|
setup(n) {
|
|
290
290
|
const t = n;
|
|
291
|
-
return (e, a) => t.type === "circle" ? (o(), f(Ie, { key: 0 })) : t.type === "dots" ? (o(), f(Ae, { key: 1 })) :
|
|
291
|
+
return (e, a) => t.type === "circle" ? (o(), f(Ie, { key: 0 })) : t.type === "dots" ? (o(), f(Ae, { key: 1 })) : p("", !0);
|
|
292
292
|
}
|
|
293
293
|
}), Ue = ["aria-label", "disabled"], St = /* @__PURE__ */ v({
|
|
294
294
|
__name: "OnyxIconButton",
|
|
@@ -298,8 +298,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
298
298
|
type: { default: "button" },
|
|
299
299
|
variation: { default: "primary" },
|
|
300
300
|
loading: { type: Boolean },
|
|
301
|
-
icon: {}
|
|
302
|
-
size: { default: "24px" }
|
|
301
|
+
icon: {}
|
|
303
302
|
},
|
|
304
303
|
emits: ["click"],
|
|
305
304
|
setup(n, { emit: t }) {
|
|
@@ -318,12 +317,11 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
318
317
|
type: "circle"
|
|
319
318
|
})) : e.icon ? (o(), f(E, {
|
|
320
319
|
key: 1,
|
|
321
|
-
icon: e.icon
|
|
322
|
-
|
|
323
|
-
}, null, 8, ["icon", "size"])) : $(l.$slots, "default", { key: 2 })
|
|
320
|
+
icon: e.icon
|
|
321
|
+
}, null, 8, ["icon"])) : $(l.$slots, "default", { key: 2 })
|
|
324
322
|
], 10, Ue));
|
|
325
323
|
}
|
|
326
|
-
}), Ne = { class: "onyx-input" }, Re = { class: "onyx-truncation-ellipsis" }, De = { class: "onyx-input__wrapper" }, Ge = ["placeholder", "type", "required", "autocapitalize", "autocomplete", "autofocus", "name", "pattern", "readonly", "disabled", "minlength", "maxlength"], Ye = {
|
|
324
|
+
}), Ne = { class: "onyx-input" }, Re = { class: "onyx-truncation-ellipsis" }, De = { class: "onyx-input__wrapper" }, Ge = ["placeholder", "type", "required", "autocapitalize", "autocomplete", "autofocus", "name", "pattern", "readonly", "disabled", "minlength", "maxlength", "aria-label"], Ye = {
|
|
327
325
|
key: 0,
|
|
328
326
|
class: "onyx-input__footer onyx-text--small"
|
|
329
327
|
}, je = {
|
|
@@ -351,7 +349,8 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
351
349
|
maxlength: {},
|
|
352
350
|
minlength: {},
|
|
353
351
|
withCounter: { type: Boolean },
|
|
354
|
-
message: {}
|
|
352
|
+
message: {},
|
|
353
|
+
hideLabel: { type: Boolean }
|
|
355
354
|
},
|
|
356
355
|
emits: ["update:modelValue", "change", "focus", "blur"],
|
|
357
356
|
setup(n, { emit: t }) {
|
|
@@ -363,19 +362,20 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
363
362
|
a("change", i);
|
|
364
363
|
}, c = x(() => e.pattern instanceof RegExp ? e.pattern.source : e.pattern), u = x(() => e.withCounter && e.maxlength);
|
|
365
364
|
return (d, i) => (o(), r("div", Ne, [
|
|
366
|
-
|
|
367
|
-
p("div", {
|
|
365
|
+
y("label", null, [
|
|
366
|
+
e.hideLabel ? p("", !0) : (o(), r("div", {
|
|
367
|
+
key: 0,
|
|
368
368
|
class: h(["onyx-input__label onyx-text--small", { "onyx-required-marker": e.required, "onyx-optional-marker": !e.required }])
|
|
369
369
|
}, [
|
|
370
|
-
|
|
371
|
-
], 2),
|
|
372
|
-
|
|
370
|
+
y("div", Re, g(e.label), 1)
|
|
371
|
+
], 2)),
|
|
372
|
+
y("div", De, [
|
|
373
373
|
e.loading ? (o(), f(b(ee), {
|
|
374
374
|
key: 0,
|
|
375
375
|
class: "onyx-input__loading",
|
|
376
376
|
type: "circle"
|
|
377
|
-
})) :
|
|
378
|
-
T(
|
|
377
|
+
})) : p("", !0),
|
|
378
|
+
T(y("input", {
|
|
379
379
|
"onUpdate:modelValue": i[0] || (i[0] = (m) => l.value = m),
|
|
380
380
|
class: "onyx-input__native",
|
|
381
381
|
placeholder: e.placeholder,
|
|
@@ -390,6 +390,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
390
390
|
disabled: e.disabled || e.loading,
|
|
391
391
|
minlength: e.minlength,
|
|
392
392
|
maxlength: e.maxlength,
|
|
393
|
+
"aria-label": e.hideLabel ? e.label : void 0,
|
|
393
394
|
onChange: s,
|
|
394
395
|
onFocus: i[1] || (i[1] = (m) => a("focus")),
|
|
395
396
|
onBlur: i[2] || (i[2] = (m) => a("blur"))
|
|
@@ -399,9 +400,9 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
399
400
|
])
|
|
400
401
|
]),
|
|
401
402
|
e.message || u.value ? (o(), r("div", Ye, [
|
|
402
|
-
e.message ? (o(), r("span", je, g(e.message), 1)) :
|
|
403
|
-
u.value ? (o(), r("span", He, g(l.value.length) + "/" + g(e.maxlength), 1)) :
|
|
404
|
-
])) :
|
|
403
|
+
e.message ? (o(), r("span", je, g(e.message), 1)) : p("", !0),
|
|
404
|
+
u.value ? (o(), r("span", He, g(l.value.length) + "/" + g(e.maxlength), 1)) : p("", !0)
|
|
405
|
+
])) : p("", !0)
|
|
405
406
|
]));
|
|
406
407
|
}
|
|
407
408
|
}), Lt = ["email", "password", "search", "tel", "text", "url"], qt = ["none", "sentences", "words", "characters"], Fe = '<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="M12.2 10.55v2h5.836l-8.193 8.193 1.414 1.414 8.193-8.193V19.8h2v-9.25z"/></svg>', Ke = (n) => /^http(s?):\/\//.test(n), Xe = ["href", "target", "rel"], It = /* @__PURE__ */ v({
|
|
@@ -427,7 +428,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
427
428
|
class: "onyx-link__icon",
|
|
428
429
|
icon: b(Fe),
|
|
429
430
|
size: "16px"
|
|
430
|
-
}, null, 8, ["icon"])) :
|
|
431
|
+
}, null, 8, ["icon"])) : p("", !0)
|
|
431
432
|
], 8, Xe));
|
|
432
433
|
}
|
|
433
434
|
}), Tt = ["_self", "_blank", "_parent", "_top"], Ze = {
|
|
@@ -455,16 +456,16 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
455
456
|
}, [
|
|
456
457
|
b(e).sidebar && !t.hideSidebar ? (o(), r("aside", Ze, [
|
|
457
458
|
$(l.$slots, "sidebar")
|
|
458
|
-
])) :
|
|
459
|
-
|
|
459
|
+
])) : p("", !0),
|
|
460
|
+
y("main", Je, [
|
|
460
461
|
$(l.$slots, "default")
|
|
461
462
|
]),
|
|
462
463
|
b(e).footer ? (o(), r("footer", We, [
|
|
463
464
|
$(l.$slots, "footer")
|
|
464
|
-
])) :
|
|
465
|
+
])) : p("", !0),
|
|
465
466
|
b(e).toasts ? (o(), r("div", Qe, [
|
|
466
467
|
$(l.$slots, "toasts")
|
|
467
|
-
])) :
|
|
468
|
+
])) : p("", !0)
|
|
468
469
|
], 2));
|
|
469
470
|
}
|
|
470
471
|
}), et = /* @__PURE__ */ (() => {
|
|
@@ -488,7 +489,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
488
489
|
errorMessage: {}
|
|
489
490
|
},
|
|
490
491
|
setup(n) {
|
|
491
|
-
const t = n, e =
|
|
492
|
+
const t = n, e = V();
|
|
492
493
|
return X(() => {
|
|
493
494
|
var a;
|
|
494
495
|
return (a = e.value) == null ? void 0 : a.setCustomValidity(t.errorMessage ?? "");
|
|
@@ -500,7 +501,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
500
501
|
class: "onyx-radio-button",
|
|
501
502
|
title: t.errorMessage
|
|
502
503
|
}, [
|
|
503
|
-
|
|
504
|
+
y("input", {
|
|
504
505
|
ref_key: "selectorRef",
|
|
505
506
|
ref: e,
|
|
506
507
|
class: "onyx-radio-button__selector",
|
|
@@ -511,7 +512,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
511
512
|
checked: t.selected,
|
|
512
513
|
disabled: t.disabled
|
|
513
514
|
}, null, 8, ot),
|
|
514
|
-
|
|
515
|
+
y("span", {
|
|
515
516
|
class: h(["onyx-radio-button__label", [`onyx-truncation-${t.truncation}`]])
|
|
516
517
|
}, g(t.label), 3)
|
|
517
518
|
], 8, at));
|
|
@@ -548,13 +549,13 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
548
549
|
"onyx-optional-marker": !e.required
|
|
549
550
|
})
|
|
550
551
|
}, {
|
|
551
|
-
default:
|
|
552
|
+
default: z(() => [
|
|
552
553
|
F(g(e.headline), 1)
|
|
553
554
|
]),
|
|
554
555
|
_: 1
|
|
555
556
|
}, 8, ["class"])
|
|
556
|
-
])) :
|
|
557
|
-
|
|
557
|
+
])) : p("", !0),
|
|
558
|
+
y("div", {
|
|
558
559
|
class: h(["onyx-radio-button-group__content", { "onyx-radio-button-group__content--horizontal": e.direction === "horizontal" }])
|
|
559
560
|
}, [
|
|
560
561
|
e.skeleton === void 0 ? (o(!0), r(C, { key: 0 }, q(e.options, (u) => {
|
|
@@ -593,7 +594,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
593
594
|
}, it = '<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m21.311 10.793-8.293 8.293-3.291-3.292-1.415 1.415 4.706 4.705 9.707-9.707z"/></svg>', ut = '<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="m22.707 10.707-1.414-1.414L16 14.586l-5.293-5.293-1.414 1.414L14.586 16l-5.293 5.293 1.414 1.414L16 17.414l5.293 5.293 1.414-1.414L17.414 16z"/></svg>', ct = {
|
|
594
595
|
key: 0,
|
|
595
596
|
class: "onyx-switch-skeleton"
|
|
596
|
-
}, dt = ["aria-label", "disabled", "required"], pt = { class: "onyx-switch__container" }, yt = { class: "onyx-switch__icon" },
|
|
597
|
+
}, dt = ["aria-label", "disabled", "required"], pt = { class: "onyx-switch__container" }, yt = { class: "onyx-switch__icon" }, Pt = /* @__PURE__ */ v({
|
|
597
598
|
__name: "OnyxSwitch",
|
|
598
599
|
props: {
|
|
599
600
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -608,7 +609,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
608
609
|
emits: ["update:modelValue", "validityChange"],
|
|
609
610
|
setup(n, { emit: t }) {
|
|
610
611
|
var i;
|
|
611
|
-
const e = n, a = t, { errorMessage: l } = Z(e), s =
|
|
612
|
+
const e = n, a = t, { errorMessage: l } = Z(e), s = V(), c = V((i = s.value) == null ? void 0 : i.validity), u = x({
|
|
612
613
|
get: () => e.modelValue,
|
|
613
614
|
set: (m) => {
|
|
614
615
|
a("update:modelValue", m);
|
|
@@ -629,7 +630,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
629
630
|
const d = x(() => e.hideLabel ? "" : `onyx-${e.required ? "required" : "optional"}-marker`);
|
|
630
631
|
return (m, _) => e.skeleton ? (o(), r("div", ct, [
|
|
631
632
|
w(S, { class: "onyx-switch-skeleton__input" }),
|
|
632
|
-
e.hideLabel ?
|
|
633
|
+
e.hideLabel ? p("", !0) : (o(), f(S, {
|
|
633
634
|
key: 0,
|
|
634
635
|
class: "onyx-switch-skeleton__label"
|
|
635
636
|
}))
|
|
@@ -637,7 +638,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
637
638
|
key: 1,
|
|
638
639
|
class: h(["onyx-switch", [d.value]])
|
|
639
640
|
}, [
|
|
640
|
-
T(
|
|
641
|
+
T(y("input", {
|
|
641
642
|
ref_key: "inputElement",
|
|
642
643
|
ref: s,
|
|
643
644
|
"onUpdate:modelValue": _[0] || (_[0] = (O) => u.value = O),
|
|
@@ -649,27 +650,27 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
649
650
|
}, null, 8, dt), [
|
|
650
651
|
[H, u.value]
|
|
651
652
|
]),
|
|
652
|
-
|
|
653
|
-
|
|
653
|
+
y("span", pt, [
|
|
654
|
+
y("span", yt, [
|
|
654
655
|
w(b(E), {
|
|
655
656
|
icon: u.value ? b(it) : b(ut),
|
|
656
657
|
size: "24px"
|
|
657
658
|
}, null, 8, ["icon"])
|
|
658
659
|
])
|
|
659
660
|
]),
|
|
660
|
-
e.hideLabel ?
|
|
661
|
+
e.hideLabel ? p("", !0) : (o(), r("span", {
|
|
661
662
|
key: 0,
|
|
662
663
|
class: h(["onyx-switch__label", [`onyx-truncation-${e.truncation}`]])
|
|
663
664
|
}, g(e.label), 3))
|
|
664
665
|
], 2));
|
|
665
666
|
}
|
|
666
667
|
}), _t = Object.keys(
|
|
667
|
-
|
|
668
|
+
P.validations.typeMismatch
|
|
668
669
|
), mt = {
|
|
669
670
|
key: 0,
|
|
670
671
|
class: "onyx-test-input__error",
|
|
671
672
|
"aria-live": "polite"
|
|
672
|
-
}, ht = { class: "onyx-test-input__info" },
|
|
673
|
+
}, ht = { class: "onyx-test-input__info" }, zt = /* @__PURE__ */ v({
|
|
673
674
|
__name: "TestInput",
|
|
674
675
|
props: {
|
|
675
676
|
modelValue: { default: "" },
|
|
@@ -687,7 +688,7 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
687
688
|
emits: ["update:modelValue", "change", "validityChange"],
|
|
688
689
|
setup(n, { emit: t }) {
|
|
689
690
|
var O;
|
|
690
|
-
const e = n, a = t, { t: l } = U(), { errorMessage: s } = Z(e), c =
|
|
691
|
+
const e = n, a = t, { t: l } = U(), { errorMessage: s } = Z(e), c = V(!1), u = V(null), d = V((O = u.value) == null ? void 0 : O.validity), i = x({
|
|
691
692
|
get: () => e.modelValue,
|
|
692
693
|
set: (k) => a("update:modelValue", k)
|
|
693
694
|
}), m = x(() => {
|
|
@@ -699,8 +700,8 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
699
700
|
if (!k)
|
|
700
701
|
return "";
|
|
701
702
|
if (k === "typeMismatch") {
|
|
702
|
-
const
|
|
703
|
-
return l.value(`validations.typeMismatch.${
|
|
703
|
+
const B = _t.includes(e.type) ? e.type : "generic";
|
|
704
|
+
return l.value(`validations.typeMismatch.${B}`, { value: i.value });
|
|
704
705
|
}
|
|
705
706
|
return l.value(`validations.${k}`, {
|
|
706
707
|
value: i.value,
|
|
@@ -712,8 +713,8 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
712
713
|
step: e.step
|
|
713
714
|
});
|
|
714
715
|
}), _ = (k) => {
|
|
715
|
-
const
|
|
716
|
-
a("change",
|
|
716
|
+
const B = k.target;
|
|
717
|
+
a("change", B.value);
|
|
717
718
|
};
|
|
718
719
|
return I([u, s], () => {
|
|
719
720
|
u.value && u.value.setCustomValidity(e.errorMessage || "");
|
|
@@ -726,25 +727,25 @@ const Ae = /* @__PURE__ */ A(Te, [["render", Pe]]), ee = /* @__PURE__ */ v({
|
|
|
726
727
|
(!d.value || !te(k, d.value)) && (d.value = k, a("validityChange", d.value));
|
|
727
728
|
},
|
|
728
729
|
{ immediate: !0 }
|
|
729
|
-
), (k,
|
|
730
|
+
), (k, B) => {
|
|
730
731
|
var N, R;
|
|
731
732
|
return o(), r("label", {
|
|
732
733
|
class: h(["onyx-test-input", { "onyx-test-input--touched": c.value }])
|
|
733
734
|
}, [
|
|
734
|
-
|
|
735
|
+
y("span", {
|
|
735
736
|
class: h(["onyx-test-input__label", { "onyx-test-input__label--required": e.required }])
|
|
736
737
|
}, g(e.label), 3),
|
|
737
|
-
T(
|
|
738
|
+
T(y("input", L(e, {
|
|
738
739
|
ref_key: "inputElement",
|
|
739
740
|
ref: u,
|
|
740
|
-
"onUpdate:modelValue":
|
|
741
|
+
"onUpdate:modelValue": B[0] || (B[0] = (D) => i.value = D),
|
|
741
742
|
onChange: _,
|
|
742
|
-
onBlur:
|
|
743
|
+
onBlur: B[1] || (B[1] = (D) => c.value = !0)
|
|
743
744
|
}), null, 16), [
|
|
744
745
|
[K, i.value]
|
|
745
746
|
]),
|
|
746
|
-
c.value && !((N = d.value) != null && N.valid) ? (o(), r("p", mt, g(m.value), 1)) :
|
|
747
|
-
|
|
747
|
+
c.value && !((N = d.value) != null && N.valid) ? (o(), r("p", mt, g(m.value), 1)) : p("", !0),
|
|
748
|
+
y("p", ht, ' Model value: "' + g(i.value) + '", is valid: ' + g((R = d.value) == null ? void 0 : R.valid), 1)
|
|
748
749
|
], 2);
|
|
749
750
|
};
|
|
750
751
|
}
|
|
@@ -768,8 +769,8 @@ export {
|
|
|
768
769
|
$t as BUTTON_MODES,
|
|
769
770
|
bt as BUTTON_TYPES,
|
|
770
771
|
kt as BUTTON_VARIATIONS,
|
|
771
|
-
|
|
772
|
-
|
|
772
|
+
Bt as CHECKBOX_GROUP_DIRECTIONS,
|
|
773
|
+
Vt as HEADLINE_TYPES,
|
|
773
774
|
wt as ICON_SIZES,
|
|
774
775
|
Lt as INPUT_TYPES,
|
|
775
776
|
Tt as LINK_TARGETS,
|
|
@@ -786,9 +787,9 @@ export {
|
|
|
786
787
|
Et as OnyxPageLayout,
|
|
787
788
|
Mt as OnyxRadioButtonGroup,
|
|
788
789
|
S as OnyxSkeleton,
|
|
789
|
-
|
|
790
|
+
Pt as OnyxSwitch,
|
|
790
791
|
Ut as TEXT_SIZES,
|
|
791
792
|
Nt as TRUNCATION_TYPES,
|
|
792
|
-
|
|
793
|
+
zt as TestInput,
|
|
793
794
|
Rt as createOnyx
|
|
794
795
|
};
|
package/package.json
CHANGED