@scalar/oas-utils
Advanced tools
Comparing version 0.2.14 to 0.2.15
# @scalar/oas-utils | ||
## 0.2.15 | ||
### Patch Changes | ||
- 1dab515: feat: revamp address bar | ||
- Updated dependencies [5e060b1] | ||
- @scalar/themes@0.9.15 | ||
## 0.2.14 | ||
@@ -4,0 +12,0 @@ |
@@ -71,2 +71,3 @@ import { z } from 'zod'; | ||
uid: z.ZodDefault<z.ZodOptional<z.ZodString>>; | ||
url: z.ZodDefault<z.ZodOptional<z.ZodString>>; | ||
requestUid: z.ZodString; | ||
@@ -550,2 +551,3 @@ name: z.ZodDefault<z.ZodOptional<z.ZodString>>; | ||
name: string; | ||
url: string; | ||
parameters: { | ||
@@ -650,2 +652,3 @@ path: { | ||
name?: string | undefined; | ||
url?: string | undefined; | ||
parameters?: { | ||
@@ -753,2 +756,3 @@ path?: { | ||
name: string; | ||
url: string; | ||
parameters: { | ||
@@ -755,0 +759,0 @@ path: { |
@@ -26,2 +26,3 @@ import { z } from 'zod'; | ||
uid: nanoidSchema, | ||
url: z.string().optional().default(''), | ||
requestUid: z.string().min(7), | ||
@@ -28,0 +29,0 @@ name: z.string().optional().default('Name'), |
@@ -18,2 +18,2 @@ export { concatenateUrlAndPath } from './concatenateUrlAndPath.js'; | ||
export { defaultStateFactory, ssrState } from './ssrState.js'; | ||
export { camelToTitleWords } from './string.js'; | ||
export { camelToTitleWords, capitalize } from './string.js'; |
@@ -10,2 +10,7 @@ /** | ||
export declare const camelToTitleWords: (camelStr: string) => string; | ||
/** | ||
* Capitalize first letter | ||
* You should normally do this in css, only use this if you have to | ||
*/ | ||
export declare const capitalize: (str: string) => string; | ||
//# sourceMappingURL=string.d.ts.map |
@@ -13,3 +13,8 @@ /** | ||
.trim(); | ||
/** | ||
* Capitalize first letter | ||
* You should normally do this in css, only use this if you have to | ||
*/ | ||
const capitalize = (str) => str[0].toUpperCase() + str.slice(1); | ||
export { camelToTitleWords }; | ||
export { camelToTitleWords, capitalize }; |
@@ -19,3 +19,3 @@ { | ||
], | ||
"version": "0.2.14", | ||
"version": "0.2.15", | ||
"engines": { | ||
@@ -94,3 +94,3 @@ "node": ">=18" | ||
"zod": "^3.22.4", | ||
"@scalar/themes": "0.9.14" | ||
"@scalar/themes": "0.9.15" | ||
}, | ||
@@ -107,3 +107,3 @@ "devDependencies": { | ||
"vitest": "^1.6.0", | ||
"@scalar/build-tooling": "0.1.9" | ||
"@scalar/build-tooling": "0.1.10" | ||
}, | ||
@@ -110,0 +110,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
240093
5203
+ Added@scalar/themes@0.9.15(transitive)
- Removed@scalar/themes@0.9.14(transitive)
Updated@scalar/themes@0.9.15