@fewangsit/wangsvue-presets 1.0.107-alpha.6 → 1.0.107-alpha.8

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.
@@ -1470,6 +1470,10 @@
1470
1470
  height: 0px;
1471
1471
  }
1472
1472
 
1473
+ .h-1{
1474
+ height: 0.25rem;
1475
+ }
1476
+
1473
1477
  .h-1\.5{
1474
1478
  height: 0.375rem;
1475
1479
  }
@@ -1656,6 +1660,10 @@
1656
1660
  min-height: 26px;
1657
1661
  }
1658
1662
 
1663
+ .min-h-\[35px\]{
1664
+ min-height: 35px;
1665
+ }
1666
+
1659
1667
  .min-h-\[4rem\]{
1660
1668
  min-height: 4rem;
1661
1669
  }
@@ -1466,6 +1466,10 @@
1466
1466
  height: 0px;
1467
1467
  }
1468
1468
 
1469
+ .h-1{
1470
+ height: 0.25rem;
1471
+ }
1472
+
1469
1473
  .h-1\.5{
1470
1474
  height: 0.375rem;
1471
1475
  }
@@ -1652,6 +1656,10 @@
1652
1656
  min-height: 26px;
1653
1657
  }
1654
1658
 
1659
+ .min-h-\[35px\]{
1660
+ min-height: 35px;
1661
+ }
1662
+
1655
1663
  .min-h-\[4rem\]{
1656
1664
  min-height: 4rem;
1657
1665
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-presets",
3
- "version": "1.0.107-alpha.6",
3
+ "version": "1.0.107-alpha.8",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Wangsit VueJS Component Library Presets",
6
6
  "main": "index.js",
@@ -1490,6 +1490,10 @@
1490
1490
  height: 0px;
1491
1491
  }
1492
1492
 
1493
+ .h-1{
1494
+ height: 0.25rem;
1495
+ }
1496
+
1493
1497
  .h-1\.5{
1494
1498
  height: 0.375rem;
1495
1499
  }
@@ -1676,6 +1680,10 @@
1676
1680
  min-height: 26px;
1677
1681
  }
1678
1682
 
1683
+ .min-h-\[35px\]{
1684
+ min-height: 35px;
1685
+ }
1686
+
1679
1687
  .min-h-\[4rem\]{
1680
1688
  min-height: 4rem;
1681
1689
  }
@@ -216,7 +216,7 @@ declare namespace _default {
216
216
  context: any;
217
217
  }): {
218
218
  class: (string | {
219
- '!border-t border-primary-100 !border-solid': boolean;
219
+ 'border-t border-primary-100 border-solid': boolean;
220
220
  })[];
221
221
  };
