@blueprint-ts/core 4.1.0-beta.1 → 4.1.0-beta.3
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.
- package/dist/bulkRequests/BulkRequestEvent.enum.d.ts +4 -0
- package/dist/bulkRequests/BulkRequestEvent.enum.js +5 -0
- package/dist/bulkRequests/BulkRequestSender.d.ts +31 -0
- package/dist/bulkRequests/BulkRequestSender.js +161 -0
- package/dist/bulkRequests/BulkRequestWrapper.d.ts +15 -0
- package/dist/bulkRequests/BulkRequestWrapper.js +50 -0
- package/dist/bulkRequests/index.d.ts +5 -0
- package/dist/bulkRequests/index.js +5 -0
- package/{src/laravel/pagination/contracts/PaginationResponseBodyContract.ts → dist/laravel/pagination/contracts/PaginationResponseBodyContract.d.ts} +4 -4
- package/dist/laravel/pagination/contracts/PaginationResponseBodyContract.js +1 -0
- package/dist/laravel/pagination/dataDrivers/RequestDriver.d.ts +10 -0
- package/dist/laravel/pagination/dataDrivers/RequestDriver.js +18 -0
- package/dist/laravel/pagination/index.d.ts +4 -0
- package/dist/laravel/pagination/index.js +2 -0
- package/dist/laravel/requests/JsonBaseRequest.d.ts +14 -0
- package/dist/laravel/requests/JsonBaseRequest.js +15 -0
- package/dist/laravel/requests/PaginationJsonBaseRequest.d.ts +8 -0
- package/dist/laravel/requests/PaginationJsonBaseRequest.js +13 -0
- package/dist/laravel/requests/index.d.ts +7 -0
- package/dist/laravel/requests/index.js +5 -0
- package/dist/laravel/requests/responses/JsonResponse.d.ts +5 -0
- package/dist/laravel/requests/responses/JsonResponse.js +6 -0
- package/dist/laravel/requests/responses/PaginationResponse.d.ts +7 -0
- package/dist/laravel/requests/responses/PaginationResponse.js +9 -0
- package/dist/pagination/BasePaginator.d.ts +19 -0
- package/dist/pagination/BasePaginator.js +65 -0
- package/dist/pagination/InfiniteScroller.d.ts +6 -0
- package/dist/pagination/InfiniteScroller.js +17 -0
- package/dist/pagination/PageAwarePaginator.d.ts +32 -0
- package/dist/pagination/PageAwarePaginator.js +86 -0
- package/dist/pagination/StatePaginator.d.ts +25 -0
- package/dist/pagination/StatePaginator.js +55 -0
- package/dist/pagination/contracts/BaseViewDriverContract.d.ts +6 -0
- package/dist/pagination/contracts/BaseViewDriverContract.js +1 -0
- package/{src/pagination/contracts/BaseViewDriverFactoryContract.ts → dist/pagination/contracts/BaseViewDriverFactoryContract.d.ts} +2 -3
- package/dist/pagination/contracts/BaseViewDriverFactoryContract.js +1 -0
- package/dist/pagination/contracts/PaginateableRequestContract.d.ts +4 -0
- package/dist/pagination/contracts/PaginateableRequestContract.js +1 -0
- package/dist/pagination/contracts/PaginationDataDriverContract.d.ts +4 -0
- package/dist/pagination/contracts/PaginationDataDriverContract.js +1 -0
- package/{src/pagination/contracts/PaginationResponseContract.ts → dist/pagination/contracts/PaginationResponseContract.d.ts} +3 -5
- package/dist/pagination/contracts/PaginationResponseContract.js +1 -0
- package/{src/pagination/contracts/PaginatorLoadDataOptions.ts → dist/pagination/contracts/PaginatorLoadDataOptions.d.ts} +2 -2
- package/dist/pagination/contracts/PaginatorLoadDataOptions.js +1 -0
- package/{src/pagination/contracts/StatePaginationDataDriverContract.ts → dist/pagination/contracts/StatePaginationDataDriverContract.d.ts} +2 -3
- package/dist/pagination/contracts/StatePaginationDataDriverContract.js +1 -0
- package/dist/pagination/contracts/ViewDriverContract.d.ts +9 -0
- package/dist/pagination/contracts/ViewDriverContract.js +1 -0
- package/dist/pagination/contracts/ViewDriverFactoryContract.d.ts +4 -0
- package/dist/pagination/contracts/ViewDriverFactoryContract.js +1 -0
- package/dist/pagination/dataDrivers/ArrayDriver.d.ts +9 -0
- package/dist/pagination/dataDrivers/ArrayDriver.js +20 -0
- package/dist/pagination/dtos/PaginationDataDto.d.ts +7 -0
- package/dist/pagination/dtos/PaginationDataDto.js +12 -0
- package/dist/pagination/dtos/StatePaginationDataDto.d.ts +7 -0
- package/dist/pagination/dtos/StatePaginationDataDto.js +13 -0
- package/dist/pagination/factories/VueBaseViewDriverFactory.d.ts +5 -0
- package/dist/pagination/factories/VueBaseViewDriverFactory.js +6 -0
- package/dist/pagination/factories/VuePaginationDriverFactory.d.ts +5 -0
- package/dist/pagination/factories/VuePaginationDriverFactory.js +6 -0
- package/dist/pagination/frontendDrivers/VueBaseViewDriver.d.ts +11 -0
- package/dist/pagination/frontendDrivers/VueBaseViewDriver.js +19 -0
- package/dist/pagination/frontendDrivers/VuePaginationDriver.d.ts +21 -0
- package/dist/pagination/frontendDrivers/VuePaginationDriver.js +41 -0
- package/dist/pagination/index.d.ts +22 -0
- package/dist/pagination/index.js +13 -0
- package/dist/persistenceDrivers/LocalStorageDriver.d.ts +9 -0
- package/dist/persistenceDrivers/LocalStorageDriver.js +18 -0
- package/dist/persistenceDrivers/NonPersistentDriver.d.ts +7 -0
- package/dist/persistenceDrivers/NonPersistentDriver.js +8 -0
- package/dist/persistenceDrivers/SessionStorageDriver.d.ts +9 -0
- package/dist/persistenceDrivers/SessionStorageDriver.js +18 -0
- package/dist/persistenceDrivers/index.d.ts +6 -0
- package/dist/persistenceDrivers/index.js +4 -0
- package/dist/persistenceDrivers/types/PersistenceDriver.d.ts +5 -0
- package/dist/persistenceDrivers/types/PersistenceDriver.js +1 -0
- package/dist/requests/BaseRequest.d.ts +62 -0
- package/dist/requests/BaseRequest.js +224 -0
- package/dist/requests/ErrorHandler.d.ts +11 -0
- package/dist/requests/ErrorHandler.js +127 -0
- package/dist/requests/RequestConcurrencyMode.enum.d.ts +6 -0
- package/dist/requests/RequestConcurrencyMode.enum.js +7 -0
- package/dist/requests/RequestErrorRouter.d.ts +38 -0
- package/dist/requests/RequestErrorRouter.js +38 -0
- package/dist/requests/RequestEvents.enum.d.ts +4 -0
- package/dist/requests/RequestEvents.enum.js +5 -0
- package/dist/requests/RequestMethod.enum.d.ts +8 -0
- package/dist/requests/RequestMethod.enum.js +9 -0
- package/dist/requests/bodies/BinaryBody.d.ts +10 -0
- package/dist/requests/bodies/BinaryBody.js +22 -0
- package/dist/requests/bodies/FormDataBody.d.ts +14 -0
- package/dist/requests/bodies/FormDataBody.js +60 -0
- package/dist/requests/bodies/JsonBody.d.ts +8 -0
- package/dist/requests/bodies/JsonBody.js +13 -0
- package/{src/requests/contracts/AbortableRequestContract.ts → dist/requests/contracts/AbortableRequestContract.d.ts} +1 -1
- package/dist/requests/contracts/AbortableRequestContract.js +1 -0
- package/dist/requests/contracts/BaseRequestContract.d.ts +23 -0
- package/dist/requests/contracts/BaseRequestContract.js +1 -0
- package/dist/requests/contracts/BodyContract.d.ts +6 -0
- package/dist/requests/contracts/BodyContract.js +1 -0
- package/dist/requests/contracts/BodyFactoryContract.d.ts +4 -0
- package/dist/requests/contracts/BodyFactoryContract.js +1 -0
- package/dist/requests/contracts/DriverConfigContract.d.ts +8 -0
- package/dist/requests/contracts/DriverConfigContract.js +1 -0
- package/dist/requests/contracts/HeadersContract.d.ts +7 -0
- package/dist/requests/contracts/HeadersContract.js +1 -0
- package/dist/requests/contracts/RequestDriverContract.d.ts +8 -0
- package/dist/requests/contracts/RequestDriverContract.js +1 -0
- package/dist/requests/contracts/RequestLoaderContract.d.ts +4 -0
- package/dist/requests/contracts/RequestLoaderContract.js +1 -0
- package/{src/requests/contracts/RequestLoaderFactoryContract.ts → dist/requests/contracts/RequestLoaderFactoryContract.d.ts} +2 -3
- package/dist/requests/contracts/RequestLoaderFactoryContract.js +1 -0
- package/dist/requests/contracts/ResponseContract.d.ts +5 -0
- package/dist/requests/contracts/ResponseContract.js +1 -0
- package/dist/requests/drivers/contracts/ResponseHandlerContract.d.ts +9 -0
- package/dist/requests/drivers/contracts/ResponseHandlerContract.js +1 -0
- package/dist/requests/drivers/fetch/FetchDriver.d.ts +26 -0
- package/dist/requests/drivers/fetch/FetchDriver.js +73 -0
- package/dist/requests/drivers/fetch/FetchResponse.d.ts +12 -0
- package/dist/requests/drivers/fetch/FetchResponse.js +38 -0
- package/dist/requests/drivers/xhr/XMLHttpRequestDriver.d.ts +13 -0
- package/dist/requests/drivers/xhr/XMLHttpRequestDriver.js +107 -0
- package/dist/requests/drivers/xhr/XMLHttpRequestResponse.d.ts +17 -0
- package/dist/requests/drivers/xhr/XMLHttpRequestResponse.js +84 -0
- package/dist/requests/exceptions/BadGatewayException.d.ts +3 -0
- package/dist/requests/exceptions/BadGatewayException.js +3 -0
- package/dist/requests/exceptions/BadRequestException.d.ts +3 -0
- package/dist/requests/exceptions/BadRequestException.js +3 -0
- package/dist/requests/exceptions/ConflictException.d.ts +3 -0
- package/dist/requests/exceptions/ConflictException.js +3 -0
- package/dist/requests/exceptions/ForbiddenException.d.ts +3 -0
- package/dist/requests/exceptions/ForbiddenException.js +3 -0
- package/dist/requests/exceptions/GatewayTimeoutException.d.ts +3 -0
- package/dist/requests/exceptions/GatewayTimeoutException.js +3 -0
- package/dist/requests/exceptions/GoneException.d.ts +3 -0
- package/dist/requests/exceptions/GoneException.js +3 -0
- package/dist/requests/exceptions/InvalidJsonException.d.ts +7 -0
- package/dist/requests/exceptions/InvalidJsonException.js +10 -0
- package/dist/requests/exceptions/LockedException.d.ts +3 -0
- package/dist/requests/exceptions/LockedException.js +3 -0
- package/dist/requests/exceptions/MethodNotAllowedException.d.ts +3 -0
- package/dist/requests/exceptions/MethodNotAllowedException.js +3 -0
- package/dist/requests/exceptions/NoResponseReceivedException.d.ts +3 -0
- package/{src/requests/exceptions/NoResponseReceivedException.ts → dist/requests/exceptions/NoResponseReceivedException.js} +3 -3
- package/dist/requests/exceptions/NotFoundException.d.ts +3 -0
- package/dist/requests/exceptions/NotFoundException.js +3 -0
- package/dist/requests/exceptions/NotImplementedException.d.ts +3 -0
- package/dist/requests/exceptions/NotImplementedException.js +3 -0
- package/dist/requests/exceptions/PageExpiredException.d.ts +3 -0
- package/dist/requests/exceptions/PageExpiredException.js +3 -0
- package/dist/requests/exceptions/PayloadTooLargeException.d.ts +3 -0
- package/dist/requests/exceptions/PayloadTooLargeException.js +3 -0
- package/dist/requests/exceptions/PreconditionFailedException.d.ts +3 -0
- package/dist/requests/exceptions/PreconditionFailedException.js +3 -0
- package/dist/requests/exceptions/RequestTimeoutException.d.ts +3 -0
- package/dist/requests/exceptions/RequestTimeoutException.js +3 -0
- package/dist/requests/exceptions/ResponseBodyException.d.ts +7 -0
- package/dist/requests/exceptions/ResponseBodyException.js +10 -0
- package/dist/requests/exceptions/ResponseException.d.ts +6 -0
- package/dist/requests/exceptions/ResponseException.js +9 -0
- package/dist/requests/exceptions/ServerErrorException.d.ts +3 -0
- package/dist/requests/exceptions/ServerErrorException.js +3 -0
- package/dist/requests/exceptions/ServiceUnavailableException.d.ts +3 -0
- package/dist/requests/exceptions/ServiceUnavailableException.js +3 -0
- package/dist/requests/exceptions/StaleResponseException.d.ts +5 -0
- package/dist/requests/exceptions/StaleResponseException.js +10 -0
- package/dist/requests/exceptions/TooManyRequestsException.d.ts +3 -0
- package/dist/requests/exceptions/TooManyRequestsException.js +3 -0
- package/dist/requests/exceptions/UnauthorizedException.d.ts +3 -0
- package/dist/requests/exceptions/UnauthorizedException.js +3 -0
- package/dist/requests/exceptions/UnsupportedMediaTypeException.d.ts +3 -0
- package/dist/requests/exceptions/UnsupportedMediaTypeException.js +3 -0
- package/dist/requests/exceptions/ValidationException.d.ts +3 -0
- package/dist/requests/exceptions/ValidationException.js +3 -0
- package/dist/requests/exceptions/index.d.ts +25 -0
- package/dist/requests/exceptions/index.js +25 -0
- package/dist/requests/factories/BinaryBodyFactory.d.ts +8 -0
- package/dist/requests/factories/BinaryBodyFactory.js +9 -0
- package/dist/requests/factories/FormDataFactory.d.ts +12 -0
- package/dist/requests/factories/FormDataFactory.js +6 -0
- package/dist/requests/factories/JsonBodyFactory.d.ts +5 -0
- package/dist/requests/factories/JsonBodyFactory.js +6 -0
- package/dist/requests/index.d.ts +31 -0
- package/dist/requests/index.js +19 -0
- package/dist/requests/responses/BaseResponse.d.ts +14 -0
- package/dist/requests/responses/BaseResponse.js +36 -0
- package/dist/requests/responses/BlobResponse.d.ts +7 -0
- package/dist/requests/responses/BlobResponse.js +16 -0
- package/dist/requests/responses/JsonResponse.d.ts +5 -0
- package/dist/requests/responses/JsonResponse.js +12 -0
- package/dist/requests/responses/PlainTextResponse.d.ts +5 -0
- package/dist/requests/responses/PlainTextResponse.js +12 -0
- package/{src/requests/types/RequestConcurrencyOptions.ts → dist/requests/types/RequestConcurrencyOptions.d.ts} +4 -5
- package/dist/requests/types/RequestConcurrencyOptions.js +1 -0
- package/dist/requests/types/RequestUploadProgress.d.ts +6 -0
- package/dist/requests/types/RequestUploadProgress.js +1 -0
- package/dist/support/DeferredPromise.d.ts +37 -0
- package/dist/support/DeferredPromise.js +55 -0
- package/dist/support/helpers.d.ts +5 -0
- package/dist/support/helpers.js +69 -0
- package/{src/support/index.ts → dist/support/index.d.ts} +3 -4
- package/dist/support/index.js +3 -0
- package/dist/vue/composables/useConfirmDialog.d.ts +20 -0
- package/dist/vue/composables/useConfirmDialog.js +52 -0
- package/dist/vue/composables/useGlobalCheckbox.d.ts +13 -0
- package/dist/vue/composables/useGlobalCheckbox.js +123 -0
- package/dist/vue/composables/useIsEmpty.d.ts +4 -0
- package/dist/vue/composables/useIsEmpty.js +27 -0
- package/dist/vue/composables/useIsOpen.d.ts +5 -0
- package/dist/vue/composables/useIsOpen.js +25 -0
- package/dist/vue/composables/useIsOpenFromVar.d.ts +6 -0
- package/dist/vue/composables/useIsOpenFromVar.js +45 -0
- package/dist/vue/composables/useModelWrapper.d.ts +9 -0
- package/dist/vue/composables/useModelWrapper.js +18 -0
- package/dist/vue/composables/useOnOpen.d.ts +7 -0
- package/dist/vue/composables/useOnOpen.js +25 -0
- package/{src/vue/contracts/ModelValueOptions.ts → dist/vue/contracts/ModelValueOptions.d.ts} +1 -1
- package/dist/vue/contracts/ModelValueOptions.js +1 -0
- package/dist/vue/contracts/ModelValueProps.d.ts +3 -0
- package/dist/vue/contracts/ModelValueProps.js +1 -0
- package/dist/vue/forms/BaseForm.d.ts +162 -0
- package/dist/vue/forms/BaseForm.js +997 -0
- package/dist/vue/forms/PropertyAwareArray.d.ts +53 -0
- package/dist/vue/forms/PropertyAwareArray.js +54 -0
- package/{src/vue/forms/index.ts → dist/vue/forms/index.d.ts} +9 -11
- package/dist/vue/forms/index.js +6 -0
- package/dist/vue/forms/types/PersistedForm.d.ts +6 -0
- package/dist/vue/forms/types/PersistedForm.js +1 -0
- package/dist/vue/forms/validation/ValidationMode.enum.d.ts +11 -0
- package/dist/vue/forms/validation/ValidationMode.enum.js +14 -0
- package/dist/vue/forms/validation/index.d.ts +12 -0
- package/dist/vue/forms/validation/index.js +9 -0
- package/dist/vue/forms/validation/rules/BaseRule.d.ts +5 -0
- package/dist/vue/forms/validation/rules/BaseRule.js +5 -0
- package/dist/vue/forms/validation/rules/ConfirmedRule.d.ts +10 -0
- package/dist/vue/forms/validation/rules/ConfirmedRule.js +26 -0
- package/dist/vue/forms/validation/rules/EmailRule.d.ts +7 -0
- package/dist/vue/forms/validation/rules/EmailRule.js +19 -0
- package/dist/vue/forms/validation/rules/JsonRule.d.ts +7 -0
- package/dist/vue/forms/validation/rules/JsonRule.js +25 -0
- package/dist/vue/forms/validation/rules/MinRule.d.ts +26 -0
- package/dist/vue/forms/validation/rules/MinRule.js +52 -0
- package/dist/vue/forms/validation/rules/RequiredRule.d.ts +7 -0
- package/dist/vue/forms/validation/rules/RequiredRule.js +16 -0
- package/dist/vue/forms/validation/rules/UrlRule.d.ts +7 -0
- package/dist/vue/forms/validation/rules/UrlRule.js +22 -0
- package/{src/vue/forms/validation/types/BidirectionalRule.ts → dist/vue/forms/validation/types/BidirectionalRule.d.ts} +4 -4
- package/dist/vue/forms/validation/types/BidirectionalRule.js +1 -0
- package/dist/vue/forms/validation/types/ValidationRules.d.ts +11 -0
- package/dist/vue/forms/validation/types/ValidationRules.js +1 -0
- package/dist/vue/index.d.ts +11 -0
- package/dist/vue/index.js +10 -0
- package/dist/vue/requests/factories/VueRequestLoaderFactory.d.ts +6 -0
- package/dist/vue/requests/factories/VueRequestLoaderFactory.js +6 -0
- package/{src/vue/requests/index.ts → dist/vue/requests/index.d.ts} +4 -5
- package/dist/vue/requests/index.js +4 -0
- package/dist/vue/requests/loaders/VueRequestBatchLoader.d.ts +12 -0
- package/dist/vue/requests/loaders/VueRequestBatchLoader.js +29 -0
- package/dist/vue/requests/loaders/VueRequestLoader.d.ts +8 -0
- package/dist/vue/requests/loaders/VueRequestLoader.js +12 -0
- package/dist/vue/router/routeResourceBinding/RouteResourceBoundView.d.ts +57 -0
- package/dist/vue/router/routeResourceBinding/RouteResourceBoundView.js +135 -0
- package/dist/vue/router/routeResourceBinding/RouteResourceRequestResolver.d.ts +6 -0
- package/dist/vue/router/routeResourceBinding/RouteResourceRequestResolver.js +20 -0
- package/dist/vue/router/routeResourceBinding/defineRoute.d.ts +23 -0
- package/dist/vue/router/routeResourceBinding/defineRoute.js +42 -0
- package/dist/vue/router/routeResourceBinding/index.d.ts +8 -0
- package/dist/vue/router/routeResourceBinding/index.js +6 -0
- package/dist/vue/router/routeResourceBinding/installRouteInjection.d.ts +14 -0
- package/dist/vue/router/routeResourceBinding/installRouteInjection.js +133 -0
- package/dist/vue/router/routeResourceBinding/types.d.ts +55 -0
- package/dist/vue/router/routeResourceBinding/types.js +1 -0
- package/dist/vue/router/routeResourceBinding/useRouteResource.d.ts +8 -0
- package/dist/vue/router/routeResourceBinding/useRouteResource.js +29 -0
- package/dist/vue/state/State.d.ts +75 -0
- package/dist/vue/state/State.js +267 -0
- package/dist/vue/state/index.d.ts +2 -0
- package/dist/vue/state/index.js +2 -0
- package/package.json +81 -23
- package/.editorconfig +0 -508
- package/.eslintrc.cjs +0 -15
- package/.prettierrc.json +0 -8
- package/CHANGELOG.md +0 -213
- package/docker-compose.yaml +0 -8
- package/docs/.vitepress/config.ts +0 -124
- package/docs/index.md +0 -13
- package/docs/laravel/pagination.md +0 -67
- package/docs/laravel/requests.md +0 -62
- package/docs/services/pagination/index.md +0 -46
- package/docs/services/pagination/infinite-scroller.md +0 -20
- package/docs/services/pagination/page-aware.md +0 -51
- package/docs/services/pagination/state-pagination.md +0 -77
- package/docs/services/pagination/updating-rows.md +0 -52
- package/docs/services/persistence/index.md +0 -46
- package/docs/services/requests/abort-requests.md +0 -29
- package/docs/services/requests/bulk-requests.md +0 -70
- package/docs/services/requests/concurrency.md +0 -58
- package/docs/services/requests/drivers.md +0 -115
- package/docs/services/requests/error-handling.md +0 -153
- package/docs/services/requests/events.md +0 -53
- package/docs/services/requests/file-uploads.md +0 -105
- package/docs/services/requests/getting-started.md +0 -201
- package/docs/services/requests/headers.md +0 -40
- package/docs/services/requests/loading.md +0 -63
- package/docs/services/requests/request-bodies.md +0 -61
- package/docs/services/requests/responses.md +0 -34
- package/docs/services/support/deferred-promise.md +0 -63
- package/docs/services/support/helpers.md +0 -77
- package/docs/services/support/index.md +0 -6
- package/docs/upgrading/v1-to-v2.md +0 -64
- package/docs/upgrading/v2-to-v3.md +0 -52
- package/docs/upgrading/v3-to-v4.md +0 -214
- package/docs/upgrading.md +0 -0
- package/docs/vue/composables/use-confirm-dialog.md +0 -96
- package/docs/vue/composables/use-global-checkbox.md +0 -73
- package/docs/vue/composables/use-is-empty.md +0 -26
- package/docs/vue/composables/use-is-open-from-var.md +0 -32
- package/docs/vue/composables/use-is-open.md +0 -28
- package/docs/vue/composables/use-model-wrapper.md +0 -29
- package/docs/vue/composables/use-on-open.md +0 -26
- package/docs/vue/forms/arrays.md +0 -102
- package/docs/vue/forms/errors.md +0 -52
- package/docs/vue/forms/index.md +0 -99
- package/docs/vue/forms/payloads.md +0 -99
- package/docs/vue/forms/persistence.md +0 -19
- package/docs/vue/forms/state-and-properties.md +0 -26
- package/docs/vue/forms/utilities.md +0 -27
- package/docs/vue/forms/validation.md +0 -189
- package/docs/vue/requests/loading.md +0 -51
- package/docs/vue/router/route-resource-binding.md +0 -240
- package/docs/vue/state.md +0 -309
- package/env.d.ts +0 -1
- package/eslint.config.js +0 -15
- package/release-tool.json +0 -26
- package/src/bulkRequests/BulkRequestEvent.enum.ts +0 -4
- package/src/bulkRequests/BulkRequestSender.ts +0 -196
- package/src/bulkRequests/BulkRequestWrapper.ts +0 -49
- package/src/bulkRequests/index.ts +0 -6
- package/src/laravel/pagination/dataDrivers/RequestDriver.ts +0 -30
- package/src/laravel/pagination/index.ts +0 -6
- package/src/laravel/requests/JsonBaseRequest.ts +0 -35
- package/src/laravel/requests/PaginationJsonBaseRequest.ts +0 -29
- package/src/laravel/requests/index.ts +0 -9
- package/src/laravel/requests/responses/JsonResponse.ts +0 -8
- package/src/laravel/requests/responses/PaginationResponse.ts +0 -16
- package/src/pagination/BasePaginator.ts +0 -94
- package/src/pagination/InfiniteScroller.ts +0 -22
- package/src/pagination/PageAwarePaginator.ts +0 -132
- package/src/pagination/StatePaginator.ts +0 -86
- package/src/pagination/contracts/BaseViewDriverContract.ts +0 -6
- package/src/pagination/contracts/PaginateableRequestContract.ts +0 -13
- package/src/pagination/contracts/PaginationDataDriverContract.ts +0 -5
- package/src/pagination/contracts/ViewDriverContract.ts +0 -10
- package/src/pagination/contracts/ViewDriverFactoryContract.ts +0 -5
- package/src/pagination/dataDrivers/ArrayDriver.ts +0 -28
- package/src/pagination/dtos/PaginationDataDto.ts +0 -14
- package/src/pagination/dtos/StatePaginationDataDto.ts +0 -19
- package/src/pagination/factories/VueBaseViewDriverFactory.ts +0 -9
- package/src/pagination/factories/VuePaginationDriverFactory.ts +0 -9
- package/src/pagination/frontendDrivers/VueBaseViewDriver.ts +0 -28
- package/src/pagination/frontendDrivers/VuePaginationDriver.ts +0 -61
- package/src/pagination/index.ts +0 -46
- package/src/persistenceDrivers/LocalStorageDriver.ts +0 -22
- package/src/persistenceDrivers/NonPersistentDriver.ts +0 -12
- package/src/persistenceDrivers/SessionStorageDriver.ts +0 -22
- package/src/persistenceDrivers/index.ts +0 -8
- package/src/persistenceDrivers/types/PersistenceDriver.ts +0 -5
- package/src/requests/BaseRequest.ts +0 -321
- package/src/requests/ErrorHandler.ts +0 -144
- package/src/requests/RequestConcurrencyMode.enum.ts +0 -6
- package/src/requests/RequestErrorRouter.ts +0 -89
- package/src/requests/RequestEvents.enum.ts +0 -4
- package/src/requests/RequestMethod.enum.ts +0 -8
- package/src/requests/bodies/FormDataBody.ts +0 -81
- package/src/requests/bodies/JsonBody.ts +0 -16
- package/src/requests/contracts/BaseRequestContract.ts +0 -39
- package/src/requests/contracts/BodyContract.ts +0 -7
- package/src/requests/contracts/BodyFactoryContract.ts +0 -5
- package/src/requests/contracts/DriverConfigContract.ts +0 -9
- package/src/requests/contracts/HeadersContract.ts +0 -5
- package/src/requests/contracts/RequestDriverContract.ts +0 -15
- package/src/requests/contracts/RequestLoaderContract.ts +0 -5
- package/src/requests/contracts/ResponseContract.ts +0 -7
- package/src/requests/drivers/contracts/ResponseHandlerContract.ts +0 -10
- package/src/requests/drivers/fetch/FetchDriver.ts +0 -115
- package/src/requests/drivers/fetch/FetchResponse.ts +0 -30
- package/src/requests/drivers/xhr/XMLHttpRequestDriver.ts +0 -138
- package/src/requests/drivers/xhr/XMLHttpRequestResponse.ts +0 -95
- package/src/requests/exceptions/BadGatewayException.ts +0 -3
- package/src/requests/exceptions/BadRequestException.ts +0 -3
- package/src/requests/exceptions/ConflictException.ts +0 -3
- package/src/requests/exceptions/ForbiddenException.ts +0 -3
- package/src/requests/exceptions/GatewayTimeoutException.ts +0 -3
- package/src/requests/exceptions/GoneException.ts +0 -3
- package/src/requests/exceptions/InvalidJsonException.ts +0 -15
- package/src/requests/exceptions/LockedException.ts +0 -3
- package/src/requests/exceptions/MethodNotAllowedException.ts +0 -3
- package/src/requests/exceptions/NotFoundException.ts +0 -3
- package/src/requests/exceptions/NotImplementedException.ts +0 -3
- package/src/requests/exceptions/PageExpiredException.ts +0 -3
- package/src/requests/exceptions/PayloadTooLargeException.ts +0 -3
- package/src/requests/exceptions/PreconditionFailedException.ts +0 -3
- package/src/requests/exceptions/RequestTimeoutException.ts +0 -3
- package/src/requests/exceptions/ResponseBodyException.ts +0 -15
- package/src/requests/exceptions/ResponseException.ts +0 -11
- package/src/requests/exceptions/ServerErrorException.ts +0 -3
- package/src/requests/exceptions/ServiceUnavailableException.ts +0 -3
- package/src/requests/exceptions/StaleResponseException.ts +0 -13
- package/src/requests/exceptions/TooManyRequestsException.ts +0 -3
- package/src/requests/exceptions/UnauthorizedException.ts +0 -3
- package/src/requests/exceptions/UnsupportedMediaTypeException.ts +0 -3
- package/src/requests/exceptions/ValidationException.ts +0 -3
- package/src/requests/exceptions/index.ts +0 -51
- package/src/requests/factories/FormDataFactory.ts +0 -17
- package/src/requests/factories/JsonBodyFactory.ts +0 -9
- package/src/requests/index.ts +0 -61
- package/src/requests/responses/BaseResponse.ts +0 -41
- package/src/requests/responses/BlobResponse.ts +0 -19
- package/src/requests/responses/JsonResponse.ts +0 -15
- package/src/requests/responses/PlainTextResponse.ts +0 -15
- package/src/requests/types/RequestUploadProgress.ts +0 -6
- package/src/support/DeferredPromise.ts +0 -67
- package/src/support/helpers.ts +0 -78
- package/src/vue/composables/useConfirmDialog.ts +0 -63
- package/src/vue/composables/useGlobalCheckbox.ts +0 -145
- package/src/vue/composables/useIsEmpty.ts +0 -34
- package/src/vue/composables/useIsOpen.ts +0 -37
- package/src/vue/composables/useIsOpenFromVar.ts +0 -61
- package/src/vue/composables/useModelWrapper.ts +0 -27
- package/src/vue/composables/useOnOpen.ts +0 -34
- package/src/vue/contracts/ModelValueProps.ts +0 -3
- package/src/vue/forms/BaseForm.ts +0 -1192
- package/src/vue/forms/PropertyAwareArray.ts +0 -81
- package/src/vue/forms/types/PersistedForm.ts +0 -6
- package/src/vue/forms/validation/ValidationMode.enum.ts +0 -14
- package/src/vue/forms/validation/index.ts +0 -15
- package/src/vue/forms/validation/rules/BaseRule.ts +0 -7
- package/src/vue/forms/validation/rules/ConfirmedRule.ts +0 -39
- package/src/vue/forms/validation/rules/EmailRule.ts +0 -23
- package/src/vue/forms/validation/rules/JsonRule.ts +0 -28
- package/src/vue/forms/validation/rules/MinRule.ts +0 -61
- package/src/vue/forms/validation/rules/RequiredRule.ts +0 -19
- package/src/vue/forms/validation/rules/UrlRule.ts +0 -24
- package/src/vue/forms/validation/types/ValidationRules.ts +0 -15
- package/src/vue/index.ts +0 -14
- package/src/vue/requests/factories/VueRequestLoaderFactory.ts +0 -10
- package/src/vue/requests/loaders/VueRequestBatchLoader.ts +0 -35
- package/src/vue/requests/loaders/VueRequestLoader.ts +0 -18
- package/src/vue/router/routeResourceBinding/RouteResourceBoundView.ts +0 -145
- package/src/vue/router/routeResourceBinding/RouteResourceRequestResolver.ts +0 -11
- package/src/vue/router/routeResourceBinding/defineRoute.ts +0 -59
- package/src/vue/router/routeResourceBinding/index.ts +0 -11
- package/src/vue/router/routeResourceBinding/installRouteInjection.ts +0 -164
- package/src/vue/router/routeResourceBinding/types.ts +0 -53
- package/src/vue/router/routeResourceBinding/useRouteResource.ts +0 -24
- package/src/vue/state/State.ts +0 -380
- package/src/vue/state/index.ts +0 -3
- package/tests/service/bulkRequests/BulkRequestSender.test.ts +0 -76
- package/tests/service/bulkRequests/BulkRequestWrapper.test.ts +0 -51
- package/tests/service/helpers/mergeDeep.test.ts +0 -53
- package/tests/service/laravel/pagination/dataDrivers/RequestDriver.test.ts +0 -84
- package/tests/service/laravel/requests/JsonBaseRequest.test.ts +0 -43
- package/tests/service/laravel/requests/PaginationJsonBaseRequest.test.ts +0 -58
- package/tests/service/laravel/requests/responses/JsonResponse.test.ts +0 -59
- package/tests/service/laravel/requests/responses/PaginationResponse.test.ts +0 -127
- package/tests/service/pagination/BasePaginator.test.ts +0 -100
- package/tests/service/pagination/InfiniteScroller.test.ts +0 -101
- package/tests/service/pagination/PageAwarePaginator.test.ts +0 -133
- package/tests/service/pagination/StatePaginator.test.ts +0 -76
- package/tests/service/pagination/VueViewDrivers.test.ts +0 -46
- package/tests/service/pagination/dtos/PaginationDataDto.test.ts +0 -35
- package/tests/service/pagination/dtos/StatePaginationDataDto.test.ts +0 -14
- package/tests/service/pagination/factories/VuePaginationDriverFactory.test.ts +0 -32
- package/tests/service/pagination/frontendDrivers/VuePaginationDriver.test.ts +0 -66
- package/tests/service/persistenceDrivers/PersistenceDrivers.test.ts +0 -56
- package/tests/service/requests/BaseRequest.test.ts +0 -250
- package/tests/service/requests/BodiesAndFactories.test.ts +0 -28
- package/tests/service/requests/Enums.test.ts +0 -20
- package/tests/service/requests/ErrorHandler.test.ts +0 -188
- package/tests/service/requests/FormDataBody.test.ts +0 -63
- package/tests/service/requests/RequestErrorRouter.test.ts +0 -44
- package/tests/service/requests/Responses.test.ts +0 -83
- package/tests/service/requests/exceptions/Exceptions.test.ts +0 -43
- package/tests/service/requests/fetch/FetchDriver.test.ts +0 -76
- package/tests/service/requests/fetch/FetchResponse.test.ts +0 -21
- package/tests/service/requests/xhr/XMLHttpRequestDriver.test.ts +0 -178
- package/tests/service/support/DeferredPromise.test.ts +0 -40
- package/tests/service/support/helpers.test.ts +0 -37
- package/tests/vue/composables/useConfirmDialog.test.ts +0 -77
- package/tests/vue/composables/useGlobalCheckbox.test.ts +0 -126
- package/tests/vue/composables/useIsEmpty.test.ts +0 -18
- package/tests/vue/composables/useIsOpen.test.ts +0 -25
- package/tests/vue/composables/useIsOpenFromVar.test.ts +0 -22
- package/tests/vue/composables/useModelWrapper.test.ts +0 -30
- package/tests/vue/composables/useOnOpen.test.ts +0 -26
- package/tests/vue/forms/BaseForm.behavior.test.ts +0 -98
- package/tests/vue/forms/BaseForm.transformers.test.ts +0 -109
- package/tests/vue/forms/PropertyAwareArray.test.ts +0 -30
- package/tests/vue/forms/validation/ValidationRules.test.ts +0 -79
- package/tests/vue/requests/VueRequestLoaders.test.ts +0 -48
- package/tests/vue/router/routeResourceBinding/RouteResourceBoundView.test.ts +0 -344
- package/tests/vue/router/routeResourceBinding/RouteResourceUtils.test.ts +0 -70
- package/tests/vue/router/routeResourceBinding/installRouteInjection.test.ts +0 -450
- package/tests/vue/state/State.test.ts +0 -151
- package/tsconfig.json +0 -114
- package/vite.config.ts +0 -34
- package/vitest.config.ts +0 -23
package/.editorconfig
DELETED
|
@@ -1,508 +0,0 @@
|
|
|
1
|
-
root = true
|
|
2
|
-
|
|
3
|
-
[*]
|
|
4
|
-
charset = utf-8
|
|
5
|
-
end_of_line = lf
|
|
6
|
-
indent_size = 4
|
|
7
|
-
indent_style = space
|
|
8
|
-
insert_final_newline = false
|
|
9
|
-
max_line_length = 120
|
|
10
|
-
tab_width = 4
|
|
11
|
-
ij_continuation_indent_size = 8
|
|
12
|
-
ij_formatter_off_tag = @formatter:off
|
|
13
|
-
ij_formatter_on_tag = @formatter:on
|
|
14
|
-
ij_formatter_tags_enabled = true
|
|
15
|
-
ij_smart_tabs = false
|
|
16
|
-
ij_visual_guides =
|
|
17
|
-
ij_wrap_on_typing = false
|
|
18
|
-
|
|
19
|
-
[*.css]
|
|
20
|
-
ij_css_align_closing_brace_with_properties = false
|
|
21
|
-
ij_css_blank_lines_around_nested_selector = 1
|
|
22
|
-
ij_css_blank_lines_between_blocks = 1
|
|
23
|
-
ij_css_block_comment_add_space = false
|
|
24
|
-
ij_css_brace_placement = end_of_line
|
|
25
|
-
ij_css_enforce_quotes_on_format = false
|
|
26
|
-
ij_css_hex_color_long_format = false
|
|
27
|
-
ij_css_hex_color_lower_case = false
|
|
28
|
-
ij_css_hex_color_short_format = false
|
|
29
|
-
ij_css_hex_color_upper_case = false
|
|
30
|
-
ij_css_keep_blank_lines_in_code = 2
|
|
31
|
-
ij_css_keep_indents_on_empty_lines = false
|
|
32
|
-
ij_css_keep_single_line_blocks = false
|
|
33
|
-
ij_css_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow
|
|
34
|
-
ij_css_space_after_colon = true
|
|
35
|
-
ij_css_space_before_opening_brace = true
|
|
36
|
-
ij_css_use_double_quotes = true
|
|
37
|
-
ij_css_value_alignment = do_not_align
|
|
38
|
-
|
|
39
|
-
[*.sass]
|
|
40
|
-
indent_size = 2
|
|
41
|
-
ij_sass_align_closing_brace_with_properties = false
|
|
42
|
-
ij_sass_blank_lines_around_nested_selector = 1
|
|
43
|
-
ij_sass_blank_lines_between_blocks = 1
|
|
44
|
-
ij_sass_brace_placement = 0
|
|
45
|
-
ij_sass_enforce_quotes_on_format = false
|
|
46
|
-
ij_sass_hex_color_long_format = false
|
|
47
|
-
ij_sass_hex_color_lower_case = false
|
|
48
|
-
ij_sass_hex_color_short_format = false
|
|
49
|
-
ij_sass_hex_color_upper_case = false
|
|
50
|
-
ij_sass_keep_blank_lines_in_code = 2
|
|
51
|
-
ij_sass_keep_indents_on_empty_lines = false
|
|
52
|
-
ij_sass_keep_single_line_blocks = false
|
|
53
|
-
ij_sass_line_comment_add_space = false
|
|
54
|
-
ij_sass_line_comment_at_first_column = false
|
|
55
|
-
ij_sass_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow
|
|
56
|
-
ij_sass_space_after_colon = true
|
|
57
|
-
ij_sass_space_before_opening_brace = true
|
|
58
|
-
ij_sass_use_double_quotes = true
|
|
59
|
-
ij_sass_value_alignment = 0
|
|
60
|
-
|
|
61
|
-
[*.scss]
|
|
62
|
-
indent_size = 2
|
|
63
|
-
ij_scss_align_closing_brace_with_properties = false
|
|
64
|
-
ij_scss_blank_lines_around_nested_selector = 1
|
|
65
|
-
ij_scss_blank_lines_between_blocks = 1
|
|
66
|
-
ij_scss_block_comment_add_space = false
|
|
67
|
-
ij_scss_brace_placement = 0
|
|
68
|
-
ij_scss_enforce_quotes_on_format = false
|
|
69
|
-
ij_scss_hex_color_long_format = false
|
|
70
|
-
ij_scss_hex_color_lower_case = false
|
|
71
|
-
ij_scss_hex_color_short_format = false
|
|
72
|
-
ij_scss_hex_color_upper_case = false
|
|
73
|
-
ij_scss_keep_blank_lines_in_code = 2
|
|
74
|
-
ij_scss_keep_indents_on_empty_lines = false
|
|
75
|
-
ij_scss_keep_single_line_blocks = false
|
|
76
|
-
ij_scss_line_comment_add_space = false
|
|
77
|
-
ij_scss_line_comment_at_first_column = false
|
|
78
|
-
ij_scss_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow
|
|
79
|
-
ij_scss_space_after_colon = true
|
|
80
|
-
ij_scss_space_before_opening_brace = true
|
|
81
|
-
ij_scss_use_double_quotes = true
|
|
82
|
-
ij_scss_value_alignment = 0
|
|
83
|
-
|
|
84
|
-
[*.vue]
|
|
85
|
-
indent_size = 2
|
|
86
|
-
tab_width = 2
|
|
87
|
-
ij_continuation_indent_size = 2
|
|
88
|
-
ij_visual_guides = 120
|
|
89
|
-
ij_vue_indent_children_of_top_level = template
|
|
90
|
-
ij_vue_interpolation_new_line_after_start_delimiter = false
|
|
91
|
-
ij_vue_interpolation_new_line_before_end_delimiter = false
|
|
92
|
-
ij_vue_interpolation_wrap = off
|
|
93
|
-
ij_vue_keep_indents_on_empty_lines = false
|
|
94
|
-
ij_vue_spaces_within_interpolation_expressions = true
|
|
95
|
-
|
|
96
|
-
[{*.ats,*.cts,*.mts,*.ts}]
|
|
97
|
-
indent_size = 2
|
|
98
|
-
tab_width = 2
|
|
99
|
-
ij_continuation_indent_size = 2
|
|
100
|
-
ij_visual_guides = 120
|
|
101
|
-
ij_typescript_align_imports = false
|
|
102
|
-
ij_typescript_align_multiline_array_initializer_expression = false
|
|
103
|
-
ij_typescript_align_multiline_binary_operation = false
|
|
104
|
-
ij_typescript_align_multiline_chained_methods = false
|
|
105
|
-
ij_typescript_align_multiline_extends_list = false
|
|
106
|
-
ij_typescript_align_multiline_for = true
|
|
107
|
-
ij_typescript_align_multiline_parameters = true
|
|
108
|
-
ij_typescript_align_multiline_parameters_in_calls = false
|
|
109
|
-
ij_typescript_align_multiline_ternary_operation = false
|
|
110
|
-
ij_typescript_align_object_properties = 0
|
|
111
|
-
ij_typescript_align_union_types = false
|
|
112
|
-
ij_typescript_align_var_statements = 0
|
|
113
|
-
ij_typescript_array_initializer_new_line_after_left_brace = false
|
|
114
|
-
ij_typescript_array_initializer_right_brace_on_new_line = false
|
|
115
|
-
ij_typescript_array_initializer_wrap = off
|
|
116
|
-
ij_typescript_assignment_wrap = off
|
|
117
|
-
ij_typescript_binary_operation_sign_on_next_line = false
|
|
118
|
-
ij_typescript_binary_operation_wrap = off
|
|
119
|
-
ij_typescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
120
|
-
ij_typescript_blank_lines_after_imports = 1
|
|
121
|
-
ij_typescript_blank_lines_around_class = 1
|
|
122
|
-
ij_typescript_blank_lines_around_field = 0
|
|
123
|
-
ij_typescript_blank_lines_around_field_in_interface = 0
|
|
124
|
-
ij_typescript_blank_lines_around_function = 1
|
|
125
|
-
ij_typescript_blank_lines_around_method = 1
|
|
126
|
-
ij_typescript_blank_lines_around_method_in_interface = 1
|
|
127
|
-
ij_typescript_block_brace_style = end_of_line
|
|
128
|
-
ij_typescript_block_comment_add_space = false
|
|
129
|
-
ij_typescript_block_comment_at_first_column = true
|
|
130
|
-
ij_typescript_call_parameters_new_line_after_left_paren = false
|
|
131
|
-
ij_typescript_call_parameters_right_paren_on_new_line = false
|
|
132
|
-
ij_typescript_call_parameters_wrap = off
|
|
133
|
-
ij_typescript_catch_on_new_line = false
|
|
134
|
-
ij_typescript_chained_call_dot_on_new_line = true
|
|
135
|
-
ij_typescript_class_brace_style = end_of_line
|
|
136
|
-
ij_typescript_class_decorator_wrap = split_into_lines
|
|
137
|
-
ij_typescript_class_field_decorator_wrap = off
|
|
138
|
-
ij_typescript_class_method_decorator_wrap = off
|
|
139
|
-
ij_typescript_comma_on_new_line = false
|
|
140
|
-
ij_typescript_do_while_brace_force = never
|
|
141
|
-
ij_typescript_else_on_new_line = false
|
|
142
|
-
ij_typescript_enforce_trailing_comma = remove
|
|
143
|
-
ij_typescript_enum_constants_wrap = on_every_item
|
|
144
|
-
ij_typescript_extends_keyword_wrap = off
|
|
145
|
-
ij_typescript_extends_list_wrap = off
|
|
146
|
-
ij_typescript_field_prefix = _
|
|
147
|
-
ij_typescript_file_name_style = relaxed
|
|
148
|
-
ij_typescript_finally_on_new_line = false
|
|
149
|
-
ij_typescript_for_brace_force = never
|
|
150
|
-
ij_typescript_for_statement_new_line_after_left_paren = false
|
|
151
|
-
ij_typescript_for_statement_right_paren_on_new_line = false
|
|
152
|
-
ij_typescript_for_statement_wrap = off
|
|
153
|
-
ij_typescript_force_quote_style = true
|
|
154
|
-
ij_typescript_force_semicolon_style = true
|
|
155
|
-
ij_typescript_function_expression_brace_style = end_of_line
|
|
156
|
-
ij_typescript_function_parameter_decorator_wrap = off
|
|
157
|
-
ij_typescript_if_brace_force = never
|
|
158
|
-
ij_typescript_import_merge_members = global
|
|
159
|
-
ij_typescript_import_prefer_absolute_path = global
|
|
160
|
-
ij_typescript_import_sort_members = true
|
|
161
|
-
ij_typescript_import_sort_module_name = false
|
|
162
|
-
ij_typescript_import_use_node_resolution = true
|
|
163
|
-
ij_typescript_imports_wrap = on_every_item
|
|
164
|
-
ij_typescript_indent_case_from_switch = true
|
|
165
|
-
ij_typescript_indent_chained_calls = true
|
|
166
|
-
ij_typescript_indent_package_children = 0
|
|
167
|
-
ij_typescript_jsdoc_include_types = false
|
|
168
|
-
ij_typescript_jsx_attribute_value = braces
|
|
169
|
-
ij_typescript_keep_blank_lines_in_code = 2
|
|
170
|
-
ij_typescript_keep_first_column_comment = true
|
|
171
|
-
ij_typescript_keep_indents_on_empty_lines = false
|
|
172
|
-
ij_typescript_keep_line_breaks = true
|
|
173
|
-
ij_typescript_keep_simple_blocks_in_one_line = false
|
|
174
|
-
ij_typescript_keep_simple_methods_in_one_line = false
|
|
175
|
-
ij_typescript_line_comment_add_space = true
|
|
176
|
-
ij_typescript_line_comment_at_first_column = false
|
|
177
|
-
ij_typescript_method_brace_style = end_of_line
|
|
178
|
-
ij_typescript_method_call_chain_wrap = off
|
|
179
|
-
ij_typescript_method_parameters_new_line_after_left_paren = false
|
|
180
|
-
ij_typescript_method_parameters_right_paren_on_new_line = false
|
|
181
|
-
ij_typescript_method_parameters_wrap = off
|
|
182
|
-
ij_typescript_object_literal_wrap = on_every_item
|
|
183
|
-
ij_typescript_object_types_wrap = on_every_item
|
|
184
|
-
ij_typescript_parentheses_expression_new_line_after_left_paren = false
|
|
185
|
-
ij_typescript_parentheses_expression_right_paren_on_new_line = false
|
|
186
|
-
ij_typescript_place_assignment_sign_on_next_line = false
|
|
187
|
-
ij_typescript_prefer_as_type_cast = false
|
|
188
|
-
ij_typescript_prefer_explicit_types_function_expression_returns = false
|
|
189
|
-
ij_typescript_prefer_explicit_types_function_returns = false
|
|
190
|
-
ij_typescript_prefer_explicit_types_vars_fields = false
|
|
191
|
-
ij_typescript_prefer_parameters_wrap = false
|
|
192
|
-
ij_typescript_property_prefix =
|
|
193
|
-
ij_typescript_reformat_c_style_comments = false
|
|
194
|
-
ij_typescript_space_after_colon = true
|
|
195
|
-
ij_typescript_space_after_comma = true
|
|
196
|
-
ij_typescript_space_after_dots_in_rest_parameter = false
|
|
197
|
-
ij_typescript_space_after_generator_mult = true
|
|
198
|
-
ij_typescript_space_after_property_colon = true
|
|
199
|
-
ij_typescript_space_after_quest = true
|
|
200
|
-
ij_typescript_space_after_type_colon = true
|
|
201
|
-
ij_typescript_space_after_unary_not = false
|
|
202
|
-
ij_typescript_space_before_async_arrow_lparen = true
|
|
203
|
-
ij_typescript_space_before_catch_keyword = true
|
|
204
|
-
ij_typescript_space_before_catch_left_brace = true
|
|
205
|
-
ij_typescript_space_before_catch_parentheses = true
|
|
206
|
-
ij_typescript_space_before_class_lbrace = true
|
|
207
|
-
ij_typescript_space_before_class_left_brace = true
|
|
208
|
-
ij_typescript_space_before_colon = true
|
|
209
|
-
ij_typescript_space_before_comma = false
|
|
210
|
-
ij_typescript_space_before_do_left_brace = true
|
|
211
|
-
ij_typescript_space_before_else_keyword = true
|
|
212
|
-
ij_typescript_space_before_else_left_brace = true
|
|
213
|
-
ij_typescript_space_before_finally_keyword = true
|
|
214
|
-
ij_typescript_space_before_finally_left_brace = true
|
|
215
|
-
ij_typescript_space_before_for_left_brace = true
|
|
216
|
-
ij_typescript_space_before_for_parentheses = true
|
|
217
|
-
ij_typescript_space_before_for_semicolon = false
|
|
218
|
-
ij_typescript_space_before_function_left_parenth = false
|
|
219
|
-
ij_typescript_space_before_generator_mult = false
|
|
220
|
-
ij_typescript_space_before_if_left_brace = true
|
|
221
|
-
ij_typescript_space_before_if_parentheses = true
|
|
222
|
-
ij_typescript_space_before_method_call_parentheses = false
|
|
223
|
-
ij_typescript_space_before_method_left_brace = true
|
|
224
|
-
ij_typescript_space_before_method_parentheses = false
|
|
225
|
-
ij_typescript_space_before_property_colon = false
|
|
226
|
-
ij_typescript_space_before_quest = true
|
|
227
|
-
ij_typescript_space_before_switch_left_brace = true
|
|
228
|
-
ij_typescript_space_before_switch_parentheses = true
|
|
229
|
-
ij_typescript_space_before_try_left_brace = true
|
|
230
|
-
ij_typescript_space_before_type_colon = false
|
|
231
|
-
ij_typescript_space_before_unary_not = false
|
|
232
|
-
ij_typescript_space_before_while_keyword = true
|
|
233
|
-
ij_typescript_space_before_while_left_brace = true
|
|
234
|
-
ij_typescript_space_before_while_parentheses = true
|
|
235
|
-
ij_typescript_spaces_around_additive_operators = true
|
|
236
|
-
ij_typescript_spaces_around_arrow_function_operator = true
|
|
237
|
-
ij_typescript_spaces_around_assignment_operators = true
|
|
238
|
-
ij_typescript_spaces_around_bitwise_operators = true
|
|
239
|
-
ij_typescript_spaces_around_equality_operators = true
|
|
240
|
-
ij_typescript_spaces_around_logical_operators = true
|
|
241
|
-
ij_typescript_spaces_around_multiplicative_operators = true
|
|
242
|
-
ij_typescript_spaces_around_relational_operators = true
|
|
243
|
-
ij_typescript_spaces_around_shift_operators = true
|
|
244
|
-
ij_typescript_spaces_around_unary_operator = false
|
|
245
|
-
ij_typescript_spaces_within_array_initializer_brackets = false
|
|
246
|
-
ij_typescript_spaces_within_brackets = false
|
|
247
|
-
ij_typescript_spaces_within_catch_parentheses = false
|
|
248
|
-
ij_typescript_spaces_within_for_parentheses = false
|
|
249
|
-
ij_typescript_spaces_within_if_parentheses = false
|
|
250
|
-
ij_typescript_spaces_within_imports = true
|
|
251
|
-
ij_typescript_spaces_within_interpolation_expressions = false
|
|
252
|
-
ij_typescript_spaces_within_method_call_parentheses = false
|
|
253
|
-
ij_typescript_spaces_within_method_parentheses = false
|
|
254
|
-
ij_typescript_spaces_within_object_literal_braces = true
|
|
255
|
-
ij_typescript_spaces_within_object_type_braces = true
|
|
256
|
-
ij_typescript_spaces_within_parentheses = false
|
|
257
|
-
ij_typescript_spaces_within_switch_parentheses = false
|
|
258
|
-
ij_typescript_spaces_within_type_assertion = false
|
|
259
|
-
ij_typescript_spaces_within_union_types = true
|
|
260
|
-
ij_typescript_spaces_within_while_parentheses = false
|
|
261
|
-
ij_typescript_special_else_if_treatment = true
|
|
262
|
-
ij_typescript_ternary_operation_signs_on_next_line = false
|
|
263
|
-
ij_typescript_ternary_operation_wrap = off
|
|
264
|
-
ij_typescript_union_types_wrap = on_every_item
|
|
265
|
-
ij_typescript_use_chained_calls_group_indents = false
|
|
266
|
-
ij_typescript_use_double_quotes = false
|
|
267
|
-
ij_typescript_use_explicit_js_extension = auto
|
|
268
|
-
ij_typescript_use_import_type = auto
|
|
269
|
-
ij_typescript_use_path_mapping = always
|
|
270
|
-
ij_typescript_use_public_modifier = false
|
|
271
|
-
ij_typescript_use_semicolon_after_statement = false
|
|
272
|
-
ij_typescript_var_declaration_wrap = normal
|
|
273
|
-
ij_typescript_while_brace_force = never
|
|
274
|
-
ij_typescript_while_on_new_line = false
|
|
275
|
-
ij_typescript_wrap_comments = false
|
|
276
|
-
|
|
277
|
-
[{*.cjs,*.es6,*.js,*.mjs}]
|
|
278
|
-
indent_size = 2
|
|
279
|
-
tab_width = 2
|
|
280
|
-
ij_continuation_indent_size = 2
|
|
281
|
-
ij_visual_guides = 120
|
|
282
|
-
ij_javascript_align_imports = false
|
|
283
|
-
ij_javascript_align_multiline_array_initializer_expression = false
|
|
284
|
-
ij_javascript_align_multiline_binary_operation = false
|
|
285
|
-
ij_javascript_align_multiline_chained_methods = false
|
|
286
|
-
ij_javascript_align_multiline_extends_list = false
|
|
287
|
-
ij_javascript_align_multiline_for = true
|
|
288
|
-
ij_javascript_align_multiline_parameters = true
|
|
289
|
-
ij_javascript_align_multiline_parameters_in_calls = false
|
|
290
|
-
ij_javascript_align_multiline_ternary_operation = false
|
|
291
|
-
ij_javascript_align_object_properties = 0
|
|
292
|
-
ij_javascript_align_union_types = false
|
|
293
|
-
ij_javascript_align_var_statements = 0
|
|
294
|
-
ij_javascript_array_initializer_new_line_after_left_brace = false
|
|
295
|
-
ij_javascript_array_initializer_right_brace_on_new_line = false
|
|
296
|
-
ij_javascript_array_initializer_wrap = off
|
|
297
|
-
ij_javascript_assignment_wrap = off
|
|
298
|
-
ij_javascript_binary_operation_sign_on_next_line = false
|
|
299
|
-
ij_javascript_binary_operation_wrap = off
|
|
300
|
-
ij_javascript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
301
|
-
ij_javascript_blank_lines_after_imports = 1
|
|
302
|
-
ij_javascript_blank_lines_around_class = 1
|
|
303
|
-
ij_javascript_blank_lines_around_field = 0
|
|
304
|
-
ij_javascript_blank_lines_around_function = 1
|
|
305
|
-
ij_javascript_blank_lines_around_method = 1
|
|
306
|
-
ij_javascript_block_brace_style = end_of_line
|
|
307
|
-
ij_javascript_block_comment_add_space = false
|
|
308
|
-
ij_javascript_block_comment_at_first_column = true
|
|
309
|
-
ij_javascript_call_parameters_new_line_after_left_paren = false
|
|
310
|
-
ij_javascript_call_parameters_right_paren_on_new_line = false
|
|
311
|
-
ij_javascript_call_parameters_wrap = off
|
|
312
|
-
ij_javascript_catch_on_new_line = false
|
|
313
|
-
ij_javascript_chained_call_dot_on_new_line = true
|
|
314
|
-
ij_javascript_class_brace_style = end_of_line
|
|
315
|
-
ij_javascript_class_decorator_wrap = split_into_lines
|
|
316
|
-
ij_javascript_class_field_decorator_wrap = off
|
|
317
|
-
ij_javascript_class_method_decorator_wrap = off
|
|
318
|
-
ij_javascript_comma_on_new_line = false
|
|
319
|
-
ij_javascript_do_while_brace_force = never
|
|
320
|
-
ij_javascript_else_on_new_line = false
|
|
321
|
-
ij_javascript_enforce_trailing_comma = remove
|
|
322
|
-
ij_javascript_extends_keyword_wrap = off
|
|
323
|
-
ij_javascript_extends_list_wrap = off
|
|
324
|
-
ij_javascript_field_prefix = _
|
|
325
|
-
ij_javascript_file_name_style = relaxed
|
|
326
|
-
ij_javascript_finally_on_new_line = false
|
|
327
|
-
ij_javascript_for_brace_force = never
|
|
328
|
-
ij_javascript_for_statement_new_line_after_left_paren = false
|
|
329
|
-
ij_javascript_for_statement_right_paren_on_new_line = false
|
|
330
|
-
ij_javascript_for_statement_wrap = off
|
|
331
|
-
ij_javascript_force_quote_style = true
|
|
332
|
-
ij_javascript_force_semicolon_style = true
|
|
333
|
-
ij_javascript_function_expression_brace_style = end_of_line
|
|
334
|
-
ij_javascript_function_parameter_decorator_wrap = off
|
|
335
|
-
ij_javascript_if_brace_force = never
|
|
336
|
-
ij_javascript_import_merge_members = global
|
|
337
|
-
ij_javascript_import_prefer_absolute_path = global
|
|
338
|
-
ij_javascript_import_sort_members = true
|
|
339
|
-
ij_javascript_import_sort_module_name = false
|
|
340
|
-
ij_javascript_import_use_node_resolution = true
|
|
341
|
-
ij_javascript_imports_wrap = on_every_item
|
|
342
|
-
ij_javascript_indent_case_from_switch = true
|
|
343
|
-
ij_javascript_indent_chained_calls = true
|
|
344
|
-
ij_javascript_indent_package_children = 0
|
|
345
|
-
ij_javascript_jsx_attribute_value = braces
|
|
346
|
-
ij_javascript_keep_blank_lines_in_code = 2
|
|
347
|
-
ij_javascript_keep_first_column_comment = true
|
|
348
|
-
ij_javascript_keep_indents_on_empty_lines = false
|
|
349
|
-
ij_javascript_keep_line_breaks = true
|
|
350
|
-
ij_javascript_keep_simple_blocks_in_one_line = false
|
|
351
|
-
ij_javascript_keep_simple_methods_in_one_line = false
|
|
352
|
-
ij_javascript_line_comment_add_space = true
|
|
353
|
-
ij_javascript_line_comment_at_first_column = false
|
|
354
|
-
ij_javascript_method_brace_style = end_of_line
|
|
355
|
-
ij_javascript_method_call_chain_wrap = off
|
|
356
|
-
ij_javascript_method_parameters_new_line_after_left_paren = false
|
|
357
|
-
ij_javascript_method_parameters_right_paren_on_new_line = false
|
|
358
|
-
ij_javascript_method_parameters_wrap = off
|
|
359
|
-
ij_javascript_object_literal_wrap = on_every_item
|
|
360
|
-
ij_javascript_object_types_wrap = on_every_item
|
|
361
|
-
ij_javascript_parentheses_expression_new_line_after_left_paren = false
|
|
362
|
-
ij_javascript_parentheses_expression_right_paren_on_new_line = false
|
|
363
|
-
ij_javascript_place_assignment_sign_on_next_line = false
|
|
364
|
-
ij_javascript_prefer_as_type_cast = false
|
|
365
|
-
ij_javascript_prefer_explicit_types_function_expression_returns = false
|
|
366
|
-
ij_javascript_prefer_explicit_types_function_returns = false
|
|
367
|
-
ij_javascript_prefer_explicit_types_vars_fields = false
|
|
368
|
-
ij_javascript_prefer_parameters_wrap = false
|
|
369
|
-
ij_javascript_property_prefix =
|
|
370
|
-
ij_javascript_reformat_c_style_comments = false
|
|
371
|
-
ij_javascript_space_after_colon = true
|
|
372
|
-
ij_javascript_space_after_comma = true
|
|
373
|
-
ij_javascript_space_after_dots_in_rest_parameter = false
|
|
374
|
-
ij_javascript_space_after_generator_mult = true
|
|
375
|
-
ij_javascript_space_after_property_colon = true
|
|
376
|
-
ij_javascript_space_after_quest = true
|
|
377
|
-
ij_javascript_space_after_type_colon = true
|
|
378
|
-
ij_javascript_space_after_unary_not = false
|
|
379
|
-
ij_javascript_space_before_async_arrow_lparen = true
|
|
380
|
-
ij_javascript_space_before_catch_keyword = true
|
|
381
|
-
ij_javascript_space_before_catch_left_brace = true
|
|
382
|
-
ij_javascript_space_before_catch_parentheses = true
|
|
383
|
-
ij_javascript_space_before_class_lbrace = true
|
|
384
|
-
ij_javascript_space_before_class_left_brace = true
|
|
385
|
-
ij_javascript_space_before_colon = true
|
|
386
|
-
ij_javascript_space_before_comma = false
|
|
387
|
-
ij_javascript_space_before_do_left_brace = true
|
|
388
|
-
ij_javascript_space_before_else_keyword = true
|
|
389
|
-
ij_javascript_space_before_else_left_brace = true
|
|
390
|
-
ij_javascript_space_before_finally_keyword = true
|
|
391
|
-
ij_javascript_space_before_finally_left_brace = true
|
|
392
|
-
ij_javascript_space_before_for_left_brace = true
|
|
393
|
-
ij_javascript_space_before_for_parentheses = true
|
|
394
|
-
ij_javascript_space_before_for_semicolon = false
|
|
395
|
-
ij_javascript_space_before_function_left_parenth = false
|
|
396
|
-
ij_javascript_space_before_generator_mult = false
|
|
397
|
-
ij_javascript_space_before_if_left_brace = true
|
|
398
|
-
ij_javascript_space_before_if_parentheses = true
|
|
399
|
-
ij_javascript_space_before_method_call_parentheses = false
|
|
400
|
-
ij_javascript_space_before_method_left_brace = true
|
|
401
|
-
ij_javascript_space_before_method_parentheses = false
|
|
402
|
-
ij_javascript_space_before_property_colon = false
|
|
403
|
-
ij_javascript_space_before_quest = true
|
|
404
|
-
ij_javascript_space_before_switch_left_brace = true
|
|
405
|
-
ij_javascript_space_before_switch_parentheses = true
|
|
406
|
-
ij_javascript_space_before_try_left_brace = true
|
|
407
|
-
ij_javascript_space_before_type_colon = false
|
|
408
|
-
ij_javascript_space_before_unary_not = false
|
|
409
|
-
ij_javascript_space_before_while_keyword = true
|
|
410
|
-
ij_javascript_space_before_while_left_brace = true
|
|
411
|
-
ij_javascript_space_before_while_parentheses = true
|
|
412
|
-
ij_javascript_spaces_around_additive_operators = true
|
|
413
|
-
ij_javascript_spaces_around_arrow_function_operator = true
|
|
414
|
-
ij_javascript_spaces_around_assignment_operators = true
|
|
415
|
-
ij_javascript_spaces_around_bitwise_operators = true
|
|
416
|
-
ij_javascript_spaces_around_equality_operators = true
|
|
417
|
-
ij_javascript_spaces_around_logical_operators = true
|
|
418
|
-
ij_javascript_spaces_around_multiplicative_operators = true
|
|
419
|
-
ij_javascript_spaces_around_relational_operators = true
|
|
420
|
-
ij_javascript_spaces_around_shift_operators = true
|
|
421
|
-
ij_javascript_spaces_around_unary_operator = false
|
|
422
|
-
ij_javascript_spaces_within_array_initializer_brackets = false
|
|
423
|
-
ij_javascript_spaces_within_brackets = false
|
|
424
|
-
ij_javascript_spaces_within_catch_parentheses = false
|
|
425
|
-
ij_javascript_spaces_within_for_parentheses = false
|
|
426
|
-
ij_javascript_spaces_within_if_parentheses = false
|
|
427
|
-
ij_javascript_spaces_within_imports = true
|
|
428
|
-
ij_javascript_spaces_within_interpolation_expressions = false
|
|
429
|
-
ij_javascript_spaces_within_method_call_parentheses = false
|
|
430
|
-
ij_javascript_spaces_within_method_parentheses = false
|
|
431
|
-
ij_javascript_spaces_within_object_literal_braces = true
|
|
432
|
-
ij_javascript_spaces_within_object_type_braces = true
|
|
433
|
-
ij_javascript_spaces_within_parentheses = false
|
|
434
|
-
ij_javascript_spaces_within_switch_parentheses = false
|
|
435
|
-
ij_javascript_spaces_within_type_assertion = false
|
|
436
|
-
ij_javascript_spaces_within_union_types = true
|
|
437
|
-
ij_javascript_spaces_within_while_parentheses = false
|
|
438
|
-
ij_javascript_special_else_if_treatment = true
|
|
439
|
-
ij_javascript_ternary_operation_signs_on_next_line = false
|
|
440
|
-
ij_javascript_ternary_operation_wrap = off
|
|
441
|
-
ij_javascript_union_types_wrap = on_every_item
|
|
442
|
-
ij_javascript_use_chained_calls_group_indents = false
|
|
443
|
-
ij_javascript_use_double_quotes = false
|
|
444
|
-
ij_javascript_use_explicit_js_extension = auto
|
|
445
|
-
ij_javascript_use_import_type = auto
|
|
446
|
-
ij_javascript_use_path_mapping = always
|
|
447
|
-
ij_javascript_use_public_modifier = false
|
|
448
|
-
ij_javascript_use_semicolon_after_statement = false
|
|
449
|
-
ij_javascript_var_declaration_wrap = normal
|
|
450
|
-
ij_javascript_while_brace_force = never
|
|
451
|
-
ij_javascript_while_on_new_line = false
|
|
452
|
-
ij_javascript_wrap_comments = false
|
|
453
|
-
|
|
454
|
-
[{*.har,*.jsb2,*.jsb3,*.json,*.jsonc,*.postman_collection,*.postman_collection.json,*.postman_environment,*.postman_environment.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,.ws-context,composer.lock,jest.config}]
|
|
455
|
-
indent_size = 2
|
|
456
|
-
ij_json_array_wrapping = split_into_lines
|
|
457
|
-
ij_json_keep_blank_lines_in_code = 0
|
|
458
|
-
ij_json_keep_indents_on_empty_lines = false
|
|
459
|
-
ij_json_keep_line_breaks = true
|
|
460
|
-
ij_json_keep_trailing_comma = false
|
|
461
|
-
ij_json_object_wrapping = split_into_lines
|
|
462
|
-
ij_json_property_alignment = do_not_align
|
|
463
|
-
ij_json_space_after_colon = true
|
|
464
|
-
ij_json_space_after_comma = true
|
|
465
|
-
ij_json_space_before_colon = false
|
|
466
|
-
ij_json_space_before_comma = false
|
|
467
|
-
ij_json_spaces_within_braces = false
|
|
468
|
-
ij_json_spaces_within_brackets = false
|
|
469
|
-
ij_json_wrap_long_lines = false
|
|
470
|
-
|
|
471
|
-
[{*.htm,*.html,*.sht,*.shtm,*.shtml}]
|
|
472
|
-
indent_size = 2
|
|
473
|
-
tab_width = 2
|
|
474
|
-
ij_continuation_indent_size = 2
|
|
475
|
-
ij_visual_guides = 120
|
|
476
|
-
ij_html_add_new_line_before_tags = body,div,p,form,h1,h2,h3
|
|
477
|
-
ij_html_align_attributes = true
|
|
478
|
-
ij_html_align_text = false
|
|
479
|
-
ij_html_attribute_wrap = normal
|
|
480
|
-
ij_html_block_comment_add_space = false
|
|
481
|
-
ij_html_block_comment_at_first_column = true
|
|
482
|
-
ij_html_do_not_align_children_of_min_lines = 0
|
|
483
|
-
ij_html_do_not_break_if_inline_tags = title,h1,h2,h3,h4,h5,h6,p
|
|
484
|
-
ij_html_do_not_indent_children_of_tags = html,body,thead,tbody,tfoot
|
|
485
|
-
ij_html_enforce_quotes = false
|
|
486
|
-
ij_html_inline_tags = a,abbr,acronym,b,basefont,bdo,big,br,cite,cite,code,dfn,em,font,i,img,input,kbd,label,q,s,samp,select,small,span,strike,strong,sub,sup,textarea,tt,u,var
|
|
487
|
-
ij_html_keep_blank_lines = 2
|
|
488
|
-
ij_html_keep_indents_on_empty_lines = false
|
|
489
|
-
ij_html_keep_line_breaks = true
|
|
490
|
-
ij_html_keep_line_breaks_in_text = true
|
|
491
|
-
ij_html_keep_whitespaces = false
|
|
492
|
-
ij_html_keep_whitespaces_inside = span,pre,textarea
|
|
493
|
-
ij_html_line_comment_at_first_column = true
|
|
494
|
-
ij_html_new_line_after_last_attribute = never
|
|
495
|
-
ij_html_new_line_before_first_attribute = never
|
|
496
|
-
ij_html_quote_style = double
|
|
497
|
-
ij_html_remove_new_line_before_tags = br
|
|
498
|
-
ij_html_space_after_tag_name = false
|
|
499
|
-
ij_html_space_around_equality_in_attribute = false
|
|
500
|
-
ij_html_space_inside_empty_tag = true
|
|
501
|
-
ij_html_text_wrap = normal
|
|
502
|
-
|
|
503
|
-
[{*.http,*.rest}]
|
|
504
|
-
ij_continuation_indent_size = 4
|
|
505
|
-
ij_http-request_call_parameters_wrap = normal
|
|
506
|
-
ij_http-request_method_parameters_wrap = split_into_lines
|
|
507
|
-
ij_http-request_space_before_comma = true
|
|
508
|
-
ij_http-request_spaces_around_assignment_operators = true
|
package/.eslintrc.cjs
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* eslint-env node */
|
|
2
|
-
require('@rushstack/eslint-patch/modern-module-resolution')
|
|
3
|
-
|
|
4
|
-
module.exports = {
|
|
5
|
-
root: true,
|
|
6
|
-
'extends': [
|
|
7
|
-
'plugin:vue/vue3-essential',
|
|
8
|
-
'eslint:recommended',
|
|
9
|
-
'@vue/eslint-config-typescript',
|
|
10
|
-
'@vue/eslint-config-prettier/skip-formatting'
|
|
11
|
-
],
|
|
12
|
-
parserOptions: {
|
|
13
|
-
ecmaVersion: 'latest'
|
|
14
|
-
}
|
|
15
|
-
}
|