@next-degree/pickle-shared-js 0.6.48 → 0.6.50

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 (59) hide show
  1. package/dist/components/jobPost/JobDescription.cjs +13 -4
  2. package/dist/components/jobPost/JobDescription.cjs.map +1 -1
  3. package/dist/components/jobPost/JobDescription.js +13 -4
  4. package/dist/components/jobPost/JobDescription.js.map +1 -1
  5. package/dist/components/jobPost/JobPost.cjs +13 -4
  6. package/dist/components/jobPost/JobPost.cjs.map +1 -1
  7. package/dist/components/jobPost/JobPost.d.cts +1 -1
  8. package/dist/components/jobPost/JobPost.d.ts +1 -1
  9. package/dist/components/jobPost/JobPost.js +13 -4
  10. package/dist/components/jobPost/JobPost.js.map +1 -1
  11. package/dist/components/primitives/command.d.cts +1 -1
  12. package/dist/components/primitives/command.d.ts +1 -1
  13. package/dist/components/ui/ReadMore.cjs +13 -4
  14. package/dist/components/ui/ReadMore.cjs.map +1 -1
  15. package/dist/components/ui/ReadMore.js +13 -4
  16. package/dist/components/ui/ReadMore.js.map +1 -1
  17. package/dist/components/ui/Select.cjs +5 -11
  18. package/dist/components/ui/Select.cjs.map +1 -1
  19. package/dist/components/ui/Select.js +5 -11
  20. package/dist/components/ui/Select.js.map +1 -1
  21. package/dist/components/ui/StepTabs.cjs +92 -0
  22. package/dist/components/ui/StepTabs.cjs.map +1 -0
  23. package/dist/components/ui/StepTabs.d.cts +13 -0
  24. package/dist/components/ui/StepTabs.d.ts +13 -0
  25. package/dist/components/ui/StepTabs.js +58 -0
  26. package/dist/components/ui/StepTabs.js.map +1 -0
  27. package/dist/{displayText-mYUVo6Ek.d.cts → displayText-BCQw5Qq-.d.cts} +2 -2
  28. package/dist/{displayText-DDf9iWyg.d.ts → displayText-Bqmpx1Va.d.ts} +2 -2
  29. package/dist/hooks/useDisplayText.d.cts +3 -3
  30. package/dist/hooks/useDisplayText.d.ts +3 -3
  31. package/dist/index.cjs +18 -15
  32. package/dist/index.cjs.map +1 -1
  33. package/dist/index.d.cts +4 -4
  34. package/dist/index.d.ts +4 -4
  35. package/dist/index.js +18 -15
  36. package/dist/index.js.map +1 -1
  37. package/dist/{job_posting_service_latest-Dn5s8beY.d.cts → job_posting_service_latest-C2z66hFK.d.cts} +177 -177
  38. package/dist/{job_posting_service_latest-Dn5s8beY.d.ts → job_posting_service_latest-C2z66hFK.d.ts} +177 -177
  39. package/dist/lib/locations.d.cts +2 -2
  40. package/dist/lib/locations.d.ts +2 -2
  41. package/dist/lib/mappings.d.cts +3 -3
  42. package/dist/lib/mappings.d.ts +3 -3
  43. package/dist/lib/salaryRange.d.cts +1 -1
  44. package/dist/lib/salaryRange.d.ts +1 -1
  45. package/dist/services/displayText.d.cts +3 -3
  46. package/dist/services/displayText.d.ts +3 -3
  47. package/dist/styles/globals.css +96 -6
  48. package/dist/styles/globals.css.map +1 -1
  49. package/dist/types/data/company_service_latest.d.cts +1 -1
  50. package/dist/types/data/company_service_latest.d.ts +1 -1
  51. package/dist/types/data/job_posting_service_latest.d.cts +1 -1
  52. package/dist/types/data/job_posting_service_latest.d.ts +1 -1
  53. package/dist/types/data/shared_pickle_output_latest.d.cts +1 -1
  54. package/dist/types/data/shared_pickle_output_latest.d.ts +1 -1
  55. package/package.json +5 -1
  56. package/dist/{company_service_latest-DelYl1hO.d.cts → company_service_latest-B7KhyYDc.d.cts} +174 -174
  57. package/dist/{company_service_latest-DelYl1hO.d.ts → company_service_latest-B7KhyYDc.d.ts} +174 -174
  58. package/dist/{shared_pickle_output_latest-DbAgINuf.d.cts → shared_pickle_output_latest-_L9GxVle.d.cts} +11 -11
  59. package/dist/{shared_pickle_output_latest-DbAgINuf.d.ts → shared_pickle_output_latest-_L9GxVle.d.ts} +11 -11