222
222
  function rowtogglerbutton({ context }: {
@@ -19,7 +19,9 @@ exports.default = {
19
19
  },
20
20
  table: {
21
21
  'class': [
22
- 'min-w-max w-full',
22
+ // h-1 is needed so that a multirow div can fill the entire height of a td
23
+ // Reference: https://stackoverflow.com/questions/45179677/how-to-set-100-height-of-div-inside-table-cell
24
+ 'min-w-max w-full h-1',
23
25
  '!border-separate !border-spacing-0 border !border-solid !border-primary-100 !border-t-0 !border-l-0 !border-r-0 !rounded-lg',
24
26
  ],
25
27
  'data-wv-section': 'table',
@@ -154,15 +156,18 @@ exports.default = {
154
156
  multirowcontainer: function (_a) {
155
157
  var props = _a.props;
156
158
  return ({
157
- class: ['grid grid-cols-1', "grid-rows-".concat(props.attributes.length)],
159
+ class: [
160
+ 'h-full w-full grid grid-cols-1',
161
+ "grid-rows-".concat(props.attributes.length),
162
+ ],
158
163
  });
159
164
  },
160
165
  multirow: function (_a) {
161
166
  var context = _a.context;
162
167
  return ({
163
168
  class: [
164
- '!h-[35px] flex items-center px-2',
165
- { '!border-t border-primary-100 !border-solid': !context.firstIndex },
169
+ 'min-h-[35px] h-full flex items-center px-2',
170
+ { 'border-t border-primary-100 border-solid': !context.firstIndex },
166
171
  ],
167
172
  });
168
173
  },
@@ -2339,7 +2339,9 @@ const _ = {
2339
2339
  }),
2340
2340
  table: {
2341
2341
  class: [
2342
- "min-w-max w-full",
2342
+ // h-1 is needed so that a multirow div can fill the entire height of a td
2343
+ // Reference: https://stackoverflow.com/questions/45179677/how-to-set-100-height-of-div-inside-table-cell
2344
+ "min-w-max w-full h-1",
2343
2345
  "!border-separate !border-spacing-0 border !border-solid !border-primary-100 !border-t-0 !border-l-0 !border-r-0 !rounded-lg"
2344
2346
  ],
2345
2347
  "data-wv-section": "table"
@@ -2461,12 +2463,15 @@ const _ = {
2461
2463
  "data-wv-section": "bodycell"
2462
2464
  },
2463
2465
  multirowcontainer: ({ props: e }) => ({
2464
- class: ["grid grid-cols-1", `grid-rows-${e.attributes.length}`]
2466
+ class: [
2467
+ "h-full w-full grid grid-cols-1",
2468
+ `grid-rows-${e.attributes.length}`
2469
+ ]
2465
2470
  }),
2466
2471
  multirow: ({ context: e }) => ({
2467
2472
  class: [
2468
- "!h-[35px] flex items-center px-2",
2469
- { "!border-t border-primary-100 !border-solid": !e.firstIndex }
2473
+ "min-h-[35px] h-full flex items-center px-2",
2474
+ { "border-t border-primary-100 border-solid": !e.firstIndex }
2470
2475
  ]
2471
2476
  }),
2472
2477
  rowtogglerbutton: ({ context: e }) => ({
@@ -1,4 +1,4 @@
1
- var ot=Object.defineProperty;var at=(a,o,l)=>o in a?ot(a,o,{enumerable:!0,configurable:!0,writable:!0,value:l}):a[o]=l;var h=(a,o,l)=>at(a,typeof o!="symbol"?o+"":o,l);System.register([],function(a,o){"use strict";return{execute:function(){const l={accordiontab:{header:({props:e})=>({class:["pt-6 pb-0","mt-6","border-x-0 border-b-0","border border-surface-200",{"select-none pointer-events-none cursor-default opacity-60":e==null?void 0:e.disabled}]}),headerAction:({context:e})=>({class:["font-semibold","leading-7","flex items-center justify-between flex-row-reverse","relative","rounded-md","bg-transparent","text-surface-900","focus:outline-none focus:outline-offset-0 focus-visible:ring-2 focus-visible:ring-primary-600 ring-inset","cursor-pointer no-underline select-none"]}),headerIcon:{class:"inline-block ml-2"},headerTitle:{class:"leading-7"},content:{class:["leading-7","pr-12 pt-2","text-surface-600"]},transition:{enterFromClass:"max-h-0",enterActiveClass:"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]",enterToClass:"max-h-[1000px]",leaveFromClass:"max-h-[1000px]",leaveActiveClass:"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]",leaveToClass:"max-h-0"}}},T={root:({props:e})=>({class:["relative","inline-flex",{"w-full":e.multiple},"text-surface-900",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),container:({props:e,state:t})=>({class:["font-sans sm:text-sm leading-none","flex items-center flex-wrap","gap-1","m-0 list-none","px-3 py-1",{"px-3 py-1.5":!e.multiple,"px-3 py-1":e.multiple},"w-full","appearance-none rounded-md","text-surface-900","bg-surface-0","placeholder:text-surface-400","shadow-sm","focus:outline-none focus:outline-offset-0",{"ring-1 ring-inset ring-surface-300":!t.focused,"ring-2 ring-primary-500":t.focused},"transition duration-200 ease-in-out","cursor-text overflow-hidden"]}),inputtoken:({props:e})=>({class:[{"py-1.5 px-0":!e.multiple,"p-0.5":e.multiple},,"inline-flex flex-auto"]}),input:({props:e})=>({class:["font-sans sm:text-sm leading-none","appearance-none rounded-md",{"rounded-tr-none rounded-br-none":e.dropdown},{"outline-none shadow-none rounded-none":e.multiple},{"w-full":e.multiple},"m-0",{"py-1.5 px-3":!e.multiple,"p-0":e.multiple},"text-surface-700/80",{"bg-surface-0":!e.multiple,"border border-surface-300":!e.multiple,"border-0 bg-transparent":e.multiple},{"focus:outline-none focus:outline-offset-0 focus:ring-inset focus:ring-2 focus:ring-primary-500":!e.multiple},"transition-colors duration-200"]}),token:{class:["inline-flex items-center","py-0.5 px-3","rounded-[1.14rem]","text-surface-700/70","bg-surface-200"]},label:{class:"leading-5"},removeTokenIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]},dropdownbutton:{root:{class:["relative text-sm leading-none","items-center inline-flex text-center align-bottom","rounded-r-md","px-2.5 py-1.5","-ml-[1px]","text-surface-600","bg-surface-100","ring-1 ring-inset ring-surface-300","hover:bg-surface-200","focus:outline-none focus:outline-offset-0 focus:ring-1","focus:ring-primary-500"]}},loadingicon:{class:["text-sm leading-none text-surface-500","absolute top-[50%] right-[0.5rem] -mt-2 animate-spin"]},panel:{class:["absolute top-0 left-0","mt-2","border-0","rounded-md","shadow-md","max-h-[15rem]","overflow-auto","bg-surface-0","text-surface-800/80","ring-1 ring-inset ring-surface-300"]},list:{class:"py-1 list-none m-0"},item:({context:e})=>({class:["sm:text-sm","leading-none",{"font-normal":!e.selected,"font-bold":e.selected},"relative","border-0","rounded-none","m-0","py-2 px-4",{"text-surface-700/80":!e.focused&&!e.selected},{"bg-surface-200 text-surface-700/80":e.focused&&!e.selected},{"bg-primary-500 text-white":e.focused&&e.selected},{"bg-transparent text-surface-700/80":!e.focused&&e.selected},"hover:bg-primary-500 hover:text-white","cursor-pointer","overflow-hidden","whitespace-nowrap"]}),itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800/80","bg-surface-0","cursor-auto"]},emptymessage:{class:["leading-none","sm:text-sm","py-2 px-4","text-surface-800/80","bg-transparent"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},I={root:({props:e,parent:t})=>{var r,s,n;return{class:[{"text-sm":e.size==null||e.size=="normal","text-lg":e.size=="large","text-xl":e.size=="xlarge"},"inline-flex items-center justify-center","shrink-0","relative",{"h-[30px] w-[30px]":e.size==null||e.size=="normal","w-12 h-12":e.size=="large","w-16 h-16":e.size=="xlarge"},{"-ml-4":((r=t.instance.$style)==null?void 0:r.name)=="avatargroup"},{"rounded-lg":e.shape=="square","rounded-full":e.shape=="circle"},{"border-[0.5px]":((s=t.instance.$style)==null?void 0:s.name)=="avatargroup"},"bg-general-300",{"border-gray-100":((n=t.instance.$style)==null?void 0:n.name)=="avatargroup"},"text-white"]}},image:{class:"h-full w-full rounded-full"}},P={root:{class:"flex items-center ml-4","data-wv-name":"usergroup","data-wv-section":"root"}},u={root:({props:e})=>({class:["inline-flex items-center","py-1 px-2","rounded-[50px]",{"!text-general-400 !bg-general-100":e.disabled,"text-success-800 bg-success-100":e.severity=="success","text-primary-800 bg-primary-200":e.severity==null||e.severity=="primary","text-grayscale-900 bg-grayscale-500":e.severity=="dark","text-warning-600 bg-warning-100":e.severity=="warning","text-danger-700 bg-danger-200":e.severity=="danger"}],"data-wv-name":"badge","data-wv-section":"root"}),input:({props:e,context:t})=>({class:["text-nowrap whitespace-nowrap font-normal text-xs leading-4 tracking-[0.2488px]",{"caret-surface-700":e.editable,"cursor-default":!!t.badgeTooltip}]}),removebutton:({props:e})=>({class:["!p-0 !w-3 !h-3 ml-1",{"!text-primary-800":!e.badgeSeverity||e.badgeSeverity==="primary","!text-success-800":e.badgeSeverity==="success","!text-danger-700":e.badgeSeverity==="danger","!text-warning-600":e.badgeSeverity==="warning","!text-grayscale-900":e.badgeSeverity==="dark"},{"text-general-400":e.disabled}],"icon-class":"w-3 h-3","data-wv-section":"removebutton"})},S={root:({context:e})=>({class:["font-medium","text-xs leading-6 font-sans","flex items-center justify-center","text-center","absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 origin-top-right","m-0",{"p-0":e.nogutter||e.dot,"p-1":!e.nogutter&&!e.dot,"min-w-[0.5rem] h-2":e.dot,"min-w-[1rem] h-4":!e.dot},{"rounded-full":e.nogutter||e.dot,"rounded-[10px]":!e.nogutter&&!e.dot},"text-white","ring-1 ring-white",{"bg-primary-500":!e.info&&!e.success&&!e.warning&&!e.danger&&!e.help&&!e.secondary,"bg-surface-500":e.secondary,"bg-green-500":e.success,"bg-blue-500":e.info,"bg-orange-500":e.warning,"bg-purple-500":e.help,"bg-red-500":e.danger}]})},F={root:({props:e,context:t})=>({class:["relative","items-center inline-flex text-center align-bottom justify-center w-max",{"flex-col":(e.iconPos==="top"||e.iconPos==="bottom")&&e.label},e.iconPos,{"flex-row-reverse":e.iconPos==="right"},"leading-none font-normal rounded-[50px]",{"!text-xs px-3 py-[5px]":e.size===null&&e.label,"!text-xs !p-0.5":e.size==="small","text-xl py-3 px-4":e.size==="large"},{"gap-1":e.label!==null},{"p-[7px] w-max":e.label===null&&e.icon&&e.size===null},{"!p-0.5 !h-4 !w-4":e.label===null&&e.icon&&e.size==="small"},"ring-inset ring-1 ",{"shadow-lg":e.raised},{"text-grayscale-900-600 bg-transparent ring-transparent":e.link},{"text-white bg-gray-500 ring-1 ring-gray-500":e.plain&&!e.outlined&&!e.text},{"text-primary-400":e.plain&&e.text},{"text-primary-400 ring-1 ring-gray-500":e.plain&&e.outlined},{"bg-transparent ring-transparent":e.text&&!e.plain},{"bg-transparent ring-1":e.outlined&&!e.plain},{"text-white":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain,"bg-grayscale-900":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-grayscale-900":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain},{"text-grayscale-900":e.text&&e.severity==="secondary"&&!e.plain},{"text-grayscale-900 ring-1 ring-grayscale-900":e.outlined&&e.severity==="secondary"&&!e.plain},{"text-white":e.severity===null&&!e.text&&!e.outlined&&!e.plain,"bg-primary-400":e.severity===null&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-primary-400":e.severity===null&&!e.text&&!e.outlined&&!e.plain},{"text-primary-400":e.text&&e.severity===null&&!e.plain},{"text-primary-400 ring-1 ring-primary-400 hover:bg-primary-400/20":e.outlined&&e.severity===null&&!e.plain},{"text-white":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain,"bg-success-500":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-success-500":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain},{"text-success-500":e.text&&e.severity==="success"&&!e.plain},{"text-success-500 ring-1 ring-success-500 hover:bg-success-300/20":e.outlined&&e.severity==="success"&&!e.plain},{"text-white":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain,"bg-blue-500":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-blue-500":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain},{"text-blue-500":e.text&&e.severity==="info"&&!e.plain},{"text-blue-500 ring-1 ring-blue-500 hover:bg-blue-300/20 ":e.outlined&&e.severity==="info"&&!e.plain},{"text-white":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain,"bg-warning-500":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-warning-500":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain},{"text-warning-500":e.text&&e.severity==="warning"&&!e.plain},{"text-warning-500 ring-1 ring-warning-500 hover:bg-warning-300/20":e.outlined&&e.severity==="warning"&&!e.plain},{"text-white":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain,"bg-purple-500":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-purple-500":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain},{"text-purple-500":e.text&&e.severity==="help"&&!e.plain},{"text-purple-500 ring-1 ring-purple-500 hover:bg-purple-300/20":e.outlined&&e.severity==="help"&&!e.plain},{"text-white":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain,"bg-danger-500":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-danger-500":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain},{"text-danger-500":e.text&&e.severity==="danger"&&!e.plain},{"text-danger-500 ring-1 ring-danger-500 hover:bg-danger-300/20":e.outlined&&e.severity==="danger"&&!e.plain},{"text-white":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain,"bg-surface-900":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-surface-900":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain},{"text-surface-900":e.text&&e.severity==="contrast"&&!e.plain},{"text-surface-900 ring-1 ring-surface-900":e.outlined&&e.severity==="contrast"&&!e.plain},"focus:outline-none focus:outline-offset-0",{"focus:ring-grayscale-900":e.link},{"hover:bg-gray-600 hover:ring-gray-600":e.plain&&!e.outlined&&!e.text},{"hover:bg-primary-400/20":e.plain&&(e.text||e.outlined)},{"hover:bg-grayscale-900/[8%] active:bg-grayscale-900/[12%] ":e.severity==="secondary","hover:shadow-hover active:!shadow-none hover:!bg-grayscale-900/90 active:bg-grayscale-900/90 hover:ring-0":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-primary-400/[8%] active:bg-primary-400/[12%] ":e.severity===null,"hover:shadow-hover active:!shadow-none hover:!bg-primary-400/90 active:bg-primary-400/90 hover:ring-0":!e.link&&e.severity===null&&!e.text&&!e.outlined&&!t.disabled&&!e.plain},{"hover:bg-success-500/[8%] active:bg-success-500/[12%] ":e.severity==="success","hover:shadow-hover active:!shadow-none hover:!bg-success-500/90 active:bg-success-500/90 hover:ring-0":!e.link&&e.severity==="success"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-blue-600 hover:ring-blue-600":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-blue-400/50":e.severity==="info"},{"hover:bg-blue-300/20":(e.text||e.outlined)&&e.severity==="info"&&!e.plain},{"hover:bg-warning-500/[8%] active:bg-warning-500/[12%] ":e.severity==="warning","hover:shadow-hover active:!shadow-none hover:!bg-warning-500/90 active:bg-warning-500/90 hover:ring-0":!e.link&&e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-warning-300/20":(e.text||e.outlined)&&e.severity==="warning"&&!e.plain},{"hover:bg-purple-600 hover:ring-purple-600":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-purple-400/50":e.severity==="help"},{"hover:bg-purple-300/20":(e.text||e.outlined)&&e.severity==="help"&&!e.plain},{"hover:bg-danger-500/[8%] active:bg-danger-500/[12%] ":e.severity==="danger","hover:shadow-hover active:!shadow-none hover:!bg-danger-500/90 active:bg-danger-500/90 hover:ring-0":!e.link&&e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-danger-300/20":(e.text||e.outlined)&&e.severity==="danger"&&!e.plain},{"hover:bg-surface-800 hover:ring-surface-800":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-primary-400":e.severity==="contrast"},{"hover:bg-surface-900/10":(e.text||e.outlined)&&e.severity==="contrast"&&!e.plain},{"pointer-events-none cursor-default":t.disabled,"!text-general-300":t.disabled&&(e.outlined||e.text),"!ring-general-300":t.disabled&&e.outlined,"!bg-general-300 !text-white !ring-0":t.disabled&&!e.outlined&&!e.text},"transition duration-200 ease-in-out","cursor-pointer overflow-hidden select-none","[&>[data-pc-name=badge]]:min-w-4 [&>[data-pc-name=badge]]:h-4 [&>[data-pc-name=badge]]:leading-4"]}),label:({props:e})=>({class:["duration-200","font-normal text-xs",e.label?"leading-5":"leading-4",{"hover:underline":e.link},{"flex-1":e.label!==null,"invisible w-0":e.label==null}]}),icon:({props:e})=>({class:["shrink-0",{"!h-3 !w-3":e.size==="small"}]}),loadingIcon:({props:e})=>({class:["h-4 w-4","mx-0",{"mr-2":e.iconPos==="left"&&e.label!=null,"ml-2 order-1":e.iconPos==="right"&&e.label!=null,"mb-2":e.iconPos==="top"&&e.label!=null,"mt-2":e.iconPos==="bottom"&&e.label!=null},"animate-spin"]}),badge:({props:e})=>({class:[{"ml-2 w-4 h-4 leading-none flex items-center justify-center":e.badge}]})},N={root:({props:e})=>({class:["focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm","flex gap-1 items-center",{"px-3":e.label}],"data-wv-name":"buttondownload","data-wv-section":"root"}),icon:{class:"text-2xl","data-wv-section":"icon",severity:"secondary"}},V={root:()=>({class:"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm","data-wv-name":"buttonfilter","data-wv-section":"root"}),icon:()=>({class:"text-2xl",severity:"secondary","data-wv-section":"icon"})},$={buttontrigger:{root:({context:e})=>({class:[{"w-max":!e.showSearchInput},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"buttontrigger"}),icon:{class:"w-6 h-6 text-grayscale-900 shrink-0"}},collapsebutton:{root:({context:e})=>({class:[{"w-max":!e.showSearchInput},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"collapsebutton"}),icon:{class:"w-6 h-6 text-grayscale-900 shrink-0"}},resetbutton:{root:({query:e})=>({class:[{invisible:!e},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"resetbutton"}),icon:{class:["text-2xl shrink-0"]}},hiddensubmit:{class:"hidden"},form:({context:e})=>({class:[{show:e.showSearchInput},"grid grid-cols-[max-content,auto,max-content] items-center gap-0.5 max-w-[224px] h-6","border-b border-primary-100"],"data-wv-section":"form"}),inputtext:{class:"!h-max"}},B={root:["w-max"],button:{class:["!rounded-ee-none !rounded-se-none !border-e-white !border-e-[1px]"],"data-wv-section":"button-split"},menuButton:"!rounded-ss-none !rounded-es-none"},y=navigator.userAgent.includes("Chrome"),E={root:({props:e})=>({class:["inline-flex flex-auto justify-between items-center gap-[5px]","rounded","m-0 px-3 py-1",{"select-none pointer-events-none cursor-default":e.disabled}]}),input:({props:e})=>({class:["w-full h-full peer","text-xs font-normal placeholder:font-normal",{"text-grayscale-900":!e.disabled,"text-general-200":e.disabled},"placeholder:text-general-200","appearance-none","transition-colors","duration-200","outline-none focus:ring-primary-400"]}),inputicon:{class:["w-4 h-4 text-grayscale-900 peer-disabled:text-general-300"]},dropdownbutton:{root:{class:["relative text-sm","items-center inline-flex text-center align-bottom","rounded-r-md","px-2.5 py-1.5 leading-none","text-surface-600","bg-surface-100","ring-1 ring-inset ring-surface-300","hover:bg-surface-200","focus:outline-none focus:outline-offset-0 focus:ring-1","focus:ring-primary-400"]}},panel:()=>({class:["datepicker-panel","flex flex-col justify-start items-center","h-max p-6 gap-2.5","bg-white w-[272px] !min-w-[272px]","rounded-lg","bg-white shadow-panel"]}),datepickerMask:{class:["fixed top-0 left-0 w-full h-full","flex items-center justify-center","bg-black bg-opacity-90"]},header:({props:e,state:t})=>{var r;return{class:["h-6 w-full",{hidden:!((r=e.dateFormat)!=null&&r.toString().toLowerCase().includes("y"))&&t.currentView==="month"},"text-xs font-normal","flex justify-between items-center gap-1","rounded-t-md","text-grayscale-900","bg-white"]}},previousbutton:()=>({class:["relative","inline-flex items-center justify-center","order-1","p-1.5 m-0","text-grayscale-900","border-0 ","bg-transparent","hover:bg-general-50","cursor-pointer overflow-hidden"]}),title:()=>({class:["leading-6","my-0","order-2"]}),monthTitle:{class:["text-xs font-normal","text-grayscale-900","bg-white","transition duration-200","mr-1","hover:text-primary-400","cursor-pointer"]},yearTitle:({props:e})=>{var t;return{class:[{hidden:!((t=e.dateFormat)!=null&&t.toString().toLowerCase().includes("y"))},"text-xs font-normal","text-grayscale-900","bg-white","transition duration-200","m-0 mr-1","hover:text-primary-600","cursor-pointer"]}},nextbutton:()=>({class:["relative","inline-flex items-center justify-center order-3","p-1.5 m-0","text-grayscale-900","border-0 ","bg-transparent","hover:bg-general-50","cursor-pointer overflow-hidden"]}),table:{class:["block w-[224px]","[&_tbody]:block [&_tbody]:w-[224px]","m-0","[&_th]:text-xs [&_td]:text-xs","[&_th]:font-normal [&_td]:font-normal","[&_th]:text-grayscale-900 [&_td]:text-grayscale-900",'[&_[data-p-other-month="true"]]:invisible']},tableheadercell:{class:["px-2 py-[5.4px]"]},tablebodyrow:{class:[]},weekheader:{class:["leading-6 text-sm font-normal","text-surface-600/70","opacity-40 cursor-default","mb-2"]},weeknumber:{class:["text-surface-600/70 font-normal","opacity-40 cursor-default"]},weekday:{class:[]},day:{class:["p-0"]},weeklabelcontainer:({context:e})=>({class:["flex items-center justify-center","mx-auto","w-10 h-10","","border-transparent border",{"text-surface-600/70 bg-transparent":!e.selected&&!e.disabled,"text-primary-400 ":e.selected&&!e.disabled},"focus:outline-none focus:outline-offset-0 focus:ring focus:ring-primary-400/50",{"hover:bg-surface-100":!e.disabled},{"opacity-40 cursor-default":e.disabled,"cursor-pointer":!e.disabled}]}),daylabel:({context:e})=>({class:[{flex:!e.date.otherMonth},{hidden:e.date.otherMonth},"items-center justify-center","w-8 h-8",{"bg-primary-100":e.date.today&&!e.selected,"text-white":e.selected,"rounded-none bg-primary-400":e.selected&&!(e.firstSelected||e.lastSelected),"rounded-l-full bg-primary-1000":e.firstSelected,"rounded-r-full bg-primary-1000":e.lastSelected},{"!rounded-full":!e.selected},"focus:outline-none focus-visible:outline-none",{"hover:bg-primary-400/90":e.selected,"hover:!bg-primary-1000/90":e.lastSelected||e.firstSelected,"hover:bg-primary-50":!e.selected&&!e.date.today,"hover:bg-primary-100/90":e.date.today},{"opacity-40 cursor-default":e.disabled,"cursor-pointer":!e.disabled}]}),monthpicker:{class:["w-full grid grid-cols-2 grid-rows-5 gap-y-1 gap-x-0 mt-1"]},month:({context:e})=>({class:["inline-flex items-center justify-center","w-full","px-2.5 py-1.5","text-xs leading-tight","!rounded-[20px]",{"text-grayscale-900 bg-transparent":!e.selected&&!e.disabled,"bg-primary-400 text-white":e.selected&&!e.disabled,"cursor-default text-general-200":e.disabled},{"hover:bg-primary-50":!e.selected&&!e.disabled,"hover:bg-primary-400/90":e.selected&&!e.disabled},"cursor-pointer"]}),yearpicker:{class:["w-full grid grid-cols-2 grid-rows-5 gap-y-1 gap-x-0 mt-1"]},year:({context:e})=>({class:["inline-flex items-center justify-center","w-full","px-2.5 py-1.5","text-xs leading-tight","!rounded-[20px]",{"text-grayscale-900 bg-transparent":!e.selected&&!e.disabled,"bg-primary-400 text-white":e.selected&&!e.disabled,"cursor-default text-general-200":e.disabled},{"hover:bg-primary-50":!e.selected&&!e.disabled,"hover:bg-primary-400/90":e.selected&&!e.disabled},"cursor-pointer"]}),timepicker:{class:["flex","justify-center items-center","gap-2","p-1.5"]},separatorcontainer:{class:["flex","items-center","flex-col"]},separator:{class:["text-xs font-normal"]},hourpicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},minutepicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},secondPicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},timepickerlabel:{class:["w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded",{"ring-1":!y,"ring-[0.5px]":y}]},incrementbutton:{class:["relative","inline-flex items-center justify-center","p-0.5 m-0","!h-6 !w-6","text-grayscale-900","border-0","bg-transparent","cursor-pointer overflow-hidden"]},incrementicon:{class:["w-5 h-5 shrink-0"]},decrementicon:{class:["w-5 h-5 shrink-0"]},decrementbutton:{class:["relative","inline-flex items-center justify-center","p-0.5 m-0","!h-6 !w-6","text-grayscale-900","border-0","bg-transparent","cursor-pointer overflow-hidden"]},groupcontainer:{class:["flex w-full"]},container:{class:["text-grayscale-900 text-xs flex flex-col gap-1 w-full"]},group:{class:[]},buttonbar:{class:["flex justify-between items-center","pt-2.5 pb-1.5 px-0","border-t border-surface-200"]},todaybutton:{root:{class:["inline-flex items-center justify-center","px-2.5 py-1.5 text-sm leading-none","","bg-transparent border-transparent","text-primary-400","transition-colors duration-200 ease-in-out","cursor-pointer"]}},clearbutton:{root:{class:["inline-flex items-center justify-center","px-2.5 py-1.5 text-sm leading-none","bg-transparent border-transparent","text-primary-400","transition-colors duration-200 ease-in-out","focus:outline-none focus:outline-offset-0 focus:ring-2 ring-inset","focus:ring-primary-400","hover:bg-primary-300/20","cursor-pointer"]}},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},G={root:{class:["rounded-lg p-6","flex flex-col gap-y-3","bg-white","text-grayscale-900"]},header:{class:[""]},body:{class:"flex flex-col gap-3"},title:{class:"text-2xl font-bold"},subtitle:{class:["text-sm font-normal"]},content:{class:"flex flex-col gap-3 text-xs text-grayscale-900"},footer:{class:["inline-flex gap-1 text-xs items-center"]}},U={root:{class:["flex flex-col"]},content:{class:["flex flex-col overflow-auto"]},container:({props:e})=>({class:["flex",{"flex-row":e.orientation!=="vertical","flex-col":e.orientation=="vertical"}]}),previousbutton:{class:["flex justify-center items-center self-center","overflow-hidden w-8 h-8","mx-2","rounded-full","border-0 bg-transparent","text-surface-600","transition duration-200 ease-in-out"]},nextbutton:{class:["flex justify-center items-center self-center","overflow-hidden w-8 h-8","mx-2","rounded-full","border-0 bg-transparent","text-surface-600","transition duration-200 ease-in-out"]},itemscontent:{class:[]},itemscontainer:({props:e})=>({class:[]}),item:({props:e})=>({class:[]}),indicators:{class:["flex flex-row justify-center flex-wrap gap-1"]},indicator:{class:[]},indicatorbutton:({context:e})=>({class:["w-1.5 h-1.5 rounded-full","transition duration-200","focus:outline-none focus:outline-offset-0 focus:ring focus:ring-primary-400/50",{"bg-surface-200 hover:bg-surface-300":!e.highlighted,"bg-primary-500 hover:bg-primary-600":e.highlighted}]})},L={root:({props:e,state:t})=>({class:["inline-flex","relative","w-full md:w-56","rounded-md","shadow-sm","bg-surface-0",{"ring-1 ring-inset ring-surface-300":!t.focused,"ring-2 ring-inset ring-primary-500":t.focused},"cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),label:({props:e})=>({class:["font-sans","leading-6","sm:text-sm"," flex flex-auto","w-[1%]","py-1.5 px-3","rounded-none","bg-transparent","border-0",{"text-surface-800/80":e.modelValue,"text-surface-400":!e.modelValue},"placeholder:text-surface-400","transition","duration-200","focus:outline-none focus:shadow-none","relative","cursor-pointer","overflow-hidden overflow-ellipsis","whitespace-nowrap","appearance-none"]}),dropdownbutton:{class:["sm:text-sm","flex items-center justify-center","shrink-0","bg-transparent","text-surface-500","w-12","rounded-tr-md","rounded-br-md"]},panel:{class:["absolute top-0 left-0","mt-2","border-0","rounded-md","shadow-md","bg-surface-0","text-surface-800/80","ring-1 ring-inset ring-surface-300"]},wrapper:{class:["max-h-[200px]","overflow-auto"]},list:{class:"py-1 list-none mx-1.5"},item:({context:e})=>({class:["sm:text-sm","leading-none","border-0","rounded-md","m-0",{"text-surface-500/70":!e.focused&&!e.active,"text-surface-500/70 bg-surface-200":e.focused&&!e.active,"text-surface-900/80 bg-surface-50":e.focused&&e.active,"text-surface-900/80 bg-surface-50":!e.focused&&e.active},{"hover:bg-surface-50":!e.active,"hover:bg-surface-100 text-surface-900/80":e.active},"transition-shadow","duration-200","cursor-pointer","overflow-hidden","whitespace-nowrap"]}),content:{class:["relative","flex","items-center","py-2 px-4","no-underline","overflow-hidden","cursor-pointer","select-none"]},groupicon:{class:["ml-auto"]},sublist:{class:["w-full sm:w-48","p-1.5","m-0","list-none","shadow-none sm:shadow-md","border-0","static sm:absolute","z-10","bg-surface-0"]},separator:{class:"border-t border-surface-200 my-1"},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},R={button:e=>({class:[e,"w-max"],"data-wv-section":"changelog-button"}),icon:{class:["text-2xl"]},dialog:{class:"w-[800px] !z-50","data-wv-name":"changelog-dialog"},root:{class:"flex flex-col gap-2 justify-between"},header:{class:"flex justify-end gap-1 items-center","data-wv-section":"changelog-dialog-header"},buttonsearch:{"data-wv-section":"changelog-dialog-button-search"},buttonfilter:{"data-wv-section":"changelog-dialog-button-filter"},buttondownload:{"data-wv-section":"changelog-dialog-button-download"}},f={root:{class:["relative","w-max items-center cursor-pointer","shrink-0","inline-flex","align-bottom","transition-all","duration-200"]},box:({props:e,context:t})=>({class:["flex","items-center","justify-center","w-4 h-4","rounded","border-2","text-white",{"border-general-300":e.disabled,"border-grayscale-900":!e.disabled,"bg-white":!(t.checked||t.partialChecked)&&!e.disabled,"bg-general-50":!(t.checked||t.partialChecked)&&e.disabled,"bg-grayscale-900":(t.checked||t.partialChecked)&&!e.disabled,"bg-general-300":(t.checked||t.partialChecked)&&e.disabled},{"ring-8 ring-primary-400/[12%]":!e.disabled&&t.focused},{"peer-focus-visible:ring-8 peer-focus-visible:ring-offset-0 peer-focus-visible:ring-primary-400/[8%]":!e.disabled,"peer-active:ring-8 peer-active:ring-offset-0 peer-active:ring-primary-400/[12%]":!e.disabled,"cursor-default bg-general-50 border-general-200":e.disabled&&!(t.checked||t.partialChecked),"bg-general-200 border-general-200":e.disabled&&(t.checked||t.partialChecked)},{"[&_i]:bg-transparent":e.disabled&&!(t.checked||t.partialChecked),"[&_i]:text-white":t.checked||t.partialChecked,"[&_i]:text-transparent":!(t.checked||t.partialChecked)},"transition-all","duration-200"]}),input:{class:["peer","w-4","h-full","absolute","top-0 left-0","z-10","p-0","m-0","rounded","border","opacity-0","rounded-md","outline-none","appareance-none","transition-all","duration-200","cursor-pointer"]},icon:{class:["text-normal","w-3","h-3","transition-all","duration-200"]},label:({props:e})=>({class:["flex items-start gap-px select-none text-xs tracking-[0.02em] leading-none","text-grayscale-900",e.labelClass]}),tooltipicon:{class:"text-grayscale-900 w-[10px] h-[10px]"}},M={root:{class:["inline-flex items-center","px-2 py-0.5","rounded-[1.14rem]","text-surface-700","bg-surface-200"]},label:{class:"text-xs leading-6 mx-0"},icon:{class:"leading-6 mr-2"},image:{class:["w-6 h-6 mr-2","rounded-full"]},removeIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]}},O={root:({props:e})=>({class:["flex",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),container:({state:e})=>({class:["font-sans sm:text-sm leading-none","flex items-center flex-wrap gap-1","m-0 py-1 px-3","w-full","list-none","rounded-md","text-surface-900","bg-surface-0","placeholder:text-surface-400","shadow-sm",{"ring-1 ring-inset ring-surface-300":!e.focused,"ring-2 ring-primary-500":e.focused},"transition-colors duration-200","cursor-text overflow-hidden","appearance-none"]}),inputtoken:{class:["py-0.5 px-0","inline-flex flex-auto"]},input:{class:["font-sans sm:text-sm leading-none","w-full","p-0 m-0","appearance-none rounded-none","border-0 outline-none","text-surface-700/80","bg-transparent","placeholder:text-surface-400"]},token:{class:["inline-flex items-center","py-0.5 px-3","rounded-[1.14rem]","text-surface-700/70","bg-surface-200"]},label:{class:"leading-5"},removeTokenIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]}},W={menustart:{class:"border-b-[0.5px] border-solid border-grayscale-900"},menuitem:({context:e,props:t})=>({class:["flex gap-1 py-[7px] px-4 transition-transform",{"!pl-0.5 !pr-2 !py-[4.5px]":t.type==="flat"},{"cursor-grab [&_label]:cursor-grab ":e.dragable,"cursor-default [&_*]:cursor-default":!e.dragable},"[&:has([selectable=false])]:!cursor-not-allowed","[&:has([selectable=false])]:hover:!bg-transparent"]}),dragicon:({context:e})=>({class:["!cursor-move w-[18px] h-[18px] !text-general-300 shrink-0",{invisible:e.dragable===!1}]})},D={copybutton:{class:"peer-hover:visible scale-125 !absolute top-2 right-2 z-50"},body:{class:"relative rounded text-xs font-normal peer text-grayscale-900 bg-primary-50 overflow-x-auto overflow-y-hidden tracking-normal"},textarea:{class:["whitespace-nowrap overflow-x-auto pr-1.5 mt-1","absolute bg-transparent text-transparent z-30 leading-5 w-full h-full border-0 outline-none !font-poppins resize-none px-1.5","caret-primary-500"]},linenumber:{class:["font-poppins tracking-0.5px]","px-2 bg-primary-100 sticky left-0 text-right select-none"]}},H={root:({props:e})=>({class:["inline-block",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),input:{class:["font-sans text-base ","m-0","rounded","w-4","h-4","bg-surface-0","border border-surface-300","hover:border-primary-500","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-primary-500","transition-colors duration-200","cursor-default","select-none"]},panel:({props:e})=>({class:[{"relative h-48 w-52":e.inline,"absolute h-48 w-52":!e.inline},"shadow-md","border-0","rounded-md","bg-surface-800","ring-1 ring-inset ring-surface-900"]}),selector:{class:["absolute top-2 left-2","h-44 w-40"]},color:{class:["h-44 w-40"],style:"background: linear-gradient(to top, #000 0%, rgb(0 0 0 / 0) 100%), linear-gradient(to right, #fff 0%, rgb(255 255 255 / 0) 100%)"},colorhandle:{class:["absolute","rounded-full border border-solid","h-3 w-3","border-white","cursor-pointer opacity-85"]},hue:{class:["absolute top-2 left-44","h-44 w-6","opacity-85"],style:"background: linear-gradient(0deg, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red)"},huehandle:{class:["absolute left-0 -ml-1","h-2 w-8","border-solid border-2 rounded","border-white","opacity-85"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},K={root:{class:["rounded-lg","shadow-xl","border-0","z-40 transform origin-center","mt-3 absolute left-0 top-0","","bg-surface-0","text-surface-700/80","before:absolute before:w-0 before:-top-3 before:h-0 before:border-transparent before:border-solid before:ml-6 before:border-x-[0.75rem] before:border-b-[0.75rem] before:border-t-0 before:border-b-surface-0"]},content:{class:["text-sm","px-6","py-3","bg-surface-0","text-surface-600","overflow-y-auto"]},icon:{class:"text-xl mr-2"},footer:{class:["flex items-center justify-end","shrink-0","text-right","gap-3","px-6","py-3","border-t-0","rounded-b-lg","bg-surface-50","text-surface-700/80"]},rejectbutton:{root:{class:["relative","items-center inline-flex text-center align-bottom justify-center","px-2.5 py-1.5 min-w-[2rem]","text-sm","rounded-md","text-primary-500","hover:bg-primary-300/20","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-inset","focus:ring-primary-500"]}},acceptbutton:{root:{class:["relative","items-center inline-flex text-center align-bottom justify-center","px-2.5 py-1.5 min-w-[2rem]","text-sm","rounded-md","text-white","bg-primary-500","ring-1 ring-primary-500","hover:bg-primary-600 hover:border-primary-600","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-offset-current","focus:ring-primary-500"]}},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},Y={root:{class:["min-w-[12rem]","rounded-md","shadow-md","p-1.5","bg-surface-0","text-surface-700/80"]},menu:{class:["list-none","m-0","p-0","outline-none"]},menuitem:{class:"relative"},content:({context:e})=>({class:["rounded-md",{"text-surface-500/70":!e.focused&&!e.active,"text-surface-500/70 bg-surface-200":e.focused&&!e.active,"text-surface-900/80 bg-surface-50":!e.focused&&e.active},{"hover:bg-surface-50":!e.active,"hover:bg-surface-100 text-surface-900/80":e.active},"transition-shadow","duration-200"]}),action:{class:["relative","font-semibold","flex","items-center","py-2","px-3","no-underline","overflow-hidden","cursor-pointer","select-none"]},icon:{class:["mr-2","leading-6","text-sm"]},label:{class:["leading-6","text-sm"]},submenu:({props:e})=>({class:["w-full sm:w-48","p-1.5","m-0","list-none","shadow-md","rounded-md","static sm:absolute","z-10",{"sm:absolute sm:left-full sm:top-0":e.level>1},"bg-surface-0"]}),submenuicon:{class:["ml-auto"]},separator:{class:"border-t border-surface-200 my-1"},transition:{enterFromClass:"opacity-0",enterActiveClass:"transition-opacity duration-250"}},q={root:{"data-wv-name":"datatable","data-wv-section":"root",class:"relative"},tablewrapper:{"data-wv-section":"tablewrapper"},scrollheightwrapper:({props:e})=>({style:`max-height: ${e.scrollHeight??"none"}`,"data-wv-section":"scrollheightwrapper"}),table:{class:["min-w-max w-full","!border-separate !border-spacing-0 border !border-solid !border-primary-100 !border-t-0 !border-l-0 !border-r-0 !rounded-lg"],"data-wv-section":"table"},tbody:{class:["[&_tr:last-of-type>td]:!border-b-0","[&_tr:last-of-type>td:last-child]:!rounded-br-lg","[&_tr:last-of-type>td:first-child]:!rounded-bl-lg"]},thead:{class:["sticky top-0 z-50"]},headerrow:{class:["border-b border-primary-100"]},bodyrow:({context:e,props:t})=>({class:["border-b border-general-100 group",{"!h-[35px]":t.rowHeight==="fixed"},"text-general-800 text-xs font-normal",{"bg-transparent":!e.selected,"bg-primary-100":e.selected},{"focus:outline-none focus:outline-offset-0":t.selectionType,"hover:!bg-primary-50":!e.highlighted,"hover:!bg-warning-300 !bg-warning-200":e.highlighted},{"transition duration-200":t.selectionType&&!e.selected||t.rowHover},"px-4 transition-transform",{"select-none":e.dragging,"select-auto":!e.dragging},{"!cursor-grab [&_label]:!cursor-grab":e.draggable},{"cursor-pointer":t.selectionType!=="none"&&!e.disabled}]}),headercell:({context:e})=>({class:["text-xs font-semibold text-white p-2 cursor-pointer",{"text-center":e.isParentHeader,"text-left":!e.isParentHeader},{"bg-primary-400":!e.sorted||!e.sortable},{"bg-primary-500":e.sorted},{"sticky right-0 hover:bg-primary-500":e.customColumn,"!cursor-default":!e.customColumn&&!e.sortable},"border-0 !border-b border-solid","border-primary-100"],"data-wv-section":"headercell"}),headercellcontent:{class:["inline-flex gap-2 items-center leading-[18px]"],"data-wv-section":"headercellcontent"},headercellreorderable:{class:["w-[35px] !py-1"],"data-wv-section":"headercellreorderable"},draggableicon:{class:"w-[18px] h-[18px] !p-0 !m-0 !cursor-grab [&_label]:!cursor-grab"},headercheckbox:({context:e})=>({class:[{"[&_[data-wv-section=box]]:!border-white [&_[data-wv-section=box]]:!bg-transparent":!e.isSelectedAll}],"data-wv-section":"headercheckbox"}),headercellcheckbox:{class:"w-[35px] text-center","data-wv-section":"headercellcheckbox"},headertoggler:{class:["w-[40px] text-center !py-1"],"data-wv-section":"headertoggler"},columnvisibilityicon:{class:["!w-4 !h-4 !mx-auto"],info:"Visibilitas Kolom"},headertogglerbutton:({context:e})=>({class:["!p-0 !m-0 !w-auto !h-auto",{"rotate-180":e.isExpandedAll},{"rotate-0":!e.isExpandedAll}],"icon-class":"w-6 h-6 text-white","data-wv-section":"headertogglerbutton"}),rowcheckbox:{class:"","data-wv-section":"rowcheckbox"},bodycell:{class:["text-xs px-2 py-0.5","border-0 !border-b !border-solid border-primary-100","justify-items-start","[&:has([data-wv-section=rowcheckbox])]:text-center","[&:has([data-wv-section=rowcheckbox])]:text-center"],"data-wv-section":"bodycell"},multirowcontainer:({props:e})=>({class:["grid grid-cols-1",`grid-rows-${e.attributes.length}`]}),multirow:({context:e})=>({class:["!h-[35px] flex items-center px-2",{"!border-t border-primary-100 !border-solid":!e.firstIndex}]}),rowtogglerbutton:({context:e})=>({class:["!p-0 !m-0 !w-auto !h-auto",{"rotate-180":e.isRowExpanded},{"rotate-0":!e.isRowExpanded}],"icon-class":"w-6 h-6","data-wv-section":"rowtogglerbutton"}),childrowheader:{class:"font-semibold text-xs","data-wv-section":"childrowheader"},celleditableelement:{class:["focus:px-2","w-full inline-block py-2 focus:outline-grayscale-600 focus:outline-1"],"data-wv-section":"celleditableelement"},rowsingleactioncell:({props:e,context:t})=>({class:["w-[35px]",{"sticky right-0 bg-white":e.useOption,"!bg-primary-100":t.selected,"group-hover:!bg-primary-50":!t.highlighted,"group-hover:!bg-warning-300 !bg-warning-200":t.highlighted}],"data-wv-section":"rowsingleactioncell"}),singleactionwrapper:{class:["relative w-full h-full flex items-center justify-center"],"data-wv-section":"singleactionwrapper"},singleactionbutton:({props:e})=>({class:[{"pointer-events-none !border-general-100 [&>i]:text-general-200":e.disableAllRows},{"pointer-events-auto":!e.disableAllRows}],severity:"secondary",tooltip:"Aksi","data-wv-section":"singleactionbutton"}),nodatalottiewrapper:{class:"w-full p-4 flex items-center justify-center absolute top-[35px] inset-x-0 pointer-events-none","data-wv-section":"nodatalottiewrapper"},invisiblelottiewrapper:{class:"p-4 invisible"},nodatalottie:{class:"w-44 h-auto","data-wv-section":"nodatalottie"},loadingtablewrapper:{class:"w-full p-4 flex items-center justify-center absolute top-[35px] inset-x-0 pointer-events-none","data-wv-section":"loadingtablewrapper"},loadingtablelottie:{class:"w-20 h-auto","data-wv-section":"loadingtablelottie"},paginator:({context:e})=>({"current-page-report-template":e.totalRecords?"Menampilkan {first} - {last} dari {totalRecords}":"Tidak ditemukan data",class:"",template:"FirstPageLink PrevPageLink PageLinks JumpToPageInput NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown"})},J={content:{class:["p-0","border-0","text-surface-700/80","bg-surface-0"]},grid:{class:["flex flex-wrap","ml-0 mr-0 mt-0","bg-surface-0"]},header:{class:["font-semibold","p-6","text-surface-800/80","bg-surface-0","border-surface-200 border-b"]}},X={listbutton:({props:e})=>({class:["leading-none","inline-flex items-center align-bottom text-center","rounded-md rounded-r-none","px-2.5 py-1.5","ring-1 ring-surface-200",e.modelValue==="list"?"bg-surface-100 text-surface-700":"bg-surface-0 text-surface-700/80","focus:outline-none focus:outline-offset-0 focus:ring-primary-500","hover:bg-surface-200/80","transition duration-200","cursor-pointer select-none overflow-hidden"]}),gridbutton:({props:e})=>({class:["leading-none","inline-flex items-center align-bottom text-center","rounded-md rounded-l-none","px-2.5 py-1.5","ring-1 ring-surface-200",e.modelValue==="grid"?"bg-surface-100 text-surface-700":"bg-surface-0 text-surface-700/80","focus:outline-none focus:outline-offset-0 focus:ring-primary-500","hover:bg-surface-200/80","transition duration-200","cursor-pointer select-none overflow-hidden"]})},w={root:({state:e})=>({class:["rounded-[0.4375em]","shadow-panel","flex flex-col","p-6","gap-3","bg-white","max-h-[90vh]",{"sm:max-w-[90vw]":!e.maximized},"m-0","transform","scale-100",{"transition-none":e.maximized,"transform-none":e.maximized,"!w-screen":e.maximized,"!h-screen":e.maximized,"!max-h-full":e.maximized,"!top-0":e.maximized,"!left-0":e.maximized}]}),header:{class:["flex items-center gap-2","shrink-0","rounded-tl-lg","rounded-tr-lg","text-general-800"]},title:{class:["text-general-800 text-sm font-bold leading-[19.12px] tracking-[0.24px]"]},icons:{class:["flex items-center ml-auto"]},closeButton:{class:["relative","flex items-center justify-center","w-6 h-6 !p-0.5","border-0","rounded-full","text-general-200","bg-transparent","transition duration-200 ease-in-out","hover:bg-general-50 hover:text-general-300","overflow-hidden"]},maximizablebutton:{class:["relative","flex items-center justify-center","mr-2","last:mr-0","w-6 h-6","border-0","rounded-full","text-surface-500","bg-transparent","transition duration-200 ease-in-out","hover:text-surface-700","hover:bg-surface-100","focus:outline-none focus:outline-offset-0 focus:ring-1 focus:ring-inset","focus:ring-primary-500","overflow-hidden"]},closeButtonIcon:{class:["inline-block","text-general-200","w-3.5","h-3.5"]},maximizableicon:{class:["inline-block","w-3","h-3"]},content:({state:e,instance:t})=>({class:["!text-general-800 text-xs font-normal","pr-1.5 -mr-1.5 pl-1.5 -ml-1.5 pt-1.5 -mt-1.5 !pb-1.5 -mb-1.5","flex flex-col gap-3","text-surface-600","overflow-y-auto scrollbar-w-none",{grow:e==null?void 0:e.maximized}]}),footer:{class:["flex items-center justify-end","shrink-0","text-right","gap-1 mt-2","border-t-0","rounded-b-lg","bg-inherit","text-surface-700/80"]},mask:({props:e})=>({class:["transition","duration-300",{"p-5":!e.position=="full"},{"has-[.mask-active]:bg-transparent bg-dialog-mask":e.modal,"has-[.mask-active]:backdrop-blur-none backdrop-blur-sm":e.modal}]}),transition:({props:e})=>e.position==="top"?{enterFromClass:"opacity-0 scale-75 translate-x-0 -translate-y-full translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 translate-x-0 -translate-y-full translate-z-0 mask-active"}:e.position==="bottom"?{enterFromClass:"opacity-0 scale-75 translate-y-full mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 translate-x-0 translate-y-full translate-z-0 mask-active"}:e.position==="left"||e.position==="topleft"||e.position==="bottomleft"?{enterFromClass:"opacity-0 scale-75 -translate-x-full translate-y-0 translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 -translate-x-full translate-y-0 translate-z-0 mask-active"}:e.position==="right"||e.position==="topright"||e.position==="bottomright"?{enterFromClass:"opacity-0 scale-75 translate-x-full translate-y-0 translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 opacity-0 scale-75 translate-x-full translate-y-0 translate-z-0 mask-active"}:{enterFromClass:"opacity-0 scale-75 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 mask-active"}},Z={root:{class:["!w-[clamp(360px,75vw,400px)]"],"data-wv-name":e=>e??"root","data-wv-section":e=>e??"dialogconfirm"},header:{"data-wv-section":"dialog-confirm-header"},headericon:({props:e})=>({class:["text-2xl"],icon:e.headerIcon??(e.severity==="danger"?"error-fill":"checkbox-circle"),"data-wv-section":"headericon"}),headertitle:e=>({class:["text-base leading-none font-semibold",{"text-success-700":e==="success","text-danger-700":e==="danger"}],"data-wv-section":"dialog-confirm-title"}),content:{class:"[&_ul]:list-outside [&_ul]:list-disc [&_ul]:pl-6","data-wv-section":"dialog-confirm-content"},list:{"data-wv-section":"dialog-confirm-list"},bodymessage:{"data-wv-section":"confirm-message"},cancelbutton:{"data-wv-section":"cancel-button"},confirmbutton:{"data-wv-section":"confirm-button"},footer:{class:"flex items-end justify-end gap-1 !mt-0","data-wv-section":"dialog-confirm-footer"}},Q={root:{class:["max-w-[90vw]"],style:e=>`width: ${e}`,"data-wv-section":"dialog-form"},header:{class:"flex items-center gap-2","data-wv-section":"dialog-form-header"},headericon:{class:"text-2xl","data-wv-section":"headericon"},headertitle:{class:"mr-auto text-grayscale-900 text-center text-[0.9rem] leading-[1.125rem] !font-semibold tracking-[0.28px]","data-wv-section":"dialog-form-title"},expandasidebutton:{class:["!px-1.5 !py-1 -mr-1.5 !text-xs"],"data-wv-section":"expand-aside-button"},closedialog:{class:"!p-0.5 !text-general-200","data-wv-section":"closebutton"},container:e=>({class:["flex overflow-y-auto overflow-x-hidden scrollbar-w-none",{"gap-6":e}],"data-wv-section":"dialog-form-container"}),mainsection:{class:["flex flex-col gap-3 w-full"],"data-wv-section":"dialog-form-main"},asidesection:(e,t)=>({class:["flex flex-col gap-3 shrink-0",{"opacity-0":!e},{"opacity-100":e}],style:`width: ${e?t-24:0}px`,"data-wv-section":"dialog-form-aside"}),form:{class:"overflow-y-auto",style:"scrollbar-width: none !important","data-wv-section":"form"},footer:{class:"flex flex-col gap-3 items-end justify-center","data-wv-section":"dialog-form-footer"},footerbutton:{class:"flex gap-1 items-center justify-end","data-wv-section":"footer-button"},cancelbtn:{"data-wv-section":"cancel-btn"},clearfield:{"data-wv-section":"clear-field"},savesubmitbutton:{"data-wv-section":"save-submit-button"}},ee={root:({props:e})=>({class:["flex relative",{"justify-center":e.layout=="vertical"},{"items-center":e.layout=="vertical"},{"justify-start":(e==null?void 0:e.align)=="left"&&e.layout=="horizontal","justify-center":(e==null?void 0:e.align)=="center"&&e.layout=="horizontal","justify-end":(e==null?void 0:e.align)=="right"&&e.layout=="horizontal","items-center":(e==null?void 0:e.align)=="top"&&e.layout=="vertical","items-start":(e==null?void 0:e.align)=="center"&&e.layout=="vertical","items-end":(e==null?void 0:e.align)=="bottom"&&e.layout=="vertical"},{"my-5 mx-0 py-0 px-5":e.layout=="horizontal","mx-4 md:mx-5 py-5":e.layout=="vertical"},{"w-full":e.layout=="horizontal","min-h-full":e.layout=="vertical"},"before:block",{"before:absolute before:left-0 before:top-1/2":e.layout=="horizontal","before:absolute before:left-1/2 before:top-0 before:transform before:-translate-x-1/2":e.layout=="vertical"},{"before:w-full":e.layout=="horizontal","before:min-h-full":e.layout=="vertical"},{"before:border-solid":e.type=="solid","before:border-dotted":e.type=="dotted","before:border-dashed":e.type=="dashed"},{"before:border-t before:border-surface-200":e.layout=="horizontal","before:border-l before:border-surface-200":e.layout=="vertical"}]}),content:{class:["p-2 z-10","bg-surface-0"]}},te={root:({props:e})=>({class:["absolute z-1",{"left-0 bottom-0 w-full":e.position=="bottom","left-0 top-0 w-full":e.position=="top","left-0 top-0 h-full":e.position=="left","right-0 top-0 h-full":e.position=="right"},"flex justify-center items-center","pointer-events-none"]}),container:{class:["flex","rounded-md","bg-surface-0/10 border border-surface-0/20","backdrop-blur-sm","p-2","pointer-events-auto"]},menu:({props:e})=>({class:["flex items-center justify-center",{"flex-col":e.position=="left"||e.position=="right"},"m-0 p-0 list-none","outline-none"]}),menuitem:({props:e,context:t,instance:r})=>({class:["p-2 rounded-md",{"hover:scale-150":r.currentIndex===t.index,"scale-125":r.currentIndex-1===t.index||r.currentIndex+1===t.index,"scale-110":r.currentIndex-2===t.index||r.currentIndex+2===t.index},{"origin-bottom hover:mx-6":e.position=="bottom","origin-top hover:mx-6":e.position=="top","origin-left hover:my-6":e.position=="left","origin-right hover:my-6":e.position=="right"},"transition-all duration-200 ease-cubic-bezier-will-change-transform transform"]}),action:{class:["flex flex-col items-center justify-center","relative","w-16 h-16","cursor-default overflow-hidden"]}},i={root:({props:e,state:t})=>({class:["inline-flex","relative","w-full","cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),labelContainer:{class:"overflow-hidden flex flex-auto items-center cursor-pointer py-[3px] px-3 pr-0"},label:({props:e})=>{var t,r;return{class:["flex gap-1","h-max","text-xs font-normal",{"!leading-5":e.modelValue==null},"rounded-none",{"text-general-200":!((t=e.modelValue)!=null&&t.length),"text-grayscale-900":(r=e.modelValue)==null?void 0:r.length},"transition duration-200","overflow-hidden overflow-x-auto scrollbar-w-none whitespace-nowrap cursor-pointer overflow-ellipsis"]}},token:u.root({props:{severity:"dark"}}),tokenLabel:u.input({props:{},context:{}}),removeTokenIcon:u.removebutton({props:{badgeSeverity:"dark"}}),loadingplaceholder:{class:"text-general-200 font-normal"},loadingicon:{class:"text-xs animate-spin duration-200 !text-general-500",icon:"spinner"},dropdownicon:({state:e})=>({class:["w-full h-full transition-transform !text-general-500",{"rotate-180":e.isShowOverlay}],icon:"arrow-drop-down"}),trigger:{class:["mr-1","flex items-center justify-center","shrink-0","bg-transparent","text-surface-500","w-6","rounded-tr-md","rounded-br-md"]},panel:{class:["absolute top-0 left-0","mt-2","max-w-[30vw]","border-0","rounded-lg","shadow-panel","bg-surface-0","text-surface-800"]},header:{class:["flex items-center self-stretch justify-between gap-2","py-3 px-4","m-0","border-[0.5px] border-b-0","rounded-tl-md","rounded-tr-md","text-surface-700","bg-primary-400","border-grayscale-900"]},headerCheckboxContainer:{class:["relative","inline-flex","align-bottom","w-4","h-4","mr-2","cursor-default","select-none"]},headerCheckbox:{...f,root:{class:["!mx-auto",...f.root.class,"[&:not(:has(svg))_[data-pc-section=box]]:!bg-primary-400","[&:not(:has(svg))_[data-pc-section=box]]:!border-white"]}},itemCheckbox:f,closeButton:{class:["hidden"]},closeButtonIcon:{class:["inline-block","w-3","h-3"]},wrapper:{class:["max-h-[15rem]","border-[0.5px]","bg-white","border-grayscale-900","overflow-auto","rounded-br-lg","rounded-bl-lg"]},list:{class:"list-none m-0"},item:({context:e})=>({class:["text-xs font-normal","flex items-center gap-2","relative","border-0","rounded-none","m-0","py-2 px-4",{"!font-medium":e.selected},{"text-surface-700":!e.focused&&!e.selected&&!e.disabled},{"text-surface-600":!e.focused&&!e.selected&&e.disabled},{"bg-primary-50 text-surface-700":e.focused&&!e.selected},{"bg-primary-50 text-primary-500":e.focused&&e.selected},{"text-surface-700":!e.focused&&e.selected},"hover:bg-primary-bg-weak hover:text-primary","focus-visible:outline-none focus-visible:outline-offset-0 focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-primary-500",{"pointer-events-none cursor-default":e.disabled},{"cursor-pointer":!e.disabled},"overflow-hidden","whitespace-nowrap"]}),option:{class:"overflow-hidden text-ellipsis w-max"},itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800","bg-surface-0","cursor-auto"]},filtercontainer:{class:["flex flex-row-reverse items-center relative w-full gap-2","text-[0.7rem]","leading-4","w-full","text-grayscale-900","bg-primary-400","border-b border-primary-100"]},filterinput:{class:["w-full","bg-primary-400","text-white","placeholder:text-primary-100","appearance-none","focus-visible:outline-none"]},filtericon:{class:["text-xs w-6 h-6"],icon:"search-line"},clearicon:{class:["text-surface-500","absolute","top-1/2","right-12","-mt-2"]},emptymessage:{class:["leading-none","text-xs","py-2 px-4","text-grayscale-800","bg-transparent"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},re={root:({props:e,state:t})=>({class:["inline-flex items-center justify-between","relative","w-full","rounded-md","cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),input:({props:e})=>({class:["text-xs font-normal",{"!text-general-200":e.modelValue==null,"text-grayscale-900":e.modelValue!=null},"flex items-center","bg-transparent","border-0","placeholder:text-general-200","h-max w-full","px-3 pr-0",{"py-[5px]":!e.modelValue},{"py-[3px] leading-6":e.modelValue},{"pr-7":e.showClear},"rounded-none","transition","duration-200","focus:outline-none focus:shadow-none","relative","cursor-pointer","overflow-hidden overflow-ellipsis","whitespace-nowrap","appearance-none"]}),trigger:{class:["mr-1","flex items-center justify-center","shrink-0","bg-transparent","text-general-200","w-6 h-full","rounded-tr-md","rounded-br-md"]},panel:({props:e})=>({class:["absolute top-0 left-0 !z-[9999]","mt-2",{"max-w-max":e.panelMaxContent,"max-w-[30vh]":!e.panelMaxContent},"border-0","rounded-lg","shadow-panel","bg-surface-0","text-surface-800"]}),wrapper:({props:e})=>({class:["max-h-[15rem]","border-[0.5px]","bg-white","border-grayscale-900","overflow-auto",{"rounded-lg":!e.filter}]}),virtualScroller:({props:e})=>({root:{class:{"!contain-none":e.panelMaxContent}}}),list:({props:e})=>({class:["list-none m-0",{"!relative":e.panelMaxContent}]}),item:({context:e})=>({class:["text-xs font-normal","w-full overflow-hidden text-ellipsis","relative","border-0","rounded-none","m-0","py-2 px-4",{"!font-medium":e.selected},{"text-surface-700":!e.focused&&!e.selected&&!e.disabled},{"text-surface-600":!e.focused&&!e.selected&&e.disabled},{"bg-primary-50 text-surface-700":e.focused&&!e.selected},{"bg-primary-50 text-primary-500":e.focused&&e.selected},{"text-surface-700":!e.focused&&e.selected},"hover:bg-primary-bg-weak hover:text-primary","focus-visible:outline-none focus-visible:outline-offset-0 focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-primary-500",{"pointer-events-none cursor-default":e.disabled},{"cursor-pointer":!e.disabled},"overflow-hidden","whitespace-nowrap"]}),itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800","bg-surface-0","cursor-auto"]},emptymessage:{class:["leading-none text-xs","py-2 px-4","text-surface-800","bg-transparent"]},header:i==null?void 0:i.header,filtercontainer:i==null?void 0:i.filtercontainer,filterinput:i==null?void 0:i.filterinput,filtericon:i==null?void 0:i.filtericon,loadingicon:i==null?void 0:i.loadingicon,dropdownicon:({state:e})=>i.dropdownicon({state:e}),clearicon:{class:["text-general-200","absolute","top-1/2","right-12","-mt-2"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"},loadingplaceholder:{class:"text-general-200 font-normal"}},se={root:{class:["block","px-5 md:px-6 py-5","rounded-md rounded-lg","bg-surface-0","text-surface-700/80","ring-1 ring-inset ring-surface-300"]},legend:({props:e})=>({class:["font-medium","leading-none",{"p-0":e.toggleable,"px-3 py-1.5":!e.toggleable},"rounded-md","text-surface-700/80","bg-surface-0","transition-none",{"":e.toggleable},{"focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-primary-600 ring-inset":e.toggleable}]}),toggler:({props:e})=>({class:["flex items-center justify-center","relative",{"px-3 py-1.5":e.toggleable},{"rounded-md":e.toggleable},{"text-surface-700 hover:text-surface-900 hover:text-surface-900":e.toggleable},{"hover:text-surface-900":e.toggleable},{"focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-inset focus:ring-primary-600":e.toggleable},{"transition-none cursor-pointer overflow-hidden select-none":e.toggleable}]}),togglerIcon:{class:"mr-2 inline-block"},legendTitle:{class:"flex items-center justify-center leading-none"},content:{class:"p-0"},transition:{enterFromClass:"max-h-0",enterActiveClass:"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]",enterToClass:"max-h-[1000px]",leaveFromClass:"max-h-[1000px]",leaveActiveClass:"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]",leaveToClass:"max-h-0"}},ie={root:{class:["flex flex-col items-start justify-start relative gap-1 w-full shrink-0 overflow-hidden"],"data-wv-name":"fieldwrapper","data-wv-section":"root"},label:({props:e,slots:t})=>({class:[["text-general-900 text-xs flex gap-[2px] font-normal",e.labelClass],{"w-full":t["label-addon"]}],"data-wv-section":"fieldlabel"}),info:{class:"w-2.5 h-2.5 text-grayscale-900"},optionaltext:{class:"text-grayscale-700 text-[10px] font-normal leading-4"}},ne={root:()=>({class:["flex flex-col gap-3 text-general-900 text-[0.75rem] font-medium leading-[16.8px]"],"data-wv-section":"root"}),fields:{class:["grid gap-y-3 gap-x-6"]},"fields-wrapper":{class:["grid gap-y-3 gap-x-6"],"data-wv-section":"fields"},footer:{class:["flex flex-col self-end gap-3"]},"action-buttons":{class:["relative flex flex-col items-end justify-end gap-1"],"data-wv-section":"action-buttons"},"button-wrapper":{class:["flex items-end justify-end gap-1"],"data-wv-section":"button-wrapper"},"cancel-button":{"data-wv-section":"cancel-button"},"clear-button":{"data-wv-section":"clear-button"},"submit-button":{"data-wv-section":"submit-button"},"save-button":{"data-wv-section":"save-button"},staycheckbox:{class:["cursor-pointer flex gap-2 w-max ml-auto items-center justify-end"]},"validator-message":{class:["static w-max transform-none"]}},oe=[{"ring-1 p-[1px]":navigator.userAgent.includes("Firefox"),"ring-[0.5px] p-[0.5px]":!navigator.userAgent.includes("Firefox")},"ring-inset","ring-general-400"],ae={css:`
1
+ var ot=Object.defineProperty;var at=(a,o,l)=>o in a?ot(a,o,{enumerable:!0,configurable:!0,writable:!0,value:l}):a[o]=l;var h=(a,o,l)=>at(a,typeof o!="symbol"?o+"":o,l);System.register([],function(a,o){"use strict";return{execute:function(){const l={accordiontab:{header:({props:e})=>({class:["pt-6 pb-0","mt-6","border-x-0 border-b-0","border border-surface-200",{"select-none pointer-events-none cursor-default opacity-60":e==null?void 0:e.disabled}]}),headerAction:({context:e})=>({class:["font-semibold","leading-7","flex items-center justify-between flex-row-reverse","relative","rounded-md","bg-transparent","text-surface-900","focus:outline-none focus:outline-offset-0 focus-visible:ring-2 focus-visible:ring-primary-600 ring-inset","cursor-pointer no-underline select-none"]}),headerIcon:{class:"inline-block ml-2"},headerTitle:{class:"leading-7"},content:{class:["leading-7","pr-12 pt-2","text-surface-600"]},transition:{enterFromClass:"max-h-0",enterActiveClass:"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]",enterToClass:"max-h-[1000px]",leaveFromClass:"max-h-[1000px]",leaveActiveClass:"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]",leaveToClass:"max-h-0"}}},T={root:({props:e})=>({class:["relative","inline-flex",{"w-full":e.multiple},"text-surface-900",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),container:({props:e,state:t})=>({class:["font-sans sm:text-sm leading-none","flex items-center flex-wrap","gap-1","m-0 list-none","px-3 py-1",{"px-3 py-1.5":!e.multiple,"px-3 py-1":e.multiple},"w-full","appearance-none rounded-md","text-surface-900","bg-surface-0","placeholder:text-surface-400","shadow-sm","focus:outline-none focus:outline-offset-0",{"ring-1 ring-inset ring-surface-300":!t.focused,"ring-2 ring-primary-500":t.focused},"transition duration-200 ease-in-out","cursor-text overflow-hidden"]}),inputtoken:({props:e})=>({class:[{"py-1.5 px-0":!e.multiple,"p-0.5":e.multiple},,"inline-flex flex-auto"]}),input:({props:e})=>({class:["font-sans sm:text-sm leading-none","appearance-none rounded-md",{"rounded-tr-none rounded-br-none":e.dropdown},{"outline-none shadow-none rounded-none":e.multiple},{"w-full":e.multiple},"m-0",{"py-1.5 px-3":!e.multiple,"p-0":e.multiple},"text-surface-700/80",{"bg-surface-0":!e.multiple,"border border-surface-300":!e.multiple,"border-0 bg-transparent":e.multiple},{"focus:outline-none focus:outline-offset-0 focus:ring-inset focus:ring-2 focus:ring-primary-500":!e.multiple},"transition-colors duration-200"]}),token:{class:["inline-flex items-center","py-0.5 px-3","rounded-[1.14rem]","text-surface-700/70","bg-surface-200"]},label:{class:"leading-5"},removeTokenIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]},dropdownbutton:{root:{class:["relative text-sm leading-none","items-center inline-flex text-center align-bottom","rounded-r-md","px-2.5 py-1.5","-ml-[1px]","text-surface-600","bg-surface-100","ring-1 ring-inset ring-surface-300","hover:bg-surface-200","focus:outline-none focus:outline-offset-0 focus:ring-1","focus:ring-primary-500"]}},loadingicon:{class:["text-sm leading-none text-surface-500","absolute top-[50%] right-[0.5rem] -mt-2 animate-spin"]},panel:{class:["absolute top-0 left-0","mt-2","border-0","rounded-md","shadow-md","max-h-[15rem]","overflow-auto","bg-surface-0","text-surface-800/80","ring-1 ring-inset ring-surface-300"]},list:{class:"py-1 list-none m-0"},item:({context:e})=>({class:["sm:text-sm","leading-none",{"font-normal":!e.selected,"font-bold":e.selected},"relative","border-0","rounded-none","m-0","py-2 px-4",{"text-surface-700/80":!e.focused&&!e.selected},{"bg-surface-200 text-surface-700/80":e.focused&&!e.selected},{"bg-primary-500 text-white":e.focused&&e.selected},{"bg-transparent text-surface-700/80":!e.focused&&e.selected},"hover:bg-primary-500 hover:text-white","cursor-pointer","overflow-hidden","whitespace-nowrap"]}),itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800/80","bg-surface-0","cursor-auto"]},emptymessage:{class:["leading-none","sm:text-sm","py-2 px-4","text-surface-800/80","bg-transparent"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},I={root:({props:e,parent:t})=>{var r,s,n;return{class:[{"text-sm":e.size==null||e.size=="normal","text-lg":e.size=="large","text-xl":e.size=="xlarge"},"inline-flex items-center justify-center","shrink-0","relative",{"h-[30px] w-[30px]":e.size==null||e.size=="normal","w-12 h-12":e.size=="large","w-16 h-16":e.size=="xlarge"},{"-ml-4":((r=t.instance.$style)==null?void 0:r.name)=="avatargroup"},{"rounded-lg":e.shape=="square","rounded-full":e.shape=="circle"},{"border-[0.5px]":((s=t.instance.$style)==null?void 0:s.name)=="avatargroup"},"bg-general-300",{"border-gray-100":((n=t.instance.$style)==null?void 0:n.name)=="avatargroup"},"text-white"]}},image:{class:"h-full w-full rounded-full"}},P={root:{class:"flex items-center ml-4","data-wv-name":"usergroup","data-wv-section":"root"}},u={root:({props:e})=>({class:["inline-flex items-center","py-1 px-2","rounded-[50px]",{"!text-general-400 !bg-general-100":e.disabled,"text-success-800 bg-success-100":e.severity=="success","text-primary-800 bg-primary-200":e.severity==null||e.severity=="primary","text-grayscale-900 bg-grayscale-500":e.severity=="dark","text-warning-600 bg-warning-100":e.severity=="warning","text-danger-700 bg-danger-200":e.severity=="danger"}],"data-wv-name":"badge","data-wv-section":"root"}),input:({props:e,context:t})=>({class:["text-nowrap whitespace-nowrap font-normal text-xs leading-4 tracking-[0.2488px]",{"caret-surface-700":e.editable,"cursor-default":!!t.badgeTooltip}]}),removebutton:({props:e})=>({class:["!p-0 !w-3 !h-3 ml-1",{"!text-primary-800":!e.badgeSeverity||e.badgeSeverity==="primary","!text-success-800":e.badgeSeverity==="success","!text-danger-700":e.badgeSeverity==="danger","!text-warning-600":e.badgeSeverity==="warning","!text-grayscale-900":e.badgeSeverity==="dark"},{"text-general-400":e.disabled}],"icon-class":"w-3 h-3","data-wv-section":"removebutton"})},S={root:({context:e})=>({class:["font-medium","text-xs leading-6 font-sans","flex items-center justify-center","text-center","absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 origin-top-right","m-0",{"p-0":e.nogutter||e.dot,"p-1":!e.nogutter&&!e.dot,"min-w-[0.5rem] h-2":e.dot,"min-w-[1rem] h-4":!e.dot},{"rounded-full":e.nogutter||e.dot,"rounded-[10px]":!e.nogutter&&!e.dot},"text-white","ring-1 ring-white",{"bg-primary-500":!e.info&&!e.success&&!e.warning&&!e.danger&&!e.help&&!e.secondary,"bg-surface-500":e.secondary,"bg-green-500":e.success,"bg-blue-500":e.info,"bg-orange-500":e.warning,"bg-purple-500":e.help,"bg-red-500":e.danger}]})},F={root:({props:e,context:t})=>({class:["relative","items-center inline-flex text-center align-bottom justify-center w-max",{"flex-col":(e.iconPos==="top"||e.iconPos==="bottom")&&e.label},e.iconPos,{"flex-row-reverse":e.iconPos==="right"},"leading-none font-normal rounded-[50px]",{"!text-xs px-3 py-[5px]":e.size===null&&e.label,"!text-xs !p-0.5":e.size==="small","text-xl py-3 px-4":e.size==="large"},{"gap-1":e.label!==null},{"p-[7px] w-max":e.label===null&&e.icon&&e.size===null},{"!p-0.5 !h-4 !w-4":e.label===null&&e.icon&&e.size==="small"},"ring-inset ring-1 ",{"shadow-lg":e.raised},{"text-grayscale-900-600 bg-transparent ring-transparent":e.link},{"text-white bg-gray-500 ring-1 ring-gray-500":e.plain&&!e.outlined&&!e.text},{"text-primary-400":e.plain&&e.text},{"text-primary-400 ring-1 ring-gray-500":e.plain&&e.outlined},{"bg-transparent ring-transparent":e.text&&!e.plain},{"bg-transparent ring-1":e.outlined&&!e.plain},{"text-white":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain,"bg-grayscale-900":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-grayscale-900":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain},{"text-grayscale-900":e.text&&e.severity==="secondary"&&!e.plain},{"text-grayscale-900 ring-1 ring-grayscale-900":e.outlined&&e.severity==="secondary"&&!e.plain},{"text-white":e.severity===null&&!e.text&&!e.outlined&&!e.plain,"bg-primary-400":e.severity===null&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-primary-400":e.severity===null&&!e.text&&!e.outlined&&!e.plain},{"text-primary-400":e.text&&e.severity===null&&!e.plain},{"text-primary-400 ring-1 ring-primary-400 hover:bg-primary-400/20":e.outlined&&e.severity===null&&!e.plain},{"text-white":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain,"bg-success-500":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-success-500":e.severity==="success"&&!e.text&&!e.outlined&&!e.plain},{"text-success-500":e.text&&e.severity==="success"&&!e.plain},{"text-success-500 ring-1 ring-success-500 hover:bg-success-300/20":e.outlined&&e.severity==="success"&&!e.plain},{"text-white":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain,"bg-blue-500":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-blue-500":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain},{"text-blue-500":e.text&&e.severity==="info"&&!e.plain},{"text-blue-500 ring-1 ring-blue-500 hover:bg-blue-300/20 ":e.outlined&&e.severity==="info"&&!e.plain},{"text-white":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain,"bg-warning-500":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-warning-500":e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain},{"text-warning-500":e.text&&e.severity==="warning"&&!e.plain},{"text-warning-500 ring-1 ring-warning-500 hover:bg-warning-300/20":e.outlined&&e.severity==="warning"&&!e.plain},{"text-white":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain,"bg-purple-500":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-purple-500":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain},{"text-purple-500":e.text&&e.severity==="help"&&!e.plain},{"text-purple-500 ring-1 ring-purple-500 hover:bg-purple-300/20":e.outlined&&e.severity==="help"&&!e.plain},{"text-white":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain,"bg-danger-500":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-danger-500":e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain},{"text-danger-500":e.text&&e.severity==="danger"&&!e.plain},{"text-danger-500 ring-1 ring-danger-500 hover:bg-danger-300/20":e.outlined&&e.severity==="danger"&&!e.plain},{"text-white":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain,"bg-surface-900":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain,"ring-1 ring-surface-900":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain},{"text-surface-900":e.text&&e.severity==="contrast"&&!e.plain},{"text-surface-900 ring-1 ring-surface-900":e.outlined&&e.severity==="contrast"&&!e.plain},"focus:outline-none focus:outline-offset-0",{"focus:ring-grayscale-900":e.link},{"hover:bg-gray-600 hover:ring-gray-600":e.plain&&!e.outlined&&!e.text},{"hover:bg-primary-400/20":e.plain&&(e.text||e.outlined)},{"hover:bg-grayscale-900/[8%] active:bg-grayscale-900/[12%] ":e.severity==="secondary","hover:shadow-hover active:!shadow-none hover:!bg-grayscale-900/90 active:bg-grayscale-900/90 hover:ring-0":!e.link&&e.severity==="secondary"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-primary-400/[8%] active:bg-primary-400/[12%] ":e.severity===null,"hover:shadow-hover active:!shadow-none hover:!bg-primary-400/90 active:bg-primary-400/90 hover:ring-0":!e.link&&e.severity===null&&!e.text&&!e.outlined&&!t.disabled&&!e.plain},{"hover:bg-success-500/[8%] active:bg-success-500/[12%] ":e.severity==="success","hover:shadow-hover active:!shadow-none hover:!bg-success-500/90 active:bg-success-500/90 hover:ring-0":!e.link&&e.severity==="success"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-blue-600 hover:ring-blue-600":e.severity==="info"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-blue-400/50":e.severity==="info"},{"hover:bg-blue-300/20":(e.text||e.outlined)&&e.severity==="info"&&!e.plain},{"hover:bg-warning-500/[8%] active:bg-warning-500/[12%] ":e.severity==="warning","hover:shadow-hover active:!shadow-none hover:!bg-warning-500/90 active:bg-warning-500/90 hover:ring-0":!e.link&&e.severity==="warning"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-warning-300/20":(e.text||e.outlined)&&e.severity==="warning"&&!e.plain},{"hover:bg-purple-600 hover:ring-purple-600":e.severity==="help"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-purple-400/50":e.severity==="help"},{"hover:bg-purple-300/20":(e.text||e.outlined)&&e.severity==="help"&&!e.plain},{"hover:bg-danger-500/[8%] active:bg-danger-500/[12%] ":e.severity==="danger","hover:shadow-hover active:!shadow-none hover:!bg-danger-500/90 active:bg-danger-500/90 hover:ring-0":!e.link&&e.severity==="danger"&&!e.text&&!e.outlined&&!e.plain},{"hover:bg-danger-300/20":(e.text||e.outlined)&&e.severity==="danger"&&!e.plain},{"hover:bg-surface-800 hover:ring-surface-800":e.severity==="contrast"&&!e.text&&!e.outlined&&!e.plain},{"focus:ring-primary-400":e.severity==="contrast"},{"hover:bg-surface-900/10":(e.text||e.outlined)&&e.severity==="contrast"&&!e.plain},{"pointer-events-none cursor-default":t.disabled,"!text-general-300":t.disabled&&(e.outlined||e.text),"!ring-general-300":t.disabled&&e.outlined,"!bg-general-300 !text-white !ring-0":t.disabled&&!e.outlined&&!e.text},"transition duration-200 ease-in-out","cursor-pointer overflow-hidden select-none","[&>[data-pc-name=badge]]:min-w-4 [&>[data-pc-name=badge]]:h-4 [&>[data-pc-name=badge]]:leading-4"]}),label:({props:e})=>({class:["duration-200","font-normal text-xs",e.label?"leading-5":"leading-4",{"hover:underline":e.link},{"flex-1":e.label!==null,"invisible w-0":e.label==null}]}),icon:({props:e})=>({class:["shrink-0",{"!h-3 !w-3":e.size==="small"}]}),loadingIcon:({props:e})=>({class:["h-4 w-4","mx-0",{"mr-2":e.iconPos==="left"&&e.label!=null,"ml-2 order-1":e.iconPos==="right"&&e.label!=null,"mb-2":e.iconPos==="top"&&e.label!=null,"mt-2":e.iconPos==="bottom"&&e.label!=null},"animate-spin"]}),badge:({props:e})=>({class:[{"ml-2 w-4 h-4 leading-none flex items-center justify-center":e.badge}]})},N={root:({props:e})=>({class:["focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm","flex gap-1 items-center",{"px-3":e.label}],"data-wv-name":"buttondownload","data-wv-section":"root"}),icon:{class:"text-2xl","data-wv-section":"icon",severity:"secondary"}},V={root:()=>({class:"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm","data-wv-name":"buttonfilter","data-wv-section":"root"}),icon:()=>({class:"text-2xl",severity:"secondary","data-wv-section":"icon"})},$={buttontrigger:{root:({context:e})=>({class:[{"w-max":!e.showSearchInput},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"buttontrigger"}),icon:{class:"w-6 h-6 text-grayscale-900 shrink-0"}},collapsebutton:{root:({context:e})=>({class:[{"w-max":!e.showSearchInput},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"collapsebutton"}),icon:{class:"w-6 h-6 text-grayscale-900 shrink-0"}},resetbutton:{root:({query:e})=>({class:[{invisible:!e},"focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm"],"data-wv-section":"resetbutton"}),icon:{class:["text-2xl shrink-0"]}},hiddensubmit:{class:"hidden"},form:({context:e})=>({class:[{show:e.showSearchInput},"grid grid-cols-[max-content,auto,max-content] items-center gap-0.5 max-w-[224px] h-6","border-b border-primary-100"],"data-wv-section":"form"}),inputtext:{class:"!h-max"}},B={root:["w-max"],button:{class:["!rounded-ee-none !rounded-se-none !border-e-white !border-e-[1px]"],"data-wv-section":"button-split"},menuButton:"!rounded-ss-none !rounded-es-none"},y=navigator.userAgent.includes("Chrome"),E={root:({props:e})=>({class:["inline-flex flex-auto justify-between items-center gap-[5px]","rounded","m-0 px-3 py-1",{"select-none pointer-events-none cursor-default":e.disabled}]}),input:({props:e})=>({class:["w-full h-full peer","text-xs font-normal placeholder:font-normal",{"text-grayscale-900":!e.disabled,"text-general-200":e.disabled},"placeholder:text-general-200","appearance-none","transition-colors","duration-200","outline-none focus:ring-primary-400"]}),inputicon:{class:["w-4 h-4 text-grayscale-900 peer-disabled:text-general-300"]},dropdownbutton:{root:{class:["relative text-sm","items-center inline-flex text-center align-bottom","rounded-r-md","px-2.5 py-1.5 leading-none","text-surface-600","bg-surface-100","ring-1 ring-inset ring-surface-300","hover:bg-surface-200","focus:outline-none focus:outline-offset-0 focus:ring-1","focus:ring-primary-400"]}},panel:()=>({class:["datepicker-panel","flex flex-col justify-start items-center","h-max p-6 gap-2.5","bg-white w-[272px] !min-w-[272px]","rounded-lg","bg-white shadow-panel"]}),datepickerMask:{class:["fixed top-0 left-0 w-full h-full","flex items-center justify-center","bg-black bg-opacity-90"]},header:({props:e,state:t})=>{var r;return{class:["h-6 w-full",{hidden:!((r=e.dateFormat)!=null&&r.toString().toLowerCase().includes("y"))&&t.currentView==="month"},"text-xs font-normal","flex justify-between items-center gap-1","rounded-t-md","text-grayscale-900","bg-white"]}},previousbutton:()=>({class:["relative","inline-flex items-center justify-center","order-1","p-1.5 m-0","text-grayscale-900","border-0 ","bg-transparent","hover:bg-general-50","cursor-pointer overflow-hidden"]}),title:()=>({class:["leading-6","my-0","order-2"]}),monthTitle:{class:["text-xs font-normal","text-grayscale-900","bg-white","transition duration-200","mr-1","hover:text-primary-400","cursor-pointer"]},yearTitle:({props:e})=>{var t;return{class:[{hidden:!((t=e.dateFormat)!=null&&t.toString().toLowerCase().includes("y"))},"text-xs font-normal","text-grayscale-900","bg-white","transition duration-200","m-0 mr-1","hover:text-primary-600","cursor-pointer"]}},nextbutton:()=>({class:["relative","inline-flex items-center justify-center order-3","p-1.5 m-0","text-grayscale-900","border-0 ","bg-transparent","hover:bg-general-50","cursor-pointer overflow-hidden"]}),table:{class:["block w-[224px]","[&_tbody]:block [&_tbody]:w-[224px]","m-0","[&_th]:text-xs [&_td]:text-xs","[&_th]:font-normal [&_td]:font-normal","[&_th]:text-grayscale-900 [&_td]:text-grayscale-900",'[&_[data-p-other-month="true"]]:invisible']},tableheadercell:{class:["px-2 py-[5.4px]"]},tablebodyrow:{class:[]},weekheader:{class:["leading-6 text-sm font-normal","text-surface-600/70","opacity-40 cursor-default","mb-2"]},weeknumber:{class:["text-surface-600/70 font-normal","opacity-40 cursor-default"]},weekday:{class:[]},day:{class:["p-0"]},weeklabelcontainer:({context:e})=>({class:["flex items-center justify-center","mx-auto","w-10 h-10","","border-transparent border",{"text-surface-600/70 bg-transparent":!e.selected&&!e.disabled,"text-primary-400 ":e.selected&&!e.disabled},"focus:outline-none focus:outline-offset-0 focus:ring focus:ring-primary-400/50",{"hover:bg-surface-100":!e.disabled},{"opacity-40 cursor-default":e.disabled,"cursor-pointer":!e.disabled}]}),daylabel:({context:e})=>({class:[{flex:!e.date.otherMonth},{hidden:e.date.otherMonth},"items-center justify-center","w-8 h-8",{"bg-primary-100":e.date.today&&!e.selected,"text-white":e.selected,"rounded-none bg-primary-400":e.selected&&!(e.firstSelected||e.lastSelected),"rounded-l-full bg-primary-1000":e.firstSelected,"rounded-r-full bg-primary-1000":e.lastSelected},{"!rounded-full":!e.selected},"focus:outline-none focus-visible:outline-none",{"hover:bg-primary-400/90":e.selected,"hover:!bg-primary-1000/90":e.lastSelected||e.firstSelected,"hover:bg-primary-50":!e.selected&&!e.date.today,"hover:bg-primary-100/90":e.date.today},{"opacity-40 cursor-default":e.disabled,"cursor-pointer":!e.disabled}]}),monthpicker:{class:["w-full grid grid-cols-2 grid-rows-5 gap-y-1 gap-x-0 mt-1"]},month:({context:e})=>({class:["inline-flex items-center justify-center","w-full","px-2.5 py-1.5","text-xs leading-tight","!rounded-[20px]",{"text-grayscale-900 bg-transparent":!e.selected&&!e.disabled,"bg-primary-400 text-white":e.selected&&!e.disabled,"cursor-default text-general-200":e.disabled},{"hover:bg-primary-50":!e.selected&&!e.disabled,"hover:bg-primary-400/90":e.selected&&!e.disabled},"cursor-pointer"]}),yearpicker:{class:["w-full grid grid-cols-2 grid-rows-5 gap-y-1 gap-x-0 mt-1"]},year:({context:e})=>({class:["inline-flex items-center justify-center","w-full","px-2.5 py-1.5","text-xs leading-tight","!rounded-[20px]",{"text-grayscale-900 bg-transparent":!e.selected&&!e.disabled,"bg-primary-400 text-white":e.selected&&!e.disabled,"cursor-default text-general-200":e.disabled},{"hover:bg-primary-50":!e.selected&&!e.disabled,"hover:bg-primary-400/90":e.selected&&!e.disabled},"cursor-pointer"]}),timepicker:{class:["flex","justify-center items-center","gap-2","p-1.5"]},separatorcontainer:{class:["flex","items-center","flex-col"]},separator:{class:["text-xs font-normal"]},hourpicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},minutepicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},secondPicker:{class:["flex","items-center","flex-col","gap-3","text-xs"]},timepickerlabel:{class:["w-[39px] h-[26px] flex justify-center items-center ring-general-200 rounded",{"ring-1":!y,"ring-[0.5px]":y}]},incrementbutton:{class:["relative","inline-flex items-center justify-center","p-0.5 m-0","!h-6 !w-6","text-grayscale-900","border-0","bg-transparent","cursor-pointer overflow-hidden"]},incrementicon:{class:["w-5 h-5 shrink-0"]},decrementicon:{class:["w-5 h-5 shrink-0"]},decrementbutton:{class:["relative","inline-flex items-center justify-center","p-0.5 m-0","!h-6 !w-6","text-grayscale-900","border-0","bg-transparent","cursor-pointer overflow-hidden"]},groupcontainer:{class:["flex w-full"]},container:{class:["text-grayscale-900 text-xs flex flex-col gap-1 w-full"]},group:{class:[]},buttonbar:{class:["flex justify-between items-center","pt-2.5 pb-1.5 px-0","border-t border-surface-200"]},todaybutton:{root:{class:["inline-flex items-center justify-center","px-2.5 py-1.5 text-sm leading-none","","bg-transparent border-transparent","text-primary-400","transition-colors duration-200 ease-in-out","cursor-pointer"]}},clearbutton:{root:{class:["inline-flex items-center justify-center","px-2.5 py-1.5 text-sm leading-none","bg-transparent border-transparent","text-primary-400","transition-colors duration-200 ease-in-out","focus:outline-none focus:outline-offset-0 focus:ring-2 ring-inset","focus:ring-primary-400","hover:bg-primary-300/20","cursor-pointer"]}},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},G={root:{class:["rounded-lg p-6","flex flex-col gap-y-3","bg-white","text-grayscale-900"]},header:{class:[""]},body:{class:"flex flex-col gap-3"},title:{class:"text-2xl font-bold"},subtitle:{class:["text-sm font-normal"]},content:{class:"flex flex-col gap-3 text-xs text-grayscale-900"},footer:{class:["inline-flex gap-1 text-xs items-center"]}},U={root:{class:["flex flex-col"]},content:{class:["flex flex-col overflow-auto"]},container:({props:e})=>({class:["flex",{"flex-row":e.orientation!=="vertical","flex-col":e.orientation=="vertical"}]}),previousbutton:{class:["flex justify-center items-center self-center","overflow-hidden w-8 h-8","mx-2","rounded-full","border-0 bg-transparent","text-surface-600","transition duration-200 ease-in-out"]},nextbutton:{class:["flex justify-center items-center self-center","overflow-hidden w-8 h-8","mx-2","rounded-full","border-0 bg-transparent","text-surface-600","transition duration-200 ease-in-out"]},itemscontent:{class:[]},itemscontainer:({props:e})=>({class:[]}),item:({props:e})=>({class:[]}),indicators:{class:["flex flex-row justify-center flex-wrap gap-1"]},indicator:{class:[]},indicatorbutton:({context:e})=>({class:["w-1.5 h-1.5 rounded-full","transition duration-200","focus:outline-none focus:outline-offset-0 focus:ring focus:ring-primary-400/50",{"bg-surface-200 hover:bg-surface-300":!e.highlighted,"bg-primary-500 hover:bg-primary-600":e.highlighted}]})},L={root:({props:e,state:t})=>({class:["inline-flex","relative","w-full md:w-56","rounded-md","shadow-sm","bg-surface-0",{"ring-1 ring-inset ring-surface-300":!t.focused,"ring-2 ring-inset ring-primary-500":t.focused},"cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),label:({props:e})=>({class:["font-sans","leading-6","sm:text-sm"," flex flex-auto","w-[1%]","py-1.5 px-3","rounded-none","bg-transparent","border-0",{"text-surface-800/80":e.modelValue,"text-surface-400":!e.modelValue},"placeholder:text-surface-400","transition","duration-200","focus:outline-none focus:shadow-none","relative","cursor-pointer","overflow-hidden overflow-ellipsis","whitespace-nowrap","appearance-none"]}),dropdownbutton:{class:["sm:text-sm","flex items-center justify-center","shrink-0","bg-transparent","text-surface-500","w-12","rounded-tr-md","rounded-br-md"]},panel:{class:["absolute top-0 left-0","mt-2","border-0","rounded-md","shadow-md","bg-surface-0","text-surface-800/80","ring-1 ring-inset ring-surface-300"]},wrapper:{class:["max-h-[200px]","overflow-auto"]},list:{class:"py-1 list-none mx-1.5"},item:({context:e})=>({class:["sm:text-sm","leading-none","border-0","rounded-md","m-0",{"text-surface-500/70":!e.focused&&!e.active,"text-surface-500/70 bg-surface-200":e.focused&&!e.active,"text-surface-900/80 bg-surface-50":e.focused&&e.active,"text-surface-900/80 bg-surface-50":!e.focused&&e.active},{"hover:bg-surface-50":!e.active,"hover:bg-surface-100 text-surface-900/80":e.active},"transition-shadow","duration-200","cursor-pointer","overflow-hidden","whitespace-nowrap"]}),content:{class:["relative","flex","items-center","py-2 px-4","no-underline","overflow-hidden","cursor-pointer","select-none"]},groupicon:{class:["ml-auto"]},sublist:{class:["w-full sm:w-48","p-1.5","m-0","list-none","shadow-none sm:shadow-md","border-0","static sm:absolute","z-10","bg-surface-0"]},separator:{class:"border-t border-surface-200 my-1"},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},R={button:e=>({class:[e,"w-max"],"data-wv-section":"changelog-button"}),icon:{class:["text-2xl"]},dialog:{class:"w-[800px] !z-50","data-wv-name":"changelog-dialog"},root:{class:"flex flex-col gap-2 justify-between"},header:{class:"flex justify-end gap-1 items-center","data-wv-section":"changelog-dialog-header"},buttonsearch:{"data-wv-section":"changelog-dialog-button-search"},buttonfilter:{"data-wv-section":"changelog-dialog-button-filter"},buttondownload:{"data-wv-section":"changelog-dialog-button-download"}},f={root:{class:["relative","w-max items-center cursor-pointer","shrink-0","inline-flex","align-bottom","transition-all","duration-200"]},box:({props:e,context:t})=>({class:["flex","items-center","justify-center","w-4 h-4","rounded","border-2","text-white",{"border-general-300":e.disabled,"border-grayscale-900":!e.disabled,"bg-white":!(t.checked||t.partialChecked)&&!e.disabled,"bg-general-50":!(t.checked||t.partialChecked)&&e.disabled,"bg-grayscale-900":(t.checked||t.partialChecked)&&!e.disabled,"bg-general-300":(t.checked||t.partialChecked)&&e.disabled},{"ring-8 ring-primary-400/[12%]":!e.disabled&&t.focused},{"peer-focus-visible:ring-8 peer-focus-visible:ring-offset-0 peer-focus-visible:ring-primary-400/[8%]":!e.disabled,"peer-active:ring-8 peer-active:ring-offset-0 peer-active:ring-primary-400/[12%]":!e.disabled,"cursor-default bg-general-50 border-general-200":e.disabled&&!(t.checked||t.partialChecked),"bg-general-200 border-general-200":e.disabled&&(t.checked||t.partialChecked)},{"[&_i]:bg-transparent":e.disabled&&!(t.checked||t.partialChecked),"[&_i]:text-white":t.checked||t.partialChecked,"[&_i]:text-transparent":!(t.checked||t.partialChecked)},"transition-all","duration-200"]}),input:{class:["peer","w-4","h-full","absolute","top-0 left-0","z-10","p-0","m-0","rounded","border","opacity-0","rounded-md","outline-none","appareance-none","transition-all","duration-200","cursor-pointer"]},icon:{class:["text-normal","w-3","h-3","transition-all","duration-200"]},label:({props:e})=>({class:["flex items-start gap-px select-none text-xs tracking-[0.02em] leading-none","text-grayscale-900",e.labelClass]}),tooltipicon:{class:"text-grayscale-900 w-[10px] h-[10px]"}},M={root:{class:["inline-flex items-center","px-2 py-0.5","rounded-[1.14rem]","text-surface-700","bg-surface-200"]},label:{class:"text-xs leading-6 mx-0"},icon:{class:"leading-6 mr-2"},image:{class:["w-6 h-6 mr-2","rounded-full"]},removeIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]}},O={root:({props:e})=>({class:["flex",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),container:({state:e})=>({class:["font-sans sm:text-sm leading-none","flex items-center flex-wrap gap-1","m-0 py-1 px-3","w-full","list-none","rounded-md","text-surface-900","bg-surface-0","placeholder:text-surface-400","shadow-sm",{"ring-1 ring-inset ring-surface-300":!e.focused,"ring-2 ring-primary-500":e.focused},"transition-colors duration-200","cursor-text overflow-hidden","appearance-none"]}),inputtoken:{class:["py-0.5 px-0","inline-flex flex-auto"]},input:{class:["font-sans sm:text-sm leading-none","w-full","p-0 m-0","appearance-none rounded-none","border-0 outline-none","text-surface-700/80","bg-transparent","placeholder:text-surface-400"]},token:{class:["inline-flex items-center","py-0.5 px-3","rounded-[1.14rem]","text-surface-700/70","bg-surface-200"]},label:{class:"leading-5"},removeTokenIcon:{class:["rounded-md leading-6","ml-2","w-4 h-4","transition duration-200 ease-in-out","cursor-pointer"]}},W={menustart:{class:"border-b-[0.5px] border-solid border-grayscale-900"},menuitem:({context:e,props:t})=>({class:["flex gap-1 py-[7px] px-4 transition-transform",{"!pl-0.5 !pr-2 !py-[4.5px]":t.type==="flat"},{"cursor-grab [&_label]:cursor-grab ":e.dragable,"cursor-default [&_*]:cursor-default":!e.dragable},"[&:has([selectable=false])]:!cursor-not-allowed","[&:has([selectable=false])]:hover:!bg-transparent"]}),dragicon:({context:e})=>({class:["!cursor-move w-[18px] h-[18px] !text-general-300 shrink-0",{invisible:e.dragable===!1}]})},D={copybutton:{class:"peer-hover:visible scale-125 !absolute top-2 right-2 z-50"},body:{class:"relative rounded text-xs font-normal peer text-grayscale-900 bg-primary-50 overflow-x-auto overflow-y-hidden tracking-normal"},textarea:{class:["whitespace-nowrap overflow-x-auto pr-1.5 mt-1","absolute bg-transparent text-transparent z-30 leading-5 w-full h-full border-0 outline-none !font-poppins resize-none px-1.5","caret-primary-500"]},linenumber:{class:["font-poppins tracking-0.5px]","px-2 bg-primary-100 sticky left-0 text-right select-none"]}},H={root:({props:e})=>({class:["inline-block",{"opacity-60 select-none pointer-events-none cursor-default":e.disabled}]}),input:{class:["font-sans text-base ","m-0","rounded","w-4","h-4","bg-surface-0","border border-surface-300","hover:border-primary-500","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-primary-500","transition-colors duration-200","cursor-default","select-none"]},panel:({props:e})=>({class:[{"relative h-48 w-52":e.inline,"absolute h-48 w-52":!e.inline},"shadow-md","border-0","rounded-md","bg-surface-800","ring-1 ring-inset ring-surface-900"]}),selector:{class:["absolute top-2 left-2","h-44 w-40"]},color:{class:["h-44 w-40"],style:"background: linear-gradient(to top, #000 0%, rgb(0 0 0 / 0) 100%), linear-gradient(to right, #fff 0%, rgb(255 255 255 / 0) 100%)"},colorhandle:{class:["absolute","rounded-full border border-solid","h-3 w-3","border-white","cursor-pointer opacity-85"]},hue:{class:["absolute top-2 left-44","h-44 w-6","opacity-85"],style:"background: linear-gradient(0deg, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red)"},huehandle:{class:["absolute left-0 -ml-1","h-2 w-8","border-solid border-2 rounded","border-white","opacity-85"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},K={root:{class:["rounded-lg","shadow-xl","border-0","z-40 transform origin-center","mt-3 absolute left-0 top-0","","bg-surface-0","text-surface-700/80","before:absolute before:w-0 before:-top-3 before:h-0 before:border-transparent before:border-solid before:ml-6 before:border-x-[0.75rem] before:border-b-[0.75rem] before:border-t-0 before:border-b-surface-0"]},content:{class:["text-sm","px-6","py-3","bg-surface-0","text-surface-600","overflow-y-auto"]},icon:{class:"text-xl mr-2"},footer:{class:["flex items-center justify-end","shrink-0","text-right","gap-3","px-6","py-3","border-t-0","rounded-b-lg","bg-surface-50","text-surface-700/80"]},rejectbutton:{root:{class:["relative","items-center inline-flex text-center align-bottom justify-center","px-2.5 py-1.5 min-w-[2rem]","text-sm","rounded-md","text-primary-500","hover:bg-primary-300/20","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-inset","focus:ring-primary-500"]}},acceptbutton:{root:{class:["relative","items-center inline-flex text-center align-bottom justify-center","px-2.5 py-1.5 min-w-[2rem]","text-sm","rounded-md","text-white","bg-primary-500","ring-1 ring-primary-500","hover:bg-primary-600 hover:border-primary-600","focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-offset-current","focus:ring-primary-500"]}},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},Y={root:{class:["min-w-[12rem]","rounded-md","shadow-md","p-1.5","bg-surface-0","text-surface-700/80"]},menu:{class:["list-none","m-0","p-0","outline-none"]},menuitem:{class:"relative"},content:({context:e})=>({class:["rounded-md",{"text-surface-500/70":!e.focused&&!e.active,"text-surface-500/70 bg-surface-200":e.focused&&!e.active,"text-surface-900/80 bg-surface-50":!e.focused&&e.active},{"hover:bg-surface-50":!e.active,"hover:bg-surface-100 text-surface-900/80":e.active},"transition-shadow","duration-200"]}),action:{class:["relative","font-semibold","flex","items-center","py-2","px-3","no-underline","overflow-hidden","cursor-pointer","select-none"]},icon:{class:["mr-2","leading-6","text-sm"]},label:{class:["leading-6","text-sm"]},submenu:({props:e})=>({class:["w-full sm:w-48","p-1.5","m-0","list-none","shadow-md","rounded-md","static sm:absolute","z-10",{"sm:absolute sm:left-full sm:top-0":e.level>1},"bg-surface-0"]}),submenuicon:{class:["ml-auto"]},separator:{class:"border-t border-surface-200 my-1"},transition:{enterFromClass:"opacity-0",enterActiveClass:"transition-opacity duration-250"}},q={root:{"data-wv-name":"datatable","data-wv-section":"root",class:"relative"},tablewrapper:{"data-wv-section":"tablewrapper"},scrollheightwrapper:({props:e})=>({style:`max-height: ${e.scrollHeight??"none"}`,"data-wv-section":"scrollheightwrapper"}),table:{class:["min-w-max w-full h-1","!border-separate !border-spacing-0 border !border-solid !border-primary-100 !border-t-0 !border-l-0 !border-r-0 !rounded-lg"],"data-wv-section":"table"},tbody:{class:["[&_tr:last-of-type>td]:!border-b-0","[&_tr:last-of-type>td:last-child]:!rounded-br-lg","[&_tr:last-of-type>td:first-child]:!rounded-bl-lg"]},thead:{class:["sticky top-0 z-50"]},headerrow:{class:["border-b border-primary-100"]},bodyrow:({context:e,props:t})=>({class:["border-b border-general-100 group",{"!h-[35px]":t.rowHeight==="fixed"},"text-general-800 text-xs font-normal",{"bg-transparent":!e.selected,"bg-primary-100":e.selected},{"focus:outline-none focus:outline-offset-0":t.selectionType,"hover:!bg-primary-50":!e.highlighted,"hover:!bg-warning-300 !bg-warning-200":e.highlighted},{"transition duration-200":t.selectionType&&!e.selected||t.rowHover},"px-4 transition-transform",{"select-none":e.dragging,"select-auto":!e.dragging},{"!cursor-grab [&_label]:!cursor-grab":e.draggable},{"cursor-pointer":t.selectionType!=="none"&&!e.disabled}]}),headercell:({context:e})=>({class:["text-xs font-semibold text-white p-2 cursor-pointer",{"text-center":e.isParentHeader,"text-left":!e.isParentHeader},{"bg-primary-400":!e.sorted||!e.sortable},{"bg-primary-500":e.sorted},{"sticky right-0 hover:bg-primary-500":e.customColumn,"!cursor-default":!e.customColumn&&!e.sortable},"border-0 !border-b border-solid","border-primary-100"],"data-wv-section":"headercell"}),headercellcontent:{class:["inline-flex gap-2 items-center leading-[18px]"],"data-wv-section":"headercellcontent"},headercellreorderable:{class:["w-[35px] !py-1"],"data-wv-section":"headercellreorderable"},draggableicon:{class:"w-[18px] h-[18px] !p-0 !m-0 !cursor-grab [&_label]:!cursor-grab"},headercheckbox:({context:e})=>({class:[{"[&_[data-wv-section=box]]:!border-white [&_[data-wv-section=box]]:!bg-transparent":!e.isSelectedAll}],"data-wv-section":"headercheckbox"}),headercellcheckbox:{class:"w-[35px] text-center","data-wv-section":"headercellcheckbox"},headertoggler:{class:["w-[40px] text-center !py-1"],"data-wv-section":"headertoggler"},columnvisibilityicon:{class:["!w-4 !h-4 !mx-auto"],info:"Visibilitas Kolom"},headertogglerbutton:({context:e})=>({class:["!p-0 !m-0 !w-auto !h-auto",{"rotate-180":e.isExpandedAll},{"rotate-0":!e.isExpandedAll}],"icon-class":"w-6 h-6 text-white","data-wv-section":"headertogglerbutton"}),rowcheckbox:{class:"","data-wv-section":"rowcheckbox"},bodycell:{class:["text-xs px-2 py-0.5","border-0 !border-b !border-solid border-primary-100","justify-items-start","[&:has([data-wv-section=rowcheckbox])]:text-center","[&:has([data-wv-section=rowcheckbox])]:text-center"],"data-wv-section":"bodycell"},multirowcontainer:({props:e})=>({class:["h-full w-full grid grid-cols-1",`grid-rows-${e.attributes.length}`]}),multirow:({context:e})=>({class:["min-h-[35px] h-full flex items-center px-2",{"border-t border-primary-100 border-solid":!e.firstIndex}]}),rowtogglerbutton:({context:e})=>({class:["!p-0 !m-0 !w-auto !h-auto",{"rotate-180":e.isRowExpanded},{"rotate-0":!e.isRowExpanded}],"icon-class":"w-6 h-6","data-wv-section":"rowtogglerbutton"}),childrowheader:{class:"font-semibold text-xs","data-wv-section":"childrowheader"},celleditableelement:{class:["focus:px-2","w-full inline-block py-2 focus:outline-grayscale-600 focus:outline-1"],"data-wv-section":"celleditableelement"},rowsingleactioncell:({props:e,context:t})=>({class:["w-[35px]",{"sticky right-0 bg-white":e.useOption,"!bg-primary-100":t.selected,"group-hover:!bg-primary-50":!t.highlighted,"group-hover:!bg-warning-300 !bg-warning-200":t.highlighted}],"data-wv-section":"rowsingleactioncell"}),singleactionwrapper:{class:["relative w-full h-full flex items-center justify-center"],"data-wv-section":"singleactionwrapper"},singleactionbutton:({props:e})=>({class:[{"pointer-events-none !border-general-100 [&>i]:text-general-200":e.disableAllRows},{"pointer-events-auto":!e.disableAllRows}],severity:"secondary",tooltip:"Aksi","data-wv-section":"singleactionbutton"}),nodatalottiewrapper:{class:"w-full p-4 flex items-center justify-center absolute top-[35px] inset-x-0 pointer-events-none","data-wv-section":"nodatalottiewrapper"},invisiblelottiewrapper:{class:"p-4 invisible"},nodatalottie:{class:"w-44 h-auto","data-wv-section":"nodatalottie"},loadingtablewrapper:{class:"w-full p-4 flex items-center justify-center absolute top-[35px] inset-x-0 pointer-events-none","data-wv-section":"loadingtablewrapper"},loadingtablelottie:{class:"w-20 h-auto","data-wv-section":"loadingtablelottie"},paginator:({context:e})=>({"current-page-report-template":e.totalRecords?"Menampilkan {first} - {last} dari {totalRecords}":"Tidak ditemukan data",class:"",template:"FirstPageLink PrevPageLink PageLinks JumpToPageInput NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown"})},J={content:{class:["p-0","border-0","text-surface-700/80","bg-surface-0"]},grid:{class:["flex flex-wrap","ml-0 mr-0 mt-0","bg-surface-0"]},header:{class:["font-semibold","p-6","text-surface-800/80","bg-surface-0","border-surface-200 border-b"]}},X={listbutton:({props:e})=>({class:["leading-none","inline-flex items-center align-bottom text-center","rounded-md rounded-r-none","px-2.5 py-1.5","ring-1 ring-surface-200",e.modelValue==="list"?"bg-surface-100 text-surface-700":"bg-surface-0 text-surface-700/80","focus:outline-none focus:outline-offset-0 focus:ring-primary-500","hover:bg-surface-200/80","transition duration-200","cursor-pointer select-none overflow-hidden"]}),gridbutton:({props:e})=>({class:["leading-none","inline-flex items-center align-bottom text-center","rounded-md rounded-l-none","px-2.5 py-1.5","ring-1 ring-surface-200",e.modelValue==="grid"?"bg-surface-100 text-surface-700":"bg-surface-0 text-surface-700/80","focus:outline-none focus:outline-offset-0 focus:ring-primary-500","hover:bg-surface-200/80","transition duration-200","cursor-pointer select-none overflow-hidden"]})},w={root:({state:e})=>({class:["rounded-[0.4375em]","shadow-panel","flex flex-col","p-6","gap-3","bg-white","max-h-[90vh]",{"sm:max-w-[90vw]":!e.maximized},"m-0","transform","scale-100",{"transition-none":e.maximized,"transform-none":e.maximized,"!w-screen":e.maximized,"!h-screen":e.maximized,"!max-h-full":e.maximized,"!top-0":e.maximized,"!left-0":e.maximized}]}),header:{class:["flex items-center gap-2","shrink-0","rounded-tl-lg","rounded-tr-lg","text-general-800"]},title:{class:["text-general-800 text-sm font-bold leading-[19.12px] tracking-[0.24px]"]},icons:{class:["flex items-center ml-auto"]},closeButton:{class:["relative","flex items-center justify-center","w-6 h-6 !p-0.5","border-0","rounded-full","text-general-200","bg-transparent","transition duration-200 ease-in-out","hover:bg-general-50 hover:text-general-300","overflow-hidden"]},maximizablebutton:{class:["relative","flex items-center justify-center","mr-2","last:mr-0","w-6 h-6","border-0","rounded-full","text-surface-500","bg-transparent","transition duration-200 ease-in-out","hover:text-surface-700","hover:bg-surface-100","focus:outline-none focus:outline-offset-0 focus:ring-1 focus:ring-inset","focus:ring-primary-500","overflow-hidden"]},closeButtonIcon:{class:["inline-block","text-general-200","w-3.5","h-3.5"]},maximizableicon:{class:["inline-block","w-3","h-3"]},content:({state:e,instance:t})=>({class:["!text-general-800 text-xs font-normal","pr-1.5 -mr-1.5 pl-1.5 -ml-1.5 pt-1.5 -mt-1.5 !pb-1.5 -mb-1.5","flex flex-col gap-3","text-surface-600","overflow-y-auto scrollbar-w-none",{grow:e==null?void 0:e.maximized}]}),footer:{class:["flex items-center justify-end","shrink-0","text-right","gap-1 mt-2","border-t-0","rounded-b-lg","bg-inherit","text-surface-700/80"]},mask:({props:e})=>({class:["transition","duration-300",{"p-5":!e.position=="full"},{"has-[.mask-active]:bg-transparent bg-dialog-mask":e.modal,"has-[.mask-active]:backdrop-blur-none backdrop-blur-sm":e.modal}]}),transition:({props:e})=>e.position==="top"?{enterFromClass:"opacity-0 scale-75 translate-x-0 -translate-y-full translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 translate-x-0 -translate-y-full translate-z-0 mask-active"}:e.position==="bottom"?{enterFromClass:"opacity-0 scale-75 translate-y-full mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 translate-x-0 translate-y-full translate-z-0 mask-active"}:e.position==="left"||e.position==="topleft"||e.position==="bottomleft"?{enterFromClass:"opacity-0 scale-75 -translate-x-full translate-y-0 translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 -translate-x-full translate-y-0 translate-z-0 mask-active"}:e.position==="right"||e.position==="topright"||e.position==="bottomright"?{enterFromClass:"opacity-0 scale-75 translate-x-full translate-y-0 translate-z-0 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 opacity-0 scale-75 translate-x-full translate-y-0 translate-z-0 mask-active"}:{enterFromClass:"opacity-0 scale-75 mask-active",enterActiveClass:"transition-all duration-200 ease-out",leaveActiveClass:"transition-all duration-200 ease-out",leaveToClass:"opacity-0 scale-75 mask-active"}},Z={root:{class:["!w-[clamp(360px,75vw,400px)]"],"data-wv-name":e=>e??"root","data-wv-section":e=>e??"dialogconfirm"},header:{"data-wv-section":"dialog-confirm-header"},headericon:({props:e})=>({class:["text-2xl"],icon:e.headerIcon??(e.severity==="danger"?"error-fill":"checkbox-circle"),"data-wv-section":"headericon"}),headertitle:e=>({class:["text-base leading-none font-semibold",{"text-success-700":e==="success","text-danger-700":e==="danger"}],"data-wv-section":"dialog-confirm-title"}),content:{class:"[&_ul]:list-outside [&_ul]:list-disc [&_ul]:pl-6","data-wv-section":"dialog-confirm-content"},list:{"data-wv-section":"dialog-confirm-list"},bodymessage:{"data-wv-section":"confirm-message"},cancelbutton:{"data-wv-section":"cancel-button"},confirmbutton:{"data-wv-section":"confirm-button"},footer:{class:"flex items-end justify-end gap-1 !mt-0","data-wv-section":"dialog-confirm-footer"}},Q={root:{class:["max-w-[90vw]"],style:e=>`width: ${e}`,"data-wv-section":"dialog-form"},header:{class:"flex items-center gap-2","data-wv-section":"dialog-form-header"},headericon:{class:"text-2xl","data-wv-section":"headericon"},headertitle:{class:"mr-auto text-grayscale-900 text-center text-[0.9rem] leading-[1.125rem] !font-semibold tracking-[0.28px]","data-wv-section":"dialog-form-title"},expandasidebutton:{class:["!px-1.5 !py-1 -mr-1.5 !text-xs"],"data-wv-section":"expand-aside-button"},closedialog:{class:"!p-0.5 !text-general-200","data-wv-section":"closebutton"},container:e=>({class:["flex overflow-y-auto overflow-x-hidden scrollbar-w-none",{"gap-6":e}],"data-wv-section":"dialog-form-container"}),mainsection:{class:["flex flex-col gap-3 w-full"],"data-wv-section":"dialog-form-main"},asidesection:(e,t)=>({class:["flex flex-col gap-3 shrink-0",{"opacity-0":!e},{"opacity-100":e}],style:`width: ${e?t-24:0}px`,"data-wv-section":"dialog-form-aside"}),form:{class:"overflow-y-auto",style:"scrollbar-width: none !important","data-wv-section":"form"},footer:{class:"flex flex-col gap-3 items-end justify-center","data-wv-section":"dialog-form-footer"},footerbutton:{class:"flex gap-1 items-center justify-end","data-wv-section":"footer-button"},cancelbtn:{"data-wv-section":"cancel-btn"},clearfield:{"data-wv-section":"clear-field"},savesubmitbutton:{"data-wv-section":"save-submit-button"}},ee={root:({props:e})=>({class:["flex relative",{"justify-center":e.layout=="vertical"},{"items-center":e.layout=="vertical"},{"justify-start":(e==null?void 0:e.align)=="left"&&e.layout=="horizontal","justify-center":(e==null?void 0:e.align)=="center"&&e.layout=="horizontal","justify-end":(e==null?void 0:e.align)=="right"&&e.layout=="horizontal","items-center":(e==null?void 0:e.align)=="top"&&e.layout=="vertical","items-start":(e==null?void 0:e.align)=="center"&&e.layout=="vertical","items-end":(e==null?void 0:e.align)=="bottom"&&e.layout=="vertical"},{"my-5 mx-0 py-0 px-5":e.layout=="horizontal","mx-4 md:mx-5 py-5":e.layout=="vertical"},{"w-full":e.layout=="horizontal","min-h-full":e.layout=="vertical"},"before:block",{"before:absolute before:left-0 before:top-1/2":e.layout=="horizontal","before:absolute before:left-1/2 before:top-0 before:transform before:-translate-x-1/2":e.layout=="vertical"},{"before:w-full":e.layout=="horizontal","before:min-h-full":e.layout=="vertical"},{"before:border-solid":e.type=="solid","before:border-dotted":e.type=="dotted","before:border-dashed":e.type=="dashed"},{"before:border-t before:border-surface-200":e.layout=="horizontal","before:border-l before:border-surface-200":e.layout=="vertical"}]}),content:{class:["p-2 z-10","bg-surface-0"]}},te={root:({props:e})=>({class:["absolute z-1",{"left-0 bottom-0 w-full":e.position=="bottom","left-0 top-0 w-full":e.position=="top","left-0 top-0 h-full":e.position=="left","right-0 top-0 h-full":e.position=="right"},"flex justify-center items-center","pointer-events-none"]}),container:{class:["flex","rounded-md","bg-surface-0/10 border border-surface-0/20","backdrop-blur-sm","p-2","pointer-events-auto"]},menu:({props:e})=>({class:["flex items-center justify-center",{"flex-col":e.position=="left"||e.position=="right"},"m-0 p-0 list-none","outline-none"]}),menuitem:({props:e,context:t,instance:r})=>({class:["p-2 rounded-md",{"hover:scale-150":r.currentIndex===t.index,"scale-125":r.currentIndex-1===t.index||r.currentIndex+1===t.index,"scale-110":r.currentIndex-2===t.index||r.currentIndex+2===t.index},{"origin-bottom hover:mx-6":e.position=="bottom","origin-top hover:mx-6":e.position=="top","origin-left hover:my-6":e.position=="left","origin-right hover:my-6":e.position=="right"},"transition-all duration-200 ease-cubic-bezier-will-change-transform transform"]}),action:{class:["flex flex-col items-center justify-center","relative","w-16 h-16","cursor-default overflow-hidden"]}},i={root:({props:e,state:t})=>({class:["inline-flex","relative","w-full","cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),labelContainer:{class:"overflow-hidden flex flex-auto items-center cursor-pointer py-[3px] px-3 pr-0"},label:({props:e})=>{var t,r;return{class:["flex gap-1","h-max","text-xs font-normal",{"!leading-5":e.modelValue==null},"rounded-none",{"text-general-200":!((t=e.modelValue)!=null&&t.length),"text-grayscale-900":(r=e.modelValue)==null?void 0:r.length},"transition duration-200","overflow-hidden overflow-x-auto scrollbar-w-none whitespace-nowrap cursor-pointer overflow-ellipsis"]}},token:u.root({props:{severity:"dark"}}),tokenLabel:u.input({props:{},context:{}}),removeTokenIcon:u.removebutton({props:{badgeSeverity:"dark"}}),loadingplaceholder:{class:"text-general-200 font-normal"},loadingicon:{class:"text-xs animate-spin duration-200 !text-general-500",icon:"spinner"},dropdownicon:({state:e})=>({class:["w-full h-full transition-transform !text-general-500",{"rotate-180":e.isShowOverlay}],icon:"arrow-drop-down"}),trigger:{class:["mr-1","flex items-center justify-center","shrink-0","bg-transparent","text-surface-500","w-6","rounded-tr-md","rounded-br-md"]},panel:{class:["absolute top-0 left-0","mt-2","max-w-[30vw]","border-0","rounded-lg","shadow-panel","bg-surface-0","text-surface-800"]},header:{class:["flex items-center self-stretch justify-between gap-2","py-3 px-4","m-0","border-[0.5px] border-b-0","rounded-tl-md","rounded-tr-md","text-surface-700","bg-primary-400","border-grayscale-900"]},headerCheckboxContainer:{class:["relative","inline-flex","align-bottom","w-4","h-4","mr-2","cursor-default","select-none"]},headerCheckbox:{...f,root:{class:["!mx-auto",...f.root.class,"[&:not(:has(svg))_[data-pc-section=box]]:!bg-primary-400","[&:not(:has(svg))_[data-pc-section=box]]:!border-white"]}},itemCheckbox:f,closeButton:{class:["hidden"]},closeButtonIcon:{class:["inline-block","w-3","h-3"]},wrapper:{class:["max-h-[15rem]","border-[0.5px]","bg-white","border-grayscale-900","overflow-auto","rounded-br-lg","rounded-bl-lg"]},list:{class:"list-none m-0"},item:({context:e})=>({class:["text-xs font-normal","flex items-center gap-2","relative","border-0","rounded-none","m-0","py-2 px-4",{"!font-medium":e.selected},{"text-surface-700":!e.focused&&!e.selected&&!e.disabled},{"text-surface-600":!e.focused&&!e.selected&&e.disabled},{"bg-primary-50 text-surface-700":e.focused&&!e.selected},{"bg-primary-50 text-primary-500":e.focused&&e.selected},{"text-surface-700":!e.focused&&e.selected},"hover:bg-primary-bg-weak hover:text-primary","focus-visible:outline-none focus-visible:outline-offset-0 focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-primary-500",{"pointer-events-none cursor-default":e.disabled},{"cursor-pointer":!e.disabled},"overflow-hidden","whitespace-nowrap"]}),option:{class:"overflow-hidden text-ellipsis w-max"},itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800","bg-surface-0","cursor-auto"]},filtercontainer:{class:["flex flex-row-reverse items-center relative w-full gap-2","text-[0.7rem]","leading-4","w-full","text-grayscale-900","bg-primary-400","border-b border-primary-100"]},filterinput:{class:["w-full","bg-primary-400","text-white","placeholder:text-primary-100","appearance-none","focus-visible:outline-none"]},filtericon:{class:["text-xs w-6 h-6"],icon:"search-line"},clearicon:{class:["text-surface-500","absolute","top-1/2","right-12","-mt-2"]},emptymessage:{class:["leading-none","text-xs","py-2 px-4","text-grayscale-800","bg-transparent"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"}},re={root:({props:e,state:t})=>({class:["inline-flex items-center justify-between","relative","w-full","rounded-md","cursor-default","select-none",{"opacity-60":e.disabled,"pointer-events-none":e.disabled}]}),input:({props:e})=>({class:["text-xs font-normal",{"!text-general-200":e.modelValue==null,"text-grayscale-900":e.modelValue!=null},"flex items-center","bg-transparent","border-0","placeholder:text-general-200","h-max w-full","px-3 pr-0",{"py-[5px]":!e.modelValue},{"py-[3px] leading-6":e.modelValue},{"pr-7":e.showClear},"rounded-none","transition","duration-200","focus:outline-none focus:shadow-none","relative","cursor-pointer","overflow-hidden overflow-ellipsis","whitespace-nowrap","appearance-none"]}),trigger:{class:["mr-1","flex items-center justify-center","shrink-0","bg-transparent","text-general-200","w-6 h-full","rounded-tr-md","rounded-br-md"]},panel:({props:e})=>({class:["absolute top-0 left-0 !z-[9999]","mt-2",{"max-w-max":e.panelMaxContent,"max-w-[30vh]":!e.panelMaxContent},"border-0","rounded-lg","shadow-panel","bg-surface-0","text-surface-800"]}),wrapper:({props:e})=>({class:["max-h-[15rem]","border-[0.5px]","bg-white","border-grayscale-900","overflow-auto",{"rounded-lg":!e.filter}]}),virtualScroller:({props:e})=>({root:{class:{"!contain-none":e.panelMaxContent}}}),list:({props:e})=>({class:["list-none m-0",{"!relative":e.panelMaxContent}]}),item:({context:e})=>({class:["text-xs font-normal","w-full overflow-hidden text-ellipsis","relative","border-0","rounded-none","m-0","py-2 px-4",{"!font-medium":e.selected},{"text-surface-700":!e.focused&&!e.selected&&!e.disabled},{"text-surface-600":!e.focused&&!e.selected&&e.disabled},{"bg-primary-50 text-surface-700":e.focused&&!e.selected},{"bg-primary-50 text-primary-500":e.focused&&e.selected},{"text-surface-700":!e.focused&&e.selected},"hover:bg-primary-bg-weak hover:text-primary","focus-visible:outline-none focus-visible:outline-offset-0 focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-primary-500",{"pointer-events-none cursor-default":e.disabled},{"cursor-pointer":!e.disabled},"overflow-hidden","whitespace-nowrap"]}),itemgroup:{class:["font-bold","sm:text-sm","m-0","py-2 px-4","text-surface-800","bg-surface-0","cursor-auto"]},emptymessage:{class:["leading-none text-xs","py-2 px-4","text-surface-800","bg-transparent"]},header:i==null?void 0:i.header,filtercontainer:i==null?void 0:i.filtercontainer,filterinput:i==null?void 0:i.filterinput,filtericon:i==null?void 0:i.filtericon,loadingicon:i==null?void 0:i.loadingicon,dropdownicon:({state:e})=>i.dropdownicon({state:e}),clearicon:{class:["text-general-200","absolute","top-1/2","right-12","-mt-2"]},transition:{enterFromClass:"opacity-0 scale-y-[0.8]",enterActiveClass:"transition-[transform,opacity] duration-[120ms] ease-[cubic-bezier(0,0,0.2,1)]",leaveActiveClass:"transition-opacity duration-100 ease-linear",leaveToClass:"opacity-0"},loadingplaceholder:{class:"text-general-200 font-normal"}},se={root:{class:["block","px-5 md:px-6 py-5","rounded-md rounded-lg","bg-surface-0","text-surface-700/80","ring-1 ring-inset ring-surface-300"]},legend:({props:e})=>({class:["font-medium","leading-none",{"p-0":e.toggleable,"px-3 py-1.5":!e.toggleable},"rounded-md","text-surface-700/80","bg-surface-0","transition-none",{"":e.toggleable},{"focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-primary-600 ring-inset":e.toggleable}]}),toggler:({props:e})=>({class:["flex items-center justify-center","relative",{"px-3 py-1.5":e.toggleable},{"rounded-md":e.toggleable},{"text-surface-700 hover:text-surface-900 hover:text-surface-900":e.toggleable},{"hover:text-surface-900":e.toggleable},{"focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-inset focus:ring-primary-600":e.toggleable},{"transition-none cursor-pointer overflow-hidden select-none":e.toggleable}]}),togglerIcon:{class:"mr-2 inline-block"},legendTitle:{class:"flex items-center justify-center leading-none"},content:{class:"p-0"},transition:{enterFromClass:"max-h-0",enterActiveClass:"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]",enterToClass:"max-h-[1000px]",leaveFromClass:"max-h-[1000px]",leaveActiveClass:"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]",leaveToClass:"max-h-0"}},ie={root:{class:["flex flex-col items-start justify-start relative gap-1 w-full shrink-0 overflow-hidden"],"data-wv-name":"fieldwrapper","data-wv-section":"root"},label:({props:e,slots:t})=>({class:[["text-general-900 text-xs flex gap-[2px] font-normal",e.labelClass],{"w-full":t["label-addon"]}],"data-wv-section":"fieldlabel"}),info:{class:"w-2.5 h-2.5 text-grayscale-900"},optionaltext:{class:"text-grayscale-700 text-[10px] font-normal leading-4"}},ne={root:()=>({class:["flex flex-col gap-3 text-general-900 text-[0.75rem] font-medium leading-[16.8px]"],"data-wv-section":"root"}),fields:{class:["grid gap-y-3 gap-x-6"]},"fields-wrapper":{class:["grid gap-y-3 gap-x-6"],"data-wv-section":"fields"},footer:{class:["flex flex-col self-end gap-3"]},"action-buttons":{class:["relative flex flex-col items-end justify-end gap-1"],"data-wv-section":"action-buttons"},"button-wrapper":{class:["flex items-end justify-end gap-1"],"data-wv-section":"button-wrapper"},"cancel-button":{"data-wv-section":"cancel-button"},"clear-button":{"data-wv-section":"clear-button"},"submit-button":{"data-wv-section":"submit-button"},"save-button":{"data-wv-section":"save-button"},staycheckbox:{class:["cursor-pointer flex gap-2 w-max ml-auto items-center justify-end"]},"validator-message":{class:["static w-max transform-none"]}},oe=[{"ring-1 p-[1px]":navigator.userAgent.includes("Firefox"),"ring-[0.5px] p-[0.5px]":!navigator.userAgent.includes("Firefox")},"ring-inset","ring-general-400"],ae={css:`
2
2
  *[data-pd-ripple="true"]{
3
3
  overflow: hidden;
4
4
  position: relative;
@@ -930,6 +930,10 @@
930
930
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3.005 3h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1m17 8h-16v8h16zm0-2V5h-16v4zm-6 6h4v2h-4z'/%3E%3C/svg%3E");
931
931
  }
932
932
 
933
+ .ic-apps-2-line {
934
+ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 11.5a4.5 4.5 0 1 1 0-9a4.5 4.5 0 0 1 0 9m0 10a4.5 4.5 0 1 1 0-9a4.5 4.5 0 0 1 0 9m10-10a4.5 4.5 0 1 1 0-9a4.5 4.5 0 0 1 0 9m0 10a4.5 4.5 0 1 1 0-9a4.5 4.5 0 0 1 0 9M7 9.5a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5m0 10a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5m10-10a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5m0 10a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
935
+ }
936
+
933
937
  .\!pointer-events-none{
934
938
  pointer-events: none !important;
935
939
  }
@@ -1492,6 +1496,10 @@
1492
1496
  height: 0px;
1493
1497
  }
1494
1498
 
1499
+ .h-1{
1500
+ height: 0.25rem;
1501
+ }
1502
+
1495
1503
  .h-1\.5{
1496
1504
  height: 0.375rem;
1497
1505
  }
@@ -1678,6 +1686,10 @@
1678
1686
  min-height: 26px;
1679
1687
  }
1680
1688
 
1689
+ .min-h-\[35px\]{
1690
+ min-height: 35px;
1691
+ }
1692
+
1681
1693
  .min-h-\[4rem\]{
1682
1694
  min-height: 4rem;
1683
1695
  }