@paperless/core 0.1.0-alpha.81 → 0.1.0-alpha.84

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.
Files changed (175) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist/assets/icons/menu.svg +25 -0
  3. package/dist/assets/icons/more.svg +18 -0
  4. package/dist/assets/icons/signout.svg +23 -0
  5. package/dist/assets/icons/switch.svg +20 -0
  6. package/dist/build/p-0cde65ef.entry.js +1 -0
  7. package/dist/build/p-7561ff47.entry.js +1 -0
  8. package/dist/build/p-99fc36a6.entry.js +1 -0
  9. package/dist/build/p-9b0ad183.entry.js +1 -0
  10. package/dist/build/p-a184bf11.entry.js +1 -0
  11. package/dist/build/p-b1f45d66.entry.js +1 -0
  12. package/dist/build/p-c272f950.entry.js +1 -0
  13. package/dist/build/p-c3ff9b39.entry.js +1 -0
  14. package/dist/build/p-c86da9da.entry.js +1 -0
  15. package/dist/build/p-d249b2f0.entry.js +1 -0
  16. package/dist/build/p-da091040.entry.js +1 -0
  17. package/dist/build/p-ebefedee.entry.js +1 -0
  18. package/dist/build/p-ed08cf85.entry.js +1 -0
  19. package/dist/build/{p-0f931c83.entry.js → p-f4c6f4cc.entry.js} +1 -1
  20. package/dist/build/paperless.esm.js +1 -1
  21. package/dist/cjs/index-f9c302b6.js +10 -10
  22. package/dist/cjs/loader.cjs.js +1 -1
  23. package/dist/cjs/p-accordion.cjs.entry.js +1 -1
  24. package/dist/cjs/{p-dropdown.cjs.entry.js → p-avatar_2.cjs.entry.js} +43 -5
  25. package/dist/cjs/p-button_3.cjs.entry.js +101 -3
  26. package/dist/cjs/p-counter.cjs.entry.js +10 -2
  27. package/dist/cjs/p-divider.cjs.entry.js +2 -2
  28. package/dist/cjs/p-dropdown-menu-container.cjs.entry.js +1 -1
  29. package/dist/cjs/p-dropdown-menu-item.cjs.entry.js +2 -2
  30. package/dist/cjs/p-helper.cjs.entry.js +1 -1
  31. package/dist/cjs/p-input-group.cjs.entry.js +2 -2
  32. package/dist/cjs/p-layout.cjs.entry.js +1 -1
  33. package/dist/cjs/p-navbar.cjs.entry.js +28 -0
  34. package/dist/cjs/p-navigation-item.cjs.entry.js +2 -2
  35. package/dist/cjs/p-profile.cjs.entry.js +20 -4
  36. package/dist/cjs/p-tooltip.cjs.entry.js +9 -3
  37. package/dist/cjs/paperless.cjs.js +1 -1
  38. package/dist/collection/assets/icons/menu.svg +25 -0
  39. package/dist/collection/assets/icons/more.svg +18 -0
  40. package/dist/collection/assets/icons/signout.svg +23 -0
  41. package/dist/collection/assets/icons/switch.svg +20 -0
  42. package/dist/collection/collection-manifest.json +3 -2
  43. package/dist/collection/components/atoms/avatar/avatar.component.css +2 -2
  44. package/dist/collection/components/atoms/button/button.component.css +14 -16
  45. package/dist/collection/components/atoms/button/button.component.js +1 -1
  46. package/dist/collection/components/atoms/counter/counter.component.css +25 -0
  47. package/dist/collection/components/atoms/counter/counter.component.js +50 -2
  48. package/dist/collection/components/atoms/divider/divider.component.css +3 -3
  49. package/dist/collection/components/atoms/divider/divider.component.js +1 -1
  50. package/dist/collection/components/atoms/dropdown-menu-container/dropdown-menu-container.component.css +5 -4
  51. package/dist/collection/components/atoms/dropdown-menu-item/dropdown-menu-item.component.css +3 -3
  52. package/dist/collection/components/atoms/dropdown-menu-item/dropdown-menu-item.component.js +23 -0
  53. package/dist/collection/components/atoms/helper/helper.component.css +1 -1
  54. package/dist/collection/components/atoms/icon/icon.component.css +1 -1
  55. package/dist/collection/components/atoms/icon/icon.component.js +1 -1
  56. package/dist/collection/components/atoms/layout/layout.component.css +10 -3
  57. package/dist/collection/components/atoms/loader/loader.component.css +1 -1
  58. package/dist/collection/components/atoms/modal-backdrop/modal-backdrop.component.css +1 -1
  59. package/dist/collection/components/atoms/modal-body/modal-body.component.css +1 -1
  60. package/dist/collection/components/atoms/modal-container/modal-container.component.css +1 -1
  61. package/dist/collection/components/atoms/modal-footer/modal-footer.component.css +1 -1
  62. package/dist/collection/components/atoms/modal-header/modal-header.component.css +1 -1
  63. package/dist/collection/components/atoms/segment-item/segment-item.component.js +1 -1
  64. package/dist/collection/components/atoms/status/status.component.js +1 -1
  65. package/dist/collection/components/atoms/tooltip/tooltip.component.css +17 -14
  66. package/dist/collection/components/atoms/tooltip/tooltip.component.js +34 -4
  67. package/dist/collection/components/molecules/accordion/accordion.component.css +1 -1
  68. package/dist/collection/components/molecules/dropdown/dropdown.component.css +5 -2
  69. package/dist/collection/components/molecules/dropdown/dropdown.component.js +42 -8
  70. package/dist/collection/components/molecules/input-group/input-group.component.css +2 -2
  71. package/dist/collection/components/molecules/input-group/input-group.component.js +3 -3
  72. package/dist/collection/components/molecules/navigation-item/navigation-item.component.css +5 -11
  73. package/dist/collection/components/molecules/navigation-item/navigation-item.component.js +2 -2
  74. package/dist/collection/components/molecules/profile/profile.component.css +33 -0
  75. package/dist/collection/components/molecules/profile/profile.component.js +70 -0
  76. package/dist/collection/components/organisms/navbar/navbar.component.css +39 -0
  77. package/dist/collection/components/organisms/navbar/navbar.component.js +79 -0
  78. package/dist/collection/utils/icons.js +8 -0
  79. package/dist/components/avatar.component.js +1 -1
  80. package/dist/components/button.component.js +119 -0
  81. package/dist/components/counter.component.js +14 -3
  82. package/dist/components/divider.component.js +2 -2
  83. package/dist/components/dropdown-menu-container.component.js +1 -1
  84. package/dist/{esm/p-dropdown.entry.js → components/dropdown.component.js} +47 -14
  85. package/dist/components/helper.component.js +1 -1
  86. package/dist/components/icon.component.js +99 -1
  87. package/dist/components/index.d.ts +1 -0
  88. package/dist/components/index.js +1 -0
  89. package/dist/components/loader.component.js +1 -1
  90. package/dist/components/p-accordion.js +1 -1
  91. package/dist/components/p-button.js +1 -117
  92. package/dist/components/p-dropdown-menu-item.js +11 -4
  93. package/dist/components/p-dropdown.js +1 -161
  94. package/dist/components/p-input-group.js +2 -2
  95. package/dist/components/p-layout.js +1 -1
  96. package/dist/components/p-navbar.d.ts +11 -0
  97. package/dist/components/p-navbar.js +64 -0
  98. package/dist/components/p-navigation-item.js +2 -2
  99. package/dist/components/p-profile.js +44 -7
  100. package/dist/components/tooltip.component.js +10 -3
  101. package/dist/esm/index-fff70567.js +10 -10
  102. package/dist/esm/loader.js +1 -1
  103. package/dist/esm/p-accordion.entry.js +1 -1
  104. package/dist/esm/p-avatar_2.entry.js +174 -0
  105. package/dist/esm/p-button_3.entry.js +101 -3
  106. package/dist/esm/p-counter.entry.js +10 -2
  107. package/dist/esm/p-divider.entry.js +2 -2
  108. package/dist/esm/p-dropdown-menu-container.entry.js +1 -1
  109. package/dist/esm/p-dropdown-menu-item.entry.js +2 -2
  110. package/dist/esm/p-helper.entry.js +1 -1
  111. package/dist/esm/p-input-group.entry.js +2 -2
  112. package/dist/esm/p-layout.entry.js +1 -1
  113. package/dist/esm/p-navbar.entry.js +24 -0
  114. package/dist/esm/p-navigation-item.entry.js +2 -2
  115. package/dist/esm/p-profile.entry.js +20 -4
  116. package/dist/esm/p-tooltip.entry.js +9 -3
  117. package/dist/esm/paperless.js +1 -1
  118. package/dist/index.html +1 -1
  119. package/dist/paperless/p-0cde65ef.entry.js +1 -0
  120. package/dist/paperless/p-7561ff47.entry.js +1 -0
  121. package/dist/paperless/p-99fc36a6.entry.js +1 -0
  122. package/dist/paperless/p-9b0ad183.entry.js +1 -0
  123. package/dist/paperless/p-a184bf11.entry.js +1 -0
  124. package/dist/paperless/p-b1f45d66.entry.js +1 -0
  125. package/dist/paperless/p-c272f950.entry.js +1 -0
  126. package/dist/paperless/p-c3ff9b39.entry.js +1 -0
  127. package/dist/paperless/p-c86da9da.entry.js +1 -0
  128. package/dist/paperless/p-d249b2f0.entry.js +1 -0
  129. package/dist/paperless/p-da091040.entry.js +1 -0
  130. package/dist/paperless/p-ebefedee.entry.js +1 -0
  131. package/dist/paperless/p-ed08cf85.entry.js +1 -0
  132. package/dist/paperless/{p-0f931c83.entry.js → p-f4c6f4cc.entry.js} +1 -1
  133. package/dist/paperless/paperless.esm.js +1 -1
  134. package/dist/sw.js +1 -1
  135. package/dist/sw.js.map +1 -1
  136. package/dist/types/components/atoms/counter/counter.component.d.ts +8 -0
  137. package/dist/types/components/atoms/dropdown-menu-item/dropdown-menu-item.component.d.ts +5 -0
  138. package/dist/types/components/atoms/tooltip/tooltip.component.d.ts +5 -1
  139. package/dist/types/components/molecules/dropdown/dropdown.component.d.ts +6 -1
  140. package/dist/types/components/molecules/profile/profile.component.d.ts +15 -0
  141. package/dist/types/components/organisms/navbar/navbar.component.d.ts +12 -0
  142. package/dist/types/components.d.ts +80 -3
  143. package/dist/types/utils/icons.d.ts +4 -0
  144. package/package.json +1 -1
  145. package/dist/build/p-065cac55.entry.js +0 -1
  146. package/dist/build/p-3222904d.entry.js +0 -1
  147. package/dist/build/p-38e37679.entry.js +0 -1
  148. package/dist/build/p-46a2fa14.entry.js +0 -1
  149. package/dist/build/p-5e959430.entry.js +0 -1
  150. package/dist/build/p-7dd29073.entry.js +0 -1
  151. package/dist/build/p-ab4b8afc.entry.js +0 -1
  152. package/dist/build/p-bce3c8ba.entry.js +0 -1
  153. package/dist/build/p-c525ea4b.entry.js +0 -1
  154. package/dist/build/p-cfa78aa0.entry.js +0 -1
  155. package/dist/build/p-d8e5ce34.entry.js +0 -1
  156. package/dist/build/p-db270856.entry.js +0 -1
  157. package/dist/build/p-e3286001.entry.js +0 -1
  158. package/dist/cjs/p-avatar.cjs.entry.js +0 -38
  159. package/dist/collection/components/atoms/profile/profile.component.css +0 -13
  160. package/dist/collection/components/atoms/profile/profile.component.js +0 -25
  161. package/dist/esm/p-avatar.entry.js +0 -34
  162. package/dist/paperless/p-065cac55.entry.js +0 -1
  163. package/dist/paperless/p-3222904d.entry.js +0 -1
  164. package/dist/paperless/p-38e37679.entry.js +0 -1
  165. package/dist/paperless/p-46a2fa14.entry.js +0 -1
  166. package/dist/paperless/p-5e959430.entry.js +0 -1
  167. package/dist/paperless/p-7dd29073.entry.js +0 -1
  168. package/dist/paperless/p-ab4b8afc.entry.js +0 -1
  169. package/dist/paperless/p-bce3c8ba.entry.js +0 -1
  170. package/dist/paperless/p-c525ea4b.entry.js +0 -1
  171. package/dist/paperless/p-cfa78aa0.entry.js +0 -1
  172. package/dist/paperless/p-d8e5ce34.entry.js +0 -1
  173. package/dist/paperless/p-db270856.entry.js +0 -1
  174. package/dist/paperless/p-e3286001.entry.js +0 -1
  175. package/dist/types/components/atoms/profile/profile.component.d.ts +0 -8
