@vuedx/shared
Advanced tools
Comparing version 0.7.4-next-1649493814.0 to 0.7.4-next-1649577134.0
@@ -446,2 +446,3 @@ /** | ||
declare function ucfirst(str: string): string; | ||
declare function lcfirst(str: string): string; | ||
@@ -493,2 +494,2 @@ interface Options { | ||
export { Cache, DeepPartial, Disposable, DisposableScope, Event, EventEmitter, EventListener, EventProducer, EventSource, EventsOf, FileName, FilesystemSchemeFileName, KeyOf, Model, ModelEvents, Opaque, index as RPC, ReadonlyModel, SetOps, Telemetry, VueSFCDescriptorFileName, VueTemplateASTFileName, VueTsFileName, VueVirtualFileName, cache, cacheAll, cacheAllAsync, cacheAsync, camelCase, camelize, capitalize, chunk, clearMethodCache, collect, collectError, computed, concat, createCache, createModel, createMultiKeyCache, createVersionedCache, createWeakMapCache, debug, effect, findNextSibling, findPrevSibling, first, flatten, generateUUID, getComponentName, getComponentNameAliases, getRelativeFileName, hyphenate, isArray, isCamelCase, isFilesystemSchemeFile, isHTMLTag, isKebabCase, isNotNull, isNumber, isObject, isPascalCase, isPlainObject, isProjectRuntimeFile, isRawTextContainer, isSVGTag, isString, isVoidTag, isVueFile, isVueRuntimeFile, isVueSFCDescriptorFile, isVueTemplateASTFile, isVueTsFile, isVueVirtualFile, kebabCase, last, mayContainVirtualFileName, parseFileName, pascalCase, readonly, toFileName, toPlatformPath, toPosixPath, toWindowsPath, trace, traceInDevMode, tracePromise, ucfirst, uncapitalize, versioned, versionedAsync }; | ||
export { Cache, DeepPartial, Disposable, DisposableScope, Event, EventEmitter, EventListener, EventProducer, EventSource, EventsOf, FileName, FilesystemSchemeFileName, KeyOf, Model, ModelEvents, Opaque, index as RPC, ReadonlyModel, SetOps, Telemetry, VueSFCDescriptorFileName, VueTemplateASTFileName, VueTsFileName, VueVirtualFileName, cache, cacheAll, cacheAllAsync, cacheAsync, camelCase, camelize, capitalize, chunk, clearMethodCache, collect, collectError, computed, concat, createCache, createModel, createMultiKeyCache, createVersionedCache, createWeakMapCache, debug, effect, findNextSibling, findPrevSibling, first, flatten, generateUUID, getComponentName, getComponentNameAliases, getRelativeFileName, hyphenate, isArray, isCamelCase, isFilesystemSchemeFile, isHTMLTag, isKebabCase, isNotNull, isNumber, isObject, isPascalCase, isPlainObject, isProjectRuntimeFile, isRawTextContainer, isSVGTag, isString, isVoidTag, isVueFile, isVueRuntimeFile, isVueSFCDescriptorFile, isVueTemplateASTFile, isVueTsFile, isVueVirtualFile, kebabCase, last, lcfirst, mayContainVirtualFileName, parseFileName, pascalCase, readonly, toFileName, toPlatformPath, toPosixPath, toWindowsPath, trace, traceInDevMode, tracePromise, ucfirst, uncapitalize, versioned, versionedAsync }; |
@@ -380,2 +380,5 @@ 'use strict'; | ||
} | ||
function lcfirst(str) { | ||
return str.slice(0, 1).toLowerCase() + str.slice(1); | ||
} | ||
@@ -1424,2 +1427,3 @@ function getComponentName(fileName) { | ||
exports.last = last; | ||
exports.lcfirst = lcfirst; | ||
exports.mayContainVirtualFileName = mayContainVirtualFileName; | ||
@@ -1426,0 +1430,0 @@ exports.parseFileName = parseFileName; |
{ | ||
"name": "@vuedx/shared", | ||
"version": "0.7.4-next-1649493814.0", | ||
"version": "0.7.4-next-1649577134.0", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "module": "lib/index.mjs", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
191419
3197