@@ -1,5 +1,5 @@
1
- import { J as JobPostModel } from '../job_posting_service_latest-Dn5s8beY.cjs';
2
- import { P as PostalAddressModel } from '../shared_pickle_output_latest-DbAgINuf.cjs';
1
+ import { J as JobPostModel } from '../job_posting_service_latest-C2z66hFK.cjs';
2
+ import { P as PostalAddressModel } from '../shared_pickle_output_latest-_L9GxVle.cjs';
3
3
  import 'zod';
4
4
 
5
5
  declare function formattedAddress(address: PostalAddressModel): string | null;
@@ -1,5 +1,5 @@
1
- import { J as JobPostModel } from '../job_posting_service_latest-Dn5s8beY.js';
2
- import { P as PostalAddressModel } from '../shared_pickle_output_latest-DbAgINuf.js';
1
+ import { J as JobPostModel } from '../job_posting_service_latest-C2z66hFK.js';
2
+ import { P as PostalAddressModel } from '../shared_pickle_output_latest-_L9GxVle.js';
3
3
  import 'zod';
4
4
 
5
5
  declare function formattedAddress(address: PostalAddressModel): string | null;
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { b as bestFitDisplayText, f as clinicalSettingDisplayText, d as clinicalSpecialtyDisplayText, c as currencyDisplayText, g as defaultMappings, a as employmentLevelDisplayText, e as employmentTypeDisplayText, j as jobFunctionDisplayText, s as shiftDisplayText, u as unitTextDisplayText } from '../displayText-mYUVo6Ek.cjs';
3
- import '../shared_pickle_output_latest-DbAgINuf.cjs';
4
- import '../job_posting_service_latest-Dn5s8beY.cjs';
2
+ export { b as bestFitDisplayText, f as clinicalSettingDisplayText, d as clinicalSpecialtyDisplayText, c as currencyDisplayText, g as defaultMappings, a as employmentLevelDisplayText, e as employmentTypeDisplayText, j as jobFunctionDisplayText, s as shiftDisplayText, u as unitTextDisplayText } from '../displayText-BCQw5Qq-.cjs';
3
+ import '../shared_pickle_output_latest-_L9GxVle.cjs';
4
+ import '../job_posting_service_latest-C2z66hFK.cjs';
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { b as bestFitDisplayText, f as clinicalSettingDisplayText, d as clinicalSpecialtyDisplayText, c as currencyDisplayText, g as defaultMappings, a as employmentLevelDisplayText, e as employmentTypeDisplayText, j as jobFunctionDisplayText, s as shiftDisplayText, u as unitTextDisplayText } from '../displayText-DDf9iWyg.js';
3
- import '../shared_pickle_output_latest-DbAgINuf.js';
4
- import '../job_posting_service_latest-Dn5s8beY.js';
2
+ export { b as bestFitDisplayText, f as clinicalSettingDisplayText, d as clinicalSpecialtyDisplayText, c as currencyDisplayText, g as defaultMappings, a as employmentLevelDisplayText, e as employmentTypeDisplayText, j as jobFunctionDisplayText, s as shiftDisplayText, u as unitTextDisplayText } from '../displayText-Bqmpx1Va.js';
3
+ import '../shared_pickle_output_latest-_L9GxVle.js';
4
+ import '../job_posting_service_latest-C2z66hFK.js';
@@ -1,4 +1,4 @@
1
- import { M as MonetaryAmountModel } from '../shared_pickle_output_latest-DbAgINuf.cjs';
1
+ import { M as MonetaryAmountModel } from '../shared_pickle_output_latest-_L9GxVle.cjs';
2
2
  import 'zod';