@@ -1,7 +1,12 @@
1
+ import { IconVariant } from '../icon/icon.component';
1
2
  export declare class DropdownMenuItem {
2
3
  /**
3
4
  * Wether the dropdown menu item is active
4
5
  */
5
6
  active: boolean;
7
+ /**
8
+ * Icon of the navigation item
9
+ */
10
+ icon: IconVariant;
6
11
  render(): any;
7
12
  }
@@ -1,4 +1,4 @@
1
- import { Placement } from '@popperjs/core';
1
+ import { Placement, PositioningStrategy } from '@popperjs/core';
2
2
  export declare class Tooltip {
3
3
  /**
4
4
  * The variant of the popover
@@ -12,6 +12,10 @@ export declare class Tooltip {
12
12
  * The placement of the popover
13
13
  */
14
14
  placement: Placement;
15
+ /**
16
+ * The strategy of the popover placement
17
+ */
18
+ strategy: PositioningStrategy;
15
19
  /**
16
20
  * Wether to show the popover
17
21
  */
@@ -1,9 +1,14 @@
1
+ import { Placement, PositioningStrategy } from '@popperjs/core';
1
2
  import { EventEmitter } from '../../../stencil-public-runtime';
2
3
  export declare class Dropdown {
3
4
  /**
4
5
  * The content of the dropdown menu
5
6
  */
6
- placement: 'bottom' | 'top';
7
+ placement: Placement;
8
+ /**
9
+ * The strategy of the popover placement
10
+ */
11
+ strategy: PositioningStrategy;
7
12
  /**
8
13
  * Wether to show the dropdown menu
9
14
  */
@@ -0,0 +1,15 @@
1
+ export declare class Profile {
2
+ /**
3
+ * The variant of the profile
4
+ */
5
+ variant: 'company' | 'user';
6
+ /**
7
+ * The host element
8
+ */
9
+ private _el;
10
+ private _dropdownOpen;
11
+ render(): any;
12
+ private _getContent;
13
+ private _generateAvatar;
14
+ private _getIcon;
15
+ }
@@ -0,0 +1,12 @@
1
+ export declare class Navbar {
2
+ /**
3
+ * The text to display for the close button
4
+ */
5
+ closeText: string;
6
+ /**
7
+ * The text to display for the menu button & sidebar title
8
+ */
9
+ menuText: string;
10
+ private _showMenu;
11
+ render(): any;
12
+ }
@@ -7,7 +7,7 @@
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { IconFlipOptions, IconVariant } from "./components/atoms/icon/icon.component";
9
9
  import { RotateOptions, TextSizeOptions } from "./utils/types";
10
- import { Placement } from "@popperjs/core";
10
+ import { Placement, PositioningStrategy } from "@popperjs/core";
11
11
  import { IconFlipOptions as IconFlipOptions1, IconVariant as IconVariant1 } from "./components/atoms/icon/icon.component";
12
12
  import { IllustrationVariant } from "./components/atoms/illustration/illustration.component";
13
13
  import { Observable } from "rxjs";
@@ -139,6 +139,14 @@ export namespace Components {
139
139
  "header": string;
140
140
  }
141
141
  interface PCounter {
142
+ /**
143
+ * The size of the counter
144
+ */
145
+ "size": 'default' | 'mini';
146
+ /**
147
+ * The variant of the counter
148
+ */
149
+ "variant": 'info' | 'negative' | 'positive' | 'unbiased';
142
150
  }
143
151
  interface PDivider {
144
152
  }
@@ -154,11 +162,15 @@ export namespace Components {
154
162
  /**
155
163
  * The content of the dropdown menu
156
164
  */
157
- "placement": 'bottom' | 'top';
165
+ "placement": Placement;
158
166
  /**
159
167
  * Wether to show the dropdown menu
160
168
  */
161
169
  "show": boolean;
170
+ /**
171
+ * The strategy of the popover placement
172
+ */
173
+ "strategy": PositioningStrategy;
162
174
  }
163
175
  interface PDropdownMenuContainer {
164
176
  }
@@ -167,6 +179,10 @@ export namespace Components {
167
179
  * Wether the dropdown menu item is active
168
180
  */
169
181
  "active": boolean;
182
+ /**
183
+ * Icon of the navigation item
184
+ */
185
+ "icon": IconVariant;
170
186
  }
171
187
  interface PHelper {
172
188
  /**
@@ -322,6 +338,16 @@ export namespace Components {
322
338
  }
323
339
  interface PModalHeader {
324
340
  }
341
+ interface PNavbar {
342
+ /**
343
+ * The text to display for the close button
344
+ */
345
+ "closeText": string;
346
+ /**
347
+ * The text to display for the menu button & sidebar title
348
+ */
349
+ "menuText": string;
350
+ }
325
351
  interface PNavigationItem {
326
352
  /**
327
353
  * Wether the navigation item is active
@@ -365,6 +391,10 @@ export namespace Components {
365
391
  "active": boolean;
366
392
  }
367
393
  interface PProfile {
394
+ /**
395
+ * The variant of the profile
396
+ */
397
+ "variant": 'company' | 'user';
368
398
  }
369
399
  interface PSegmentContainer {
370
400
  }
@@ -480,6 +510,10 @@ export namespace Components {
480
510
  * Wether to show the popover
481
511
  */
482
512
  "show": boolean;
513
+ /**
514
+ * The strategy of the popover placement
515
+ */
516
+ "strategy": PositioningStrategy;
483
517
  /**
484
518
  * The variant of the popover
485
519
  */
@@ -653,6 +687,12 @@ declare global {
653
687
  prototype: HTMLPModalHeaderElement;
654
688
  new (): HTMLPModalHeaderElement;
655
689
  };
690
+ interface HTMLPNavbarElement extends Components.PNavbar, HTMLStencilElement {
691
+ }
692
+ var HTMLPNavbarElement: {
693
+ prototype: HTMLPNavbarElement;
694
+ new (): HTMLPNavbarElement;
695
+ };
656
696
  interface HTMLPNavigationItemElement extends Components.PNavigationItem, HTMLStencilElement {
657
697
  }
658
698
  var HTMLPNavigationItemElement: {
@@ -763,6 +803,7 @@ declare global {
763
803
  "p-modal-container": HTMLPModalContainerElement;
764
804
  "p-modal-footer": HTMLPModalFooterElement;
765
805
  "p-modal-header": HTMLPModalHeaderElement;
806
+ "p-navbar": HTMLPNavbarElement;
766
807
  "p-navigation-item": HTMLPNavigationItemElement;
767
808
  "p-pagination": HTMLPPaginationElement;
768
809
  "p-pagination-item": HTMLPPaginationItemElement;
@@ -915,6 +956,14 @@ declare namespace LocalJSX {
915
956
  "header"?: string;
916
957
  }
917
958
  interface PCounter {
959
+ /**
960
+ * The size of the counter
961
+ */
962
+ "size"?: 'default' | 'mini';
963
+ /**
964
+ * The variant of the counter
965
+ */
966
+ "variant"?: 'info' | 'negative' | 'positive' | 'unbiased';
918
967
  }
919
968
  interface PDivider {
920
969
  }
@@ -934,11 +983,15 @@ declare namespace LocalJSX {
934
983
  /**
935
984
  * The content of the dropdown menu
936
985
  */
937
- "placement"?: 'bottom' | 'top';
986
+ "placement"?: Placement;
938
987
  /**
939
988
  * Wether to show the dropdown menu
940
989
  */
941
990
  "show"?: boolean;
991
+ /**
992
+ * The strategy of the popover placement
993
+ */
994
+ "strategy"?: PositioningStrategy;
942
995
  }
943
996
  interface PDropdownMenuContainer {
944
997
  }
@@ -947,6 +1000,10 @@ declare namespace LocalJSX {
947
1000
  * Wether the dropdown menu item is active
948
1001
  */
949
1002
  "active"?: boolean;
1003
+ /**
1004
+ * Icon of the navigation item
1005
+ */
1006
+ "icon"?: IconVariant;
950
1007
  }
951
1008
  interface PHelper {
952
1009
  /**
@@ -1102,6 +1159,16 @@ declare namespace LocalJSX {
1102
1159
  }
1103
1160
  interface PModalHeader {
1104
1161
  }
1162
+ interface PNavbar {
1163
+ /**
1164
+ * The text to display for the close button
1165
+ */
1166
+ "closeText"?: string;
1167
+ /**
1168
+ * The text to display for the menu button & sidebar title
1169
+ */
1170
+ "menuText"?: string;
1171
+ }
1105
1172
  interface PNavigationItem {
1106
1173
  /**
1107
1174
  * Wether the navigation item is active
@@ -1146,6 +1213,10 @@ declare namespace LocalJSX {
1146
1213
  "active"?: boolean;
1147
1214
  }
1148
1215
  interface PProfile {
1216
+ /**
1217
+ * The variant of the profile
1218
+ */
1219
+ "variant"?: 'company' | 'user';
1149
1220
  }
1150
1221
  interface PSegmentContainer {
1151
1222
  }
@@ -1261,6 +1332,10 @@ declare namespace LocalJSX {
1261
1332
  * Wether to show the popover
1262
1333
  */
1263
1334
  "show"?: boolean;
1335
+ /**
1336
+ * The strategy of the popover placement
1337
+ */
1338
+ "strategy"?: PositioningStrategy;
1264
1339
  /**
1265
1340
  * The variant of the popover
1266
1341
  */
@@ -1292,6 +1367,7 @@ declare namespace LocalJSX {
1292
1367
  "p-modal-container": PModalContainer;
1293
1368
  "p-modal-footer": PModalFooter;
1294
1369
  "p-modal-header": PModalHeader;
1370
+ "p-navbar": PNavbar;
1295
1371
  "p-navigation-item": PNavigationItem;
1296
1372
  "p-pagination": PPagination;
1297
1373
  "p-pagination-item": PPaginationItem;
@@ -1337,6 +1413,7 @@ declare module "@stencil/core" {
1337
1413
  "p-modal-container": LocalJSX.PModalContainer & JSXBase.HTMLAttributes<HTMLPModalContainerElement>;
1338
1414
  "p-modal-footer": LocalJSX.PModalFooter & JSXBase.HTMLAttributes<HTMLPModalFooterElement>;
1339
1415
  "p-modal-header": LocalJSX.PModalHeader & JSXBase.HTMLAttributes<HTMLPModalHeaderElement>;
1416
+ "p-navbar": LocalJSX.PNavbar & JSXBase.HTMLAttributes<HTMLPNavbarElement>;
1340
1417
  "p-navigation-item": LocalJSX.PNavigationItem & JSXBase.HTMLAttributes<HTMLPNavigationItemElement>;
1341
1418
  "p-pagination": LocalJSX.PPagination & JSXBase.HTMLAttributes<HTMLPPaginationElement>;
1342
1419
  "p-pagination-item": LocalJSX.PPaginationItem & JSXBase.HTMLAttributes<HTMLPPaginationItemElement>;
@@ -23,7 +23,9 @@ declare const _default: {
23
23
  list: string;
24
24
  location: string;
25
25
  megaphone: string;
26
+ menu: string;
26
27
  minus: string;
28
+ more: string;
27
29
  negative: string;
28
30
  pagination: string;
29
31
  payment: string;
@@ -36,6 +38,8 @@ declare const _default: {
36
38
  search: string;
37
39
  settings: string;
38
40
  sick: string;
41
+ signout: string;
42
+ switch: string;
39
43
  tachometer: string;
40
44
  task: string;
41
45
  template: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "0.1.0-alpha.81",
3
+ "version": "0.1.0-alpha.84",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -1 +0,0 @@
1
- import{r as t,h as e,H as o,g as p}from"./p-0100c1a2.js";const r=class{constructor(e){t(this,e),this.disabled=!1,this.focused=!1}render(){var t;const p=!!this._el.querySelector('[slot="helper"]'),r=!!this._el.querySelector('[slot="label"]'),i=!!this._el.querySelector('[slot="prefix"]'),n=!!this._el.querySelector('[slot="suffix"]'),s=!!this._el.querySelector('[slot="header"]'),l=p?e("slot",{name:"helper"}):this.helper,d=r?e("slot",{name:"label"}):this.label,a=i?e("slot",{name:"prefix"}):this.prefix,u=n?e("slot",{name:"suffix"}):this.suffix,h=this.error&&"string"==typeof this.error&&"true"!==this.error;return e(o,{class:`p-input-group ${(null===(t=this.error)||void 0===t?void 0:t.length)&&"error"} ${this.disabled&&"disabled"} ${this.focused&&"focused"}`},e("div",{class:"flex justify-between items-end"},d&&e("div",{class:"input-label"},d),(l||s)&&e("div",{class:"input-header"},s&&e("slot",{name:"header"}),l&&e("p-helper",{class:"flex "+(s?"ml-2":""),placement:"top-end"},l))),e("div",{class:"content"},(a||this.icon)&&e("div",{class:"prefix"},this.icon?e("p-icon",{class:"flex",variant:this.icon,rotate:this.iconRotate,flip:this.iconFlip}):a),(u||h)&&e("div",{class:"suffix"},h?e("p-tooltip",{class:"flex",variant:"error",popover:this.error},e("p-icon",{class:"flex text-negative-light hover:text-negative",slot:"content",variant:"explanation"})):u),e("slot",{name:"input"})))}get _el(){return p(this)}};r.style=".visible{visibility:visible!important}.static{position:static!important}.mb-\\[2px\\]{margin-bottom:2px!important}.ml-2{margin-left:.5rem!important}.flex{display:flex!important}.flex-col{flex-direction:column!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.justify-start{justify-content:flex-start!important}.justify-between{justify-content:space-between!important}.gap-2{gap:.5rem!important}.rounded-tr-none{border-top-right-radius:0!important}.rounded-tl-none{border-top-left-radius:0!important}.rounded-bl-none{border-bottom-left-radius:0!important}.rounded-br-none{border-bottom-right-radius:0!important}.border{border-width:1px!important}.border-r-0{border-right-width:0!important}.border-l-0{border-left-width:0!important}.border-solid{border-style:solid!important}.border-mystic-dark{--tw-border-opacity:1!important;border-color:rgb(218 230 240/var(--tw-border-opacity))!important}.border-indigo{--tw-border-opacity:1!important;border-color:rgb(82 138 250/var(--tw-border-opacity))!important}.border-negative{--tw-border-opacity:1!important;border-color:rgb(185 30 40/var(--tw-border-opacity))!important}.bg-white{--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-semibold{font-weight:600!important}.uppercase{text-transform:uppercase!important}.text-storm-vague{--tw-text-opacity:1!important;color:rgb(152 154 183/var(--tw-text-opacity))!important}.text-storm{color:rgb(81 83 107/var(--tw-text-opacity))!important}.text-negative-light,.text-storm{--tw-text-opacity:1!important}.text-negative-light{color:rgb(255 204 211/var(--tw-text-opacity))!important}.outline-0{outline-width:0!important}.blur{--tw-blur:blur(8px)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}*{box-sizing:border-box}:host{display:flex;flex-direction:column;width:100%}:host .input-label{--tw-text-opacity:1;color:rgb(152 154 183/var(--tw-text-opacity));font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1rem;text-transform:uppercase}:host .input-header{align-items:flex-end;display:flex;gap:.5rem;margin-bottom:2px}:host .content{display:flex}:host .content .prefix,:host .content .suffix{--tw-bg-opacity:1;--tw-border-opacity:1!important;--tw-text-opacity:1;align-items:center;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(218 230 240/var(--tw-border-opacity))!important;border-radius:.375rem;border-style:solid!important;border-width:1px!important;box-sizing:border-box;color:rgb(39 40 56/var(--tw-text-opacity));color:rgb(81 83 107/var(--tw-text-opacity));display:flex;height:2.5rem;justify-content:flex-start;outline-width:0!important;padding-left:1rem;padding-right:1rem;width:100%}:host .content .prefix::-moz-placeholder,:host .content .suffix::-moz-placeholder{--tw-text-opacity:1;color:rgb(128 130 158/var(--tw-text-opacity))}:host .content .prefix::placeholder,:host .content .suffix::placeholder{--tw-text-opacity:1;color:rgb(128 130 158/var(--tw-text-opacity))}:host .content .prefix.focus,:host .content .prefix:focus,:host .content .prefix:focus-visible,:host .content .suffix.focus,:host .content .suffix:focus,:host .content .suffix:focus-visible{--tw-border-opacity:1!important;border-color:rgb(82 138 250/var(--tw-border-opacity))!important}:host .content .prefix{border-bottom-right-radius:0;border-right-width:0!important;border-top-right-radius:0;order:1;padding-right:.5rem}:host .content .suffix{border-bottom-left-radius:0;border-left-width:0!important;border-top-left-radius:0;order:3;padding-left:.5rem}:host .content ::slotted(input[type=date].p-input),:host .content ::slotted(input[type=datetime-local].p-input),:host .content ::slotted(input[type=email].p-input),:host .content ::slotted(input[type=month].p-input),:host .content ::slotted(input[type=number].p-input),:host .content ::slotted(input[type=password].p-input),:host .content ::slotted(input[type=tel].p-input),:host .content ::slotted(input[type=text].p-input),:host .content ::slotted(input[type=time].p-input){order:2}:host .content .prefix+::slotted(input[type=date].p-input),:host .content .prefix+::slotted(input[type=datetime-local].p-input),:host .content .prefix+::slotted(input[type=email].p-input),:host .content .prefix+::slotted(input[type=month].p-input),:host .content .prefix+::slotted(input[type=number].p-input),:host .content .prefix+::slotted(input[type=password].p-input),:host .content .prefix+::slotted(input[type=tel].p-input),:host .content .prefix+::slotted(input[type=text].p-input),:host .content .prefix+::slotted(input[type=time].p-input){border-bottom-left-radius:0!important;border-left-width:0!important;border-top-left-radius:0!important;flex:1 1 auto;padding-left:0!important}:host .content .suffix+::slotted(input[type=date].p-input),:host .content .suffix+::slotted(input[type=datetime-local].p-input),:host .content .suffix+::slotted(input[type=email].p-input),:host .content .suffix+::slotted(input[type=month].p-input),:host .content .suffix+::slotted(input[type=number].p-input),:host .content .suffix+::slotted(input[type=password].p-input),:host .content .suffix+::slotted(input[type=tel].p-input),:host .content .suffix+::slotted(input[type=text].p-input),:host .content .suffix+::slotted(input[type=time].p-input){border-bottom-right-radius:0!important;border-right-width:0!important;border-top-right-radius:0!important;flex:1 1 auto;padding-right:0!important}:host(.focused) .prefix,:host(.focused) .suffix,:host(:focus-within) .prefix,:host(:focus-within) .suffix,:host([focused]) .prefix,:host([focused]) .suffix{--tw-border-opacity:1!important;--tw-text-opacity:1;border-color:rgb(82 138 250/var(--tw-border-opacity))!important;color:rgb(82 138 250/var(--tw-text-opacity))}:host(.focused) ::slotted(input[type=date].p-input),:host(.focused) ::slotted(input[type=datetime-local].p-input),:host(.focused) ::slotted(input[type=email].p-input),:host(.focused) ::slotted(input[type=month].p-input),:host(.focused) ::slotted(input[type=number].p-input),:host(.focused) ::slotted(input[type=password].p-input),:host(.focused) ::slotted(input[type=tel].p-input),:host(.focused) ::slotted(input[type=text].p-input),:host(.focused) ::slotted(input[type=time].p-input),:host(:focus-within) ::slotted(input[type=date].p-input),:host(:focus-within) ::slotted(input[type=datetime-local].p-input),:host(:focus-within) ::slotted(input[type=email].p-input),:host(:focus-within) ::slotted(input[type=month].p-input),:host(:focus-within) ::slotted(input[type=number].p-input),:host(:focus-within) ::slotted(input[type=password].p-input),:host(:focus-within) ::slotted(input[type=tel].p-input),:host(:focus-within) ::slotted(input[type=text].p-input),:host(:focus-within) ::slotted(input[type=time].p-input),:host([focused]) ::slotted(input[type=date].p-input),:host([focused]) ::slotted(input[type=datetime-local].p-input),:host([focused]) ::slotted(input[type=email].p-input),:host([focused]) ::slotted(input[type=month].p-input),:host([focused]) ::slotted(input[type=number].p-input),:host([focused]) ::slotted(input[type=password].p-input),:host([focused]) ::slotted(input[type=tel].p-input),:host([focused]) ::slotted(input[type=text].p-input),:host([focused]) ::slotted(input[type=time].p-input){--tw-border-opacity:1!important;border-color:rgb(82 138 250/var(--tw-border-opacity))!important}:host(.error) .prefix,:host(.error) .suffix,:host([error]) .prefix,:host([error]) .suffix{--tw-border-opacity:1!important;--tw-text-opacity:1;border-color:rgb(185 30 40/var(--tw-border-opacity))!important;color:rgb(138 15 29/var(--tw-text-opacity));color:rgb(185 30 40/var(--tw-text-opacity))}:host(.error) .prefix::-moz-placeholder,:host(.error) .suffix::-moz-placeholder,:host([error]) .prefix::-moz-placeholder,:host([error]) .suffix::-moz-placeholder{--tw-text-opacity:1;color:rgb(255 204 211/var(--tw-text-opacity))}:host(.error) .prefix::placeholder,:host(.error) .suffix::placeholder,:host([error]) .prefix::placeholder,:host([error]) .suffix::placeholder{--tw-text-opacity:1;color:rgb(255 204 211/var(--tw-text-opacity))}:host(.error) ::slotted(input[type=date].p-input),:host(.error) ::slotted(input[type=datetime-local].p-input),:host(.error) ::slotted(input[type=email].p-input),:host(.error) ::slotted(input[type=month].p-input),:host(.error) ::slotted(input[type=number].p-input),:host(.error) ::slotted(input[type=password].p-input),:host(.error) ::slotted(input[type=tel].p-input),:host(.error) ::slotted(input[type=text].p-input),:host(.error) ::slotted(input[type=time].p-input),:host([error]) ::slotted(input[type=date].p-input),:host([error]) ::slotted(input[type=datetime-local].p-input),:host([error]) ::slotted(input[type=email].p-input),:host([error]) ::slotted(input[type=month].p-input),:host([error]) ::slotted(input[type=number].p-input),:host([error]) ::slotted(input[type=password].p-input),:host([error]) ::slotted(input[type=tel].p-input),:host([error]) ::slotted(input[type=text].p-input),:host([error]) ::slotted(input[type=time].p-input){--tw-text-opacity:1;--tw-border-opacity:1!important;border-color:rgb(185 30 40/var(--tw-border-opacity))!important;color:rgb(138 15 29/var(--tw-text-opacity))}:host(.error) ::slotted(input[type=date].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=datetime-local].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=email].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=month].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=number].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=password].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=tel].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=text].p-input)::-moz-placeholder,:host(.error) ::slotted(input[type=time].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=date].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=datetime-local].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=email].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=month].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=number].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=password].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=tel].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=text].p-input)::-moz-placeholder,:host([error]) ::slotted(input[type=time].p-input)::-moz-placeholder{--tw-text-opacity:1;color:rgb(255 204 211/var(--tw-text-opacity))}:host(.error) ::slotted(input[type=date].p-input)::placeholder,:host(.error) ::slotted(input[type=datetime-local].p-input)::placeholder,:host(.error) ::slotted(input[type=email].p-input)::placeholder,:host(.error) ::slotted(input[type=month].p-input)::placeholder,:host(.error) ::slotted(input[type=number].p-input)::placeholder,:host(.error) ::slotted(input[type=password].p-input)::placeholder,:host(.error) ::slotted(input[type=tel].p-input)::placeholder,:host(.error) ::slotted(input[type=text].p-input)::placeholder,:host(.error) ::slotted(input[type=time].p-input)::placeholder,:host([error]) ::slotted(input[type=date].p-input)::placeholder,:host([error]) ::slotted(input[type=datetime-local].p-input)::placeholder,:host([error]) ::slotted(input[type=email].p-input)::placeholder,:host([error]) ::slotted(input[type=month].p-input)::placeholder,:host([error]) ::slotted(input[type=number].p-input)::placeholder,:host([error]) ::slotted(input[type=password].p-input)::placeholder,:host([error]) ::slotted(input[type=tel].p-input)::placeholder,:host([error]) ::slotted(input[type=text].p-input)::placeholder,:host([error]) ::slotted(input[type=time].p-input)::placeholder{--tw-text-opacity:1;color:rgb(255 204 211/var(--tw-text-opacity))}:host(.disabled) .prefix,:host(.disabled) .suffix,:host([disabled]) .prefix,:host([disabled]) .suffix{opacity:.4}:host(.disabled) ::slotted(input[type=date].p-input),:host(.disabled) ::slotted(input[type=datetime-local].p-input),:host(.disabled) ::slotted(input[type=email].p-input),:host(.disabled) ::slotted(input[type=month].p-input),:host(.disabled) ::slotted(input[type=number].p-input),:host(.disabled) ::slotted(input[type=password].p-input),:host(.disabled) ::slotted(input[type=tel].p-input),:host(.disabled) ::slotted(input[type=text].p-input),:host(.disabled) ::slotted(input[type=time].p-input),:host([disabled]) ::slotted(input[type=date].p-input),:host([disabled]) ::slotted(input[type=datetime-local].p-input),:host([disabled]) ::slotted(input[type=email].p-input),:host([disabled]) ::slotted(input[type=month].p-input),:host([disabled]) ::slotted(input[type=number].p-input),:host([disabled]) ::slotted(input[type=password].p-input),:host([disabled]) ::slotted(input[type=tel].p-input),:host([disabled]) ::slotted(input[type=text].p-input),:host([disabled]) ::slotted(input[type=time].p-input){opacity:.4;pointer-events:none}.hover\\:text-negative:hover{--tw-text-opacity:1!important;color:rgb(185 30 40/var(--tw-text-opacity))!important}";export{r as p_input_group}
@@ -1 +0,0 @@
1
- import{r as t,h as o,H as i}from"./p-0100c1a2.js";const r=class{constructor(o){t(this,o),this.active=!1}render(){return o(i,{class:`p-navigation-item ${this.active&&"active"}`},o("a",{href:this.href,target:this.target},this.icon&&o("p-icon",{variant:this.icon}),o("span",{class:this.counter&&"has-counter"},o("slot",null)),this.counter&&o("p-counter",null,this.counter)))}};r.style=".static{position:static!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.h-8{height:2rem!important}.w-full{width:100%!important}.cursor-pointer{cursor:pointer!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.text-storm-medium{--tw-text-opacity:1!important;color:rgb(128 130 158/var(--tw-text-opacity))!important}.text-mystic-dark{--tw-text-opacity:1!important;color:rgb(218 230 240/var(--tw-text-opacity))!important}.text-indigo{--tw-text-opacity:1!important;color:rgb(82 138 250/var(--tw-text-opacity))!important}*{box-sizing:border-box}:host{display:inline-block;margin-bottom:.25rem;width:100%}:host>a{--tw-text-opacity:1;align-items:center;border-radius:.375rem;color:rgb(128 130 158/var(--tw-text-opacity));cursor:pointer;display:flex;font-weight:500;height:2rem;padding-left:.5rem;padding-right:.5rem;width:100%}:host>a:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(241 246 255/var(--tw-bg-opacity));color:rgb(39 40 56/var(--tw-text-opacity))}:host>a>p-icon{--tw-text-opacity:1;color:rgb(218 230 240/var(--tw-text-opacity));margin-right:.75rem}:host>a>p-counter{margin-left:auto}:host>a>span.has-counter{margin-right:.75rem}:host>a:hover>p-icon{--tw-text-opacity:1;color:rgb(152 154 183/var(--tw-text-opacity))}:host(.active)>a{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(241 246 255/var(--tw-bg-opacity));color:rgb(82 138 250/var(--tw-text-opacity))}:host(.active)>a>p-icon{--tw-text-opacity:1;color:rgb(82 138 250/var(--tw-text-opacity))}.hover\\:bg-indigo-light:hover{--tw-bg-opacity:1!important;background-color:rgb(241 246 255/var(--tw-bg-opacity))!important}";export{r as p_navigation_item}
@@ -1 +0,0 @@
1
- import{r as t,h as r,H as a}from"./p-0100c1a2.js";const o=class{constructor(r){t(this,r)}render(){return r(a,{class:"p-dropdown-menu-container"},r("slot",null))}};o.style=".visible{visibility:visible!important}.static{position:static!important}.flex{display:flex!important}.min-w-\\[222px\\]{min-width:222px!important}.flex-col{flex-direction:column!important}.bg-white{--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important}.py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}*{box-sizing:border-box}p-dropdown-menu-container{--tw-bg-opacity:1;--tw-drop-shadow:drop-shadow(0px 0.3125rem 1rem rgba(0,24,98,.08)) drop-shadow(0px 0.0625rem 0.1875rem rgba(0,24,98,.13));background-color:rgb(255 255 255/var(--tw-bg-opacity));border-radius:.75rem;display:flex;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);flex-direction:column;min-width:222px;padding-bottom:.5rem;padding-top:.5rem}";export{o as p_dropdown_menu_container}
@@ -1 +0,0 @@
1
- import{r as t,c as i,h as s,H as o,g as e}from"./p-0100c1a2.js";import{c as h}from"./p-a7086ffa.js";const n=class{constructor(s){t(this,s),this.isOpen=i(this,"isOpen",7),this.placement="bottom",this.show=!1,this.insideClick=!1,this.disableTriggerClick=!1,this._loaded=!1}componentShouldUpdate(){this._setOptions(),this._loaded&&this.show&&this._show()}render(){return s(o,{class:"p-dropdown"},s("div",{class:"trigger",onClick:()=>this._triggerClickHandler()},s("slot",{onSlotchange:t=>this._checkButton(t),name:"trigger"})),s("p-dropdown-menu-container",{role:"popover",ref:t=>this._load(t),onClick:()=>this._containerClickHandler()},s("slot",{name:"items"})))}_checkButton({target:t}){const i=t.assignedElements();for(let t of i)"P-BUTTON"===t.nodeName&&(t.chevron="top"===this.placement?"up":"down")}_containerClickHandler(){this.insideClick||this._menu.hasAttribute("data-show")&&this._hide()}_triggerClickHandler(){this.disableTriggerClick||(this._menu.hasAttribute("data-show")?this._hide():this._show())}documentClickHandler({target:t}){this._menu.hasAttribute("data-show")&&!((t,i)=>{for(;(t=t.parentNode)&&t!==i;);return!!t})(t,this._el)&&this._hide()}_load(t){this._menu=t,t&&(this._popper=h(this._el,t),this._setOptions(),this._loaded=!0,this.show&&setTimeout((()=>this._show()),100))}_setOptions(){this._popper&&this._popper.setOptions({placement:`${this.placement}-start`,modifiers:[{name:"offset",options:{offset:[0,8]}}]})}_show(){this._loaded&&(this._menu.setAttribute("data-show",""),this.isOpen.emit(!0),this._popper.setOptions((t=>Object.assign(Object.assign({},t),{modifiers:[...t.modifiers,{name:"eventListeners",enabled:!0}]}))),this._popper.update())}_hide(){this._loaded&&!this.show&&(this._menu.removeAttribute("data-show"),this.isOpen.emit(!1),this._popper.setOptions((t=>Object.assign(Object.assign({},t),{modifiers:[...t.modifiers,{name:"eventListeners",enabled:!1}]}))))}get _el(){return e(this)}};n.style=".visible{visibility:visible!important}.static{position:static!important}.flex{display:flex!important}.hidden{display:none!important}.h-auto{height:auto!important}.w-auto{width:auto!important}*{box-sizing:border-box}:host .trigger{display:inline-block;height:auto;width:auto}:host p-dropdown-menu-container{display:none}:host p-dropdown-menu-container[data-show]{display:flex}";export{n as p_dropdown}
@@ -1 +0,0 @@
1
- import{r as t,h as e,H as a,g as i}from"./p-0100c1a2.js";const r=class{constructor(e){t(this,e)}render(){const t=this._generateAvatar();return e(a,{class:"p-profile"},t,e("div",{class:"name"},e("slot",{name:"title"}),e("slot",{name:"subtitle"})))}_generateAvatar(){var t,a;const i=this._el.querySelector('p-avatar[slot="avatar"]');return e("p-avatar",{class:"flex",src:null!==(t=i.src)&&void 0!==t?t:null,"default-image":null!==(a=i.defaultImage)&&void 0!==a?a:null,variant:i.variant,size:"small"})}get _el(){return i(this)}};r.style=".static{position:static!important}.flex{display:flex!important}.flex-col{flex-direction:column!important}.gap-4{gap:1rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}*{box-sizing:border-box}:host{align-items:center;display:flex;gap:1rem}:host .name{display:flex;flex-direction:column;justify-content:center}:host .name>:first-child{--tw-text-opacity:1;color:rgb(39 40 56/var(--tw-text-opacity));font-size:.875rem;font-weight:600;line-height:1.25rem}:host .name>:nth-child(2){--tw-text-opacity:1;color:rgb(152 154 183/var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem}";export{r as p_profile}
@@ -1 +0,0 @@
1
- import{r as t,h as r,H as e}from"./p-0100c1a2.js";const i=class{constructor(r){t(this,r),this.placement="top"}render(){return r(e,{class:"p-helper"},r("p-tooltip",{placement:this.placement},r("div",{slot:"popover"},r("slot",null)),r("div",{slot:"content",class:"helper"})))}};i.style=".visible{visibility:visible!important}.static{position:static!important}.ml-2{margin-left:.5rem!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.w-3{width:.75rem!important}.cursor-pointer{cursor:pointer!important}.items-end{align-items:flex-end!important}.justify-between{justify-content:space-between!important}.bg-center{background-position:50%!important}.bg-no-repeat{background-repeat:no-repeat!important}.text-negative-light{--tw-text-opacity:1!important;color:rgb(255 204 211/var(--tw-text-opacity))!important}.blur{--tw-blur:blur(8px)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}*{box-sizing:border-box}:host .helper{background-image:url(/assets/images/helper/helper.svg);background-position:50%;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:.75rem;width:.75rem}:host .helper:hover{background-image:url(/assets/images/helper/helper-hover.svg)}.hover\\:text-negative:hover{--tw-text-opacity:1!important;color:rgb(185 30 40/var(--tw-text-opacity))!important}";export{i as p_helper}
@@ -1 +0,0 @@
1
- import{r as t,h as r,H as o,g as a}from"./p-0100c1a2.js";import{c as e}from"./p-a7086ffa.js";const i=class{constructor(r){t(this,r),this.variant="hover",this.popover=null,this.placement="top",this.show=!1,this.canManuallyClose=!0,this._loaded=!1}componentShouldUpdate(){this._setOptions(),this._loaded&&this.show&&this._show()}render(){return r(o,{class:"p-popover"},r("slot",{name:"content"}),r("div",{class:`popover variant-${this.variant}`,role:"popover",ref:t=>this._load(t)},this.popover?this.popover:r("slot",{name:"popover"}),r("div",{class:"arrow","data-popper-arrow":!0})))}clickHandler(){"click"===this.variant&&(this._popover.hasAttribute("data-show")||this._show())}documentClickHandler(){"click"===this.variant&&this.canManuallyClose&&this._popover.hasAttribute("data-show")&&this._hide()}mouseEnterHandler(){"click"!==this.variant&&this._show()}mouseLeaveHandler(){this.show||"click"===this.variant||this._hide()}_show(){this._loaded&&(this._popover.setAttribute("data-show",""),this._popper.setOptions((t=>Object.assign(Object.assign({},t),{modifiers:[...t.modifiers,{name:"eventListeners",enabled:!0}]}))),this._popper.update())}_hide(){this._loaded&&(this._popover.removeAttribute("data-show"),this._popper.setOptions((t=>Object.assign(Object.assign({},t),{modifiers:[...t.modifiers,{name:"eventListeners",enabled:!1}]}))))}_load(t){this._popover=t,t&&(this._popper=e(this._el,t),this._setOptions(),this._loaded=!0,this.show&&setTimeout((()=>this._show()),100))}_setOptions(){this._popper&&this._popper.setOptions({placement:"error"===this.variant?"top-end":this.placement,modifiers:[{name:"offset",options:{offset:"error"===this.variant?[8,14]:[0,8]}},{name:"arrow",options:{padding:4}}]})}get _el(){return a(this)}};i.style='.visible{visibility:visible!important}.static{position:static!important}.absolute{position:absolute!important}.ml-2{margin-left:.5rem!important}.block{display:block!important}.flex{display:flex!important}.hidden{display:none!important}.w-2{width:.5rem!important}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.items-end{align-items:flex-end!important}.justify-between{justify-content:space-between!important}.rounded{border-radius:.25rem!important}.bg-white{background-color:rgb(255 255 255/var(--tw-bg-opacity))!important}.bg-storm,.bg-white{--tw-bg-opacity:1!important}.bg-storm{background-color:rgb(81 83 107/var(--tw-bg-opacity))!important}.bg-negative{--tw-bg-opacity:1!important;background-color:rgb(185 30 40/var(--tw-bg-opacity))!important}.py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-medium{font-weight:500!important}.uppercase{text-transform:uppercase!important}.text-white{color:rgb(255 255 255/var(--tw-text-opacity))!important}.text-negative-light,.text-white{--tw-text-opacity:1!important}.text-negative-light{color:rgb(255 204 211/var(--tw-text-opacity))!important}.blur{--tw-blur:blur(8px)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}*{box-sizing:border-box}:host{cursor:pointer}:host .popover{--tw-bg-opacity:1;--tw-drop-shadow:drop-shadow(0px 0.3125rem 1rem rgba(0,24,98,.08)) drop-shadow(0px 0.0625rem 0.1875rem rgba(0,24,98,.13));background-color:rgb(255 255 255/var(--tw-bg-opacity));border-radius:.25rem;display:none;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);font-size:.75rem;font-weight:500;line-height:1rem;max-width:14.5rem;padding:.5rem .75rem}:host .popover.variant-error,:host .popover.variant-hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(81 83 107/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity));padding-bottom:.25rem;padding-top:.25rem}:host .popover.variant-error{--tw-bg-opacity:1;background-color:rgb(185 30 40/var(--tw-bg-opacity));letter-spacing:.05em;text-transform:uppercase}:host .popover[data-show]{display:block}:host .popover .arrow,:host .popover .arrow:before{background:inherit;height:.5rem;position:absolute;width:.5rem}:host .popover .arrow{visibility:hidden}:host .popover .arrow:before{--tw-rotate:45deg;content:"";transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));visibility:visible}:host .popover[data-popper-placement^=top]>.arrow{bottom:-.25rem}:host .popover[data-popper-placement^=bottom]>.arrow{top:-.25rem}:host .popover[data-popper-placement^=left]>.arrow{right:-.25rem}:host .popover[data-popper-placement^=right]>.arrow{left:-.25rem}.hover\\:text-negative:hover{--tw-text-opacity:1!important;color:rgb(185 30 40/var(--tw-text-opacity))!important}';export{i as p_tooltip}
@@ -1 +0,0 @@
1
- import{r as t,h as a,H as r,g as e}from"./p-0100c1a2.js";const o=class{constructor(a){t(this,a)}render(){var t;const e=!!(null===(t=this._el.innerHTML)||void 0===t?void 0:t.length);return a(r,{class:"p-divider"},a("div",{class:"container"},a("div",{class:`flex items-center ${e&&"px-2"}`},a("slot",null))))}get _el(){return e(this)}};o.style='.static{position:static!important}.m-0{margin:0!important}.my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.mt-6{margin-top:1.5rem!important}.mb-6{margin-bottom:1.5rem!important}.mt-0{margin-top:0!important}.block{display:block!important}.flex{display:flex!important}.h-px{height:1px!important}.w-full{width:100%!important}.rotate-0{--tw-rotate:0deg!important}.rotate-0,.rotate-25{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.rotate-25{--tw-rotate:25deg!important}.rotate-45{--tw-rotate:45deg!important}.rotate-45,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.rotate-90{--tw-rotate:90deg!important}.rotate-135{--tw-rotate:135deg!important}.rotate-135,.rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.rotate-180{--tw-rotate:180deg!important}.rotate-225{--tw-rotate:225deg!important}.rotate-225,.rotate-270{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.rotate-270{--tw-rotate:270deg!important}.rotate-315{--tw-rotate:315deg!important}.-rotate-0,.rotate-315{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-0{--tw-rotate:-0deg!important}.-rotate-25{--tw-rotate:-25deg!important}.-rotate-25,.-rotate-45{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-45{--tw-rotate:-45deg!important}.-rotate-90{--tw-rotate:-90deg!important}.-rotate-135,.-rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-135{--tw-rotate:-135deg!important}.-rotate-180{--tw-rotate:-180deg!important}.-rotate-180,.-rotate-225{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-225{--tw-rotate:-225deg!important}.-rotate-270{--tw-rotate:-270deg!important}.-rotate-270,.-rotate-315{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.-rotate-315{--tw-rotate:-315deg!important}.scale-x-flip{--tw-scale-x:-1!important}.scale-x-flip,.scale-y-flip{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.scale-y-flip{--tw-scale-y:-1!important}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.cursor-pointer{cursor:pointer!important}.items-center{align-items:center!important}.gap-3{gap:.75rem!important}.whitespace-nowrap{white-space:nowrap!important}.bg-mystic-medium{--tw-bg-opacity:1!important;background-color:rgb(227 236 243/var(--tw-bg-opacity))!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.text-xxs{font-size:.6875rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-base{font-size:1rem!important;line-height:1.5rem!important}.text-xl{font-size:1.25rem!important;line-height:1.75rem!important}.text-2xl{font-size:1.5rem!important;line-height:2rem!important}.text-3xl{font-size:1.875rem!important;line-height:2.25rem!important}.text-4xl{font-size:2.25rem!important;line-height:2.5rem!important}.text-5xl{font-size:3rem!important}.text-5xl,.text-6xl{line-height:1!important}.text-6xl{font-size:3.75rem!important}.font-medium{font-weight:500!important}.text-storm-vague{--tw-text-opacity:1!important;color:rgb(152 154 183/var(--tw-text-opacity))!important}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:85.375rem){.container{max-width:85.375rem}}@media (min-width:90rem){.container{max-width:90rem}}@media (min-width:120rem){.container{max-width:120rem}}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}*{box-sizing:border-box}:host{display:block;margin-bottom:.5rem;margin-top:.5rem;width:100%}:host .container{align-items:center;display:flex;width:100%}:host .container:after,:host .container:before{--tw-bg-opacity:1;background-color:rgb(227 236 243/var(--tw-bg-opacity));content:"";flex:1 1 0%;height:1px}.-rotate-0,.-rotate-135,.-rotate-180,.-rotate-225,.-rotate-25,.-rotate-270,.-rotate-315,.-rotate-45,.-rotate-90,.rotate-0,.rotate-135,.rotate-180,.rotate-225,.rotate-25,.rotate-270,.rotate-315,.rotate-45,.rotate-90,.scale-x-flip,.scale-y-flip{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}.text-lg,.text-xl{line-height:1.75rem!important}@media (min-width:40rem){.tablet\\:w-80{width:20rem!important}.tablet\\:w-\\[33\\.5rem\\]{width:33.5rem!important}.tablet\\:w-\\[38rem\\]{width:38rem!important}.tablet\\:w-\\[47\\.5rem\\]{width:47.5rem!important}.tablet\\:w-\\[57\\.5rem\\]{width:57.5rem!important}}';export{o as p_divider}
@@ -1 +0,0 @@
1
- import{r as t,h as r,H as o}from"./p-0100c1a2.js";const i=class{constructor(r){t(this,r),this.active=!1}render(){return r(o,{class:`p-dropdown-menu-item ${this.active&&"active"}`},r("slot",null))}};i.style=".static{position:static!important}.flex{display:flex!important}.h-8{height:2rem!important}.items-center{align-items:center!important}.rounded{border-radius:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-storm-medium{--tw-text-opacity:1!important;color:rgb(128 130 158/var(--tw-text-opacity))!important}.text-storm{color:rgb(81 83 107/var(--tw-text-opacity))!important}.text-indigo,.text-storm{--tw-text-opacity:1!important}.text-indigo{color:rgb(82 138 250/var(--tw-text-opacity))!important}*{box-sizing:border-box}:host{--tw-text-opacity:1;align-items:center;border-radius:.25rem;color:rgb(128 130 158/var(--tw-text-opacity));cursor:pointer;display:flex;font-size:.875rem;font-weight:500;height:2rem;line-height:1.25rem;padding-left:.5rem;padding-right:.5rem;width:100%}:host(:hover){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(241 246 255/var(--tw-bg-opacity));color:rgb(81 83 107/var(--tw-text-opacity))}:host(.active){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(241 246 255/var(--tw-bg-opacity));color:rgb(82 138 250/var(--tw-text-opacity))}";export{i as p_dropdown_menu_item}
@@ -1 +0,0 @@
1
- import{r as t,h as a,H as r}from"./p-0100c1a2.js";const i=class{constructor(a){t(this,a),this.variant="user",this.size="medium",this._src=this.src}render(){return this._src||this._setDefaultLink(),a(r,{class:"p-avatar"},a("img",{src:this._src,onError:()=>this._setDefaultLink()}))}_setDefaultLink(){var t;this._src=null!==(t=this.defaultImage)&&void 0!==t?t:"user"===this.variant?"/assets/images/avatar/user-default.svg":"/assets/images/avatar/company-default.svg"}};i.style=".static{position:static!important}.flex{display:flex!important}.w-10{width:2.5rem!important}.w-20{width:5rem!important}.w-28{width:7rem!important}.rounded{border-radius:.25rem!important}.object-cover{-o-object-fit:cover!important;object-fit:cover!important}*{box-sizing:border-box}p-avatar{display:inline-block}p-avatar>img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}p-avatar[size=small]>img{height:2.5rem;width:2.5rem}p-avatar[size=medium]>img{height:5rem;width:5rem}p-avatar[size=large]>img{height:7rem;width:7rem}p-avatar[variant=company]>img{border-radius:.25rem}p-avatar[variant=company][size=large]>img,p-avatar[variant=company][size=medium]>img{border-radius:.375rem}p-avatar[variant=user]>img{border-radius:100%}";export{i as p_avatar}
@@ -1 +0,0 @@
1
- import{r as t,h as r,H as e}from"./p-0100c1a2.js";const i=class{constructor(r){t(this,r)}render(){return r(e,{class:"p-counter"},r("slot",null))}};i.style=".static{position:static!important}.flex{display:flex!important}.h-4{height:1rem!important}.justify-center{justify-content:center!important}.bg-indigo{--tw-bg-opacity:1!important;background-color:rgb(82 138 250/var(--tw-bg-opacity))!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-bold{font-weight:700!important}.uppercase{text-transform:uppercase!important}.leading-3{line-height:.75rem!important}.text-white{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}*{box-sizing:border-box}:host{--tw-bg-opacity:1;--tw-text-opacity:1;align-items:center;background-color:rgb(82 138 250/var(--tw-bg-opacity));border-radius:.5625rem;color:rgb(255 255 255/var(--tw-text-opacity));display:flex;font-size:.75rem;font-weight:700;height:1rem;justify-content:center;line-height:.75rem;padding-left:.5rem;padding-right:.5rem;text-transform:uppercase}";export{i as p_counter}
@@ -1 +0,0 @@
1
- import{r as t,h as e,H as i}from"./p-0100c1a2.js";const n=class{constructor(e){t(this,e),this.variant="default"}render(){return e(i,{class:`p-layout variant-${this.variant}`},e("div",{class:"topbar"},e("slot",{name:"topbar"})),e("div",{class:"sidebar"},e("slot",{name:"sidebar"})),e("div",{class:"content"},e("div",{class:"inner-content"},e("slot",{name:"content"}))))}};n.style='.static{position:static!important}.relative{position:relative!important}.sticky{position:-webkit-sticky!important;position:sticky!important}.order-2{order:2!important}.order-1{order:1!important}.order-3{order:3!important}.flex{display:flex!important}.grid{display:grid!important}.hidden{display:none!important}.h-screen{height:100vh!important}.h-full{height:100%!important}.w-screen{width:100vw!important}.w-full,.w-sidebar-mobile{width:100%!important}.flex-1{flex:1 1 0%!important}.flex-col{flex-direction:column!important}.content-start{align-content:flex-start!important}.items-center{align-items:center!important}.px-content-mobile-x{padding-left:1rem!important;padding-right:1rem!important}.pt-14{padding-top:3.5rem!important}*{box-sizing:border-box}:host{align-content:flex-start;display:grid;gap:0;grid-template-areas:"topbar topbar" "sidebar content";grid-template-columns:auto 1fr;grid-template-rows:auto 1fr;height:100vh;overflow:hidden;padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);width:100vw}:host .content,:host .sidebar,:host .topbar{align-self:flex-start}:host .topbar{grid-area:topbar;order:2;position:-webkit-sticky;position:sticky;width:100%}@media (min-width:80rem){:host .topbar{order:1}}:host .sidebar{box-sizing:border-box;display:flex;grid-area:sidebar;height:100%;order:1;width:100%}@media (min-width:80rem){:host .sidebar{order:2;width:15rem}}:host .content{display:flex;flex-direction:column;grid-area:content;height:100%;order:3;overflow-y:auto;position:relative}:host .content .inner-content{padding:1.5rem 1rem;position:relative}@media (min-width:80rem){:host .content .inner-content{padding:2rem;width:60rem}}@media (min-width:64rem){:host .content .inner-content{width:45rem}}@media (min-width:85.375rem){:host .content .inner-content{width:65rem}}@media (min-width:90rem){:host .content .inner-content{width:65rem}}@media (min-width:120rem){:host .content .inner-content{width:70rem}}:host(.variant-default) .content{flex:1 1 0%}:host(.variant-login){grid-template-areas:"topbar topbar" "content content"}@media (min-width:64rem){:host(.variant-login){grid-template-areas:"topbar topbar" "content sidebar"}}:host(.variant-login) .sidebar{display:none;flex:1 1 0%;order:3;overflow:hidden;padding:.5rem;width:unset}@media (min-width:64rem){:host(.variant-login) .sidebar{display:flex}}:host(.variant-login) .sidebar .inner-content{padding:.5rem}:host(.variant-login) .content{align-items:center;order:3}@media (min-width:64rem){:host(.variant-login) .content{justify-content:center;order:2}}:host(.variant-login) .content .inner-content{box-sizing:border-box;padding-top:3.5rem;width:100%}@media (min-width:64rem){:host(.variant-login) .content .inner-content{padding:1.5rem 4.5rem 0}}@media (min-width:40rem){:host(.variant-login) .content .inner-content{width:30rem}}@media (min-width:64rem){.desktop-xs\\:flex{display:flex!important}.desktop-xs\\:w-content-desktop-xs{width:45rem!important}.desktop-xs\\:py-0{padding-bottom:0!important;padding-top:0!important}}@media (min-width:80rem){.desktop-sm\\:w-content-desktop-sm{width:60rem!important}.desktop-sm\\:px-content-desktop-x{padding-left:2rem!important;padding-right:2rem!important}}@media (min-width:85.375rem){.desktop\\:w-content-desktop{width:65rem!important}}@media (min-width:90rem){.desktop-lg\\:w-content-desktop-lg{width:65rem!important}}';export{n as p_layout}