@invopop/popui 0.0.1

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 (141) hide show
  1. package/README.md +146 -0
  2. package/dist/BaseButton.svelte +107 -0
  3. package/dist/BaseButton.svelte.d.ts +33 -0
  4. package/dist/BaseCard.svelte +50 -0
  5. package/dist/BaseCard.svelte.d.ts +25 -0
  6. package/dist/BaseCounter.svelte +16 -0
  7. package/dist/BaseCounter.svelte.d.ts +17 -0
  8. package/dist/BaseDropdown.svelte +46 -0
  9. package/dist/BaseDropdown.svelte.d.ts +24 -0
  10. package/dist/BaseFlag.svelte +14 -0
  11. package/dist/BaseFlag.svelte.d.ts +17 -0
  12. package/dist/BaseTable.svelte +148 -0
  13. package/dist/BaseTable.svelte.d.ts +33 -0
  14. package/dist/BaseTableActions.svelte +31 -0
  15. package/dist/BaseTableActions.svelte.d.ts +21 -0
  16. package/dist/BaseTableCell.svelte +90 -0
  17. package/dist/BaseTableCell.svelte.d.ts +26 -0
  18. package/dist/BaseTableHeader.svelte +75 -0
  19. package/dist/BaseTableHeader.svelte.d.ts +23 -0
  20. package/dist/BaseTableHeaderSortBy.svelte +22 -0
  21. package/dist/BaseTableHeaderSortBy.svelte.d.ts +20 -0
  22. package/dist/BaseTableRow.svelte +48 -0
  23. package/dist/BaseTableRow.svelte.d.ts +25 -0
  24. package/dist/ButtonFile.svelte +51 -0
  25. package/dist/ButtonFile.svelte.d.ts +25 -0
  26. package/dist/CardRelation.svelte +29 -0
  27. package/dist/CardRelation.svelte.d.ts +22 -0
  28. package/dist/CompanySelector.svelte +74 -0
  29. package/dist/CompanySelector.svelte.d.ts +23 -0
  30. package/dist/CounterWorkflow.svelte +15 -0
  31. package/dist/CounterWorkflow.svelte.d.ts +17 -0
  32. package/dist/DataListItem.svelte +22 -0
  33. package/dist/DataListItem.svelte.d.ts +22 -0
  34. package/dist/DatePicker.svelte +431 -0
  35. package/dist/DatePicker.svelte.d.ts +22 -0
  36. package/dist/DrawerContext.svelte +48 -0
  37. package/dist/DrawerContext.svelte.d.ts +23 -0
  38. package/dist/DrawerContextItem.svelte +93 -0
  39. package/dist/DrawerContextItem.svelte.d.ts +23 -0
  40. package/dist/DrawerContextWorkspace.svelte +40 -0
  41. package/dist/DrawerContextWorkspace.svelte.d.ts +20 -0
  42. package/dist/DropdownSelect.svelte +78 -0
  43. package/dist/DropdownSelect.svelte.d.ts +26 -0
  44. package/dist/EmptyStateIcon.svelte +46 -0
  45. package/dist/EmptyStateIcon.svelte.d.ts +22 -0
  46. package/dist/EmptyStateIllustration.svelte +58 -0
  47. package/dist/EmptyStateIllustration.svelte.d.ts +21 -0
  48. package/dist/FeedEvents.svelte +26 -0
  49. package/dist/FeedEvents.svelte.d.ts +17 -0
  50. package/dist/FeedIconEvent.svelte +10 -0
  51. package/dist/FeedIconEvent.svelte.d.ts +19 -0
  52. package/dist/FeedIconStatus.svelte +26 -0
  53. package/dist/FeedIconStatus.svelte.d.ts +17 -0
  54. package/dist/FeedItem.svelte +87 -0
  55. package/dist/FeedItem.svelte.d.ts +30 -0
  56. package/dist/FeedItemDetail.svelte +56 -0
  57. package/dist/FeedItemDetail.svelte.d.ts +23 -0
  58. package/dist/FeedViewer.svelte +19 -0
  59. package/dist/FeedViewer.svelte.d.ts +21 -0
  60. package/dist/FormLayoutModal.svelte +8 -0
  61. package/dist/FormLayoutModal.svelte.d.ts +29 -0
  62. package/dist/GlobalSearch.svelte +47 -0
  63. package/dist/GlobalSearch.svelte.d.ts +18 -0
  64. package/dist/InputCheckbox.svelte +20 -0
  65. package/dist/InputCheckbox.svelte.d.ts +18 -0
  66. package/dist/InputError.svelte +14 -0
  67. package/dist/InputError.svelte.d.ts +16 -0
  68. package/dist/InputLabel.svelte +5 -0
  69. package/dist/InputLabel.svelte.d.ts +17 -0
  70. package/dist/InputRadio.svelte +27 -0
  71. package/dist/InputRadio.svelte.d.ts +19 -0
  72. package/dist/InputSearch.svelte +69 -0
  73. package/dist/InputSearch.svelte.d.ts +32 -0
  74. package/dist/InputSelect.svelte +75 -0
  75. package/dist/InputSelect.svelte.d.ts +30 -0
  76. package/dist/InputText.svelte +63 -0
  77. package/dist/InputText.svelte.d.ts +26 -0
  78. package/dist/InputTextarea.svelte +42 -0
  79. package/dist/InputTextarea.svelte.d.ts +24 -0
  80. package/dist/InputToggle.svelte +33 -0
  81. package/dist/InputToggle.svelte.d.ts +18 -0
  82. package/dist/MenuItem.svelte +141 -0
  83. package/dist/MenuItem.svelte.d.ts +29 -0
  84. package/dist/ProfileAvatar.svelte +39 -0
  85. package/dist/ProfileAvatar.svelte.d.ts +21 -0
  86. package/dist/ProfileSelector.svelte +20 -0
  87. package/dist/ProfileSelector.svelte.d.ts +20 -0
  88. package/dist/SectionLayout.svelte +10 -0
  89. package/dist/SectionLayout.svelte.d.ts +18 -0
  90. package/dist/SeparatorHorizontal.svelte +14 -0
  91. package/dist/SeparatorHorizontal.svelte.d.ts +23 -0
  92. package/dist/ShortcutWrapper.svelte +6 -0
  93. package/dist/ShortcutWrapper.svelte.d.ts +27 -0
  94. package/dist/StatusLabel.svelte +20 -0
  95. package/dist/StatusLabel.svelte.d.ts +18 -0
  96. package/dist/Tabs.svelte +41 -0
  97. package/dist/Tabs.svelte.d.ts +20 -0
  98. package/dist/TagBeta.svelte +23 -0
  99. package/dist/TagBeta.svelte.d.ts +23 -0
  100. package/dist/TagSearch.svelte +46 -0
  101. package/dist/TagSearch.svelte.d.ts +22 -0
  102. package/dist/TagStatus.svelte +46 -0
  103. package/dist/TagStatus.svelte.d.ts +19 -0
  104. package/dist/TitleMain.svelte +6 -0
  105. package/dist/TitleMain.svelte.d.ts +18 -0
  106. package/dist/TitleSection.svelte +6 -0
  107. package/dist/TitleSection.svelte.d.ts +18 -0
  108. package/dist/UuidCopy.svelte +55 -0
  109. package/dist/UuidCopy.svelte.d.ts +26 -0
  110. package/dist/clickOutside.d.ts +4 -0
  111. package/dist/clickOutside.js +18 -0
  112. package/dist/constants.d.ts +1 -0
  113. package/dist/constants.js +1 -0
  114. package/dist/helpers.d.ts +6 -0
  115. package/dist/helpers.js +35 -0
  116. package/dist/index.d.ts +51 -0
  117. package/dist/index.js +101 -0
  118. package/dist/popui.css +1 -0
  119. package/dist/svg/BgPattern.svelte +20 -0
  120. package/dist/svg/BgPattern.svelte.d.ts +23 -0
  121. package/dist/svg/IconContact.svelte +114 -0
  122. package/dist/svg/IconContact.svelte.d.ts +16 -0
  123. package/dist/svg/IconEmpty.svelte +138 -0
  124. package/dist/svg/IconEmpty.svelte.d.ts +23 -0
  125. package/dist/svg/IconFile.svelte +91 -0
  126. package/dist/svg/IconFile.svelte.d.ts +16 -0
  127. package/dist/svg/IconInvoice.svelte +97 -0
  128. package/dist/svg/IconInvoice.svelte.d.ts +16 -0
  129. package/dist/svg/IconNoResults.svelte +83 -0
  130. package/dist/svg/IconNoResults.svelte.d.ts +16 -0
  131. package/dist/svg/IconPdf.svelte +93 -0
  132. package/dist/svg/IconPdf.svelte.d.ts +16 -0
  133. package/dist/svg/IconProduct.svelte +105 -0
  134. package/dist/svg/IconProduct.svelte.d.ts +16 -0
  135. package/dist/tw.theme.d.ts +135 -0
  136. package/dist/tw.theme.js +152 -0
  137. package/dist/types.d.ts +128 -0
  138. package/dist/types.js +1 -0
  139. package/dist/wcdispatch.d.ts +1 -0
  140. package/dist/wcdispatch.js +9 -0
  141. package/package.json +102 -0