3
3
 
4
4
  declare function salaryRange(salary?: MonetaryAmountModel): string | null;
@@ -1,4 +1,4 @@
1
- import { M as MonetaryAmountModel } from '../shared_pickle_output_latest-DbAgINuf.js';
1
+ import { M as MonetaryAmountModel } from '../shared_pickle_output_latest-_L9GxVle.js';
2
2
  import 'zod';
3
3
 
4
4
  declare function salaryRange(salary?: MonetaryAmountModel): string | null;
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { D as DisplayTextConfig, h as DisplayTextService, I as IDisplayTextService, S as ServiceMappings } from '../displayText-mYUVo6Ek.cjs';
3
- import '../shared_pickle_output_latest-DbAgINuf.cjs';
4
- import '../job_posting_service_latest-Dn5s8beY.cjs';
2
+ export { D as DisplayTextConfig, h as DisplayTextService, I as IDisplayTextService, S as ServiceMappings } from '../displayText-BCQw5Qq-.cjs';
3
+ import '../shared_pickle_output_latest-_L9GxVle.cjs';
4
+ import '../job_posting_service_latest-C2z66hFK.cjs';
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { D as DisplayTextConfig, h as DisplayTextService, I as IDisplayTextService, S as ServiceMappings } from '../displayText-DDf9iWyg.js';
3
- import '../shared_pickle_output_latest-DbAgINuf.js';
4
- import '../job_posting_service_latest-Dn5s8beY.js';
2
+ export { D as DisplayTextConfig, h as DisplayTextService, I as IDisplayTextService, S as ServiceMappings } from '../displayText-Bqmpx1Va.js';
3
+ import '../shared_pickle_output_latest-_L9GxVle.js';
4
+ import '../job_posting_service_latest-C2z66hFK.js';
@@ -864,9 +864,6 @@ video {
864
864
  .m-1 {
865
865
  margin: 0.25rem;
866
866
  }
867
- .m-4 {
868
- margin: 1rem;
869
- }
870
867
  .-mx-1 {
871
868
  margin-left: -0.25rem;
872
869
  margin-right: -0.25rem;
@@ -936,9 +933,6 @@ video {
936
933
  .h-16 {
937
934
  height: 4rem;
938
935
  }
939
- .h-24 {
940
- height: 6rem;
941
- }
942
936
  .h-3 {
943
937
  height: 0.75rem;
944
938
  }
@@ -963,6 +957,9 @@ video {
963
957
  .h-\[36rem\] {
964
958
  height: 36rem;
965
959
  }
960
+ .h-\[45px\] {
961
+ height: 45px;
962
+ }
966
963
  .h-full {
967
964
  height: 100%;
968
965
  }
@@ -1054,9 +1051,15 @@ video {
1054
1051
  .max-w-xs {
1055
1052
  max-width: 20rem;
1056
1053
  }
1054
+ .flex-1 {
1055
+ flex: 1 1 0%;
1056
+ }
1057
1057
  .shrink-0 {
1058
1058
  flex-shrink: 0;
1059
1059
  }
1060
+ .grow {
1061
+ flex-grow: 1;
1062
+ }
1060
1063
  .translate-x-\[-50\%\] {
1061
1064
  --tw-translate-x: -50%;
1062
1065
  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));
@@ -1087,6 +1090,9 @@ video {
1087
1090
  .animate-spin {
1088
1091
  animation: spin 1s linear infinite;
1089
1092
  }
1093
+ .cursor-default {
1094
+ cursor: default;
1095
+ }
1090
1096
  .cursor-pointer {
1091
1097
  cursor: pointer;
1092
1098
  }
@@ -1103,6 +1109,9 @@ video {
1103
1109
  -moz-appearance: none;
1104
1110
  appearance: none;
1105
1111
  }
1112
+ .grid-cols-1 {
1113
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1114
+ }
1106
1115
  .flex-row {
1107
1116
  flex-direction: row;
1108
1117
  }
@@ -1202,6 +1211,10 @@ video {
1202
1211
  .rounded-xl {
1203
1212
  border-radius: 0.75rem;
1204
1213
  }
1214
+ .rounded-b-md {
1215
+ border-bottom-right-radius: calc(var(--radius) - 2px);
1216
+ border-bottom-left-radius: calc(var(--radius) - 2px);
1217
+ }
1205
1218
  .rounded-t-3xl {
1206
1219
  border-top-left-radius: 1.5rem;
1207
1220
  border-top-right-radius: 1.5rem;
@@ -1213,6 +1226,9 @@ video {
1213
1226
  border-top-width: 1px;
1214
1227
  border-bottom-width: 1px;
1215
1228
  }
1229
+ .border-b {
1230
+ border-bottom-width: 1px;
1231
+ }
1216
1232
  .border-r {
1217
1233
  border-right-width: 1px;
1218
1234
  }
@@ -1309,6 +1325,9 @@ video {
1309
1325
  .p-4 {
1310
1326
  padding: 1rem;
1311
1327
  }
1328
+ .p-5 {
1329
+ padding: 1.25rem;
1330
+ }
1312
1331
  .p-6 {
1313
1332
  padding: 1.5rem;
1314
1333
  }
@@ -1328,6 +1347,10 @@ video {
1328
1347
  padding-left: 1rem;
1329
1348
  padding-right: 1rem;
1330
1349
  }
1350
+ .px-5 {
1351
+ padding-left: 1.25rem;
1352
+ padding-right: 1.25rem;
1353
+ }
1331
1354
  .px-6 {
1332
1355
  padding-left: 1.5rem;
1333
1356
  padding-right: 1.5rem;
@@ -1401,6 +1424,13 @@ video {
1401
1424
  font-size: 1.5rem;
1402
1425
  line-height: 2rem;
1403
1426
  }
1427
+ .text-3xl {
1428
+ font-size: 1.875rem;
1429
+ line-height: 2.25rem;
1430
+ }
1431
+ .text-\[15px\] {
1432
+ font-size: 15px;
1433
+ }
1404
1434
  .text-base {
1405
1435
  font-size: 1rem;
1406
1436
  line-height: 1.5rem;
@@ -1463,6 +1493,14 @@ video {
1463
1493
  .text-current {
1464
1494
  color: currentColor;
1465
1495
  }
1496
+ .text-gray-500 {
1497
+ --tw-text-opacity: 1;
1498
+ color: rgb(107 114 128 / var(--tw-text-opacity, 1));
1499
+ }
1500
+ .text-gray-800 {
1501
+ --tw-text-opacity: 1;
1502
+ color: rgb(31 41 55 / var(--tw-text-opacity, 1));
1503
+ }
1466
1504
  .text-green-100 {
1467
1505
  color: hsla(164, 81%, 6%, 1);
1468
1506
  }
@@ -1495,6 +1533,13 @@ video {
1495
1533
  .text-purple-100 {
1496
1534
  color: hsla(253, 94%, 64%, 1);
1497
1535
  }
1536
+ .text-purple-80 {
1537
+ color: hsla(253, 93%, 71%, 1);
1538
+ }
1539
+ .text-red-400 {
1540
+ --tw-text-opacity: 1;
1541
+ color: rgb(248 113 113 / var(--tw-text-opacity, 1));
1542
+ }
1498
1543
  .text-red-600 {
1499
1544
  --tw-text-opacity: 1;
1500
1545
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
@@ -1864,6 +1909,9 @@ video {
1864
1909
  border-top-left-radius: calc(var(--radius) - 2px);
1865
1910
  border-bottom-left-radius: calc(var(--radius) - 2px);
1866
1911
  }
1912
+ .first\:rounded-tl-md:first-child {
1913
+ border-top-left-radius: calc(var(--radius) - 2px);
1914
+ }
1867
1915
  .first\:border-l:first-child {
1868
1916
  border-left-width: 1px;
1869
1917
  }
@@ -1871,6 +1919,9 @@ video {
1871
1919
  border-top-right-radius: calc(var(--radius) - 2px);
1872
1920
  border-bottom-right-radius: calc(var(--radius) - 2px);
1873
1921
  }
1922
+ .last\:rounded-tr-md:last-child {
1923
+ border-top-right-radius: calc(var(--radius) - 2px);
1924
+ }
1874
1925
  .hover\:border-grey-10:hover {
1875
1926
  border-color: hsla(0, 0%, 90%, 1);
1876
1927
  }
@@ -2049,6 +2100,9 @@ video {
2049
2100
  --tw-text-opacity: 1;
2050
2101
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
2051
2102
  }
2103
+ .data-\[state\=active\]\:text-purple-100[data-state=active] {
2104
+ color: hsla(253, 94%, 64%, 1);
2105
+ }
2052
2106
  .data-\[state\=checked\]\:text-purple-100[data-state=checked] {
2053
2107
  color: hsla(253, 94%, 64%, 1);
2054
2108
  }
@@ -2065,6 +2119,18 @@ video {
2065
2119
  .data-\[disabled\=true\]\:opacity-50[data-disabled=true] {
2066
2120
  opacity: 0.5;
2067
2121
  }
2122
+ .data-\[state\=active\]\:shadow-\[inset_0_-1px_0_0\,0_1px_0_0\][data-state=active] {
2123
+ --tw-shadow: inset 0 -1px 0 0,0 1px 0 0;
2124
+ --tw-shadow-colored: inset 0 -1px 0 0 var(--tw-shadow-color), 0 1px 0 0 var(--tw-shadow-color);
2125
+ box-shadow:
2126
+ var(--tw-ring-offset-shadow, 0 0 #0000),
2127
+ var(--tw-ring-shadow, 0 0 #0000),
2128
+ var(--tw-shadow);
2129
+ }
2130
+ .data-\[state\=active\]\:shadow-current[data-state=active] {
2131
+ --tw-shadow-color: currentColor;
2132
+ --tw-shadow: var(--tw-shadow-colored);
2133
+ }
2068
2134
  .data-\[state\=open\]\:animate-in[data-state=open] {
2069
2135
  animation-name: enter;
2070
2136
  animation-duration: 150ms;
@@ -2119,6 +2185,21 @@ video {
2119
2185
  .data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open] {
2120
2186
  --tw-enter-translate-y: -48%;
2121
2187
  }
2188
+ .data-\[state\=active\]\:focus\:relative:focus[data-state=active] {
2189
+ position: relative;
2190
+ }
2191
+ .data-\[state\=active\]\:focus\:shadow-\[0_0_0_2px\]:focus[data-state=active] {
2192
+ --tw-shadow: 0 0 0 2px;
2193
+ --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color);
2194
+ box-shadow:
2195
+ var(--tw-ring-offset-shadow, 0 0 #0000),
2196
+ var(--tw-ring-shadow, 0 0 #0000),
2197
+ var(--tw-shadow);
2198
+ }
2199
+ .data-\[state\=active\]\:focus\:shadow-black:focus[data-state=active] {
2200
+ --tw-shadow-color: hsla(0, 0%, 0%, 1);
2201
+ --tw-shadow: var(--tw-shadow-colored);
2202
+ }
2122
2203
  .data-\[placeholder\]\:disabled\:text-grey-40:disabled[data-placeholder] {
2123
2204
  color: hsla(0, 0%, 60%, 1);
2124
2205
  }
@@ -2228,9 +2309,15 @@ video {
2228
2309
  .md\:max-w-lg {
2229
2310
  max-width: 32rem;
2230
2311
  }
2312
+ .md\:grid-cols-2 {
2313
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2314
+ }
2231
2315
  .md\:flex-row {
2232
2316
  flex-direction: row;
2233
2317
  }
2318
+ .md\:gap-8 {
2319
+ gap: 2rem;
2320
+ }
2234
2321
  .md\:text-lg {
2235
2322
  font-size: 1.125rem;
2236
2323
  line-height: 1.75rem;
@@ -2243,6 +2330,9 @@ video {
2243
2330
  .lg\:min-h-32 {
2244
2331
  min-height: 8rem;
2245
2332
  }
2333
+ .lg\:grid-cols-2 {
2334
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2335
+ }
2246
2336
  }
2247
2337
  .\[\&\:\:-webkit-search-cancel-button\]\:appearance-none::-webkit-search-cancel-button {
2248
2338
  -webkit-appearance: none;