@per-diem-calculator/vanilla 1.0.24 → 1.0.26

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 (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ This is an open source per diem calculator to pull lodging and meals per diem ra
5
5
  There are a few issues with the tools available as of May 2025:
6
6
 
7
7
  - No existing calculators for end users that pull both domestic and international rates and deductions
8
- - The General Services Administration (GSA) has an API that provides rates for CONUS (48 states) rates--however, no API is available for OCONUS rates by Department of Defense (DOD) for Alaska, Hawaii, and US territories, or by the State Dept. for all other locations.
8
+ - The General Services Administration (GSA) has an API that provides CONUS (48 states) rates--however, no API is available for OCONUS rates by Department of Defense (DOD) (Alaska, Hawaii, US territories) or by the State Dept. (all other locations).
9
9
  - No existing calculators for developers to easily pull domestic and international rates/deductions into their application
10
10
  - Many existing calculators limited to a single location and can't be used in one go for multi-destination trips
11
11
 
@@ -64,14 +64,14 @@ pdc.addEventListener('expenseUpdate', e => {
64
64
 
65
65
  ```
66
66
 
67
- ## Additional features
67
+ ## Additional Features
68
68
 
69
69
  - Save an expense report PDF that includes daily breakdown, rates used, and links to the original federal source
70
70
  - Full keyboard-only navigation support
71
71
  - API calls are reduced via both memoization by the calculator, and caching results in Cloudflare by the proxy
72
72
  - All features usable in both mobile and desktop widths
73
73
 
74
- ## Expense object
74
+ ## Expense Object
75
75
 
76
76
  ```
77
77
  {
@@ -101,7 +101,7 @@ pdc.addEventListener('expenseUpdate', e => {
101
101
  }
102
102
  ```
103
103
 
104
- ## Built with
104
+ ## Built With
105
105
 
106
106
  - TypeScript
107
107
  - Tailwind
@@ -117,3 +117,4 @@ pdc.addEventListener('expenseUpdate', e => {
117
117
  - Option to mark personal days and remove them from the final expense amount
118
118
  - React version - I used this project as a way to get familiar with native web components, but a React version will be shared soon
119
119
  - CDN option
120
+ - Tests
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@per-diem-calculator/vanilla",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "author": "Ahmad Dowla <ahmad.dowla@gmail.com>",
5
5
  "description": "Open source per diem calculator for both domestic and international trips. Built in TypeScript with Tailwind. Rates sourced from GSA, State Dept., and DOD.",
6
6
  "license": "MIT",