@@ -0,0 +1,114 @@
1
+ <script>export let classes = "";
2
+ </script>
3
+
4
+ <svg class={classes} viewBox="0 0 97 117" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <g filter="url(#filter0_d_286_429)">
6
+ <g filter="url(#filter1_b_286_429)">
7
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="white" />
8
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="currentColor" fill-opacity="0.02" />
9
+ <rect
10
+ x="20.4"
11
+ y="18.4"
12
+ width="56.2"
13
+ height="78.2"
14
+ rx="5.6"
15
+ stroke="currentColor"
16
+ stroke-opacity="0.6"
17
+ stroke-width="0.8"
18
+ />
19
+ </g>
20
+ <rect
21
+ x="23.3"
22
+ y="21.3"
23
+ width="50.4"
24
+ height="72.4"
25
+ rx="3.7"
26
+ stroke="currentColor"
27
+ stroke-opacity="0.2"
28
+ stroke-width="0.6"
29
+ />
30
+ <rect x="28" y="45" width="19" height="2" rx="1" fill="currentColor" />
31
+ <rect x="28" y="68" width="15" height="2" rx="1" fill="currentColor" />
32
+ <rect x="59" y="50" width="10" height="2" rx="1" fill="currentColor" />
33
+ <rect x="57" y="73" width="12" height="2" rx="1" fill="currentColor" />
34
+ <rect x="55" y="54" width="14" height="2" rx="1" fill="currentColor" />
35
+ <rect x="55" y="77" width="14" height="2" rx="1" fill="currentColor" />
36
+ <rect x="59" y="58" width="10" height="2" rx="1" fill="currentColor" />
37
+ <rect x="57" y="62" width="12" height="2" rx="1" fill="currentColor" />
38
+ <rect x="61" y="81" width="8" height="2" rx="1" fill="currentColor" />
39
+ <rect x="28" y="50" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
40
+ <rect x="28" y="73" width="12" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
41
+ <rect x="28" y="54" width="11" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
42
+ <rect x="28" y="77" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
43
+ <rect x="28" y="58" width="14" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
44
+ <rect x="28" y="81" width="18" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
45
+ <rect x="28" y="62" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
46
+ <g clip-path="url(#clip0_286_429)">
47
+ <path
48
+ d="M32.1722 33C33.3535 33 34.3111 32.0424 34.3111 30.8611C34.3111 29.6798 33.3535 28.7222 32.1722 28.7222C30.9909 28.7222 30.0333 29.6798 30.0333 30.8611C30.0333 32.0424 30.9909 33 32.1722 33Z"
49
+ fill="currentColor"
50
+ />
51
+ <path
52
+ d="M37.0333 31.0555C38.2146 31.0555 39.1722 30.0979 39.1722 28.9167C39.1722 27.7354 38.2146 26.7778 37.0333 26.7778C35.8521 26.7778 34.8944 27.7354 34.8944 28.9167C34.8944 30.0979 35.8521 31.0555 37.0333 31.0555Z"
53
+ fill="currentColor"
54
+ />
55
+ <path
56
+ d="M41.0747 34.6318C40.4439 32.958 38.8199 31.8333 37.0333 31.8333C35.9312 31.8333 34.8929 32.2634 34.1097 32.9844C35.5517 33.5359 36.7425 34.6714 37.3056 36.1648C37.3927 36.395 37.4316 36.6338 37.4471 36.8725C38.389 36.8336 39.3208 36.6703 40.2199 36.3701C40.5746 36.2519 40.8686 35.9913 41.0296 35.6553C41.1851 35.3286 41.2015 34.9646 41.0754 34.6318H41.0747Z"
57
+ fill="currentColor"
58
+ />
59
+ <path
60
+ d="M36.2136 36.5762C35.5828 34.9024 33.9588 33.7778 32.1722 33.7778C30.3857 33.7778 28.7617 34.9024 28.1309 36.5762C28.0049 36.9099 28.0212 37.2731 28.1768 37.5998C28.337 37.9358 28.6318 38.1963 28.9865 38.3145C30.017 38.6583 31.0896 38.8333 32.1722 38.8333C33.2549 38.8333 34.3275 38.6583 35.358 38.3145C35.7127 38.1963 36.0067 37.9358 36.1677 37.5998C36.3232 37.2731 36.3396 36.9091 36.2136 36.5762Z"
61
+ fill="currentColor"
62
+ />
63
+ </g>
64
+ </g>
65
+ <defs>
66
+ <filter
67
+ id="filter0_d_286_429"
68
+ x="0"
69
+ y="0"
70
+ width="97"
71
+ height="119"
72
+ filterUnits="userSpaceOnUse"
73
+ color-interpolation-filters="sRGB"
74
+ >
75
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
76
+ <feColorMatrix
77
+ in="SourceAlpha"
78
+ type="matrix"
79
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
80
+ result="hardAlpha"
81
+ />
82
+ <feOffset dy="2" />
83
+ <feGaussianBlur stdDeviation="10" />
84
+ <feColorMatrix
85
+ type="matrix"
86
+ values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.04 0"
87
+ />
88
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_286_429" />
89
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_286_429" result="shape" />
90
+ </filter>
91
+ <filter
92
+ id="filter1_b_286_429"
93
+ x="0"
94
+ y="-2"
95
+ width="97"
96
+ height="119"
97
+ filterUnits="userSpaceOnUse"
98
+ color-interpolation-filters="sRGB"
99
+ >
100
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
101
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="10" />
102
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_286_429" />
103
+ <feBlend
104
+ mode="normal"
105
+ in="SourceGraphic"
106
+ in2="effect1_backgroundBlur_286_429"
107
+ result="shape"
108
+ />
109
+ </filter>
110
+ <clipPath id="clip0_286_429">
111
+ <rect width="14" height="14" fill="white" transform="translate(27.7 26)" />
112
+ </clipPath>
113
+ </defs>
114
+ </svg>
@@ -0,0 +1,16 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ classes?: string | undefined;
5
+ };
6
+ events: {
7
+ [evt: string]: CustomEvent<any>;
8
+ };
9
+ slots: {};
10
+ };
11
+ export type IconContactProps = typeof __propDef.props;
12
+ export type IconContactEvents = typeof __propDef.events;
13
+ export type IconContactSlots = typeof __propDef.slots;
14
+ export default class IconContact extends SvelteComponent<IconContactProps, IconContactEvents, IconContactSlots> {
15
+ }
16
+ export {};
@@ -0,0 +1,138 @@
1
+ <svg width="352" height="120" viewBox="0 0 352 120" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3803_83677)">
3
+ <path
4
+ d="M35.6124 12.398H0.445717M35.6124 12.398V-36.2311M35.6124 12.398L53.1259 36.7825M0.445717 61.0272L-34.7209 12.398H0.445717M0.445717 61.0272L0.306166 109.517M0.445717 61.0272H70.6395M0.306166 109.517H-34.7209L0.306166 158.146H35.3333M0.306166 109.517H35.3333M0.306166 109.517L35.3333 158.146M105.667 158.146L123.25 182.6V133.831M105.667 158.146H70.4999M105.667 158.146L88.1531 133.831M105.667 158.146V109.517M123.25 133.831L140.833 158.146H175.954L140.833 109.517M123.25 133.831L105.667 109.517M140.833 109.517H176M140.833 109.517L105.806 61.0272M140.833 109.517H105.667M176 109.517L211.027 158.146H246.194M176 109.517H246.333M176 109.517L140.833 61.0272H105.806M316.527 158.146L334.11 182.6V133.971M316.527 158.146L316.574 109.656M316.527 158.146H281.36M316.527 158.146L281.5 109.517M334.11 133.971L351.554 158.146H386.721L351.694 109.656M334.11 133.971L316.574 109.656M351.694 109.656H386.86L351.694 61.0272H316.667M351.694 109.656L316.667 61.0272M351.694 109.656H316.574M316.667 61.0272V-36.2311H351.833V12.398H281.5M316.667 61.0272H281.5M281.5 12.398V61.0272M281.5 12.398C281.5 -6.59284 281.5 -17.2403 281.5 -36.2311L263.917 -60.6156M281.5 12.398L246.333 -36.2311M281.5 61.0272L246.333 12.2583M281.5 61.0272H246.333M281.5 61.0272V109.517M281.5 61.0272L299.037 85.3417M211.167 61.0272L176 12.2583H211.167M211.167 61.0272H246.333M211.167 61.0272V109.517L246.194 158.146M246.333 12.2583V-36.2311M246.333 12.2583H211.167M246.333 -36.2311V-85L263.917 -60.6156M246.333 -36.2311H211.167V12.2583M263.917 -60.6156V36.6427M211.167 12.2583L246.333 61.0272M246.333 61.0272V109.517M316.574 109.656L299.037 85.3417M246.194 158.146H281.36M281.5 109.517H246.333M246.333 109.517L281.36 158.146M299.037 85.3417V133.831M0.445717 12.398V-36.2311H35.6124M0.445717 12.398L35.3333 61.0272V109.517M35.6124 -36.2311V-84.8603L53.1259 -60.4758M35.6124 -36.2311L70.6395 12.5378M70.6395 12.5378V-36.0914L53.1259 -60.4758M70.6395 12.5378H140.973V-36.0914H105.806V61.0272M70.6395 12.5378V61.0272M70.6395 61.0272L53.1259 36.7825M70.6395 61.0272H105.806M70.6395 61.0272V109.517M70.6395 61.0272L88.1531 85.2719M53.1259 -60.4758V36.7825M105.667 109.517L88.1531 85.2719M70.6395 109.517H35.3333M70.6395 109.517L88.1531 133.831M35.3333 109.517L70.4999 158.146M35.3333 158.146H70.4999M88.1531 85.2719V133.831"
5
+ stroke="url(#paint0_radial_3803_83677)"
6
+ stroke-width="0.6"
7
+ />
8
+ <g filter="url(#filter0_bd_3803_83677)">
9
+ <rect x="144" y="28" width="64" height="64" rx="12" fill="white" />
10
+ <rect
11
+ x="144"
12
+ y="28"
13
+ width="64"
14
+ height="64"
15
+ rx="12"
16
+ fill="var(--workspace-accent-color, #169958)"
17
+ fill-opacity="0.02"
18
+ />
19
+ <rect
20
+ x="144.4"
21
+ y="28.4"
22
+ width="63.2"
23
+ height="63.2"
24
+ rx="11.6"
25
+ stroke="var(--workspace-accent-color, #169958)"
26
+ stroke-opacity="0.6"
27
+ stroke-width="0.8"
28
+ />
29
+ <rect
30
+ x="148.3"
31
+ y="32.3"
32
+ width="55.4"
33
+ height="55.4"
34
+ rx="7.7"
35
+ stroke="var(--workspace-accent-color, #169958)"
36
+ stroke-opacity="0.4"
37
+ stroke-width="0.6"
38
+ />
39
+ </g>
40
+ <rect x="238" y="39" width="44" height="44" rx="8" fill="white" />
41
+ <rect
42
+ x="238.344"
43
+ y="39.3438"
44
+ width="43.3125"
45
+ height="43.3125"
46
+ rx="7.65625"
47
+ stroke="#030712"
48
+ stroke-opacity="0.1"
49
+ stroke-width="0.6875"
50
+ stroke-dasharray="2 3"
51
+ />
52
+ <rect
53
+ x="240.956"
54
+ y="41.9563"
55
+ width="38.0875"
56
+ height="38.0875"
57
+ rx="5.29375"
58
+ stroke="#030712"
59
+ stroke-opacity="0.05"
60
+ stroke-width="0.4125"
61
+ />
62
+ <rect x="77" y="39" width="44" height="44" rx="8" fill="white" />
63
+ <rect
64
+ x="77.3438"
65
+ y="39.3438"
66
+ width="43.3125"
67
+ height="43.3125"
68
+ rx="7.65625"
69
+ stroke="#030712"
70
+ stroke-opacity="0.1"
71
+ stroke-width="0.6875"
72
+ stroke-dasharray="2 3"
73
+ />
74
+ <rect
75
+ x="79.9563"
76
+ y="41.9563"
77
+ width="38.0875"
78
+ height="38.0875"
79
+ rx="5.29375"
80
+ stroke="#030712"
81
+ stroke-opacity="0.05"
82
+ stroke-width="0.4125"
83
+ />
84
+ </g>
85
+ <defs>
86
+ <filter
87
+ id="filter0_bd_3803_83677"
88
+ x="124"
89
+ y="8"
90
+ width="104"
91
+ height="106"
92
+ filterUnits="userSpaceOnUse"
93
+ color-interpolation-filters="sRGB"
94
+ >
95
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
96
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="10" />
97
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_3803_83677" />
98
+ <feColorMatrix
99
+ in="SourceAlpha"
100
+ type="matrix"
101
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
102
+ result="hardAlpha"
103
+ />
104
+ <feOffset dy="2" />
105
+ <feGaussianBlur stdDeviation="10" />
106
+ <feComposite in2="hardAlpha" operator="out" />
107
+ <feColorMatrix
108
+ type="matrix"
109
+ values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.04 0"
110
+ />
111
+ <feBlend
112
+ mode="normal"
113
+ in2="effect1_backgroundBlur_3803_83677"
114
+ result="effect2_dropShadow_3803_83677"
115
+ />
116
+ <feBlend
117
+ mode="normal"
118
+ in="SourceGraphic"
119
+ in2="effect2_dropShadow_3803_83677"
120
+ result="shape"
121
+ />
122
+ </filter>
123
+ <radialGradient
124
+ id="paint0_radial_3803_83677"
125
+ cx="0"
126
+ cy="0"
127
+ r="1"
128
+ gradientUnits="userSpaceOnUse"
129
+ gradientTransform="translate(176 62) rotate(89.9669) scale(120.6 345.064)"
130
+ >
131
+ <stop stop-color="#D1D5DB" stop-opacity="0.56" />
132
+ <stop offset="0.537503" stop-color="#D1D5DB" stop-opacity="0" />
133
+ </radialGradient>
134
+ <clipPath id="clip0_3803_83677">
135
+ <rect width="352" height="120" fill="white" />
136
+ </clipPath>
137
+ </defs>
138
+ </svg>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} IconEmptyProps */
2
+ /** @typedef {typeof __propDef.events} IconEmptyEvents */
3
+ /** @typedef {typeof __propDef.slots} IconEmptySlots */
4
+ export default class IconEmpty extends SvelteComponent<{
5
+ [x: string]: never;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type IconEmptyProps = typeof __propDef.props;
11
+ export type IconEmptyEvents = typeof __propDef.events;
12
+ export type IconEmptySlots = typeof __propDef.slots;
13
+ import { SvelteComponent } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ [x: string]: never;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,91 @@
1
+ <script>export let classes = "";
2
+ </script>
3
+
4
+ <svg class={classes} viewBox="0 0 97 118" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <g filter="url(#filter0_d_286_1985)">
6
+ <g filter="url(#filter1_b_286_1985)">
7
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="white" />
8
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="currentColor" fill-opacity="0.02" />
9
+ <rect
10
+ x="20.4"
11
+ y="18.4"
12
+ width="56.2"
13
+ height="78.2"
14
+ rx="5.6"
15
+ stroke="currentColor"
16
+ stroke-opacity="0.6"
17
+ stroke-width="0.8"
18
+ />
19
+ </g>
20
+ <rect
21
+ x="23.3"
22
+ y="21.3"
23
+ width="50.4"
24
+ height="72.4"
25
+ rx="3.7"
26
+ stroke="currentColor"
27
+ stroke-opacity="0.2"
28
+ stroke-width="0.6"
29
+ />
30
+ <path
31
+ d="M37.2411 26.3889H30.2589C29.0128 26.3889 28 27.4017 28 28.6478V35.63C28 36.8761 29.0128 37.8889 30.2589 37.8889H37.2411C38.4872 37.8889 39.5 36.8761 39.5 35.63V28.6478C39.5 27.4017 38.4872 26.3889 37.2411 26.3889ZM31.5157 35.2439C31.3958 35.3638 31.2381 35.4246 31.0804 35.4246C30.9226 35.4246 30.7649 35.3646 30.645 35.2439C30.4043 35.0032 30.4043 34.613 30.645 34.3723L32.2632 32.7541L30.645 31.1359C30.4043 30.8952 30.4043 30.5051 30.645 30.2644C30.8857 30.0237 31.2759 30.0237 31.5165 30.2644L33.5701 32.318C33.8108 32.5586 33.8108 32.9488 33.5701 33.1895L31.5165 35.2431L31.5157 35.2439ZM36.4196 35.4246H34.3661C34.026 35.4246 33.75 35.1486 33.75 34.8085C33.75 34.4685 34.026 34.1925 34.3661 34.1925H36.4196C36.7597 34.1925 37.0357 34.4685 37.0357 34.8085C37.0357 35.1486 36.7597 35.4246 36.4196 35.4246Z"
32
+ fill="currentColor"
33
+ />
34
+ <rect x="28" y="45" width="10" height="2" rx="1" fill="currentColor" />
35
+ <rect x="28" y="65" width="10" height="2" rx="1" fill="currentColor" />
36
+ <rect x="28" y="81" width="10" height="2" rx="1" fill="currentColor" />
37
+ <rect x="31" y="49" width="14" height="2" rx="1" fill="currentColor" fill-opacity="0.4" />
38
+ <rect x="31" y="69" width="12" height="2" rx="1" fill="currentColor" fill-opacity="0.4" />
39
+ <rect x="31" y="61" width="14" height="2" rx="1" fill="currentColor" fill-opacity="0.4" />
40
+ <rect x="31" y="77" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.4" />
41
+ <rect x="34" y="53" width="22" height="2" rx="1" fill="currentColor" fill-opacity="0.4" />
42
+ <rect x="34" y="73" width="17" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
43
+ <rect x="34" y="57" width="17" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
44
+ </g>
45
+ <defs>
46
+ <filter
47
+ id="filter0_d_286_1985"
48
+ x="0"
49
+ y="0"
50
+ width="97"
51
+ height="119"
52
+ filterUnits="userSpaceOnUse"
53
+ color-interpolation-filters="sRGB"
54
+ >
55
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
56
+ <feColorMatrix
57
+ in="SourceAlpha"
58
+ type="matrix"
59
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
60
+ result="hardAlpha"
61
+ />
62
+ <feOffset dy="2" />
63
+ <feGaussianBlur stdDeviation="10" />
64
+ <feColorMatrix
65
+ type="matrix"
66
+ values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.04 0"
67
+ />
68
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_286_1985" />
69
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_286_1985" result="shape" />
70
+ </filter>
71
+ <filter
72
+ id="filter1_b_286_1985"
73
+ x="0"
74
+ y="-2"
75
+ width="97"
76
+ height="119"
77
+ filterUnits="userSpaceOnUse"
78
+ color-interpolation-filters="sRGB"
79
+ >
80
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
81
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="10" />
82
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_286_1985" />
83
+ <feBlend
84
+ mode="normal"
85
+ in="SourceGraphic"
86
+ in2="effect1_backgroundBlur_286_1985"
87
+ result="shape"
88
+ />
89
+ </filter>
90
+ </defs>
91
+ </svg>
@@ -0,0 +1,16 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ classes?: string | undefined;
5
+ };
6
+ events: {
7
+ [evt: string]: CustomEvent<any>;
8
+ };
9
+ slots: {};
10
+ };
11
+ export type IconFileProps = typeof __propDef.props;
12
+ export type IconFileEvents = typeof __propDef.events;
13
+ export type IconFileSlots = typeof __propDef.slots;
14
+ export default class IconFile extends SvelteComponent<IconFileProps, IconFileEvents, IconFileSlots> {
15
+ }
16
+ export {};
@@ -0,0 +1,97 @@
1
+ <script>export let classes = "";
2
+ </script>
3
+
4
+ <svg class={classes} viewBox="0 0 97 117" fill="white" xmlns="http://www.w3.org/2000/svg">
5
+ <g filter="url(#filter0_d_270_7353)">
6
+ <g filter="url(#filter1_b_270_7353)">
7
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="white" />
8
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="currentColor" fill-opacity="0.02" />
9
+ <rect
10
+ x="20.4"
11
+ y="18.4"
12
+ width="56.2"
13
+ height="78.2"
14
+ rx="5.6"
15
+ stroke="currentColor"
16
+ stroke-opacity="0.6"
17
+ stroke-width="0.8"
18
+ />
19
+ </g>
20
+ <rect
21
+ x="23.3"
22
+ y="21.3"
23
+ width="50.4"
24
+ height="72.4"
25
+ rx="3.7"
26
+ stroke="currentColor"
27
+ stroke-opacity="0.2"
28
+ stroke-width="0.6"
29
+ />
30
+ <rect x="28" y="45" width="19" height="2" rx="1" fill="currentColor" />
31
+ <rect x="28" y="68" width="15" height="2" rx="1" fill="currentColor" />
32
+ <rect x="59" y="50" width="10" height="2" rx="1" fill="currentColor" />
33
+ <rect x="57" y="73" width="12" height="2" rx="1" fill="currentColor" />
34
+ <rect x="55" y="54" width="14" height="2" rx="1" fill="currentColor" />
35
+ <rect x="55" y="77" width="14" height="2" rx="1" fill="currentColor" />
36
+ <rect x="59" y="58" width="10" height="2" rx="1" fill="currentColor" />
37
+ <rect x="57" y="62" width="12" height="2" rx="1" fill="currentColor" />
38
+ <rect x="61" y="81" width="8" height="2" rx="1" fill="currentColor" />
39
+ <rect x="28" y="50" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
40
+ <rect x="28" y="73" width="12" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
41
+ <rect x="28" y="54" width="11" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
42
+ <rect x="28" y="77" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
43
+ <rect x="28" y="58" width="14" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
44
+ <rect x="28" y="81" width="18" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
45
+ <rect x="28" y="62" width="16" height="2" rx="1" fill="currentColor" fill-opacity="0.2" />
46
+ <path
47
+ d="M34.3 26.7778C30.8692 26.7778 28.0778 29.5692 28.0778 33C28.0778 36.4308 30.8692 39.2222 34.3 39.2222C37.7308 39.2222 40.5222 36.4308 40.5222 33C40.5222 29.5692 37.7308 26.7778 34.3 26.7778ZM35.9372 35.5223C35.6634 35.8023 35.2932 35.9929 34.8833 36.087V36.3055C34.8833 36.6275 34.622 36.8889 34.3 36.8889C33.978 36.8889 33.7167 36.6275 33.7167 36.3055V36.0893C32.9498 35.9291 32.4131 35.4593 32.1868 34.7173C32.0927 34.4093 32.2661 34.0834 32.5749 33.9893C32.8829 33.8944 33.2088 34.0694 33.3029 34.3774C33.3954 34.68 33.5899 34.9888 34.3303 34.9888C34.6414 34.9888 34.9308 34.883 35.1034 34.7072C35.2201 34.5874 35.2777 34.4428 35.273 34.2779C35.2668 34.0267 35.1773 33.7428 34.1903 33.5662C32.6527 33.2917 32.3408 32.398 32.2918 31.8893C32.2436 31.3869 32.3828 30.9397 32.6947 30.5967C32.9723 30.291 33.3534 30.1191 33.7174 30.025V29.6944C33.7174 29.3724 33.9788 29.1111 34.3008 29.1111C34.6228 29.1111 34.8841 29.3724 34.8841 29.6944V30.0071C35.504 30.1588 35.9909 30.5624 36.2514 31.1792C36.3767 31.4763 36.2374 31.8185 35.9411 31.9438C35.6432 32.0682 35.3018 31.9298 35.1766 31.6334C35.1206 31.5012 34.951 31.0999 34.3303 31.0999C34.1157 31.0999 33.733 31.187 33.5572 31.3807C33.502 31.4421 33.4304 31.5494 33.4522 31.7773C33.4639 31.8963 33.4989 32.258 34.3949 32.4182C35.7264 32.657 36.4148 33.273 36.4389 34.2491C36.4506 34.7274 36.2724 35.1793 35.9372 35.5223Z"
48
+ fill="currentColor"
49
+ />
50
+ </g>
51
+ <defs>
52
+ <filter
53
+ id="filter0_d_270_7353"
54
+ x="0"
55
+ y="0"
56
+ width="97"
57
+ height="119"
58
+ filterUnits="userSpaceOnUse"
59
+ color-interpolation-filters="sRGB"
60
+ >
61
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
62
+ <feColorMatrix
63
+ in="SourceAlpha"
64
+ type="matrix"
65
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
66
+ result="hardAlpha"
67
+ />
68
+ <feOffset dy="2" />
69
+ <feGaussianBlur stdDeviation="10" />
70
+ <feColorMatrix
71
+ type="matrix"
72
+ values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.04 0"
73
+ />
74
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_270_7353" />
75
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_270_7353" result="shape" />
76
+ </filter>
77
+ <filter
78
+ id="filter1_b_270_7353"
79
+ x="0"
80
+ y="-2"
81
+ width="97"
82
+ height="119"
83
+ filterUnits="userSpaceOnUse"
84
+ color-interpolation-filters="sRGB"
85
+ >
86
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
87
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="10" />
88
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_270_7353" />
89
+ <feBlend
90
+ mode="normal"
91
+ in="SourceGraphic"
92
+ in2="effect1_backgroundBlur_270_7353"
93
+ result="shape"
94
+ />
95
+ </filter>
96
+ </defs>
97
+ </svg>
@@ -0,0 +1,16 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ classes?: string | undefined;
5
+ };
6
+ events: {
7
+ [evt: string]: CustomEvent<any>;
8
+ };
9
+ slots: {};
10
+ };
11
+ export type IconInvoiceProps = typeof __propDef.props;
12
+ export type IconInvoiceEvents = typeof __propDef.events;
13
+ export type IconInvoiceSlots = typeof __propDef.slots;
14
+ export default class IconInvoice extends SvelteComponent<IconInvoiceProps, IconInvoiceEvents, IconInvoiceSlots> {
15
+ }
16
+ export {};
@@ -0,0 +1,83 @@
1
+ <script>export let classes = "";
2
+ </script>
3
+
4
+ <svg class={classes} viewBox="0 0 97 117" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <g filter="url(#filter0_d_286_3986)">
6
+ <rect x="20" y="18" width="57" height="79" rx="6" fill="white" />
7
+ <rect
8
+ x="20.4"
9
+ y="18.4"
10
+ width="56.2"
11
+ height="78.2"
12
+ rx="5.6"
13
+ stroke="currentColor"
14
+ stroke-opacity="0.05"
15
+ stroke-width="0.8"
16
+ />
17
+ <rect
18
+ x="23.3"
19
+ y="21.3"
20
+ width="50.4"
21
+ height="72.4"
22
+ rx="3.7"
23
+ stroke="currentColor"
24
+ stroke-opacity="0.05"
25
+ stroke-width="0.6"
26
+ />
27
+ <rect x="28" y="45" width="19" height="2" rx="1" fill="currentColor" />
28
+ <rect x="28" y="68" width="15" height="2" rx="1" fill="currentColor" />
29
+ <rect x="59" y="50" width="10" height="2" rx="1" fill="currentColor" />
30
+ <rect x="57" y="73" width="12" height="2" rx="1" fill="currentColor" />
31
+ <rect x="55" y="54" width="14" height="2" rx="1" fill="currentColor" />
32
+ <rect x="55" y="77" width="14" height="2" rx="1" fill="currentColor" />
33
+ <rect x="59" y="58" width="10" height="2" rx="1" fill="currentColor" />
34
+ <rect x="57" y="62" width="12" height="2" rx="1" fill="currentColor" />
35
+ <rect x="61" y="81" width="8" height="2" rx="1" fill="currentColor" />
36
+ <rect x="28" y="50" width="16" height="2" rx="1" fill="#E5E7EB" />
37
+ <rect x="28" y="73" width="12" height="2" rx="1" fill="#E5E7EB" />
38
+ <rect x="28" y="54" width="11" height="2" rx="1" fill="#E5E7EB" />
39
+ <rect x="28" y="77" width="16" height="2" rx="1" fill="#E5E7EB" />
40
+ <rect x="28" y="58" width="14" height="2" rx="1" fill="#E5E7EB" />
41
+ <rect x="28" y="81" width="18" height="2" rx="1" fill="#E5E7EB" />
42
+ <rect x="28" y="62" width="16" height="2" rx="1" fill="#E5E7EB" />
43
+ <path
44
+ d="M31.8967 37.8775C32.6223 38.2368 33.4367 38.4445 34.3 38.4445C37.3022 38.4445 39.7444 36.0022 39.7444 33C39.7444 32.1367 39.5368 31.3231 39.1782 30.5967L31.8967 37.8775Z"
45
+ fill="currentColor"
46
+ />
47
+ <path
48
+ d="M38.1477 29.1523C37.1614 28.1661 35.8003 27.5555 34.3 27.5555C31.2978 27.5555 28.8556 29.9978 28.8556 33C28.8556 34.5011 29.4661 35.8622 30.4523 36.8477L38.1477 29.1523Z"
49
+ fill="currentColor"
50
+ />
51
+ <path
52
+ d="M28.8556 39.0278C28.7062 39.0278 28.5569 38.971 28.4433 38.8567C28.2154 38.6288 28.2154 38.2593 28.4433 38.0314L39.3322 27.1433C39.5601 26.9154 39.9296 26.9154 40.1574 27.1433C40.3853 27.3712 40.3853 27.7407 40.1574 27.9686L29.2678 38.8567C29.1542 38.9702 29.0049 39.0278 28.8556 39.0278Z"
53
+ fill="currentColor"
54
+ />
55
+ </g>
56
+ <defs>
57
+ <filter
58
+ id="filter0_d_286_3986"
59
+ x="0"
60
+ y="0"
61
+ width="97"
62
+ height="119"
63
+ filterUnits="userSpaceOnUse"
64
+ color-interpolation-filters="sRGB"
65
+ >
66
+ <feFlood flood-opacity="0" result="BackgroundImageFix" />
67
+ <feColorMatrix
68
+ in="SourceAlpha"
69
+ type="matrix"
70
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
71
+ result="hardAlpha"
72
+ />
73
+ <feOffset dy="2" />
74
+ <feGaussianBlur stdDeviation="10" />
75
+ <feColorMatrix
76
+ type="matrix"
77
+ values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.04 0"
78
+ />
79
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_286_3986" />
80
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_286_3986" result="shape" />
81
+ </filter>
82
+ </defs>
83
+ </svg>
@@ -0,0 +1,16 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ classes?: string | undefined;
5
+ };
6
+ events: {
7
+ [evt: string]: CustomEvent<any>;
8
+ };
9
+ slots: {};
10
+ };
11
+ export type IconNoResultsProps = typeof __propDef.props;
12
+ export type IconNoResultsEvents = typeof __propDef.events;
13
+ export type IconNoResultsSlots = typeof __propDef.slots;
14
+ export default class IconNoResults extends SvelteComponent<IconNoResultsProps, IconNoResultsEvents, IconNoResultsSlots> {
15
+ }
16
+ export {};